telnyx 3.4.0__py3-none-any.whl → 3.5.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.
- telnyx/_version.py +1 -1
- telnyx/resources/ai/assistants/assistants.py +2 -2
- telnyx/resources/messaging_tollfree/verification/requests.py +206 -1
- telnyx/resources/outbound_voice_profiles.py +24 -4
- telnyx/resources/sim_cards/actions.py +12 -12
- telnyx/types/ai/assistant_import_params.py +1 -1
- telnyx/types/ai/import_metadata.py +1 -1
- telnyx/types/messaging_tollfree/verification/request_create_params.py +54 -2
- telnyx/types/messaging_tollfree/verification/request_update_params.py +54 -2
- telnyx/types/messaging_tollfree/verification/verification_request_egress.py +26 -0
- telnyx/types/messaging_tollfree/verification/verification_request_status.py +26 -0
- telnyx/types/outbound_voice_profile.py +27 -1
- telnyx/types/outbound_voice_profile_create_params.py +27 -1
- telnyx/types/outbound_voice_profile_list_params.py +1 -1
- telnyx/types/outbound_voice_profile_update_params.py +27 -1
- telnyx/types/requirement_group.py +2 -2
- telnyx/types/requirement_group_list_params.py +1 -1
- {telnyx-3.4.0.dist-info → telnyx-3.5.0.dist-info}/METADATA +1 -1
- {telnyx-3.4.0.dist-info → telnyx-3.5.0.dist-info}/RECORD +21 -21
- {telnyx-3.4.0.dist-info → telnyx-3.5.0.dist-info}/WHEEL +0 -0
- {telnyx-3.4.0.dist-info → telnyx-3.5.0.dist-info}/licenses/LICENSE +0 -0
telnyx/_version.py
CHANGED
|
@@ -547,7 +547,7 @@ class AssistantsResource(SyncAPIResource):
|
|
|
547
547
|
self,
|
|
548
548
|
*,
|
|
549
549
|
api_key_ref: str,
|
|
550
|
-
provider: Literal["elevenlabs", "vapi"],
|
|
550
|
+
provider: Literal["elevenlabs", "vapi", "retell"],
|
|
551
551
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
552
552
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
553
553
|
extra_headers: Headers | None = None,
|
|
@@ -1056,7 +1056,7 @@ class AsyncAssistantsResource(AsyncAPIResource):
|
|
|
1056
1056
|
self,
|
|
1057
1057
|
*,
|
|
1058
1058
|
api_key_ref: str,
|
|
1059
|
-
provider: Literal["elevenlabs", "vapi"],
|
|
1059
|
+
provider: Literal["elevenlabs", "vapi", "retell"],
|
|
1060
1060
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1061
1061
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1062
1062
|
extra_headers: Headers | None = None,
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Union, Iterable
|
|
5
|
+
from typing import Union, Iterable, Optional
|
|
6
6
|
from datetime import datetime
|
|
7
|
+
from typing_extensions import Literal
|
|
7
8
|
|
|
8
9
|
import httpx
|
|
9
10
|
|
|
@@ -80,7 +81,19 @@ class RequestsResource(SyncAPIResource):
|
|
|
80
81
|
production_message_content: str,
|
|
81
82
|
use_case: UseCaseCategories,
|
|
82
83
|
use_case_summary: str,
|
|
84
|
+
age_gated_content: bool | Omit = omit,
|
|
83
85
|
business_addr2: str | Omit = omit,
|
|
86
|
+
business_registration_country: Optional[str] | Omit = omit,
|
|
87
|
+
business_registration_number: Optional[str] | Omit = omit,
|
|
88
|
+
business_registration_type: Optional[str] | Omit = omit,
|
|
89
|
+
doing_business_as: Optional[str] | Omit = omit,
|
|
90
|
+
entity_type: Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]]
|
|
91
|
+
| Omit = omit,
|
|
92
|
+
help_message_response: Optional[str] | Omit = omit,
|
|
93
|
+
opt_in_confirmation_response: Optional[str] | Omit = omit,
|
|
94
|
+
opt_in_keywords: Optional[str] | Omit = omit,
|
|
95
|
+
privacy_policy_url: Optional[str] | Omit = omit,
|
|
96
|
+
terms_and_condition_url: Optional[str] | Omit = omit,
|
|
84
97
|
webhook_url: str | Omit = omit,
|
|
85
98
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
86
99
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -135,8 +148,36 @@ class RequestsResource(SyncAPIResource):
|
|
|
135
148
|
|
|
136
149
|
use_case_summary: Human-readable summary of the desired use-case
|
|
137
150
|
|
|
151
|
+
age_gated_content: Indicates if messaging content requires age gating (e.g., 18+). Defaults to
|
|
152
|
+
false if not provided.
|
|
153
|
+
|
|
138
154
|
business_addr2: Line 2 of the business address
|
|
139
155
|
|
|
156
|
+
business_registration_country: ISO 3166-1 alpha-2 country code of the issuing business authority. Must be
|
|
157
|
+
exactly 2 letters. Automatically converted to uppercase. Required from
|
|
158
|
+
January 2026.
|
|
159
|
+
|
|
160
|
+
business_registration_number: Official business registration number (e.g., Employer Identification Number
|
|
161
|
+
(EIN) in the U.S.). Required from January 2026.
|
|
162
|
+
|
|
163
|
+
business_registration_type: Type of business registration being provided. Required from January 2026.
|
|
164
|
+
|
|
165
|
+
doing_business_as: Doing Business As (DBA) name if different from legal name
|
|
166
|
+
|
|
167
|
+
entity_type: Business entity classification
|
|
168
|
+
|
|
169
|
+
help_message_response: The message returned when users text 'HELP'
|
|
170
|
+
|
|
171
|
+
opt_in_confirmation_response: Message sent to users confirming their opt-in to receive messages
|
|
172
|
+
|
|
173
|
+
opt_in_keywords: Keywords used to collect and process consumer opt-ins
|
|
174
|
+
|
|
175
|
+
privacy_policy_url: URL pointing to the business's privacy policy. Plain string, no URL format
|
|
176
|
+
validation.
|
|
177
|
+
|
|
178
|
+
terms_and_condition_url: URL pointing to the business's terms and conditions. Plain string, no URL format
|
|
179
|
+
validation.
|
|
180
|
+
|
|
140
181
|
webhook_url: URL that should receive webhooks relating to this verification request
|
|
141
182
|
|
|
142
183
|
extra_headers: Send extra headers
|
|
@@ -170,7 +211,18 @@ class RequestsResource(SyncAPIResource):
|
|
|
170
211
|
"production_message_content": production_message_content,
|
|
171
212
|
"use_case": use_case,
|
|
172
213
|
"use_case_summary": use_case_summary,
|
|
214
|
+
"age_gated_content": age_gated_content,
|
|
173
215
|
"business_addr2": business_addr2,
|
|
216
|
+
"business_registration_country": business_registration_country,
|
|
217
|
+
"business_registration_number": business_registration_number,
|
|
218
|
+
"business_registration_type": business_registration_type,
|
|
219
|
+
"doing_business_as": doing_business_as,
|
|
220
|
+
"entity_type": entity_type,
|
|
221
|
+
"help_message_response": help_message_response,
|
|
222
|
+
"opt_in_confirmation_response": opt_in_confirmation_response,
|
|
223
|
+
"opt_in_keywords": opt_in_keywords,
|
|
224
|
+
"privacy_policy_url": privacy_policy_url,
|
|
225
|
+
"terms_and_condition_url": terms_and_condition_url,
|
|
174
226
|
"webhook_url": webhook_url,
|
|
175
227
|
},
|
|
176
228
|
request_create_params.RequestCreateParams,
|
|
@@ -237,7 +289,19 @@ class RequestsResource(SyncAPIResource):
|
|
|
237
289
|
production_message_content: str,
|
|
238
290
|
use_case: UseCaseCategories,
|
|
239
291
|
use_case_summary: str,
|
|
292
|
+
age_gated_content: bool | Omit = omit,
|
|
240
293
|
business_addr2: str | Omit = omit,
|
|
294
|
+
business_registration_country: Optional[str] | Omit = omit,
|
|
295
|
+
business_registration_number: Optional[str] | Omit = omit,
|
|
296
|
+
business_registration_type: Optional[str] | Omit = omit,
|
|
297
|
+
doing_business_as: Optional[str] | Omit = omit,
|
|
298
|
+
entity_type: Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]]
|
|
299
|
+
| Omit = omit,
|
|
300
|
+
help_message_response: Optional[str] | Omit = omit,
|
|
301
|
+
opt_in_confirmation_response: Optional[str] | Omit = omit,
|
|
302
|
+
opt_in_keywords: Optional[str] | Omit = omit,
|
|
303
|
+
privacy_policy_url: Optional[str] | Omit = omit,
|
|
304
|
+
terms_and_condition_url: Optional[str] | Omit = omit,
|
|
241
305
|
webhook_url: str | Omit = omit,
|
|
242
306
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
243
307
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -294,8 +358,36 @@ class RequestsResource(SyncAPIResource):
|
|
|
294
358
|
|
|
295
359
|
use_case_summary: Human-readable summary of the desired use-case
|
|
296
360
|
|
|
361
|
+
age_gated_content: Indicates if messaging content requires age gating (e.g., 18+). Defaults to
|
|
362
|
+
false if not provided.
|
|
363
|
+
|
|
297
364
|
business_addr2: Line 2 of the business address
|
|
298
365
|
|
|
366
|
+
business_registration_country: ISO 3166-1 alpha-2 country code of the issuing business authority. Must be
|
|
367
|
+
exactly 2 letters. Automatically converted to uppercase. Required from
|
|
368
|
+
January 2026.
|
|
369
|
+
|
|
370
|
+
business_registration_number: Official business registration number (e.g., Employer Identification Number
|
|
371
|
+
(EIN) in the U.S.). Required from January 2026.
|
|
372
|
+
|
|
373
|
+
business_registration_type: Type of business registration being provided. Required from January 2026.
|
|
374
|
+
|
|
375
|
+
doing_business_as: Doing Business As (DBA) name if different from legal name
|
|
376
|
+
|
|
377
|
+
entity_type: Business entity classification
|
|
378
|
+
|
|
379
|
+
help_message_response: The message returned when users text 'HELP'
|
|
380
|
+
|
|
381
|
+
opt_in_confirmation_response: Message sent to users confirming their opt-in to receive messages
|
|
382
|
+
|
|
383
|
+
opt_in_keywords: Keywords used to collect and process consumer opt-ins
|
|
384
|
+
|
|
385
|
+
privacy_policy_url: URL pointing to the business's privacy policy. Plain string, no URL format
|
|
386
|
+
validation.
|
|
387
|
+
|
|
388
|
+
terms_and_condition_url: URL pointing to the business's terms and conditions. Plain string, no URL format
|
|
389
|
+
validation.
|
|
390
|
+
|
|
299
391
|
webhook_url: URL that should receive webhooks relating to this verification request
|
|
300
392
|
|
|
301
393
|
extra_headers: Send extra headers
|
|
@@ -331,7 +423,18 @@ class RequestsResource(SyncAPIResource):
|
|
|
331
423
|
"production_message_content": production_message_content,
|
|
332
424
|
"use_case": use_case,
|
|
333
425
|
"use_case_summary": use_case_summary,
|
|
426
|
+
"age_gated_content": age_gated_content,
|
|
334
427
|
"business_addr2": business_addr2,
|
|
428
|
+
"business_registration_country": business_registration_country,
|
|
429
|
+
"business_registration_number": business_registration_number,
|
|
430
|
+
"business_registration_type": business_registration_type,
|
|
431
|
+
"doing_business_as": doing_business_as,
|
|
432
|
+
"entity_type": entity_type,
|
|
433
|
+
"help_message_response": help_message_response,
|
|
434
|
+
"opt_in_confirmation_response": opt_in_confirmation_response,
|
|
435
|
+
"opt_in_keywords": opt_in_keywords,
|
|
436
|
+
"privacy_policy_url": privacy_policy_url,
|
|
437
|
+
"terms_and_condition_url": terms_and_condition_url,
|
|
335
438
|
"webhook_url": webhook_url,
|
|
336
439
|
},
|
|
337
440
|
request_update_params.RequestUpdateParams,
|
|
@@ -480,7 +583,19 @@ class AsyncRequestsResource(AsyncAPIResource):
|
|
|
480
583
|
production_message_content: str,
|
|
481
584
|
use_case: UseCaseCategories,
|
|
482
585
|
use_case_summary: str,
|
|
586
|
+
age_gated_content: bool | Omit = omit,
|
|
483
587
|
business_addr2: str | Omit = omit,
|
|
588
|
+
business_registration_country: Optional[str] | Omit = omit,
|
|
589
|
+
business_registration_number: Optional[str] | Omit = omit,
|
|
590
|
+
business_registration_type: Optional[str] | Omit = omit,
|
|
591
|
+
doing_business_as: Optional[str] | Omit = omit,
|
|
592
|
+
entity_type: Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]]
|
|
593
|
+
| Omit = omit,
|
|
594
|
+
help_message_response: Optional[str] | Omit = omit,
|
|
595
|
+
opt_in_confirmation_response: Optional[str] | Omit = omit,
|
|
596
|
+
opt_in_keywords: Optional[str] | Omit = omit,
|
|
597
|
+
privacy_policy_url: Optional[str] | Omit = omit,
|
|
598
|
+
terms_and_condition_url: Optional[str] | Omit = omit,
|
|
484
599
|
webhook_url: str | Omit = omit,
|
|
485
600
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
486
601
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -535,8 +650,36 @@ class AsyncRequestsResource(AsyncAPIResource):
|
|
|
535
650
|
|
|
536
651
|
use_case_summary: Human-readable summary of the desired use-case
|
|
537
652
|
|
|
653
|
+
age_gated_content: Indicates if messaging content requires age gating (e.g., 18+). Defaults to
|
|
654
|
+
false if not provided.
|
|
655
|
+
|
|
538
656
|
business_addr2: Line 2 of the business address
|
|
539
657
|
|
|
658
|
+
business_registration_country: ISO 3166-1 alpha-2 country code of the issuing business authority. Must be
|
|
659
|
+
exactly 2 letters. Automatically converted to uppercase. Required from
|
|
660
|
+
January 2026.
|
|
661
|
+
|
|
662
|
+
business_registration_number: Official business registration number (e.g., Employer Identification Number
|
|
663
|
+
(EIN) in the U.S.). Required from January 2026.
|
|
664
|
+
|
|
665
|
+
business_registration_type: Type of business registration being provided. Required from January 2026.
|
|
666
|
+
|
|
667
|
+
doing_business_as: Doing Business As (DBA) name if different from legal name
|
|
668
|
+
|
|
669
|
+
entity_type: Business entity classification
|
|
670
|
+
|
|
671
|
+
help_message_response: The message returned when users text 'HELP'
|
|
672
|
+
|
|
673
|
+
opt_in_confirmation_response: Message sent to users confirming their opt-in to receive messages
|
|
674
|
+
|
|
675
|
+
opt_in_keywords: Keywords used to collect and process consumer opt-ins
|
|
676
|
+
|
|
677
|
+
privacy_policy_url: URL pointing to the business's privacy policy. Plain string, no URL format
|
|
678
|
+
validation.
|
|
679
|
+
|
|
680
|
+
terms_and_condition_url: URL pointing to the business's terms and conditions. Plain string, no URL format
|
|
681
|
+
validation.
|
|
682
|
+
|
|
540
683
|
webhook_url: URL that should receive webhooks relating to this verification request
|
|
541
684
|
|
|
542
685
|
extra_headers: Send extra headers
|
|
@@ -570,7 +713,18 @@ class AsyncRequestsResource(AsyncAPIResource):
|
|
|
570
713
|
"production_message_content": production_message_content,
|
|
571
714
|
"use_case": use_case,
|
|
572
715
|
"use_case_summary": use_case_summary,
|
|
716
|
+
"age_gated_content": age_gated_content,
|
|
573
717
|
"business_addr2": business_addr2,
|
|
718
|
+
"business_registration_country": business_registration_country,
|
|
719
|
+
"business_registration_number": business_registration_number,
|
|
720
|
+
"business_registration_type": business_registration_type,
|
|
721
|
+
"doing_business_as": doing_business_as,
|
|
722
|
+
"entity_type": entity_type,
|
|
723
|
+
"help_message_response": help_message_response,
|
|
724
|
+
"opt_in_confirmation_response": opt_in_confirmation_response,
|
|
725
|
+
"opt_in_keywords": opt_in_keywords,
|
|
726
|
+
"privacy_policy_url": privacy_policy_url,
|
|
727
|
+
"terms_and_condition_url": terms_and_condition_url,
|
|
574
728
|
"webhook_url": webhook_url,
|
|
575
729
|
},
|
|
576
730
|
request_create_params.RequestCreateParams,
|
|
@@ -637,7 +791,19 @@ class AsyncRequestsResource(AsyncAPIResource):
|
|
|
637
791
|
production_message_content: str,
|
|
638
792
|
use_case: UseCaseCategories,
|
|
639
793
|
use_case_summary: str,
|
|
794
|
+
age_gated_content: bool | Omit = omit,
|
|
640
795
|
business_addr2: str | Omit = omit,
|
|
796
|
+
business_registration_country: Optional[str] | Omit = omit,
|
|
797
|
+
business_registration_number: Optional[str] | Omit = omit,
|
|
798
|
+
business_registration_type: Optional[str] | Omit = omit,
|
|
799
|
+
doing_business_as: Optional[str] | Omit = omit,
|
|
800
|
+
entity_type: Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]]
|
|
801
|
+
| Omit = omit,
|
|
802
|
+
help_message_response: Optional[str] | Omit = omit,
|
|
803
|
+
opt_in_confirmation_response: Optional[str] | Omit = omit,
|
|
804
|
+
opt_in_keywords: Optional[str] | Omit = omit,
|
|
805
|
+
privacy_policy_url: Optional[str] | Omit = omit,
|
|
806
|
+
terms_and_condition_url: Optional[str] | Omit = omit,
|
|
641
807
|
webhook_url: str | Omit = omit,
|
|
642
808
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
643
809
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -694,8 +860,36 @@ class AsyncRequestsResource(AsyncAPIResource):
|
|
|
694
860
|
|
|
695
861
|
use_case_summary: Human-readable summary of the desired use-case
|
|
696
862
|
|
|
863
|
+
age_gated_content: Indicates if messaging content requires age gating (e.g., 18+). Defaults to
|
|
864
|
+
false if not provided.
|
|
865
|
+
|
|
697
866
|
business_addr2: Line 2 of the business address
|
|
698
867
|
|
|
868
|
+
business_registration_country: ISO 3166-1 alpha-2 country code of the issuing business authority. Must be
|
|
869
|
+
exactly 2 letters. Automatically converted to uppercase. Required from
|
|
870
|
+
January 2026.
|
|
871
|
+
|
|
872
|
+
business_registration_number: Official business registration number (e.g., Employer Identification Number
|
|
873
|
+
(EIN) in the U.S.). Required from January 2026.
|
|
874
|
+
|
|
875
|
+
business_registration_type: Type of business registration being provided. Required from January 2026.
|
|
876
|
+
|
|
877
|
+
doing_business_as: Doing Business As (DBA) name if different from legal name
|
|
878
|
+
|
|
879
|
+
entity_type: Business entity classification
|
|
880
|
+
|
|
881
|
+
help_message_response: The message returned when users text 'HELP'
|
|
882
|
+
|
|
883
|
+
opt_in_confirmation_response: Message sent to users confirming their opt-in to receive messages
|
|
884
|
+
|
|
885
|
+
opt_in_keywords: Keywords used to collect and process consumer opt-ins
|
|
886
|
+
|
|
887
|
+
privacy_policy_url: URL pointing to the business's privacy policy. Plain string, no URL format
|
|
888
|
+
validation.
|
|
889
|
+
|
|
890
|
+
terms_and_condition_url: URL pointing to the business's terms and conditions. Plain string, no URL format
|
|
891
|
+
validation.
|
|
892
|
+
|
|
699
893
|
webhook_url: URL that should receive webhooks relating to this verification request
|
|
700
894
|
|
|
701
895
|
extra_headers: Send extra headers
|
|
@@ -731,7 +925,18 @@ class AsyncRequestsResource(AsyncAPIResource):
|
|
|
731
925
|
"production_message_content": production_message_content,
|
|
732
926
|
"use_case": use_case,
|
|
733
927
|
"use_case_summary": use_case_summary,
|
|
928
|
+
"age_gated_content": age_gated_content,
|
|
734
929
|
"business_addr2": business_addr2,
|
|
930
|
+
"business_registration_country": business_registration_country,
|
|
931
|
+
"business_registration_number": business_registration_number,
|
|
932
|
+
"business_registration_type": business_registration_type,
|
|
933
|
+
"doing_business_as": doing_business_as,
|
|
934
|
+
"entity_type": entity_type,
|
|
935
|
+
"help_message_response": help_message_response,
|
|
936
|
+
"opt_in_confirmation_response": opt_in_confirmation_response,
|
|
937
|
+
"opt_in_keywords": opt_in_keywords,
|
|
938
|
+
"privacy_policy_url": privacy_policy_url,
|
|
939
|
+
"terms_and_condition_url": terms_and_condition_url,
|
|
735
940
|
"webhook_url": webhook_url,
|
|
736
941
|
},
|
|
737
942
|
request_update_params.RequestUpdateParams,
|
|
@@ -65,6 +65,7 @@ class OutboundVoiceProfilesResource(SyncAPIResource):
|
|
|
65
65
|
name: str,
|
|
66
66
|
billing_group_id: Optional[str] | Omit = omit,
|
|
67
67
|
call_recording: OutboundCallRecordingParam | Omit = omit,
|
|
68
|
+
calling_window: outbound_voice_profile_create_params.CallingWindow | Omit = omit,
|
|
68
69
|
concurrent_call_limit: Optional[int] | Omit = omit,
|
|
69
70
|
daily_spend_limit: str | Omit = omit,
|
|
70
71
|
daily_spend_limit_enabled: bool | Omit = omit,
|
|
@@ -91,6 +92,9 @@ class OutboundVoiceProfilesResource(SyncAPIResource):
|
|
|
91
92
|
billing_group_id: The ID of the billing group associated with the outbound proflile. Defaults to
|
|
92
93
|
null (for no group assigned).
|
|
93
94
|
|
|
95
|
+
calling_window: (BETA) Specifies the time window and call limits for calls made using this
|
|
96
|
+
outbound voice profile. Note that all times are UTC in 24-hour clock time.
|
|
97
|
+
|
|
94
98
|
concurrent_call_limit: Must be no more than your global concurrent call limit. Null means no limit.
|
|
95
99
|
|
|
96
100
|
daily_spend_limit: The maximum amount of usage charges, in USD, you want Telnyx to allow on this
|
|
@@ -129,6 +133,7 @@ class OutboundVoiceProfilesResource(SyncAPIResource):
|
|
|
129
133
|
"name": name,
|
|
130
134
|
"billing_group_id": billing_group_id,
|
|
131
135
|
"call_recording": call_recording,
|
|
136
|
+
"calling_window": calling_window,
|
|
132
137
|
"concurrent_call_limit": concurrent_call_limit,
|
|
133
138
|
"daily_spend_limit": daily_spend_limit,
|
|
134
139
|
"daily_spend_limit_enabled": daily_spend_limit_enabled,
|
|
@@ -188,6 +193,7 @@ class OutboundVoiceProfilesResource(SyncAPIResource):
|
|
|
188
193
|
name: str,
|
|
189
194
|
billing_group_id: Optional[str] | Omit = omit,
|
|
190
195
|
call_recording: OutboundCallRecordingParam | Omit = omit,
|
|
196
|
+
calling_window: outbound_voice_profile_update_params.CallingWindow | Omit = omit,
|
|
191
197
|
concurrent_call_limit: Optional[int] | Omit = omit,
|
|
192
198
|
daily_spend_limit: str | Omit = omit,
|
|
193
199
|
daily_spend_limit_enabled: bool | Omit = omit,
|
|
@@ -214,6 +220,9 @@ class OutboundVoiceProfilesResource(SyncAPIResource):
|
|
|
214
220
|
billing_group_id: The ID of the billing group associated with the outbound proflile. Defaults to
|
|
215
221
|
null (for no group assigned).
|
|
216
222
|
|
|
223
|
+
calling_window: (BETA) Specifies the time window and call limits for calls made using this
|
|
224
|
+
outbound voice profile.
|
|
225
|
+
|
|
217
226
|
concurrent_call_limit: Must be no more than your global concurrent call limit. Null means no limit.
|
|
218
227
|
|
|
219
228
|
daily_spend_limit: The maximum amount of usage charges, in USD, you want Telnyx to allow on this
|
|
@@ -254,6 +263,7 @@ class OutboundVoiceProfilesResource(SyncAPIResource):
|
|
|
254
263
|
"name": name,
|
|
255
264
|
"billing_group_id": billing_group_id,
|
|
256
265
|
"call_recording": call_recording,
|
|
266
|
+
"calling_window": calling_window,
|
|
257
267
|
"concurrent_call_limit": concurrent_call_limit,
|
|
258
268
|
"daily_spend_limit": daily_spend_limit,
|
|
259
269
|
"daily_spend_limit_enabled": daily_spend_limit_enabled,
|
|
@@ -309,8 +319,8 @@ class OutboundVoiceProfilesResource(SyncAPIResource):
|
|
|
309
319
|
Consolidated filter parameter (deepObject style). Originally:
|
|
310
320
|
filter[name][contains]
|
|
311
321
|
|
|
312
|
-
page: Consolidated page parameter (deepObject style). Originally: page[
|
|
313
|
-
page[
|
|
322
|
+
page: Consolidated page parameter (deepObject style). Originally: page[size],
|
|
323
|
+
page[number]
|
|
314
324
|
|
|
315
325
|
sort: Specifies the sort order for results. By default sorting direction is ascending.
|
|
316
326
|
To have the results sorted in descending order add the <code>-</code>
|
|
@@ -414,6 +424,7 @@ class AsyncOutboundVoiceProfilesResource(AsyncAPIResource):
|
|
|
414
424
|
name: str,
|
|
415
425
|
billing_group_id: Optional[str] | Omit = omit,
|
|
416
426
|
call_recording: OutboundCallRecordingParam | Omit = omit,
|
|
427
|
+
calling_window: outbound_voice_profile_create_params.CallingWindow | Omit = omit,
|
|
417
428
|
concurrent_call_limit: Optional[int] | Omit = omit,
|
|
418
429
|
daily_spend_limit: str | Omit = omit,
|
|
419
430
|
daily_spend_limit_enabled: bool | Omit = omit,
|
|
@@ -440,6 +451,9 @@ class AsyncOutboundVoiceProfilesResource(AsyncAPIResource):
|
|
|
440
451
|
billing_group_id: The ID of the billing group associated with the outbound proflile. Defaults to
|
|
441
452
|
null (for no group assigned).
|
|
442
453
|
|
|
454
|
+
calling_window: (BETA) Specifies the time window and call limits for calls made using this
|
|
455
|
+
outbound voice profile. Note that all times are UTC in 24-hour clock time.
|
|
456
|
+
|
|
443
457
|
concurrent_call_limit: Must be no more than your global concurrent call limit. Null means no limit.
|
|
444
458
|
|
|
445
459
|
daily_spend_limit: The maximum amount of usage charges, in USD, you want Telnyx to allow on this
|
|
@@ -478,6 +492,7 @@ class AsyncOutboundVoiceProfilesResource(AsyncAPIResource):
|
|
|
478
492
|
"name": name,
|
|
479
493
|
"billing_group_id": billing_group_id,
|
|
480
494
|
"call_recording": call_recording,
|
|
495
|
+
"calling_window": calling_window,
|
|
481
496
|
"concurrent_call_limit": concurrent_call_limit,
|
|
482
497
|
"daily_spend_limit": daily_spend_limit,
|
|
483
498
|
"daily_spend_limit_enabled": daily_spend_limit_enabled,
|
|
@@ -537,6 +552,7 @@ class AsyncOutboundVoiceProfilesResource(AsyncAPIResource):
|
|
|
537
552
|
name: str,
|
|
538
553
|
billing_group_id: Optional[str] | Omit = omit,
|
|
539
554
|
call_recording: OutboundCallRecordingParam | Omit = omit,
|
|
555
|
+
calling_window: outbound_voice_profile_update_params.CallingWindow | Omit = omit,
|
|
540
556
|
concurrent_call_limit: Optional[int] | Omit = omit,
|
|
541
557
|
daily_spend_limit: str | Omit = omit,
|
|
542
558
|
daily_spend_limit_enabled: bool | Omit = omit,
|
|
@@ -563,6 +579,9 @@ class AsyncOutboundVoiceProfilesResource(AsyncAPIResource):
|
|
|
563
579
|
billing_group_id: The ID of the billing group associated with the outbound proflile. Defaults to
|
|
564
580
|
null (for no group assigned).
|
|
565
581
|
|
|
582
|
+
calling_window: (BETA) Specifies the time window and call limits for calls made using this
|
|
583
|
+
outbound voice profile.
|
|
584
|
+
|
|
566
585
|
concurrent_call_limit: Must be no more than your global concurrent call limit. Null means no limit.
|
|
567
586
|
|
|
568
587
|
daily_spend_limit: The maximum amount of usage charges, in USD, you want Telnyx to allow on this
|
|
@@ -603,6 +622,7 @@ class AsyncOutboundVoiceProfilesResource(AsyncAPIResource):
|
|
|
603
622
|
"name": name,
|
|
604
623
|
"billing_group_id": billing_group_id,
|
|
605
624
|
"call_recording": call_recording,
|
|
625
|
+
"calling_window": calling_window,
|
|
606
626
|
"concurrent_call_limit": concurrent_call_limit,
|
|
607
627
|
"daily_spend_limit": daily_spend_limit,
|
|
608
628
|
"daily_spend_limit_enabled": daily_spend_limit_enabled,
|
|
@@ -658,8 +678,8 @@ class AsyncOutboundVoiceProfilesResource(AsyncAPIResource):
|
|
|
658
678
|
Consolidated filter parameter (deepObject style). Originally:
|
|
659
679
|
filter[name][contains]
|
|
660
680
|
|
|
661
|
-
page: Consolidated page parameter (deepObject style). Originally: page[
|
|
662
|
-
page[
|
|
681
|
+
page: Consolidated page parameter (deepObject style). Originally: page[size],
|
|
682
|
+
page[number]
|
|
663
683
|
|
|
664
684
|
sort: Specifies the sort order for results. By default sorting direction is ascending.
|
|
665
685
|
To have the results sorted in descending order add the <code>-</code>
|
|
@@ -154,7 +154,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
154
154
|
This API triggers an asynchronous operation to set a public IP for each of the
|
|
155
155
|
specified SIM cards.<br/> For each SIM Card a SIM Card Action will be generated.
|
|
156
156
|
The status of the SIM Card Action can be followed through the
|
|
157
|
-
[List SIM Card Action](https://
|
|
157
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
158
158
|
API.
|
|
159
159
|
|
|
160
160
|
Args:
|
|
@@ -193,7 +193,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
193
193
|
impossible to consume data.<br/> The API will trigger an asynchronous operation
|
|
194
194
|
called a SIM Card Action. Transitioning to the disabled state may take a period
|
|
195
195
|
of time. The status of the SIM Card Action can be followed through the
|
|
196
|
-
[List SIM Card Action](https://
|
|
196
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
197
197
|
API.
|
|
198
198
|
|
|
199
199
|
Args:
|
|
@@ -232,7 +232,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
232
232
|
card group.<br/> The API will trigger an asynchronous operation called a SIM
|
|
233
233
|
Card Action. Transitioning to the enabled state may take a period of time. The
|
|
234
234
|
status of the SIM Card Action can be followed through the
|
|
235
|
-
[List SIM Card Action](https://
|
|
235
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
236
236
|
API.
|
|
237
237
|
|
|
238
238
|
Args:
|
|
@@ -270,7 +270,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
270
270
|
<br/><br/> The API will
|
|
271
271
|
trigger an asynchronous operation called a SIM Card Action. The status of the
|
|
272
272
|
SIM Card Action can be followed through the
|
|
273
|
-
[List SIM Card Action](https://
|
|
273
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
274
274
|
API.
|
|
275
275
|
|
|
276
276
|
Args:
|
|
@@ -309,7 +309,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
309
309
|
public IP to the SIM card. <br/><br/> The API will trigger an asynchronous
|
|
310
310
|
operation called a SIM Card Action. The status of the SIM Card Action can be
|
|
311
311
|
followed through the
|
|
312
|
-
[List SIM Card Action](https://
|
|
312
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
313
313
|
API. <br/><br/> Setting a Public IP to a SIM Card incurs a charge and will only
|
|
314
314
|
succeed if the account has sufficient funds.
|
|
315
315
|
|
|
@@ -359,7 +359,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
359
359
|
API will trigger an asynchronous operation called a SIM Card Action.
|
|
360
360
|
Transitioning to the standby state may take a period of time. The status of the
|
|
361
361
|
SIM Card Action can be followed through the
|
|
362
|
-
[List SIM Card Action](https://
|
|
362
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
363
363
|
API.
|
|
364
364
|
|
|
365
365
|
Args:
|
|
@@ -537,7 +537,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
537
537
|
This API triggers an asynchronous operation to set a public IP for each of the
|
|
538
538
|
specified SIM cards.<br/> For each SIM Card a SIM Card Action will be generated.
|
|
539
539
|
The status of the SIM Card Action can be followed through the
|
|
540
|
-
[List SIM Card Action](https://
|
|
540
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
541
541
|
API.
|
|
542
542
|
|
|
543
543
|
Args:
|
|
@@ -576,7 +576,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
576
576
|
impossible to consume data.<br/> The API will trigger an asynchronous operation
|
|
577
577
|
called a SIM Card Action. Transitioning to the disabled state may take a period
|
|
578
578
|
of time. The status of the SIM Card Action can be followed through the
|
|
579
|
-
[List SIM Card Action](https://
|
|
579
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
580
580
|
API.
|
|
581
581
|
|
|
582
582
|
Args:
|
|
@@ -615,7 +615,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
615
615
|
card group.<br/> The API will trigger an asynchronous operation called a SIM
|
|
616
616
|
Card Action. Transitioning to the enabled state may take a period of time. The
|
|
617
617
|
status of the SIM Card Action can be followed through the
|
|
618
|
-
[List SIM Card Action](https://
|
|
618
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
619
619
|
API.
|
|
620
620
|
|
|
621
621
|
Args:
|
|
@@ -653,7 +653,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
653
653
|
<br/><br/> The API will
|
|
654
654
|
trigger an asynchronous operation called a SIM Card Action. The status of the
|
|
655
655
|
SIM Card Action can be followed through the
|
|
656
|
-
[List SIM Card Action](https://
|
|
656
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
657
657
|
API.
|
|
658
658
|
|
|
659
659
|
Args:
|
|
@@ -692,7 +692,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
692
692
|
public IP to the SIM card. <br/><br/> The API will trigger an asynchronous
|
|
693
693
|
operation called a SIM Card Action. The status of the SIM Card Action can be
|
|
694
694
|
followed through the
|
|
695
|
-
[List SIM Card Action](https://
|
|
695
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
696
696
|
API. <br/><br/> Setting a Public IP to a SIM Card incurs a charge and will only
|
|
697
697
|
succeed if the account has sufficient funds.
|
|
698
698
|
|
|
@@ -742,7 +742,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
742
742
|
API will trigger an asynchronous operation called a SIM Card Action.
|
|
743
743
|
Transitioning to the standby state may take a period of time. The status of the
|
|
744
744
|
SIM Card Action can be followed through the
|
|
745
|
-
[List SIM Card Action](https://
|
|
745
|
+
[List SIM Card Action](https://developers.telnyx.com/api/wireless/list-sim-card-actions)
|
|
746
746
|
API.
|
|
747
747
|
|
|
748
748
|
Args:
|
|
@@ -12,5 +12,5 @@ class ImportMetadata(BaseModel):
|
|
|
12
12
|
import_id: Optional[str] = None
|
|
13
13
|
"""ID of the assistant in the provider's system."""
|
|
14
14
|
|
|
15
|
-
import_provider: Optional[Literal["elevenlabs", "vapi"]] = None
|
|
15
|
+
import_provider: Optional[Literal["elevenlabs", "vapi", "retell"]] = None
|
|
16
16
|
"""Provider the assistant was imported from."""
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Iterable
|
|
6
|
-
from typing_extensions import Required, Annotated, TypedDict
|
|
5
|
+
from typing import Iterable, Optional
|
|
6
|
+
from typing_extensions import Literal, Required, Annotated, TypedDict
|
|
7
7
|
|
|
8
8
|
from .volume import Volume
|
|
9
9
|
from ...._utils import PropertyInfo
|
|
@@ -84,8 +84,60 @@ class RequestCreateParams(TypedDict, total=False):
|
|
|
84
84
|
use_case_summary: Required[Annotated[str, PropertyInfo(alias="useCaseSummary")]]
|
|
85
85
|
"""Human-readable summary of the desired use-case"""
|
|
86
86
|
|
|
87
|
+
age_gated_content: Annotated[bool, PropertyInfo(alias="ageGatedContent")]
|
|
88
|
+
"""Indicates if messaging content requires age gating (e.g., 18+).
|
|
89
|
+
|
|
90
|
+
Defaults to false if not provided.
|
|
91
|
+
"""
|
|
92
|
+
|
|
87
93
|
business_addr2: Annotated[str, PropertyInfo(alias="businessAddr2")]
|
|
88
94
|
"""Line 2 of the business address"""
|
|
89
95
|
|
|
96
|
+
business_registration_country: Annotated[Optional[str], PropertyInfo(alias="businessRegistrationCountry")]
|
|
97
|
+
"""ISO 3166-1 alpha-2 country code of the issuing business authority.
|
|
98
|
+
|
|
99
|
+
Must be exactly 2 letters. Automatically converted to uppercase. Required from
|
|
100
|
+
January 2026.
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
business_registration_number: Annotated[Optional[str], PropertyInfo(alias="businessRegistrationNumber")]
|
|
104
|
+
"""
|
|
105
|
+
Official business registration number (e.g., Employer Identification Number
|
|
106
|
+
(EIN) in the U.S.). Required from January 2026.
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
business_registration_type: Annotated[Optional[str], PropertyInfo(alias="businessRegistrationType")]
|
|
110
|
+
"""Type of business registration being provided. Required from January 2026."""
|
|
111
|
+
|
|
112
|
+
doing_business_as: Annotated[Optional[str], PropertyInfo(alias="doingBusinessAs")]
|
|
113
|
+
"""Doing Business As (DBA) name if different from legal name"""
|
|
114
|
+
|
|
115
|
+
entity_type: Annotated[
|
|
116
|
+
Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]],
|
|
117
|
+
PropertyInfo(alias="entityType"),
|
|
118
|
+
]
|
|
119
|
+
"""Business entity classification"""
|
|
120
|
+
|
|
121
|
+
help_message_response: Annotated[Optional[str], PropertyInfo(alias="helpMessageResponse")]
|
|
122
|
+
"""The message returned when users text 'HELP'"""
|
|
123
|
+
|
|
124
|
+
opt_in_confirmation_response: Annotated[Optional[str], PropertyInfo(alias="optInConfirmationResponse")]
|
|
125
|
+
"""Message sent to users confirming their opt-in to receive messages"""
|
|
126
|
+
|
|
127
|
+
opt_in_keywords: Annotated[Optional[str], PropertyInfo(alias="optInKeywords")]
|
|
128
|
+
"""Keywords used to collect and process consumer opt-ins"""
|
|
129
|
+
|
|
130
|
+
privacy_policy_url: Annotated[Optional[str], PropertyInfo(alias="privacyPolicyURL")]
|
|
131
|
+
"""URL pointing to the business's privacy policy.
|
|
132
|
+
|
|
133
|
+
Plain string, no URL format validation.
|
|
134
|
+
"""
|
|
135
|
+
|
|
136
|
+
terms_and_condition_url: Annotated[Optional[str], PropertyInfo(alias="termsAndConditionURL")]
|
|
137
|
+
"""URL pointing to the business's terms and conditions.
|
|
138
|
+
|
|
139
|
+
Plain string, no URL format validation.
|
|
140
|
+
"""
|
|
141
|
+
|
|
90
142
|
webhook_url: Annotated[str, PropertyInfo(alias="webhookUrl")]
|
|
91
143
|
"""URL that should receive webhooks relating to this verification request"""
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Iterable
|
|
6
|
-
from typing_extensions import Required, Annotated, TypedDict
|
|
5
|
+
from typing import Iterable, Optional
|
|
6
|
+
from typing_extensions import Literal, Required, Annotated, TypedDict
|
|
7
7
|
|
|
8
8
|
from .volume import Volume
|
|
9
9
|
from ...._utils import PropertyInfo
|
|
@@ -84,8 +84,60 @@ class RequestUpdateParams(TypedDict, total=False):
|
|
|
84
84
|
use_case_summary: Required[Annotated[str, PropertyInfo(alias="useCaseSummary")]]
|
|
85
85
|
"""Human-readable summary of the desired use-case"""
|
|
86
86
|
|
|
87
|
+
age_gated_content: Annotated[bool, PropertyInfo(alias="ageGatedContent")]
|
|
88
|
+
"""Indicates if messaging content requires age gating (e.g., 18+).
|
|
89
|
+
|
|
90
|
+
Defaults to false if not provided.
|
|
91
|
+
"""
|
|
92
|
+
|
|
87
93
|
business_addr2: Annotated[str, PropertyInfo(alias="businessAddr2")]
|
|
88
94
|
"""Line 2 of the business address"""
|
|
89
95
|
|
|
96
|
+
business_registration_country: Annotated[Optional[str], PropertyInfo(alias="businessRegistrationCountry")]
|
|
97
|
+
"""ISO 3166-1 alpha-2 country code of the issuing business authority.
|
|
98
|
+
|
|
99
|
+
Must be exactly 2 letters. Automatically converted to uppercase. Required from
|
|
100
|
+
January 2026.
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
business_registration_number: Annotated[Optional[str], PropertyInfo(alias="businessRegistrationNumber")]
|
|
104
|
+
"""
|
|
105
|
+
Official business registration number (e.g., Employer Identification Number
|
|
106
|
+
(EIN) in the U.S.). Required from January 2026.
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
business_registration_type: Annotated[Optional[str], PropertyInfo(alias="businessRegistrationType")]
|
|
110
|
+
"""Type of business registration being provided. Required from January 2026."""
|
|
111
|
+
|
|
112
|
+
doing_business_as: Annotated[Optional[str], PropertyInfo(alias="doingBusinessAs")]
|
|
113
|
+
"""Doing Business As (DBA) name if different from legal name"""
|
|
114
|
+
|
|
115
|
+
entity_type: Annotated[
|
|
116
|
+
Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]],
|
|
117
|
+
PropertyInfo(alias="entityType"),
|
|
118
|
+
]
|
|
119
|
+
"""Business entity classification"""
|
|
120
|
+
|
|
121
|
+
help_message_response: Annotated[Optional[str], PropertyInfo(alias="helpMessageResponse")]
|
|
122
|
+
"""The message returned when users text 'HELP'"""
|
|
123
|
+
|
|
124
|
+
opt_in_confirmation_response: Annotated[Optional[str], PropertyInfo(alias="optInConfirmationResponse")]
|
|
125
|
+
"""Message sent to users confirming their opt-in to receive messages"""
|
|
126
|
+
|
|
127
|
+
opt_in_keywords: Annotated[Optional[str], PropertyInfo(alias="optInKeywords")]
|
|
128
|
+
"""Keywords used to collect and process consumer opt-ins"""
|
|
129
|
+
|
|
130
|
+
privacy_policy_url: Annotated[Optional[str], PropertyInfo(alias="privacyPolicyURL")]
|
|
131
|
+
"""URL pointing to the business's privacy policy.
|
|
132
|
+
|
|
133
|
+
Plain string, no URL format validation.
|
|
134
|
+
"""
|
|
135
|
+
|
|
136
|
+
terms_and_condition_url: Annotated[Optional[str], PropertyInfo(alias="termsAndConditionURL")]
|
|
137
|
+
"""URL pointing to the business's terms and conditions.
|
|
138
|
+
|
|
139
|
+
Plain string, no URL format validation.
|
|
140
|
+
"""
|
|
141
|
+
|
|
90
142
|
webhook_url: Annotated[str, PropertyInfo(alias="webhookUrl")]
|
|
91
143
|
"""URL that should receive webhooks relating to this verification request"""
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
from typing import List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
4
5
|
|
|
5
6
|
from pydantic import Field as FieldInfo
|
|
6
7
|
|
|
@@ -59,8 +60,33 @@ class VerificationRequestEgress(BaseModel):
|
|
|
59
60
|
|
|
60
61
|
verification_request_id: str = FieldInfo(alias="verificationRequestId")
|
|
61
62
|
|
|
63
|
+
age_gated_content: Optional[bool] = FieldInfo(alias="ageGatedContent", default=None)
|
|
64
|
+
|
|
62
65
|
business_addr2: Optional[str] = FieldInfo(alias="businessAddr2", default=None)
|
|
63
66
|
|
|
67
|
+
business_registration_country: Optional[str] = FieldInfo(alias="businessRegistrationCountry", default=None)
|
|
68
|
+
|
|
69
|
+
business_registration_number: Optional[str] = FieldInfo(alias="businessRegistrationNumber", default=None)
|
|
70
|
+
|
|
71
|
+
business_registration_type: Optional[str] = FieldInfo(alias="businessRegistrationType", default=None)
|
|
72
|
+
|
|
73
|
+
doing_business_as: Optional[str] = FieldInfo(alias="doingBusinessAs", default=None)
|
|
74
|
+
|
|
75
|
+
entity_type: Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]] = (
|
|
76
|
+
FieldInfo(alias="entityType", default=None)
|
|
77
|
+
)
|
|
78
|
+
"""Business entity classification"""
|
|
79
|
+
|
|
80
|
+
help_message_response: Optional[str] = FieldInfo(alias="helpMessageResponse", default=None)
|
|
81
|
+
|
|
82
|
+
opt_in_confirmation_response: Optional[str] = FieldInfo(alias="optInConfirmationResponse", default=None)
|
|
83
|
+
|
|
84
|
+
opt_in_keywords: Optional[str] = FieldInfo(alias="optInKeywords", default=None)
|
|
85
|
+
|
|
86
|
+
privacy_policy_url: Optional[str] = FieldInfo(alias="privacyPolicyURL", default=None)
|
|
87
|
+
|
|
88
|
+
terms_and_condition_url: Optional[str] = FieldInfo(alias="termsAndConditionURL", default=None)
|
|
89
|
+
|
|
64
90
|
verification_status: Optional[TfVerificationStatus] = FieldInfo(alias="verificationStatus", default=None)
|
|
65
91
|
"""Tollfree verification status"""
|
|
66
92
|
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from typing import List, Optional
|
|
4
4
|
from datetime import datetime
|
|
5
|
+
from typing_extensions import Literal
|
|
5
6
|
|
|
6
7
|
from pydantic import Field as FieldInfo
|
|
7
8
|
|
|
@@ -61,12 +62,37 @@ class VerificationRequestStatus(BaseModel):
|
|
|
61
62
|
verification_status: TfVerificationStatus = FieldInfo(alias="verificationStatus")
|
|
62
63
|
"""Tollfree verification status"""
|
|
63
64
|
|
|
65
|
+
age_gated_content: Optional[bool] = FieldInfo(alias="ageGatedContent", default=None)
|
|
66
|
+
|
|
64
67
|
business_addr2: Optional[str] = FieldInfo(alias="businessAddr2", default=None)
|
|
65
68
|
|
|
69
|
+
business_registration_country: Optional[str] = FieldInfo(alias="businessRegistrationCountry", default=None)
|
|
70
|
+
|
|
71
|
+
business_registration_number: Optional[str] = FieldInfo(alias="businessRegistrationNumber", default=None)
|
|
72
|
+
|
|
73
|
+
business_registration_type: Optional[str] = FieldInfo(alias="businessRegistrationType", default=None)
|
|
74
|
+
|
|
66
75
|
created_at: Optional[datetime] = FieldInfo(alias="createdAt", default=None)
|
|
67
76
|
|
|
77
|
+
doing_business_as: Optional[str] = FieldInfo(alias="doingBusinessAs", default=None)
|
|
78
|
+
|
|
79
|
+
entity_type: Optional[Literal["SOLE_PROPRIETOR", "PRIVATE_PROFIT", "PUBLIC_PROFIT", "NON_PROFIT", "GOVERNMENT"]] = (
|
|
80
|
+
FieldInfo(alias="entityType", default=None)
|
|
81
|
+
)
|
|
82
|
+
"""Business entity classification"""
|
|
83
|
+
|
|
84
|
+
help_message_response: Optional[str] = FieldInfo(alias="helpMessageResponse", default=None)
|
|
85
|
+
|
|
86
|
+
opt_in_confirmation_response: Optional[str] = FieldInfo(alias="optInConfirmationResponse", default=None)
|
|
87
|
+
|
|
88
|
+
opt_in_keywords: Optional[str] = FieldInfo(alias="optInKeywords", default=None)
|
|
89
|
+
|
|
90
|
+
privacy_policy_url: Optional[str] = FieldInfo(alias="privacyPolicyURL", default=None)
|
|
91
|
+
|
|
68
92
|
reason: Optional[str] = None
|
|
69
93
|
|
|
94
|
+
terms_and_condition_url: Optional[str] = FieldInfo(alias="termsAndConditionURL", default=None)
|
|
95
|
+
|
|
70
96
|
updated_at: Optional[datetime] = FieldInfo(alias="updatedAt", default=None)
|
|
71
97
|
|
|
72
98
|
webhook_url: Optional[str] = FieldInfo(alias="webhookUrl", default=None)
|
|
@@ -8,7 +8,27 @@ from .traffic_type import TrafficType
|
|
|
8
8
|
from .usage_payment_method import UsagePaymentMethod
|
|
9
9
|
from .outbound_call_recording import OutboundCallRecording
|
|
10
10
|
|
|
11
|
-
__all__ = ["OutboundVoiceProfile"]
|
|
11
|
+
__all__ = ["OutboundVoiceProfile", "CallingWindow"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class CallingWindow(BaseModel):
|
|
15
|
+
calls_per_cld: Optional[int] = None
|
|
16
|
+
"""
|
|
17
|
+
(BETA) The maximum number of calls that can be initiated to a single called
|
|
18
|
+
party (CLD) within the calling window. A null value means no limit.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
end_time: Optional[str] = None
|
|
22
|
+
"""
|
|
23
|
+
(BETA) The UTC time of day (in HH:MM format, 24-hour clock) when calls are no
|
|
24
|
+
longer allowed to start.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
start_time: Optional[str] = None
|
|
28
|
+
"""
|
|
29
|
+
(BETA) The UTC time of day (in HH:MM format, 24-hour clock) when calls are
|
|
30
|
+
allowed to start.
|
|
31
|
+
"""
|
|
12
32
|
|
|
13
33
|
|
|
14
34
|
class OutboundVoiceProfile(BaseModel):
|
|
@@ -26,6 +46,12 @@ class OutboundVoiceProfile(BaseModel):
|
|
|
26
46
|
|
|
27
47
|
call_recording: Optional[OutboundCallRecording] = None
|
|
28
48
|
|
|
49
|
+
calling_window: Optional[CallingWindow] = None
|
|
50
|
+
"""
|
|
51
|
+
(BETA) Specifies the time window and call limits for calls made using this
|
|
52
|
+
outbound voice profile. Note that all times are UTC in 24-hour clock time.
|
|
53
|
+
"""
|
|
54
|
+
|
|
29
55
|
concurrent_call_limit: Optional[int] = None
|
|
30
56
|
"""Must be no more than your global concurrent call limit. Null means no limit."""
|
|
31
57
|
|
|
@@ -11,7 +11,7 @@ from .traffic_type import TrafficType
|
|
|
11
11
|
from .usage_payment_method import UsagePaymentMethod
|
|
12
12
|
from .outbound_call_recording_param import OutboundCallRecordingParam
|
|
13
13
|
|
|
14
|
-
__all__ = ["OutboundVoiceProfileCreateParams"]
|
|
14
|
+
__all__ = ["OutboundVoiceProfileCreateParams", "CallingWindow"]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class OutboundVoiceProfileCreateParams(TypedDict, total=False):
|
|
@@ -26,6 +26,12 @@ class OutboundVoiceProfileCreateParams(TypedDict, total=False):
|
|
|
26
26
|
|
|
27
27
|
call_recording: OutboundCallRecordingParam
|
|
28
28
|
|
|
29
|
+
calling_window: CallingWindow
|
|
30
|
+
"""
|
|
31
|
+
(BETA) Specifies the time window and call limits for calls made using this
|
|
32
|
+
outbound voice profile. Note that all times are UTC in 24-hour clock time.
|
|
33
|
+
"""
|
|
34
|
+
|
|
29
35
|
concurrent_call_limit: Optional[int]
|
|
30
36
|
"""Must be no more than your global concurrent call limit. Null means no limit."""
|
|
31
37
|
|
|
@@ -70,3 +76,23 @@ class OutboundVoiceProfileCreateParams(TypedDict, total=False):
|
|
|
70
76
|
The list of destinations you want to be able to call using this outbound voice
|
|
71
77
|
profile formatted in alpha2.
|
|
72
78
|
"""
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class CallingWindow(TypedDict, total=False):
|
|
82
|
+
calls_per_cld: int
|
|
83
|
+
"""
|
|
84
|
+
(BETA) The maximum number of calls that can be initiated to a single called
|
|
85
|
+
party (CLD) within the calling window. A null value means no limit.
|
|
86
|
+
"""
|
|
87
|
+
|
|
88
|
+
end_time: str
|
|
89
|
+
"""
|
|
90
|
+
(BETA) The UTC time of day (in HH:MM format, 24-hour clock) when calls are no
|
|
91
|
+
longer allowed to start.
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
start_time: str
|
|
95
|
+
"""
|
|
96
|
+
(BETA) The UTC time of day (in HH:MM format, 24-hour clock) when calls are
|
|
97
|
+
allowed to start.
|
|
98
|
+
"""
|
|
@@ -11,7 +11,7 @@ from .traffic_type import TrafficType
|
|
|
11
11
|
from .usage_payment_method import UsagePaymentMethod
|
|
12
12
|
from .outbound_call_recording_param import OutboundCallRecordingParam
|
|
13
13
|
|
|
14
|
-
__all__ = ["OutboundVoiceProfileUpdateParams"]
|
|
14
|
+
__all__ = ["OutboundVoiceProfileUpdateParams", "CallingWindow"]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class OutboundVoiceProfileUpdateParams(TypedDict, total=False):
|
|
@@ -26,6 +26,12 @@ class OutboundVoiceProfileUpdateParams(TypedDict, total=False):
|
|
|
26
26
|
|
|
27
27
|
call_recording: OutboundCallRecordingParam
|
|
28
28
|
|
|
29
|
+
calling_window: CallingWindow
|
|
30
|
+
"""
|
|
31
|
+
(BETA) Specifies the time window and call limits for calls made using this
|
|
32
|
+
outbound voice profile.
|
|
33
|
+
"""
|
|
34
|
+
|
|
29
35
|
concurrent_call_limit: Optional[int]
|
|
30
36
|
"""Must be no more than your global concurrent call limit. Null means no limit."""
|
|
31
37
|
|
|
@@ -70,3 +76,23 @@ class OutboundVoiceProfileUpdateParams(TypedDict, total=False):
|
|
|
70
76
|
The list of destinations you want to be able to call using this outbound voice
|
|
71
77
|
profile formatted in alpha2.
|
|
72
78
|
"""
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class CallingWindow(TypedDict, total=False):
|
|
82
|
+
calls_per_cld: int
|
|
83
|
+
"""
|
|
84
|
+
(BETA) The maximum number of calls that can be initiated to a single called
|
|
85
|
+
party (CLD) within the calling window. A null value means no limit.
|
|
86
|
+
"""
|
|
87
|
+
|
|
88
|
+
end_time: str
|
|
89
|
+
"""
|
|
90
|
+
(BETA) The UTC time of day (in HH:MM format, 24-hour clock) when calls are no
|
|
91
|
+
longer allowed to start.
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
start_time: str
|
|
95
|
+
"""
|
|
96
|
+
(BETA) The UTC time of day (in HH:MM format, 24-hour clock) when calls are
|
|
97
|
+
allowed to start.
|
|
98
|
+
"""
|
|
@@ -20,7 +20,7 @@ class RegulatoryRequirement(BaseModel):
|
|
|
20
20
|
|
|
21
21
|
requirement_id: Optional[str] = None
|
|
22
22
|
|
|
23
|
-
status: Optional[Literal["approved", "unapproved", "pending-approval", "declined"]] = None
|
|
23
|
+
status: Optional[Literal["approved", "unapproved", "pending-approval", "declined", "expired"]] = None
|
|
24
24
|
|
|
25
25
|
updated_at: Optional[datetime] = None
|
|
26
26
|
|
|
@@ -42,6 +42,6 @@ class RequirementGroup(BaseModel):
|
|
|
42
42
|
|
|
43
43
|
regulatory_requirements: Optional[List[RegulatoryRequirement]] = None
|
|
44
44
|
|
|
45
|
-
status: Optional[Literal["approved", "unapproved", "pending-approval", "declined"]] = None
|
|
45
|
+
status: Optional[Literal["approved", "unapproved", "pending-approval", "declined", "expired"]] = None
|
|
46
46
|
|
|
47
47
|
updated_at: Optional[datetime] = None
|
|
@@ -29,5 +29,5 @@ class Filter(TypedDict, total=False):
|
|
|
29
29
|
phone_number_type: Literal["local", "toll_free", "mobile", "national", "shared_cost"]
|
|
30
30
|
"""Filter requirement groups by phone number type."""
|
|
31
31
|
|
|
32
|
-
status: Literal["approved", "unapproved", "pending-approval", "declined"]
|
|
32
|
+
status: Literal["approved", "unapproved", "pending-approval", "declined", "expired"]
|
|
33
33
|
"""Filter requirement groups by status"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: telnyx
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.5.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
|
|
@@ -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=
|
|
14
|
+
telnyx/_version.py,sha256=bo5PfZuXjSgjt73kbHMYokl3HGAXxzGjpOOiumE6Xds,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
|
|
@@ -98,7 +98,7 @@ telnyx/resources/oauth.py,sha256=DzCOW41yY8qybq6dMXtKnnp23bMwBBPf2K04pX10W68,325
|
|
|
98
98
|
telnyx/resources/oauth_clients.py,sha256=uVu7q12LJmZYsCr4Ue_TULrD6pzdErRHh_anFSGFmdA,27305
|
|
99
99
|
telnyx/resources/oauth_grants.py,sha256=FBJV-CYTvW889yn2K7G3k1wFsBYiBW_BkhjoePm7nT8,12952
|
|
100
100
|
telnyx/resources/ota_updates.py,sha256=WtY8r9GqW5zn538hfaV75o_R0VgHMi5VTpxGhxOH2CM,10298
|
|
101
|
-
telnyx/resources/outbound_voice_profiles.py,sha256=
|
|
101
|
+
telnyx/resources/outbound_voice_profiles.py,sha256=Y1hHQ_5DH4FNfebfbjRlfdJO6vuwyDdWCdp0RluBbhU,35887
|
|
102
102
|
telnyx/resources/partner_campaigns.py,sha256=AujfpJgchZRxsOJNxI6eJsNnKXL14T5LBn4W03DSzDE,25039
|
|
103
103
|
telnyx/resources/phone_number_assignment_by_profile.py,sha256=HZB809lwbvxzPA_4cxLzFzWHe1e73WwmXBQkJ6dvZAM,19145
|
|
104
104
|
telnyx/resources/phone_number_campaigns.py,sha256=9lAWjEVeEeAj98nmEbd5civ2vD_5kG0TqB2bUa2fotg,22963
|
|
@@ -153,7 +153,7 @@ telnyx/resources/ai/audio.py,sha256=4s-xiVp_wFBLDOfN5ZAxsnQbBdKgRhqjZHhfmN9YkCo,
|
|
|
153
153
|
telnyx/resources/ai/chat.py,sha256=_XX3x2FxTZVHBNYT-wg23xqRR9sAIjsmS_fEgb5mEL8,18414
|
|
154
154
|
telnyx/resources/ai/clusters.py,sha256=ysG8tYAcsl-vZxiQ4lt6Yxj9Oh6hYgZAD4fJVoSJrL0,23144
|
|
155
155
|
telnyx/resources/ai/assistants/__init__.py,sha256=JswsU3VzDvDn-4-0IVH0BGY9ji3RY_pYl-Aib09q0ks,3064
|
|
156
|
-
telnyx/resources/ai/assistants/assistants.py,sha256=
|
|
156
|
+
telnyx/resources/ai/assistants/assistants.py,sha256=SuG4fMaIOmCX7sSKi6GGJ9eNPo9DZknvdyXQb_d_HSI,56129
|
|
157
157
|
telnyx/resources/ai/assistants/canary_deploys.py,sha256=4QRGhoMa50uTmHtRzY_xZ1sGNML6MTezTZenM5nijEc,18193
|
|
158
158
|
telnyx/resources/ai/assistants/scheduled_events.py,sha256=aLhkjbdXD63IuAEXS_HCbk3QeH-7hxTgxJomhjSnppo,22259
|
|
159
159
|
telnyx/resources/ai/assistants/tools.py,sha256=NigYe9zQwwlB9mL9oryBPUnerc2ur03z3em8Tvo9ByY,7367
|
|
@@ -244,7 +244,7 @@ telnyx/resources/messaging_profiles/messaging_profiles.py,sha256=dm_i1018l_12nqJ
|
|
|
244
244
|
telnyx/resources/messaging_tollfree/__init__.py,sha256=xS6W3IHhxe9zW0nTAz695v-OJDsLHTsfhSx6J_4NU10,1224
|
|
245
245
|
telnyx/resources/messaging_tollfree/messaging_tollfree.py,sha256=6bIyhm1Q9YMWEqVCFQSbn6y_8WW1PAbhpB10l59j-Fw,4202
|
|
246
246
|
telnyx/resources/messaging_tollfree/verification/__init__.py,sha256=Sic6oOAjxw7WlvG0PaCb7B0jUmdjDSO8aM2DlSny06Y,1106
|
|
247
|
-
telnyx/resources/messaging_tollfree/verification/requests.py,sha256=
|
|
247
|
+
telnyx/resources/messaging_tollfree/verification/requests.py,sha256=okz5oaORSVD-CoA-6fYUN2_eXGubhJ_Wd8z0-40nR_8,48535
|
|
248
248
|
telnyx/resources/messaging_tollfree/verification/verification.py,sha256=2WeDAR3Cwf7uGz3veAPzRwFpIymZ7rle3_UT-llSXIo,3879
|
|
249
249
|
telnyx/resources/networks/__init__.py,sha256=QM1zWhOYa2xtzTmSYs1mdrvGrUR9aB9OWUOs0EDXGOY,1133
|
|
250
250
|
telnyx/resources/networks/default_gateway.py,sha256=a6PX1uKfEbH9G6KmYUpW87sdwUxBYfZZE0DPVseW0Yk,13030
|
|
@@ -312,7 +312,7 @@ telnyx/resources/sim_card_groups/__init__.py,sha256=U-6zFEn3_YN1Q6dqpD4qcAPsf55A
|
|
|
312
312
|
telnyx/resources/sim_card_groups/actions.py,sha256=bW1L-Cgy5b-BGu7XEABdaQDeWwz1ofq2_4XM0gTAfjE,28775
|
|
313
313
|
telnyx/resources/sim_card_groups/sim_card_groups.py,sha256=wZZuGGY856DPZB7QeO8dCCdtOAzPyufQTnj8_wgagLY,24315
|
|
314
314
|
telnyx/resources/sim_cards/__init__.py,sha256=Xfca4rp_xtgCzQpLNZu_xzEEV4IPJTxG_GvTAtxRn8M,1042
|
|
315
|
-
telnyx/resources/sim_cards/actions.py,sha256=
|
|
315
|
+
telnyx/resources/sim_cards/actions.py,sha256=7uZkhwhs4ZERneSWk8VFiTdGsENXS_6odzU3ISJxfqM,39268
|
|
316
316
|
telnyx/resources/sim_cards/sim_cards.py,sha256=2XL5nXS3A_BHXutZ_udRLSpYFStHdChfe8rp0aSZzJQ,39246
|
|
317
317
|
telnyx/resources/storage/__init__.py,sha256=wkopaiZqFsN-F1_kANWv2yCXu5cyy34wWvpffOmWMKU,2111
|
|
318
318
|
telnyx/resources/storage/migration_sources.py,sha256=89zPfiIU_UpBl7SZseSJA81L0NeOOyrTLM6YDmnqhCk,16388
|
|
@@ -915,14 +915,14 @@ telnyx/types/outbound_fqdn_param.py,sha256=mobTVWB81k1DxKLByzd_WwwPqIgcUC8W18WWi
|
|
|
915
915
|
telnyx/types/outbound_ip.py,sha256=j1SaTTVU3p5TUyiK6-3yRcaAEobgMI3pAmZC_IP4cXE,2573
|
|
916
916
|
telnyx/types/outbound_ip_param.py,sha256=KyjUlQNEOHs4r9uUw4WRUgfrmM-91ed5IyICuxOFFM8,2402
|
|
917
917
|
telnyx/types/outbound_message_payload.py,sha256=NZqKQ6LlI9Iytn_NpVy_dFPdAchyoOkTI4171FYxnAM,5476
|
|
918
|
-
telnyx/types/outbound_voice_profile.py,sha256
|
|
919
|
-
telnyx/types/outbound_voice_profile_create_params.py,sha256=
|
|
918
|
+
telnyx/types/outbound_voice_profile.py,sha256=-2uneqEJeylejGY54dwS2dH6zL8nmXvnv_CK8kCbl50,3504
|
|
919
|
+
telnyx/types/outbound_voice_profile_create_params.py,sha256=AeEL0H2wqz8WaE7DKnf2PxrWMuYp2U493GCn4uMcJtI,2921
|
|
920
920
|
telnyx/types/outbound_voice_profile_create_response.py,sha256=0nh5001-5Gj2vAv5Tp8Y84gz1Ako8SJrVrxHB_L5rp4,358
|
|
921
921
|
telnyx/types/outbound_voice_profile_delete_response.py,sha256=0z_bamv9ZIwA53u7aAVfEj7pX1UH40zLeRsRJu5K-54,358
|
|
922
|
-
telnyx/types/outbound_voice_profile_list_params.py,sha256=
|
|
922
|
+
telnyx/types/outbound_voice_profile_list_params.py,sha256=v0v1JOlDugcySZ70XwPMhXLGsLMTBFlZXk-dEcFO1B4,1697
|
|
923
923
|
telnyx/types/outbound_voice_profile_list_response.py,sha256=VG6cUGRlLsnDazOrcgyKI8812efr_mgqcWOk9goW3bg,453
|
|
924
924
|
telnyx/types/outbound_voice_profile_retrieve_response.py,sha256=G5wf7rorFkkMXAgaTEElW526zTd4D6_5zPK8VP-V1Ko,362
|
|
925
|
-
telnyx/types/outbound_voice_profile_update_params.py,sha256=
|
|
925
|
+
telnyx/types/outbound_voice_profile_update_params.py,sha256=ZR9TteAeuFDeDkEh-MqUmLYwJIId1F6O8V9fAONnDPY,2870
|
|
926
926
|
telnyx/types/outbound_voice_profile_update_response.py,sha256=0kERLKyY68RTrtppaNxtrocov2knttSff6a-R9jf-LI,358
|
|
927
927
|
telnyx/types/pagination_meta.py,sha256=DnXM2qToZRFfjgcvw7A4vC3EFAkHp_Yj0-zJhIxlkPU,368
|
|
928
928
|
telnyx/types/partner_campaign_list_params.py,sha256=bolV6Mb1r6Mc16qAieOHrUALgC8bSwkSHUzrVqESMiY,1071
|
|
@@ -1048,9 +1048,9 @@ telnyx/types/report_list_mdrs_params.py,sha256=7m_OXWSKQUijlTks53XcjvRNgYxsd-hKc
|
|
|
1048
1048
|
telnyx/types/report_list_mdrs_response.py,sha256=Y1V0bvqzZck5Fsz4GCImda5UeEqO8dY_tcOAK8FgACI,1958
|
|
1049
1049
|
telnyx/types/report_list_wdrs_params.py,sha256=6kzWR9r29umTvogrqxJ07ZtlmmWMRZAA5uc2iVqJbHE,1155
|
|
1050
1050
|
telnyx/types/report_list_wdrs_response.py,sha256=lB7ZRXPcEl5GWkBZ_IwApjlv2JFspPMwl69uVU2RXoA,2386
|
|
1051
|
-
telnyx/types/requirement_group.py,sha256=
|
|
1051
|
+
telnyx/types/requirement_group.py,sha256=YK8bRmW5AMMjnub0ic-xU8cacrR9HU_pNDvg4Z903h0,1213
|
|
1052
1052
|
telnyx/types/requirement_group_create_params.py,sha256=g5Lzv9ZV_vKw3SbRFmDhPJRDXd9ndciu6CoTAi0mXFs,755
|
|
1053
|
-
telnyx/types/requirement_group_list_params.py,sha256=
|
|
1053
|
+
telnyx/types/requirement_group_list_params.py,sha256=et3Z9Rstpx3tTHtwH0nH8tK9HvADL2Jc_p8RXd5gPA0,1102
|
|
1054
1054
|
telnyx/types/requirement_group_list_response.py,sha256=tnppNgANdLq-yXTOCwgoRl-BCUFuptBDGdBIny-xQlo,310
|
|
1055
1055
|
telnyx/types/requirement_group_update_params.py,sha256=EVh55HBnuKVbWTOYEesXSEhA3mm2e5dUZKoBNUah1kc,660
|
|
1056
1056
|
telnyx/types/requirement_list_params.py,sha256=8G4Q8xaN1wXMz8uW2jtFZh4cnqzMNLk1G6doHNOogkU,1574
|
|
@@ -1306,7 +1306,7 @@ telnyx/types/ai/assistant_create_params.py,sha256=cjcxqMWuNxef5C7jq9R5ktWld9TgOR
|
|
|
1306
1306
|
telnyx/types/ai/assistant_create_response.py,sha256=9rvGRN8uUxk6Twe6FVlMXKlHIQJi2hSRNQoW9iBKFlg,3024
|
|
1307
1307
|
telnyx/types/ai/assistant_delete_response.py,sha256=Ds8GWenkIBgXRao6LDJX7gZb25y8V482zfbFoqvRzMw,251
|
|
1308
1308
|
telnyx/types/ai/assistant_get_texml_response.py,sha256=sTvUF8AQOVOB0OGnkvpWoMqReDTuxSM4-eS7bHoiXSE,212
|
|
1309
|
-
telnyx/types/ai/assistant_import_params.py,sha256=
|
|
1309
|
+
telnyx/types/ai/assistant_import_params.py,sha256=Pk9yitwATbIfsvXM5SydcSKUUSOPTqQz1tfKXUq6xOw,626
|
|
1310
1310
|
telnyx/types/ai/assistant_param.py,sha256=JmTZBM5cvf9_FL2dfpSE4kgxT8cYlTi0jYrEW2qragg,3629
|
|
1311
1311
|
telnyx/types/ai/assistant_retrieve_params.py,sha256=JZ7ojEWhYs2h3e0JBUXfKnaz5tdb01Nx0eP4ntHVTEw,447
|
|
1312
1312
|
telnyx/types/ai/assistant_retrieve_response.py,sha256=g8c-z-jXzBYAuqaQMv_DnPzJZjyunhu2Gzl7KWiHRmk,3028
|
|
@@ -1347,7 +1347,7 @@ telnyx/types/ai/hangup_tool.py,sha256=LnEAZmGS0infVdmjBtleuayp-CyZU1zNO-v9CUfgG1
|
|
|
1347
1347
|
telnyx/types/ai/hangup_tool_param.py,sha256=SQvf6lFUgKV1HDeT2qNY__eu-qDx_FnAjlXQ2lReuDU,406
|
|
1348
1348
|
telnyx/types/ai/hangup_tool_params.py,sha256=YT6_fzWANLp4meyP32-Rt0HO7FOhDTHEJ3StXH2VN2k,336
|
|
1349
1349
|
telnyx/types/ai/hangup_tool_params_param.py,sha256=RZaWG9PfKesctTgGYRNB_OIvPZo0T9Ph6WathUZfnd8,356
|
|
1350
|
-
telnyx/types/ai/import_metadata.py,sha256=
|
|
1350
|
+
telnyx/types/ai/import_metadata.py,sha256=6ksg_q1mIoL3FkoE9PkVXOPZeRk7HrJyNX-MZRq_kxk,475
|
|
1351
1351
|
telnyx/types/ai/inference_embedding_bucket_ids.py,sha256=yeoZw3FXqgHxHh9t0D57Dwrn0__oK-q6CYAFeobWX4c,588
|
|
1352
1352
|
telnyx/types/ai/inference_embedding_bucket_ids_param.py,sha256=Qpzf4VaUrL91hYpfBwCuuxXPhQHWBZhay9hY0X_LDfY,670
|
|
1353
1353
|
telnyx/types/ai/inference_embedding_transfer_tool_params.py,sha256=HgolavFaJGClQw1DXD6wJNfgZMZFVZa6hEWVcbHwljw,1424
|
|
@@ -1678,18 +1678,18 @@ telnyx/types/messaging_profiles/autoresp_config_list_response.py,sha256=qh2aso1y
|
|
|
1678
1678
|
telnyx/types/messaging_profiles/autoresp_config_update_params.py,sha256=t0rCpoYD5egY8pJGrncX556Ca5f3Tn1ZAlj7u5mALaM,502
|
|
1679
1679
|
telnyx/types/messaging_tollfree/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1680
1680
|
telnyx/types/messaging_tollfree/verification/__init__.py,sha256=uydes9s3dEq5GgID_v0J-jIy_7W5z6IomNyjSgeAzcU,1019
|
|
1681
|
-
telnyx/types/messaging_tollfree/verification/request_create_params.py,sha256=
|
|
1681
|
+
telnyx/types/messaging_tollfree/verification/request_create_params.py,sha256=8ZlQFSuDrfZmWk9yR5eS3yjp3seIgINxEA7uj3UOB6w,6046
|
|
1682
1682
|
telnyx/types/messaging_tollfree/verification/request_list_params.py,sha256=du1u1sKD1su76I9pdJeIPKJVc-LWKyacqMOJkPLc3Us,862
|
|
1683
1683
|
telnyx/types/messaging_tollfree/verification/request_list_response.py,sha256=YuKTQpt2LsvteiS9NTYXdMJ7zBLmENw5rNuU_DnE60Q,512
|
|
1684
|
-
telnyx/types/messaging_tollfree/verification/request_update_params.py,sha256=
|
|
1684
|
+
telnyx/types/messaging_tollfree/verification/request_update_params.py,sha256=rDtRVd4ERtV0AHRG049dA0rS-gR_gh9tjWvB3E3U_U4,6046
|
|
1685
1685
|
telnyx/types/messaging_tollfree/verification/tf_phone_number.py,sha256=1rDKVArKlW-ipG13ZwxU8zHrnLJWxqZAWOxoWWKs484,280
|
|
1686
1686
|
telnyx/types/messaging_tollfree/verification/tf_phone_number_param.py,sha256=HKFsEA1RxqQYRNlTpfTmynoXJAA49n2DHJQkHAxfKCo,385
|
|
1687
1687
|
telnyx/types/messaging_tollfree/verification/tf_verification_status.py,sha256=WXv7GzELh6X0nky743XYKZPujcj-g1piDbfSITavwsc,328
|
|
1688
1688
|
telnyx/types/messaging_tollfree/verification/url.py,sha256=CbLrYJeilXZJO2rWGmLL_W_L60CMVIolRpBUO3zLx7U,177
|
|
1689
1689
|
telnyx/types/messaging_tollfree/verification/url_param.py,sha256=dyPNCHkYbJQ7zHhpuLa8xTdJQS0H0fW0YIqWItTNCCY,262
|
|
1690
1690
|
telnyx/types/messaging_tollfree/verification/use_case_categories.py,sha256=EM8ohix6mMTnMK6F4DwmRPxpcjdTUYobHfONdsFNleE,1227
|
|
1691
|
-
telnyx/types/messaging_tollfree/verification/verification_request_egress.py,sha256=
|
|
1692
|
-
telnyx/types/messaging_tollfree/verification/verification_request_status.py,sha256=
|
|
1691
|
+
telnyx/types/messaging_tollfree/verification/verification_request_egress.py,sha256=XC0GjjkpRoAH3SnwG75D-ldeM6RcATf0HkrWRNKF7T0,3504
|
|
1692
|
+
telnyx/types/messaging_tollfree/verification/verification_request_status.py,sha256=odI6pSyqWlvyEgunmFzixEaz4x94HNG3ngUPalqbJ1U,3629
|
|
1693
1693
|
telnyx/types/messaging_tollfree/verification/volume.py,sha256=ocfY2EJG986TBTvLKK_aWPxwbdTKxPzsZoBv5SFdxXI,310
|
|
1694
1694
|
telnyx/types/networks/__init__.py,sha256=QYtQzaWvF6EggvmdzyJwDGkakz9opa76cWVBvy7QF3I,547
|
|
1695
1695
|
telnyx/types/networks/default_gateway_create_params.py,sha256=uh5oaOF16AMo3GiFU9cLUX7zy8l5us_HenVBAJiFf18,321
|
|
@@ -2025,7 +2025,7 @@ telnyx/types/wireless/detail_records_report_list_params.py,sha256=cfjsh4L_8mpDkg
|
|
|
2025
2025
|
telnyx/types/wireless/detail_records_report_list_response.py,sha256=S_6nD0fm5EseRIZHnML-UN0-g8Q_0J1cXfg_eLNUev8,331
|
|
2026
2026
|
telnyx/types/wireless/detail_records_report_retrieve_response.py,sha256=f0C8z8uo_QeCyi3nSDME4f4F3vqcy7o0MpinwDIqe_s,327
|
|
2027
2027
|
telnyx/types/wireless/wdr_report.py,sha256=bxRr-dc_IW6D0E3i_PUHK-bbu9w114Qql1uoJ_znxEE,1068
|
|
2028
|
-
telnyx-3.
|
|
2029
|
-
telnyx-3.
|
|
2030
|
-
telnyx-3.
|
|
2031
|
-
telnyx-3.
|
|
2028
|
+
telnyx-3.5.0.dist-info/METADATA,sha256=_biqMbOR9_wvbax8wmcvd-RAftHQ9dIJRlZxpaprKa4,15530
|
|
2029
|
+
telnyx-3.5.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
2030
|
+
telnyx-3.5.0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
|
|
2031
|
+
telnyx-3.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|