telnyx 3.0.0__py3-none-any.whl → 3.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of telnyx might be problematic. Click here for more details.

Files changed (44) hide show
  1. telnyx/_client.py +35 -786
  2. telnyx/_version.py +1 -1
  3. telnyx/resources/__init__.py +24 -24
  4. telnyx/resources/brand/brand.py +8 -4
  5. telnyx/resources/calls/calls.py +12 -0
  6. telnyx/resources/oauth.py +317 -315
  7. telnyx/resources/oauth_grants.py +15 -15
  8. telnyx/resources/verified_numbers/verified_numbers.py +25 -4
  9. telnyx/types/__init__.py +12 -19
  10. telnyx/types/addresses/action_validate_response.py +8 -3
  11. telnyx/types/ai/inference_embedding_transfer_tool_params.py +6 -0
  12. telnyx/types/ai/inference_embedding_transfer_tool_params_param.py +6 -0
  13. telnyx/types/ai/voice_settings.py +49 -2
  14. telnyx/types/ai/voice_settings_param.py +49 -2
  15. telnyx/types/brand_create_params.py +2 -1
  16. telnyx/types/brand_update_params.py +2 -1
  17. telnyx/types/call_dial_params.py +8 -0
  18. telnyx/types/country_coverage_retrieve_country_response.py +7 -0
  19. telnyx/types/country_coverage_retrieve_response.py +7 -0
  20. telnyx/types/{api_error.py → error.py} +2 -2
  21. telnyx/types/{oauth_retrieve_authorize_params.py → oauth_authorize_params.py} +2 -2
  22. telnyx/types/{oauth_grants_params.py → oauth_create_grant_params.py} +2 -2
  23. telnyx/types/{oauth_grants_response.py → oauth_create_grant_response.py} +2 -2
  24. telnyx/types/{oauth_token_params.py → oauth_exchange_token_params.py} +2 -2
  25. telnyx/types/{oauth_token_response.py → oauth_exchange_token_response.py} +2 -2
  26. telnyx/types/{oauth_grant_delete_response.py → oauth_grant_revoke_response.py} +2 -2
  27. telnyx/types/{oauth_introspect_params.py → oauth_introspect_token_params.py} +2 -2
  28. telnyx/types/{oauth_introspect_response.py → oauth_introspect_token_response.py} +2 -2
  29. telnyx/types/{oauth_register_params.py → oauth_register_client_params.py} +2 -2
  30. telnyx/types/{oauth_register_response.py → oauth_register_client_response.py} +2 -2
  31. telnyx/types/{oauth_retrieve_response.py → oauth_retrieve_consent_response.py} +2 -2
  32. telnyx/types/verified_number_create_params.py +10 -0
  33. telnyx/types/verify_profile.py +18 -3
  34. {telnyx-3.0.0.dist-info → telnyx-3.1.0.dist-info}/METADATA +1 -1
  35. {telnyx-3.0.0.dist-info → telnyx-3.1.0.dist-info}/RECORD +37 -44
  36. telnyx/types/client_create_bucket_params.py +0 -13
  37. telnyx/types/client_delete_objects_params.py +0 -20
  38. telnyx/types/client_get_object_params.py +0 -15
  39. telnyx/types/client_list_objects_params.py +0 -13
  40. telnyx/types/client_put_object_params.py +0 -20
  41. telnyx/types/list_buckets_response.py +0 -20
  42. telnyx/types/list_objects_response.py +0 -24
  43. {telnyx-3.0.0.dist-info → telnyx-3.1.0.dist-info}/WHEEL +0 -0
  44. {telnyx-3.0.0.dist-info → telnyx-3.1.0.dist-info}/licenses/LICENSE +0 -0
@@ -4,10 +4,10 @@ from __future__ import annotations
4
4
 
5
5
  from typing_extensions import Required, TypedDict
6
6
 
7
- __all__ = ["OAuthGrantsParams"]
7
+ __all__ = ["OAuthCreateGrantParams"]
8
8
 
9
9
 
10
- class OAuthGrantsParams(TypedDict, total=False):
10
+ class OAuthCreateGrantParams(TypedDict, total=False):
11
11
  allowed: Required[bool]
12
12
  """Whether the grant is allowed"""
13
13
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  from .._models import BaseModel
4
4
 
5
- __all__ = ["OAuthGrantsResponse"]
5
+ __all__ = ["OAuthCreateGrantResponse"]
6
6
 
7
7
 
8
- class OAuthGrantsResponse(BaseModel):
8
+ class OAuthCreateGrantResponse(BaseModel):
9
9
  redirect_uri: str
10
10
  """Redirect URI with authorization code or error"""
@@ -4,10 +4,10 @@ from __future__ import annotations
4
4
 
5
5
  from typing_extensions import Literal, Required, TypedDict
6
6
 
7
- __all__ = ["OAuthTokenParams"]
7
+ __all__ = ["OAuthExchangeTokenParams"]
8
8
 
9
9
 
10
- class OAuthTokenParams(TypedDict, total=False):
10
+ class OAuthExchangeTokenParams(TypedDict, total=False):
11
11
  grant_type: Required[Literal["client_credentials", "authorization_code", "refresh_token"]]
12
12
  """OAuth 2.0 grant type"""
13
13
 
@@ -5,10 +5,10 @@ from typing_extensions import Literal
5
5
 
6
6
  from .._models import BaseModel
7
7
 
8
- __all__ = ["OAuthTokenResponse"]
8
+ __all__ = ["OAuthExchangeTokenResponse"]
9
9
 
10
10
 
11
- class OAuthTokenResponse(BaseModel):
11
+ class OAuthExchangeTokenResponse(BaseModel):
12
12
  access_token: str
13
13
  """The access token"""
14
14
 
@@ -6,7 +6,7 @@ from typing_extensions import Literal
6
6
 
7
7
  from .._models import BaseModel
8
8
 
9
- __all__ = ["OAuthGrantDeleteResponse", "Data"]
9
+ __all__ = ["OAuthGrantRevokeResponse", "Data"]
10
10
 
11
11
 
12
12
  class Data(BaseModel):
@@ -29,5 +29,5 @@ class Data(BaseModel):
29
29
  """Timestamp when the grant was last used"""
30
30
 
31
31
 
32
- class OAuthGrantDeleteResponse(BaseModel):
32
+ class OAuthGrantRevokeResponse(BaseModel):
33
33
  data: Optional[Data] = None
@@ -4,9 +4,9 @@ from __future__ import annotations
4
4
 
5
5
  from typing_extensions import Required, TypedDict
6
6
 
7
- __all__ = ["OAuthIntrospectParams"]
7
+ __all__ = ["OAuthIntrospectTokenParams"]
8
8
 
9
9
 
10
- class OAuthIntrospectParams(TypedDict, total=False):
10
+ class OAuthIntrospectTokenParams(TypedDict, total=False):
11
11
  token: Required[str]
12
12
  """The token to introspect"""
@@ -4,10 +4,10 @@ from typing import Optional
4
4
 
5
5
  from .._models import BaseModel
6
6
 
7
- __all__ = ["OAuthIntrospectResponse"]
7
+ __all__ = ["OAuthIntrospectTokenResponse"]
8
8
 
9
9
 
10
- class OAuthIntrospectResponse(BaseModel):
10
+ class OAuthIntrospectTokenResponse(BaseModel):
11
11
  active: bool
12
12
  """Whether the token is active"""
13
13
 
@@ -7,10 +7,10 @@ from typing_extensions import Literal, TypedDict
7
7
 
8
8
  from .._types import SequenceNotStr
9
9
 
10
- __all__ = ["OAuthRegisterParams"]
10
+ __all__ = ["OAuthRegisterClientParams"]
11
11
 
12
12
 
13
- class OAuthRegisterParams(TypedDict, total=False):
13
+ class OAuthRegisterClientParams(TypedDict, total=False):
14
14
  client_name: str
15
15
  """Human-readable string name of the client to be presented to the end-user"""
16
16
 
@@ -4,10 +4,10 @@ from typing import List, Optional
4
4
 
5
5
  from .._models import BaseModel
6
6
 
7
- __all__ = ["OAuthRegisterResponse"]
7
+ __all__ = ["OAuthRegisterClientResponse"]
8
8
 
9
9
 
10
- class OAuthRegisterResponse(BaseModel):
10
+ class OAuthRegisterClientResponse(BaseModel):
11
11
  client_id: str
12
12
  """Unique client identifier"""
13
13
 
@@ -4,7 +4,7 @@ from typing import List, Optional
4
4
 
5
5
  from .._models import BaseModel
6
6
 
7
- __all__ = ["OAuthRetrieveResponse", "Data", "DataRequestedScope"]
7
+ __all__ = ["OAuthRetrieveConsentResponse", "Data", "DataRequestedScope"]
8
8
 
9
9
 
10
10
  class DataRequestedScope(BaseModel):
@@ -43,5 +43,5 @@ class Data(BaseModel):
43
43
  """Whether the client is verified"""
44
44
 
45
45
 
46
- class OAuthRetrieveResponse(BaseModel):
46
+ class OAuthRetrieveConsentResponse(BaseModel):
47
47
  data: Optional[Data] = None
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from typing import Optional
5
6
  from typing_extensions import Literal, Required, TypedDict
6
7
 
7
8
  __all__ = ["VerifiedNumberCreateParams"]
@@ -12,3 +13,12 @@ class VerifiedNumberCreateParams(TypedDict, total=False):
12
13
 
13
14
  verification_method: Required[Literal["sms", "call"]]
14
15
  """Verification method."""
16
+
17
+ extension: Optional[str]
18
+ """Optional DTMF extension sequence to dial after the call is answered.
19
+
20
+ This parameter enables verification of phone numbers behind IVR systems that
21
+ require extension dialing. Valid characters: digits 0-9, letters A-D, symbols \\**
22
+ and #. Pauses: w = 0.5 second pause, W = 1 second pause. Maximum length: 50
23
+ characters. Only works with 'call' verification method.
24
+ """
@@ -38,12 +38,17 @@ class Call(BaseModel):
38
38
  to `["*"]`, all destinations will be allowed.
39
39
  """
40
40
 
41
- __pydantic_extra__: Dict[str, object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
42
41
  if TYPE_CHECKING:
42
+ # Some versions of Pydantic <2.8.0 have a bug and don’t allow assigning a
43
+ # value to this field, so for compatibility we avoid doing it at runtime.
44
+ __pydantic_extra__: Dict[str, object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
45
+
43
46
  # Stub to indicate that arbitrary properties are accepted.
44
47
  # To access properties that are not valid identifiers you can use `getattr`, e.g.
45
48
  # `getattr(obj, '$type')`
46
49
  def __getattr__(self, attr: str) -> object: ...
50
+ else:
51
+ __pydantic_extra__: Dict[str, object]
47
52
 
48
53
 
49
54
  class Flashcall(BaseModel):
@@ -55,12 +60,17 @@ class Flashcall(BaseModel):
55
60
  identity.
56
61
  """
57
62
 
58
- __pydantic_extra__: Dict[str, object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
59
63
  if TYPE_CHECKING:
64
+ # Some versions of Pydantic <2.8.0 have a bug and don’t allow assigning a
65
+ # value to this field, so for compatibility we avoid doing it at runtime.
66
+ __pydantic_extra__: Dict[str, object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
67
+
60
68
  # Stub to indicate that arbitrary properties are accepted.
61
69
  # To access properties that are not valid identifiers you can use `getattr`, e.g.
62
70
  # `getattr(obj, '$type')`
63
71
  def __getattr__(self, attr: str) -> object: ...
72
+ else:
73
+ __pydantic_extra__: Dict[str, object]
64
74
 
65
75
 
66
76
  class SMS(BaseModel):
@@ -97,12 +107,17 @@ class SMS(BaseModel):
97
107
  to `["*"]`, all destinations will be allowed.
98
108
  """
99
109
 
100
- __pydantic_extra__: Dict[str, object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
101
110
  if TYPE_CHECKING:
111
+ # Some versions of Pydantic <2.8.0 have a bug and don’t allow assigning a
112
+ # value to this field, so for compatibility we avoid doing it at runtime.
113
+ __pydantic_extra__: Dict[str, object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
114
+
102
115
  # Stub to indicate that arbitrary properties are accepted.
103
116
  # To access properties that are not valid identifiers you can use `getattr`, e.g.
104
117
  # `getattr(obj, '$type')`
105
118
  def __getattr__(self, attr: str) -> object: ...
119
+ else:
120
+ __pydantic_extra__: Dict[str, object]
106
121
 
107
122
 
108
123
  class VerifyProfile(BaseModel):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: telnyx
3
- Version: 3.0.0
3
+ Version: 3.1.0
4
4
  Summary: The official Python library for the telnyx API
5
5
  Project-URL: Homepage, https://github.com/team-telnyx/telnyx-python
6
6
  Project-URL: Repository, https://github.com/team-telnyx/telnyx-python
@@ -1,6 +1,6 @@
1
1
  telnyx/__init__.py,sha256=3-DgWAbbqhu1tue85Ax20QcixYIXWHkCM4hjXNG62YU,2624
2
2
  telnyx/_base_client.py,sha256=NudksDGruga_s-IhQR4dYAEz7mc3QDOJfZPLjFdOghI,67047
3
- telnyx/_client.py,sha256=vGlPEwGhoXQOgzbfdsawp33c-tdNzOD8xSZJ1esgPOU,174124
3
+ telnyx/_client.py,sha256=Jgkin-wHHN1PcYSvJfnKgtaMqyNH0aye8lcFvNtJVrI,144540
4
4
  telnyx/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
5
  telnyx/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  telnyx/_exceptions.py,sha256=D9kyl_aKwKQ1618MjC8SZPmL5qLUyfnZzyO9TTKS3mo,3220
@@ -11,7 +11,7 @@ telnyx/_resource.py,sha256=B4Qg-uO2a34FQHHZskn89eVURqMuSvv1TdeBJH1z1rU,1100
11
11
  telnyx/_response.py,sha256=4X24wr7uQn2hnM_b0xqQ92zSgxRFFfWG2lTg93-KzNo,28788
12
12
  telnyx/_streaming.py,sha256=OfSFcMQJ_mnvfkbIdOG7Ajp0SMbXnOJSga4xXHjNAJk,10100
13
13
  telnyx/_types.py,sha256=Du3G2vdqeLhhdJZ4Jtck4vOqEvAKI9rB1FnrwB1b_k8,7236
14
- telnyx/_version.py,sha256=PcVJIzDwNNOozh9Qdtzj0LEcV-u8Qkrmu_0PPylxiXs,158
14
+ telnyx/_version.py,sha256=BbROMipL_nioBq1QDjFsPGGushYkUcGgYKi0dw51PKw,158
15
15
  telnyx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  telnyx/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
17
  telnyx/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
@@ -26,7 +26,7 @@ telnyx/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,1
26
26
  telnyx/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
27
  telnyx/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
28
28
  telnyx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
- telnyx/resources/__init__.py,sha256=YdEPEfdK5zpqzCb5JF9PzIMDBqK9P14TUvHuDuQXVww,86014
29
+ telnyx/resources/__init__.py,sha256=mrPN-Vz6TmiK-2cONjnQqIKxti2IESh2AU_6ihmA9Y0,86014
30
30
  telnyx/resources/access_ip_address.py,sha256=GHrKaYv0pxX2NrECShHPxibCq1mpXXEOOTXFSTDNUVQ,17519
31
31
  telnyx/resources/access_ip_ranges.py,sha256=Xb9w6OlrM6aphz9CfktBZDvespX13tLQWMiZFK46JN0,14210
32
32
  telnyx/resources/advanced_orders.py,sha256=ZDRoBXubjGtwUW6EtdDw2Hr1nqM_4gU-Ldqy17gP6Fw,18315
@@ -94,9 +94,9 @@ telnyx/resources/number_lookup.py,sha256=_rfXpdsRgZUr65KM3SXoVFXyTeA3p2yH9DfxFCP
94
94
  telnyx/resources/number_order_phone_numbers.py,sha256=7FxHZqE1yz02zQYPe7w0n9NyDIbRLx2S4NtVqz0uAEw,19830
95
95
  telnyx/resources/number_orders.py,sha256=unHJ9eknV1DERM8FK65lba4Pd9Hja_rZrlrjuPglU8k,19934
96
96
  telnyx/resources/numbers_features.py,sha256=1B0kqD2voGe1BlAuKHW0nakQIW7jkhdlZZufgsGpBL4,6496
97
- telnyx/resources/oauth.py,sha256=DzCOW41yY8qybq6dMXtKnnp23bMwBBPf2K04pX10W68,32545
97
+ telnyx/resources/oauth.py,sha256=vYvXOYYxIUOhYUWsfDEtwIeNVHSefzUOjO_WFao51Bc,33125
98
98
  telnyx/resources/oauth_clients.py,sha256=uVu7q12LJmZYsCr4Ue_TULrD6pzdErRHh_anFSGFmdA,27305
99
- telnyx/resources/oauth_grants.py,sha256=FBJV-CYTvW889yn2K7G3k1wFsBYiBW_BkhjoePm7nT8,12952
99
+ telnyx/resources/oauth_grants.py,sha256=UiKLjStqdlKJwfFGP-tKH_K0kGZ3PhBHnX5MaoTD9Js,12952
100
100
  telnyx/resources/ota_updates.py,sha256=WtY8r9GqW5zn538hfaV75o_R0VgHMi5VTpxGhxOH2CM,10298
101
101
  telnyx/resources/outbound_voice_profiles.py,sha256=mpzjFz4QL2fo4ix4mgzDh_bBXJ8Mum0M7F1ZfU2I1JY,34649
102
102
  telnyx/resources/partner_campaigns.py,sha256=AujfpJgchZRxsOJNxI6eJsNnKXL14T5LBn4W03DSzDE,25039
@@ -178,7 +178,7 @@ telnyx/resources/ai/fine_tuning/__init__.py,sha256=kpo9Jeem0KeFxdH3eUY238GNNk_4j
178
178
  telnyx/resources/ai/fine_tuning/fine_tuning.py,sha256=eWYzKDMmaQeFHdfzgSw_DNeoRcx66nOlXonnVuPHHhU,3707
179
179
  telnyx/resources/ai/fine_tuning/jobs.py,sha256=Fq1l0y5iqZ2BpQC9x03p6E4CBKivIHKSQUw6Yp_t3Jw,15140
180
180
  telnyx/resources/brand/__init__.py,sha256=eroGmcDdAyDxyGLR8DsFe_yCAxgH9bJSbUtSLZ8UiN8,1107
181
- telnyx/resources/brand/brand.py,sha256=XkS7mDGEZGaXp7tQjqWunugLEmIjJU5_uLP6mIEOkm8,49706
181
+ telnyx/resources/brand/brand.py,sha256=3zB8T7m-c2da9LkPAvEMIFEN58OmqhtKjYoqDttfS7k,50066
182
182
  telnyx/resources/brand/external_vetting.py,sha256=IJ-T2y-gVSyql0tJafJTXzvepisywXK1Tmus741VS6o,15226
183
183
  telnyx/resources/bundle_pricing/__init__.py,sha256=Rfq97xRuf9wsjsRAyhqUjYqFNvNmuWtn_HjpEFlUHl0,1715
184
184
  telnyx/resources/bundle_pricing/billing_bundles.py,sha256=qMCmAtoj48PbHObmv53B-64OF_pUFnH9FhzW0EhVSfQ,11975
@@ -186,7 +186,7 @@ telnyx/resources/bundle_pricing/bundle_pricing.py,sha256=d3L80tHqOCfcTxVQ7c6DDLf
186
186
  telnyx/resources/bundle_pricing/user_bundles.py,sha256=d44DFB_SSgXQcFceR3vY4wsQ8pukdATqWoSBoLUcYLA,28714
187
187
  telnyx/resources/calls/__init__.py,sha256=zQUq3YFSSLeXKg5bb5oG2Hh7VJsNmm_Z5nm68sU98LY,1002
188
188
  telnyx/resources/calls/actions.py,sha256=I0_s1pjfIZdUhw6huZmCrgdkxb6Fj2Sv4d2I4yChx4Y,308792
189
- telnyx/resources/calls/calls.py,sha256=bqR7LnNkjpFxD0S_g6fhosmjGF8G7kv6Ebm_zOXNVkk,43705
189
+ telnyx/resources/calls/calls.py,sha256=XdR-_hUTqdpnylpMCBFxKgwEsWG0yuIxArwzyTogNNQ,44443
190
190
  telnyx/resources/campaign/__init__.py,sha256=MGF-U4sQL_jE6xQKvsDXhucn5snUbtl1naBlZDaujPk,1452
191
191
  telnyx/resources/campaign/campaign.py,sha256=CDmsWo_1eAg9tIdAu9SwU-8xTusuxSU76o2V_mKuCiI,41458
192
192
  telnyx/resources/campaign/osr.py,sha256=q-xqVNbfaDh73WYjcwNiPmQ9kUFO0lncRaAKcdIojkk,5764
@@ -352,11 +352,11 @@ telnyx/resources/verifications/by_phone_number/actions.py,sha256=JjjT0W5JweJ_apG
352
352
  telnyx/resources/verifications/by_phone_number/by_phone_number.py,sha256=dBdozSkMvC5R2eVSPDi29gInS_6_weAazZL_d7uKKx8,7503
353
353
  telnyx/resources/verified_numbers/__init__.py,sha256=wv46Dyovmqk8vDqAw5gP_W5KTLZTzTv7tRJhr0rD42M,1133
354
354
  telnyx/resources/verified_numbers/actions.py,sha256=spwbZ3MpLRCfBYL9Iqs96_vxUWkeVk1J6Tqtd3c5EmI,6896
355
- telnyx/resources/verified_numbers/verified_numbers.py,sha256=T6kljG-9NBr9Q0Q1jGHn4pkCLU_b-avX1wzAu5KrYo0,18158
355
+ telnyx/resources/verified_numbers/verified_numbers.py,sha256=qVm5RJTF6UZNQ4XoVBDxFu_2KlzikezGBrkmpZ0dsLI,19422
356
356
  telnyx/resources/wireless/__init__.py,sha256=fEZwFm-3jI908Ui2_pT-S-3Titgg1vs7uFjzK4p406M,1212
357
357
  telnyx/resources/wireless/detail_records_reports.py,sha256=y6UEeAZVH4Wx8ddjiLNtWWQmxZ4XC25t9U8a8oX4o4M,17922
358
358
  telnyx/resources/wireless/wireless.py,sha256=YFhowq4mQXRL0dPhHoMWIit_zZTaXWkh1uje13Zpng0,8176
359
- telnyx/types/__init__.py,sha256=v94eN1-LMfyWle0T_2xvuz6NnNYMVBP_UJ48nY2XPZg,99644
359
+ telnyx/types/__init__.py,sha256=YQsIaViqPx_wXh5Qqpp8NYZK0SgDrTDggNzHTFAj6bI,99175
360
360
  telnyx/types/access_ip_address_create_params.py,sha256=qd_T7W_K4XiVIdsJLbsS5U9Qlf3_m0DT677n5Tqdvm8,329
361
361
  telnyx/types/access_ip_address_list_params.py,sha256=3sWF6U18lHT3y0fGouO8qCznMlvEyW5PRGx_pItEeLo,1870
362
362
  telnyx/types/access_ip_address_list_response.py,sha256=WFYBcqjSoC6c4rf9V6zGWkcB0_UG9DnMQwF5ic17MdY,475
@@ -379,7 +379,6 @@ telnyx/types/ai_summarize_params.py,sha256=rMVpD3Ocy_DmFVUYka9K-Mjspetf150V3CFXg
379
379
  telnyx/types/ai_summarize_response.py,sha256=A9umRVyHGNxD1rFdEV0bMRRuJn7dSJFzBxhjYoAJnU4,259
380
380
  telnyx/types/alt_business_id_type.py,sha256=ae9aJVHb8ZJh5KreswkuxNRF2rd4ksle-mu-IaQeg5M,240
381
381
  telnyx/types/anchorsite_override.py,sha256=82y2l3Di-2RNQh0O0nebFA_pPgDHqy7rYwzz6lJ9aUM,434
382
- telnyx/types/api_error.py,sha256=OBMIkwt6ascvoZysn_DvQtUFK57X_d-zrw4PnW5TpVI,580
383
382
  telnyx/types/audit_event_list_params.py,sha256=lOIoNKc5zc9xv8NsBaSYVUep8YTFS0R3SfGltAedqaA,1219
384
383
  telnyx/types/audit_event_list_response.py,sha256=frajEliNf22rYQIvQD1jRScE1FzyeHLFsg0mWopOr44,2648
385
384
  telnyx/types/authentication_provider.py,sha256=7IHiKJirkWbjllv7mwQT0xK2TFe90qJpbDkVtJpwdw8,2393
@@ -408,13 +407,13 @@ telnyx/types/billing_group_list_response.py,sha256=5ynRvP4fRqcOJnEIthG4_CDCjSuB3
408
407
  telnyx/types/billing_group_retrieve_response.py,sha256=HaXCcoR5QIuXgl4zFK3geYlNJhTsAK-sBWleiKBtcDI,321
409
408
  telnyx/types/billing_group_update_params.py,sha256=QkS9t4E6pcVL2GnyGoUT8m3U7JzsXO2MWYqaqzcvniI,314
410
409
  telnyx/types/billing_group_update_response.py,sha256=4OfROFr2jKjcAMIG2_MJ-jAKGCBEhCgkUYuhJZ3mDMY,317
411
- telnyx/types/brand_create_params.py,sha256=E8wqmr5xsNoEG8T9-pqdaQsvSdvc-3ZQR35L5iGKenI,3004
410
+ telnyx/types/brand_create_params.py,sha256=YSOcAZaWvKw3BTfpfiYn8NMuKFZB_DZpFudb3ur3Mro,3084
412
411
  telnyx/types/brand_get_feedback_response.py,sha256=_z8ZvaaEy_n5hCQNOCWftQUWzbrBmCi4udWIFwNvoqE,915
413
412
  telnyx/types/brand_identity_status.py,sha256=fuQtROgpECmib0rPVGZGBdIvK5pFr3fPQpj9WPaREOo,275
414
413
  telnyx/types/brand_list_params.py,sha256=tnpXqAPggfhndv2q6cqNhIli7GdZTIWfN3NIYvadKag,1317
415
414
  telnyx/types/brand_list_response.py,sha256=eAy-GOLZN2zEPx9xVbG400I5Rnqm4rkCq23OA2Xhx8M,2284
416
415
  telnyx/types/brand_retrieve_response.py,sha256=ckUoTUpym0AEU-6O3oi-Zuhoz9apvihYIogDY8vXa8U,436
417
- telnyx/types/brand_update_params.py,sha256=7gMmNCc8s0rwloKIm7zhmNFjvtjTzSVBmM430Hq4tcA,3306
416
+ telnyx/types/brand_update_params.py,sha256=ZUFWbPZDH5CfXNW3Kuy5a_06YXzZGpu10fvuMMIC-es,3386
418
417
  telnyx/types/bulk_sim_card_action_list_params.py,sha256=Cb3jfVsOS9fNgAn_Ux-uvNJudDEdotVSvPEK6zo7fAY,665
419
418
  telnyx/types/bulk_sim_card_action_list_response.py,sha256=TfBkY5ELe0GS2TIaG6jHhYb5ActI9yURIDu-SSQL7zU,1439
420
419
  telnyx/types/bulk_sim_card_action_retrieve_response.py,sha256=wVA0TamPwKC5F3WRCKyPDlbnaGIGhvGDGWCBFExLToE,1354
@@ -438,7 +437,7 @@ telnyx/types/call_control_application_update_params.py,sha256=t91HH8KF5x-FPpUG94
438
437
  telnyx/types/call_control_application_update_response.py,sha256=_JR2YLtITudbuYGVqmaGud1B8StTlAanVmFNtIN_XV4,368
439
438
  telnyx/types/call_conversation_ended_webhook_event.py,sha256=xkOxhj7h2duW6U0O7PJvcb9YWWhq8HFRKcuGpeZ0dKI,2621
440
439
  telnyx/types/call_conversation_insights_generated_webhook_event.py,sha256=wnCJCAR3Jn6-qSz3AxCu35TRF_3lehVkozUJZyWtwNU,2255
441
- telnyx/types/call_dial_params.py,sha256=QkQX9-c3tiJ7zFZH2xEQgc3BhGRiOL0GCMs6_83Ssxk,15873
440
+ telnyx/types/call_dial_params.py,sha256=Vhzg7u7zmwkyDZlO1JRxNJqmM5bU0e1mXAk9TAIehNY,16128
442
441
  telnyx/types/call_dial_response.py,sha256=qV7fNdy_vNuhBte6B_jxhSqvNQMht8tyq3DZ3-YHQAM,1575
443
442
  telnyx/types/call_dtmf_received_webhook_event.py,sha256=By7pJP_IGMHOjf5rbqBrkGo3V_SEjpZbug5Qpo4R5fc,1853
444
443
  telnyx/types/call_enqueued_webhook_event.py,sha256=kDv3EZKutPehui2ny4kUnmIBtMpGX3NL7OCLF3K0q3Y,1837
@@ -491,11 +490,6 @@ telnyx/types/charges_breakdown_retrieve_params.py,sha256=Wzl5y_dvgGe6BGP0eQx4pzG
491
490
  telnyx/types/charges_breakdown_retrieve_response.py,sha256=S4oxr4VW4jwfFRfqxfyw_giXcG3UmlL4S_DxuRJH_I8,1256
492
491
  telnyx/types/charges_summary_retrieve_params.py,sha256=WlMwdrN0XTAG9UHYY8IyUvv5H57canI3PRP9zXehB3Q,865
493
492
  telnyx/types/charges_summary_retrieve_response.py,sha256=EUbsepVd5Zl64aTj0bHkRnHXaj45jX3UNHebEbNeYl4,2514
494
- telnyx/types/client_create_bucket_params.py,sha256=E1zUjZd1OfxDr4W-SnUDTEyrMSFk9HSjNxMZXlI05JU,389
495
- telnyx/types/client_delete_objects_params.py,sha256=M8WjzkKHxSkGbQlekuj4zBd0KmF4-4xeyYT-Ht85nrw,525
496
- telnyx/types/client_get_object_params.py,sha256=IJrxQuVK76x1apZoqgGdZd5Swcht_6HzaUxZ5hMWxec,450
497
- telnyx/types/client_list_objects_params.py,sha256=6NWjFks2cuuZNZGHiv0uE8HkiyEsR1FSNk-Tl-aSQNE,384
498
- telnyx/types/client_put_object_params.py,sha256=RM6YTxDigcq8V8RzLhLce2TK9t8IfyVLSg_1mAzbNuM,579
499
493
  telnyx/types/cloudflare_sync_status.py,sha256=vqYPyc4mM0BjtJrfKjZpy7q9xzC67AECSmgGiCQTzZw,235
500
494
  telnyx/types/comment_create_params.py,sha256=S1nzHTZIs3RDAsgmFufE-UNfM6dJnmOWejAELoy94ek,377
501
495
  telnyx/types/comment_create_response.py,sha256=kJ_kF8XjC4cJjRqGYgyRPPEdLUbfrsJqQeF7TSPvXSo,1002
@@ -533,8 +527,8 @@ telnyx/types/connection_retrieve_response.py,sha256=n2shA0X93eXNR0gJZibcWAxD5Www
533
527
  telnyx/types/connection_rtcp_settings.py,sha256=i-DvbUBvc3o2JmHTbI2hBwLOTTPQNjpzyBf3TH-04RE,786
534
528
  telnyx/types/connection_rtcp_settings_param.py,sha256=x5Q7HBMQmzmTE3OTm7GzYsAYZsJf6Ar8jUSLck-mp3E,744
535
529
  telnyx/types/consumed_data.py,sha256=aBc8mtHcg7dZmZsO5Od2cTFx9PWzqaE8GQrRmidzvEI,274
536
- telnyx/types/country_coverage_retrieve_country_response.py,sha256=Rvm7fZieuqZ7O8yELjMpOTO1t4b6wYQKMC8NyL1CVjE,1654
537
- telnyx/types/country_coverage_retrieve_response.py,sha256=pKBy-Olrgoo2xa_dBEL6n0Ua76xga1MqbOhdAJ0tyMk,1646
530
+ telnyx/types/country_coverage_retrieve_country_response.py,sha256=qCWG6EaAn1dGoXbFIWVac-vVhXa5CSYlB5psv3Jndfk,1841
531
+ telnyx/types/country_coverage_retrieve_response.py,sha256=_f8gNvcGKywJRUfyYRNrITxd0SQ5_Dq0hE2SL4Lnr9I,1833
538
532
  telnyx/types/create_verification_response.py,sha256=rX9zZedL3IEWPprSVtUIH9x46WtrWr15NHzVf0HjP0Y,270
539
533
  telnyx/types/credential_connection.py,sha256=GeXlH70_5fz_WIvtd19WZAustX7UFh11B23KRWh3WXg,4240
540
534
  telnyx/types/credential_connection_create_params.py,sha256=aW1FO6YRTPuolyfWiIyzV45zQvSL3Oy6L22DQ1_koJQ,4083
@@ -605,6 +599,7 @@ telnyx/types/dynamic_emergency_endpoint_retrieve_response.py,sha256=UjgWjbsBHC8K
605
599
  telnyx/types/encrypted_media.py,sha256=gep-8QZ1MEwmJ_aDd9Ym-OVKEcIXHZlM_jvWkT7ldJY,249
606
600
  telnyx/types/entity_type.py,sha256=2RX5p8I9whwAMHQw4sNAfSXNKLkuttpImMhnCQB626g,258
607
601
  telnyx/types/enum_retrieve_response.py,sha256=EPO8dAJkZET6eGZTnvPIYJQ38IibTi9xwTohAHc2Hec,277
602
+ telnyx/types/error.py,sha256=5RSz0fIaw5K7STV45FKlqeTPJZVqRKWSaZIOwddmO4o,574
608
603
  telnyx/types/external_connection.py,sha256=HJ6xD76XN4sROHafTteQtTIwy41mEb0d_HMvzDR-908,2375
609
604
  telnyx/types/external_connection_create_params.py,sha256=b6XusXMG7LbsaH-oDBfRGRiHMuy3IE8I_qKov48SVz8,1696
610
605
  telnyx/types/external_connection_create_response.py,sha256=lFrIZXYzVmlcXuHraptL6k7NweJ_Asc2X3frkd8d5cc,347
@@ -733,8 +728,6 @@ telnyx/types/ledger_billing_group_report.py,sha256=ywIzPZsbG6XPg3JgFtrr4LYdS4YDW
733
728
  telnyx/types/ledger_billing_group_report_create_params.py,sha256=o_tg5q25ln0PQLatVN6o-7RoqY3oGzk_e0ziugR0cjE,416
734
729
  telnyx/types/ledger_billing_group_report_create_response.py,sha256=tRb87tzw-7pVdmhhF0orQoKPiSMDexuqJLQe53-X6vY,379
735
730
  telnyx/types/ledger_billing_group_report_retrieve_response.py,sha256=G3gZ6g4C705dcxi0qQGUfnql-B_3ova2-gBJUgakSrc,383
736
- telnyx/types/list_buckets_response.py,sha256=EWUn2sweJ7AmJH3ZefcAJJF1h28yvpFuYLobJbkG8i8,567
737
- telnyx/types/list_objects_response.py,sha256=3PdlRHiSkuYs5z0SKe-F3-tcLs0QOmhpAz_B29UqLUk,702
738
731
  telnyx/types/list_retrieve_all_response.py,sha256=4NBVNSCVCdGu3vrg_vU55WVzaITLD15wMxcLsXXkSQo,673
739
732
  telnyx/types/list_retrieve_by_zone_response.py,sha256=H7mqctugxuKTtaOGXZmDUjTcnhFE8hjIAOdeTy_23u4,679
740
733
  telnyx/types/managed_account.py,sha256=VLHqyrra3HUOr4ZghPDBkk_bnWUefXBKszXIlO2y4QM,2067
@@ -889,6 +882,7 @@ telnyx/types/number_reservation_list_response.py,sha256=BmCn63NV2cHRhO661HgQEsBf
889
882
  telnyx/types/number_reservation_retrieve_response.py,sha256=mNgKrwL_Qq0rVPeCZzhaTeubpca-uUE0YUx535U2_HU,346
890
883
  telnyx/types/numbers_feature_create_params.py,sha256=ArXiQW5-MhR81YaUNJOjR41aVgXICMajYK4D0CfU9Mk,361
891
884
  telnyx/types/numbers_feature_create_response.py,sha256=4p7DBbd4HzNmumwal8ozpOjOPI0o9aaZvNZ3v63RW7Y,365
885
+ telnyx/types/oauth_authorize_params.py,sha256=i1hkL4Q5-5BBzwMYAgVtAhCMF7gXdOLabHDTzIAoDqM,741
892
886
  telnyx/types/oauth_client_create_params.py,sha256=n_nJTEQzHC7zATP7mCRx5F_ELQeU9rqGob47-avi1oY,1136
893
887
  telnyx/types/oauth_client_create_response.py,sha256=ebDwniuCi8XyWJEzmQxkjFkfWQsGN37bXWongTzOkq8,1736
894
888
  telnyx/types/oauth_client_list_params.py,sha256=tLcLmTdYbfWlBxHHp4_sV9UWGIZWzRxHWGnwaVnNRtk,1362
@@ -896,21 +890,20 @@ telnyx/types/oauth_client_list_response.py,sha256=vvfoB3G-XdLO1HhD3y_wFItXH19F_K
896
890
  telnyx/types/oauth_client_retrieve_response.py,sha256=kSMGAJNtNkgBt5AF67kH34IDEJoY_6-Rxmcl8aF4DFk,1740
897
891
  telnyx/types/oauth_client_update_params.py,sha256=mqqIUwlZbxUvLBA0RPwZVC7g6hmG3UJ_2Q-TA8EHvaE,967
898
892
  telnyx/types/oauth_client_update_response.py,sha256=TbAfs1naYE2ObtZqBYPQzk_mq1O-5_fC2r7l5a6_BJw,1736
899
- telnyx/types/oauth_grant_delete_response.py,sha256=ZKpwlCfLkoswn05Aa7ove1dD7t_ENz8PhdHgHgIPFQc,789
893
+ telnyx/types/oauth_create_grant_params.py,sha256=316DHdSf5lvS5iadVbkZ5a0GUKmZLhm4osGbDd96Xac,392
894
+ telnyx/types/oauth_create_grant_response.py,sha256=FTQ0NGDmqwDEcCSSRmIi2eqNq_wfmpyYIMcJ6kZvqF0,282
895
+ telnyx/types/oauth_exchange_token_params.py,sha256=3Y18S3rViQomJlT2kgYF-NEaNbo9C9xcrkW2zkkS9Dk,966
896
+ telnyx/types/oauth_exchange_token_response.py,sha256=Qsas87AXlwr1FVLN7iqNl8oe-iQGMh7RijQsRxAxhHg,600
900
897
  telnyx/types/oauth_grant_list_params.py,sha256=QUqXr2j_47an8zFXwf_iaRR_FgkBvcyXK06RE_Ik36o,491
901
898
  telnyx/types/oauth_grant_list_response.py,sha256=h06qRbJQ-n2T5hcId8SIAByjHU0PeI586ibnvi44sRE,1143
902
899
  telnyx/types/oauth_grant_retrieve_response.py,sha256=uxLMJ0QH0bsyQb4VrrvTkn7W_HAKbJWjpViMfpin14E,793
903
- telnyx/types/oauth_grants_params.py,sha256=MOrGxhdb5bhZN2_PabKauyxM4ZVETJeS6OqX5Or1eKc,382
904
- telnyx/types/oauth_grants_response.py,sha256=wcnrD0xsNzu8WE-GP9VkKK3dC8SzmqR-5Oq0vqBBocY,272
905
- telnyx/types/oauth_introspect_params.py,sha256=nHbOQwFmGqgNPJqo8uxZxoWon9qvCWp58couMDDbfhI,324
906
- telnyx/types/oauth_introspect_response.py,sha256=WJ8AnOb8sahZ_sdV_6lkq_LgQ6Qo_FcubqWp-NOd6q4,646
907
- telnyx/types/oauth_register_params.py,sha256=-D5UYJ9fw-CQ8LI3XdIh_XMsDfapf28JGEGgx3PxoOg,1246
908
- telnyx/types/oauth_register_response.py,sha256=Re7lBj-6ERpSHsNgtmVXxw9RwQiM-pcfOWZd-Y3akIA,1212
909
- telnyx/types/oauth_retrieve_authorize_params.py,sha256=gSkyND3nyrftBmZ3iRbzIxHWhlpPxHG56YMmHIcwrFc,757
900
+ telnyx/types/oauth_grant_revoke_response.py,sha256=LA7iYGcpYqrNTcyfXpvw2glGLzrLFv6krYLug26_bGA,789
901
+ telnyx/types/oauth_introspect_token_params.py,sha256=ThC2zLaFV9Z1cWFegWEQujargwUBINJVvvqAXNjtJ3M,334
902
+ telnyx/types/oauth_introspect_token_response.py,sha256=6VQm2WDf7LIlvUBxWNtVJ4-ChSSHqQVopZdNzevovys,656
903
+ telnyx/types/oauth_register_client_params.py,sha256=lC-BQI2xn4Ov3TbhM_uvFrp_RJaUEA6QOFs36TQQweg,1258
904
+ telnyx/types/oauth_register_client_response.py,sha256=FF7jKL4T826wySmwyhk_0-nKkdLlE3XpSBtg7XkQD_U,1224
905
+ telnyx/types/oauth_retrieve_consent_response.py,sha256=LhfS6SswAm59-lvFrOzrVVPaBeFNJ19x7QjFVwfbcoI,1118
910
906
  telnyx/types/oauth_retrieve_jwks_response.py,sha256=GrU7DBFErxw7geN_drUpqQviNb_pk68uPaTR4GfwQoA,506
911
- telnyx/types/oauth_retrieve_response.py,sha256=1jt--M4Q46tAaW3jzKCPhex65p-kKXRIFE0nd6uYbsY,1104
912
- telnyx/types/oauth_token_params.py,sha256=-P-q36iCjKnhY-2Yq1d3wzbZ-Bs7Sgm2u9S0YAtO11s,950
913
- telnyx/types/oauth_token_response.py,sha256=6VsE8v0j9D_NUkpCpu2K4KTh1sdNE_ypT-b_6LjYwg4,584
914
907
  telnyx/types/ota_update_list_params.py,sha256=ZD8dqS8kn7nt3ltxPy-NzYTnMiImZBJeyJM-vMhz_y0,1016
915
908
  telnyx/types/ota_update_list_response.py,sha256=sl7b11aO8Lh7zqbbowc9lxJ1QpTBifyipIZKJ6m4aGI,1145
916
909
  telnyx/types/ota_update_retrieve_response.py,sha256=L3TXeJdR8lr3V9GUlLlYvZxqoL1iFaNlQDIj8nCkmHQ,2358
@@ -1229,12 +1222,12 @@ telnyx/types/verification_trigger_call_params.py,sha256=vJsgP7Tjum_Zf_JVzaBMSdHt
1229
1222
  telnyx/types/verification_trigger_flashcall_params.py,sha256=gtbnxXpCy-QbKrmj8gkgZPUcLmheZgBh7yCq0fYvjmE,551
1230
1223
  telnyx/types/verification_trigger_sms_params.py,sha256=3fLec5fpkUTdsmml2tLp-c6elbD5ZHm_xoux-QSMFYY,660
1231
1224
  telnyx/types/verified_number.py,sha256=A9j9l8Znwt3wXSOxtVvSpwBH4IsC7ydPzd4oPSPXwd8,445
1232
- telnyx/types/verified_number_create_params.py,sha256=UbHdOGt_wcA-B9fyTdA1CvGTobAmneh2uJxzxuU7RWw,406
1225
+ telnyx/types/verified_number_create_params.py,sha256=jlOYtV0xCnXlzYqNYz4gLsb3ZNULKV7iYfkuTPaUuVQ,857
1233
1226
  telnyx/types/verified_number_create_response.py,sha256=k3kikVZDwy4UZ8szFrnfknJYdcZeBvYM5TpJOx_i-PM,327
1234
1227
  telnyx/types/verified_number_data_wrapper.py,sha256=O9UQYCkGMK4oScY6TppqTuPXkzJ93i3KGNjpX65HTzY,321
1235
1228
  telnyx/types/verified_number_list_params.py,sha256=S2iMCu-O2ztlcHyIkb1YsChOzFxhEQuGWZf34e3xVlI,515
1236
1229
  telnyx/types/verified_number_list_response.py,sha256=6-9_jeZNSTTJfqL6kFErVoC6sIqkRC8Z14Z7qJ9GjEc,522
1237
- telnyx/types/verify_profile.py,sha256=9WksG8mqGRX0WUEsaCApvsQGtjAKwxtZWDjT1tF-K_M,4493
1230
+ telnyx/types/verify_profile.py,sha256=jLAoLw6jSpcHzf523blICOqbdUn8tie9v0CNbJCSHN4,5174
1238
1231
  telnyx/types/verify_profile_create_params.py,sha256=6mMmInWqwlLcOeB98iOO2AG8kfttOedMwHq25iwQ10k,3349
1239
1232
  telnyx/types/verify_profile_create_template_params.py,sha256=INfbxm21Yp6SPWPu-j-r6VF0UKHZV1IcyUau2hLpQ7I,365
1240
1233
  telnyx/types/verify_profile_create_template_response.py,sha256=U2qww2KfwfhXJHhhlc9WzVmu_TzDxij-2NAPLLWo928,381
@@ -1302,7 +1295,7 @@ telnyx/types/addresses/__init__.py,sha256=m-_aSxRiotRXrdHEqmV9NQlyot9383J7GhH7A9
1302
1295
  telnyx/types/addresses/action_accept_suggestions_params.py,sha256=n8ifP4q6XNEaLrgkLalRt9f20S1oXQshCdhKnyLOQcY,405
1303
1296
  telnyx/types/addresses/action_accept_suggestions_response.py,sha256=PUK8ojT69lS3oSypV2FauV0MuxdHCmsoIKeufmHqsr0,579
1304
1297
  telnyx/types/addresses/action_validate_params.py,sha256=Q94O9NnGAxWADHZS4lFWDuypKVssnBeouGJ9-XDIj6w,993
1305
- telnyx/types/addresses/action_validate_response.py,sha256=w-UDoOKNzJAUURNiJhj5Os0qm8jxCNbJ5GA7ByyLuzE,1993
1298
+ telnyx/types/addresses/action_validate_response.py,sha256=wAjWVJHbla4c87ymnIzsYcD_XFEvBH2NqxIwqFaEBnY,2210
1306
1299
  telnyx/types/ai/__init__.py,sha256=Z8_3J4Not4iyO8aKo2rYPaVcIz8Neh3IZG38tpHyLlE,6498
1307
1300
  telnyx/types/ai/assistant_chat_params.py,sha256=CC0HBoZ2dWKUlrqMMuiz7Uj_Fg_abaMltXOTQAkLNLA,557
1308
1301
  telnyx/types/ai/assistant_chat_response.py,sha256=EB-0npHYLL4g2EsRBpdDm-objtcDg5NYujSpc9483-0,301
@@ -1355,8 +1348,8 @@ telnyx/types/ai/hangup_tool_params_param.py,sha256=RZaWG9PfKesctTgGYRNB_OIvPZo0T
1355
1348
  telnyx/types/ai/import_metadata.py,sha256=Q8S3K51yiAyxPqdaOcm1T9YamhwFWScFrFg1TY80X_A,465
1356
1349
  telnyx/types/ai/inference_embedding_bucket_ids.py,sha256=yeoZw3FXqgHxHh9t0D57Dwrn0__oK-q6CYAFeobWX4c,588
1357
1350
  telnyx/types/ai/inference_embedding_bucket_ids_param.py,sha256=Qpzf4VaUrL91hYpfBwCuuxXPhQHWBZhay9hY0X_LDfY,670
1358
- telnyx/types/ai/inference_embedding_transfer_tool_params.py,sha256=4dukEZt79j1dce0aW9h_YeCP-DYH2cACgxu6pkEv0s0,1246
1359
- telnyx/types/ai/inference_embedding_transfer_tool_params_param.py,sha256=irlhSeQBdNA81Kw_hMuAmyveqaFYT3uGcW1-mFtpIE8,1393
1351
+ telnyx/types/ai/inference_embedding_transfer_tool_params.py,sha256=HgolavFaJGClQw1DXD6wJNfgZMZFVZa6hEWVcbHwljw,1424
1352
+ telnyx/types/ai/inference_embedding_transfer_tool_params_param.py,sha256=XrmnIBRk2g4CNAcYpjy0DR2607lVOJJdVw3FpyRiVEI,1554
1360
1353
  telnyx/types/ai/inference_embedding_webhook_tool_params.py,sha256=xqXd-CUKiNMimPL7Ps2v22HiIX0cgT5rmoRCOjq4tRE,3554
1361
1354
  telnyx/types/ai/inference_embedding_webhook_tool_params_param.py,sha256=j5Sy8gDebTOJfTEKYsqw6Z31DNrkwJJoYaddkUtMtCI,3476
1362
1355
  telnyx/types/ai/insight_settings.py,sha256=4J4GFvMv-j697Stw6mOD0yU4glM7I6ji41JyL3BP3nA,402
@@ -1374,8 +1367,8 @@ telnyx/types/ai/transcription_settings.py,sha256=n-SjDwt88zMKz_CTFtNG3_JwrqOQddb
1374
1367
  telnyx/types/ai/transcription_settings_param.py,sha256=_OoVaUxjMv-2cBOCkzxfp9S3SYX3qaoO-cDeINtdWwY,937
1375
1368
  telnyx/types/ai/transfer_tool.py,sha256=xqKXllTFynurQui0ZyCVKKIjr327ImUo1Ir6let46QA,393
1376
1369
  telnyx/types/ai/transfer_tool_param.py,sha256=yGOHLSzsjhEvUk5STQ0nK6ogfIkaZdHSX5fWAQplLwo,476
1377
- telnyx/types/ai/voice_settings.py,sha256=aF62sZSVF1AQdTQAiBMJxKSxDaG0X05fCsen8v-SKZo,1406
1378
- telnyx/types/ai/voice_settings_param.py,sha256=usEnAa6umbtGsBj0ibeing4FyUyMMjwUTd6d6faz-pc,1429
1370
+ telnyx/types/ai/voice_settings.py,sha256=zduMFwanb7P3W-_ZBcnnMqTRWMFpbq7ikq1sQkWfSPI,2835
1371
+ telnyx/types/ai/voice_settings_param.py,sha256=bOFi6w02ULGtQA8-cLJit7UJRd4SQ_HJptwqmG1fyrY,2929
1379
1372
  telnyx/types/ai/webhook_tool.py,sha256=S_RXQiWcyOokeXb7XOad2NRPmM5q77s1_x_z5hOl6gk,386
1380
1373
  telnyx/types/ai/webhook_tool_param.py,sha256=ANK9w6A-cmMLTJThOMcKXXYoVmILQmOdqtIzq4RlNfI,469
1381
1374
  telnyx/types/ai/assistants/__init__.py,sha256=-pnVFavZeoKOuqdSITPRlbySQVCQf_PMfBwLW1RmRuQ,2243
@@ -2022,7 +2015,7 @@ telnyx/types/wireless/detail_records_report_list_params.py,sha256=cfjsh4L_8mpDkg
2022
2015
  telnyx/types/wireless/detail_records_report_list_response.py,sha256=S_6nD0fm5EseRIZHnML-UN0-g8Q_0J1cXfg_eLNUev8,331
2023
2016
  telnyx/types/wireless/detail_records_report_retrieve_response.py,sha256=f0C8z8uo_QeCyi3nSDME4f4F3vqcy7o0MpinwDIqe_s,327
2024
2017
  telnyx/types/wireless/wdr_report.py,sha256=bxRr-dc_IW6D0E3i_PUHK-bbu9w114Qql1uoJ_znxEE,1068
2025
- telnyx-3.0.0.dist-info/METADATA,sha256=nl2B-HgUiK7rkqU-RFD9lg7e5LKLVr_RcPUCx4wz1ZU,15530
2026
- telnyx-3.0.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
2027
- telnyx-3.0.0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
2028
- telnyx-3.0.0.dist-info/RECORD,,
2018
+ telnyx-3.1.0.dist-info/METADATA,sha256=94A8d9e0Izf-Wl5fUAfBZIZh8bK37bAXhm1KDby4o8M,15530
2019
+ telnyx-3.1.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
2020
+ telnyx-3.1.0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
2021
+ telnyx-3.1.0.dist-info/RECORD,,
@@ -1,13 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from __future__ import annotations
4
-
5
- from typing_extensions import Annotated, TypedDict
6
-
7
- from .._utils import PropertyInfo
8
-
9
- __all__ = ["ClientCreateBucketParams"]
10
-
11
-
12
- class ClientCreateBucketParams(TypedDict, total=False):
13
- location_constraint: Annotated[str, PropertyInfo(alias="LocationConstraint")]
@@ -1,20 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from __future__ import annotations
4
-
5
- from typing import Iterable
6
- from typing_extensions import Literal, Required, Annotated, TypedDict
7
-
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["ClientDeleteObjectsParams", "Body"]
11
-
12
-
13
- class ClientDeleteObjectsParams(TypedDict, total=False):
14
- delete: Required[Literal[True]]
15
-
16
- body: Required[Iterable[Body]]
17
-
18
-
19
- class Body(TypedDict, total=False):
20
- key: Annotated[str, PropertyInfo(alias="Key")]
@@ -1,15 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from __future__ import annotations
4
-
5
- from typing_extensions import Required, Annotated, TypedDict
6
-
7
- from .._utils import PropertyInfo
8
-
9
- __all__ = ["ClientGetObjectParams"]
10
-
11
-
12
- class ClientGetObjectParams(TypedDict, total=False):
13
- bucket_name: Required[Annotated[str, PropertyInfo(alias="bucketName")]]
14
-
15
- upload_id: Annotated[str, PropertyInfo(alias="uploadId")]
@@ -1,13 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from __future__ import annotations
4
-
5
- from typing_extensions import Literal, Annotated, TypedDict
6
-
7
- from .._utils import PropertyInfo
8
-
9
- __all__ = ["ClientListObjectsParams"]
10
-
11
-
12
- class ClientListObjectsParams(TypedDict, total=False):
13
- list_type: Annotated[Literal[2], PropertyInfo(alias="list-type")]
@@ -1,20 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from __future__ import annotations
4
-
5
- from typing_extensions import Required, Annotated, TypedDict
6
-
7
- from .._types import FileTypes
8
- from .._utils import PropertyInfo
9
-
10
- __all__ = ["ClientPutObjectParams"]
11
-
12
-
13
- class ClientPutObjectParams(TypedDict, total=False):
14
- bucket_name: Required[Annotated[str, PropertyInfo(alias="bucketName")]]
15
-
16
- body: Required[FileTypes]
17
-
18
- part_number: Annotated[str, PropertyInfo(alias="partNumber")]
19
-
20
- upload_id: Annotated[str, PropertyInfo(alias="uploadId")]
@@ -1,20 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List, Optional
4
- from datetime import datetime
5
-
6
- from pydantic import Field as FieldInfo
7
-
8
- from .._models import BaseModel
9
-
10
- __all__ = ["ListBucketsResponse", "Bucket"]
11
-
12
-
13
- class Bucket(BaseModel):
14
- creation_date: Optional[datetime] = FieldInfo(alias="CreationDate", default=None)
15
-
16
- name: Optional[str] = FieldInfo(alias="Name", default=None)
17
-
18
-
19
- class ListBucketsResponse(BaseModel):
20
- buckets: Optional[List[Bucket]] = FieldInfo(alias="Buckets", default=None)
@@ -1,24 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List, Optional
4
- from datetime import datetime
5
-
6
- from pydantic import Field as FieldInfo
7
-
8
- from .._models import BaseModel
9
-
10
- __all__ = ["ListObjectsResponse", "Content"]
11
-
12
-
13
- class Content(BaseModel):
14
- key: Optional[str] = FieldInfo(alias="Key", default=None)
15
-
16
- last_modified: Optional[datetime] = FieldInfo(alias="LastModified", default=None)
17
-
18
- size: Optional[float] = FieldInfo(alias="Size", default=None)
19
-
20
-
21
- class ListObjectsResponse(BaseModel):
22
- contents: Optional[List[Content]] = FieldInfo(alias="Contents", default=None)
23
-
24
- name: Optional[str] = FieldInfo(alias="Name", default=None)
File without changes