Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.6.0-alpha"
".": "3.7.0-alpha"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 846
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx%2Ftelnyx-cb0994e7d39146470cf25daa458555be4691e50795b9cb9be0cdd76a7d6bf357.yml
openapi_spec_hash: df09e67ae6d4df81593b396048046de5
config_hash: 53adc7ec630d90dd582727459f58a597
config_hash: 154c313d0f3d72cbcec91e9f8a370eec
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 3.7.0-alpha (2025-09-23)

Full Changelog: [v3.6.0-alpha...v3.7.0-alpha](https://github.com/team-telnyx/telnyx-python/compare/v3.6.0-alpha...v3.7.0-alpha)

### Features

* **api:** manual updates ([aee8355](https://github.com/team-telnyx/telnyx-python/commit/aee8355d4c368124161e2ac0f8c7f9ab87010b0e))

## 3.6.0-alpha (2025-09-23)

Full Changelog: [v3.5.0-alpha...v3.6.0-alpha](https://github.com/team-telnyx/telnyx-python/compare/v3.5.0-alpha...v3.6.0-alpha)
Expand Down
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2123,7 +2123,7 @@ Types:

```python
from telnyx.types import (
Error,
APIError,
MessagingError,
OutboundMessagePayload,
MessageRetrieveResponse,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "telnyx"
version = "3.6.0-alpha"
version = "3.7.0-alpha"
description = "The official Python library for the telnyx API"
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/telnyx/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "telnyx"
__version__ = "3.6.0-alpha" # x-release-please-version
__version__ = "3.7.0-alpha" # x-release-please-version
2 changes: 1 addition & 1 deletion src/telnyx/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from .fax import Fax as Fax
from .fqdn import Fqdn as Fqdn
from .room import Room as Room
from .error import Error as Error
from .record import Record as Record
from .shared import (
Metadata as Metadata,
Expand All @@ -30,6 +29,7 @@
from .address import Address as Address
from .sim_card import SimCard as SimCard
from .vertical import Vertical as Vertical
from .api_error import APIError as APIError
from .dtmf_type import DtmfType as DtmfType
from .interface import Interface as Interface
from .rcs_agent import RcsAgent as RcsAgent
Expand Down
4 changes: 2 additions & 2 deletions src/telnyx/types/addresses/action_validate_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

from pydantic import Field as FieldInfo

from ..error import Error
from ..._models import BaseModel
from ..api_error import APIError

__all__ = ["ActionValidateResponse", "Data", "DataSuggested"]

Expand Down Expand Up @@ -54,7 +54,7 @@ class Data(BaseModel):
suggested: DataSuggested
"""Provides normalized address when available."""

errors: Optional[List[Error]] = None
errors: Optional[List[APIError]] = None

record_type: Optional[str] = None
"""Identifies the type of the resource."""
Expand Down
4 changes: 2 additions & 2 deletions src/telnyx/types/error.py → src/telnyx/types/api_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from .._models import BaseModel

__all__ = ["Error", "Source"]
__all__ = ["APIError", "Source"]


class Source(BaseModel):
Expand All @@ -15,7 +15,7 @@ class Source(BaseModel):
"""JSON pointer (RFC6901) to the offending entity."""


class Error(BaseModel):
class APIError(BaseModel):
code: str

title: str
Expand Down