telnyx 3.5.0a0__py3-none-any.whl → 3.7.0a0__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/_client.py +53 -2
- telnyx/_version.py +1 -1
- telnyx/resources/__init__.py +70 -0
- telnyx/resources/ai/conversations/conversations.py +137 -3
- telnyx/resources/ai/conversations/messages.py +1 -134
- telnyx/resources/calls/actions.py +146 -146
- telnyx/resources/calls/calls.py +4 -10
- telnyx/resources/conferences/actions.py +8 -24
- telnyx/resources/conferences/conferences.py +2 -6
- telnyx/resources/legacy/__init__.py +33 -0
- telnyx/resources/legacy/legacy.py +102 -0
- telnyx/resources/legacy/reporting/__init__.py +47 -0
- telnyx/resources/legacy/reporting/batch_detail_records/__init__.py +61 -0
- telnyx/resources/legacy/reporting/batch_detail_records/batch_detail_records.py +166 -0
- telnyx/resources/legacy/reporting/batch_detail_records/messaging.py +481 -0
- telnyx/resources/legacy/reporting/batch_detail_records/speech_to_text.py +399 -0
- telnyx/resources/legacy/reporting/batch_detail_records/voice.py +538 -0
- telnyx/resources/legacy/reporting/reporting.py +134 -0
- telnyx/resources/legacy/reporting/usage_reports/__init__.py +61 -0
- telnyx/resources/legacy/reporting/usage_reports/messaging.py +471 -0
- telnyx/resources/legacy/reporting/usage_reports/number_lookup.py +464 -0
- telnyx/resources/legacy/reporting/usage_reports/usage_reports.py +288 -0
- telnyx/resources/legacy/reporting/usage_reports/voice.py +493 -0
- telnyx/resources/oauth.py +855 -0
- telnyx/resources/oauth_clients.py +711 -0
- telnyx/resources/oauth_grants.py +349 -0
- telnyx/resources/phone_numbers/jobs.py +12 -0
- telnyx/resources/porting_orders/porting_orders.py +20 -8
- telnyx/resources/sim_cards/sim_cards.py +3 -2
- telnyx/resources/verifications/verifications.py +10 -0
- telnyx/resources/verify_profiles.py +183 -1
- telnyx/resources/well_known.py +198 -0
- telnyx/types/__init__.py +41 -1
- telnyx/types/addresses/action_validate_response.py +2 -2
- telnyx/types/ai/__init__.py +1 -0
- telnyx/types/ai/{conversations/message_create_params.py → conversation_add_message_params.py} +4 -4
- telnyx/types/ai/conversations/__init__.py +0 -1
- telnyx/types/ai/inference_embedding_webhook_tool_params.py +2 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +2 -0
- telnyx/types/{error.py → api_error.py} +2 -2
- telnyx/types/call_dial_params.py +2 -3
- telnyx/types/calls/action_answer_params.py +1 -2
- telnyx/types/calls/action_gather_using_ai_params.py +5 -8
- telnyx/types/calls/action_start_streaming_params.py +4 -2
- telnyx/types/calls/action_transfer_params.py +50 -0
- telnyx/types/campaign_submit_appeal_response.py +0 -3
- telnyx/types/legacy/__init__.py +3 -0
- telnyx/types/legacy/reporting/__init__.py +10 -0
- telnyx/types/legacy/reporting/batch_detail_records/__init__.py +20 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_params.py +77 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_delete_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_list_response.py +80 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_retrieve_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_params.py +19 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_delete_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_list_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_retrieve_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_params.py +79 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_response.py +91 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_delete_response.py +91 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_list_response.py +102 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_fields_response.py +23 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_response.py +91 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_params.py +17 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_response.py +11 -0
- telnyx/types/legacy/reporting/usage_reports/__init__.py +18 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_params.py +29 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_delete_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_list_response.py +54 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_retrieve_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_create_params.py +26 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_list_params.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_params.py +40 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_response.py +48 -0
- telnyx/types/legacy/reporting/usage_reports/voice_delete_response.py +48 -0
- telnyx/types/legacy/reporting/usage_reports/voice_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/voice_list_response.py +59 -0
- telnyx/types/legacy/reporting/usage_reports/voice_retrieve_response.py +48 -0
- telnyx/types/number_order_status_update_webhook_event.py +30 -4
- telnyx/types/oauth_client_create_params.py +39 -0
- telnyx/types/oauth_client_create_response.py +63 -0
- telnyx/types/oauth_client_list_params.py +38 -0
- telnyx/types/oauth_client_list_response.py +79 -0
- telnyx/types/oauth_client_retrieve_response.py +63 -0
- telnyx/types/oauth_client_update_params.py +36 -0
- telnyx/types/oauth_client_update_response.py +63 -0
- telnyx/types/oauth_grant_delete_response.py +33 -0
- telnyx/types/oauth_grant_list_params.py +17 -0
- telnyx/types/oauth_grant_list_response.py +49 -0
- telnyx/types/oauth_grant_retrieve_response.py +33 -0
- telnyx/types/oauth_grants_params.py +15 -0
- telnyx/types/oauth_grants_response.py +10 -0
- telnyx/types/oauth_introspect_params.py +12 -0
- telnyx/types/oauth_introspect_response.py +30 -0
- telnyx/types/oauth_register_params.py +39 -0
- telnyx/types/oauth_register_response.py +45 -0
- telnyx/types/oauth_retrieve_authorize_params.py +30 -0
- telnyx/types/oauth_retrieve_jwks_response.py +25 -0
- telnyx/types/oauth_retrieve_response.py +47 -0
- telnyx/types/oauth_token_params.py +33 -0
- telnyx/types/oauth_token_response.py +25 -0
- telnyx/types/phone_number_delete_response.py +7 -0
- telnyx/types/phone_number_detailed.py +7 -0
- telnyx/types/phone_number_list_params.py +6 -0
- telnyx/types/phone_numbers/job_update_batch_params.py +7 -0
- telnyx/types/porting_order.py +3 -0
- telnyx/types/porting_order_create_params.py +3 -0
- telnyx/types/porting_order_list_params.py +52 -31
- telnyx/types/porting_order_update_params.py +2 -0
- telnyx/types/porting_orders/phone_number_configuration_list_params.py +19 -19
- telnyx/types/shared/simple_sim_card.py +15 -0
- telnyx/types/sim_card.py +12 -0
- telnyx/types/sim_card_update_params.py +2 -1
- telnyx/types/stream_bidirectional_codec.py +1 -1
- telnyx/types/stream_codec.py +1 -1
- telnyx/types/verification_trigger_call_params.py +7 -0
- telnyx/types/verify_profile_create_template_params.py +12 -0
- telnyx/types/verify_profile_create_template_response.py +17 -0
- telnyx/types/verify_profile_update_template_params.py +12 -0
- telnyx/types/verify_profile_update_template_response.py +17 -0
- telnyx/types/well_known_retrieve_authorization_server_metadata_response.py +42 -0
- telnyx/types/well_known_retrieve_protected_resource_metadata_response.py +15 -0
- {telnyx-3.5.0a0.dist-info → telnyx-3.7.0a0.dist-info}/METADATA +1 -1
- {telnyx-3.5.0a0.dist-info → telnyx-3.7.0a0.dist-info}/RECORD +130 -48
- {telnyx-3.5.0a0.dist-info → telnyx-3.7.0a0.dist-info}/WHEEL +0 -0
- {telnyx-3.5.0a0.dist-info → telnyx-3.7.0a0.dist-info}/licenses/LICENSE +0 -0
|
@@ -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
|
|
3
|
+
telnyx/_client.py,sha256=vGlPEwGhoXQOgzbfdsawp33c-tdNzOD8xSZJ1esgPOU,174124
|
|
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=
|
|
14
|
+
telnyx/_version.py,sha256=r9oAiP77C246BA5nN6LC3b89YlwTIuivlqZSSwVNTec,164
|
|
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=
|
|
29
|
+
telnyx/resources/__init__.py,sha256=YdEPEfdK5zpqzCb5JF9PzIMDBqK9P14TUvHuDuQXVww,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,6 +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
|
|
98
|
+
telnyx/resources/oauth_clients.py,sha256=uVu7q12LJmZYsCr4Ue_TULrD6pzdErRHh_anFSGFmdA,27305
|
|
99
|
+
telnyx/resources/oauth_grants.py,sha256=FBJV-CYTvW889yn2K7G3k1wFsBYiBW_BkhjoePm7nT8,12952
|
|
97
100
|
telnyx/resources/ota_updates.py,sha256=WtY8r9GqW5zn538hfaV75o_R0VgHMi5VTpxGhxOH2CM,10298
|
|
98
101
|
telnyx/resources/outbound_voice_profiles.py,sha256=mpzjFz4QL2fo4ix4mgzDh_bBXJ8Mum0M7F1ZfU2I1JY,34649
|
|
99
102
|
telnyx/resources/partner_campaigns.py,sha256=AujfpJgchZRxsOJNxI6eJsNnKXL14T5LBn4W03DSzDE,25039
|
|
@@ -127,11 +130,12 @@ telnyx/resources/text_to_speech.py,sha256=Y_pQl37dp07mkst_4qknNdIxYQVvABw6VYBtQZ
|
|
|
127
130
|
telnyx/resources/usage_reports.py,sha256=M2ptYt0Ul8StbJbHYMTlkHI6ozu4v0u3g0m5AaqHRuc,15518
|
|
128
131
|
telnyx/resources/user_addresses.py,sha256=CqeOLO27ee6dF88k7sKGI4TLL34TWM45gH-_ckdprB4,22738
|
|
129
132
|
telnyx/resources/user_tags.py,sha256=pCY1ykwgtc78yqj28Q04bGarABk_eDHe4lVZacxB1SM,6365
|
|
130
|
-
telnyx/resources/verify_profiles.py,sha256=
|
|
133
|
+
telnyx/resources/verify_profiles.py,sha256=0gMEoLGLd8PhHuchBGNVA4pnM3CeDWgCf_U4xvxxdHo,32424
|
|
131
134
|
telnyx/resources/virtual_cross_connects.py,sha256=JDAXB9dhVNn-qAiTyNDAgYELHdFwGoqS6yM5l4NrDZA,34715
|
|
132
135
|
telnyx/resources/virtual_cross_connects_coverage.py,sha256=LE0l4hJJCO8jsaanpA85fa_wGNHgsZO4yPpf1RoNRCQ,9320
|
|
133
136
|
telnyx/resources/webhook_deliveries.py,sha256=PKo-2i1Ndhe3i7zozog3d0Ko5dznDshsOqLeogdXah0,11174
|
|
134
137
|
telnyx/resources/webhooks.py,sha256=2aBYtHvVy4Ngpq_GEEMk0U6Vn_LKFwommXaguEjhhj0,962
|
|
138
|
+
telnyx/resources/well_known.py,sha256=3Nm9gDqj9nDawaMoSj-yy3z_3dhDdBjK0NqOR0NJg4I,8881
|
|
135
139
|
telnyx/resources/wireguard_interfaces.py,sha256=wxfoFKlIQ4We6Zi9huXfN2Y_xAYZN5_IK6ziEGggM4I,18414
|
|
136
140
|
telnyx/resources/wireguard_peers.py,sha256=FefL6ivnxn6uq2vJY6hvzCzTm1wlqWiifc4D81QYSSE,24615
|
|
137
141
|
telnyx/resources/wireless_blocklist_values.py,sha256=uT-_XtdN7WLWGnB6woQp7OWqVNsS7S_KjQp2Yy5J3E0,7287
|
|
@@ -161,9 +165,9 @@ telnyx/resources/ai/assistants/tests/test_suites/__init__.py,sha256=wTdI7qo8_d2S
|
|
|
161
165
|
telnyx/resources/ai/assistants/tests/test_suites/runs.py,sha256=O6aG_E7HiMaZrBuqtl4GxNrmGXOraDxMJJs3NOJgKEo,11862
|
|
162
166
|
telnyx/resources/ai/assistants/tests/test_suites/test_suites.py,sha256=Vj56vUukvEd6sV9j78d6N24MaeL4KaQAnqPXj4KjtUs,6341
|
|
163
167
|
telnyx/resources/ai/conversations/__init__.py,sha256=E0T0_VEZjLTBGAbDf9LZGPaAZCns8GrSTW6oXkPA_d4,2137
|
|
164
|
-
telnyx/resources/ai/conversations/conversations.py,sha256=
|
|
168
|
+
telnyx/resources/ai/conversations/conversations.py,sha256=iGfFcfJIdd5jxCVsIodkI4i4h9PyNu4IymS4RmobAXk,38859
|
|
165
169
|
telnyx/resources/ai/conversations/insights.py,sha256=Was9S1yLcgLJJgSnrIcen70hjoUHI864QlcRqOXYC3U,20496
|
|
166
|
-
telnyx/resources/ai/conversations/messages.py,sha256=
|
|
170
|
+
telnyx/resources/ai/conversations/messages.py,sha256=6ca-yu30N_DWsaaQrVuhglmWI59kN4vqZG5ZAP-mFAQ,6162
|
|
167
171
|
telnyx/resources/ai/conversations/insight_groups/__init__.py,sha256=BECCfROCjeQXyebDMpckN8GnyXA8uwQfzBiZXMVgqjA,1120
|
|
168
172
|
telnyx/resources/ai/conversations/insight_groups/insight_groups.py,sha256=HVHQMadZkYXinrIKXCalkIeDCMXNFF6rrWJMbMISRs0,22303
|
|
169
173
|
telnyx/resources/ai/conversations/insight_groups/insights.py,sha256=z4h5BDWnJwWL2PEkegexxB7DhfSpFWzloVGRI8sDfVs,10032
|
|
@@ -181,8 +185,8 @@ telnyx/resources/bundle_pricing/billing_bundles.py,sha256=qMCmAtoj48PbHObmv53B-6
|
|
|
181
185
|
telnyx/resources/bundle_pricing/bundle_pricing.py,sha256=d3L80tHqOCfcTxVQ7c6DDLfO-5FkG7HMlOfTLVz52-A,5371
|
|
182
186
|
telnyx/resources/bundle_pricing/user_bundles.py,sha256=d44DFB_SSgXQcFceR3vY4wsQ8pukdATqWoSBoLUcYLA,28714
|
|
183
187
|
telnyx/resources/calls/__init__.py,sha256=zQUq3YFSSLeXKg5bb5oG2Hh7VJsNmm_Z5nm68sU98LY,1002
|
|
184
|
-
telnyx/resources/calls/actions.py,sha256=
|
|
185
|
-
telnyx/resources/calls/calls.py,sha256=
|
|
188
|
+
telnyx/resources/calls/actions.py,sha256=I0_s1pjfIZdUhw6huZmCrgdkxb6Fj2Sv4d2I4yChx4Y,308792
|
|
189
|
+
telnyx/resources/calls/calls.py,sha256=bqR7LnNkjpFxD0S_g6fhosmjGF8G7kv6Ebm_zOXNVkk,43705
|
|
186
190
|
telnyx/resources/campaign/__init__.py,sha256=MGF-U4sQL_jE6xQKvsDXhucn5snUbtl1naBlZDaujPk,1452
|
|
187
191
|
telnyx/resources/campaign/campaign.py,sha256=CDmsWo_1eAg9tIdAu9SwU-8xTusuxSU76o2V_mKuCiI,41458
|
|
188
192
|
telnyx/resources/campaign/osr.py,sha256=q-xqVNbfaDh73WYjcwNiPmQ9kUFO0lncRaAKcdIojkk,5764
|
|
@@ -191,8 +195,8 @@ telnyx/resources/campaign_builder/__init__.py,sha256=mXUQxXn8C_VC9EfazTXR2Uby4-Z
|
|
|
191
195
|
telnyx/resources/campaign_builder/brand.py,sha256=4GJYN9amW4CvZ1_lsqOR8lrhNmxln3ctkF3DRHruoAw,6544
|
|
192
196
|
telnyx/resources/campaign_builder/campaign_builder.py,sha256=jkyNP-p9ff6Yecn9zyNzCGjjeTVZUzoXryT5NDTd7x8,22657
|
|
193
197
|
telnyx/resources/conferences/__init__.py,sha256=omYb2ssvce-OpSlKNGbIkXBaQFaE0PYSMV7Q-g9JRHg,1080
|
|
194
|
-
telnyx/resources/conferences/actions.py,sha256=
|
|
195
|
-
telnyx/resources/conferences/conferences.py,sha256=
|
|
198
|
+
telnyx/resources/conferences/actions.py,sha256=5MDYgUUSDX13TOkpbbTZL_s3zy0k3bmTkmEOcLiGGvY,84961
|
|
199
|
+
telnyx/resources/conferences/conferences.py,sha256=8qYsqQHMSyxs7Twu1L24OIswNy_l82d_r5c1jC5B3Jk,27834
|
|
196
200
|
telnyx/resources/credential_connections/__init__.py,sha256=81iT_jEVYsPVEtnMBmM75XlgI5D6u4-1p1a3Gl2j7D0,1211
|
|
197
201
|
telnyx/resources/credential_connections/actions.py,sha256=kPIMpcPp8y5SpdBZ2bxjuT0QHXenvVds5qdtMqpWi1c,6583
|
|
198
202
|
telnyx/resources/credential_connections/credential_connections.py,sha256=R_kZnfrn8X1wPI-xLS6-Wk0hD43g-f1VwVRmJS4wJPA,46202
|
|
@@ -206,6 +210,20 @@ telnyx/resources/external_connections/uploads.py,sha256=K64QQfYfM2noQEljENTLpTgL
|
|
|
206
210
|
telnyx/resources/faxes/__init__.py,sha256=De06LWWuy8Yzbul2Z-FrFA_cSwHPu1eaO-yU8OtefJ0,1002
|
|
207
211
|
telnyx/resources/faxes/actions.py,sha256=4737CAhiFs6sR04p2nnwpM6chGz-jpBD9fB_gn1jt10,9122
|
|
208
212
|
telnyx/resources/faxes/faxes.py,sha256=fmyGOme2pFr1veRG0UwwM069cg4eyJv-Mu8i89WorOM,25333
|
|
213
|
+
telnyx/resources/legacy/__init__.py,sha256=JqqLfwajUMA5QV052mWmK5FaJF4SiDtWtlNmmQ7e-Xo,1041
|
|
214
|
+
telnyx/resources/legacy/legacy.py,sha256=Ftl-qt6PbB-dl7uH5EiVcceozamNzt2zfQtkN-srCgg,3700
|
|
215
|
+
telnyx/resources/legacy/reporting/__init__.py,sha256=3ee4QRN4sCN9G3M4smL1lziUVChYh5PTg5QH52vMp5w,1728
|
|
216
|
+
telnyx/resources/legacy/reporting/reporting.py,sha256=2L7BBLbb3dJtDN4usZ8LhLrviquXZAwE9MTkydRi6i4,5384
|
|
217
|
+
telnyx/resources/legacy/reporting/batch_detail_records/__init__.py,sha256=OGLf0AUUsy5xEm78cVs--KiF3TTNvSaFWQQkfk0MSxk,2166
|
|
218
|
+
telnyx/resources/legacy/reporting/batch_detail_records/batch_detail_records.py,sha256=eJ5S3WUt4t8wB6iObJYnZOMqKluzdUhCMoNGtxkYsko,6575
|
|
219
|
+
telnyx/resources/legacy/reporting/batch_detail_records/messaging.py,sha256=8hQAl2HicAR-lzzVJyBp7rzZYjU_HwHbPjhuyPI4-MI,19328
|
|
220
|
+
telnyx/resources/legacy/reporting/batch_detail_records/speech_to_text.py,sha256=RGppjIeU-DoDBjOCH42aluJvTFlA6izEEQrKfqJLDF0,16070
|
|
221
|
+
telnyx/resources/legacy/reporting/batch_detail_records/voice.py,sha256=Q02i-D_CMBPvSkZcbPwGZqwNNMFLz2XsqM_fqmMsdn4,21276
|
|
222
|
+
telnyx/resources/legacy/reporting/usage_reports/__init__.py,sha256=C55MHwuoFklSPKV3Wlqrqv7SNksnZG_KE6gYy68D4A8,2086
|
|
223
|
+
telnyx/resources/legacy/reporting/usage_reports/messaging.py,sha256=-Seosuu29bz7Ujyu0p8tp9oCJ9ODNSL78QCC4FZRKSw,18160
|
|
224
|
+
telnyx/resources/legacy/reporting/usage_reports/number_lookup.py,sha256=dndBHNycZlUCoMlioz1kUZk78yqX8ulizc3Ri7hbnSg,17756
|
|
225
|
+
telnyx/resources/legacy/reporting/usage_reports/usage_reports.py,sha256=Ql4HG87JBMSq65ZD8OA84IRYAKw09LSQ9fq-4AG9xxI,11122
|
|
226
|
+
telnyx/resources/legacy/reporting/usage_reports/voice.py,sha256=ZmuNFWopHfANO1MjuCjXNsUVWbigRBd-QPma1HCh-lk,18646
|
|
209
227
|
telnyx/resources/managed_accounts/__init__.py,sha256=EoKq6ptLTh1aE0YVPAo39ZAUsU3lBxce13N1p3nmE8c,1133
|
|
210
228
|
telnyx/resources/managed_accounts/actions.py,sha256=0KVsfep-eYUlGkuVnjcQShOjkosvZuI5bjdr9R6iJ1Q,10582
|
|
211
229
|
telnyx/resources/managed_accounts/managed_accounts.py,sha256=ms-QLhiK4ZU13rSL6DohnMytmdRdQAHx0QEtVyYOcIw,33920
|
|
@@ -246,7 +264,7 @@ telnyx/resources/phone_number_blocks/phone_number_blocks.py,sha256=qzcim3BsiBxAm
|
|
|
246
264
|
telnyx/resources/phone_numbers/__init__.py,sha256=EH9BdCk9pCSj-YAo3QzC4jZypbYDy2Rq3P2ubQ0btD0,3462
|
|
247
265
|
telnyx/resources/phone_numbers/actions.py,sha256=OMEbIjrHsTnWzqjB2IoCx8FTDUv2I0hOqJkj6buwmNw,15761
|
|
248
266
|
telnyx/resources/phone_numbers/csv_downloads.py,sha256=BWkYDmnaFtYyfChl-UzLQzsVL-KADzN7MxXJsJxnSNs,14484
|
|
249
|
-
telnyx/resources/phone_numbers/jobs.py,sha256=
|
|
267
|
+
telnyx/resources/phone_numbers/jobs.py,sha256=7u4y69wwDWjI7nChYHGEZQIc7PSjc21BTwdbcmYDvZc,29824
|
|
250
268
|
telnyx/resources/phone_numbers/messaging.py,sha256=hhSPnzTkoaSIZtyqkVjdtO_PmZ0_pI2WzR03pCYmwDc,14870
|
|
251
269
|
telnyx/resources/phone_numbers/phone_numbers.py,sha256=uWCoQTaNkVAJdrh2STDUq8hC9moRuYqOtfHFZ9wdNkg,33853
|
|
252
270
|
telnyx/resources/phone_numbers/voice.py,sha256=xBPJmLXbwsBqvJDhPQRY1652jhtury_mX3VAO2nZZVo,19162
|
|
@@ -266,7 +284,7 @@ telnyx/resources/porting_orders/comments.py,sha256=Laa0mkjS3_D9dZDlq9DdYDKtjaL7o
|
|
|
266
284
|
telnyx/resources/porting_orders/phone_number_blocks.py,sha256=SCRP4gkUvNd27vWjKbnifD7-nPtgVw3KmghdKNxI54o,16983
|
|
267
285
|
telnyx/resources/porting_orders/phone_number_configurations.py,sha256=M6HKR5AksqObihyKgJxZduXYKa4ObW2EEx7tPuYTWtE,12463
|
|
268
286
|
telnyx/resources/porting_orders/phone_number_extensions.py,sha256=2_N11R140E3gEzTmhlJYcCTIOIhHCRV12uPfPE7i95k,17609
|
|
269
|
-
telnyx/resources/porting_orders/porting_orders.py,sha256=
|
|
287
|
+
telnyx/resources/porting_orders/porting_orders.py,sha256=z2NB_9sltqCx6MUlFMMZfmX0mPYir144ay9Jj6Tbxxo,62307
|
|
270
288
|
telnyx/resources/porting_orders/verification_codes.py,sha256=j-Z0M0xDcVVgpmV9QdNHbJbZnmadrnG9M0AniOMy66I,16069
|
|
271
289
|
telnyx/resources/portouts/__init__.py,sha256=mX6do8iVPgKT6DoJ2fZRgCX1q4ENrqf1L3MFYGzGlW8,2587
|
|
272
290
|
telnyx/resources/portouts/comments.py,sha256=7mWCjK7U5mjP47E6UC7Tc_7xknZCrSWZ65HvAVLjep0,9429
|
|
@@ -295,7 +313,7 @@ telnyx/resources/sim_card_groups/actions.py,sha256=bW1L-Cgy5b-BGu7XEABdaQDeWwz1o
|
|
|
295
313
|
telnyx/resources/sim_card_groups/sim_card_groups.py,sha256=wZZuGGY856DPZB7QeO8dCCdtOAzPyufQTnj8_wgagLY,24315
|
|
296
314
|
telnyx/resources/sim_cards/__init__.py,sha256=Xfca4rp_xtgCzQpLNZu_xzEEV4IPJTxG_GvTAtxRn8M,1042
|
|
297
315
|
telnyx/resources/sim_cards/actions.py,sha256=0dXwiNiQ0GntaeXT_1IjYAXDqHk3V1WQTE6_TJTdp1k,39568
|
|
298
|
-
telnyx/resources/sim_cards/sim_cards.py,sha256=
|
|
316
|
+
telnyx/resources/sim_cards/sim_cards.py,sha256=2XL5nXS3A_BHXutZ_udRLSpYFStHdChfe8rp0aSZzJQ,39246
|
|
299
317
|
telnyx/resources/storage/__init__.py,sha256=wkopaiZqFsN-F1_kANWv2yCXu5cyy34wWvpffOmWMKU,2111
|
|
300
318
|
telnyx/resources/storage/migration_sources.py,sha256=89zPfiIU_UpBl7SZseSJA81L0NeOOyrTLM6YDmnqhCk,16388
|
|
301
319
|
telnyx/resources/storage/storage.py,sha256=hD0xYJ0c-CYQaPeJshX6yZTcjEcYnxInWMbDbWOBvLE,9060
|
|
@@ -328,7 +346,7 @@ telnyx/resources/texml/accounts/transcriptions/json.py,sha256=aNZ8Xs2DL4eOkY_Sbm
|
|
|
328
346
|
telnyx/resources/texml/accounts/transcriptions/transcriptions.py,sha256=f-muckAP2-ICXQca61pLidbAClp50Ib6wlSy_LmTB0I,3837
|
|
329
347
|
telnyx/resources/verifications/__init__.py,sha256=0d5jEBzFbPYP_BkSJYXPUq4e49Qs8gANqMwl3lbzLKk,1649
|
|
330
348
|
telnyx/resources/verifications/actions.py,sha256=_D0F6ED2ttzU6T68ySJ9OOcrNcUn3WE52xLYaSwbrk0,7354
|
|
331
|
-
telnyx/resources/verifications/verifications.py,sha256=
|
|
349
|
+
telnyx/resources/verifications/verifications.py,sha256=IG7g3RIpZuv0w0Gshtkt29cmRC3e0rk1XWCQ-TYsdQw,22523
|
|
332
350
|
telnyx/resources/verifications/by_phone_number/__init__.py,sha256=XBZbrhLQcba0yXsna85uuKsyUktgarFS8J0NZo8wwjY,1108
|
|
333
351
|
telnyx/resources/verifications/by_phone_number/actions.py,sha256=JjjT0W5JweJ_apG7dpUHNPc6RBawK0OEOk0snphoRL4,7249
|
|
334
352
|
telnyx/resources/verifications/by_phone_number/by_phone_number.py,sha256=dBdozSkMvC5R2eVSPDi29gInS_6_weAazZL_d7uKKx8,7503
|
|
@@ -338,7 +356,7 @@ telnyx/resources/verified_numbers/verified_numbers.py,sha256=T6kljG-9NBr9Q0Q1jGH
|
|
|
338
356
|
telnyx/resources/wireless/__init__.py,sha256=fEZwFm-3jI908Ui2_pT-S-3Titgg1vs7uFjzK4p406M,1212
|
|
339
357
|
telnyx/resources/wireless/detail_records_reports.py,sha256=y6UEeAZVH4Wx8ddjiLNtWWQmxZ4XC25t9U8a8oX4o4M,17922
|
|
340
358
|
telnyx/resources/wireless/wireless.py,sha256=YFhowq4mQXRL0dPhHoMWIit_zZTaXWkh1uje13Zpng0,8176
|
|
341
|
-
telnyx/types/__init__.py,sha256=
|
|
359
|
+
telnyx/types/__init__.py,sha256=v94eN1-LMfyWle0T_2xvuz6NnNYMVBP_UJ48nY2XPZg,99644
|
|
342
360
|
telnyx/types/access_ip_address_create_params.py,sha256=qd_T7W_K4XiVIdsJLbsS5U9Qlf3_m0DT677n5Tqdvm8,329
|
|
343
361
|
telnyx/types/access_ip_address_list_params.py,sha256=3sWF6U18lHT3y0fGouO8qCznMlvEyW5PRGx_pItEeLo,1870
|
|
344
362
|
telnyx/types/access_ip_address_list_response.py,sha256=WFYBcqjSoC6c4rf9V6zGWkcB0_UG9DnMQwF5ic17MdY,475
|
|
@@ -361,6 +379,7 @@ telnyx/types/ai_summarize_params.py,sha256=rMVpD3Ocy_DmFVUYka9K-Mjspetf150V3CFXg
|
|
|
361
379
|
telnyx/types/ai_summarize_response.py,sha256=A9umRVyHGNxD1rFdEV0bMRRuJn7dSJFzBxhjYoAJnU4,259
|
|
362
380
|
telnyx/types/alt_business_id_type.py,sha256=ae9aJVHb8ZJh5KreswkuxNRF2rd4ksle-mu-IaQeg5M,240
|
|
363
381
|
telnyx/types/anchorsite_override.py,sha256=82y2l3Di-2RNQh0O0nebFA_pPgDHqy7rYwzz6lJ9aUM,434
|
|
382
|
+
telnyx/types/api_error.py,sha256=OBMIkwt6ascvoZysn_DvQtUFK57X_d-zrw4PnW5TpVI,580
|
|
364
383
|
telnyx/types/audit_event_list_params.py,sha256=lOIoNKc5zc9xv8NsBaSYVUep8YTFS0R3SfGltAedqaA,1219
|
|
365
384
|
telnyx/types/audit_event_list_response.py,sha256=frajEliNf22rYQIvQD1jRScE1FzyeHLFsg0mWopOr44,2648
|
|
366
385
|
telnyx/types/authentication_provider.py,sha256=7IHiKJirkWbjllv7mwQT0xK2TFe90qJpbDkVtJpwdw8,2393
|
|
@@ -419,7 +438,7 @@ telnyx/types/call_control_application_update_params.py,sha256=t91HH8KF5x-FPpUG94
|
|
|
419
438
|
telnyx/types/call_control_application_update_response.py,sha256=_JR2YLtITudbuYGVqmaGud1B8StTlAanVmFNtIN_XV4,368
|
|
420
439
|
telnyx/types/call_conversation_ended_webhook_event.py,sha256=xkOxhj7h2duW6U0O7PJvcb9YWWhq8HFRKcuGpeZ0dKI,2621
|
|
421
440
|
telnyx/types/call_conversation_insights_generated_webhook_event.py,sha256=wnCJCAR3Jn6-qSz3AxCu35TRF_3lehVkozUJZyWtwNU,2255
|
|
422
|
-
telnyx/types/call_dial_params.py,sha256=
|
|
441
|
+
telnyx/types/call_dial_params.py,sha256=QkQX9-c3tiJ7zFZH2xEQgc3BhGRiOL0GCMs6_83Ssxk,15873
|
|
423
442
|
telnyx/types/call_dial_response.py,sha256=qV7fNdy_vNuhBte6B_jxhSqvNQMht8tyq3DZ3-YHQAM,1575
|
|
424
443
|
telnyx/types/call_dtmf_received_webhook_event.py,sha256=By7pJP_IGMHOjf5rbqBrkGo3V_SEjpZbug5Qpo4R5fc,1853
|
|
425
444
|
telnyx/types/call_enqueued_webhook_event.py,sha256=kDv3EZKutPehui2ny4kUnmIBtMpGX3NL7OCLF3K0q3Y,1837
|
|
@@ -462,7 +481,7 @@ telnyx/types/campaign_list_response.py,sha256=cW9tqO3c3ZDnXxcPxkthHS2Q8xvnIrixd1
|
|
|
462
481
|
telnyx/types/campaign_sharing_status.py,sha256=-PT1pYJgMRmqf3jKduW0SPdNKGf02sJhUwj2CbQ7MM0,681
|
|
463
482
|
telnyx/types/campaign_status_update_webhook_event.py,sha256=AOAq7a0NsuYBFVbQ0n2PWhgvvajgQuMa8Cc9WWu_NwQ,965
|
|
464
483
|
telnyx/types/campaign_submit_appeal_params.py,sha256=S92CMn_b_NGHGtE-etlaVZQn6A68BZLZz1-ZexMBaNA,461
|
|
465
|
-
telnyx/types/campaign_submit_appeal_response.py,sha256=
|
|
484
|
+
telnyx/types/campaign_submit_appeal_response.py,sha256=BxDotpov91C1bjoXQO8Li6TIcxoO5POwVtHefRXl_FY,364
|
|
466
485
|
telnyx/types/campaign_update_params.py,sha256=0tUXAyE9dnJhosIxKo3DmJx_uMGMk4xS3W36Ckf-aYU,1577
|
|
467
486
|
telnyx/types/channel_zone_list_params.py,sha256=zaTiR8tGiFf2h2OqMLCHTgvOCKKr_IMEt61-YVWxBOY,517
|
|
468
487
|
telnyx/types/channel_zone_list_response.py,sha256=kylyHUWHyq6ltiS53kvem_1fXk1dqOlRH03-zpl5D58,872
|
|
@@ -586,7 +605,6 @@ telnyx/types/dynamic_emergency_endpoint_retrieve_response.py,sha256=UjgWjbsBHC8K
|
|
|
586
605
|
telnyx/types/encrypted_media.py,sha256=gep-8QZ1MEwmJ_aDd9Ym-OVKEcIXHZlM_jvWkT7ldJY,249
|
|
587
606
|
telnyx/types/entity_type.py,sha256=2RX5p8I9whwAMHQw4sNAfSXNKLkuttpImMhnCQB626g,258
|
|
588
607
|
telnyx/types/enum_retrieve_response.py,sha256=EPO8dAJkZET6eGZTnvPIYJQ38IibTi9xwTohAHc2Hec,277
|
|
589
|
-
telnyx/types/error.py,sha256=5RSz0fIaw5K7STV45FKlqeTPJZVqRKWSaZIOwddmO4o,574
|
|
590
608
|
telnyx/types/external_connection.py,sha256=HJ6xD76XN4sROHafTteQtTIwy41mEb0d_HMvzDR-908,2375
|
|
591
609
|
telnyx/types/external_connection_create_params.py,sha256=b6XusXMG7LbsaH-oDBfRGRiHMuy3IE8I_qKov48SVz8,1696
|
|
592
610
|
telnyx/types/external_connection_create_response.py,sha256=lFrIZXYzVmlcXuHraptL6k7NweJ_Asc2X3frkd8d5cc,347
|
|
@@ -857,7 +875,7 @@ telnyx/types/number_order_phone_number_update_requirement_group_response.py,sha2
|
|
|
857
875
|
telnyx/types/number_order_phone_number_update_requirements_params.py,sha256=6oZLLdQRiNMYv3VOaojY-UGMkkBunKzYfxi4S6t9J1c,488
|
|
858
876
|
telnyx/types/number_order_phone_number_update_requirements_response.py,sha256=gpBTWv98n_JccRd-mwaYkVUtNiWihdavKqHOaNylPZM,393
|
|
859
877
|
telnyx/types/number_order_retrieve_response.py,sha256=1WygTrroK2bSgUhhmjmCIEVsx-TCN6gpyLdtrdAHC3k,367
|
|
860
|
-
telnyx/types/number_order_status_update_webhook_event.py,sha256=
|
|
878
|
+
telnyx/types/number_order_status_update_webhook_event.py,sha256=I1ooLnocUA1jxrMnJU_ep0alxtzEmf05TtEmqqsji3c,841
|
|
861
879
|
telnyx/types/number_order_update_params.py,sha256=yWf5rSyWr-POo7WNMqRI8I1f88lEy1yPRPjnAMBAFzY,532
|
|
862
880
|
telnyx/types/number_order_update_response.py,sha256=vOdtpv_CwkLei1nCn2u_-qN1YYrEqRxjbqf5BfWDkK0,363
|
|
863
881
|
telnyx/types/number_order_with_phone_numbers.py,sha256=mq6s2u4zP8BgkUKps5Eu63wM4_ENFPvOjoM9HCo5xrE,1579
|
|
@@ -871,6 +889,28 @@ telnyx/types/number_reservation_list_response.py,sha256=BmCn63NV2cHRhO661HgQEsBf
|
|
|
871
889
|
telnyx/types/number_reservation_retrieve_response.py,sha256=mNgKrwL_Qq0rVPeCZzhaTeubpca-uUE0YUx535U2_HU,346
|
|
872
890
|
telnyx/types/numbers_feature_create_params.py,sha256=ArXiQW5-MhR81YaUNJOjR41aVgXICMajYK4D0CfU9Mk,361
|
|
873
891
|
telnyx/types/numbers_feature_create_response.py,sha256=4p7DBbd4HzNmumwal8ozpOjOPI0o9aaZvNZ3v63RW7Y,365
|
|
892
|
+
telnyx/types/oauth_client_create_params.py,sha256=n_nJTEQzHC7zATP7mCRx5F_ELQeU9rqGob47-avi1oY,1136
|
|
893
|
+
telnyx/types/oauth_client_create_response.py,sha256=ebDwniuCi8XyWJEzmQxkjFkfWQsGN37bXWongTzOkq8,1736
|
|
894
|
+
telnyx/types/oauth_client_list_params.py,sha256=tLcLmTdYbfWlBxHHp4_sV9UWGIZWzRxHWGnwaVnNRtk,1362
|
|
895
|
+
telnyx/types/oauth_client_list_response.py,sha256=vvfoB3G-XdLO1HhD3y_wFItXH19F_K8PbJLuIRiMQ-Q,2090
|
|
896
|
+
telnyx/types/oauth_client_retrieve_response.py,sha256=kSMGAJNtNkgBt5AF67kH34IDEJoY_6-Rxmcl8aF4DFk,1740
|
|
897
|
+
telnyx/types/oauth_client_update_params.py,sha256=mqqIUwlZbxUvLBA0RPwZVC7g6hmG3UJ_2Q-TA8EHvaE,967
|
|
898
|
+
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
|
|
900
|
+
telnyx/types/oauth_grant_list_params.py,sha256=QUqXr2j_47an8zFXwf_iaRR_FgkBvcyXK06RE_Ik36o,491
|
|
901
|
+
telnyx/types/oauth_grant_list_response.py,sha256=h06qRbJQ-n2T5hcId8SIAByjHU0PeI586ibnvi44sRE,1143
|
|
902
|
+
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
|
|
910
|
+
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
|
|
874
914
|
telnyx/types/ota_update_list_params.py,sha256=ZD8dqS8kn7nt3ltxPy-NzYTnMiImZBJeyJM-vMhz_y0,1016
|
|
875
915
|
telnyx/types/ota_update_list_response.py,sha256=sl7b11aO8Lh7zqbbowc9lxJ1QpTBifyipIZKJ6m4aGI,1145
|
|
876
916
|
telnyx/types/ota_update_retrieve_response.py,sha256=L3TXeJdR8lr3V9GUlLlYvZxqoL1iFaNlQDIj8nCkmHQ,2358
|
|
@@ -908,9 +948,9 @@ telnyx/types/phone_number_campaign_create_params.py,sha256=zJ4NCI9mbcLWYRZ6TuDDy
|
|
|
908
948
|
telnyx/types/phone_number_campaign_list_params.py,sha256=77A1YYCwj37a0S9lChI-xZl4D0ocIRRybqoC9cv7enY,1209
|
|
909
949
|
telnyx/types/phone_number_campaign_list_response.py,sha256=rEhkg2Ge9HUi79PRaF8SjebXZcwhArBvme7jkxO7aI0,451
|
|
910
950
|
telnyx/types/phone_number_campaign_update_params.py,sha256=UPFD0w1Tl7v_1otFvPA0oCgrQ0lEcQUvV40crvqW9qU,641
|
|
911
|
-
telnyx/types/phone_number_delete_response.py,sha256=
|
|
912
|
-
telnyx/types/phone_number_detailed.py,sha256=
|
|
913
|
-
telnyx/types/phone_number_list_params.py,sha256=
|
|
951
|
+
telnyx/types/phone_number_delete_response.py,sha256=VMz5Zvyo3nyJxAVaDyc-nvj9deLPAkDSZJF9ItuKvzE,3969
|
|
952
|
+
telnyx/types/phone_number_detailed.py,sha256=DA3cgXev1E-iFPoM9abHVXB2sRxMD_r22J5fuBQNmT0,5331
|
|
953
|
+
telnyx/types/phone_number_list_params.py,sha256=ROHIJT63JMbWgcxiMO9LNgb1xZVhN2FI4MW73vgs0Qg,4097
|
|
914
954
|
telnyx/types/phone_number_list_response.py,sha256=1CpTovSXDGaY6fV2kydhlb7S0bkjvAMSWNq1SmxnC-Q,432
|
|
915
955
|
telnyx/types/phone_number_retrieve_response.py,sha256=4-PnbHooOOehtlvixbyN3BPg43mRfa4_46oDDqPt2Os,341
|
|
916
956
|
telnyx/types/phone_number_slim_list_params.py,sha256=APu7BkOe4jGJSXQpvApveEF5uvP-tRekzy-X4hgaTEI,4330
|
|
@@ -922,9 +962,9 @@ telnyx/types/phone_numbers_regulatory_requirement_retrieve_response.py,sha256=Db
|
|
|
922
962
|
telnyx/types/portability_check_run_params.py,sha256=0mGHrFlvbcbhQR4tjos08kX6e7EgewMBcJFwHjqgkYc,417
|
|
923
963
|
telnyx/types/portability_check_run_response.py,sha256=_y2ZkWfs0E32q6AbNdSw6NjEiqRgrwkPfhQSp6kpE24,869
|
|
924
964
|
telnyx/types/porting_list_uk_carriers_response.py,sha256=nmz5ttx9Vj2K41BLNyz_0oF0Vkf6RGhHaiC8KRsTT50,1052
|
|
925
|
-
telnyx/types/porting_order.py,sha256=
|
|
965
|
+
telnyx/types/porting_order.py,sha256=PBAWUxR7XMWsxda5865jmbky6r6bOoLyezsdotHHavQ,3776
|
|
926
966
|
telnyx/types/porting_order_activation_settings.py,sha256=hWNxerN8xlXdV_vDXyF8R4xqoIyu05RxNol3R9F4Gog,1087
|
|
927
|
-
telnyx/types/porting_order_create_params.py,sha256=
|
|
967
|
+
telnyx/types/porting_order_create_params.py,sha256=9FniLm_A7STlM-FlqMddFPpEGJINHOovelDeMMfmWqs,637
|
|
928
968
|
telnyx/types/porting_order_create_response.py,sha256=rHUZqnEylVSSs10cA4xufxzdw3HbgEbZ3Bc73ou10ek,329
|
|
929
969
|
telnyx/types/porting_order_documents.py,sha256=e7LNPWm6fVMGxkABWdkJbQG8VjIZ757wx9Td1D2eKcM,436
|
|
930
970
|
telnyx/types/porting_order_documents_param.py,sha256=F8pfn8vVOrjF_GcyHygI2Cd2-4z_5vu04p29K1xzAWA,440
|
|
@@ -934,7 +974,7 @@ telnyx/types/porting_order_end_user_admin_param.py,sha256=tE_pu51AYgX6flLJuX7rHe
|
|
|
934
974
|
telnyx/types/porting_order_end_user_location.py,sha256=hW-qGKm-AaXfVZDqhu-R4r0CiQO7CSVc_u1wutGwXIU,775
|
|
935
975
|
telnyx/types/porting_order_end_user_location_param.py,sha256=1ijg5ZggPEedL9kqSX_um9hoelwiUgJa7ckkYZG0YMg,711
|
|
936
976
|
telnyx/types/porting_order_end_user_param.py,sha256=92FdqH4jN4p4IZpIRm8ILNUIwKSYx1RGVSKT-NtDsMw,513
|
|
937
|
-
telnyx/types/porting_order_list_params.py,sha256=
|
|
977
|
+
telnyx/types/porting_order_list_params.py,sha256=kfXjGh-pA3Tb3cI7BCRTaiBulJ-eJe1D5wjOLC9UfqI,3700
|
|
938
978
|
telnyx/types/porting_order_list_response.py,sha256=-MKEyjCUC4zQEOhn2PMvg1FDakvAsA_ovd2JHs9hHfk,412
|
|
939
979
|
telnyx/types/porting_order_messaging.py,sha256=jkGGFmt4PzaFCHJ52MRKjE-uag6TYmReUbavR6YZZrI,974
|
|
940
980
|
telnyx/types/porting_order_misc.py,sha256=Eerfrhs5T65zrIgWLkTJkh2KSJJIrfI_sdBLkgiRfVA,1085
|
|
@@ -951,7 +991,7 @@ telnyx/types/porting_order_retrieve_requirements_response.py,sha256=bn8-lL-xao5M
|
|
|
951
991
|
telnyx/types/porting_order_retrieve_response.py,sha256=PLePbTzTmbAf3MYMrNI1pcrbD5uPk-lunurZMbEnHWQ,472
|
|
952
992
|
telnyx/types/porting_order_retrieve_sub_request_response.py,sha256=2Xo7jn0efyCcs8CZWOfnATM4N8o_xhuLiuD5hNsGcY8,553
|
|
953
993
|
telnyx/types/porting_order_type.py,sha256=s2TI5xjXtNPvClhyv_Ou1BhTLDMm5bkVr48ZVwg3Ems,226
|
|
954
|
-
telnyx/types/porting_order_update_params.py,sha256=
|
|
994
|
+
telnyx/types/porting_order_update_params.py,sha256=XZDzL4TzuGBR99_eWP9tX0Nt8xnJdaZObtxbv3VaqlI,2568
|
|
955
995
|
telnyx/types/porting_order_update_response.py,sha256=tb4S0gw_MtqcVIj2T8fvbbWsldLBsV_vt9n8OrUYejU,468
|
|
956
996
|
telnyx/types/porting_order_user_feedback.py,sha256=a5wKwLZfyI0v_pGIuFdg5v_VVxDdFUj32igWD8IKx-4,502
|
|
957
997
|
telnyx/types/porting_order_user_feedback_param.py,sha256=3ZijhNy-FT6aQ3BSmROtXxfGOJmp7_Zw9mjuOrqmS58,506
|
|
@@ -1062,7 +1102,7 @@ telnyx/types/short_code_list_response.py,sha256=AvvRr9Aigrx328b_MK4ANs1w-2R_xlvt
|
|
|
1062
1102
|
telnyx/types/short_code_retrieve_response.py,sha256=r0VPeGPNPdX7T0Z172uk1UGf4F7LZPpH8gzItaPGxnM,313
|
|
1063
1103
|
telnyx/types/short_code_update_params.py,sha256=VBSQiPYagcMNJEuVI0jf3BMREMbNTX8u_5WfYkEPx6M,358
|
|
1064
1104
|
telnyx/types/short_code_update_response.py,sha256=_LdVQSz5Tll_i2rN0UlLa3jQs_EkzDR3B8so_1bGYao,309
|
|
1065
|
-
telnyx/types/sim_card.py,sha256=
|
|
1105
|
+
telnyx/types/sim_card.py,sha256=ue5hoYTXnsSAzlVnpZQkrsOQUFwMbh-enoZqHnFSb40,6494
|
|
1066
1106
|
telnyx/types/sim_card_data_usage_notification.py,sha256=IygmPGmwjIWghUlizAiJtvnPoVFIqwlhF54mZQCNU-U,961
|
|
1067
1107
|
telnyx/types/sim_card_data_usage_notification_create_params.py,sha256=mZwgfx6uI9DZxUchwKWykIRKCsCsKxbI1oo_MR-pTcs,617
|
|
1068
1108
|
telnyx/types/sim_card_data_usage_notification_create_response.py,sha256=L_CGKuBjgAnFbvYW-PhL7-lkcV36OHBbdkE2UbWo4DU,471
|
|
@@ -1101,7 +1141,7 @@ telnyx/types/sim_card_order_preview_preview_response.py,sha256=x2dhTdPLD6DWjfiPS
|
|
|
1101
1141
|
telnyx/types/sim_card_order_retrieve_response.py,sha256=GYLCvb2lrz2VetUPGBNdK9iEWY0v2mSwu_VGHgqA3b0,322
|
|
1102
1142
|
telnyx/types/sim_card_retrieve_params.py,sha256=msfn5KqDidUX18bAc0mFlQA70XECzWhdAl7ria3s9uk,616
|
|
1103
1143
|
telnyx/types/sim_card_retrieve_response.py,sha256=1Gnx72wKn2QvDXii7elirdIUjVEl23ZXDrq2X5O_xTI,296
|
|
1104
|
-
telnyx/types/sim_card_update_params.py,sha256=
|
|
1144
|
+
telnyx/types/sim_card_update_params.py,sha256=lgcDVFpyLRdaVROawfYy1gvDxI2TZjUqDsFbYgHORPg,973
|
|
1105
1145
|
telnyx/types/sim_card_update_response.py,sha256=TQ8B1JYAhOFzzpywZ_0I5AFSd_UQzX1OhphcqbwnMW8,292
|
|
1106
1146
|
telnyx/types/sip_header.py,sha256=SBBvBzGKngaba4k0-vKQZYuwdLwCtoPglPt2C_GTzjg,339
|
|
1107
1147
|
telnyx/types/sip_header_param.py,sha256=VF4Dw9UcPG0qulCDCup7wm9BAVcSAO3kmYWIQyhuZRI,406
|
|
@@ -1113,10 +1153,10 @@ telnyx/types/siprec_connector_update_response.py,sha256=3XJlAD7OkMMx6bMxRVlTBf6I
|
|
|
1113
1153
|
telnyx/types/sound_modifications_param.py,sha256=vjaonlIrV7SanIqjlIR2WcKQWZ-gQAvjP9WYd6FAowE,715
|
|
1114
1154
|
telnyx/types/stock_exchange.py,sha256=BmxOo0O-trPZ9NXynvfWaifk7yvKTmrieO5SE4Y26K0,488
|
|
1115
1155
|
telnyx/types/storage_list_migration_source_coverage_response.py,sha256=scPDrxF0TeUHHjpZi7lQgmOCM2dF7Dwi2FGm6kSw2bo,700
|
|
1116
|
-
telnyx/types/stream_bidirectional_codec.py,sha256=
|
|
1156
|
+
telnyx/types/stream_bidirectional_codec.py,sha256=5vpEFf39xHjdEheIlioJQA5tTXj5dHlXwZXrTfs3egQ,272
|
|
1117
1157
|
telnyx/types/stream_bidirectional_mode.py,sha256=0q0fmRopWjaa4QQAbP0kWWEdsYjYV-4S2isZPBVuxLw,235
|
|
1118
1158
|
telnyx/types/stream_bidirectional_target_legs.py,sha256=MbV-S4HB92iCT3dkYUPLgHkpV0Hu5aF-TZ2tiN6qAhY,261
|
|
1119
|
-
telnyx/types/stream_codec.py,sha256=
|
|
1159
|
+
telnyx/types/stream_codec.py,sha256=EAxerZRD_V3kaQckzKBWhRNZBJilq5Wbd65X4Ydntx8,257
|
|
1120
1160
|
telnyx/types/streaming_failed_webhook_event.py,sha256=99U5ZHyGW1RdGr-H6meGBnxV7f-JVuG9CWCyRI4T49w,2364
|
|
1121
1161
|
telnyx/types/streaming_started_webhook_event.py,sha256=1hORCcvNXVPGwuPnKvXBeLqKXTDAKkCj8TpDS7tOTCg,1696
|
|
1122
1162
|
telnyx/types/streaming_stopped_webhook_event.py,sha256=r0s21JyCa0nWqD-LFLEeUAxMUrfQMKBbN0G7kiiA-MY,1696
|
|
@@ -1185,7 +1225,7 @@ telnyx/types/user_tag_list_params.py,sha256=K2a4Vr2hd0faOncocQE36DERjL0EWAGlV4Ii
|
|
|
1185
1225
|
telnyx/types/user_tag_list_response.py,sha256=peplsopZlTAWLZnTF9qHOc1SnWV3gB-kHrYU6TgitUU,1053
|
|
1186
1226
|
telnyx/types/verification.py,sha256=etIqQbjIWYn1cU8NFuEOK4sMXq6Neq4Jeme3Fnf3dJU,1309
|
|
1187
1227
|
telnyx/types/verification_retrieve_response.py,sha256=1VDPKAqX8HPHo8YKNddOPX0hM653O1cUJU-NPOjYYtQ,274
|
|
1188
|
-
telnyx/types/verification_trigger_call_params.py,sha256=
|
|
1228
|
+
telnyx/types/verification_trigger_call_params.py,sha256=vJsgP7Tjum_Zf_JVzaBMSdHtG0Fn75K04e-nZasNH5s,872
|
|
1189
1229
|
telnyx/types/verification_trigger_flashcall_params.py,sha256=gtbnxXpCy-QbKrmj8gkgZPUcLmheZgBh7yCq0fYvjmE,551
|
|
1190
1230
|
telnyx/types/verification_trigger_sms_params.py,sha256=3fLec5fpkUTdsmml2tLp-c6elbD5ZHm_xoux-QSMFYY,660
|
|
1191
1231
|
telnyx/types/verified_number.py,sha256=A9j9l8Znwt3wXSOxtVvSpwBH4IsC7ydPzd4oPSPXwd8,445
|
|
@@ -1196,11 +1236,15 @@ telnyx/types/verified_number_list_params.py,sha256=S2iMCu-O2ztlcHyIkb1YsChOzFxhE
|
|
|
1196
1236
|
telnyx/types/verified_number_list_response.py,sha256=6-9_jeZNSTTJfqL6kFErVoC6sIqkRC8Z14Z7qJ9GjEc,522
|
|
1197
1237
|
telnyx/types/verify_profile.py,sha256=9WksG8mqGRX0WUEsaCApvsQGtjAKwxtZWDjT1tF-K_M,4493
|
|
1198
1238
|
telnyx/types/verify_profile_create_params.py,sha256=6mMmInWqwlLcOeB98iOO2AG8kfttOedMwHq25iwQ10k,3349
|
|
1239
|
+
telnyx/types/verify_profile_create_template_params.py,sha256=INfbxm21Yp6SPWPu-j-r6VF0UKHZV1IcyUau2hLpQ7I,365
|
|
1240
|
+
telnyx/types/verify_profile_create_template_response.py,sha256=U2qww2KfwfhXJHhhlc9WzVmu_TzDxij-2NAPLLWo928,381
|
|
1199
1241
|
telnyx/types/verify_profile_data.py,sha256=zuMcvo3F_6ugK6OJUEtmTey-WSMpUqkvJDfLruSViYM,302
|
|
1200
1242
|
telnyx/types/verify_profile_list_params.py,sha256=LZr3l8Nsq-kXb3pWUvhBOuWc5QvLY9A9MxmpTbbw1UU,670
|
|
1201
1243
|
telnyx/types/verify_profile_list_response.py,sha256=ntFBhR_57db0aAgOF09K2h20whmrRHG-haYdYBta_Ho,517
|
|
1202
1244
|
telnyx/types/verify_profile_retrieve_templates_response.py,sha256=ZeFhBEIr0HLyDZz_Lbb6t679W-5esCvZxJrC0x5f7dc,382
|
|
1203
1245
|
telnyx/types/verify_profile_update_params.py,sha256=3vUMeRqKFjorZQjvvok0AcEOz-HYHggEvH9fUSjMFU0,3319
|
|
1246
|
+
telnyx/types/verify_profile_update_template_params.py,sha256=a3PseCd91Jmz-jN3Zl7-mmFsbo0vO-tE2zLLRzhzaFc,365
|
|
1247
|
+
telnyx/types/verify_profile_update_template_response.py,sha256=ZJIYWyTry7hzw6PpDBMKtyLSMNO1Lm8qQxNqx6jtDZE,381
|
|
1204
1248
|
telnyx/types/vertical.py,sha256=iHaWXSXp1agwA2ORKJA3VwTJizZu9SFoEatEqcEMz60,494
|
|
1205
1249
|
telnyx/types/video_region.py,sha256=zaMiWSVkAc0FbkWrK-g1uNPqW0QgBT9mH7kpjrpqzXw,1488
|
|
1206
1250
|
telnyx/types/video_region_param.py,sha256=RZ3fm6bw1utuNM1nUsntXvGLUf9_NQky2FWcpEhoFt8,1529
|
|
@@ -1218,6 +1262,8 @@ telnyx/types/webhook_api_version.py,sha256=Z1OhRLRE2APWtQOvcvPZPs0gL4cLK44_2ar1g
|
|
|
1218
1262
|
telnyx/types/webhook_delivery_list_params.py,sha256=i8Ud2pwGvz5iKveZOdKDsap6nuzbKwRzAzv6bH_VkGQ,2451
|
|
1219
1263
|
telnyx/types/webhook_delivery_list_response.py,sha256=EuXC75OpUzhtGUKdYEfhw8HMwRk4A9WxvGvxtTl7d7U,3251
|
|
1220
1264
|
telnyx/types/webhook_delivery_retrieve_response.py,sha256=y9Otxv9LNvzYNiBfxyvV2Zhf9qq-TbzdX8EhfXv26kE,3083
|
|
1265
|
+
telnyx/types/well_known_retrieve_authorization_server_metadata_response.py,sha256=QsEQteFc_83NN-GkmRKkGN8Ewe-whM3oUEkcPxLhqls,1294
|
|
1266
|
+
telnyx/types/well_known_retrieve_protected_resource_metadata_response.py,sha256=Ldjp4M2JSMza74xuc5kLfl2Lny57-QZls6TmVQTxV38,458
|
|
1221
1267
|
telnyx/types/wireguard_interface_create_params.py,sha256=v5hzXUge3M5qhsPn3JZL-fOLDeFkPjqNMUkkhM0DM_g,623
|
|
1222
1268
|
telnyx/types/wireguard_interface_create_response.py,sha256=QdkMG6kIs4PC80sWN7XEFCxd5AL1zB-FE64ZA235FFo,1181
|
|
1223
1269
|
telnyx/types/wireguard_interface_delete_response.py,sha256=CQca3bq7aQR7Vcb2YKG3rKiIqAfheKK0JBawUNtnovg,1181
|
|
@@ -1256,8 +1302,8 @@ telnyx/types/addresses/__init__.py,sha256=m-_aSxRiotRXrdHEqmV9NQlyot9383J7GhH7A9
|
|
|
1256
1302
|
telnyx/types/addresses/action_accept_suggestions_params.py,sha256=n8ifP4q6XNEaLrgkLalRt9f20S1oXQshCdhKnyLOQcY,405
|
|
1257
1303
|
telnyx/types/addresses/action_accept_suggestions_response.py,sha256=PUK8ojT69lS3oSypV2FauV0MuxdHCmsoIKeufmHqsr0,579
|
|
1258
1304
|
telnyx/types/addresses/action_validate_params.py,sha256=Q94O9NnGAxWADHZS4lFWDuypKVssnBeouGJ9-XDIj6w,993
|
|
1259
|
-
telnyx/types/addresses/action_validate_response.py,sha256=
|
|
1260
|
-
telnyx/types/ai/__init__.py,sha256=
|
|
1305
|
+
telnyx/types/addresses/action_validate_response.py,sha256=w-UDoOKNzJAUURNiJhj5Os0qm8jxCNbJ5GA7ByyLuzE,1993
|
|
1306
|
+
telnyx/types/ai/__init__.py,sha256=Z8_3J4Not4iyO8aKo2rYPaVcIz8Neh3IZG38tpHyLlE,6498
|
|
1261
1307
|
telnyx/types/ai/assistant_chat_params.py,sha256=CC0HBoZ2dWKUlrqMMuiz7Uj_Fg_abaMltXOTQAkLNLA,557
|
|
1262
1308
|
telnyx/types/ai/assistant_chat_response.py,sha256=EB-0npHYLL4g2EsRBpdDm-objtcDg5NYujSpc9483-0,301
|
|
1263
1309
|
telnyx/types/ai/assistant_clone_response.py,sha256=_vY99mNwv1VphjuASE9ySPDfsrOq0vc4ZwoIEPjUNkA,3022
|
|
@@ -1285,6 +1331,7 @@ telnyx/types/ai/cluster_list_response.py,sha256=F9Q4tbZIVoqkp4SKksXMj3Mux-J1F9PA
|
|
|
1285
1331
|
telnyx/types/ai/cluster_retrieve_params.py,sha256=7sU3B0n_ZE17uc5tw6LC0pcpE3X345BUxNTTkATCQdY,528
|
|
1286
1332
|
telnyx/types/ai/cluster_retrieve_response.py,sha256=luYQrxjIMJFad5KO2-Vsm5eDUnDRmfnPXURwiXOfiKs,479
|
|
1287
1333
|
telnyx/types/ai/conversation.py,sha256=SqbBhoeCf1cGEN434GwwzuLvw4kfGgmtaZz5kTYebY0,645
|
|
1334
|
+
telnyx/types/ai/conversation_add_message_params.py,sha256=oox_iXf-lGmGeNNxnHkNxkLGHKqg7qaB1orTo4XT_QE,761
|
|
1288
1335
|
telnyx/types/ai/conversation_create_params.py,sha256=0zYEDBNTQsRqiT0vbogywRNsRYKqXt4dCK5G5kWkaKI,382
|
|
1289
1336
|
telnyx/types/ai/conversation_list_params.py,sha256=SQp7y1CVuc1SPxJ8mlLLgmakgxzGo-e97CsqEt4ARGQ,2175
|
|
1290
1337
|
telnyx/types/ai/conversation_list_response.py,sha256=FJB7lMGBALYH5MdKxvBmxuO9rgjKiE7UUh-5qh8PdDI,298
|
|
@@ -1310,8 +1357,8 @@ telnyx/types/ai/inference_embedding_bucket_ids.py,sha256=yeoZw3FXqgHxHh9t0D57Dwr
|
|
|
1310
1357
|
telnyx/types/ai/inference_embedding_bucket_ids_param.py,sha256=Qpzf4VaUrL91hYpfBwCuuxXPhQHWBZhay9hY0X_LDfY,670
|
|
1311
1358
|
telnyx/types/ai/inference_embedding_transfer_tool_params.py,sha256=4dukEZt79j1dce0aW9h_YeCP-DYH2cACgxu6pkEv0s0,1246
|
|
1312
1359
|
telnyx/types/ai/inference_embedding_transfer_tool_params_param.py,sha256=irlhSeQBdNA81Kw_hMuAmyveqaFYT3uGcW1-mFtpIE8,1393
|
|
1313
|
-
telnyx/types/ai/inference_embedding_webhook_tool_params.py,sha256=
|
|
1314
|
-
telnyx/types/ai/inference_embedding_webhook_tool_params_param.py,sha256=
|
|
1360
|
+
telnyx/types/ai/inference_embedding_webhook_tool_params.py,sha256=xqXd-CUKiNMimPL7Ps2v22HiIX0cgT5rmoRCOjq4tRE,3554
|
|
1361
|
+
telnyx/types/ai/inference_embedding_webhook_tool_params_param.py,sha256=j5Sy8gDebTOJfTEKYsqw6Z31DNrkwJJoYaddkUtMtCI,3476
|
|
1315
1362
|
telnyx/types/ai/insight_settings.py,sha256=4J4GFvMv-j697Stw6mOD0yU4glM7I6ji41JyL3BP3nA,402
|
|
1316
1363
|
telnyx/types/ai/insight_settings_param.py,sha256=x-moBUrjK75NuMjXfMbdRyEXledn_U2bROcfGt_LVYc,422
|
|
1317
1364
|
telnyx/types/ai/messaging_settings.py,sha256=3jewX-cEPO7JMdve0No3bufDGM2iCIn4nc2Yq1U7zWo,597
|
|
@@ -1370,7 +1417,7 @@ telnyx/types/ai/assistants/tests/test_suites/paginated_test_run_list.py,sha256=3
|
|
|
1370
1417
|
telnyx/types/ai/assistants/tests/test_suites/run_list_params.py,sha256=imqpdtqeMHwxtjAjyrsWZDERlxaaEncqJ4oAbGtoxSY,739
|
|
1371
1418
|
telnyx/types/ai/assistants/tests/test_suites/run_trigger_params.py,sha256=YYqEVKG6u-UUJW3q6r-m7OP42QZrhZOO7iuGNwwWWp0,487
|
|
1372
1419
|
telnyx/types/ai/assistants/tests/test_suites/run_trigger_response.py,sha256=_50TSPBaEUBELVm_Goky2gpDFn_kE5IDpb3m6IcqZII,289
|
|
1373
|
-
telnyx/types/ai/conversations/__init__.py,sha256=
|
|
1420
|
+
telnyx/types/ai/conversations/__init__.py,sha256=KFVtmf6mqkhin4UP8iAsU3VmpWoyFVnR7zAjsSYpAOs,1353
|
|
1374
1421
|
telnyx/types/ai/conversations/insight_create_params.py,sha256=KdTKG2pwKSzUdh8z3vRE-Wj5UULh0ifDGHqhrbo8G-s,462
|
|
1375
1422
|
telnyx/types/ai/conversations/insight_group_insight_groups_params.py,sha256=_P9-MsE2-Kuvnf5OLc8QovkCAyUxTkhmbCBR0xx2liA,349
|
|
1376
1423
|
telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_params.py,sha256=WL8bQ_bgmo8OHapip7SEFWj8p6lbhsRIuJksN0nZoR0,555
|
|
@@ -1383,7 +1430,6 @@ telnyx/types/ai/conversations/insight_template_detail.py,sha256=B_e_xFmsf8Joejpy
|
|
|
1383
1430
|
telnyx/types/ai/conversations/insight_template_group.py,sha256=E5R9zPcq4-5-dsbL5nYQIn3hPFQfX4NFAH-UwIO07Ac,490
|
|
1384
1431
|
telnyx/types/ai/conversations/insight_template_group_detail.py,sha256=qzph4UrqU6PuanWiNYVEY9t8mIuqHRbMFnAvccbsFgc,298
|
|
1385
1432
|
telnyx/types/ai/conversations/insight_update_params.py,sha256=eOqWNcZ7ZP985lthVOngmaVjedmoqijiGcBiEwWp8Z8,368
|
|
1386
|
-
telnyx/types/ai/conversations/message_create_params.py,sha256=efXuWtM9TgPx6WRZhuh7dI_4CZafmxEWeYSFhKcw8uU,745
|
|
1387
1433
|
telnyx/types/ai/conversations/message_list_response.py,sha256=8kXalX3zsdKMb__S0aC-k22tJMluyRpVE1A3zss8QLw,1493
|
|
1388
1434
|
telnyx/types/ai/conversations/insight_groups/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1389
1435
|
telnyx/types/ai/embeddings/__init__.py,sha256=hutZ3j-e0lQbtrV1-9s__J24fvN10927TMt7L0WTKlk,285
|
|
@@ -1415,7 +1461,7 @@ telnyx/types/bundle_pricing/user_bundle_list_unused_response.py,sha256=KHAF8VmY5
|
|
|
1415
1461
|
telnyx/types/bundle_pricing/user_bundle_resource.py,sha256=Oe99CUd5UuwiQE9BUX2o5s4e8Mk_hgHhO-7FVj4TvVY,587
|
|
1416
1462
|
telnyx/types/bundle_pricing/user_bundle_retrieve_response.py,sha256=3ouYQWSxC5ypWOVDlGtk3oyf_q_-7pcNENSjI4_yBqw,266
|
|
1417
1463
|
telnyx/types/calls/__init__.py,sha256=ZpfzG_l6J4PU8huKUMqMPQEGRC93LzP1Gxwphnw3uDQ,8240
|
|
1418
|
-
telnyx/types/calls/action_answer_params.py,sha256=
|
|
1464
|
+
telnyx/types/calls/action_answer_params.py,sha256=eihEqpTQveI6Rz8WK7Krzt0SP81_lvOr_Z7t03wiZLU,4987
|
|
1419
1465
|
telnyx/types/calls/action_answer_response.py,sha256=QXvXCTfUYai9afI8jwCBl8nVTeSXCFP4zHIlco7z3MI,478
|
|
1420
1466
|
telnyx/types/calls/action_bridge_params.py,sha256=eBgJ5mmyovDSBil49sfMgrdWnVWVDrWcYUWITTKF8JM,4832
|
|
1421
1467
|
telnyx/types/calls/action_bridge_response.py,sha256=VaSr4m4v_BQavB2AQUf0kUmMnoFtNgb03ygiN3irf4g,344
|
|
@@ -1423,7 +1469,7 @@ telnyx/types/calls/action_enqueue_params.py,sha256=_YhSEKgsD49280EDZVOAdzOZMmWwa
|
|
|
1423
1469
|
telnyx/types/calls/action_enqueue_response.py,sha256=yCMirKpUKRpbp-TzEGZ3gHNEJFnB97Uk5fu5mx6sJEc,346
|
|
1424
1470
|
telnyx/types/calls/action_gather_params.py,sha256=OTzy8S6L_NIbKVGirx4YPVmK56TNiKjLVUK3raED-Ng,1494
|
|
1425
1471
|
telnyx/types/calls/action_gather_response.py,sha256=juPTG7gUSY8I55pQL6PRBI4Bz2LADmieyp9FSgaDdDo,344
|
|
1426
|
-
telnyx/types/calls/action_gather_using_ai_params.py,sha256=
|
|
1472
|
+
telnyx/types/calls/action_gather_using_ai_params.py,sha256=ZTwQ7P7Dslvp25uF1klYpDN8HOu99XX9upmjxYKDyDI,5246
|
|
1427
1473
|
telnyx/types/calls/action_gather_using_ai_response.py,sha256=hfA5-WZ6zEbbHy5dlf6uh4gw7PYX6Q6HoxnpbQffQeI,442
|
|
1428
1474
|
telnyx/types/calls/action_gather_using_audio_params.py,sha256=kYtKDtVapvd4gBNJIFwb5dBVxNVZ8mRV3heyheMPgd8,2675
|
|
1429
1475
|
telnyx/types/calls/action_gather_using_audio_response.py,sha256=Tfkhngpbudgw0kvmvg47iQaM0R718YgTc6t-bfagGxA,364
|
|
@@ -1459,7 +1505,7 @@ telnyx/types/calls/action_start_recording_params.py,sha256=FA9D17UEJEx0hDMeLWwNM
|
|
|
1459
1505
|
telnyx/types/calls/action_start_recording_response.py,sha256=Lir1JuVgqBLIJUm5ekMxF2Q8eSls57PntReJo32Kaew,360
|
|
1460
1506
|
telnyx/types/calls/action_start_siprec_params.py,sha256=t1H8_BDwS2Lukg42wTkyiEycib__gBDESyTf89Ro3sg,1368
|
|
1461
1507
|
telnyx/types/calls/action_start_siprec_response.py,sha256=wYyiEf8nK5iDlSyhMUqjI5LGIuh47i0bllqfB3SA7oA,354
|
|
1462
|
-
telnyx/types/calls/action_start_streaming_params.py,sha256=
|
|
1508
|
+
telnyx/types/calls/action_start_streaming_params.py,sha256=qYO2XbSYvuNRgxTJSuwxAoqRIhp9VWDHs6KLvloaZto,2087
|
|
1463
1509
|
telnyx/types/calls/action_start_streaming_response.py,sha256=eGSo9KvyzBx-Q4MkunrOeKh9oF2RXMyQD_yM-F-Rbck,360
|
|
1464
1510
|
telnyx/types/calls/action_start_transcription_params.py,sha256=Cn0QDFjlteFRRx2-80mmPojTMnVAExTxTio8hhSeBSE,1392
|
|
1465
1511
|
telnyx/types/calls/action_start_transcription_response.py,sha256=YBz5cet2N0xXBQWVWqaGRnHT4mMYgq_zE1n1gWtJCZk,368
|
|
@@ -1483,7 +1529,7 @@ telnyx/types/calls/action_stop_transcription_params.py,sha256=YUb-a_KunUDsD6fbau
|
|
|
1483
1529
|
telnyx/types/calls/action_stop_transcription_response.py,sha256=hltLMgIxyJxj_PEeBuA3BPQ_33n1LvKSiDBV3EspYCY,366
|
|
1484
1530
|
telnyx/types/calls/action_switch_supervisor_role_params.py,sha256=_oDT9Uae3ODWqltkCHnAyf1H3lRQZ_gmlBI4_EKr-4U,529
|
|
1485
1531
|
telnyx/types/calls/action_switch_supervisor_role_response.py,sha256=0JlFJ7E6GGgtB9ZmyEB01RH0MmiEHjp_O3LEiIPCRWY,372
|
|
1486
|
-
telnyx/types/calls/action_transfer_params.py,sha256=
|
|
1532
|
+
telnyx/types/calls/action_transfer_params.py,sha256=VxWU0BuPn_C8rUmNTOjiMjCmXKPxDnYbQvwml1HnsxE,8894
|
|
1487
1533
|
telnyx/types/calls/action_transfer_response.py,sha256=HVyyXYhzue5F6EuZtm3DGxX52fopUO6lqRWz06nrqJw,348
|
|
1488
1534
|
telnyx/types/calls/action_update_client_state_params.py,sha256=tXxzOKclY3R_ZIRgleAY9sfge7Kwi9Vk48yu6CqXVpk,433
|
|
1489
1535
|
telnyx/types/calls/action_update_client_state_response.py,sha256=S560c0ysvnArlfz0YogaMLuLpGpDJIaVSnQ4tTIRvok,366
|
|
@@ -1565,6 +1611,42 @@ telnyx/types/external_connections/upload_retry_response.py,sha256=WoAkYMT_gf-6cI
|
|
|
1565
1611
|
telnyx/types/faxes/__init__.py,sha256=8klMpMQCvfsBbuavxmmgN3rsfIdS2I4Ru3XclQKt_Sg,288
|
|
1566
1612
|
telnyx/types/faxes/action_cancel_response.py,sha256=SHtVH_YQup1fLb_1SdMcp_nHUO5Zuq-uK19IPB1Yw-0,259
|
|
1567
1613
|
telnyx/types/faxes/action_refresh_response.py,sha256=MrSWBscQBhz77OpzwSPn6f3nJABCJtWGAOQR2mqrQuE,261
|
|
1614
|
+
telnyx/types/legacy/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1615
|
+
telnyx/types/legacy/reporting/__init__.py,sha256=1TckWFwxHs1zgMMKkdJ_tw4K1jgMy1XZWHKSVvd03jA,419
|
|
1616
|
+
telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_params.py,sha256=Z80lsCNsykgl-MT6HWFTs3_lpLISNMgHvpksGRSLh9k,549
|
|
1617
|
+
telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_response.py,sha256=LQuCdZsVu6kFqWRGmTkApFCetIK1Uv9EwIiM0r714BA,299
|
|
1618
|
+
telnyx/types/legacy/reporting/batch_detail_records/__init__.py,sha256=XAUNqPFYDO3rnpesfqF1ii2fq5L6uPSAUsj6H4wjEwk,1553
|
|
1619
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_create_params.py,sha256=9d8DAxX15tMpt198CGL2iMEjX2Tnf7f7heUmJ3Cy8Io,2257
|
|
1620
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_create_response.py,sha256=vhFo83Z7Shca8FT9hfEcNdQDZ0-G0v8s6iZSBtxjmDw,1850
|
|
1621
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_delete_response.py,sha256=aDMX7bF4lhSnZp0yp8FI3SnFwx4DSBbHOtJwJr9d11w,1850
|
|
1622
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_list_response.py,sha256=5Y9w_phloiErjr8QwODyJ-wNT5frtt5oy6S8ZLkxyBw,2073
|
|
1623
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_retrieve_response.py,sha256=OVGtphq8HQg20XqnP9-N3u9UA64jSpW0pTNMfMOh_Qs,1854
|
|
1624
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_params.py,sha256=HPJA7i4XiktsdBIwrxCqXOYTcmzgqpuoy0FdxAxq9MU,687
|
|
1625
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_response.py,sha256=HQHjgP3ESujJhERcYGa-C48y6pc-JZfqVN3pZ7Ywlqk,762
|
|
1626
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_delete_response.py,sha256=N_jUBImFH2WUYjZwyeMXPmIhXWx2ern-n4AUrJlPDHE,762
|
|
1627
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_list_response.py,sha256=VEjI87H2ORtNqTxtG7iOXBiAcx_Ef_pSzdXj_cqIE8U,770
|
|
1628
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_retrieve_response.py,sha256=nJefIED52eRUr9D3tWkkMQHRM_HQTY9l5Z9R1WyauFg,766
|
|
1629
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_create_params.py,sha256=Ab0LtVaHMKW-CawRWJ8xYCw4nHPBn9Xkex65gWSGTp8,2184
|
|
1630
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_create_response.py,sha256=509kyso8qJaaVuUKxrJd8u4wQwOzgYNfWTKhz2Rjmd8,2490
|
|
1631
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_delete_response.py,sha256=1Rrbxt5Tvr1X5m6CwzNgIG9ZdfV2gTkPFH79VOAkQWo,2490
|
|
1632
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_list_response.py,sha256=gv0QCwZzChe3Yab2mcLIxebiHuMML6YGROjWrL_CqyI,2663
|
|
1633
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_fields_response.py,sha256=_wHHYV686ckbLxd-f_a-Pqt6JhPNcLqrow2RMpkJvp8,891
|
|
1634
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_response.py,sha256=XXbM9a8g79QrUjKwVa9lmfKugl9o_WTpcpbnJMKoaIc,2494
|
|
1635
|
+
telnyx/types/legacy/reporting/usage_reports/__init__.py,sha256=px4ehI6oj1EcKcv-M9xQ-iVhDVHXA4RdV26mWhCsDKY,1277
|
|
1636
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_create_params.py,sha256=TF885ANJECpYkJGhg88JrmRCwd0fqDi32N3lcqxboYM,906
|
|
1637
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_create_response.py,sha256=EmpA9w9qyxSWFUN__6edvavviYR07ClK24n0Bu-8pVI,1103
|
|
1638
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_delete_response.py,sha256=yEaae_25nLSlSl0aYca6w9xsYdFpDuPLdSiqAF9bGkQ,1103
|
|
1639
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_list_params.py,sha256=ZIPVrahdBfd3QnSUs4mrsaD1WzEVqpUfznXRu2GFZOY,333
|
|
1640
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_list_response.py,sha256=5nV9hQxzIZwEuLAFRtj4QDRRqZroIZAS9icd3mHaYtw,1280
|
|
1641
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_retrieve_response.py,sha256=qEsdYWTzevxZ4hzFtQmbDvWEXMlg_HE1BkSer_nTcMw,1107
|
|
1642
|
+
telnyx/types/legacy/reporting/usage_reports/number_lookup_create_params.py,sha256=nMdvZZfqCMIcsmycGmATiiPAuH230wNmlAWSfoLg9lQ,990
|
|
1643
|
+
telnyx/types/legacy/reporting/usage_reports/number_lookup_list_params.py,sha256=btLZ34d_psfdKA0MZBwbumuRk8o4MhaSAujEyhmSsbo,290
|
|
1644
|
+
telnyx/types/legacy/reporting/usage_reports/voice_create_params.py,sha256=ZzjWQ-Maes39EJ_Iel2Zd4hhlSPcSBYyJluNPNXGvmU,1199
|
|
1645
|
+
telnyx/types/legacy/reporting/usage_reports/voice_create_response.py,sha256=oqFpd2zSjeBUIR8zMGJ7dTCw5y-zSzohY5ECpi1g9Vw,1206
|
|
1646
|
+
telnyx/types/legacy/reporting/usage_reports/voice_delete_response.py,sha256=ABSDQ2hxSYmAZqY3f0Mj2gqgqiIUORJCzIIWIPfmze4,1206
|
|
1647
|
+
telnyx/types/legacy/reporting/usage_reports/voice_list_params.py,sha256=I-VQgQnwjiJatxz-CFUSLl-r3Abjrl1tyM_8gtn8gTI,325
|
|
1648
|
+
telnyx/types/legacy/reporting/usage_reports/voice_list_response.py,sha256=q3nFYYMuzhcglYYLcpyQciFUpMWLDcpP2rLYqE9by-k,1383
|
|
1649
|
+
telnyx/types/legacy/reporting/usage_reports/voice_retrieve_response.py,sha256=u35Cgl3Azo1oghL2eiNNK1YybuXQz9TnUXGvwzYLar4,1210
|
|
1568
1650
|
telnyx/types/managed_accounts/__init__.py,sha256=s53m4G7A5MA-7Plebq9kzzJSt4VoqqpfiAnyePk-2rM,363
|
|
1569
1651
|
telnyx/types/managed_accounts/action_disable_response.py,sha256=EvZGazP3Ve4MkwX1Y6a8V_RuMQh33Ghtpk0fTTx_8qM,315
|
|
1570
1652
|
telnyx/types/managed_accounts/action_enable_params.py,sha256=xbPShY1bj7XSTclowbA7-cDZnjssDCHTb3GQZsUqXbg,478
|
|
@@ -1651,7 +1733,7 @@ telnyx/types/phone_numbers/job_delete_batch_response.py,sha256=pU7r3bHrQTfZilyKs
|
|
|
1651
1733
|
telnyx/types/phone_numbers/job_list_params.py,sha256=km-cMCdyzGVSb0bBQ4qeBzW0axf3UcRydiZs9G-CxCQ,972
|
|
1652
1734
|
telnyx/types/phone_numbers/job_list_response.py,sha256=S77RROwO-b23jXNfsmP2c6XG6iQuQfm2T4YBYhLYZRk,406
|
|
1653
1735
|
telnyx/types/phone_numbers/job_retrieve_response.py,sha256=3hSWls-xCpYJCz5iTY-LzapbPBp1cAl5IlJDL88ubHg,314
|
|
1654
|
-
telnyx/types/phone_numbers/job_update_batch_params.py,sha256=
|
|
1736
|
+
telnyx/types/phone_numbers/job_update_batch_params.py,sha256=Mr0aN-RDsWn4OJULWvwCvYVDxSxGGkkI2YLR8NRCx8s,4526
|
|
1655
1737
|
telnyx/types/phone_numbers/job_update_batch_response.py,sha256=lYeM8CZH5zHjvVrlfI2OE3Y5gZ0eUqzFMuOl2XGlY40,320
|
|
1656
1738
|
telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py,sha256=4kwW_x0lIJbhR5pGAR43XWSY67JiokA-CSrRlZoQolY,753
|
|
1657
1739
|
telnyx/types/phone_numbers/job_update_emergency_settings_batch_response.py,sha256=iFRA6iIZ8Xi0NJ33v2hTLQyVNWsRNJTVFgSmD1dR7OI,354
|
|
@@ -1732,7 +1814,7 @@ telnyx/types/porting_orders/phone_number_block_list_params.py,sha256=97oRtYK1ZS4
|
|
|
1732
1814
|
telnyx/types/porting_orders/phone_number_block_list_response.py,sha256=FhkDk-GORVflJjCGbt9KOwenNEZGS-LlBp2jDrDMFF4,457
|
|
1733
1815
|
telnyx/types/porting_orders/phone_number_configuration_create_params.py,sha256=7zusgczIv8YqlDc2lmrNL9IQZcEy39UpXw7hzSR7Szo,704
|
|
1734
1816
|
telnyx/types/porting_orders/phone_number_configuration_create_response.py,sha256=jw5FJRrN4OMWFGsYedIQcalJJbBy1wUuRYrTIhxGEe4,982
|
|
1735
|
-
telnyx/types/porting_orders/phone_number_configuration_list_params.py,sha256=
|
|
1817
|
+
telnyx/types/porting_orders/phone_number_configuration_list_params.py,sha256=oFvDdsTUB7f658IgWHC4r0o_ngAeCmWCidJbeC7VyB4,1863
|
|
1736
1818
|
telnyx/types/porting_orders/phone_number_configuration_list_response.py,sha256=ZLwF-ccYFoQAg46SpkZqKuDaavlz-wUzZOwkVmqIcsI,1066
|
|
1737
1819
|
telnyx/types/porting_orders/phone_number_extension_create_params.py,sha256=F0nBFwH0o_CUSnb89oCGF3pqRqfOm9g9zhKtk-LUeCc,1485
|
|
1738
1820
|
telnyx/types/porting_orders/phone_number_extension_create_response.py,sha256=yr4EwLHA5Eylae8icT26M2Km1kSufge8wqAY1Q7jMmE,381
|
|
@@ -1818,7 +1900,7 @@ telnyx/types/shared/porting_orders_exception_type.py,sha256=xr2cnU_xZjPPylOQQL6e
|
|
|
1818
1900
|
telnyx/types/shared/room_participant.py,sha256=nmrO3YMZCIB2Rc5u8nAdNnIX7xWBmakr4OAWV_85bEA,909
|
|
1819
1901
|
telnyx/types/shared/short_code.py,sha256=oMFf1RAYve3xzPRoLzWYUfDAoYPCTkha22BZtcNcVEs,965
|
|
1820
1902
|
telnyx/types/shared/sim_card_status.py,sha256=XLSUX-M8kG643YOTwXkTGbWUwe5HRkEAxaguBajo014,1436
|
|
1821
|
-
telnyx/types/shared/simple_sim_card.py,sha256=
|
|
1903
|
+
telnyx/types/shared/simple_sim_card.py,sha256=tfzWtCCSNJMihk5dsi9n70Wcw7Abu-MK_tAS5pXNaRQ,3573
|
|
1822
1904
|
telnyx/types/shared/sub_number_order_regulatory_requirement_with_value.py,sha256=iEo0O4dFFovZJtvOjGOB2YLJfZ6o-jh3jE7uAGhIZr4,665
|
|
1823
1905
|
telnyx/types/shared_params/__init__.py,sha256=VKGipl4SSoarenbMifwUglI4K7Orej5mnjIe21W2DK4,147
|
|
1824
1906
|
telnyx/types/shared_params/sim_card_status.py,sha256=hDAOd5xAkl102wrndG1eKNdREdWTKPocJvZD4OuJQLo,248
|
|
@@ -1940,7 +2022,7 @@ telnyx/types/wireless/detail_records_report_list_params.py,sha256=cfjsh4L_8mpDkg
|
|
|
1940
2022
|
telnyx/types/wireless/detail_records_report_list_response.py,sha256=S_6nD0fm5EseRIZHnML-UN0-g8Q_0J1cXfg_eLNUev8,331
|
|
1941
2023
|
telnyx/types/wireless/detail_records_report_retrieve_response.py,sha256=f0C8z8uo_QeCyi3nSDME4f4F3vqcy7o0MpinwDIqe_s,327
|
|
1942
2024
|
telnyx/types/wireless/wdr_report.py,sha256=bxRr-dc_IW6D0E3i_PUHK-bbu9w114Qql1uoJ_znxEE,1068
|
|
1943
|
-
telnyx-3.
|
|
1944
|
-
telnyx-3.
|
|
1945
|
-
telnyx-3.
|
|
1946
|
-
telnyx-3.
|
|
2025
|
+
telnyx-3.7.0a0.dist-info/METADATA,sha256=LR5aupeVzO6T9G0aBq0MyyB235ycN0s2RgbyOdwaWk0,15544
|
|
2026
|
+
telnyx-3.7.0a0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
2027
|
+
telnyx-3.7.0a0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
|
|
2028
|
+
telnyx-3.7.0a0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|