telnyx 3.0.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/__init__.py +92 -0
- telnyx/_base_client.py +1995 -0
- telnyx/_client.py +3220 -0
- telnyx/_compat.py +219 -0
- telnyx/_constants.py +14 -0
- telnyx/_exceptions.py +108 -0
- telnyx/_files.py +123 -0
- telnyx/_models.py +835 -0
- telnyx/_qs.py +150 -0
- telnyx/_resource.py +43 -0
- telnyx/_response.py +830 -0
- telnyx/_streaming.py +333 -0
- telnyx/_types.py +260 -0
- telnyx/_utils/__init__.py +64 -0
- telnyx/_utils/_compat.py +45 -0
- telnyx/_utils/_datetime_parse.py +136 -0
- telnyx/_utils/_logs.py +25 -0
- telnyx/_utils/_proxy.py +65 -0
- telnyx/_utils/_reflection.py +42 -0
- telnyx/_utils/_resources_proxy.py +24 -0
- telnyx/_utils/_streams.py +12 -0
- telnyx/_utils/_sync.py +86 -0
- telnyx/_utils/_transform.py +457 -0
- telnyx/_utils/_typing.py +156 -0
- telnyx/_utils/_utils.py +421 -0
- telnyx/_version.py +4 -0
- telnyx/lib/.keep +4 -0
- telnyx/py.typed +0 -0
- telnyx/resources/__init__.py +2122 -0
- telnyx/resources/access_ip_address.py +452 -0
- telnyx/resources/access_ip_ranges.py +370 -0
- telnyx/resources/actions/__init__.py +47 -0
- telnyx/resources/actions/actions.py +134 -0
- telnyx/resources/actions/purchase.py +231 -0
- telnyx/resources/actions/register.py +207 -0
- telnyx/resources/addresses/__init__.py +33 -0
- telnyx/resources/addresses/actions.py +314 -0
- telnyx/resources/addresses/addresses.py +658 -0
- telnyx/resources/advanced_orders.py +459 -0
- telnyx/resources/ai/__init__.py +117 -0
- telnyx/resources/ai/ai.py +500 -0
- telnyx/resources/ai/assistants/__init__.py +89 -0
- telnyx/resources/ai/assistants/assistants.py +1313 -0
- telnyx/resources/ai/assistants/canary_deploys.py +448 -0
- telnyx/resources/ai/assistants/scheduled_events.py +534 -0
- telnyx/resources/ai/assistants/tests/__init__.py +47 -0
- telnyx/resources/ai/assistants/tests/runs.py +380 -0
- telnyx/resources/ai/assistants/tests/test_suites/__init__.py +33 -0
- telnyx/resources/ai/assistants/tests/test_suites/runs.py +304 -0
- telnyx/resources/ai/assistants/tests/test_suites/test_suites.py +173 -0
- telnyx/resources/ai/assistants/tests/tests.py +759 -0
- telnyx/resources/ai/assistants/tools.py +199 -0
- telnyx/resources/ai/assistants/versions.py +672 -0
- telnyx/resources/ai/audio.py +248 -0
- telnyx/resources/ai/chat.py +409 -0
- telnyx/resources/ai/clusters.py +595 -0
- telnyx/resources/ai/conversations/__init__.py +61 -0
- telnyx/resources/ai/conversations/conversations.py +947 -0
- telnyx/resources/ai/conversations/insight_groups/__init__.py +33 -0
- telnyx/resources/ai/conversations/insight_groups/insight_groups.py +580 -0
- telnyx/resources/ai/conversations/insight_groups/insights.py +268 -0
- telnyx/resources/ai/conversations/insights.py +554 -0
- telnyx/resources/ai/conversations/messages.py +165 -0
- telnyx/resources/ai/embeddings/__init__.py +33 -0
- telnyx/resources/ai/embeddings/buckets.py +298 -0
- telnyx/resources/ai/embeddings/embeddings.py +709 -0
- telnyx/resources/ai/fine_tuning/__init__.py +33 -0
- telnyx/resources/ai/fine_tuning/fine_tuning.py +102 -0
- telnyx/resources/ai/fine_tuning/jobs.py +408 -0
- telnyx/resources/audit_events.py +211 -0
- telnyx/resources/authentication_providers.py +666 -0
- telnyx/resources/available_phone_number_blocks.py +181 -0
- telnyx/resources/available_phone_numbers.py +187 -0
- telnyx/resources/balance.py +135 -0
- telnyx/resources/billing_groups.py +501 -0
- telnyx/resources/brand/__init__.py +33 -0
- telnyx/resources/brand/brand.py +1316 -0
- telnyx/resources/brand/external_vetting.py +389 -0
- telnyx/resources/bulk_sim_card_actions.py +288 -0
- telnyx/resources/bundle_pricing/__init__.py +47 -0
- telnyx/resources/bundle_pricing/billing_bundles.py +296 -0
- telnyx/resources/bundle_pricing/bundle_pricing.py +134 -0
- telnyx/resources/bundle_pricing/user_bundles.py +686 -0
- telnyx/resources/call_control_applications.py +808 -0
- telnyx/resources/call_events.py +213 -0
- telnyx/resources/calls/__init__.py +33 -0
- telnyx/resources/calls/actions.py +7059 -0
- telnyx/resources/calls/calls.py +866 -0
- telnyx/resources/campaign/__init__.py +47 -0
- telnyx/resources/campaign/campaign.py +1064 -0
- telnyx/resources/campaign/osr.py +162 -0
- telnyx/resources/campaign/usecase.py +169 -0
- telnyx/resources/campaign_builder/__init__.py +33 -0
- telnyx/resources/campaign_builder/brand.py +171 -0
- telnyx/resources/campaign_builder/campaign_builder.py +523 -0
- telnyx/resources/channel_zones.py +282 -0
- telnyx/resources/charges_breakdown.py +211 -0
- telnyx/resources/charges_summary.py +202 -0
- telnyx/resources/comments.py +432 -0
- telnyx/resources/conferences/__init__.py +33 -0
- telnyx/resources/conferences/actions.py +2012 -0
- telnyx/resources/conferences/conferences.py +666 -0
- telnyx/resources/connections.py +423 -0
- telnyx/resources/country_coverage.py +214 -0
- telnyx/resources/credential_connections/__init__.py +33 -0
- telnyx/resources/credential_connections/actions.py +169 -0
- telnyx/resources/credential_connections/credential_connections.py +995 -0
- telnyx/resources/custom_storage_credentials.py +441 -0
- telnyx/resources/customer_service_records.py +486 -0
- telnyx/resources/detail_records.py +205 -0
- telnyx/resources/dialogflow_connections.py +514 -0
- telnyx/resources/document_links.py +197 -0
- telnyx/resources/documents.py +885 -0
- telnyx/resources/dynamic_emergency_addresses.py +482 -0
- telnyx/resources/dynamic_emergency_endpoints.py +452 -0
- telnyx/resources/enum.py +210 -0
- telnyx/resources/external_connections/__init__.py +89 -0
- telnyx/resources/external_connections/civic_addresses.py +268 -0
- telnyx/resources/external_connections/external_connections.py +928 -0
- telnyx/resources/external_connections/log_messages.py +355 -0
- telnyx/resources/external_connections/phone_numbers.py +387 -0
- telnyx/resources/external_connections/releases.py +292 -0
- telnyx/resources/external_connections/uploads.py +669 -0
- telnyx/resources/fax_applications.py +744 -0
- telnyx/resources/faxes/__init__.py +33 -0
- telnyx/resources/faxes/actions.py +244 -0
- telnyx/resources/faxes/faxes.py +648 -0
- telnyx/resources/fqdn_connections.py +921 -0
- telnyx/resources/fqdns.py +605 -0
- telnyx/resources/global_ip_allowed_ports.py +135 -0
- telnyx/resources/global_ip_assignment_health.py +183 -0
- telnyx/resources/global_ip_assignments.py +529 -0
- telnyx/resources/global_ip_assignments_usage.py +183 -0
- telnyx/resources/global_ip_health_check_types.py +135 -0
- telnyx/resources/global_ip_health_checks.py +444 -0
- telnyx/resources/global_ip_latency.py +181 -0
- telnyx/resources/global_ip_protocols.py +135 -0
- telnyx/resources/global_ip_usage.py +179 -0
- telnyx/resources/global_ips.py +442 -0
- telnyx/resources/inbound_channels.py +240 -0
- telnyx/resources/integration_secrets.py +400 -0
- telnyx/resources/inventory_coverage.py +185 -0
- telnyx/resources/invoices.py +288 -0
- telnyx/resources/ip_connections.py +899 -0
- telnyx/resources/ips.py +575 -0
- telnyx/resources/ledger_billing_group_reports.py +264 -0
- 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/list.py +214 -0
- telnyx/resources/managed_accounts/__init__.py +33 -0
- telnyx/resources/managed_accounts/actions.py +266 -0
- telnyx/resources/managed_accounts/managed_accounts.py +773 -0
- telnyx/resources/media.py +678 -0
- telnyx/resources/messages/__init__.py +33 -0
- telnyx/resources/messages/messages.py +1425 -0
- telnyx/resources/messages/rcs.py +199 -0
- telnyx/resources/messaging/__init__.py +33 -0
- telnyx/resources/messaging/messaging.py +102 -0
- telnyx/resources/messaging/rcs/__init__.py +33 -0
- telnyx/resources/messaging/rcs/agents.py +368 -0
- telnyx/resources/messaging/rcs/rcs.py +387 -0
- telnyx/resources/messaging_hosted_number_orders/__init__.py +33 -0
- telnyx/resources/messaging_hosted_number_orders/actions.py +207 -0
- telnyx/resources/messaging_hosted_number_orders/messaging_hosted_number_orders.py +766 -0
- telnyx/resources/messaging_hosted_numbers.py +163 -0
- telnyx/resources/messaging_numbers_bulk_updates.py +276 -0
- telnyx/resources/messaging_optouts.py +217 -0
- telnyx/resources/messaging_profiles/__init__.py +33 -0
- telnyx/resources/messaging_profiles/autoresp_configs.py +598 -0
- telnyx/resources/messaging_profiles/messaging_profiles.py +1048 -0
- telnyx/resources/messaging_tollfree/__init__.py +33 -0
- telnyx/resources/messaging_tollfree/messaging_tollfree.py +102 -0
- telnyx/resources/messaging_tollfree/verification/__init__.py +33 -0
- telnyx/resources/messaging_tollfree/verification/requests.py +922 -0
- telnyx/resources/messaging_tollfree/verification/verification.py +102 -0
- telnyx/resources/messaging_url_domains.py +177 -0
- telnyx/resources/messsages.py +224 -0
- telnyx/resources/mobile_network_operators.py +207 -0
- telnyx/resources/mobile_push_credentials.py +579 -0
- telnyx/resources/network_coverage.py +211 -0
- telnyx/resources/networks/__init__.py +33 -0
- telnyx/resources/networks/default_gateway.py +335 -0
- telnyx/resources/networks/networks.py +666 -0
- telnyx/resources/notification_channels.py +585 -0
- telnyx/resources/notification_event_conditions.py +201 -0
- telnyx/resources/notification_events.py +177 -0
- telnyx/resources/notification_profiles.py +511 -0
- telnyx/resources/notification_settings.py +472 -0
- telnyx/resources/number_block_orders.py +401 -0
- telnyx/resources/number_lookup.py +183 -0
- telnyx/resources/number_order_phone_numbers.py +461 -0
- telnyx/resources/number_orders.py +499 -0
- telnyx/resources/number_reservations/__init__.py +33 -0
- telnyx/resources/number_reservations/actions.py +167 -0
- telnyx/resources/number_reservations/number_reservations.py +410 -0
- telnyx/resources/numbers_features.py +167 -0
- telnyx/resources/oauth.py +855 -0
- telnyx/resources/oauth_clients.py +711 -0
- telnyx/resources/oauth_grants.py +349 -0
- telnyx/resources/operator_connect/__init__.py +33 -0
- telnyx/resources/operator_connect/actions.py +147 -0
- telnyx/resources/operator_connect/operator_connect.py +102 -0
- telnyx/resources/ota_updates.py +276 -0
- telnyx/resources/outbound_voice_profiles.py +821 -0
- telnyx/resources/partner_campaigns.py +630 -0
- telnyx/resources/payment/__init__.py +33 -0
- telnyx/resources/payment/auto_recharge_prefs.py +260 -0
- telnyx/resources/payment/payment.py +102 -0
- telnyx/resources/phone_number_assignment_by_profile.py +416 -0
- telnyx/resources/phone_number_blocks/__init__.py +33 -0
- telnyx/resources/phone_number_blocks/jobs.py +377 -0
- telnyx/resources/phone_number_blocks/phone_number_blocks.py +102 -0
- telnyx/resources/phone_number_campaigns.py +576 -0
- telnyx/resources/phone_numbers/__init__.py +103 -0
- telnyx/resources/phone_numbers/actions.py +383 -0
- telnyx/resources/phone_numbers/csv_downloads.py +375 -0
- telnyx/resources/phone_numbers/jobs.py +698 -0
- telnyx/resources/phone_numbers/messaging.py +379 -0
- telnyx/resources/phone_numbers/phone_numbers.py +853 -0
- telnyx/resources/phone_numbers/voice.py +468 -0
- telnyx/resources/phone_numbers/voicemail.py +375 -0
- telnyx/resources/phone_numbers_regulatory_requirements.py +185 -0
- telnyx/resources/portability_checks.py +171 -0
- telnyx/resources/porting/__init__.py +61 -0
- telnyx/resources/porting/events.py +354 -0
- telnyx/resources/porting/loa_configurations.py +815 -0
- telnyx/resources/porting/porting.py +231 -0
- telnyx/resources/porting/reports.py +378 -0
- telnyx/resources/porting_orders/__init__.py +159 -0
- telnyx/resources/porting_orders/action_requirements.py +308 -0
- telnyx/resources/porting_orders/actions.py +438 -0
- telnyx/resources/porting_orders/activation_jobs.py +366 -0
- telnyx/resources/porting_orders/additional_documents.py +392 -0
- telnyx/resources/porting_orders/associated_phone_numbers.py +411 -0
- telnyx/resources/porting_orders/comments.py +264 -0
- telnyx/resources/porting_orders/phone_number_blocks.py +405 -0
- telnyx/resources/porting_orders/phone_number_configurations.py +294 -0
- telnyx/resources/porting_orders/phone_number_extensions.py +413 -0
- telnyx/resources/porting_orders/porting_orders.py +1450 -0
- telnyx/resources/porting_orders/verification_codes.py +399 -0
- telnyx/resources/porting_phone_numbers.py +197 -0
- telnyx/resources/portouts/__init__.py +75 -0
- telnyx/resources/portouts/comments.py +252 -0
- telnyx/resources/portouts/events.py +356 -0
- telnyx/resources/portouts/portouts.py +624 -0
- telnyx/resources/portouts/reports.py +378 -0
- telnyx/resources/portouts/supporting_documents.py +258 -0
- telnyx/resources/private_wireless_gateways.py +502 -0
- telnyx/resources/public_internet_gateways.py +458 -0
- telnyx/resources/queues/__init__.py +33 -0
- telnyx/resources/queues/calls.py +266 -0
- telnyx/resources/queues/queues.py +195 -0
- telnyx/resources/recording_transcriptions.py +301 -0
- telnyx/resources/recordings/__init__.py +33 -0
- telnyx/resources/recordings/actions.py +168 -0
- telnyx/resources/recordings/recordings.py +391 -0
- telnyx/resources/regions.py +135 -0
- telnyx/resources/regulatory_requirements.py +183 -0
- telnyx/resources/reports/__init__.py +47 -0
- telnyx/resources/reports/cdr_usage_reports.py +205 -0
- telnyx/resources/reports/mdr_usage_reports.py +561 -0
- telnyx/resources/reports/reports.py +504 -0
- telnyx/resources/requirement_groups.py +625 -0
- telnyx/resources/requirement_types.py +277 -0
- telnyx/resources/requirements.py +315 -0
- telnyx/resources/room_compositions.py +516 -0
- telnyx/resources/room_participants.py +288 -0
- telnyx/resources/room_recordings.py +483 -0
- telnyx/resources/rooms/__init__.py +47 -0
- telnyx/resources/rooms/actions.py +310 -0
- telnyx/resources/rooms/rooms.py +736 -0
- telnyx/resources/rooms/sessions/__init__.py +33 -0
- telnyx/resources/rooms/sessions/actions.py +489 -0
- telnyx/resources/rooms/sessions/sessions.py +605 -0
- telnyx/resources/seti.py +179 -0
- telnyx/resources/short_codes.py +371 -0
- telnyx/resources/sim_card_data_usage_notifications.py +569 -0
- telnyx/resources/sim_card_groups/__init__.py +33 -0
- telnyx/resources/sim_card_groups/actions.py +690 -0
- telnyx/resources/sim_card_groups/sim_card_groups.py +632 -0
- telnyx/resources/sim_card_order_preview.py +187 -0
- telnyx/resources/sim_card_orders.py +381 -0
- telnyx/resources/sim_cards/__init__.py +33 -0
- telnyx/resources/sim_cards/actions.py +932 -0
- telnyx/resources/sim_cards/sim_cards.py +970 -0
- telnyx/resources/siprec_connectors.py +481 -0
- telnyx/resources/storage/__init__.py +61 -0
- telnyx/resources/storage/buckets/__init__.py +47 -0
- telnyx/resources/storage/buckets/buckets.py +257 -0
- telnyx/resources/storage/buckets/ssl_certificate.py +365 -0
- telnyx/resources/storage/buckets/usage.py +266 -0
- telnyx/resources/storage/migration_sources.py +412 -0
- telnyx/resources/storage/migrations/__init__.py +33 -0
- telnyx/resources/storage/migrations/actions.py +163 -0
- telnyx/resources/storage/migrations/migrations.py +371 -0
- telnyx/resources/storage/storage.py +231 -0
- telnyx/resources/sub_number_orders.py +561 -0
- telnyx/resources/sub_number_orders_report.py +388 -0
- telnyx/resources/telephony_credentials.py +665 -0
- telnyx/resources/texml/__init__.py +47 -0
- telnyx/resources/texml/accounts/__init__.py +75 -0
- telnyx/resources/texml/accounts/accounts.py +453 -0
- telnyx/resources/texml/accounts/calls/__init__.py +75 -0
- telnyx/resources/texml/accounts/calls/calls.py +1412 -0
- telnyx/resources/texml/accounts/calls/recordings.py +187 -0
- telnyx/resources/texml/accounts/calls/recordings_json.py +334 -0
- telnyx/resources/texml/accounts/calls/siprec.py +191 -0
- telnyx/resources/texml/accounts/calls/streams.py +189 -0
- telnyx/resources/texml/accounts/conferences/__init__.py +33 -0
- telnyx/resources/texml/accounts/conferences/conferences.py +659 -0
- telnyx/resources/texml/accounts/conferences/participants.py +1106 -0
- telnyx/resources/texml/accounts/recordings/__init__.py +33 -0
- telnyx/resources/texml/accounts/recordings/json.py +255 -0
- telnyx/resources/texml/accounts/recordings/recordings.py +102 -0
- telnyx/resources/texml/accounts/transcriptions/__init__.py +33 -0
- telnyx/resources/texml/accounts/transcriptions/json.py +265 -0
- telnyx/resources/texml/accounts/transcriptions/transcriptions.py +102 -0
- telnyx/resources/texml/calls.py +632 -0
- telnyx/resources/texml/texml.py +259 -0
- telnyx/resources/texml_applications.py +807 -0
- telnyx/resources/text_to_speech.py +327 -0
- telnyx/resources/usage_reports.py +388 -0
- telnyx/resources/user_addresses.py +539 -0
- telnyx/resources/user_tags.py +177 -0
- telnyx/resources/verifications/__init__.py +47 -0
- telnyx/resources/verifications/actions.py +195 -0
- telnyx/resources/verifications/by_phone_number/__init__.py +33 -0
- telnyx/resources/verifications/by_phone_number/actions.py +195 -0
- telnyx/resources/verifications/by_phone_number/by_phone_number.py +199 -0
- telnyx/resources/verifications/verifications.py +580 -0
- telnyx/resources/verified_numbers/__init__.py +33 -0
- telnyx/resources/verified_numbers/actions.py +179 -0
- telnyx/resources/verified_numbers/verified_numbers.py +469 -0
- telnyx/resources/verify_profiles.py +809 -0
- telnyx/resources/virtual_cross_connects.py +773 -0
- telnyx/resources/virtual_cross_connects_coverage.py +215 -0
- telnyx/resources/webhook_deliveries.py +282 -0
- telnyx/resources/webhooks.py +34 -0
- telnyx/resources/well_known.py +198 -0
- telnyx/resources/wireguard_interfaces.py +470 -0
- telnyx/resources/wireguard_peers.py +631 -0
- telnyx/resources/wireless/__init__.py +33 -0
- telnyx/resources/wireless/detail_records_reports.py +450 -0
- telnyx/resources/wireless/wireless.py +211 -0
- telnyx/resources/wireless_blocklist_values.py +181 -0
- telnyx/resources/wireless_blocklists.py +589 -0
- telnyx/types/__init__.py +1378 -0
- telnyx/types/access_ip_address_create_params.py +13 -0
- telnyx/types/access_ip_address_list_params.py +63 -0
- telnyx/types/access_ip_address_list_response.py +24 -0
- telnyx/types/access_ip_address_response.py +28 -0
- telnyx/types/access_ip_range.py +26 -0
- telnyx/types/access_ip_range_create_params.py +13 -0
- telnyx/types/access_ip_range_list_params.py +83 -0
- telnyx/types/access_ip_range_list_response.py +24 -0
- telnyx/types/actions/__init__.py +8 -0
- telnyx/types/actions/purchase_create_params.py +37 -0
- telnyx/types/actions/purchase_create_response.py +35 -0
- telnyx/types/actions/register_create_params.py +26 -0
- telnyx/types/actions/register_create_response.py +35 -0
- telnyx/types/address.py +102 -0
- telnyx/types/address_create_params.py +90 -0
- telnyx/types/address_create_response.py +12 -0
- telnyx/types/address_delete_response.py +12 -0
- telnyx/types/address_list_params.py +106 -0
- telnyx/types/address_list_response.py +15 -0
- telnyx/types/address_retrieve_response.py +12 -0
- telnyx/types/addresses/__init__.py +8 -0
- telnyx/types/addresses/action_accept_suggestions_params.py +14 -0
- telnyx/types/addresses/action_accept_suggestions_response.py +22 -0
- telnyx/types/addresses/action_validate_params.py +36 -0
- telnyx/types/addresses/action_validate_response.py +64 -0
- telnyx/types/advanced_order_create_params.py +27 -0
- telnyx/types/advanced_order_update_params.py +27 -0
- telnyx/types/ai/__init__.py +88 -0
- telnyx/types/ai/assistant_chat_params.py +18 -0
- telnyx/types/ai/assistant_chat_response.py +10 -0
- telnyx/types/ai/assistant_clone_response.py +92 -0
- telnyx/types/ai/assistant_create_params.py +86 -0
- telnyx/types/ai/assistant_create_response.py +92 -0
- telnyx/types/ai/assistant_delete_response.py +13 -0
- telnyx/types/ai/assistant_get_texml_response.py +7 -0
- telnyx/types/ai/assistant_import_params.py +19 -0
- telnyx/types/ai/assistant_param.py +108 -0
- telnyx/types/ai/assistant_retrieve_params.py +19 -0
- telnyx/types/ai/assistant_retrieve_response.py +92 -0
- telnyx/types/ai/assistant_tool.py +122 -0
- telnyx/types/ai/assistant_tool_param.py +123 -0
- telnyx/types/ai/assistant_update_params.py +92 -0
- telnyx/types/ai/assistants/__init__.py +30 -0
- telnyx/types/ai/assistants/assistant_test.py +52 -0
- telnyx/types/ai/assistants/canary_deploy_create_params.py +15 -0
- telnyx/types/ai/assistants/canary_deploy_response.py +19 -0
- telnyx/types/ai/assistants/canary_deploy_update_params.py +15 -0
- telnyx/types/ai/assistants/conversation_channel_type.py +7 -0
- telnyx/types/ai/assistants/event_status.py +7 -0
- telnyx/types/ai/assistants/scheduled_event_create_params.py +35 -0
- telnyx/types/ai/assistants/scheduled_event_list_params.py +32 -0
- telnyx/types/ai/assistants/scheduled_event_list_response.py +19 -0
- telnyx/types/ai/assistants/scheduled_event_response.py +11 -0
- telnyx/types/ai/assistants/scheduled_phone_call_event_response.py +38 -0
- telnyx/types/ai/assistants/scheduled_sms_event_response.py +38 -0
- telnyx/types/ai/assistants/telnyx_conversation_channel.py +7 -0
- telnyx/types/ai/assistants/test_create_params.py +72 -0
- telnyx/types/ai/assistants/test_list_params.py +32 -0
- telnyx/types/ai/assistants/test_list_response.py +18 -0
- telnyx/types/ai/assistants/test_update_params.py +47 -0
- telnyx/types/ai/assistants/tests/__init__.py +9 -0
- telnyx/types/ai/assistants/tests/run_list_params.py +26 -0
- telnyx/types/ai/assistants/tests/run_trigger_params.py +16 -0
- telnyx/types/ai/assistants/tests/test_run_response.py +76 -0
- telnyx/types/ai/assistants/tests/test_status.py +7 -0
- telnyx/types/ai/assistants/tests/test_suite_list_response.py +13 -0
- telnyx/types/ai/assistants/tests/test_suites/__init__.py +9 -0
- telnyx/types/ai/assistants/tests/test_suites/meta.py +15 -0
- telnyx/types/ai/assistants/tests/test_suites/paginated_test_run_list.py +17 -0
- telnyx/types/ai/assistants/tests/test_suites/run_list_params.py +29 -0
- telnyx/types/ai/assistants/tests/test_suites/run_trigger_params.py +16 -0
- telnyx/types/ai/assistants/tests/test_suites/run_trigger_response.py +10 -0
- telnyx/types/ai/assistants/tool_test_params.py +18 -0
- telnyx/types/ai/assistants/tool_test_response.py +24 -0
- telnyx/types/ai/assistants/version_config.py +13 -0
- telnyx/types/ai/assistants/version_config_param.py +15 -0
- telnyx/types/ai/assistants/version_promote_response.py +92 -0
- telnyx/types/ai/assistants/version_retrieve_params.py +13 -0
- telnyx/types/ai/assistants/version_retrieve_response.py +92 -0
- telnyx/types/ai/assistants/version_update_params.py +88 -0
- telnyx/types/ai/assistants/version_update_response.py +92 -0
- telnyx/types/ai/assistants_list.py +96 -0
- telnyx/types/ai/audio_transcribe_params.py +46 -0
- telnyx/types/ai/audio_transcribe_response.py +38 -0
- telnyx/types/ai/background_task_status.py +7 -0
- telnyx/types/ai/chat_create_completion_params.py +185 -0
- telnyx/types/ai/cluster_compute_params.py +38 -0
- telnyx/types/ai/cluster_compute_response.py +13 -0
- telnyx/types/ai/cluster_fetch_graph_params.py +11 -0
- telnyx/types/ai/cluster_list_params.py +21 -0
- telnyx/types/ai/cluster_list_response.py +32 -0
- telnyx/types/ai/cluster_retrieve_params.py +18 -0
- telnyx/types/ai/cluster_retrieve_response.py +25 -0
- telnyx/types/ai/conversation.py +27 -0
- telnyx/types/ai/conversation_add_message_params.py +30 -0
- telnyx/types/ai/conversation_create_params.py +15 -0
- telnyx/types/ai/conversation_list_params.py +62 -0
- telnyx/types/ai/conversation_list_response.py +12 -0
- telnyx/types/ai/conversation_retrieve_conversations_insights_response.py +41 -0
- telnyx/types/ai/conversation_retrieve_response.py +12 -0
- telnyx/types/ai/conversation_update_params.py +13 -0
- telnyx/types/ai/conversation_update_response.py +12 -0
- telnyx/types/ai/conversations/__init__.py +21 -0
- telnyx/types/ai/conversations/insight_create_params.py +19 -0
- telnyx/types/ai/conversations/insight_group_insight_groups_params.py +15 -0
- telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_params.py +23 -0
- telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_response.py +15 -0
- telnyx/types/ai/conversations/insight_group_update_params.py +15 -0
- telnyx/types/ai/conversations/insight_groups/__init__.py +3 -0
- telnyx/types/ai/conversations/insight_list_params.py +23 -0
- telnyx/types/ai/conversations/insight_list_response.py +15 -0
- telnyx/types/ai/conversations/insight_template.py +26 -0
- telnyx/types/ai/conversations/insight_template_detail.py +10 -0
- telnyx/types/ai/conversations/insight_template_group.py +23 -0
- telnyx/types/ai/conversations/insight_template_group_detail.py +10 -0
- telnyx/types/ai/conversations/insight_update_params.py +18 -0
- telnyx/types/ai/conversations/message_list_response.py +56 -0
- telnyx/types/ai/embedding_create_params.py +21 -0
- telnyx/types/ai/embedding_list_params.py +14 -0
- telnyx/types/ai/embedding_list_response.py +30 -0
- telnyx/types/ai/embedding_response.py +25 -0
- telnyx/types/ai/embedding_retrieve_response.py +25 -0
- telnyx/types/ai/embedding_similarity_search_params.py +15 -0
- telnyx/types/ai/embedding_similarity_search_response.py +33 -0
- telnyx/types/ai/embedding_url_params.py +15 -0
- telnyx/types/ai/embeddings/__init__.py +6 -0
- telnyx/types/ai/embeddings/bucket_list_response.py +15 -0
- telnyx/types/ai/embeddings/bucket_retrieve_response.py +26 -0
- telnyx/types/ai/enabled_features.py +7 -0
- telnyx/types/ai/fine_tuning/__init__.py +7 -0
- telnyx/types/ai/fine_tuning/fine_tuning_job.py +51 -0
- telnyx/types/ai/fine_tuning/job_create_params.py +31 -0
- telnyx/types/ai/fine_tuning/job_list_response.py +12 -0
- telnyx/types/ai/hangup_tool.py +14 -0
- telnyx/types/ai/hangup_tool_param.py +15 -0
- telnyx/types/ai/hangup_tool_params.py +12 -0
- telnyx/types/ai/hangup_tool_params_param.py +12 -0
- telnyx/types/ai/import_metadata.py +16 -0
- telnyx/types/ai/inference_embedding_bucket_ids.py +19 -0
- telnyx/types/ai/inference_embedding_bucket_ids_param.py +21 -0
- telnyx/types/ai/inference_embedding_transfer_tool_params.py +43 -0
- telnyx/types/ai/inference_embedding_transfer_tool_params_param.py +50 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params.py +101 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +103 -0
- telnyx/types/ai/insight_settings.py +16 -0
- telnyx/types/ai/insight_settings_param.py +16 -0
- telnyx/types/ai/messaging_settings.py +21 -0
- telnyx/types/ai/messaging_settings_param.py +21 -0
- telnyx/types/ai/privacy_settings.py +19 -0
- telnyx/types/ai/privacy_settings_param.py +19 -0
- telnyx/types/ai/recursive_cluster.py +34 -0
- telnyx/types/ai/retrieval_tool.py +14 -0
- telnyx/types/ai/retrieval_tool_param.py +15 -0
- telnyx/types/ai/telephony_settings.py +22 -0
- telnyx/types/ai/telephony_settings_param.py +22 -0
- telnyx/types/ai/transcription_settings.py +26 -0
- telnyx/types/ai/transcription_settings_param.py +26 -0
- telnyx/types/ai/transfer_tool.py +14 -0
- telnyx/types/ai/transfer_tool_param.py +15 -0
- telnyx/types/ai/voice_settings.py +36 -0
- telnyx/types/ai/voice_settings_param.py +36 -0
- telnyx/types/ai/webhook_tool.py +14 -0
- telnyx/types/ai/webhook_tool_param.py +15 -0
- telnyx/types/ai_retrieve_models_response.py +23 -0
- telnyx/types/ai_summarize_params.py +18 -0
- telnyx/types/ai_summarize_response.py +13 -0
- telnyx/types/alt_business_id_type.py +7 -0
- telnyx/types/anchorsite_override.py +18 -0
- telnyx/types/api_error.py +27 -0
- telnyx/types/audit_event_list_params.py +44 -0
- telnyx/types/audit_event_list_response.py +82 -0
- telnyx/types/authentication_provider.py +71 -0
- telnyx/types/authentication_provider_create_params.py +32 -0
- telnyx/types/authentication_provider_create_response.py +12 -0
- telnyx/types/authentication_provider_delete_response.py +12 -0
- telnyx/types/authentication_provider_list_params.py +51 -0
- telnyx/types/authentication_provider_list_response.py +15 -0
- telnyx/types/authentication_provider_retrieve_response.py +12 -0
- telnyx/types/authentication_provider_update_params.py +32 -0
- telnyx/types/authentication_provider_update_response.py +12 -0
- telnyx/types/available_phone_number_block_list_params.py +30 -0
- telnyx/types/available_phone_number_block_list_response.py +60 -0
- telnyx/types/available_phone_number_list_params.py +92 -0
- telnyx/types/available_phone_number_list_response.py +75 -0
- telnyx/types/available_service.py +7 -0
- telnyx/types/azure_configuration_data.py +18 -0
- telnyx/types/azure_configuration_data_param.py +18 -0
- telnyx/types/balance_retrieve_response.py +32 -0
- telnyx/types/billing_group.py +32 -0
- telnyx/types/billing_group_create_params.py +12 -0
- telnyx/types/billing_group_create_response.py +12 -0
- telnyx/types/billing_group_delete_response.py +12 -0
- telnyx/types/billing_group_list_params.py +23 -0
- telnyx/types/billing_group_list_response.py +15 -0
- telnyx/types/billing_group_retrieve_response.py +12 -0
- telnyx/types/billing_group_update_params.py +12 -0
- telnyx/types/billing_group_update_response.py +12 -0
- telnyx/types/brand/__init__.py +7 -0
- telnyx/types/brand/external_vetting_import_params.py +23 -0
- telnyx/types/brand/external_vetting_import_response.py +43 -0
- telnyx/types/brand/external_vetting_order_params.py +17 -0
- telnyx/types/brand_create_params.py +91 -0
- telnyx/types/brand_get_feedback_response.py +31 -0
- telnyx/types/brand_identity_status.py +7 -0
- telnyx/types/brand_list_params.py +51 -0
- telnyx/types/brand_list_response.py +61 -0
- telnyx/types/brand_retrieve_response.py +14 -0
- telnyx/types/brand_update_params.py +96 -0
- telnyx/types/bulk_sim_card_action_list_params.py +20 -0
- telnyx/types/bulk_sim_card_action_list_response.py +47 -0
- telnyx/types/bulk_sim_card_action_retrieve_response.py +44 -0
- telnyx/types/bundle_pricing/__init__.py +20 -0
- telnyx/types/bundle_pricing/billing_bundle_list_params.py +43 -0
- telnyx/types/bundle_pricing/billing_bundle_list_response.py +15 -0
- telnyx/types/bundle_pricing/billing_bundle_retrieve_response.py +68 -0
- telnyx/types/bundle_pricing/billing_bundle_summary.py +36 -0
- telnyx/types/bundle_pricing/pagination_response.py +19 -0
- telnyx/types/bundle_pricing/user_bundle.py +31 -0
- telnyx/types/bundle_pricing/user_bundle_create_params.py +29 -0
- telnyx/types/bundle_pricing/user_bundle_create_response.py +12 -0
- telnyx/types/bundle_pricing/user_bundle_deactivate_response.py +10 -0
- telnyx/types/bundle_pricing/user_bundle_list_params.py +43 -0
- telnyx/types/bundle_pricing/user_bundle_list_resources_response.py +12 -0
- telnyx/types/bundle_pricing/user_bundle_list_response.py +15 -0
- telnyx/types/bundle_pricing/user_bundle_list_unused_params.py +29 -0
- telnyx/types/bundle_pricing/user_bundle_list_unused_response.py +19 -0
- telnyx/types/bundle_pricing/user_bundle_resource.py +25 -0
- telnyx/types/bundle_pricing/user_bundle_retrieve_response.py +10 -0
- telnyx/types/call_ai_gather_ended_webhook_event.py +78 -0
- telnyx/types/call_ai_gather_message_history_updated_webhook_event.py +69 -0
- telnyx/types/call_ai_gather_partial_results_webhook_event.py +75 -0
- telnyx/types/call_answered_webhook_event.py +75 -0
- telnyx/types/call_bridged_webhook_event.py +58 -0
- telnyx/types/call_control_application.py +80 -0
- telnyx/types/call_control_application_create_params.py +70 -0
- telnyx/types/call_control_application_create_response.py +12 -0
- telnyx/types/call_control_application_delete_response.py +12 -0
- telnyx/types/call_control_application_inbound.py +39 -0
- telnyx/types/call_control_application_inbound_param.py +38 -0
- telnyx/types/call_control_application_list_params.py +141 -0
- telnyx/types/call_control_application_list_response.py +15 -0
- telnyx/types/call_control_application_outbound.py +18 -0
- telnyx/types/call_control_application_outbound_param.py +18 -0
- telnyx/types/call_control_application_retrieve_response.py +12 -0
- telnyx/types/call_control_application_update_params.py +74 -0
- telnyx/types/call_control_application_update_response.py +12 -0
- telnyx/types/call_conversation_ended_webhook_event.py +84 -0
- telnyx/types/call_conversation_insights_generated_webhook_event.py +67 -0
- telnyx/types/call_dial_params.py +435 -0
- telnyx/types/call_dial_response.py +56 -0
- telnyx/types/call_dtmf_received_webhook_event.py +61 -0
- telnyx/types/call_enqueued_webhook_event.py +59 -0
- telnyx/types/call_event_list_params.py +123 -0
- telnyx/types/call_event_list_response.py +43 -0
- telnyx/types/call_fork_started_webhook_event.py +53 -0
- telnyx/types/call_fork_stopped_webhook_event.py +53 -0
- telnyx/types/call_gather_ended_webhook_event.py +64 -0
- telnyx/types/call_hangup_webhook_event.py +150 -0
- telnyx/types/call_initiated_webhook_event.py +96 -0
- telnyx/types/call_left_queue_webhook_event.py +62 -0
- telnyx/types/call_machine_detection_ended_webhook_event.py +61 -0
- telnyx/types/call_machine_greeting_ended_webhook_event.py +61 -0
- telnyx/types/call_machine_premium_detection_ended_webhook_event.py +63 -0
- telnyx/types/call_machine_premium_greeting_ended_webhook_event.py +61 -0
- telnyx/types/call_playback_ended_webhook_event.py +70 -0
- telnyx/types/call_playback_started_webhook_event.py +62 -0
- telnyx/types/call_recording_error_webhook_event.py +60 -0
- telnyx/types/call_recording_saved_webhook_event.py +94 -0
- telnyx/types/call_recording_transcription_saved_webhook_event.py +71 -0
- telnyx/types/call_refer_completed_webhook_event.py +61 -0
- telnyx/types/call_refer_failed_webhook_event.py +61 -0
- telnyx/types/call_refer_started_webhook_event.py +61 -0
- telnyx/types/call_retrieve_status_response.py +50 -0
- telnyx/types/call_siprec_failed_webhook_event.py +53 -0
- telnyx/types/call_siprec_started_webhook_event.py +50 -0
- telnyx/types/call_siprec_stopped_webhook_event.py +53 -0
- telnyx/types/call_speak_ended_webhook_event.py +53 -0
- telnyx/types/call_speak_started_webhook_event.py +50 -0
- telnyx/types/call_streaming_failed_webhook_event.py +70 -0
- telnyx/types/call_streaming_started_webhook_event.py +53 -0
- telnyx/types/call_streaming_stopped_webhook_event.py +53 -0
- telnyx/types/calls/__init__.py +95 -0
- telnyx/types/calls/action_answer_params.py +148 -0
- telnyx/types/calls/action_answer_response.py +21 -0
- telnyx/types/calls/action_bridge_params.py +170 -0
- telnyx/types/calls/action_bridge_response.py +12 -0
- telnyx/types/calls/action_enqueue_params.py +37 -0
- telnyx/types/calls/action_enqueue_response.py +12 -0
- telnyx/types/calls/action_gather_params.py +55 -0
- telnyx/types/calls/action_gather_response.py +12 -0
- telnyx/types/calls/action_gather_using_ai_params.py +135 -0
- telnyx/types/calls/action_gather_using_ai_response.py +18 -0
- telnyx/types/calls/action_gather_using_audio_params.py +87 -0
- telnyx/types/calls/action_gather_using_audio_response.py +12 -0
- telnyx/types/calls/action_gather_using_speak_params.py +157 -0
- telnyx/types/calls/action_gather_using_speak_response.py +12 -0
- telnyx/types/calls/action_hangup_params.py +22 -0
- telnyx/types/calls/action_hangup_response.py +12 -0
- telnyx/types/calls/action_leave_queue_params.py +22 -0
- telnyx/types/calls/action_leave_queue_response.py +12 -0
- telnyx/types/calls/action_pause_recording_params.py +25 -0
- telnyx/types/calls/action_pause_recording_response.py +12 -0
- telnyx/types/calls/action_refer_params.py +44 -0
- telnyx/types/calls/action_refer_response.py +12 -0
- telnyx/types/calls/action_reject_params.py +25 -0
- telnyx/types/calls/action_reject_response.py +12 -0
- telnyx/types/calls/action_resume_recording_params.py +25 -0
- telnyx/types/calls/action_resume_recording_response.py +12 -0
- telnyx/types/calls/action_send_dtmf_params.py +35 -0
- telnyx/types/calls/action_send_dtmf_response.py +12 -0
- telnyx/types/calls/action_send_sip_info_params.py +31 -0
- telnyx/types/calls/action_send_sip_info_response.py +12 -0
- telnyx/types/calls/action_speak_params.py +125 -0
- telnyx/types/calls/action_speak_response.py +12 -0
- telnyx/types/calls/action_start_ai_assistant_params.py +97 -0
- telnyx/types/calls/action_start_ai_assistant_response.py +18 -0
- telnyx/types/calls/action_start_forking_params.py +41 -0
- telnyx/types/calls/action_start_forking_response.py +12 -0
- telnyx/types/calls/action_start_noise_suppression_params.py +31 -0
- telnyx/types/calls/action_start_noise_suppression_response.py +12 -0
- telnyx/types/calls/action_start_playback_params.py +83 -0
- telnyx/types/calls/action_start_playback_response.py +12 -0
- telnyx/types/calls/action_start_recording_params.py +245 -0
- telnyx/types/calls/action_start_recording_response.py +12 -0
- telnyx/types/calls/action_start_siprec_params.py +44 -0
- telnyx/types/calls/action_start_siprec_response.py +12 -0
- telnyx/types/calls/action_start_streaming_params.py +61 -0
- telnyx/types/calls/action_start_streaming_response.py +12 -0
- telnyx/types/calls/action_start_transcription_params.py +41 -0
- telnyx/types/calls/action_start_transcription_response.py +12 -0
- telnyx/types/calls/action_stop_ai_assistant_params.py +22 -0
- telnyx/types/calls/action_stop_ai_assistant_response.py +12 -0
- telnyx/types/calls/action_stop_forking_params.py +29 -0
- telnyx/types/calls/action_stop_forking_response.py +12 -0
- telnyx/types/calls/action_stop_gather_params.py +22 -0
- telnyx/types/calls/action_stop_gather_response.py +12 -0
- telnyx/types/calls/action_stop_noise_suppression_params.py +22 -0
- telnyx/types/calls/action_stop_noise_suppression_response.py +12 -0
- telnyx/types/calls/action_stop_playback_params.py +32 -0
- telnyx/types/calls/action_stop_playback_response.py +12 -0
- telnyx/types/calls/action_stop_recording_params.py +25 -0
- telnyx/types/calls/action_stop_recording_response.py +12 -0
- telnyx/types/calls/action_stop_siprec_params.py +22 -0
- telnyx/types/calls/action_stop_siprec_response.py +12 -0
- telnyx/types/calls/action_stop_streaming_params.py +29 -0
- telnyx/types/calls/action_stop_streaming_response.py +12 -0
- telnyx/types/calls/action_stop_transcription_params.py +22 -0
- telnyx/types/calls/action_stop_transcription_response.py +12 -0
- telnyx/types/calls/action_switch_supervisor_role_params.py +16 -0
- telnyx/types/calls/action_switch_supervisor_role_response.py +12 -0
- telnyx/types/calls/action_transfer_params.py +249 -0
- telnyx/types/calls/action_transfer_response.py +12 -0
- telnyx/types/calls/action_update_client_state_params.py +15 -0
- telnyx/types/calls/action_update_client_state_response.py +12 -0
- telnyx/types/calls/aws_voice_settings_param.py +9 -0
- telnyx/types/calls/call_control_command_result.py +11 -0
- telnyx/types/calls/eleven_labs_voice_settings_param.py +17 -0
- telnyx/types/calls/google_transcription_language.py +88 -0
- telnyx/types/calls/interruption_settings_param.py +12 -0
- telnyx/types/calls/loopcount_param.py +10 -0
- telnyx/types/calls/telnyx_voice_settings_param.py +15 -0
- telnyx/types/calls/transcription_config_param.py +19 -0
- telnyx/types/calls/transcription_engine_a_config_param.py +65 -0
- telnyx/types/calls/transcription_engine_b_config_param.py +119 -0
- telnyx/types/calls/transcription_start_request_param.py +40 -0
- telnyx/types/campaign/__init__.py +6 -0
- telnyx/types/campaign/usecase_get_cost_params.py +11 -0
- telnyx/types/campaign/usecase_get_cost_response.py +17 -0
- telnyx/types/campaign_builder/__init__.py +5 -0
- telnyx/types/campaign_builder/brand_qualify_by_usecase_response.py +36 -0
- telnyx/types/campaign_builder_create_params.py +146 -0
- telnyx/types/campaign_builder_create_response.py +10 -0
- telnyx/types/campaign_deactivate_response.py +15 -0
- telnyx/types/campaign_get_mno_metadata_response.py +35 -0
- telnyx/types/campaign_get_sharing_status_response.py +16 -0
- telnyx/types/campaign_list_params.py +39 -0
- telnyx/types/campaign_list_response.py +225 -0
- telnyx/types/campaign_sharing_status.py +21 -0
- telnyx/types/campaign_status_update_webhook_event.py +26 -0
- telnyx/types/campaign_submit_appeal_params.py +15 -0
- telnyx/types/campaign_submit_appeal_response.py +13 -0
- telnyx/types/campaign_update_params.py +47 -0
- telnyx/types/channel_zone_list_params.py +23 -0
- telnyx/types/channel_zone_list_response.py +37 -0
- telnyx/types/channel_zone_update_params.py +12 -0
- telnyx/types/channel_zone_update_response.py +30 -0
- telnyx/types/charges_breakdown_retrieve_params.py +27 -0
- telnyx/types/charges_breakdown_retrieve_response.py +60 -0
- telnyx/types/charges_summary_retrieve_params.py +23 -0
- telnyx/types/charges_summary_retrieve_response.py +122 -0
- telnyx/types/client_create_bucket_params.py +13 -0
- telnyx/types/client_delete_objects_params.py +20 -0
- telnyx/types/client_get_object_params.py +15 -0
- telnyx/types/client_list_objects_params.py +13 -0
- telnyx/types/client_put_object_params.py +20 -0
- telnyx/types/cloudflare_sync_status.py +7 -0
- telnyx/types/comment_create_params.py +15 -0
- telnyx/types/comment_create_response.py +36 -0
- telnyx/types/comment_list_params.py +23 -0
- telnyx/types/comment_list_response.py +39 -0
- telnyx/types/comment_mark_as_read_response.py +36 -0
- telnyx/types/comment_retrieve_response.py +36 -0
- telnyx/types/conference.py +53 -0
- telnyx/types/conference_create_params.py +72 -0
- telnyx/types/conference_create_response.py +12 -0
- telnyx/types/conference_created_webhook_event.py +53 -0
- telnyx/types/conference_ended_webhook_event.py +56 -0
- telnyx/types/conference_floor_changed_webhook_event.py +45 -0
- telnyx/types/conference_list_params.py +123 -0
- telnyx/types/conference_list_participants_params.py +51 -0
- telnyx/types/conference_list_participants_response.py +69 -0
- telnyx/types/conference_list_response.py +15 -0
- telnyx/types/conference_participant_joined_webhook_event.py +53 -0
- telnyx/types/conference_participant_left_webhook_event.py +53 -0
- telnyx/types/conference_participant_playback_ended_webhook_event.py +65 -0
- telnyx/types/conference_participant_playback_started_webhook_event.py +65 -0
- telnyx/types/conference_participant_speak_ended_webhook_event.py +56 -0
- telnyx/types/conference_participant_speak_started_webhook_event.py +56 -0
- telnyx/types/conference_playback_ended_webhook_event.py +49 -0
- telnyx/types/conference_playback_started_webhook_event.py +49 -0
- telnyx/types/conference_recording_saved_webhook_event.py +103 -0
- telnyx/types/conference_retrieve_response.py +12 -0
- telnyx/types/conference_speak_ended_webhook_event.py +40 -0
- telnyx/types/conference_speak_started_webhook_event.py +40 -0
- telnyx/types/conferences/__init__.py +33 -0
- telnyx/types/conferences/action_hold_params.py +31 -0
- telnyx/types/conferences/action_hold_response.py +12 -0
- telnyx/types/conferences/action_join_params.py +101 -0
- telnyx/types/conferences/action_join_response.py +12 -0
- telnyx/types/conferences/action_leave_params.py +26 -0
- telnyx/types/conferences/action_leave_response.py +12 -0
- telnyx/types/conferences/action_mute_params.py +17 -0
- telnyx/types/conferences/action_mute_response.py +12 -0
- telnyx/types/conferences/action_play_params.py +39 -0
- telnyx/types/conferences/action_play_response.py +12 -0
- telnyx/types/conferences/action_record_pause_params.py +19 -0
- telnyx/types/conferences/action_record_pause_response.py +12 -0
- telnyx/types/conferences/action_record_resume_params.py +19 -0
- telnyx/types/conferences/action_record_resume_response.py +12 -0
- telnyx/types/conferences/action_record_start_params.py +37 -0
- telnyx/types/conferences/action_record_start_response.py +12 -0
- telnyx/types/conferences/action_record_stop_params.py +25 -0
- telnyx/types/conferences/action_record_stop_response.py +12 -0
- telnyx/types/conferences/action_speak_params.py +111 -0
- telnyx/types/conferences/action_speak_response.py +12 -0
- telnyx/types/conferences/action_stop_params.py +17 -0
- telnyx/types/conferences/action_stop_response.py +12 -0
- telnyx/types/conferences/action_unhold_params.py +17 -0
- telnyx/types/conferences/action_unhold_response.py +12 -0
- telnyx/types/conferences/action_unmute_params.py +18 -0
- telnyx/types/conferences/action_unmute_response.py +12 -0
- telnyx/types/conferences/action_update_params.py +38 -0
- telnyx/types/conferences/action_update_response.py +12 -0
- telnyx/types/conferences/conference_command_result.py +9 -0
- telnyx/types/connection_list_active_calls_params.py +32 -0
- telnyx/types/connection_list_active_calls_response.py +57 -0
- telnyx/types/connection_list_params.py +71 -0
- telnyx/types/connection_list_response.py +60 -0
- telnyx/types/connection_retrieve_response.py +57 -0
- telnyx/types/connection_rtcp_settings.py +25 -0
- telnyx/types/connection_rtcp_settings_param.py +24 -0
- telnyx/types/consumed_data.py +13 -0
- telnyx/types/country_coverage_retrieve_country_response.py +71 -0
- telnyx/types/country_coverage_retrieve_response.py +71 -0
- telnyx/types/create_verification_response.py +10 -0
- telnyx/types/credential_connection.py +122 -0
- telnyx/types/credential_connection_create_params.py +123 -0
- telnyx/types/credential_connection_create_response.py +12 -0
- telnyx/types/credential_connection_delete_response.py +12 -0
- telnyx/types/credential_connection_list_params.py +71 -0
- telnyx/types/credential_connection_list_response.py +15 -0
- telnyx/types/credential_connection_retrieve_response.py +12 -0
- telnyx/types/credential_connection_update_params.py +119 -0
- telnyx/types/credential_connection_update_response.py +12 -0
- telnyx/types/credential_connections/__init__.py +7 -0
- telnyx/types/credential_connections/action_check_registration_status_response.py +40 -0
- telnyx/types/credential_inbound.py +60 -0
- telnyx/types/credential_inbound_param.py +61 -0
- telnyx/types/credential_outbound.py +66 -0
- telnyx/types/credential_outbound_param.py +64 -0
- telnyx/types/custom_sip_header.py +13 -0
- telnyx/types/custom_sip_header_param.py +15 -0
- telnyx/types/custom_storage_configuration.py +19 -0
- telnyx/types/custom_storage_credential_create_params.py +21 -0
- telnyx/types/custom_storage_credential_create_response.py +21 -0
- telnyx/types/custom_storage_credential_retrieve_response.py +21 -0
- telnyx/types/custom_storage_credential_update_params.py +21 -0
- telnyx/types/custom_storage_credential_update_response.py +21 -0
- telnyx/types/customer_service_record.py +86 -0
- telnyx/types/customer_service_record_create_params.py +49 -0
- telnyx/types/customer_service_record_create_response.py +12 -0
- telnyx/types/customer_service_record_list_params.py +99 -0
- telnyx/types/customer_service_record_list_response.py +15 -0
- telnyx/types/customer_service_record_retrieve_response.py +12 -0
- telnyx/types/customer_service_record_status_changed_webhook_event.py +55 -0
- telnyx/types/customer_service_record_verify_phone_number_coverage_params.py +14 -0
- telnyx/types/customer_service_record_verify_phone_number_coverage_response.py +50 -0
- telnyx/types/delivery_update_webhook_event.py +40 -0
- telnyx/types/detail_record_list_params.py +85 -0
- telnyx/types/detail_record_list_response.py +493 -0
- telnyx/types/dialogflow_config_param.py +15 -0
- telnyx/types/dialogflow_connection_create_params.py +28 -0
- telnyx/types/dialogflow_connection_create_response.py +30 -0
- telnyx/types/dialogflow_connection_retrieve_response.py +30 -0
- telnyx/types/dialogflow_connection_update_params.py +28 -0
- telnyx/types/dialogflow_connection_update_response.py +30 -0
- telnyx/types/doc_service_document.py +48 -0
- telnyx/types/document_delete_response.py +12 -0
- telnyx/types/document_generate_download_link_response.py +14 -0
- telnyx/types/document_link_list_params.py +37 -0
- telnyx/types/document_link_list_response.py +37 -0
- telnyx/types/document_list_params.py +76 -0
- telnyx/types/document_list_response.py +15 -0
- telnyx/types/document_retrieve_response.py +12 -0
- telnyx/types/document_update_params.py +15 -0
- telnyx/types/document_update_response.py +12 -0
- telnyx/types/document_upload_params.py +39 -0
- telnyx/types/document_upload_response.py +12 -0
- telnyx/types/dtmf_type.py +7 -0
- telnyx/types/dynamic_emergency_address.py +52 -0
- telnyx/types/dynamic_emergency_address_create_params.py +31 -0
- telnyx/types/dynamic_emergency_address_create_response.py +12 -0
- telnyx/types/dynamic_emergency_address_delete_response.py +12 -0
- telnyx/types/dynamic_emergency_address_list_params.py +37 -0
- telnyx/types/dynamic_emergency_address_list_response.py +15 -0
- telnyx/types/dynamic_emergency_address_retrieve_response.py +12 -0
- telnyx/types/dynamic_emergency_endpoint.py +33 -0
- telnyx/types/dynamic_emergency_endpoint_create_params.py +16 -0
- telnyx/types/dynamic_emergency_endpoint_create_response.py +12 -0
- telnyx/types/dynamic_emergency_endpoint_delete_response.py +12 -0
- telnyx/types/dynamic_emergency_endpoint_list_params.py +37 -0
- telnyx/types/dynamic_emergency_endpoint_list_response.py +15 -0
- telnyx/types/dynamic_emergency_endpoint_retrieve_response.py +12 -0
- telnyx/types/encrypted_media.py +8 -0
- telnyx/types/entity_type.py +7 -0
- telnyx/types/enum_retrieve_response.py +8 -0
- telnyx/types/external_connection.py +75 -0
- telnyx/types/external_connection_create_params.py +59 -0
- telnyx/types/external_connection_create_response.py +12 -0
- telnyx/types/external_connection_delete_response.py +12 -0
- telnyx/types/external_connection_list_params.py +76 -0
- telnyx/types/external_connection_list_response.py +15 -0
- telnyx/types/external_connection_retrieve_response.py +12 -0
- telnyx/types/external_connection_update_location_params.py +14 -0
- telnyx/types/external_connection_update_location_response.py +19 -0
- telnyx/types/external_connection_update_params.py +56 -0
- telnyx/types/external_connection_update_response.py +12 -0
- telnyx/types/external_connections/__init__.py +30 -0
- telnyx/types/external_connections/civic_address_list_params.py +22 -0
- telnyx/types/external_connections/civic_address_list_response.py +60 -0
- telnyx/types/external_connections/civic_address_retrieve_response.py +60 -0
- telnyx/types/external_connections/external_connection_phone_number.py +35 -0
- telnyx/types/external_connections/log_message_dismiss_response.py +12 -0
- telnyx/types/external_connections/log_message_list_params.py +55 -0
- telnyx/types/external_connections/log_message_list_response.py +42 -0
- telnyx/types/external_connections/log_message_retrieve_response.py +39 -0
- telnyx/types/external_connections/phone_number_list_params.py +56 -0
- telnyx/types/external_connections/phone_number_list_response.py +15 -0
- telnyx/types/external_connections/phone_number_retrieve_response.py +12 -0
- telnyx/types/external_connections/phone_number_update_params.py +14 -0
- telnyx/types/external_connections/phone_number_update_response.py +12 -0
- telnyx/types/external_connections/release_list_params.py +76 -0
- telnyx/types/external_connections/release_list_response.py +43 -0
- telnyx/types/external_connections/release_retrieve_response.py +40 -0
- telnyx/types/external_connections/tn_upload_entry.py +58 -0
- telnyx/types/external_connections/upload.py +33 -0
- telnyx/types/external_connections/upload_create_params.py +28 -0
- telnyx/types/external_connections/upload_create_response.py +15 -0
- telnyx/types/external_connections/upload_list_params.py +72 -0
- telnyx/types/external_connections/upload_list_response.py +15 -0
- telnyx/types/external_connections/upload_pending_count_response.py +22 -0
- telnyx/types/external_connections/upload_refresh_status_response.py +12 -0
- telnyx/types/external_connections/upload_retrieve_response.py +12 -0
- telnyx/types/external_connections/upload_retry_response.py +12 -0
- telnyx/types/external_voice_integrations_pagination_meta.py +17 -0
- telnyx/types/fax.py +108 -0
- telnyx/types/fax_application.py +94 -0
- telnyx/types/fax_application_create_params.py +84 -0
- telnyx/types/fax_application_create_response.py +12 -0
- telnyx/types/fax_application_delete_response.py +12 -0
- telnyx/types/fax_application_list_params.py +65 -0
- telnyx/types/fax_application_list_response.py +15 -0
- telnyx/types/fax_application_retrieve_response.py +12 -0
- telnyx/types/fax_application_update_params.py +90 -0
- telnyx/types/fax_application_update_response.py +12 -0
- telnyx/types/fax_create_params.py +81 -0
- telnyx/types/fax_create_response.py +12 -0
- telnyx/types/fax_delivered_webhook_event.py +69 -0
- telnyx/types/fax_failed_webhook_event.py +66 -0
- telnyx/types/fax_list_params.py +84 -0
- telnyx/types/fax_list_response.py +14 -0
- telnyx/types/fax_media_processed_webhook_event.py +63 -0
- telnyx/types/fax_queued_webhook_event.py +63 -0
- telnyx/types/fax_retrieve_response.py +12 -0
- telnyx/types/fax_sending_started_webhook_event.py +63 -0
- telnyx/types/faxes/__init__.py +6 -0
- telnyx/types/faxes/action_cancel_response.py +11 -0
- telnyx/types/faxes/action_refresh_response.py +11 -0
- telnyx/types/fqdn.py +38 -0
- telnyx/types/fqdn_connection.py +150 -0
- telnyx/types/fqdn_connection_create_params.py +111 -0
- telnyx/types/fqdn_connection_create_response.py +12 -0
- telnyx/types/fqdn_connection_delete_response.py +12 -0
- telnyx/types/fqdn_connection_list_params.py +71 -0
- telnyx/types/fqdn_connection_list_response.py +15 -0
- telnyx/types/fqdn_connection_retrieve_response.py +12 -0
- telnyx/types/fqdn_connection_update_params.py +105 -0
- telnyx/types/fqdn_connection_update_response.py +12 -0
- telnyx/types/fqdn_create_params.py +27 -0
- telnyx/types/fqdn_create_response.py +12 -0
- telnyx/types/fqdn_delete_response.py +12 -0
- telnyx/types/fqdn_list_params.py +44 -0
- telnyx/types/fqdn_list_response.py +15 -0
- telnyx/types/fqdn_retrieve_response.py +12 -0
- telnyx/types/fqdn_update_params.py +27 -0
- telnyx/types/fqdn_update_response.py +12 -0
- telnyx/types/gcs_configuration_data.py +18 -0
- telnyx/types/gcs_configuration_data_param.py +18 -0
- telnyx/types/global_ip_allowed_port_list_response.py +31 -0
- telnyx/types/global_ip_assignment.py +31 -0
- telnyx/types/global_ip_assignment_create_params.py +18 -0
- telnyx/types/global_ip_assignment_create_response.py +12 -0
- telnyx/types/global_ip_assignment_delete_response.py +12 -0
- telnyx/types/global_ip_assignment_health_retrieve_params.py +62 -0
- telnyx/types/global_ip_assignment_health_retrieve_response.py +66 -0
- telnyx/types/global_ip_assignment_list_params.py +23 -0
- telnyx/types/global_ip_assignment_list_response.py +15 -0
- telnyx/types/global_ip_assignment_param.py +18 -0
- telnyx/types/global_ip_assignment_retrieve_response.py +12 -0
- telnyx/types/global_ip_assignment_update_params.py +17 -0
- telnyx/types/global_ip_assignment_update_response.py +12 -0
- telnyx/types/global_ip_assignments_usage_retrieve_params.py +62 -0
- telnyx/types/global_ip_assignments_usage_retrieve_response.py +75 -0
- telnyx/types/global_ip_create_params.py +19 -0
- telnyx/types/global_ip_create_response.py +29 -0
- telnyx/types/global_ip_delete_response.py +29 -0
- telnyx/types/global_ip_health_check_create_params.py +19 -0
- telnyx/types/global_ip_health_check_create_response.py +26 -0
- telnyx/types/global_ip_health_check_delete_response.py +26 -0
- telnyx/types/global_ip_health_check_list_params.py +23 -0
- telnyx/types/global_ip_health_check_list_response.py +29 -0
- telnyx/types/global_ip_health_check_retrieve_response.py +26 -0
- telnyx/types/global_ip_health_check_type_list_response.py +22 -0
- telnyx/types/global_ip_latency_retrieve_params.py +37 -0
- telnyx/types/global_ip_latency_retrieve_response.py +143 -0
- telnyx/types/global_ip_list_params.py +23 -0
- telnyx/types/global_ip_list_response.py +32 -0
- telnyx/types/global_ip_protocol_list_response.py +22 -0
- telnyx/types/global_ip_retrieve_response.py +29 -0
- telnyx/types/global_ip_usage_retrieve_params.py +37 -0
- telnyx/types/global_ip_usage_retrieve_response.py +47 -0
- telnyx/types/inbound_channel_list_response.py +19 -0
- telnyx/types/inbound_channel_update_params.py +12 -0
- telnyx/types/inbound_channel_update_response.py +19 -0
- telnyx/types/inbound_fqdn.py +111 -0
- telnyx/types/inbound_fqdn_param.py +113 -0
- telnyx/types/inbound_ip.py +111 -0
- telnyx/types/inbound_ip_param.py +112 -0
- telnyx/types/inbound_message_webhook_event.py +227 -0
- telnyx/types/integration_secret.py +20 -0
- telnyx/types/integration_secret_create_params.py +30 -0
- telnyx/types/integration_secret_create_response.py +10 -0
- telnyx/types/integration_secret_list_params.py +28 -0
- telnyx/types/integration_secret_list_response.py +24 -0
- telnyx/types/interface.py +19 -0
- telnyx/types/interface_status.py +7 -0
- telnyx/types/inventory_coverage_list_params.py +86 -0
- telnyx/types/inventory_coverage_list_response.py +41 -0
- telnyx/types/invoice_list_params.py +26 -0
- telnyx/types/invoice_list_response.py +38 -0
- telnyx/types/invoice_retrieve_params.py +12 -0
- telnyx/types/invoice_retrieve_response.py +29 -0
- telnyx/types/ip.py +30 -0
- telnyx/types/ip_connection.py +106 -0
- telnyx/types/ip_connection_create_params.py +183 -0
- telnyx/types/ip_connection_create_response.py +12 -0
- telnyx/types/ip_connection_delete_response.py +12 -0
- telnyx/types/ip_connection_list_params.py +71 -0
- telnyx/types/ip_connection_list_response.py +15 -0
- telnyx/types/ip_connection_retrieve_response.py +12 -0
- telnyx/types/ip_connection_update_params.py +102 -0
- telnyx/types/ip_connection_update_response.py +12 -0
- telnyx/types/ip_create_params.py +18 -0
- telnyx/types/ip_create_response.py +12 -0
- telnyx/types/ip_delete_response.py +12 -0
- telnyx/types/ip_list_params.py +40 -0
- telnyx/types/ip_list_response.py +12 -0
- telnyx/types/ip_retrieve_response.py +12 -0
- telnyx/types/ip_update_params.py +18 -0
- telnyx/types/ip_update_response.py +12 -0
- telnyx/types/ledger_billing_group_report.py +32 -0
- telnyx/types/ledger_billing_group_report_create_params.py +15 -0
- telnyx/types/ledger_billing_group_report_create_response.py +12 -0
- telnyx/types/ledger_billing_group_report_retrieve_response.py +12 -0
- 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/list_buckets_response.py +20 -0
- telnyx/types/list_objects_response.py +24 -0
- telnyx/types/list_retrieve_all_response.py +30 -0
- telnyx/types/list_retrieve_by_zone_response.py +30 -0
- telnyx/types/managed_account.py +61 -0
- telnyx/types/managed_account_balance.py +25 -0
- telnyx/types/managed_account_create_params.py +48 -0
- telnyx/types/managed_account_create_response.py +12 -0
- telnyx/types/managed_account_get_allocatable_global_outbound_channels_response.py +39 -0
- telnyx/types/managed_account_list_params.py +86 -0
- telnyx/types/managed_account_list_response.py +59 -0
- telnyx/types/managed_account_retrieve_response.py +12 -0
- telnyx/types/managed_account_update_global_channel_limit_params.py +17 -0
- telnyx/types/managed_account_update_global_channel_limit_response.py +32 -0
- telnyx/types/managed_account_update_params.py +17 -0
- telnyx/types/managed_account_update_response.py +12 -0
- telnyx/types/managed_accounts/__init__.py +7 -0
- telnyx/types/managed_accounts/action_disable_response.py +12 -0
- telnyx/types/managed_accounts/action_enable_params.py +16 -0
- telnyx/types/managed_accounts/action_enable_response.py +12 -0
- telnyx/types/media_list_params.py +22 -0
- telnyx/types/media_list_response.py +15 -0
- telnyx/types/media_resource.py +24 -0
- telnyx/types/media_retrieve_response.py +12 -0
- telnyx/types/media_update_params.py +21 -0
- telnyx/types/media_update_response.py +12 -0
- telnyx/types/media_upload_params.py +24 -0
- telnyx/types/media_upload_response.py +12 -0
- telnyx/types/message_cancel_scheduled_response.py +198 -0
- telnyx/types/message_retrieve_response.py +215 -0
- telnyx/types/message_schedule_params.py +78 -0
- telnyx/types/message_schedule_response.py +12 -0
- telnyx/types/message_send_group_mms_params.py +43 -0
- telnyx/types/message_send_group_mms_response.py +12 -0
- telnyx/types/message_send_long_code_params.py +58 -0
- telnyx/types/message_send_long_code_response.py +12 -0
- telnyx/types/message_send_number_pool_params.py +57 -0
- telnyx/types/message_send_number_pool_response.py +12 -0
- telnyx/types/message_send_params.py +78 -0
- telnyx/types/message_send_response.py +12 -0
- telnyx/types/message_send_short_code_params.py +58 -0
- telnyx/types/message_send_short_code_response.py +12 -0
- telnyx/types/messages/__init__.py +6 -0
- telnyx/types/messages/rc_generate_deeplink_params.py +15 -0
- telnyx/types/messages/rc_generate_deeplink_response.py +14 -0
- telnyx/types/messaging/__init__.py +9 -0
- telnyx/types/messaging/rc_invite_test_number_response.py +26 -0
- telnyx/types/messaging/rc_list_bulk_capabilities_params.py +17 -0
- telnyx/types/messaging/rc_list_bulk_capabilities_response.py +12 -0
- telnyx/types/messaging/rc_retrieve_capabilities_response.py +12 -0
- telnyx/types/messaging/rcs/__init__.py +7 -0
- telnyx/types/messaging/rcs/agent_list_params.py +23 -0
- telnyx/types/messaging/rcs/agent_list_response.py +15 -0
- telnyx/types/messaging/rcs/agent_update_params.py +19 -0
- telnyx/types/messaging/rcs_capabilities.py +25 -0
- telnyx/types/messaging_error.py +27 -0
- telnyx/types/messaging_hosted_number_delete_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_check_eligibility_params.py +14 -0
- telnyx/types/messaging_hosted_number_order_check_eligibility_response.py +42 -0
- telnyx/types/messaging_hosted_number_order_create_params.py +20 -0
- telnyx/types/messaging_hosted_number_order_create_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_create_verification_codes_params.py +15 -0
- telnyx/types/messaging_hosted_number_order_create_verification_codes_response.py +39 -0
- telnyx/types/messaging_hosted_number_order_delete_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_list_params.py +23 -0
- telnyx/types/messaging_hosted_number_order_list_response.py +15 -0
- telnyx/types/messaging_hosted_number_order_retrieve_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_validate_codes_params.py +18 -0
- telnyx/types/messaging_hosted_number_order_validate_codes_response.py +24 -0
- telnyx/types/messaging_hosted_number_orders/__init__.py +6 -0
- telnyx/types/messaging_hosted_number_orders/action_upload_file_params.py +20 -0
- telnyx/types/messaging_hosted_number_orders/action_upload_file_response.py +12 -0
- telnyx/types/messaging_numbers_bulk_update_create_params.py +23 -0
- telnyx/types/messaging_numbers_bulk_update_create_response.py +29 -0
- telnyx/types/messaging_numbers_bulk_update_retrieve_response.py +29 -0
- telnyx/types/messaging_optout_list_params.py +64 -0
- telnyx/types/messaging_optout_list_response.py +37 -0
- telnyx/types/messaging_profile.py +97 -0
- telnyx/types/messaging_profile_create_params.py +83 -0
- telnyx/types/messaging_profile_create_response.py +12 -0
- telnyx/types/messaging_profile_delete_response.py +12 -0
- telnyx/types/messaging_profile_list_params.py +31 -0
- telnyx/types/messaging_profile_list_phone_numbers_params.py +23 -0
- telnyx/types/messaging_profile_list_phone_numbers_response.py +15 -0
- telnyx/types/messaging_profile_list_response.py +15 -0
- telnyx/types/messaging_profile_list_short_codes_params.py +23 -0
- telnyx/types/messaging_profile_list_short_codes_response.py +15 -0
- telnyx/types/messaging_profile_retrieve_response.py +12 -0
- telnyx/types/messaging_profile_update_params.py +88 -0
- telnyx/types/messaging_profile_update_response.py +12 -0
- telnyx/types/messaging_profiles/__init__.py +10 -0
- telnyx/types/messaging_profiles/auto_resp_config.py +25 -0
- telnyx/types/messaging_profiles/auto_resp_config_response.py +10 -0
- telnyx/types/messaging_profiles/autoresp_config_create_params.py +19 -0
- telnyx/types/messaging_profiles/autoresp_config_list_params.py +35 -0
- telnyx/types/messaging_profiles/autoresp_config_list_response.py +15 -0
- telnyx/types/messaging_profiles/autoresp_config_update_params.py +21 -0
- telnyx/types/messaging_tollfree/__init__.py +3 -0
- telnyx/types/messaging_tollfree/verification/__init__.py +17 -0
- telnyx/types/messaging_tollfree/verification/request_create_params.py +91 -0
- telnyx/types/messaging_tollfree/verification/request_list_params.py +31 -0
- telnyx/types/messaging_tollfree/verification/request_list_response.py +16 -0
- telnyx/types/messaging_tollfree/verification/request_update_params.py +91 -0
- telnyx/types/messaging_tollfree/verification/tf_phone_number.py +11 -0
- telnyx/types/messaging_tollfree/verification/tf_phone_number_param.py +13 -0
- telnyx/types/messaging_tollfree/verification/tf_verification_status.py +9 -0
- telnyx/types/messaging_tollfree/verification/url.py +9 -0
- telnyx/types/messaging_tollfree/verification/url_param.py +11 -0
- telnyx/types/messaging_tollfree/verification/use_case_categories.py +51 -0
- telnyx/types/messaging_tollfree/verification/verification_request_egress.py +67 -0
- telnyx/types/messaging_tollfree/verification/verification_request_status.py +72 -0
- telnyx/types/messaging_tollfree/verification/volume.py +9 -0
- telnyx/types/messaging_url_domain_list_params.py +23 -0
- telnyx/types/messaging_url_domain_list_response.py +24 -0
- telnyx/types/messsage_rcs_params.py +67 -0
- telnyx/types/messsage_rcs_response.py +59 -0
- telnyx/types/mobile_network_operator_list_params.py +62 -0
- telnyx/types/mobile_network_operator_list_response.py +57 -0
- telnyx/types/mobile_push_credential_create_params.py +36 -0
- telnyx/types/mobile_push_credential_list_params.py +37 -0
- telnyx/types/mobile_push_credential_list_response.py +15 -0
- telnyx/types/month_detail.py +18 -0
- telnyx/types/network_coverage_list_params.py +74 -0
- telnyx/types/network_coverage_list_response.py +42 -0
- telnyx/types/network_create_params.py +12 -0
- telnyx/types/network_create_response.py +20 -0
- telnyx/types/network_delete_response.py +20 -0
- telnyx/types/network_list_interfaces_params.py +37 -0
- telnyx/types/network_list_interfaces_response.py +40 -0
- telnyx/types/network_list_params.py +31 -0
- telnyx/types/network_list_response.py +23 -0
- telnyx/types/network_retrieve_response.py +20 -0
- telnyx/types/network_update_params.py +12 -0
- telnyx/types/network_update_response.py +20 -0
- telnyx/types/networks/__init__.py +8 -0
- telnyx/types/networks/default_gateway_create_params.py +12 -0
- telnyx/types/networks/default_gateway_create_response.py +30 -0
- telnyx/types/networks/default_gateway_delete_response.py +30 -0
- telnyx/types/networks/default_gateway_retrieve_response.py +30 -0
- telnyx/types/notification_channel.py +29 -0
- telnyx/types/notification_channel_create_params.py +18 -0
- telnyx/types/notification_channel_create_response.py +13 -0
- telnyx/types/notification_channel_delete_response.py +13 -0
- telnyx/types/notification_channel_list_params.py +94 -0
- telnyx/types/notification_channel_list_response.py +15 -0
- telnyx/types/notification_channel_retrieve_response.py +13 -0
- telnyx/types/notification_channel_update_params.py +18 -0
- telnyx/types/notification_channel_update_response.py +13 -0
- telnyx/types/notification_event_condition_list_params.py +94 -0
- telnyx/types/notification_event_condition_list_response.py +59 -0
- telnyx/types/notification_event_list_params.py +23 -0
- telnyx/types/notification_event_list_response.py +33 -0
- telnyx/types/notification_profile.py +22 -0
- telnyx/types/notification_profile_create_params.py +12 -0
- telnyx/types/notification_profile_create_response.py +13 -0
- telnyx/types/notification_profile_delete_response.py +13 -0
- telnyx/types/notification_profile_list_params.py +23 -0
- telnyx/types/notification_profile_list_response.py +15 -0
- telnyx/types/notification_profile_retrieve_response.py +13 -0
- telnyx/types/notification_profile_update_params.py +12 -0
- telnyx/types/notification_profile_update_response.py +13 -0
- telnyx/types/notification_setting.py +55 -0
- telnyx/types/notification_setting_create_params.py +27 -0
- telnyx/types/notification_setting_create_response.py +12 -0
- telnyx/types/notification_setting_delete_response.py +12 -0
- telnyx/types/notification_setting_list_params.py +94 -0
- telnyx/types/notification_setting_list_response.py +15 -0
- telnyx/types/notification_setting_retrieve_response.py +12 -0
- telnyx/types/number_block_order.py +48 -0
- telnyx/types/number_block_order_create_params.py +24 -0
- telnyx/types/number_block_order_create_response.py +12 -0
- telnyx/types/number_block_order_list_params.py +51 -0
- telnyx/types/number_block_order_list_response.py +15 -0
- telnyx/types/number_block_order_retrieve_response.py +12 -0
- telnyx/types/number_lookup_retrieve_params.py +12 -0
- telnyx/types/number_lookup_retrieve_response.py +145 -0
- telnyx/types/number_order_create_params.py +35 -0
- telnyx/types/number_order_create_response.py +12 -0
- telnyx/types/number_order_list_params.py +55 -0
- telnyx/types/number_order_list_response.py +61 -0
- telnyx/types/number_order_phone_number.py +55 -0
- telnyx/types/number_order_phone_number_list_params.py +20 -0
- telnyx/types/number_order_phone_number_list_response.py +15 -0
- telnyx/types/number_order_phone_number_retrieve_response.py +12 -0
- telnyx/types/number_order_phone_number_update_requirement_group_params.py +12 -0
- telnyx/types/number_order_phone_number_update_requirement_group_response.py +54 -0
- telnyx/types/number_order_phone_number_update_requirements_params.py +14 -0
- telnyx/types/number_order_phone_number_update_requirements_response.py +12 -0
- telnyx/types/number_order_retrieve_response.py +12 -0
- telnyx/types/number_order_status_update_webhook_event.py +38 -0
- telnyx/types/number_order_update_params.py +17 -0
- telnyx/types/number_order_update_response.py +12 -0
- telnyx/types/number_order_with_phone_numbers.py +47 -0
- telnyx/types/number_pool_settings.py +51 -0
- telnyx/types/number_pool_settings_param.py +51 -0
- telnyx/types/number_reservation.py +30 -0
- telnyx/types/number_reservation_create_params.py +17 -0
- telnyx/types/number_reservation_create_response.py +12 -0
- telnyx/types/number_reservation_list_params.py +54 -0
- telnyx/types/number_reservation_list_response.py +15 -0
- telnyx/types/number_reservation_retrieve_response.py +12 -0
- telnyx/types/number_reservations/__init__.py +5 -0
- telnyx/types/number_reservations/action_extend_response.py +12 -0
- telnyx/types/numbers_feature_create_params.py +13 -0
- telnyx/types/numbers_feature_create_response.py +17 -0
- 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/operator_connect/__init__.py +5 -0
- telnyx/types/operator_connect/action_refresh_response.py +15 -0
- telnyx/types/ota_update_list_params.py +40 -0
- telnyx/types/ota_update_list_response.py +39 -0
- telnyx/types/ota_update_retrieve_response.py +71 -0
- telnyx/types/outbound_call_recording.py +28 -0
- telnyx/types/outbound_call_recording_param.py +29 -0
- telnyx/types/outbound_fqdn.py +86 -0
- telnyx/types/outbound_fqdn_param.py +85 -0
- telnyx/types/outbound_ip.py +73 -0
- telnyx/types/outbound_ip_param.py +71 -0
- telnyx/types/outbound_message_payload.py +196 -0
- telnyx/types/outbound_voice_profile.py +84 -0
- telnyx/types/outbound_voice_profile_create_params.py +72 -0
- telnyx/types/outbound_voice_profile_create_response.py +12 -0
- telnyx/types/outbound_voice_profile_delete_response.py +12 -0
- telnyx/types/outbound_voice_profile_list_params.py +70 -0
- telnyx/types/outbound_voice_profile_list_response.py +15 -0
- telnyx/types/outbound_voice_profile_retrieve_response.py +12 -0
- telnyx/types/outbound_voice_profile_update_params.py +72 -0
- telnyx/types/outbound_voice_profile_update_response.py +12 -0
- telnyx/types/pagination_meta.py +17 -0
- telnyx/types/partner_campaign_list_params.py +39 -0
- telnyx/types/partner_campaign_list_response.py +18 -0
- telnyx/types/partner_campaign_list_shared_by_me_params.py +20 -0
- telnyx/types/partner_campaign_list_shared_by_me_response.py +45 -0
- telnyx/types/partner_campaign_retrieve_sharing_status_response.py +10 -0
- telnyx/types/partner_campaign_update_params.py +17 -0
- telnyx/types/payment/__init__.py +7 -0
- telnyx/types/payment/auto_recharge_pref_list_response.py +37 -0
- telnyx/types/payment/auto_recharge_pref_update_params.py +26 -0
- telnyx/types/payment/auto_recharge_pref_update_response.py +37 -0
- telnyx/types/phone_number.py +49 -0
- telnyx/types/phone_number_assignment_by_profile_assign_params.py +29 -0
- telnyx/types/phone_number_assignment_by_profile_assign_response.py +46 -0
- telnyx/types/phone_number_assignment_by_profile_retrieve_phone_number_status_params.py +15 -0
- telnyx/types/phone_number_assignment_by_profile_retrieve_phone_number_status_response.py +24 -0
- telnyx/types/phone_number_assignment_by_profile_retrieve_status_response.py +22 -0
- telnyx/types/phone_number_blocks/__init__.py +12 -0
- telnyx/types/phone_number_blocks/job.py +89 -0
- telnyx/types/phone_number_blocks/job_delete_phone_number_block_params.py +11 -0
- telnyx/types/phone_number_blocks/job_delete_phone_number_block_response.py +12 -0
- telnyx/types/phone_number_blocks/job_list_params.py +43 -0
- telnyx/types/phone_number_blocks/job_list_response.py +15 -0
- telnyx/types/phone_number_blocks/job_retrieve_response.py +12 -0
- telnyx/types/phone_number_campaign.py +48 -0
- telnyx/types/phone_number_campaign_create_params.py +17 -0
- telnyx/types/phone_number_campaign_list_params.py +42 -0
- telnyx/types/phone_number_campaign_list_response.py +18 -0
- telnyx/types/phone_number_campaign_update_params.py +17 -0
- telnyx/types/phone_number_delete_response.py +120 -0
- telnyx/types/phone_number_detailed.py +146 -0
- telnyx/types/phone_number_list_params.py +137 -0
- telnyx/types/phone_number_list_response.py +15 -0
- telnyx/types/phone_number_retrieve_response.py +12 -0
- telnyx/types/phone_number_slim_list_params.py +149 -0
- telnyx/types/phone_number_slim_list_response.py +125 -0
- telnyx/types/phone_number_update_params.py +34 -0
- telnyx/types/phone_number_update_response.py +12 -0
- telnyx/types/phone_numbers/__init__.py +56 -0
- telnyx/types/phone_numbers/action_change_bundle_status_params.py +18 -0
- telnyx/types/phone_numbers/action_change_bundle_status_response.py +12 -0
- telnyx/types/phone_numbers/action_enable_emergency_params.py +15 -0
- telnyx/types/phone_numbers/action_enable_emergency_response.py +12 -0
- telnyx/types/phone_numbers/action_verify_ownership_params.py +14 -0
- telnyx/types/phone_numbers/action_verify_ownership_response.py +30 -0
- telnyx/types/phone_numbers/call_forwarding.py +27 -0
- telnyx/types/phone_numbers/call_forwarding_param.py +26 -0
- telnyx/types/phone_numbers/call_recording.py +22 -0
- telnyx/types/phone_numbers/call_recording_param.py +21 -0
- telnyx/types/phone_numbers/cnam_listing.py +22 -0
- telnyx/types/phone_numbers/cnam_listing_param.py +22 -0
- telnyx/types/phone_numbers/csv_download.py +25 -0
- telnyx/types/phone_numbers/csv_download_create_params.py +96 -0
- telnyx/types/phone_numbers/csv_download_create_response.py +12 -0
- telnyx/types/phone_numbers/csv_download_list_params.py +23 -0
- telnyx/types/phone_numbers/csv_download_list_response.py +15 -0
- telnyx/types/phone_numbers/csv_download_retrieve_response.py +12 -0
- telnyx/types/phone_numbers/job_delete_batch_params.py +13 -0
- telnyx/types/phone_numbers/job_delete_batch_response.py +12 -0
- telnyx/types/phone_numbers/job_list_params.py +37 -0
- telnyx/types/phone_numbers/job_list_response.py +15 -0
- telnyx/types/phone_numbers/job_retrieve_response.py +12 -0
- telnyx/types/phone_numbers/job_update_batch_params.py +137 -0
- telnyx/types/phone_numbers/job_update_batch_response.py +12 -0
- telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py +24 -0
- telnyx/types/phone_numbers/job_update_emergency_settings_batch_response.py +12 -0
- telnyx/types/phone_numbers/media_features.py +28 -0
- telnyx/types/phone_numbers/media_features_param.py +28 -0
- telnyx/types/phone_numbers/messaging_list_params.py +23 -0
- telnyx/types/phone_numbers/messaging_list_response.py +15 -0
- telnyx/types/phone_numbers/messaging_retrieve_response.py +12 -0
- telnyx/types/phone_numbers/messaging_update_params.py +25 -0
- telnyx/types/phone_numbers/messaging_update_response.py +12 -0
- telnyx/types/phone_numbers/phone_number_with_voice_settings.py +84 -0
- telnyx/types/phone_numbers/phone_numbers_job.py +111 -0
- telnyx/types/phone_numbers/update_voice_settings_param.py +52 -0
- telnyx/types/phone_numbers/voice_list_params.py +63 -0
- telnyx/types/phone_numbers/voice_list_response.py +15 -0
- telnyx/types/phone_numbers/voice_retrieve_response.py +12 -0
- telnyx/types/phone_numbers/voice_update_params.py +52 -0
- telnyx/types/phone_numbers/voice_update_response.py +12 -0
- telnyx/types/phone_numbers/voicemail_create_params.py +15 -0
- telnyx/types/phone_numbers/voicemail_create_response.py +12 -0
- telnyx/types/phone_numbers/voicemail_pref_response.py +15 -0
- telnyx/types/phone_numbers/voicemail_retrieve_response.py +12 -0
- telnyx/types/phone_numbers/voicemail_update_params.py +15 -0
- telnyx/types/phone_numbers/voicemail_update_response.py +12 -0
- telnyx/types/phone_numbers_regulatory_requirement_retrieve_params.py +20 -0
- telnyx/types/phone_numbers_regulatory_requirement_retrieve_response.py +62 -0
- telnyx/types/portability_check_run_params.py +14 -0
- telnyx/types/portability_check_run_response.py +31 -0
- telnyx/types/porting/__init__.py +26 -0
- telnyx/types/porting/event_list_params.py +61 -0
- telnyx/types/porting/event_list_response.py +200 -0
- telnyx/types/porting/event_retrieve_response.py +197 -0
- telnyx/types/porting/export_porting_orders_csv_report.py +43 -0
- telnyx/types/porting/export_porting_orders_csv_report_param.py +45 -0
- telnyx/types/porting/loa_configuration_create_params.py +57 -0
- telnyx/types/porting/loa_configuration_create_response.py +12 -0
- telnyx/types/porting/loa_configuration_list_params.py +23 -0
- telnyx/types/porting/loa_configuration_list_response.py +15 -0
- telnyx/types/porting/loa_configuration_preview_0_params.py +57 -0
- telnyx/types/porting/loa_configuration_retrieve_response.py +12 -0
- telnyx/types/porting/loa_configuration_update_params.py +57 -0
- telnyx/types/porting/loa_configuration_update_response.py +12 -0
- telnyx/types/porting/porting_loa_configuration.py +77 -0
- telnyx/types/porting/porting_report.py +39 -0
- telnyx/types/porting/report_create_params.py +17 -0
- telnyx/types/porting/report_create_response.py +12 -0
- telnyx/types/porting/report_list_params.py +37 -0
- telnyx/types/porting/report_list_response.py +15 -0
- telnyx/types/porting/report_retrieve_response.py +12 -0
- telnyx/types/porting_list_uk_carriers_response.py +38 -0
- telnyx/types/porting_order.py +101 -0
- telnyx/types/porting_order_activation_settings.py +39 -0
- telnyx/types/porting_order_create_params.py +20 -0
- telnyx/types/porting_order_create_response.py +12 -0
- telnyx/types/porting_order_documents.py +15 -0
- telnyx/types/porting_order_documents_param.py +15 -0
- telnyx/types/porting_order_end_user.py +15 -0
- telnyx/types/porting_order_end_user_admin.py +33 -0
- telnyx/types/porting_order_end_user_admin_param.py +33 -0
- telnyx/types/porting_order_end_user_location.py +27 -0
- telnyx/types/porting_order_end_user_location_param.py +27 -0
- telnyx/types/porting_order_end_user_param.py +16 -0
- telnyx/types/porting_order_list_params.py +137 -0
- telnyx/types/porting_order_list_response.py +15 -0
- telnyx/types/porting_order_messaging.py +28 -0
- telnyx/types/porting_order_misc.py +32 -0
- telnyx/types/porting_order_misc_param.py +32 -0
- telnyx/types/porting_order_phone_number_configuration.py +23 -0
- telnyx/types/porting_order_phone_number_configuration_param.py +25 -0
- telnyx/types/porting_order_requirement.py +22 -0
- telnyx/types/porting_order_retrieve_allowed_foc_windows_response.py +26 -0
- telnyx/types/porting_order_retrieve_exception_types_response.py +12 -0
- telnyx/types/porting_order_retrieve_loa_template_params.py +15 -0
- telnyx/types/porting_order_retrieve_params.py +12 -0
- telnyx/types/porting_order_retrieve_requirements_params.py +23 -0
- telnyx/types/porting_order_retrieve_requirements_response.py +52 -0
- telnyx/types/porting_order_retrieve_response.py +19 -0
- telnyx/types/porting_order_retrieve_sub_request_response.py +19 -0
- telnyx/types/porting_order_type.py +7 -0
- telnyx/types/porting_order_update_params.py +76 -0
- telnyx/types/porting_order_update_response.py +19 -0
- telnyx/types/porting_order_user_feedback.py +18 -0
- telnyx/types/porting_order_user_feedback_param.py +18 -0
- telnyx/types/porting_orders/__init__.py +73 -0
- telnyx/types/porting_orders/action_activate_response.py +12 -0
- telnyx/types/porting_orders/action_cancel_response.py +19 -0
- telnyx/types/porting_orders/action_confirm_response.py +19 -0
- telnyx/types/porting_orders/action_requirement_initiate_params.py +25 -0
- telnyx/types/porting_orders/action_requirement_initiate_response.py +45 -0
- telnyx/types/porting_orders/action_requirement_list_params.py +57 -0
- telnyx/types/porting_orders/action_requirement_list_response.py +48 -0
- telnyx/types/porting_orders/action_share_params.py +15 -0
- telnyx/types/porting_orders/action_share_response.py +39 -0
- telnyx/types/porting_orders/activation_job_list_params.py +23 -0
- telnyx/types/porting_orders/activation_job_list_response.py +15 -0
- telnyx/types/porting_orders/activation_job_retrieve_response.py +12 -0
- telnyx/types/porting_orders/activation_job_update_params.py +21 -0
- telnyx/types/porting_orders/activation_job_update_response.py +12 -0
- telnyx/types/porting_orders/additional_document_create_params.py +20 -0
- telnyx/types/porting_orders/additional_document_create_response.py +42 -0
- telnyx/types/porting_orders/additional_document_list_params.py +46 -0
- telnyx/types/porting_orders/additional_document_list_response.py +45 -0
- telnyx/types/porting_orders/associated_phone_number_create_params.py +22 -0
- telnyx/types/porting_orders/associated_phone_number_create_response.py +12 -0
- telnyx/types/porting_orders/associated_phone_number_delete_response.py +12 -0
- telnyx/types/porting_orders/associated_phone_number_list_params.py +48 -0
- telnyx/types/porting_orders/associated_phone_number_list_response.py +15 -0
- telnyx/types/porting_orders/comment_create_params.py +11 -0
- telnyx/types/porting_orders/comment_create_response.py +31 -0
- telnyx/types/porting_orders/comment_list_params.py +23 -0
- telnyx/types/porting_orders/comment_list_response.py +34 -0
- telnyx/types/porting_orders/phone_number_block_create_params.py +46 -0
- telnyx/types/porting_orders/phone_number_block_create_response.py +12 -0
- telnyx/types/porting_orders/phone_number_block_delete_response.py +12 -0
- telnyx/types/porting_orders/phone_number_block_list_params.py +107 -0
- telnyx/types/porting_orders/phone_number_block_list_response.py +15 -0
- telnyx/types/porting_orders/phone_number_configuration_create_params.py +20 -0
- telnyx/types/porting_orders/phone_number_configuration_create_response.py +32 -0
- telnyx/types/porting_orders/phone_number_configuration_list_params.py +71 -0
- telnyx/types/porting_orders/phone_number_configuration_list_response.py +35 -0
- telnyx/types/porting_orders/phone_number_extension_create_params.py +53 -0
- telnyx/types/porting_orders/phone_number_extension_create_response.py +12 -0
- telnyx/types/porting_orders/phone_number_extension_delete_response.py +12 -0
- telnyx/types/porting_orders/phone_number_extension_list_params.py +45 -0
- telnyx/types/porting_orders/phone_number_extension_list_response.py +15 -0
- telnyx/types/porting_orders/porting_associated_phone_number.py +49 -0
- telnyx/types/porting_orders/porting_phone_number_block.py +69 -0
- telnyx/types/porting_orders/porting_phone_number_extension.py +66 -0
- telnyx/types/porting_orders/verification_code_list_params.py +42 -0
- telnyx/types/porting_orders/verification_code_list_response.py +38 -0
- telnyx/types/porting_orders/verification_code_send_params.py +15 -0
- telnyx/types/porting_orders/verification_code_verify_params.py +18 -0
- telnyx/types/porting_orders/verification_code_verify_response.py +35 -0
- telnyx/types/porting_orders_activation_job.py +46 -0
- telnyx/types/porting_phone_number_list_params.py +36 -0
- telnyx/types/porting_phone_number_list_response.py +76 -0
- telnyx/types/portout_details.py +98 -0
- telnyx/types/portout_list_params.py +94 -0
- telnyx/types/portout_list_rejection_codes_params.py +21 -0
- telnyx/types/portout_list_rejection_codes_response.py +19 -0
- telnyx/types/portout_list_response.py +15 -0
- telnyx/types/portout_retrieve_response.py +12 -0
- telnyx/types/portout_update_status_params.py +20 -0
- telnyx/types/portout_update_status_response.py +12 -0
- telnyx/types/portouts/__init__.py +21 -0
- telnyx/types/portouts/comment_create_params.py +12 -0
- telnyx/types/portouts/comment_create_response.py +33 -0
- telnyx/types/portouts/comment_list_response.py +36 -0
- telnyx/types/portouts/event_list_params.py +52 -0
- telnyx/types/portouts/event_list_response.py +116 -0
- telnyx/types/portouts/event_retrieve_response.py +113 -0
- telnyx/types/portouts/export_portouts_csv_report.py +38 -0
- telnyx/types/portouts/export_portouts_csv_report_param.py +40 -0
- telnyx/types/portouts/portout_report.py +39 -0
- telnyx/types/portouts/report_create_params.py +17 -0
- telnyx/types/portouts/report_create_response.py +12 -0
- telnyx/types/portouts/report_list_params.py +37 -0
- telnyx/types/portouts/report_list_response.py +15 -0
- telnyx/types/portouts/report_retrieve_response.py +12 -0
- telnyx/types/portouts/supporting_document_create_params.py +21 -0
- telnyx/types/portouts/supporting_document_create_response.py +34 -0
- telnyx/types/portouts/supporting_document_list_response.py +34 -0
- telnyx/types/private_wireless_gateway.py +42 -0
- telnyx/types/private_wireless_gateway_create_params.py +21 -0
- telnyx/types/private_wireless_gateway_create_response.py +12 -0
- telnyx/types/private_wireless_gateway_delete_response.py +12 -0
- telnyx/types/private_wireless_gateway_list_params.py +32 -0
- telnyx/types/private_wireless_gateway_list_response.py +15 -0
- telnyx/types/private_wireless_gateway_retrieve_response.py +12 -0
- telnyx/types/private_wireless_gateway_status.py +30 -0
- telnyx/types/public_internet_gateway_create_params.py +18 -0
- telnyx/types/public_internet_gateway_create_response.py +37 -0
- telnyx/types/public_internet_gateway_delete_response.py +37 -0
- telnyx/types/public_internet_gateway_list_params.py +34 -0
- telnyx/types/public_internet_gateway_list_response.py +40 -0
- telnyx/types/public_internet_gateway_retrieve_response.py +37 -0
- telnyx/types/push_credential.py +39 -0
- telnyx/types/push_credential_response.py +12 -0
- telnyx/types/pwg_assigned_resources_summary.py +15 -0
- telnyx/types/queue_retrieve_response.py +40 -0
- telnyx/types/queues/__init__.py +7 -0
- telnyx/types/queues/call_list_params.py +32 -0
- telnyx/types/queues/call_list_response.py +55 -0
- telnyx/types/queues/call_retrieve_response.py +52 -0
- telnyx/types/rcs_agent.py +37 -0
- telnyx/types/rcs_agent_message.py +77 -0
- telnyx/types/rcs_agent_message_param.py +79 -0
- telnyx/types/rcs_agent_response.py +12 -0
- telnyx/types/rcs_card_content.py +35 -0
- telnyx/types/rcs_card_content_param.py +36 -0
- telnyx/types/rcs_content_info.py +18 -0
- telnyx/types/rcs_content_info_param.py +18 -0
- telnyx/types/rcs_suggestion.py +124 -0
- telnyx/types/rcs_suggestion_param.py +126 -0
- telnyx/types/record.py +21 -0
- telnyx/types/record_param.py +11 -0
- telnyx/types/recording_delete_response.py +12 -0
- telnyx/types/recording_list_params.py +76 -0
- telnyx/types/recording_list_response.py +15 -0
- telnyx/types/recording_response_data.py +72 -0
- telnyx/types/recording_retrieve_response.py +12 -0
- telnyx/types/recording_transcription.py +36 -0
- telnyx/types/recording_transcription_delete_response.py +12 -0
- telnyx/types/recording_transcription_list_response.py +32 -0
- telnyx/types/recording_transcription_retrieve_response.py +12 -0
- telnyx/types/recordings/__init__.py +5 -0
- telnyx/types/recordings/action_delete_params.py +14 -0
- telnyx/types/region_in.py +12 -0
- telnyx/types/region_list_response.py +31 -0
- telnyx/types/regulatory_requirement_retrieve_params.py +33 -0
- telnyx/types/regulatory_requirement_retrieve_response.py +58 -0
- telnyx/types/replaced_link_click_webhook_event.py +32 -0
- telnyx/types/report_list_mdrs_params.py +36 -0
- telnyx/types/report_list_mdrs_response.py +74 -0
- telnyx/types/report_list_wdrs_params.py +61 -0
- telnyx/types/report_list_wdrs_response.py +99 -0
- telnyx/types/reports/__init__.py +15 -0
- telnyx/types/reports/cdr_usage_report_fetch_sync_params.py +23 -0
- telnyx/types/reports/cdr_usage_report_fetch_sync_response.py +42 -0
- telnyx/types/reports/mdr_usage_report.py +66 -0
- telnyx/types/reports/mdr_usage_report_create_params.py +21 -0
- telnyx/types/reports/mdr_usage_report_create_response.py +12 -0
- telnyx/types/reports/mdr_usage_report_delete_response.py +12 -0
- telnyx/types/reports/mdr_usage_report_fetch_sync_params.py +22 -0
- telnyx/types/reports/mdr_usage_report_fetch_sync_response.py +12 -0
- telnyx/types/reports/mdr_usage_report_list_params.py +23 -0
- telnyx/types/reports/mdr_usage_report_list_response.py +24 -0
- telnyx/types/reports/mdr_usage_report_retrieve_response.py +12 -0
- telnyx/types/requirement_group.py +47 -0
- telnyx/types/requirement_group_create_params.py +27 -0
- telnyx/types/requirement_group_list_params.py +33 -0
- telnyx/types/requirement_group_list_response.py +10 -0
- telnyx/types/requirement_group_update_params.py +23 -0
- telnyx/types/requirement_list_params.py +61 -0
- telnyx/types/requirement_list_response.py +53 -0
- telnyx/types/requirement_retrieve_response.py +50 -0
- telnyx/types/requirement_type_list_params.py +31 -0
- telnyx/types/requirement_type_list_response.py +15 -0
- telnyx/types/requirement_type_retrieve_response.py +12 -0
- telnyx/types/reserved_phone_number.py +38 -0
- telnyx/types/reserved_phone_number_param.py +11 -0
- telnyx/types/room.py +51 -0
- telnyx/types/room_composition.py +77 -0
- telnyx/types/room_composition_create_params.py +43 -0
- telnyx/types/room_composition_create_response.py +12 -0
- telnyx/types/room_composition_list_params.py +55 -0
- telnyx/types/room_composition_list_response.py +15 -0
- telnyx/types/room_composition_retrieve_response.py +12 -0
- telnyx/types/room_create_params.py +38 -0
- telnyx/types/room_create_response.py +12 -0
- telnyx/types/room_list_params.py +69 -0
- telnyx/types/room_list_response.py +15 -0
- telnyx/types/room_participant_list_params.py +96 -0
- telnyx/types/room_participant_list_response.py +15 -0
- telnyx/types/room_participant_retrieve_response.py +12 -0
- telnyx/types/room_recording_delete_bulk_params.py +83 -0
- telnyx/types/room_recording_delete_bulk_response.py +16 -0
- telnyx/types/room_recording_list_params.py +83 -0
- telnyx/types/room_recording_list_response.py +65 -0
- telnyx/types/room_recording_retrieve_response.py +62 -0
- telnyx/types/room_retrieve_params.py +12 -0
- telnyx/types/room_retrieve_response.py +12 -0
- telnyx/types/room_session.py +33 -0
- telnyx/types/room_update_params.py +38 -0
- telnyx/types/room_update_response.py +12 -0
- telnyx/types/rooms/__init__.py +22 -0
- telnyx/types/rooms/action_generate_join_client_token_params.py +21 -0
- telnyx/types/rooms/action_generate_join_client_token_response.py +24 -0
- telnyx/types/rooms/action_refresh_client_token_params.py +17 -0
- telnyx/types/rooms/action_refresh_client_token_response.py +19 -0
- telnyx/types/rooms/session_list_0_params.py +87 -0
- telnyx/types/rooms/session_list_0_response.py +15 -0
- telnyx/types/rooms/session_list_1_params.py +84 -0
- telnyx/types/rooms/session_list_1_response.py +15 -0
- telnyx/types/rooms/session_retrieve_params.py +12 -0
- telnyx/types/rooms/session_retrieve_participants_params.py +93 -0
- telnyx/types/rooms/session_retrieve_participants_response.py +15 -0
- telnyx/types/rooms/session_retrieve_response.py +12 -0
- telnyx/types/rooms/sessions/__init__.py +11 -0
- telnyx/types/rooms/sessions/action_end_response.py +15 -0
- telnyx/types/rooms/sessions/action_kick_params.py +21 -0
- telnyx/types/rooms/sessions/action_kick_response.py +15 -0
- telnyx/types/rooms/sessions/action_mute_params.py +21 -0
- telnyx/types/rooms/sessions/action_mute_response.py +15 -0
- telnyx/types/rooms/sessions/action_unmute_params.py +21 -0
- telnyx/types/rooms/sessions/action_unmute_response.py +15 -0
- telnyx/types/s3_configuration_data.py +21 -0
- telnyx/types/s3_configuration_data_param.py +21 -0
- telnyx/types/service_plan.py +7 -0
- telnyx/types/seti_retrieve_black_box_test_results_params.py +17 -0
- telnyx/types/seti_retrieve_black_box_test_results_response.py +30 -0
- telnyx/types/settings_param.py +24 -0
- telnyx/types/shared/__init__.py +19 -0
- telnyx/types/shared/connections_pagination_meta.py +17 -0
- telnyx/types/shared/doc_reqs_requirement_type.py +60 -0
- telnyx/types/shared/hosted_number.py +35 -0
- telnyx/types/shared/messaging_feature_set.py +16 -0
- telnyx/types/shared/messaging_hosted_number_order.py +42 -0
- telnyx/types/shared/metadata.py +24 -0
- telnyx/types/shared/number_health_metrics.py +21 -0
- telnyx/types/shared/phone_number_with_messaging_settings.py +67 -0
- telnyx/types/shared/porting_order_status.py +28 -0
- telnyx/types/shared/porting_orders_exception_type.py +40 -0
- telnyx/types/shared/room_participant.py +30 -0
- telnyx/types/shared/short_code.py +32 -0
- telnyx/types/shared/sim_card_status.py +40 -0
- telnyx/types/shared/simple_sim_card.py +100 -0
- telnyx/types/shared/sub_number_order_regulatory_requirement_with_value.py +23 -0
- telnyx/types/shared_params/__init__.py +3 -0
- telnyx/types/shared_params/sim_card_status.py +11 -0
- telnyx/types/short_code_list_params.py +39 -0
- telnyx/types/short_code_list_response.py +15 -0
- telnyx/types/short_code_retrieve_response.py +12 -0
- telnyx/types/short_code_update_params.py +12 -0
- telnyx/types/short_code_update_response.py +12 -0
- telnyx/types/sim_card.py +189 -0
- telnyx/types/sim_card_data_usage_notification.py +33 -0
- telnyx/types/sim_card_data_usage_notification_create_params.py +21 -0
- telnyx/types/sim_card_data_usage_notification_create_response.py +13 -0
- telnyx/types/sim_card_data_usage_notification_delete_response.py +13 -0
- telnyx/types/sim_card_data_usage_notification_list_params.py +20 -0
- telnyx/types/sim_card_data_usage_notification_list_response.py +15 -0
- telnyx/types/sim_card_data_usage_notification_retrieve_response.py +13 -0
- telnyx/types/sim_card_data_usage_notification_update_params.py +21 -0
- telnyx/types/sim_card_data_usage_notification_update_response.py +13 -0
- telnyx/types/sim_card_delete_params.py +15 -0
- telnyx/types/sim_card_delete_response.py +12 -0
- telnyx/types/sim_card_get_activation_code_response.py +18 -0
- telnyx/types/sim_card_get_device_details_response.py +32 -0
- telnyx/types/sim_card_get_public_ip_response.py +35 -0
- telnyx/types/sim_card_group.py +49 -0
- telnyx/types/sim_card_group_create_params.py +21 -0
- telnyx/types/sim_card_group_create_response.py +12 -0
- telnyx/types/sim_card_group_delete_response.py +12 -0
- telnyx/types/sim_card_group_list_params.py +26 -0
- telnyx/types/sim_card_group_list_response.py +59 -0
- telnyx/types/sim_card_group_retrieve_params.py +12 -0
- telnyx/types/sim_card_group_retrieve_response.py +12 -0
- telnyx/types/sim_card_group_update_params.py +21 -0
- telnyx/types/sim_card_group_update_response.py +12 -0
- telnyx/types/sim_card_groups/__init__.py +24 -0
- telnyx/types/sim_card_groups/action_list_params.py +34 -0
- telnyx/types/sim_card_groups/action_list_response.py +15 -0
- telnyx/types/sim_card_groups/action_remove_private_wireless_gateway_response.py +17 -0
- telnyx/types/sim_card_groups/action_remove_wireless_blocklist_response.py +17 -0
- telnyx/types/sim_card_groups/action_retrieve_response.py +17 -0
- telnyx/types/sim_card_groups/action_set_private_wireless_gateway_params.py +12 -0
- telnyx/types/sim_card_groups/action_set_private_wireless_gateway_response.py +17 -0
- telnyx/types/sim_card_groups/action_set_wireless_blocklist_params.py +12 -0
- telnyx/types/sim_card_groups/action_set_wireless_blocklist_response.py +17 -0
- telnyx/types/sim_card_groups/sim_card_group_action.py +44 -0
- telnyx/types/sim_card_list_params.py +66 -0
- telnyx/types/sim_card_list_response.py +15 -0
- telnyx/types/sim_card_list_wireless_connectivity_logs_params.py +17 -0
- telnyx/types/sim_card_list_wireless_connectivity_logs_response.py +106 -0
- telnyx/types/sim_card_order.py +89 -0
- telnyx/types/sim_card_order_create_params.py +15 -0
- telnyx/types/sim_card_order_create_response.py +12 -0
- telnyx/types/sim_card_order_list_params.py +95 -0
- telnyx/types/sim_card_order_list_response.py +15 -0
- telnyx/types/sim_card_order_preview_preview_params.py +18 -0
- telnyx/types/sim_card_order_preview_preview_response.py +49 -0
- telnyx/types/sim_card_order_retrieve_response.py +12 -0
- telnyx/types/sim_card_retrieve_params.py +19 -0
- telnyx/types/sim_card_retrieve_response.py +12 -0
- telnyx/types/sim_card_update_params.py +37 -0
- telnyx/types/sim_card_update_response.py +12 -0
- telnyx/types/sim_cards/__init__.py +22 -0
- telnyx/types/sim_cards/action_bulk_set_public_ips_params.py +13 -0
- telnyx/types/sim_cards/action_bulk_set_public_ips_response.py +41 -0
- telnyx/types/sim_cards/action_disable_response.py +16 -0
- telnyx/types/sim_cards/action_enable_response.py +16 -0
- telnyx/types/sim_cards/action_list_params.py +46 -0
- telnyx/types/sim_cards/action_list_response.py +15 -0
- telnyx/types/sim_cards/action_remove_public_ip_response.py +16 -0
- telnyx/types/sim_cards/action_retrieve_response.py +16 -0
- telnyx/types/sim_cards/action_set_public_ip_params.py +15 -0
- telnyx/types/sim_cards/action_set_public_ip_response.py +16 -0
- telnyx/types/sim_cards/action_set_standby_response.py +16 -0
- telnyx/types/sim_cards/action_validate_registration_codes_params.py +13 -0
- telnyx/types/sim_cards/action_validate_registration_codes_response.py +24 -0
- telnyx/types/sim_cards/sim_card_action.py +53 -0
- telnyx/types/sip_header.py +15 -0
- telnyx/types/sip_header_param.py +15 -0
- telnyx/types/siprec_connector_create_params.py +23 -0
- telnyx/types/siprec_connector_create_response.py +33 -0
- telnyx/types/siprec_connector_retrieve_response.py +33 -0
- telnyx/types/siprec_connector_update_params.py +23 -0
- telnyx/types/siprec_connector_update_response.py +33 -0
- telnyx/types/sound_modifications_param.py +24 -0
- telnyx/types/stock_exchange.py +33 -0
- telnyx/types/storage/__init__.py +17 -0
- telnyx/types/storage/bucket_create_presigned_url_params.py +16 -0
- telnyx/types/storage/bucket_create_presigned_url_response.py +23 -0
- telnyx/types/storage/buckets/__init__.py +13 -0
- telnyx/types/storage/buckets/pagination_meta_simple.py +17 -0
- telnyx/types/storage/buckets/ssl_certificate.py +48 -0
- telnyx/types/storage/buckets/ssl_certificate_create_params.py +17 -0
- telnyx/types/storage/buckets/ssl_certificate_create_response.py +12 -0
- telnyx/types/storage/buckets/ssl_certificate_delete_response.py +12 -0
- telnyx/types/storage/buckets/ssl_certificate_retrieve_response.py +12 -0
- telnyx/types/storage/buckets/usage_get_api_usage_params.py +27 -0
- telnyx/types/storage/buckets/usage_get_api_usage_response.py +66 -0
- telnyx/types/storage/buckets/usage_get_bucket_usage_response.py +29 -0
- telnyx/types/storage/migration_create_params.py +27 -0
- telnyx/types/storage/migration_create_response.py +12 -0
- telnyx/types/storage/migration_list_response.py +15 -0
- telnyx/types/storage/migration_params.py +53 -0
- telnyx/types/storage/migration_retrieve_response.py +12 -0
- telnyx/types/storage/migration_source_create_params.py +37 -0
- telnyx/types/storage/migration_source_create_response.py +12 -0
- telnyx/types/storage/migration_source_delete_response.py +12 -0
- telnyx/types/storage/migration_source_list_response.py +15 -0
- telnyx/types/storage/migration_source_params.py +41 -0
- telnyx/types/storage/migration_source_retrieve_response.py +12 -0
- telnyx/types/storage/migrations/__init__.py +5 -0
- telnyx/types/storage/migrations/action_stop_response.py +12 -0
- telnyx/types/storage_list_migration_source_coverage_response.py +23 -0
- telnyx/types/stream_bidirectional_codec.py +7 -0
- telnyx/types/stream_bidirectional_mode.py +7 -0
- telnyx/types/stream_bidirectional_target_legs.py +7 -0
- telnyx/types/stream_codec.py +7 -0
- telnyx/types/streaming_failed_webhook_event.py +70 -0
- telnyx/types/streaming_started_webhook_event.py +53 -0
- telnyx/types/streaming_stopped_webhook_event.py +53 -0
- telnyx/types/sub_number_order.py +47 -0
- telnyx/types/sub_number_order_cancel_response.py +12 -0
- telnyx/types/sub_number_order_list_params.py +33 -0
- telnyx/types/sub_number_order_list_response.py +15 -0
- telnyx/types/sub_number_order_regulatory_requirement.py +17 -0
- telnyx/types/sub_number_order_retrieve_params.py +20 -0
- telnyx/types/sub_number_order_retrieve_response.py +12 -0
- telnyx/types/sub_number_order_update_params.py +14 -0
- telnyx/types/sub_number_order_update_requirement_group_params.py +12 -0
- telnyx/types/sub_number_order_update_requirement_group_response.py +88 -0
- telnyx/types/sub_number_order_update_response.py +12 -0
- telnyx/types/sub_number_orders_report_create_params.py +31 -0
- telnyx/types/sub_number_orders_report_create_response.py +53 -0
- telnyx/types/sub_number_orders_report_download_response.py +7 -0
- telnyx/types/sub_number_orders_report_retrieve_response.py +53 -0
- telnyx/types/task_status.py +7 -0
- telnyx/types/telephony_credential.py +38 -0
- telnyx/types/telephony_credential_create_params.py +20 -0
- telnyx/types/telephony_credential_create_response.py +12 -0
- telnyx/types/telephony_credential_create_token_response.py +7 -0
- telnyx/types/telephony_credential_delete_response.py +12 -0
- telnyx/types/telephony_credential_list_params.py +47 -0
- telnyx/types/telephony_credential_list_response.py +15 -0
- telnyx/types/telephony_credential_retrieve_response.py +12 -0
- telnyx/types/telephony_credential_update_params.py +20 -0
- telnyx/types/telephony_credential_update_response.py +12 -0
- telnyx/types/telnyx_brand.py +142 -0
- telnyx/types/telnyx_campaign_csp.py +214 -0
- telnyx/types/telnyx_downstream_campaign.py +154 -0
- telnyx/types/texml/__init__.py +24 -0
- telnyx/types/texml/account_retrieve_recordings_json_params.py +30 -0
- telnyx/types/texml/account_retrieve_recordings_json_response.py +36 -0
- telnyx/types/texml/account_retrieve_transcriptions_json_params.py +17 -0
- telnyx/types/texml/account_retrieve_transcriptions_json_response.py +71 -0
- telnyx/types/texml/accounts/__init__.py +30 -0
- telnyx/types/texml/accounts/call_calls_params.py +169 -0
- telnyx/types/texml/accounts/call_calls_response.py +17 -0
- telnyx/types/texml/accounts/call_retrieve_calls_params.py +50 -0
- telnyx/types/texml/accounts/call_retrieve_calls_response.py +101 -0
- telnyx/types/texml/accounts/call_retrieve_response.py +72 -0
- telnyx/types/texml/accounts/call_siprec_json_params.py +61 -0
- telnyx/types/texml/accounts/call_siprec_json_response.py +40 -0
- telnyx/types/texml/accounts/call_streams_json_params.py +37 -0
- telnyx/types/texml/accounts/call_streams_json_response.py +29 -0
- telnyx/types/texml/accounts/call_update_params.py +46 -0
- telnyx/types/texml/accounts/call_update_response.py +72 -0
- telnyx/types/texml/accounts/calls/__init__.py +21 -0
- telnyx/types/texml/accounts/calls/recording_recording_sid_json_params.py +17 -0
- telnyx/types/texml/accounts/calls/recording_recording_sid_json_response.py +58 -0
- telnyx/types/texml/accounts/calls/recordings_json_recordings_json_params.py +43 -0
- telnyx/types/texml/accounts/calls/recordings_json_recordings_json_response.py +58 -0
- telnyx/types/texml/accounts/calls/recordings_json_retrieve_recordings_json_response.py +36 -0
- telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_params.py +21 -0
- telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_response.py +31 -0
- telnyx/types/texml/accounts/calls/stream_streaming_sid_json_params.py +18 -0
- telnyx/types/texml/accounts/calls/stream_streaming_sid_json_response.py +26 -0
- telnyx/types/texml/accounts/conference_retrieve_conferences_params.py +43 -0
- telnyx/types/texml/accounts/conference_retrieve_conferences_response.py +85 -0
- telnyx/types/texml/accounts/conference_retrieve_recordings_json_response.py +36 -0
- telnyx/types/texml/accounts/conference_retrieve_recordings_response.py +94 -0
- telnyx/types/texml/accounts/conference_retrieve_response.py +56 -0
- telnyx/types/texml/accounts/conference_update_params.py +29 -0
- telnyx/types/texml/accounts/conference_update_response.py +56 -0
- telnyx/types/texml/accounts/conferences/__init__.py +12 -0
- telnyx/types/texml/accounts/conferences/participant_participants_params.py +251 -0
- telnyx/types/texml/accounts/conferences/participant_participants_response.py +37 -0
- telnyx/types/texml/accounts/conferences/participant_retrieve_participants_response.py +81 -0
- telnyx/types/texml/accounts/conferences/participant_retrieve_response.py +52 -0
- telnyx/types/texml/accounts/conferences/participant_update_params.py +69 -0
- telnyx/types/texml/accounts/conferences/participant_update_response.py +52 -0
- telnyx/types/texml/accounts/recordings/__init__.py +3 -0
- telnyx/types/texml/accounts/transcriptions/__init__.py +7 -0
- telnyx/types/texml/accounts/transcriptions/json_retrieve_recording_transcription_sid_json_response.py +43 -0
- telnyx/types/texml/call_initiate_params.py +163 -0
- telnyx/types/texml/call_initiate_response.py +21 -0
- telnyx/types/texml/call_update_params.py +44 -0
- telnyx/types/texml/call_update_response.py +17 -0
- telnyx/types/texml/texml_get_call_recording_response_body.py +57 -0
- telnyx/types/texml/texml_recording_subresources_uris.py +11 -0
- telnyx/types/texml_application.py +125 -0
- telnyx/types/texml_application_create_params.py +114 -0
- telnyx/types/texml_application_create_response.py +12 -0
- telnyx/types/texml_application_delete_response.py +12 -0
- telnyx/types/texml_application_list_params.py +59 -0
- telnyx/types/texml_application_list_response.py +24 -0
- telnyx/types/texml_application_retrieve_response.py +12 -0
- telnyx/types/texml_application_update_params.py +114 -0
- telnyx/types/texml_application_update_response.py +12 -0
- telnyx/types/texml_secrets_params.py +18 -0
- telnyx/types/texml_secrets_response.py +18 -0
- telnyx/types/text_to_speech_generate_speech_params.py +26 -0
- telnyx/types/text_to_speech_list_voices_params.py +15 -0
- telnyx/types/text_to_speech_list_voices_response.py +29 -0
- telnyx/types/traffic_type.py +7 -0
- telnyx/types/transcription_webhook_event.py +72 -0
- telnyx/types/transport_protocol.py +7 -0
- telnyx/types/unwrap_webhook_event.py +138 -0
- telnyx/types/update_regulatory_requirement_param.py +19 -0
- telnyx/types/url_shortener_settings.py +30 -0
- telnyx/types/url_shortener_settings_param.py +30 -0
- telnyx/types/usage_payment_method.py +7 -0
- telnyx/types/usage_report_get_options_params.py +18 -0
- telnyx/types/usage_report_get_options_response.py +37 -0
- telnyx/types/usage_report_list_params.py +71 -0
- telnyx/types/usage_report_list_response.py +27 -0
- telnyx/types/user_address.py +77 -0
- telnyx/types/user_address_create_params.py +80 -0
- telnyx/types/user_address_create_response.py +12 -0
- telnyx/types/user_address_list_params.py +86 -0
- telnyx/types/user_address_list_response.py +15 -0
- telnyx/types/user_address_retrieve_response.py +12 -0
- telnyx/types/user_tag_list_params.py +20 -0
- telnyx/types/user_tag_list_response.py +31 -0
- telnyx/types/verification.py +42 -0
- telnyx/types/verification_retrieve_response.py +10 -0
- telnyx/types/verification_trigger_call_params.py +29 -0
- telnyx/types/verification_trigger_flashcall_params.py +18 -0
- telnyx/types/verification_trigger_sms_params.py +22 -0
- telnyx/types/verifications/__init__.py +6 -0
- telnyx/types/verifications/action_verify_params.py +18 -0
- telnyx/types/verifications/by_phone_number/__init__.py +6 -0
- telnyx/types/verifications/by_phone_number/action_verify_params.py +15 -0
- telnyx/types/verifications/by_phone_number/verify_verification_code_response.py +19 -0
- telnyx/types/verifications/by_phone_number_list_response.py +24 -0
- telnyx/types/verified_number.py +17 -0
- telnyx/types/verified_number_create_params.py +14 -0
- telnyx/types/verified_number_create_response.py +13 -0
- telnyx/types/verified_number_data_wrapper.py +12 -0
- telnyx/types/verified_number_list_params.py +22 -0
- telnyx/types/verified_number_list_response.py +24 -0
- telnyx/types/verified_numbers/__init__.py +7 -0
- telnyx/types/verified_numbers/action_submit_verification_code_params.py +11 -0
- telnyx/types/verify_profile.py +130 -0
- telnyx/types/verify_profile_create_params.py +116 -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_data.py +12 -0
- telnyx/types/verify_profile_list_params.py +29 -0
- telnyx/types/verify_profile_list_response.py +24 -0
- telnyx/types/verify_profile_retrieve_templates_response.py +17 -0
- telnyx/types/verify_profile_update_params.py +116 -0
- telnyx/types/verify_profile_update_template_params.py +12 -0
- telnyx/types/verify_profile_update_template_response.py +17 -0
- telnyx/types/vertical.py +25 -0
- telnyx/types/video_region.py +53 -0
- telnyx/types/video_region_param.py +56 -0
- telnyx/types/virtual_cross_connect_create_params.py +95 -0
- telnyx/types/virtual_cross_connect_create_response.py +129 -0
- telnyx/types/virtual_cross_connect_delete_response.py +129 -0
- telnyx/types/virtual_cross_connect_list_params.py +34 -0
- telnyx/types/virtual_cross_connect_list_response.py +132 -0
- telnyx/types/virtual_cross_connect_retrieve_response.py +129 -0
- telnyx/types/virtual_cross_connect_update_params.py +41 -0
- telnyx/types/virtual_cross_connect_update_response.py +129 -0
- telnyx/types/virtual_cross_connects_coverage_list_params.py +80 -0
- telnyx/types/virtual_cross_connects_coverage_list_response.py +58 -0
- telnyx/types/webhook_api_version.py +7 -0
- telnyx/types/webhook_delivery_list_params.py +106 -0
- telnyx/types/webhook_delivery_list_response.py +120 -0
- telnyx/types/webhook_delivery_retrieve_response.py +108 -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/types/wireguard_interface_create_params.py +21 -0
- telnyx/types/wireguard_interface_create_response.py +43 -0
- telnyx/types/wireguard_interface_delete_response.py +43 -0
- telnyx/types/wireguard_interface_list_params.py +34 -0
- telnyx/types/wireguard_interface_list_response.py +46 -0
- telnyx/types/wireguard_interface_retrieve_response.py +43 -0
- telnyx/types/wireguard_peer_create_params.py +18 -0
- telnyx/types/wireguard_peer_create_response.py +33 -0
- telnyx/types/wireguard_peer_delete_response.py +33 -0
- telnyx/types/wireguard_peer_list_params.py +34 -0
- telnyx/types/wireguard_peer_list_response.py +36 -0
- telnyx/types/wireguard_peer_patch.py +15 -0
- telnyx/types/wireguard_peer_retrieve_config_response.py +7 -0
- telnyx/types/wireguard_peer_retrieve_response.py +33 -0
- telnyx/types/wireguard_peer_update_params.py +15 -0
- telnyx/types/wireguard_peer_update_response.py +33 -0
- telnyx/types/wireless/__init__.py +17 -0
- telnyx/types/wireless/detail_records_report_create_params.py +15 -0
- telnyx/types/wireless/detail_records_report_create_response.py +12 -0
- telnyx/types/wireless/detail_records_report_delete_response.py +12 -0
- telnyx/types/wireless/detail_records_report_list_params.py +17 -0
- telnyx/types/wireless/detail_records_report_list_response.py +12 -0
- telnyx/types/wireless/detail_records_report_retrieve_response.py +12 -0
- telnyx/types/wireless/wdr_report.py +33 -0
- telnyx/types/wireless_blocklist.py +30 -0
- telnyx/types/wireless_blocklist_create_params.py +20 -0
- telnyx/types/wireless_blocklist_create_response.py +12 -0
- telnyx/types/wireless_blocklist_delete_response.py +12 -0
- telnyx/types/wireless_blocklist_list_params.py +26 -0
- telnyx/types/wireless_blocklist_list_response.py +15 -0
- telnyx/types/wireless_blocklist_retrieve_response.py +12 -0
- telnyx/types/wireless_blocklist_update_params.py +20 -0
- telnyx/types/wireless_blocklist_update_response.py +12 -0
- telnyx/types/wireless_blocklist_value_list_params.py +15 -0
- telnyx/types/wireless_blocklist_value_list_response.py +38 -0
- telnyx/types/wireless_retrieve_regions_params.py +15 -0
- telnyx/types/wireless_retrieve_regions_response.py +26 -0
- telnyx-3.0.0.dist-info/METADATA +472 -0
- telnyx-3.0.0.dist-info/RECORD +2028 -0
- telnyx-3.0.0.dist-info/WHEEL +4 -0
- telnyx-3.0.0.dist-info/licenses/LICENSE +7 -0
|
@@ -0,0 +1,2028 @@
|
|
|
1
|
+
telnyx/__init__.py,sha256=3-DgWAbbqhu1tue85Ax20QcixYIXWHkCM4hjXNG62YU,2624
|
|
2
|
+
telnyx/_base_client.py,sha256=NudksDGruga_s-IhQR4dYAEz7mc3QDOJfZPLjFdOghI,67047
|
|
3
|
+
telnyx/_client.py,sha256=vGlPEwGhoXQOgzbfdsawp33c-tdNzOD8xSZJ1esgPOU,174124
|
|
4
|
+
telnyx/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
|
+
telnyx/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
|
+
telnyx/_exceptions.py,sha256=D9kyl_aKwKQ1618MjC8SZPmL5qLUyfnZzyO9TTKS3mo,3220
|
|
7
|
+
telnyx/_files.py,sha256=sDy00jrSguKZf-dx9WnJzRyQplNz_b-_zMIVL31CjIo,3619
|
|
8
|
+
telnyx/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
|
|
9
|
+
telnyx/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
10
|
+
telnyx/_resource.py,sha256=B4Qg-uO2a34FQHHZskn89eVURqMuSvv1TdeBJH1z1rU,1100
|
|
11
|
+
telnyx/_response.py,sha256=4X24wr7uQn2hnM_b0xqQ92zSgxRFFfWG2lTg93-KzNo,28788
|
|
12
|
+
telnyx/_streaming.py,sha256=OfSFcMQJ_mnvfkbIdOG7Ajp0SMbXnOJSga4xXHjNAJk,10100
|
|
13
|
+
telnyx/_types.py,sha256=Du3G2vdqeLhhdJZ4Jtck4vOqEvAKI9rB1FnrwB1b_k8,7236
|
|
14
|
+
telnyx/_version.py,sha256=PcVJIzDwNNOozh9Qdtzj0LEcV-u8Qkrmu_0PPylxiXs,158
|
|
15
|
+
telnyx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
telnyx/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
|
+
telnyx/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
18
|
+
telnyx/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
|
|
19
|
+
telnyx/_utils/_logs.py,sha256=0TK41m0v92Gj1abmzI7B2Ogm7Mcu_J9hiz8mkrF5cIQ,774
|
|
20
|
+
telnyx/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
21
|
+
telnyx/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
22
|
+
telnyx/_utils/_resources_proxy.py,sha256=4CCGhESs3yjs_0is3o1rPOg0T_k20lTYZpIFGAUZQCw,589
|
|
23
|
+
telnyx/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
24
|
+
telnyx/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
25
|
+
telnyx/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
26
|
+
telnyx/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
27
|
+
telnyx/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
28
|
+
telnyx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
29
|
+
telnyx/resources/__init__.py,sha256=YdEPEfdK5zpqzCb5JF9PzIMDBqK9P14TUvHuDuQXVww,86014
|
|
30
|
+
telnyx/resources/access_ip_address.py,sha256=GHrKaYv0pxX2NrECShHPxibCq1mpXXEOOTXFSTDNUVQ,17519
|
|
31
|
+
telnyx/resources/access_ip_ranges.py,sha256=Xb9w6OlrM6aphz9CfktBZDvespX13tLQWMiZFK46JN0,14210
|
|
32
|
+
telnyx/resources/advanced_orders.py,sha256=ZDRoBXubjGtwUW6EtdDw2Hr1nqM_4gU-Ldqy17gP6Fw,18315
|
|
33
|
+
telnyx/resources/audit_events.py,sha256=986wcutKpMGXoSP12B0wGvEdon7-FG8GjK9cme4eqxs,7811
|
|
34
|
+
telnyx/resources/authentication_providers.py,sha256=DP1Lw31wRo1r3PEQN1js9CaaLQxVuCsU_8RsMdU0lZE,26765
|
|
35
|
+
telnyx/resources/available_phone_number_blocks.py,sha256=ijJZLzMq7rtiulhd2bNXvMwvdfyAFrIUZLQ1LsqJHn4,7599
|
|
36
|
+
telnyx/resources/available_phone_numbers.py,sha256=133qCkZQ_GizFnj97IRR-WfuHko1tOL_XARXaThtNIY,7782
|
|
37
|
+
telnyx/resources/balance.py,sha256=bwStGzjGLsKrgPzsQqucyp3bL75dcVoyvQSfS6k5K4I,4969
|
|
38
|
+
telnyx/resources/billing_groups.py,sha256=Hs2cYzKJ0HHEeyRegEnFiGR4Tld5-Q0sqAfUimBNG58,19276
|
|
39
|
+
telnyx/resources/bulk_sim_card_actions.py,sha256=JRa8cQ4aR2QiLPjl9s4PCpEnowwEM1BzEEsTJWgBLgs,11307
|
|
40
|
+
telnyx/resources/call_control_applications.py,sha256=GG0LkohbuRY-B8CRBnZFp6A866heZllXWf78sXhTpLE,36922
|
|
41
|
+
telnyx/resources/call_events.py,sha256=58a2gY_dMwCXql6oDTiTuL8B7W2iPmcwmbmH7rcae40,8329
|
|
42
|
+
telnyx/resources/channel_zones.py,sha256=Han8hb-DTfVk7N5XQds0aEE5NRpGiW_F3ncOIqxbwpQ,11292
|
|
43
|
+
telnyx/resources/charges_breakdown.py,sha256=SOb3JJVHxIq3hiAhVwjZbKZ8Zi5BngHLfQNM7kSRCMY,8414
|
|
44
|
+
telnyx/resources/charges_summary.py,sha256=QFdhiLvRNPsbvM7TQcUC2XZ1DR8XlF1MPp2rrf2HBTk,7782
|
|
45
|
+
telnyx/resources/comments.py,sha256=-e8ZUBleqh2GtuPruvfbj43ezVxkcKCfQ7lfHaNS4pU,16165
|
|
46
|
+
telnyx/resources/connections.py,sha256=Gl3_gSsus0_NLLXqi6P-B9-5jtEt2NkUQ6CdqPWNaQ8,17040
|
|
47
|
+
telnyx/resources/country_coverage.py,sha256=t2Z5dLWi9ZyR6H5zQ1HQKs4Q3j-bdbZJrjBH-TjMPTg,8688
|
|
48
|
+
telnyx/resources/custom_storage_credentials.py,sha256=VqxghisZjF2RCObzmVAWOJUzw2dJ7aOnsDALzTEeRRk,18535
|
|
49
|
+
telnyx/resources/customer_service_records.py,sha256=U5G-3yTKp8E_Qci4_fqqy_LpR4pU5VPn4kkM2PVhVfM,20336
|
|
50
|
+
telnyx/resources/detail_records.py,sha256=ifrZ6QSXYq36RWZVdf2UrSjiYYLLhG_WDn7ya_AY0Mw,7826
|
|
51
|
+
telnyx/resources/dialogflow_connections.py,sha256=D_mWEPQLwMnHbt288JauZW3IFFj4GBmFGCjh0WLYkGM,21486
|
|
52
|
+
telnyx/resources/document_links.py,sha256=vs19uL811QIkkzZV4i7c2Nv70OosCfwXC10D-beILV8,7446
|
|
53
|
+
telnyx/resources/documents.py,sha256=LIa5GsPE37Zm9jqI3hJqQA1qPyK1ZO2k_Izpdlwrzio,34690
|
|
54
|
+
telnyx/resources/dynamic_emergency_addresses.py,sha256=zA0sx_lrF8nOl03-BTCfw3K1iEUkijHqfI974m-QyVU,19961
|
|
55
|
+
telnyx/resources/dynamic_emergency_endpoints.py,sha256=LrgALacXNppdn94Hl3tOjQWIGQ2x_CDEzXp2r8M0vVg,18692
|
|
56
|
+
telnyx/resources/enum.py,sha256=kqfYfLLBYyW4G56DIMU9ewIX6a6nE2HaZlsVmwhlSJc,7191
|
|
57
|
+
telnyx/resources/fax_applications.py,sha256=w5eZtWdOcB654sXF__YrO78Ndb-ck7ICZqBZYGwxSAg,31701
|
|
58
|
+
telnyx/resources/fqdn_connections.py,sha256=i4TqDwR6jJLhNhDObdRNp2dy7JcXhlH9cVWq4kSX-04,41599
|
|
59
|
+
telnyx/resources/fqdns.py,sha256=ysXTsAWQRySQ_I931Php2knv9iaHVh7yc0GZeiYbkSI,22533
|
|
60
|
+
telnyx/resources/global_ip_allowed_ports.py,sha256=RsEwITcIoawjcblxjOGGjllsci3CBxGgLUatARG3S-0,5544
|
|
61
|
+
telnyx/resources/global_ip_assignment_health.py,sha256=Gx0qunKqMcECfb2pUv7Dz50202Tn7jZjoY7I5newhQA,7580
|
|
62
|
+
telnyx/resources/global_ip_assignments.py,sha256=6w95g2t643tAfODunogA20Ww_mzH20eVIkLAytDm1TA,20921
|
|
63
|
+
telnyx/resources/global_ip_assignments_usage.py,sha256=iU41UKONKHN-O6XvH_-48LfRXI5cVdCCSgrKoOXhD8A,7566
|
|
64
|
+
telnyx/resources/global_ip_health_check_types.py,sha256=GZUZ7gTOusYv8hASJEzdSF4PmeSzNxLriO5_ZTQoB_8,5751
|
|
65
|
+
telnyx/resources/global_ip_health_checks.py,sha256=__PAA7hM5DCEP19Zqlu568nruLGKBYlNq8-U73su4o4,17659
|
|
66
|
+
telnyx/resources/global_ip_latency.py,sha256=x649cwVtRJTG3xrzMMaxJewjxFy0zavaMWqunC8D7PY,6949
|
|
67
|
+
telnyx/resources/global_ip_protocols.py,sha256=ddQzXj1wsTGsG8lEWSYS2UQN_fL1y10dhJ1Udm8_fQE,5385
|
|
68
|
+
telnyx/resources/global_ip_usage.py,sha256=zpw6M5JpOcovGtEZL3Uhg7Jh6TNGxROncnVxwsF7tGY,6805
|
|
69
|
+
telnyx/resources/global_ips.py,sha256=YAZa4LWO5ZuQ2N4Nx8Di73K4vyGHIPDBcZZ6dWXOvBk,16283
|
|
70
|
+
telnyx/resources/inbound_channels.py,sha256=NnyTJkXx7gCzUzlZ_v4BQtL6Q5yUw60ImsTcKVPkUDo,9817
|
|
71
|
+
telnyx/resources/integration_secrets.py,sha256=HhwmSd058PpWHkW2V3tmmW1H8d9p6uSosqfDuJVeegQ,15615
|
|
72
|
+
telnyx/resources/inventory_coverage.py,sha256=ucRQVQ3O5-9T91aca7nImiTrET-0vdDMsReWRNVLuNE,7505
|
|
73
|
+
telnyx/resources/invoices.py,sha256=2ejAVJvZz7PS2JCSNq528y1aFjzcem_kCTHKL19kYrY,10487
|
|
74
|
+
telnyx/resources/ip_connections.py,sha256=7IcVMTYhCgsS0UW45W-kHZQdUBmXYUbVapVOLCJBAUg,40334
|
|
75
|
+
telnyx/resources/ips.py,sha256=154lrl31rzkJ2f1BgKlDJEhVuvdLt4tpvcbe2UwBoxM,20656
|
|
76
|
+
telnyx/resources/ledger_billing_group_reports.py,sha256=UVvbGQ9DmhKbCNcDYo7ujIGCAIKoaIlHEYO5caW4x-8,10675
|
|
77
|
+
telnyx/resources/list.py,sha256=ZGu-umIZbbuatV5jRdjEqhJESYq7U4e--IdXVtIwrGc,8302
|
|
78
|
+
telnyx/resources/media.py,sha256=-mC535aCFJ00ZHr_S6rcmnHI8YMsELEDMZv6uAPAKpE,26494
|
|
79
|
+
telnyx/resources/messaging_hosted_numbers.py,sha256=6AoXdK1rvBbNz0juhpazF6Y4PbaB86JL7dLXJ0AgoJU,6529
|
|
80
|
+
telnyx/resources/messaging_numbers_bulk_updates.py,sha256=jfIi2N11LhS-_A8mTnDh8kQ2iUGXpUn8NOgxixN9dRY,11597
|
|
81
|
+
telnyx/resources/messaging_optouts.py,sha256=GdqvinOpImr78-AgZnAe5XH4m_UGyD1MeZUL_v4rJJs,8467
|
|
82
|
+
telnyx/resources/messaging_url_domains.py,sha256=2Ji2v5tqS5bTUessdxQ_GDvVsVKP6gp2ERz3kiNTHeI,6960
|
|
83
|
+
telnyx/resources/messsages.py,sha256=M75RfPNqEIVrTzegWSjOHrzGbsvqDl6c4nr_XNMnU6Y,8083
|
|
84
|
+
telnyx/resources/mobile_network_operators.py,sha256=ftSF8KpNCIzdT4N3PMv-Tj2qNyheQa5CGj61NQdL1nY,8957
|
|
85
|
+
telnyx/resources/mobile_push_credentials.py,sha256=w67yb5na72PgoCaBwmM-iKQG9bZqOAukS5-Vrl99w9g,23086
|
|
86
|
+
telnyx/resources/network_coverage.py,sha256=IKY4sZoWShub4PVATjSETS6Ta0I7cdCsPAjS_qY6WkY,8155
|
|
87
|
+
telnyx/resources/notification_channels.py,sha256=1UvffzOb62hKbzV6m6LYpB8bHv4KtCRMF3UJx1bUTvc,23559
|
|
88
|
+
telnyx/resources/notification_event_conditions.py,sha256=ijuLgyT4SEIAeyIJD7PWxKZW_CxNUQML21oVyd_X9gc,8516
|
|
89
|
+
telnyx/resources/notification_events.py,sha256=DRRY5Bgcnf3bbQa4Qy41ZNz-KekZH67CAuYxybowiCU,6921
|
|
90
|
+
telnyx/resources/notification_profiles.py,sha256=AY551YPKyo9rCeD0CUZZLxYKuBMEKYoddO0HqV0UhDc,20240
|
|
91
|
+
telnyx/resources/notification_settings.py,sha256=9ugEtsaob09ChdneOmJKXaqvBPoQQd5K-9CUttQu0W0,19275
|
|
92
|
+
telnyx/resources/number_block_orders.py,sha256=1r-dSDGJS9g-etHJu9Lmx3pLMGfQFmlYmPW2IqJNL6E,15948
|
|
93
|
+
telnyx/resources/number_lookup.py,sha256=_rfXpdsRgZUr65KM3SXoVFXyTeA3p2yH9DfxFCPs8ic,7041
|
|
94
|
+
telnyx/resources/number_order_phone_numbers.py,sha256=7FxHZqE1yz02zQYPe7w0n9NyDIbRLx2S4NtVqz0uAEw,19830
|
|
95
|
+
telnyx/resources/number_orders.py,sha256=unHJ9eknV1DERM8FK65lba4Pd9Hja_rZrlrjuPglU8k,19934
|
|
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
|
|
100
|
+
telnyx/resources/ota_updates.py,sha256=WtY8r9GqW5zn538hfaV75o_R0VgHMi5VTpxGhxOH2CM,10298
|
|
101
|
+
telnyx/resources/outbound_voice_profiles.py,sha256=mpzjFz4QL2fo4ix4mgzDh_bBXJ8Mum0M7F1ZfU2I1JY,34649
|
|
102
|
+
telnyx/resources/partner_campaigns.py,sha256=AujfpJgchZRxsOJNxI6eJsNnKXL14T5LBn4W03DSzDE,25039
|
|
103
|
+
telnyx/resources/phone_number_assignment_by_profile.py,sha256=HZB809lwbvxzPA_4cxLzFzWHe1e73WwmXBQkJ6dvZAM,19145
|
|
104
|
+
telnyx/resources/phone_number_campaigns.py,sha256=9lAWjEVeEeAj98nmEbd5civ2vD_5kG0TqB2bUa2fotg,22963
|
|
105
|
+
telnyx/resources/phone_numbers_regulatory_requirements.py,sha256=YVTS_W0SGEVGyBTjEXHx-j_1nPYeNRPptdqIjlatTgY,8042
|
|
106
|
+
telnyx/resources/portability_checks.py,sha256=SNMtbheXGQanlQAZyDkYHsfmz0C66CHrMchS5hbnl80,6793
|
|
107
|
+
telnyx/resources/porting_phone_numbers.py,sha256=g9CkZKCzOghmBAjjgBYVKdtSy4Wa7oeW7OLaqb-MhGU,7674
|
|
108
|
+
telnyx/resources/private_wireless_gateways.py,sha256=YT5Pk5Si5_uRonCetbgpoveAXS1IYVy0REgvrfh56E4,20600
|
|
109
|
+
telnyx/resources/public_internet_gateways.py,sha256=ViG1pk7KacxQZxS8vjqiWCcuqwAy-c_nQ46C4jHZIYI,18304
|
|
110
|
+
telnyx/resources/recording_transcriptions.py,sha256=YF16HMQwLB9O3Pjd69t-6KD6rH87I-EPBDgqPi3Ucps,12724
|
|
111
|
+
telnyx/resources/regions.py,sha256=Wan4QiVvyq9ecWyr2O8-Dl022zYTw6S0U3zHmAPHf48,4963
|
|
112
|
+
telnyx/resources/regulatory_requirements.py,sha256=Ha3huc4u1Napee_4LLJ_04v9pZ-V7RiY8zsKr_2SKrQ,7493
|
|
113
|
+
telnyx/resources/requirement_groups.py,sha256=1mctlV_YF0BVfYJMiWxQBeNqdw4WdDwv0LqjoMzkKKE,24714
|
|
114
|
+
telnyx/resources/requirement_types.py,sha256=vpVwQ956ttN4VjUsLhZoC7pb9q7KO_aUF80q_fDEaF8,10797
|
|
115
|
+
telnyx/resources/requirements.py,sha256=MkXkO93aA35G9QKYgsGKSJgoOoYwU6UtecWS6kDKewg,11554
|
|
116
|
+
telnyx/resources/room_compositions.py,sha256=RrgXQDTI-9EDNXnn7UB6tvE87g5mlY9UssDOkOkm7tM,21054
|
|
117
|
+
telnyx/resources/room_participants.py,sha256=JbHcLvEIEUcTAjeBde1omiwhrLcu9vKDZvkj8Gj9-Xs,11428
|
|
118
|
+
telnyx/resources/room_recordings.py,sha256=1OGb_jq8-piZO0QkkiMRAsq4mWdiah_YtDTRnWHLNxI,19391
|
|
119
|
+
telnyx/resources/seti.py,sha256=XnS9rB8EVKjJ2sBVB7LYoMym7YFWhEn3jl2J1tc8vlg,6905
|
|
120
|
+
telnyx/resources/short_codes.py,sha256=OyPoxNInsowFYbAurniwOuTyG048M3uKh_xauNBHN18,13969
|
|
121
|
+
telnyx/resources/sim_card_data_usage_notifications.py,sha256=u_pHX_3RtIXJq7H3s4XOHnftovpR9BdDKH9kOoU-ero,23645
|
|
122
|
+
telnyx/resources/sim_card_order_preview.py,sha256=wxUQ8qPSDUhqLWrbj7n3pE5_d_ZXyt4aTF_ToMaQpBE,7302
|
|
123
|
+
telnyx/resources/sim_card_orders.py,sha256=uO2pWSd9ei2dIuGQYQMYx4Tl8SvvK0wBPimpqz-RAfk,14822
|
|
124
|
+
telnyx/resources/siprec_connectors.py,sha256=m5bvbOtlS_DtIrLaZXCOPMT6_cCxI-juslG3vl9ka1Q,18573
|
|
125
|
+
telnyx/resources/sub_number_orders.py,sha256=ONRowPczElMqNYkXynDTy5tZK2Wud44h66oWaVdrKvM,22839
|
|
126
|
+
telnyx/resources/sub_number_orders_report.py,sha256=ZzYP21kwHJYmgrlgnAqfXgvFMUSdJ8H6tpO7yI6XO44,15726
|
|
127
|
+
telnyx/resources/telephony_credentials.py,sha256=drtv_ygtCfWL_Ckh4oQAYPALlUApC3DbwKOwu1zvOgk,26344
|
|
128
|
+
telnyx/resources/texml_applications.py,sha256=1nvAwElRcyHPpiEMauFLqSlrwY99OJNjNlfXi2oPzMg,34482
|
|
129
|
+
telnyx/resources/text_to_speech.py,sha256=Y_pQl37dp07mkst_4qknNdIxYQVvABw6VYBtQZVQvcE,12476
|
|
130
|
+
telnyx/resources/usage_reports.py,sha256=M2ptYt0Ul8StbJbHYMTlkHI6ozu4v0u3g0m5AaqHRuc,15518
|
|
131
|
+
telnyx/resources/user_addresses.py,sha256=CqeOLO27ee6dF88k7sKGI4TLL34TWM45gH-_ckdprB4,22738
|
|
132
|
+
telnyx/resources/user_tags.py,sha256=pCY1ykwgtc78yqj28Q04bGarABk_eDHe4lVZacxB1SM,6365
|
|
133
|
+
telnyx/resources/verify_profiles.py,sha256=0gMEoLGLd8PhHuchBGNVA4pnM3CeDWgCf_U4xvxxdHo,32424
|
|
134
|
+
telnyx/resources/virtual_cross_connects.py,sha256=JDAXB9dhVNn-qAiTyNDAgYELHdFwGoqS6yM5l4NrDZA,34715
|
|
135
|
+
telnyx/resources/virtual_cross_connects_coverage.py,sha256=LE0l4hJJCO8jsaanpA85fa_wGNHgsZO4yPpf1RoNRCQ,9320
|
|
136
|
+
telnyx/resources/webhook_deliveries.py,sha256=PKo-2i1Ndhe3i7zozog3d0Ko5dznDshsOqLeogdXah0,11174
|
|
137
|
+
telnyx/resources/webhooks.py,sha256=2aBYtHvVy4Ngpq_GEEMk0U6Vn_LKFwommXaguEjhhj0,962
|
|
138
|
+
telnyx/resources/well_known.py,sha256=3Nm9gDqj9nDawaMoSj-yy3z_3dhDdBjK0NqOR0NJg4I,8881
|
|
139
|
+
telnyx/resources/wireguard_interfaces.py,sha256=wxfoFKlIQ4We6Zi9huXfN2Y_xAYZN5_IK6ziEGggM4I,18414
|
|
140
|
+
telnyx/resources/wireguard_peers.py,sha256=FefL6ivnxn6uq2vJY6hvzCzTm1wlqWiifc4D81QYSSE,24615
|
|
141
|
+
telnyx/resources/wireless_blocklist_values.py,sha256=uT-_XtdN7WLWGnB6woQp7OWqVNsS7S_KjQp2Yy5J3E0,7287
|
|
142
|
+
telnyx/resources/wireless_blocklists.py,sha256=qqtwm-PA2dh2qOOL-kin9sIfxJcI5cfhrEZNdZSRDsw,22754
|
|
143
|
+
telnyx/resources/actions/__init__.py,sha256=VN20oGg2PPDqNzueSMHE9Naa3YRB2FmdkXAAN_4bFIg,1517
|
|
144
|
+
telnyx/resources/actions/actions.py,sha256=vwopKPMSsjSTDKeSP0xEjAvI8pinCNbmKcUPKOBRqOQ,4828
|
|
145
|
+
telnyx/resources/actions/purchase.py,sha256=iaRrU3gGNod4JOsRIckHN8YrdvcSIyKtuZngzU5WFLM,9215
|
|
146
|
+
telnyx/resources/actions/register.py,sha256=CO2XVKneKsPPRH_W7d0BRHyg8XyMybgG6q2qhX9V3HY,8171
|
|
147
|
+
telnyx/resources/addresses/__init__.py,sha256=WzZO1-fZmX_-MJHYGQWkSL0Y-UdfQAOL2AHNC5a5Vdc,1054
|
|
148
|
+
telnyx/resources/addresses/actions.py,sha256=Cq_AjvGER7JKqmTQmjoAIYv2TMOkKo96HvamCs0YsiI,12490
|
|
149
|
+
telnyx/resources/addresses/addresses.py,sha256=87tRjzsAauMnzRu6cjO2vcEaRHFZ0VXpt2408go5rsU,26400
|
|
150
|
+
telnyx/resources/ai/__init__.py,sha256=vRse5K6qkv7nfwqZETr-is6oSj88tp2hrbx1X6Xx7PM,3885
|
|
151
|
+
telnyx/resources/ai/ai.py,sha256=b92dl8eskEa2xlq_STUdiLB2xOT0TmJaK914LrEIsC4,18009
|
|
152
|
+
telnyx/resources/ai/audio.py,sha256=4s-xiVp_wFBLDOfN5ZAxsnQbBdKgRhqjZHhfmN9YkCo,10485
|
|
153
|
+
telnyx/resources/ai/chat.py,sha256=_XX3x2FxTZVHBNYT-wg23xqRR9sAIjsmS_fEgb5mEL8,18414
|
|
154
|
+
telnyx/resources/ai/clusters.py,sha256=ysG8tYAcsl-vZxiQ4lt6Yxj9Oh6hYgZAD4fJVoSJrL0,23144
|
|
155
|
+
telnyx/resources/ai/assistants/__init__.py,sha256=JswsU3VzDvDn-4-0IVH0BGY9ji3RY_pYl-Aib09q0ks,3064
|
|
156
|
+
telnyx/resources/ai/assistants/assistants.py,sha256=JRPCUov-qhSFGFXxEIP7PgXHRVSdwfkDzsPtJCZSVlM,56109
|
|
157
|
+
telnyx/resources/ai/assistants/canary_deploys.py,sha256=4QRGhoMa50uTmHtRzY_xZ1sGNML6MTezTZenM5nijEc,18193
|
|
158
|
+
telnyx/resources/ai/assistants/scheduled_events.py,sha256=aLhkjbdXD63IuAEXS_HCbk3QeH-7hxTgxJomhjSnppo,22259
|
|
159
|
+
telnyx/resources/ai/assistants/tools.py,sha256=NigYe9zQwwlB9mL9oryBPUnerc2ur03z3em8Tvo9ByY,7367
|
|
160
|
+
telnyx/resources/ai/assistants/versions.py,sha256=7wn7059ZiOl85xnxfr_KJIBTHohYe7BBHaUwn4sX3pE,29048
|
|
161
|
+
telnyx/resources/ai/assistants/tests/__init__.py,sha256=wOXvaXKdQlfkKkZtgZg11ySS8bzss5842gqBhGKmpVI,1466
|
|
162
|
+
telnyx/resources/ai/assistants/tests/runs.py,sha256=qTKnqb_8xCpIlNaI3nakcz6I0m52sDR-xllQVNQOb6Y,14621
|
|
163
|
+
telnyx/resources/ai/assistants/tests/tests.py,sha256=dwrqw6FV0lZKtLDAkSLC8wh45zV5qOTXNxoN6_xwnCI,29714
|
|
164
|
+
telnyx/resources/ai/assistants/tests/test_suites/__init__.py,sha256=wTdI7qo8_d2SnlfmHLKyHgFyh7-OfkBfgVXt2FpT57Q,1029
|
|
165
|
+
telnyx/resources/ai/assistants/tests/test_suites/runs.py,sha256=O6aG_E7HiMaZrBuqtl4GxNrmGXOraDxMJJs3NOJgKEo,11862
|
|
166
|
+
telnyx/resources/ai/assistants/tests/test_suites/test_suites.py,sha256=Vj56vUukvEd6sV9j78d6N24MaeL4KaQAnqPXj4KjtUs,6341
|
|
167
|
+
telnyx/resources/ai/conversations/__init__.py,sha256=E0T0_VEZjLTBGAbDf9LZGPaAZCns8GrSTW6oXkPA_d4,2137
|
|
168
|
+
telnyx/resources/ai/conversations/conversations.py,sha256=iGfFcfJIdd5jxCVsIodkI4i4h9PyNu4IymS4RmobAXk,38859
|
|
169
|
+
telnyx/resources/ai/conversations/insights.py,sha256=Was9S1yLcgLJJgSnrIcen70hjoUHI864QlcRqOXYC3U,20496
|
|
170
|
+
telnyx/resources/ai/conversations/messages.py,sha256=6ca-yu30N_DWsaaQrVuhglmWI59kN4vqZG5ZAP-mFAQ,6162
|
|
171
|
+
telnyx/resources/ai/conversations/insight_groups/__init__.py,sha256=BECCfROCjeQXyebDMpckN8GnyXA8uwQfzBiZXMVgqjA,1120
|
|
172
|
+
telnyx/resources/ai/conversations/insight_groups/insight_groups.py,sha256=HVHQMadZkYXinrIKXCalkIeDCMXNFF6rrWJMbMISRs0,22303
|
|
173
|
+
telnyx/resources/ai/conversations/insight_groups/insights.py,sha256=z4h5BDWnJwWL2PEkegexxB7DhfSpFWzloVGRI8sDfVs,10032
|
|
174
|
+
telnyx/resources/ai/embeddings/__init__.py,sha256=PSS3P26wVVgM4MjdKqw87xocgC3_jV1ohpUVQ2xeixM,1067
|
|
175
|
+
telnyx/resources/ai/embeddings/buckets.py,sha256=ww4lcCrYZHdSqyuFF3lBUZ9C6gjxlYoEb36CexGRWUs,11519
|
|
176
|
+
telnyx/resources/ai/embeddings/embeddings.py,sha256=9iQMrL-8L0h0iSoE7oVPLn4FokfHYvzTXBauA9tCIQM,29213
|
|
177
|
+
telnyx/resources/ai/fine_tuning/__init__.py,sha256=kpo9Jeem0KeFxdH3eUY238GNNk_4jqUsUDUi02rTbC4,1029
|
|
178
|
+
telnyx/resources/ai/fine_tuning/fine_tuning.py,sha256=eWYzKDMmaQeFHdfzgSw_DNeoRcx66nOlXonnVuPHHhU,3707
|
|
179
|
+
telnyx/resources/ai/fine_tuning/jobs.py,sha256=Fq1l0y5iqZ2BpQC9x03p6E4CBKivIHKSQUw6Yp_t3Jw,15140
|
|
180
|
+
telnyx/resources/brand/__init__.py,sha256=eroGmcDdAyDxyGLR8DsFe_yCAxgH9bJSbUtSLZ8UiN8,1107
|
|
181
|
+
telnyx/resources/brand/brand.py,sha256=XkS7mDGEZGaXp7tQjqWunugLEmIjJU5_uLP6mIEOkm8,49706
|
|
182
|
+
telnyx/resources/brand/external_vetting.py,sha256=IJ-T2y-gVSyql0tJafJTXzvepisywXK1Tmus741VS6o,15226
|
|
183
|
+
telnyx/resources/bundle_pricing/__init__.py,sha256=Rfq97xRuf9wsjsRAyhqUjYqFNvNmuWtn_HjpEFlUHl0,1715
|
|
184
|
+
telnyx/resources/bundle_pricing/billing_bundles.py,sha256=qMCmAtoj48PbHObmv53B-64OF_pUFnH9FhzW0EhVSfQ,11975
|
|
185
|
+
telnyx/resources/bundle_pricing/bundle_pricing.py,sha256=d3L80tHqOCfcTxVQ7c6DDLfO-5FkG7HMlOfTLVz52-A,5371
|
|
186
|
+
telnyx/resources/bundle_pricing/user_bundles.py,sha256=d44DFB_SSgXQcFceR3vY4wsQ8pukdATqWoSBoLUcYLA,28714
|
|
187
|
+
telnyx/resources/calls/__init__.py,sha256=zQUq3YFSSLeXKg5bb5oG2Hh7VJsNmm_Z5nm68sU98LY,1002
|
|
188
|
+
telnyx/resources/calls/actions.py,sha256=I0_s1pjfIZdUhw6huZmCrgdkxb6Fj2Sv4d2I4yChx4Y,308792
|
|
189
|
+
telnyx/resources/calls/calls.py,sha256=bqR7LnNkjpFxD0S_g6fhosmjGF8G7kv6Ebm_zOXNVkk,43705
|
|
190
|
+
telnyx/resources/campaign/__init__.py,sha256=MGF-U4sQL_jE6xQKvsDXhucn5snUbtl1naBlZDaujPk,1452
|
|
191
|
+
telnyx/resources/campaign/campaign.py,sha256=CDmsWo_1eAg9tIdAu9SwU-8xTusuxSU76o2V_mKuCiI,41458
|
|
192
|
+
telnyx/resources/campaign/osr.py,sha256=q-xqVNbfaDh73WYjcwNiPmQ9kUFO0lncRaAKcdIojkk,5764
|
|
193
|
+
telnyx/resources/campaign/usecase.py,sha256=ffkuYfHHU93B4LITRJJ8iyAfa_q30FH0KAHAhBSQ8Ic,6092
|
|
194
|
+
telnyx/resources/campaign_builder/__init__.py,sha256=mXUQxXn8C_VC9EfazTXR2Uby4-ZazQS7S4nhuNjWJ0Y,1107
|
|
195
|
+
telnyx/resources/campaign_builder/brand.py,sha256=4GJYN9amW4CvZ1_lsqOR8lrhNmxln3ctkF3DRHruoAw,6544
|
|
196
|
+
telnyx/resources/campaign_builder/campaign_builder.py,sha256=jkyNP-p9ff6Yecn9zyNzCGjjeTVZUzoXryT5NDTd7x8,22657
|
|
197
|
+
telnyx/resources/conferences/__init__.py,sha256=omYb2ssvce-OpSlKNGbIkXBaQFaE0PYSMV7Q-g9JRHg,1080
|
|
198
|
+
telnyx/resources/conferences/actions.py,sha256=5MDYgUUSDX13TOkpbbTZL_s3zy0k3bmTkmEOcLiGGvY,84961
|
|
199
|
+
telnyx/resources/conferences/conferences.py,sha256=8qYsqQHMSyxs7Twu1L24OIswNy_l82d_r5c1jC5B3Jk,27834
|
|
200
|
+
telnyx/resources/credential_connections/__init__.py,sha256=81iT_jEVYsPVEtnMBmM75XlgI5D6u4-1p1a3Gl2j7D0,1211
|
|
201
|
+
telnyx/resources/credential_connections/actions.py,sha256=kPIMpcPp8y5SpdBZ2bxjuT0QHXenvVds5qdtMqpWi1c,6583
|
|
202
|
+
telnyx/resources/credential_connections/credential_connections.py,sha256=R_kZnfrn8X1wPI-xLS6-Wk0hD43g-f1VwVRmJS4wJPA,46202
|
|
203
|
+
telnyx/resources/external_connections/__init__.py,sha256=Wh4TgdigAO9vIeadftwG3-pWOm4llfA1cDPdFBsb7mc,3261
|
|
204
|
+
telnyx/resources/external_connections/civic_addresses.py,sha256=lo1MmrRf466MloDpJpeox3BDXofp0vJ3ZvamCMu-lds,10745
|
|
205
|
+
telnyx/resources/external_connections/external_connections.py,sha256=UD0soU32mvBlMMoB-5rnQcengAd4bsQIModtv2Hsgpg,39083
|
|
206
|
+
telnyx/resources/external_connections/log_messages.py,sha256=g5GOTXjJqmwgUmgYYyoS_LS8LbySlk4OVamDVasYGlk,13920
|
|
207
|
+
telnyx/resources/external_connections/phone_numbers.py,sha256=ZlSl19IIKqv-fpmWpF4At88gZWfzScC1l_OT4ImNr_o,15647
|
|
208
|
+
telnyx/resources/external_connections/releases.py,sha256=0dpSetqokbexHVpZEq85kA8ilrl28wJXNHPkc_WlGro,11293
|
|
209
|
+
telnyx/resources/external_connections/uploads.py,sha256=K64QQfYfM2noQEljENTLpTgLrAOvAQLavZgf-Lr5fro,27143
|
|
210
|
+
telnyx/resources/faxes/__init__.py,sha256=De06LWWuy8Yzbul2Z-FrFA_cSwHPu1eaO-yU8OtefJ0,1002
|
|
211
|
+
telnyx/resources/faxes/actions.py,sha256=4737CAhiFs6sR04p2nnwpM6chGz-jpBD9fB_gn1jt10,9122
|
|
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
|
|
227
|
+
telnyx/resources/managed_accounts/__init__.py,sha256=EoKq6ptLTh1aE0YVPAo39ZAUsU3lBxce13N1p3nmE8c,1133
|
|
228
|
+
telnyx/resources/managed_accounts/actions.py,sha256=0KVsfep-eYUlGkuVnjcQShOjkosvZuI5bjdr9R6iJ1Q,10582
|
|
229
|
+
telnyx/resources/managed_accounts/managed_accounts.py,sha256=ms-QLhiK4ZU13rSL6DohnMytmdRdQAHx0QEtVyYOcIw,33920
|
|
230
|
+
telnyx/resources/messages/__init__.py,sha256=MIdmEB4u5Q1BCJBI1SkBqDqOruL7it4EOhs49-mHXH8,989
|
|
231
|
+
telnyx/resources/messages/messages.py,sha256=8eG6vy2tzi0O6hxugZY49EVmBle9WkZmlZaNz5lw654,56972
|
|
232
|
+
telnyx/resources/messages/rcs.py,sha256=oLO-u3Lh4Ua3MW4SJBXC9aKNAvA030oUC-ZujHbzkPQ,7240
|
|
233
|
+
telnyx/resources/messaging/__init__.py,sha256=LNf5b86iirmOWWMl2D7McVcCly7IIs0zumVmwgYXBvY,1002
|
|
234
|
+
telnyx/resources/messaging/messaging.py,sha256=G-4gKvfg60A-R1KjY5rPlqq702ZA7B0li_jDVEf6l3o,3628
|
|
235
|
+
telnyx/resources/messaging/rcs/__init__.py,sha256=cl0dbvKZcV2q5we4U_qKw7GbWl0JrlppiiafBusl5Yc,963
|
|
236
|
+
telnyx/resources/messaging/rcs/agents.py,sha256=n2TFeHaPQL3HlYsFKnTb4mV4PMfvfy-Z4_7BjJPs14E,13483
|
|
237
|
+
telnyx/resources/messaging/rcs/rcs.py,sha256=RwIdn5EYFPT0kI2H_8GQHKiRh_pqZtVy4Jvv7MwRob4,15040
|
|
238
|
+
telnyx/resources/messaging_hosted_number_orders/__init__.py,sha256=KLUjxUfCFX2X4WQEZxydkTrmT_pOZWr4ViXnv_L4kAI,1291
|
|
239
|
+
telnyx/resources/messaging_hosted_number_orders/actions.py,sha256=ONwivzZn5t-fRlqTr2GHwoTGprBpkUV_mjvmpqTVNrM,8144
|
|
240
|
+
telnyx/resources/messaging_hosted_number_orders/messaging_hosted_number_orders.py,sha256=CgrgvFdvJE-PSxFc8d0W8kqkIgRjaTDL9LshR-4_ckc,32757
|
|
241
|
+
telnyx/resources/messaging_profiles/__init__.py,sha256=CpwlRx3PwlBRN-OVbt2ecEP0yVhdYVQv4EeEnKjLysw,1264
|
|
242
|
+
telnyx/resources/messaging_profiles/autoresp_configs.py,sha256=DB8HRnCkeUC7n2kYYrKroJbWULsuUnfXXHsOE96DL6M,23757
|
|
243
|
+
telnyx/resources/messaging_profiles/messaging_profiles.py,sha256=tD0mGNkfh9D46_Y8tIP9ZWOZqo9xDHIXvaM2MDXkrf4,45567
|
|
244
|
+
telnyx/resources/messaging_tollfree/__init__.py,sha256=xS6W3IHhxe9zW0nTAz695v-OJDsLHTsfhSx6J_4NU10,1224
|
|
245
|
+
telnyx/resources/messaging_tollfree/messaging_tollfree.py,sha256=6bIyhm1Q9YMWEqVCFQSbn6y_8WW1PAbhpB10l59j-Fw,4202
|
|
246
|
+
telnyx/resources/messaging_tollfree/verification/__init__.py,sha256=Sic6oOAjxw7WlvG0PaCb7B0jUmdjDSO8aM2DlSny06Y,1106
|
|
247
|
+
telnyx/resources/messaging_tollfree/verification/requests.py,sha256=fq2KuRrKSH9FNJ4Kv9jaAzQBMz0UOvWdvvrZ_iSIWaY,37091
|
|
248
|
+
telnyx/resources/messaging_tollfree/verification/verification.py,sha256=2WeDAR3Cwf7uGz3veAPzRwFpIymZ7rle3_UT-llSXIo,3879
|
|
249
|
+
telnyx/resources/networks/__init__.py,sha256=QM1zWhOYa2xtzTmSYs1mdrvGrUR9aB9OWUOs0EDXGOY,1133
|
|
250
|
+
telnyx/resources/networks/default_gateway.py,sha256=a6PX1uKfEbH9G6KmYUpW87sdwUxBYfZZE0DPVseW0Yk,13030
|
|
251
|
+
telnyx/resources/networks/networks.py,sha256=Ww_SjJ6aj2l-Dl9lVPirJyLa-IOA0iq4LHZiZubtg8A,25161
|
|
252
|
+
telnyx/resources/number_reservations/__init__.py,sha256=2vUeYMc_LL6lIzkZu1Mc_iYTP5c1J3lRsuDa0fpVIGc,1172
|
|
253
|
+
telnyx/resources/number_reservations/actions.py,sha256=ztBYKHeGvs_fgzS3PqHCoi_kZuU3bNmnnZ1nQ3XeJHg,6199
|
|
254
|
+
telnyx/resources/number_reservations/number_reservations.py,sha256=Pox8DTv2x-PaCWuoI6fdXxExDyMOF2lwrqwEx52mYls,16314
|
|
255
|
+
telnyx/resources/operator_connect/__init__.py,sha256=9JOS3qWSGx9l6uK1HtSrE7JU9fflOJjffilejGcMMQk,1133
|
|
256
|
+
telnyx/resources/operator_connect/actions.py,sha256=Avd_oVNnGdtlN_X65OX5TvPjnjD3YfNQPEpjGeh-wzM,5808
|
|
257
|
+
telnyx/resources/operator_connect/operator_connect.py,sha256=EwCfCwVYecjzHmlSS7JdVJKgPwYg7T6I7bFJUnDmdrs,3972
|
|
258
|
+
telnyx/resources/payment/__init__.py,sha256=EzDOQYO-nGszQg5suN7-sNGiFFU95rgtsLlqBiQTVhw,1160
|
|
259
|
+
telnyx/resources/payment/auto_recharge_prefs.py,sha256=Ve-AExpcofe14vwCQNO5FQUsUlIrc0TBf4AzsurlfKE,10638
|
|
260
|
+
telnyx/resources/payment/payment.py,sha256=jMVwQHMApiaMhg9mFfPjwCw-ISvR3stmomo3v_z7oS0,3980
|
|
261
|
+
telnyx/resources/phone_number_blocks/__init__.py,sha256=gX2I3LXif9roUAq8XFBNgSlHFv_Isko3yN5BN_TI5RY,1121
|
|
262
|
+
telnyx/resources/phone_number_blocks/jobs.py,sha256=fct7SZOHiUjEQ30E7o5QAWEMUilJwlJN9DRdQxNM8Ww,14651
|
|
263
|
+
telnyx/resources/phone_number_blocks/phone_number_blocks.py,sha256=qzcim3BsiBxAmlwBlw0euA7Rrtsa9nwfQqbt6Ch8AMA,3973
|
|
264
|
+
telnyx/resources/phone_numbers/__init__.py,sha256=EH9BdCk9pCSj-YAo3QzC4jZypbYDy2Rq3P2ubQ0btD0,3462
|
|
265
|
+
telnyx/resources/phone_numbers/actions.py,sha256=OMEbIjrHsTnWzqjB2IoCx8FTDUv2I0hOqJkj6buwmNw,15761
|
|
266
|
+
telnyx/resources/phone_numbers/csv_downloads.py,sha256=BWkYDmnaFtYyfChl-UzLQzsVL-KADzN7MxXJsJxnSNs,14484
|
|
267
|
+
telnyx/resources/phone_numbers/jobs.py,sha256=7u4y69wwDWjI7nChYHGEZQIc7PSjc21BTwdbcmYDvZc,29824
|
|
268
|
+
telnyx/resources/phone_numbers/messaging.py,sha256=hhSPnzTkoaSIZtyqkVjdtO_PmZ0_pI2WzR03pCYmwDc,14870
|
|
269
|
+
telnyx/resources/phone_numbers/phone_numbers.py,sha256=uWCoQTaNkVAJdrh2STDUq8hC9moRuYqOtfHFZ9wdNkg,33853
|
|
270
|
+
telnyx/resources/phone_numbers/voice.py,sha256=xBPJmLXbwsBqvJDhPQRY1652jhtury_mX3VAO2nZZVo,19162
|
|
271
|
+
telnyx/resources/phone_numbers/voicemail.py,sha256=ywvdYgUW2frcUfO2SX6YyPe-8U093jJw_I_RbhQkyHM,14268
|
|
272
|
+
telnyx/resources/porting/__init__.py,sha256=RU_ehBaIwEgNLAD_M-atJPrJRuqlL2CeCoRozROpLTc,2072
|
|
273
|
+
telnyx/resources/porting/events.py,sha256=X7U3JtFugzX7WDgQ-neArGO5ne48Ey-ccMjqx-hc0hM,13114
|
|
274
|
+
telnyx/resources/porting/loa_configurations.py,sha256=UqbWN4Jnh6FYLSEU4KwhOzpoF_GR9L5rjvHD1ApXq4w,31193
|
|
275
|
+
telnyx/resources/porting/porting.py,sha256=8MQKOoCLQjbInsVkSJCl884Vbip3Uzu0iSlPy0ryT9U,8715
|
|
276
|
+
telnyx/resources/porting/reports.py,sha256=gORoPeA-Hq-h7-hz8a4A70Ahq0JIMdZQ31OwYFhC8Qk,13955
|
|
277
|
+
telnyx/resources/porting_orders/__init__.py,sha256=GrrSKuKtG_bWUoIUjT3WCt2p_JeAIegF59K7f372eAU,6560
|
|
278
|
+
telnyx/resources/porting_orders/action_requirements.py,sha256=6e3clL-JmXXtHnKl2FlYmJgkjM8YdNhUGHqJ6EEN3L4,12934
|
|
279
|
+
telnyx/resources/porting_orders/actions.py,sha256=ccqeqBiOr0nCzYZUV4j4TNjuMvgInUJFCD_i1xBf5ts,16632
|
|
280
|
+
telnyx/resources/porting_orders/activation_jobs.py,sha256=tmxG_7AOhA1qhmuoAETwfOzwieOd7P1Yh5DJRcUYIs4,14881
|
|
281
|
+
telnyx/resources/porting_orders/additional_documents.py,sha256=g7gAx1Yj82XxapIBtDLrKLw6xT3pHlejrxf5y4G1PGs,15941
|
|
282
|
+
telnyx/resources/porting_orders/associated_phone_numbers.py,sha256=rZfQtFkmqJjKsZPXukEn-t060zsVYt6Lod3mRWt4OPo,17423
|
|
283
|
+
telnyx/resources/porting_orders/comments.py,sha256=Laa0mkjS3_D9dZDlq9DdYDKtjaL7oIokeTICOyqY6Sc,10024
|
|
284
|
+
telnyx/resources/porting_orders/phone_number_blocks.py,sha256=SCRP4gkUvNd27vWjKbnifD7-nPtgVw3KmghdKNxI54o,16983
|
|
285
|
+
telnyx/resources/porting_orders/phone_number_configurations.py,sha256=M6HKR5AksqObihyKgJxZduXYKa4ObW2EEx7tPuYTWtE,12463
|
|
286
|
+
telnyx/resources/porting_orders/phone_number_extensions.py,sha256=2_N11R140E3gEzTmhlJYcCTIOIhHCRV12uPfPE7i95k,17609
|
|
287
|
+
telnyx/resources/porting_orders/porting_orders.py,sha256=z2NB_9sltqCx6MUlFMMZfmX0mPYir144ay9Jj6Tbxxo,62307
|
|
288
|
+
telnyx/resources/porting_orders/verification_codes.py,sha256=j-Z0M0xDcVVgpmV9QdNHbJbZnmadrnG9M0AniOMy66I,16069
|
|
289
|
+
telnyx/resources/portouts/__init__.py,sha256=mX6do8iVPgKT6DoJ2fZRgCX1q4ENrqf1L3MFYGzGlW8,2587
|
|
290
|
+
telnyx/resources/portouts/comments.py,sha256=7mWCjK7U5mjP47E6UC7Tc_7xknZCrSWZ65HvAVLjep0,9429
|
|
291
|
+
telnyx/resources/portouts/events.py,sha256=-cFXR0vKfB5sCP8it4nvd3nLGYNRgF2xpMjALW2A13g,13097
|
|
292
|
+
telnyx/resources/portouts/portouts.py,sha256=L3gaSdDNNymGVaASHpKqLbfzC3EOZ3WrmJYkuLuviaw,24252
|
|
293
|
+
telnyx/resources/portouts/reports.py,sha256=_bviLVJk9DC7nKCEFgHgwrM8K2r18GF820g-DkSTzwY,13927
|
|
294
|
+
telnyx/resources/portouts/supporting_documents.py,sha256=PLqlETSjM1W-4PvUV54sg8h8nZdcwtYODXWwcmVUBxs,10408
|
|
295
|
+
telnyx/resources/queues/__init__.py,sha256=imHzIAoSCvwhKbR_NdPVytFiu9a8xmjGKTDzvj78c6o,989
|
|
296
|
+
telnyx/resources/queues/calls.py,sha256=A33wkOC6WU1cC7Xm25OtIpOPxA7Rv4kART_K5jepP7s,10158
|
|
297
|
+
telnyx/resources/queues/queues.py,sha256=zm_7gMojxayn6OiHYGezvrkBs_MYv3CPtWycG62QvwQ,6937
|
|
298
|
+
telnyx/resources/recordings/__init__.py,sha256=QKXCeJ_NDUEkDXQtFJigJNZ58I1T-VHo0vj_CwuOQXg,1067
|
|
299
|
+
telnyx/resources/recordings/actions.py,sha256=RuRlHxaoDeZqH5efWFE8t-74abCMGdixbcEwEKpURIo,6154
|
|
300
|
+
telnyx/resources/recordings/recordings.py,sha256=GCNVxO2-hl6yFj4XSF5LD26LZR_FcNGpfaiUhDKMlMk,14881
|
|
301
|
+
telnyx/resources/reports/__init__.py,sha256=qk_1dlPxez7lw7AgoInNUZJ7Ri9eGaZSN3_x_2uhBpE,1703
|
|
302
|
+
telnyx/resources/reports/cdr_usage_reports.py,sha256=n8f0FGM2yUJkuE1AlUzRKQ89kgtilyqrMoxUsElqVfo,8471
|
|
303
|
+
telnyx/resources/reports/mdr_usage_reports.py,sha256=GllNbFrMnz3s0b-rgaLTnPKIIeJmGjhJkyC9cg9SoaE,22298
|
|
304
|
+
telnyx/resources/reports/reports.py,sha256=9DZlyYmFEH9-GdhkPJts875EL5Xsw6wHXF4aXWk-Q5s,17866
|
|
305
|
+
telnyx/resources/rooms/__init__.py,sha256=pL7YR_3rov5JGbgBFxD31YLNVy5zakXtiiPLjWi5etQ,1478
|
|
306
|
+
telnyx/resources/rooms/actions.py,sha256=ySpBg1sCH5CqV9G9BuyZo2lRNrrSxE7_CeR3Ci50N5o,13062
|
|
307
|
+
telnyx/resources/rooms/rooms.py,sha256=q9Sh-5oWMg8ue2MT7nAWqVZOIScLO_cjdJLaQSmKdJQ,28998
|
|
308
|
+
telnyx/resources/rooms/sessions/__init__.py,sha256=InwPlCDvPCZdMFhpTN9kX7mJ9lfci6uhAFvoh7OQOdE,1041
|
|
309
|
+
telnyx/resources/rooms/sessions/actions.py,sha256=7OgJYM_4z-w5_ix_A3dxano3PP2MuxTuElMa8E8WFng,19323
|
|
310
|
+
telnyx/resources/rooms/sessions/sessions.py,sha256=IYb8Ih1iIrJBjWLroNq5Gx4qCdwulSjzV8sEhIQ1DqM,24137
|
|
311
|
+
telnyx/resources/sim_card_groups/__init__.py,sha256=U-6zFEn3_YN1Q6dqpD4qcAPsf55AEGrBsf_iMuPrQMo,1108
|
|
312
|
+
telnyx/resources/sim_card_groups/actions.py,sha256=bW1L-Cgy5b-BGu7XEABdaQDeWwz1ofq2_4XM0gTAfjE,28775
|
|
313
|
+
telnyx/resources/sim_card_groups/sim_card_groups.py,sha256=wZZuGGY856DPZB7QeO8dCCdtOAzPyufQTnj8_wgagLY,24315
|
|
314
|
+
telnyx/resources/sim_cards/__init__.py,sha256=Xfca4rp_xtgCzQpLNZu_xzEEV4IPJTxG_GvTAtxRn8M,1042
|
|
315
|
+
telnyx/resources/sim_cards/actions.py,sha256=0dXwiNiQ0GntaeXT_1IjYAXDqHk3V1WQTE6_TJTdp1k,39568
|
|
316
|
+
telnyx/resources/sim_cards/sim_cards.py,sha256=2XL5nXS3A_BHXutZ_udRLSpYFStHdChfe8rp0aSZzJQ,39246
|
|
317
|
+
telnyx/resources/storage/__init__.py,sha256=wkopaiZqFsN-F1_kANWv2yCXu5cyy34wWvpffOmWMKU,2111
|
|
318
|
+
telnyx/resources/storage/migration_sources.py,sha256=89zPfiIU_UpBl7SZseSJA81L0NeOOyrTLM6YDmnqhCk,16388
|
|
319
|
+
telnyx/resources/storage/storage.py,sha256=hD0xYJ0c-CYQaPeJshX6yZTcjEcYnxInWMbDbWOBvLE,9060
|
|
320
|
+
telnyx/resources/storage/buckets/__init__.py,sha256=1st_6HXl1iC6YNXbGA5epZGQVzxmpcldZPXC_xnqURY,1557
|
|
321
|
+
telnyx/resources/storage/buckets/buckets.py,sha256=Kvymi8Z5I30pi-7b9Q_mCkYejAjXfCq2oaEPejZhmkg,10204
|
|
322
|
+
telnyx/resources/storage/buckets/ssl_certificate.py,sha256=Ry733DVAsapgP9uitNFLKzWKDuyMU63qsYcTQ5Sns3g,14966
|
|
323
|
+
telnyx/resources/storage/buckets/usage.py,sha256=9NZrSA22oYRK-mcatVQEjnpKEQzW2fouLhwpgvP8XQQ,10378
|
|
324
|
+
telnyx/resources/storage/migrations/__init__.py,sha256=MmnevL7UJev8foZQT6wPWRXxoCWO0PvV5cvQCmN0ysY,1067
|
|
325
|
+
telnyx/resources/storage/migrations/actions.py,sha256=LxgP4DEdRzb6Q9sDdVCU68F8vBgfPs_r6fpzZYD2tG0,5842
|
|
326
|
+
telnyx/resources/storage/migrations/migrations.py,sha256=OgsyXLFApzFePnvMWdqY3F6oM-9YbjPRdEMY7cSNW5E,14081
|
|
327
|
+
telnyx/resources/texml/__init__.py,sha256=W52xEhzyxU1VKNSUgiobUcQo_525qK01WZIXFPHBAcM,1452
|
|
328
|
+
telnyx/resources/texml/calls.py,sha256=GRfZS7ERL7fa3HngUmB156_RY423-GviuErjPYaYoTk,29616
|
|
329
|
+
telnyx/resources/texml/texml.py,sha256=eZHlVwp_OhBEkfjFiMFOANoTPdmAPskWB30_5E2Svek,9406
|
|
330
|
+
telnyx/resources/texml/accounts/__init__.py,sha256=6kk6pjNbW0ubJoL63f9jhG06qppY6V71P2FlVteDBMg,2586
|
|
331
|
+
telnyx/resources/texml/accounts/accounts.py,sha256=_cVWbYcCQ5Vx47SIKN-274__dmcloh5wOC_CfaBYpp4,18054
|
|
332
|
+
telnyx/resources/texml/accounts/calls/__init__.py,sha256=FpRE5jgR93GXx5Cre-KG_9jxVVOjT9cJPGSBYJJKVh8,2509
|
|
333
|
+
telnyx/resources/texml/accounts/calls/calls.py,sha256=7z3JdeLpPdBlhAHDhz5Tx20-hldAvkjgcposUg548jM,61863
|
|
334
|
+
telnyx/resources/texml/accounts/calls/recordings.py,sha256=s9TRukza9V806PammrVaObX4_2jRRKoDld8naaVA7iM,7704
|
|
335
|
+
telnyx/resources/texml/accounts/calls/recordings_json.py,sha256=3aBtZ0RXMK1HDVohENT1eHvTcur-AdHHUa0wc0bbaVE,14866
|
|
336
|
+
telnyx/resources/texml/accounts/calls/siprec.py,sha256=FdurAu5lf_by5SN6fzIXNva8tthx6CpGAaU2RIxbUSM,7578
|
|
337
|
+
telnyx/resources/texml/accounts/calls/streams.py,sha256=l_YnG40UlRhVcuW6l29gehTSfbxcKymkdB-CDYbC0_Y,7605
|
|
338
|
+
telnyx/resources/texml/accounts/conferences/__init__.py,sha256=Wgnoin0h5qEE7gcyi5IG6fg1_vpPNUgqHkRTALFE4Zs,1145
|
|
339
|
+
telnyx/resources/texml/accounts/conferences/conferences.py,sha256=aGPqDEeRRP4HIEzO3fLxg23RhnrEZrXbL0FhoRAktWY,27769
|
|
340
|
+
telnyx/resources/texml/accounts/conferences/participants.py,sha256=VDe-bZUIVk6ZOYkMIQeg1p0UaN8gFI6V4WqdgQGXBWE,54635
|
|
341
|
+
telnyx/resources/texml/accounts/recordings/__init__.py,sha256=SVRbp2bcFKD_5pDdLHpTMG0ev_OhDRaSjY0htH29bTI,1028
|
|
342
|
+
telnyx/resources/texml/accounts/recordings/json.py,sha256=bU4ZTKSDGbg0H9vRNL2nCplC8h629laiEcd56jp2FYg,10306
|
|
343
|
+
telnyx/resources/texml/accounts/recordings/recordings.py,sha256=U4KNMl6dWg9TMq2MVZwFX-u93j54fTGJBVHhMkwL47s,3693
|
|
344
|
+
telnyx/resources/texml/accounts/transcriptions/__init__.py,sha256=kK93xbvNfgmvFbNBx8hFhBUaN8MjMV_lqXwwSxkFFyw,1080
|
|
345
|
+
telnyx/resources/texml/accounts/transcriptions/json.py,sha256=aNZ8Xs2DL4eOkY_SbmXWv9bR9sCoYofIFyy9jp2deBY,11140
|
|
346
|
+
telnyx/resources/texml/accounts/transcriptions/transcriptions.py,sha256=f-muckAP2-ICXQca61pLidbAClp50Ib6wlSy_LmTB0I,3837
|
|
347
|
+
telnyx/resources/verifications/__init__.py,sha256=0d5jEBzFbPYP_BkSJYXPUq4e49Qs8gANqMwl3lbzLKk,1649
|
|
348
|
+
telnyx/resources/verifications/actions.py,sha256=_D0F6ED2ttzU6T68ySJ9OOcrNcUn3WE52xLYaSwbrk0,7354
|
|
349
|
+
telnyx/resources/verifications/verifications.py,sha256=IG7g3RIpZuv0w0Gshtkt29cmRC3e0rk1XWCQ-TYsdQw,22523
|
|
350
|
+
telnyx/resources/verifications/by_phone_number/__init__.py,sha256=XBZbrhLQcba0yXsna85uuKsyUktgarFS8J0NZo8wwjY,1108
|
|
351
|
+
telnyx/resources/verifications/by_phone_number/actions.py,sha256=JjjT0W5JweJ_apG7dpUHNPc6RBawK0OEOk0snphoRL4,7249
|
|
352
|
+
telnyx/resources/verifications/by_phone_number/by_phone_number.py,sha256=dBdozSkMvC5R2eVSPDi29gInS_6_weAazZL_d7uKKx8,7503
|
|
353
|
+
telnyx/resources/verified_numbers/__init__.py,sha256=wv46Dyovmqk8vDqAw5gP_W5KTLZTzTv7tRJhr0rD42M,1133
|
|
354
|
+
telnyx/resources/verified_numbers/actions.py,sha256=spwbZ3MpLRCfBYL9Iqs96_vxUWkeVk1J6Tqtd3c5EmI,6896
|
|
355
|
+
telnyx/resources/verified_numbers/verified_numbers.py,sha256=T6kljG-9NBr9Q0Q1jGHn4pkCLU_b-avX1wzAu5KrYo0,18158
|
|
356
|
+
telnyx/resources/wireless/__init__.py,sha256=fEZwFm-3jI908Ui2_pT-S-3Titgg1vs7uFjzK4p406M,1212
|
|
357
|
+
telnyx/resources/wireless/detail_records_reports.py,sha256=y6UEeAZVH4Wx8ddjiLNtWWQmxZ4XC25t9U8a8oX4o4M,17922
|
|
358
|
+
telnyx/resources/wireless/wireless.py,sha256=YFhowq4mQXRL0dPhHoMWIit_zZTaXWkh1uje13Zpng0,8176
|
|
359
|
+
telnyx/types/__init__.py,sha256=v94eN1-LMfyWle0T_2xvuz6NnNYMVBP_UJ48nY2XPZg,99644
|
|
360
|
+
telnyx/types/access_ip_address_create_params.py,sha256=qd_T7W_K4XiVIdsJLbsS5U9Qlf3_m0DT677n5Tqdvm8,329
|
|
361
|
+
telnyx/types/access_ip_address_list_params.py,sha256=3sWF6U18lHT3y0fGouO8qCznMlvEyW5PRGx_pItEeLo,1870
|
|
362
|
+
telnyx/types/access_ip_address_list_response.py,sha256=WFYBcqjSoC6c4rf9V6zGWkcB0_UG9DnMQwF5ic17MdY,475
|
|
363
|
+
telnyx/types/access_ip_address_response.py,sha256=hbO8ftAMQrRQSgZnZypafa14lzeD_NGkrEyHrTe-pHo,571
|
|
364
|
+
telnyx/types/access_ip_range.py,sha256=euEtQEzv_1X1gmbUJ2HEj6gCNfRRsYZNiz6-AwwCnFM,534
|
|
365
|
+
telnyx/types/access_ip_range_create_params.py,sha256=zQizIleZucq1wKNAtuy7AxjglfBQmEywUACg9t0Cl9Q,325
|
|
366
|
+
telnyx/types/access_ip_range_list_params.py,sha256=q-TgSlwTgvMkiYGSyR66RQWKVZZopxLkWdLJK-HBPQI,2405
|
|
367
|
+
telnyx/types/access_ip_range_list_response.py,sha256=HiGlD0Ilv4SSOuSwRw2C9FyAYjP-XNIevpsIsF5jD4s,440
|
|
368
|
+
telnyx/types/address.py,sha256=hv48rfJl9lstPsiBfPfsRCgEg1gwrqKW_lVzHUUMDFg,3144
|
|
369
|
+
telnyx/types/address_create_params.py,sha256=2lGqy3wSFiMu-HNZLLI2Xw8Nn-gmzcbzddwvAa7NLoE,2624
|
|
370
|
+
telnyx/types/address_create_response.py,sha256=j2e-N0vYqiWOCpXtPQl2VN1dzV5aRND7Y4Yi07o2mnI,291
|
|
371
|
+
telnyx/types/address_delete_response.py,sha256=P41ZTsQjt6I5qtukCM4tfJAPr2hPq6t2BWkHRD0u8t0,291
|
|
372
|
+
telnyx/types/address_list_params.py,sha256=2otSG0_ZVjD1bPEUAvFG_WJsvTrbxeQenG0A6_p_ODE,3066
|
|
373
|
+
telnyx/types/address_list_response.py,sha256=mI6_cLdNQCltEvs6MuBeSZa28Nt0a8pYHPiZWrNQk9U,386
|
|
374
|
+
telnyx/types/address_retrieve_response.py,sha256=L8QmmvrgJ8uGJ166A6jinLm5E_9wgDqAlxdnS8U1OFc,295
|
|
375
|
+
telnyx/types/advanced_order_create_params.py,sha256=LcVZ5xb_9NPQqmYbvO9njodkBNEDhMG8oonmM401io4,691
|
|
376
|
+
telnyx/types/advanced_order_update_params.py,sha256=WPAIlj_7m5_v3eBMzhEqJ74-PkiyEJnZ7P6ERpB2FKQ,691
|
|
377
|
+
telnyx/types/ai_retrieve_models_response.py,sha256=DWcRuYkI0gXpCXME5KegvYkrFXZLmxHLWkh1MAtLXB4,410
|
|
378
|
+
telnyx/types/ai_summarize_params.py,sha256=rMVpD3Ocy_DmFVUYka9K-Mjspetf150V3CFXgL436hY,518
|
|
379
|
+
telnyx/types/ai_summarize_response.py,sha256=A9umRVyHGNxD1rFdEV0bMRRuJn7dSJFzBxhjYoAJnU4,259
|
|
380
|
+
telnyx/types/alt_business_id_type.py,sha256=ae9aJVHb8ZJh5KreswkuxNRF2rd4ksle-mu-IaQeg5M,240
|
|
381
|
+
telnyx/types/anchorsite_override.py,sha256=82y2l3Di-2RNQh0O0nebFA_pPgDHqy7rYwzz6lJ9aUM,434
|
|
382
|
+
telnyx/types/api_error.py,sha256=OBMIkwt6ascvoZysn_DvQtUFK57X_d-zrw4PnW5TpVI,580
|
|
383
|
+
telnyx/types/audit_event_list_params.py,sha256=lOIoNKc5zc9xv8NsBaSYVUep8YTFS0R3SfGltAedqaA,1219
|
|
384
|
+
telnyx/types/audit_event_list_response.py,sha256=frajEliNf22rYQIvQD1jRScE1FzyeHLFsg0mWopOr44,2648
|
|
385
|
+
telnyx/types/authentication_provider.py,sha256=7IHiKJirkWbjllv7mwQT0xK2TFe90qJpbDkVtJpwdw8,2393
|
|
386
|
+
telnyx/types/authentication_provider_create_params.py,sha256=EmyOmCQ7dYovb1y9-tXrYpYzv8KsRJlSPGd8v0BfQRw,999
|
|
387
|
+
telnyx/types/authentication_provider_create_response.py,sha256=gi0mytiD-LCpvqTi3cBKnJPmDXD068TZm55TLIsXoog,367
|
|
388
|
+
telnyx/types/authentication_provider_delete_response.py,sha256=o-UaL3YCARP1T5r5ovyFL454adbMXMyygSwQ0BwzLs4,367
|
|
389
|
+
telnyx/types/authentication_provider_list_params.py,sha256=2F8MHsvqnluDPTIuYE8XsDKkSvccWvun812ZNzlaOdg,1336
|
|
390
|
+
telnyx/types/authentication_provider_list_response.py,sha256=DDsyRbLAExKX8ZUI-0hb5MhmzbHlQDvUcNeUaXnkjSY,462
|
|
391
|
+
telnyx/types/authentication_provider_retrieve_response.py,sha256=U-Ut2ckF-FQMJs2ntbciPN2RN_9t-wqAe4sLloX4Myw,371
|
|
392
|
+
telnyx/types/authentication_provider_update_params.py,sha256=59gE3ZuTZEZkT7sVm9ooHQgnLKvRty-VW2cEi-YWO3U,959
|
|
393
|
+
telnyx/types/authentication_provider_update_response.py,sha256=gw2fMQcROsntcmK8Sq4E28Ezw3E9kcP-DmTl_hX-7-Y,367
|
|
394
|
+
telnyx/types/available_phone_number_block_list_params.py,sha256=noaCrYxNTwoVXokJcHOHBiFSZp1IQy7FW63ieOseiFo,911
|
|
395
|
+
telnyx/types/available_phone_number_block_list_response.py,sha256=-mAM8h2B44yx9a0e5KHgu-0qr21Lp8XKnkuCzqZ3gYs,1386
|
|
396
|
+
telnyx/types/available_phone_number_list_params.py,sha256=5xmj88Pde16OUBNDTNBJpCo6TOmsvu13YlEvg1IKYB4,2755
|
|
397
|
+
telnyx/types/available_phone_number_list_response.py,sha256=-YZa8i_6koh9GMQZ6arOW0tf0RlpOoRUH50ob94e68c,1803
|
|
398
|
+
telnyx/types/available_service.py,sha256=F8V_xVN6nDbIjsXvZWxgS1rvwTNG-84HTmcPCsxK10I,273
|
|
399
|
+
telnyx/types/azure_configuration_data.py,sha256=VE2NXS9bEy5sL1eZ7z4sYpdeRrDdN9imGayUeDB2GPc,492
|
|
400
|
+
telnyx/types/azure_configuration_data_param.py,sha256=pRnDBTfGjG-Q8Qa7ZnbSSuySIzbGHJNrOr0PCsWWKIY,479
|
|
401
|
+
telnyx/types/balance_retrieve_response.py,sha256=NSu7aPQU37lNpZ9GHKFcuHczBHVLKTuR3GNz77eldvU,850
|
|
402
|
+
telnyx/types/billing_group.py,sha256=iP_aY1OTKLOSaWOY8GARg8d8E4FLBUYRfGnB_2YMm8Q,1004
|
|
403
|
+
telnyx/types/billing_group_create_params.py,sha256=2Dl4Ju1uklDSjKz8HtqY7J9M-FH2TlPBu4Zj7awdptI,314
|
|
404
|
+
telnyx/types/billing_group_create_response.py,sha256=HK__HhgrqFIADFGPDpzPzNyJZCNtCyHDILmpzEcwjgs,317
|
|
405
|
+
telnyx/types/billing_group_delete_response.py,sha256=23YV5MVDacwmCXxvPgRYXfvaTtTDNzDfjqCzguT57yU,317
|
|
406
|
+
telnyx/types/billing_group_list_params.py,sha256=7_n5_TNr2jjLClT_Llwd8SWLpeN7FD1ia_IjQYCVAKc,519
|
|
407
|
+
telnyx/types/billing_group_list_response.py,sha256=5ynRvP4fRqcOJnEIthG4_CDCjSuB3H1k3BoJYZdAjgk,412
|
|
408
|
+
telnyx/types/billing_group_retrieve_response.py,sha256=HaXCcoR5QIuXgl4zFK3geYlNJhTsAK-sBWleiKBtcDI,321
|
|
409
|
+
telnyx/types/billing_group_update_params.py,sha256=QkS9t4E6pcVL2GnyGoUT8m3U7JzsXO2MWYqaqzcvniI,314
|
|
410
|
+
telnyx/types/billing_group_update_response.py,sha256=4OfROFr2jKjcAMIG2_MJ-jAKGCBEhCgkUYuhJZ3mDMY,317
|
|
411
|
+
telnyx/types/brand_create_params.py,sha256=E8wqmr5xsNoEG8T9-pqdaQsvSdvc-3ZQR35L5iGKenI,3004
|
|
412
|
+
telnyx/types/brand_get_feedback_response.py,sha256=_z8ZvaaEy_n5hCQNOCWftQUWzbrBmCi4udWIFwNvoqE,915
|
|
413
|
+
telnyx/types/brand_identity_status.py,sha256=fuQtROgpECmib0rPVGZGBdIvK5pFr3fPQpj9WPaREOo,275
|
|
414
|
+
telnyx/types/brand_list_params.py,sha256=tnpXqAPggfhndv2q6cqNhIli7GdZTIWfN3NIYvadKag,1317
|
|
415
|
+
telnyx/types/brand_list_response.py,sha256=eAy-GOLZN2zEPx9xVbG400I5Rnqm4rkCq23OA2Xhx8M,2284
|
|
416
|
+
telnyx/types/brand_retrieve_response.py,sha256=ckUoTUpym0AEU-6O3oi-Zuhoz9apvihYIogDY8vXa8U,436
|
|
417
|
+
telnyx/types/brand_update_params.py,sha256=7gMmNCc8s0rwloKIm7zhmNFjvtjTzSVBmM430Hq4tcA,3306
|
|
418
|
+
telnyx/types/bulk_sim_card_action_list_params.py,sha256=Cb3jfVsOS9fNgAn_Ux-uvNJudDEdotVSvPEK6zo7fAY,665
|
|
419
|
+
telnyx/types/bulk_sim_card_action_list_response.py,sha256=TfBkY5ELe0GS2TIaG6jHhYb5ActI9yURIDu-SSQL7zU,1439
|
|
420
|
+
telnyx/types/bulk_sim_card_action_retrieve_response.py,sha256=wVA0TamPwKC5F3WRCKyPDlbnaGIGhvGDGWCBFExLToE,1354
|
|
421
|
+
telnyx/types/call_ai_gather_ended_webhook_event.py,sha256=ig7ikRGGvxCAFaK0G5hjEWBnqGZdS0joJtqqcaIegJ0,2422
|
|
422
|
+
telnyx/types/call_ai_gather_message_history_updated_webhook_event.py,sha256=cPP2bu36quGxPI8DSgKlw8JJ7_7Q3RyqkVBvg9DhTLA,2225
|
|
423
|
+
telnyx/types/call_ai_gather_partial_results_webhook_event.py,sha256=7yhqeMI7nWga-TPgjEhOFxGGTT28fq4UXKYYod_qZPk,2371
|
|
424
|
+
telnyx/types/call_answered_webhook_event.py,sha256=pUODJBEHV4RDDhIMLoUyEwF11hHgcocQWOIvPZafqGs,2377
|
|
425
|
+
telnyx/types/call_bridged_webhook_event.py,sha256=CR9hi9uUXclE4b9eniAk8CC6xxUQz_cwMm16i-BVNr8,1796
|
|
426
|
+
telnyx/types/call_control_application.py,sha256=GwQm25fVUXnd5f9IFQxErwp78wizyxkqdYUVEYJ9Oog,2866
|
|
427
|
+
telnyx/types/call_control_application_create_params.py,sha256=QwE_MHP0jDDoNBhWpk2oXHsety7Ou-ciYWj5PXA-RBo,2451
|
|
428
|
+
telnyx/types/call_control_application_create_response.py,sha256=bPZ_zRz836mp7wy9tbzzBEWH2eml2WC5Y3uZBcGZVC4,368
|
|
429
|
+
telnyx/types/call_control_application_delete_response.py,sha256=CV9paX16x7L6fUtms-7bejacGZRZyMlrhzAUQpzR5A8,368
|
|
430
|
+
telnyx/types/call_control_application_inbound.py,sha256=LTXW1JT65ayV3yeynUK-Argn-vFUreS_JMAHYHcFOoo,1398
|
|
431
|
+
telnyx/types/call_control_application_inbound_param.py,sha256=G4UCz3Rm1TJuxulQSqj5PHO-xBU-yPZzamkiuANdj2M,1339
|
|
432
|
+
telnyx/types/call_control_application_list_params.py,sha256=XuiqW2lxoqB0S-lWYjhxRD0YP2x5QtfYjAI9bRQnUGQ,3856
|
|
433
|
+
telnyx/types/call_control_application_list_response.py,sha256=AOBOEXvdRwuSY2z9zJ05454-eKtJkl-ATwnSuSHPkDs,463
|
|
434
|
+
telnyx/types/call_control_application_outbound.py,sha256=PPW35t8bB8zke8sxebSFQ3sjD5PrP3ctHXEml4d_eg4,533
|
|
435
|
+
telnyx/types/call_control_application_outbound_param.py,sha256=aFlCWDtRvjHmF-cu92F7GPPlc5YNdaV3HGG-31gZA_4,537
|
|
436
|
+
telnyx/types/call_control_application_retrieve_response.py,sha256=LZNhV1G4eL-y9FGl2lSmWOJPjoIPrm9SHgy5y9kPpsY,372
|
|
437
|
+
telnyx/types/call_control_application_update_params.py,sha256=t91HH8KF5x-FPpUG94cq6oMz3kj1HsyEnrq-M0wZ3NI,2575
|
|
438
|
+
telnyx/types/call_control_application_update_response.py,sha256=_JR2YLtITudbuYGVqmaGud1B8StTlAanVmFNtIN_XV4,368
|
|
439
|
+
telnyx/types/call_conversation_ended_webhook_event.py,sha256=xkOxhj7h2duW6U0O7PJvcb9YWWhq8HFRKcuGpeZ0dKI,2621
|
|
440
|
+
telnyx/types/call_conversation_insights_generated_webhook_event.py,sha256=wnCJCAR3Jn6-qSz3AxCu35TRF_3lehVkozUJZyWtwNU,2255
|
|
441
|
+
telnyx/types/call_dial_params.py,sha256=QkQX9-c3tiJ7zFZH2xEQgc3BhGRiOL0GCMs6_83Ssxk,15873
|
|
442
|
+
telnyx/types/call_dial_response.py,sha256=qV7fNdy_vNuhBte6B_jxhSqvNQMht8tyq3DZ3-YHQAM,1575
|
|
443
|
+
telnyx/types/call_dtmf_received_webhook_event.py,sha256=By7pJP_IGMHOjf5rbqBrkGo3V_SEjpZbug5Qpo4R5fc,1853
|
|
444
|
+
telnyx/types/call_enqueued_webhook_event.py,sha256=kDv3EZKutPehui2ny4kUnmIBtMpGX3NL7OCLF3K0q3Y,1837
|
|
445
|
+
telnyx/types/call_event_list_params.py,sha256=AAhJQiZV0JvPxHLmjyLSWq5f54NV1aMvfxBCDpkjJ9o,3163
|
|
446
|
+
telnyx/types/call_event_list_response.py,sha256=kRLl6TldmQuDw1Expvp7bj2SYO0c89pXa2CuiXG_a8A,964
|
|
447
|
+
telnyx/types/call_fork_started_webhook_event.py,sha256=jC0SZVe7ZPi7XZALqUPYWJesnHVdZemdCnNKonfjUU4,1685
|
|
448
|
+
telnyx/types/call_fork_stopped_webhook_event.py,sha256=sOjkm2sh9rqI043RBrWm3HrXLqMfnTVddG4ZRe5d4ys,1685
|
|
449
|
+
telnyx/types/call_gather_ended_webhook_event.py,sha256=-BhUNj_ZE-v-imZ_iESnpYgZHQclkTi3uIDJ1TSFqnE,2040
|
|
450
|
+
telnyx/types/call_hangup_webhook_event.py,sha256=Zbrazk8Z733qmmr54LISQiefWIsAd1Txi0qzYvUp79Y,4696
|
|
451
|
+
telnyx/types/call_initiated_webhook_event.py,sha256=HgAR9kZ7mDtqyMGd-RlxbiF3-QCzSJZAT-HFzooGhJk,3081
|
|
452
|
+
telnyx/types/call_left_queue_webhook_event.py,sha256=jMoc-4jBhAS5Vmcd-2XDZWU6vKMwd4PXhpqAt1NVJ9E,1960
|
|
453
|
+
telnyx/types/call_machine_detection_ended_webhook_event.py,sha256=PDpDSgnzGz6w5jo9fYtGYSM007AT3TxDyCH6R1ppIH0,1956
|
|
454
|
+
telnyx/types/call_machine_greeting_ended_webhook_event.py,sha256=ifdS_ikxTTPrZ5Meo1MpoVS4ZZf0mse6oSY1Xj77I9Q,1964
|
|
455
|
+
telnyx/types/call_machine_premium_detection_ended_webhook_event.py,sha256=o2VZb5RDj6cWfMeS9YcsSNkATwyGGaXQ_Hzv82eqrRw,2057
|
|
456
|
+
telnyx/types/call_machine_premium_greeting_ended_webhook_event.py,sha256=rh05sMBtagpVxJbzNEnlQqPwkKHVwVWcOB-J196Hlo0,1993
|
|
457
|
+
telnyx/types/call_playback_ended_webhook_event.py,sha256=s35ZHJKOYt_5FsSrJAKyhhCvfJibo8iosB6Xv5-ptjc,2223
|
|
458
|
+
telnyx/types/call_playback_started_webhook_event.py,sha256=HwEqioJqa7n84Ik333KwwaWbng3EtN_i_fZv6WpC3uQ,1964
|
|
459
|
+
telnyx/types/call_recording_error_webhook_event.py,sha256=3gV0MaHe16UWdeKN0eSNV7Hvq3UVqZlaKcWzGiPqsU8,1896
|
|
460
|
+
telnyx/types/call_recording_saved_webhook_event.py,sha256=YzuBFPIOBlMdxY4VPvexQvh7O_O2dtCyr_Kvf2C31Q0,2983
|
|
461
|
+
telnyx/types/call_recording_transcription_saved_webhook_event.py,sha256=kvFkrwe6o-rb_1ss_Uw1nI2PoYp5XpzrWUcTxASErdY,2221
|
|
462
|
+
telnyx/types/call_refer_completed_webhook_event.py,sha256=wP8sHPMffsEgj1xbqfBcXMO8pqa44PS7ThLUD8KCjtw,1914
|
|
463
|
+
telnyx/types/call_refer_failed_webhook_event.py,sha256=VAbP0WVV0T-aAKHTeaUawDXZdgaKdq45JdFUIQyLJMY,1905
|
|
464
|
+
telnyx/types/call_refer_started_webhook_event.py,sha256=bqICdgtiC4cTQwnjvy_UUchltGjRMWGZxTUSTFF3yHU,1908
|
|
465
|
+
telnyx/types/call_retrieve_status_response.py,sha256=RX8VzV4aOrjerr8iBhl8ilCBurIIy7-n4MYhrAFSaJg,1441
|
|
466
|
+
telnyx/types/call_siprec_failed_webhook_event.py,sha256=-WaaWZb0ag92LZ8BkOOBVWXgW_rIFonNtNtqmI10kjU,1649
|
|
467
|
+
telnyx/types/call_siprec_started_webhook_event.py,sha256=TSZ3qzmk84YLKVDiq3j6FGvrt8iDRhkAz5QFBjYFPtY,1574
|
|
468
|
+
telnyx/types/call_siprec_stopped_webhook_event.py,sha256=rUA8ouoK5YN4RrQkeaUWD3I8O-CB7d92oo-nidHb150,1672
|
|
469
|
+
telnyx/types/call_speak_ended_webhook_event.py,sha256=eQlrLgqLQGe_NOLoyWQ2QeE_WEI5XpoqUbKj6EqiMw4,1695
|
|
470
|
+
telnyx/types/call_speak_started_webhook_event.py,sha256=KV-PmcBXfjpgN2dipo7bw3WYlUE73Y4mr-TVFG5B6Ok,1576
|
|
471
|
+
telnyx/types/call_streaming_failed_webhook_event.py,sha256=eZCpBdpu5KbnoiPJWUTavNTAOLsx-hj2UfqKBgaHAX0,2372
|
|
472
|
+
telnyx/types/call_streaming_started_webhook_event.py,sha256=vArPX8v-u_zd2t0zw2KIIwBJDVrmrQ1cesRAfEeGCs0,1704
|
|
473
|
+
telnyx/types/call_streaming_stopped_webhook_event.py,sha256=Z6HAuFGntPtjK-QDBjxr25tHhiCtIgiZTd4nZql6ohs,1704
|
|
474
|
+
telnyx/types/campaign_builder_create_params.py,sha256=x6nciEyJJ8Clb35ehZK8riVuKwCHLO-m8vC5cPvKp0w,5350
|
|
475
|
+
telnyx/types/campaign_builder_create_response.py,sha256=7XT_yPFVsHoPKbp6WhQ2d72VkwSaFjGRAssGmUl5Kg4,326
|
|
476
|
+
telnyx/types/campaign_deactivate_response.py,sha256=tcSCvd-cx3hFz66VdwxOqtbxOFBwJGne_pO5WQWKND0,327
|
|
477
|
+
telnyx/types/campaign_get_mno_metadata_response.py,sha256=oeFWRjTI1wZgMJPMpA0p19T1T5vNBur3Mbxw7tfqeq8,943
|
|
478
|
+
telnyx/types/campaign_get_sharing_status_response.py,sha256=OpBYCVSEGEj8RThsJjiUWslLjE6qEvSgEgZ9ZsFiiCI,546
|
|
479
|
+
telnyx/types/campaign_list_params.py,sha256=gjYy8uWph32nK7i0tX4TFvoYYjPxFWwliVdWNO3VpBY,1066
|
|
480
|
+
telnyx/types/campaign_list_response.py,sha256=cW9tqO3c3ZDnXxcPxkthHS2Q8xvnIrixd12ChsYehBY,8677
|
|
481
|
+
telnyx/types/campaign_sharing_status.py,sha256=-PT1pYJgMRmqf3jKduW0SPdNKGf02sJhUwj2CbQ7MM0,681
|
|
482
|
+
telnyx/types/campaign_status_update_webhook_event.py,sha256=AOAq7a0NsuYBFVbQ0n2PWhgvvajgQuMa8Cc9WWu_NwQ,965
|
|
483
|
+
telnyx/types/campaign_submit_appeal_params.py,sha256=S92CMn_b_NGHGtE-etlaVZQn6A68BZLZz1-ZexMBaNA,461
|
|
484
|
+
telnyx/types/campaign_submit_appeal_response.py,sha256=BxDotpov91C1bjoXQO8Li6TIcxoO5POwVtHefRXl_FY,364
|
|
485
|
+
telnyx/types/campaign_update_params.py,sha256=0tUXAyE9dnJhosIxKo3DmJx_uMGMk4xS3W36Ckf-aYU,1577
|
|
486
|
+
telnyx/types/channel_zone_list_params.py,sha256=zaTiR8tGiFf2h2OqMLCHTgvOCKKr_IMEt61-YVWxBOY,517
|
|
487
|
+
telnyx/types/channel_zone_list_response.py,sha256=kylyHUWHyq6ltiS53kvem_1fXk1dqOlRH03-zpl5D58,872
|
|
488
|
+
telnyx/types/channel_zone_update_params.py,sha256=uPKqhtwEzT1WeFnqSQtI-DznHVqejp0Tm6Z8C_u7i60,339
|
|
489
|
+
telnyx/types/channel_zone_update_response.py,sha256=OkOKQDB74JL69xTqveOJ7Pp55YNnQCVamm2WNsJzfrU,718
|
|
490
|
+
telnyx/types/charges_breakdown_retrieve_params.py,sha256=Wzl5y_dvgGe6BGP0eQx4pzGwiRWFpOpX5gPuD8iEI7M,989
|
|
491
|
+
telnyx/types/charges_breakdown_retrieve_response.py,sha256=S4oxr4VW4jwfFRfqxfyw_giXcG3UmlL4S_DxuRJH_I8,1256
|
|
492
|
+
telnyx/types/charges_summary_retrieve_params.py,sha256=WlMwdrN0XTAG9UHYY8IyUvv5H57canI3PRP9zXehB3Q,865
|
|
493
|
+
telnyx/types/charges_summary_retrieve_response.py,sha256=EUbsepVd5Zl64aTj0bHkRnHXaj45jX3UNHebEbNeYl4,2514
|
|
494
|
+
telnyx/types/client_create_bucket_params.py,sha256=E1zUjZd1OfxDr4W-SnUDTEyrMSFk9HSjNxMZXlI05JU,389
|
|
495
|
+
telnyx/types/client_delete_objects_params.py,sha256=M8WjzkKHxSkGbQlekuj4zBd0KmF4-4xeyYT-Ht85nrw,525
|
|
496
|
+
telnyx/types/client_get_object_params.py,sha256=IJrxQuVK76x1apZoqgGdZd5Swcht_6HzaUxZ5hMWxec,450
|
|
497
|
+
telnyx/types/client_list_objects_params.py,sha256=6NWjFks2cuuZNZGHiv0uE8HkiyEsR1FSNk-Tl-aSQNE,384
|
|
498
|
+
telnyx/types/client_put_object_params.py,sha256=RM6YTxDigcq8V8RzLhLce2TK9t8IfyVLSg_1mAzbNuM,579
|
|
499
|
+
telnyx/types/cloudflare_sync_status.py,sha256=vqYPyc4mM0BjtJrfKjZpy7q9xzC67AECSmgGiCQTzZw,235
|
|
500
|
+
telnyx/types/comment_create_params.py,sha256=S1nzHTZIs3RDAsgmFufE-UNfM6dJnmOWejAELoy94ek,377
|
|
501
|
+
telnyx/types/comment_create_response.py,sha256=kJ_kF8XjC4cJjRqGYgyRPPEdLUbfrsJqQeF7TSPvXSo,1002
|
|
502
|
+
telnyx/types/comment_list_params.py,sha256=gQ7QwqrLd_1Ge_oHbL0YGaryBAGtle3c71JjaiPxc90,664
|
|
503
|
+
telnyx/types/comment_list_response.py,sha256=V_N4HHQM1KGUTsIyoE6Fliaioz1GbLol3yK7NWR_LoQ,1097
|
|
504
|
+
telnyx/types/comment_mark_as_read_response.py,sha256=nnm4anoLgz_uDxnE85M6ffvZWBtBGaH4M09Eupor-hU,1010
|
|
505
|
+
telnyx/types/comment_retrieve_response.py,sha256=0FuiTWpTwFo9DbrWrtW4ISatAIg9PaBblfOsDqEJ0JU,1006
|
|
506
|
+
telnyx/types/conference.py,sha256=dzDrCTuIcNqwFN9GA93FdwlJhhr5wbLb_Rd5VSZn748,1508
|
|
507
|
+
telnyx/types/conference_create_params.py,sha256=AJJszf2zS3SYmpPoTBq3Z90G7Kv1J6RcSGr0sHWCyXM,2324
|
|
508
|
+
telnyx/types/conference_create_response.py,sha256=ggiB8W7e31On8Y7spzEEjj890FsF673A-i8d8hveVgs,306
|
|
509
|
+
telnyx/types/conference_created_webhook_event.py,sha256=fCXR9FcME6nCdyQDmGy5i0KU5YttyylDBfzZQLIDcac,1672
|
|
510
|
+
telnyx/types/conference_ended_webhook_event.py,sha256=jMIyyQvVy5-ynEnfvXLozmG22taQyfbFtGMq34-Sm3Y,1785
|
|
511
|
+
telnyx/types/conference_floor_changed_webhook_event.py,sha256=ANB74dYstoWOZYXISMbNL4H4wGgX8PF6Ac-9b_bfTC0,1343
|
|
512
|
+
telnyx/types/conference_list_params.py,sha256=BpNUwUcSkLfxTUJsyTM6iZm2Umr0aVWG__si9lx7Mos,3165
|
|
513
|
+
telnyx/types/conference_list_participants_params.py,sha256=HR3nklZ4h6dWF8S7MFA8azlZpBycCvpo7vHpSUkM_2Q,1290
|
|
514
|
+
telnyx/types/conference_list_participants_response.py,sha256=Mb9sMn_0nWwaeGMruhcweolib8xsA_Lcbw08aivCKao,1932
|
|
515
|
+
telnyx/types/conference_list_response.py,sha256=i1cJ223BHClbvHbFId8kH5Yp9QMw_u_x-GMLhnsyDS8,401
|
|
516
|
+
telnyx/types/conference_participant_joined_webhook_event.py,sha256=wV4t8RuPy_jyoRJ1g0XBlovYLRfRMq4jIoAB3tYHByU,1703
|
|
517
|
+
telnyx/types/conference_participant_left_webhook_event.py,sha256=GJJgA2iKtYqHQOEpuvyNRnhmA_2LtxiU7mS4UxUWaoA,1697
|
|
518
|
+
telnyx/types/conference_participant_playback_ended_webhook_event.py,sha256=ONsKLwHtJzANFPTCxfTe0IWDEIOlzYf1Ep-HSjqzCKk,2138
|
|
519
|
+
telnyx/types/conference_participant_playback_started_webhook_event.py,sha256=JwElP7hJB7Kps9QL-ZU2xnpWVIPFnF_-yuURUUMKe9A,2144
|
|
520
|
+
telnyx/types/conference_participant_speak_ended_webhook_event.py,sha256=0Jztdxvj_BXGSk1kRIoqh4BaCdv06qFnA4M1etx76Mo,1860
|
|
521
|
+
telnyx/types/conference_participant_speak_started_webhook_event.py,sha256=Pkhl3awfg7s9txLYF9_Cnysa_DRZAZc5qIFUNDkCXvw,1866
|
|
522
|
+
telnyx/types/conference_playback_ended_webhook_event.py,sha256=NdYEK5WjezBqJiRNfi03jm73P23LBJYETgvNwHYkQi8,1478
|
|
523
|
+
telnyx/types/conference_playback_started_webhook_event.py,sha256=-0V4JlCQKNpEtk-aoL4ay1PafalZW0FM0zYFjcgvOII,1484
|
|
524
|
+
telnyx/types/conference_recording_saved_webhook_event.py,sha256=XG_VyVWhntw2ynuoUyJx0U77MgbZ4AyDZlWbN3YgzWk,3237
|
|
525
|
+
telnyx/types/conference_retrieve_response.py,sha256=EsRuiQaIETAO_Z9_ri26w4Y5HbA_ZbuE0AWap4kRodU,310
|
|
526
|
+
telnyx/types/conference_speak_ended_webhook_event.py,sha256=VqWDweNl2yitluDHunosk2dfaTFYi2ZNu-LeGzqR-2w,1200
|
|
527
|
+
telnyx/types/conference_speak_started_webhook_event.py,sha256=7942onAJINYvycip9O2ofoEp4FKlg2bRKqIoGYp-fVM,1206
|
|
528
|
+
telnyx/types/connection_list_active_calls_params.py,sha256=eIvWpeQ1o6PjG1B7fy6HFVsnuumINCCQMWs3hoRJoKI,755
|
|
529
|
+
telnyx/types/connection_list_active_calls_response.py,sha256=WcB3pjgz3XToireQsgTE8lCDjQGvB3Mf2eYPOOIOtH8,1500
|
|
530
|
+
telnyx/types/connection_list_params.py,sha256=76BEF_3KbrmaX48_LyUHTeIS2kCKLqQ_CtaIrIzqSsY,2141
|
|
531
|
+
telnyx/types/connection_list_response.py,sha256=aamAwruLbPPb5hn633YrDcroVzsAa5_DljxXPOUtNVI,1980
|
|
532
|
+
telnyx/types/connection_retrieve_response.py,sha256=n2shA0X93eXNR0gJZibcWAxD5WwwsBDi2is29MonYTM,1854
|
|
533
|
+
telnyx/types/connection_rtcp_settings.py,sha256=i-DvbUBvc3o2JmHTbI2hBwLOTTPQNjpzyBf3TH-04RE,786
|
|
534
|
+
telnyx/types/connection_rtcp_settings_param.py,sha256=x5Q7HBMQmzmTE3OTm7GzYsAYZsJf6Ar8jUSLck-mp3E,744
|
|
535
|
+
telnyx/types/consumed_data.py,sha256=aBc8mtHcg7dZmZsO5Od2cTFx9PWzqaE8GQrRmidzvEI,274
|
|
536
|
+
telnyx/types/country_coverage_retrieve_country_response.py,sha256=Rvm7fZieuqZ7O8yELjMpOTO1t4b6wYQKMC8NyL1CVjE,1654
|
|
537
|
+
telnyx/types/country_coverage_retrieve_response.py,sha256=pKBy-Olrgoo2xa_dBEL6n0Ua76xga1MqbOhdAJ0tyMk,1646
|
|
538
|
+
telnyx/types/create_verification_response.py,sha256=rX9zZedL3IEWPprSVtUIH9x46WtrWr15NHzVf0HjP0Y,270
|
|
539
|
+
telnyx/types/credential_connection.py,sha256=GeXlH70_5fz_WIvtd19WZAustX7UFh11B23KRWh3WXg,4240
|
|
540
|
+
telnyx/types/credential_connection_create_params.py,sha256=aW1FO6YRTPuolyfWiIyzV45zQvSL3Oy6L22DQ1_koJQ,4083
|
|
541
|
+
telnyx/types/credential_connection_create_response.py,sha256=HaLQCfoH9S_SWp4CN3a7iWH5qzpvsTVSlmWI4u1uJtY,357
|
|
542
|
+
telnyx/types/credential_connection_delete_response.py,sha256=2Xje5fhwim_w38O4CoUcW8XQ9nGMZ1UQwkRJURRZieQ,357
|
|
543
|
+
telnyx/types/credential_connection_list_params.py,sha256=rudBU9mwv0QYiKjbQxKKUK47L58WyPYHTX_CzRonfPY,2161
|
|
544
|
+
telnyx/types/credential_connection_list_response.py,sha256=G55ndBy2iBEPrBLTxl52QtkXduMbf6tu3JC8g3ReB2g,493
|
|
545
|
+
telnyx/types/credential_connection_retrieve_response.py,sha256=F8tZfuw3NpA4LZmeukQJxUs7qiqYhVosPRfriwbUB1E,361
|
|
546
|
+
telnyx/types/credential_connection_update_params.py,sha256=0_txG7f3Y5vDrhePHgYxVDTS7r1Zht1ti9ymppvYzOs,3899
|
|
547
|
+
telnyx/types/credential_connection_update_response.py,sha256=_qvEDRgAq0SAV6bqe7UmRJ1POkfKpuTzy73FIx7wHRs,357
|
|
548
|
+
telnyx/types/credential_inbound.py,sha256=rGgNkFyWhrTf8gH9AoRl8HMo6Ws8Rs6I83s3GZd2uvI,2151
|
|
549
|
+
telnyx/types/credential_inbound_param.py,sha256=cbqs3D0KU7a4Jf2NQvnvvRsk7bEebtprXDUgoqBYVNI,2014
|
|
550
|
+
telnyx/types/credential_outbound.py,sha256=mC46QkajdRoTsmx_cwL8mMK0A68D2MahguaTutvDRTQ,2352
|
|
551
|
+
telnyx/types/credential_outbound_param.py,sha256=_IFnpqeGKijVZIWO2xcqiyvhJiMOVRUrRJ0uWlcTeEI,2232
|
|
552
|
+
telnyx/types/custom_sip_header.py,sha256=ajrLT111FDNiJFWAt5InCCa9SxSiIla1JQUZlxYzVTQ,292
|
|
553
|
+
telnyx/types/custom_sip_header_param.py,sha256=k42em8N3RkXfMkNWEtyv7qsW9Mqw12Z-TwUuYdT5WXI,389
|
|
554
|
+
telnyx/types/custom_storage_configuration.py,sha256=RhAIsgY82BWsLvR8y5gi2xRtIJO0FaER2WKDE7C1qkc,651
|
|
555
|
+
telnyx/types/custom_storage_credential_create_params.py,sha256=JzqQTnrIFKXBZ8kX1b-ZP-lkLTOFTQk9U3ZRzHZu8Fc,776
|
|
556
|
+
telnyx/types/custom_storage_credential_create_response.py,sha256=--P1xP5rAs8TbAE9R1NirvaF41XBopGY_N6RedUbY5U,604
|
|
557
|
+
telnyx/types/custom_storage_credential_retrieve_response.py,sha256=U8WKFViY8-A1lGGsQ_MoJ90bUp7dlWkLjveddA3YEmY,608
|
|
558
|
+
telnyx/types/custom_storage_credential_update_params.py,sha256=C60LlfFoszWIhOoraINj6hY7yjkdBlAEVrfT4tH60Pg,776
|
|
559
|
+
telnyx/types/custom_storage_credential_update_response.py,sha256=MWUXGCiAJR9XoXu3-faMiv48pPw9E1sgaCvZrUW2Fuw,604
|
|
560
|
+
telnyx/types/customer_service_record.py,sha256=fstB_3ugxrwGxNWhtcc2F8A7L0f69NVogpKZdESq5hM,2620
|
|
561
|
+
telnyx/types/customer_service_record_create_params.py,sha256=u1GLJ-FMsG9gU4MtHD-dGuEosUD_P4snYZYrg2LSajQ,1330
|
|
562
|
+
telnyx/types/customer_service_record_create_response.py,sha256=evFtX8yJ_FXEjEo0DMtp2ptVrU_5yjZ0ArgvtT1p3Tg,363
|
|
563
|
+
telnyx/types/customer_service_record_list_params.py,sha256=G1mgRKJijJjEh1xNaeHSjhB0aJw-BI58bSusGcctM9E,2478
|
|
564
|
+
telnyx/types/customer_service_record_list_response.py,sha256=j83mROt0KQ45us3Lj6lBZSLEZPKGDAJzmdNpKEBIZ74,458
|
|
565
|
+
telnyx/types/customer_service_record_retrieve_response.py,sha256=07_PV2iPF3H8LLaOfDJ8MugnJ9vKcj7jrnlShE4_er0,367
|
|
566
|
+
telnyx/types/customer_service_record_status_changed_webhook_event.py,sha256=VkR9KhEgWXU5Ad_TantPJ_Q2gBIxJFg8B83JOE_PduY,1655
|
|
567
|
+
telnyx/types/customer_service_record_verify_phone_number_coverage_params.py,sha256=BjQhJJYzvef09G8vJEbEzwVVDjFfOXf3eWLguZ18ktM,462
|
|
568
|
+
telnyx/types/customer_service_record_verify_phone_number_coverage_response.py,sha256=jQirZgkVJG40Rm6pmbAcef7aq0QYVTwZov3Q-CDulaM,1388
|
|
569
|
+
telnyx/types/delivery_update_webhook_event.py,sha256=s5ull5rIhYLD58VD6sDVGnORFYY2K23acxDslvg-FeA,1153
|
|
570
|
+
telnyx/types/detail_record_list_params.py,sha256=CZfIS8k2ug0DjDivcQ79c_VQaez1zBX7rTZz7Sp6uO0,2062
|
|
571
|
+
telnyx/types/detail_record_list_response.py,sha256=hQAQ6iyIpgjtj6zxoP8o9XxjAKXP8kNM0ONvOJrq4x8,13823
|
|
572
|
+
telnyx/types/dialogflow_config_param.py,sha256=_b-DntBBdjqtmojDCUsFdsZkUpSC8fk7GHjf7vAi_SA,441
|
|
573
|
+
telnyx/types/dialogflow_connection_create_params.py,sha256=QByCPUPRM1qxN2Ax6vWwW-KDDqzNP40wXfWkCENlfjo,880
|
|
574
|
+
telnyx/types/dialogflow_connection_create_response.py,sha256=5WpqTfJfSKzYgT0ttRX63OFHkVJ3jZD4rnvKx8I3sZ4,834
|
|
575
|
+
telnyx/types/dialogflow_connection_retrieve_response.py,sha256=7zkhtGXS_T2nJxXhPWfkxO-7svptLc1AMX0PLdqLiSs,838
|
|
576
|
+
telnyx/types/dialogflow_connection_update_params.py,sha256=sYD7qggWOuuEc8ajJJbaO_mNs2N1DSu-zdx-ioApaXk,880
|
|
577
|
+
telnyx/types/dialogflow_connection_update_response.py,sha256=iH8x461sDBP4GTzwdVoOHG2iYqedYLCKD0sVkHqO1iI,834
|
|
578
|
+
telnyx/types/doc_service_document.py,sha256=7SX92batc6UbJ2oUt8xRP7Ru3F2Jfg0MS9AxRFXarF4,1387
|
|
579
|
+
telnyx/types/document_delete_response.py,sha256=kKs1qRGn8G_X5i-i8ktv1zZkWk44BSFm9gOJTO5uAlw,328
|
|
580
|
+
telnyx/types/document_generate_download_link_response.py,sha256=tAX-ZsAO8p5Xgs7Pq3rRYQ_bdTbYCyb0U7MB1w6TjOM,353
|
|
581
|
+
telnyx/types/document_link_list_params.py,sha256=HyoeYzCPaJAOaygTEflL6wJWg1Ux2Icn_QUDAalsHkM,928
|
|
582
|
+
telnyx/types/document_link_list_response.py,sha256=cEV3Bx6g2_uxpU1469ODamMLoYpErA4U5KCj_lt7qoQ,1049
|
|
583
|
+
telnyx/types/document_list_params.py,sha256=VY84ZirQ4mFe7Er6VZkcEby1uPU8g1keL90J6L1T_w0,2112
|
|
584
|
+
telnyx/types/document_list_response.py,sha256=-_gLD3b7x0UT6kfHZ4Z05xEKdpfHEd5fND0yzckJK64,423
|
|
585
|
+
telnyx/types/document_retrieve_response.py,sha256=22mTiLGxPa_ClgA0K0wQ_utozd_FffrM3m1XJtNkGcM,332
|
|
586
|
+
telnyx/types/document_update_params.py,sha256=-pdFL8Ra8mn8accOvApZTnu5bVky0hZJlsBIQs4JMK8,399
|
|
587
|
+
telnyx/types/document_update_response.py,sha256=K4eMjEPsMpJ4daDpu08PgZqNuwEzzt3JPOUjBySBfjY,328
|
|
588
|
+
telnyx/types/document_upload_params.py,sha256=pU9wSxc4XvZCX2z2O6DQk0kEt8vBK0_0OSaCxR1XAKY,1234
|
|
589
|
+
telnyx/types/document_upload_response.py,sha256=81z3z6mwwWMdIX2JGds3q4baK0x8WAMiyHeCYL_4EHo,328
|
|
590
|
+
telnyx/types/dtmf_type.py,sha256=lPGsm0CFOe0KBJR7pxOnxNr7XlB3TKa81JuAH5oCS8I,225
|
|
591
|
+
telnyx/types/dynamic_emergency_address.py,sha256=JumydEPH87-jK1JnYQ308GfbxaMBKR4yEMzjZifM6h8,1261
|
|
592
|
+
telnyx/types/dynamic_emergency_address_create_params.py,sha256=hA-D-6MGiSRBuQ_r4AmRobaxA2DHDj1i8LbONNAcse8,663
|
|
593
|
+
telnyx/types/dynamic_emergency_address_create_response.py,sha256=tVMLfl7ZBeD2R8WbFpQ6GrDgG_UpIdurLyLkF7lXhCI,373
|
|
594
|
+
telnyx/types/dynamic_emergency_address_delete_response.py,sha256=4hJZd6WD7Ed85pcM8T6NfMVl5FkDjKFBIOc0dpw4IE8,373
|
|
595
|
+
telnyx/types/dynamic_emergency_address_list_params.py,sha256=Fq3AOyqpTDW9LwrdJ7rer1WDa8Tfc1E_bf3VSgeHx34,880
|
|
596
|
+
telnyx/types/dynamic_emergency_address_list_response.py,sha256=yMrCTWxC0e2c4rvBCgOWdZjLch6xaxcpR9qRfRX0Ayw,456
|
|
597
|
+
telnyx/types/dynamic_emergency_address_retrieve_response.py,sha256=beh6mwnDhSinFiD48lE1axbzU6Dvejz_Ft2atuI2LKU,377
|
|
598
|
+
telnyx/types/dynamic_emergency_endpoint.py,sha256=SoxUXlRVSplCD18fnMaUG6RAjqgC7sG3GSvXyUCaSsM,913
|
|
599
|
+
telnyx/types/dynamic_emergency_endpoint_create_params.py,sha256=E-K_qz1aEYOwQL3n47zLsijfnyxDMGidJngL51tF1Zc,477
|
|
600
|
+
telnyx/types/dynamic_emergency_endpoint_create_response.py,sha256=4vu1i4KEWs8kzFKMpzkvmaPYKcvNuDOCJY_QKVfsjU0,378
|
|
601
|
+
telnyx/types/dynamic_emergency_endpoint_delete_response.py,sha256=fENqtFNChOE3hTiva1J6U7yJh9h2rDTmQIrH7j8kWAU,378
|
|
602
|
+
telnyx/types/dynamic_emergency_endpoint_list_params.py,sha256=do_5TkWkA9e_c0xhouZmuSNP-sNiU4twZ4XE-Qa7dAg,882
|
|
603
|
+
telnyx/types/dynamic_emergency_endpoint_list_response.py,sha256=Q6huh2eUetzA3SB-WEmLXDyWAF5x2PPKGsk0lefw3jQ,461
|
|
604
|
+
telnyx/types/dynamic_emergency_endpoint_retrieve_response.py,sha256=UjgWjbsBHC8Krwt_gcpq2Q4GLw9rokjvMQAUl7pZtbI,382
|
|
605
|
+
telnyx/types/encrypted_media.py,sha256=gep-8QZ1MEwmJ_aDd9Ym-OVKEcIXHZlM_jvWkT7ldJY,249
|
|
606
|
+
telnyx/types/entity_type.py,sha256=2RX5p8I9whwAMHQw4sNAfSXNKLkuttpImMhnCQB626g,258
|
|
607
|
+
telnyx/types/enum_retrieve_response.py,sha256=EPO8dAJkZET6eGZTnvPIYJQ38IibTi9xwTohAHc2Hec,277
|
|
608
|
+
telnyx/types/external_connection.py,sha256=HJ6xD76XN4sROHafTteQtTIwy41mEb0d_HMvzDR-908,2375
|
|
609
|
+
telnyx/types/external_connection_create_params.py,sha256=b6XusXMG7LbsaH-oDBfRGRiHMuy3IE8I_qKov48SVz8,1696
|
|
610
|
+
telnyx/types/external_connection_create_response.py,sha256=lFrIZXYzVmlcXuHraptL6k7NweJ_Asc2X3frkd8d5cc,347
|
|
611
|
+
telnyx/types/external_connection_delete_response.py,sha256=NIwCN0v4HN8HSvuXX8cz0Q2ivZToytjkIFJJkR4DtUo,347
|
|
612
|
+
telnyx/types/external_connection_list_params.py,sha256=twU-4P8nXQOVSj9Vz2TrXoVapGXjN275hTGeuSz-dQU,2045
|
|
613
|
+
telnyx/types/external_connection_list_response.py,sha256=lYVM0wV1XsFMPCMtu07ZO1Da5_wGVXP5nqjteGdQ_44,520
|
|
614
|
+
telnyx/types/external_connection_retrieve_response.py,sha256=3HPHLm-6jYFjuUXBMh2EHOHsw9l6IOBx9M6zYzdmA0k,351
|
|
615
|
+
telnyx/types/external_connection_update_location_params.py,sha256=8O3ON2HU6YwIDjPVh2CDKeY57sZigslt--9qlgOiT5o,441
|
|
616
|
+
telnyx/types/external_connection_update_location_response.py,sha256=4cGAnY_WFqai4nRUocd3Pxj_UEE_zxhxIYi5IiUYchE,480
|
|
617
|
+
telnyx/types/external_connection_update_params.py,sha256=Ok1Oe9c2rEqpMvxIn11KxsWrdP30ljJXy-mNKiMOY2Y,1579
|
|
618
|
+
telnyx/types/external_connection_update_response.py,sha256=2p8qkkiRVv2SLPVPEI89kj8SVM0EZkrhbvkWGIyLcqc,347
|
|
619
|
+
telnyx/types/external_voice_integrations_pagination_meta.py,sha256=pZLFD1IGt4WoDaMnjYPgsGnQ8rwrug63KFo6RAddK-U,418
|
|
620
|
+
telnyx/types/fax.py,sha256=7ETX6rzk1-OI6EDY46etLm2-0NgIx5ygGenEHWSVMVA,3220
|
|
621
|
+
telnyx/types/fax_application.py,sha256=8Pw6o5WK0n-7DyvWcdbJhxWSwvtcnjNb1gILk6A7FIA,3239
|
|
622
|
+
telnyx/types/fax_application_create_params.py,sha256=ZFae8rRfxxy60Yp9JFImvs1azGmB6Dv4lM-A5E9Q0cA,2781
|
|
623
|
+
telnyx/types/fax_application_create_response.py,sha256=CxbkkI6uYzWW_aCz35u5AcB7TF4Nbi6aFdItA_1ERnc,327
|
|
624
|
+
telnyx/types/fax_application_delete_response.py,sha256=Ev09kcStaWFde1CodwFyiVUCvqBzpUriMvnp-fOishc,327
|
|
625
|
+
telnyx/types/fax_application_list_params.py,sha256=uw6Dms_0MZSGPGF8C1m2EmM-CPAgNDsdE_CUbgRozQY,1917
|
|
626
|
+
telnyx/types/fax_application_list_response.py,sha256=kj6wc0kO72zuCtpUf2cTI8d-nAKsmgR8GigNrTMuB5I,422
|
|
627
|
+
telnyx/types/fax_application_retrieve_response.py,sha256=lr7XQMsYEB6TVZiStkztnmjTP6I3YCRE4KT_PP9xlUw,331
|
|
628
|
+
telnyx/types/fax_application_update_params.py,sha256=UsOhYCf2WQl4395xro9fihRuJvDaftYt0jnFAfTadSk,2959
|
|
629
|
+
telnyx/types/fax_application_update_response.py,sha256=g4jaE6eD4PVDapMuFXEYRVAx-Il1shPKWXG9Y5AONEA,327
|
|
630
|
+
telnyx/types/fax_create_params.py,sha256=5dWNYJET4yIF_8qeYYgguXtNs0w6nxvur2YD1yVr2qA,2594
|
|
631
|
+
telnyx/types/fax_create_response.py,sha256=0LiA8SFITw3My107KPfJEJ5wjgvcy1PIsw9Wi2vXmRQ,271
|
|
632
|
+
telnyx/types/fax_delivered_webhook_event.py,sha256=OUk6LXd36jA3wkVPoTa0OEHQJzAgQrBGa7tsir6IJaA,2033
|
|
633
|
+
telnyx/types/fax_failed_webhook_event.py,sha256=LAmPopendd-_to3wSEzbJTczMnW3LfPRahC76q3wP9Y,1949
|
|
634
|
+
telnyx/types/fax_list_params.py,sha256=LtYISzAfuZgInUJM-Obob7d_2coAfsKsGaF_WfSAtIY,2504
|
|
635
|
+
telnyx/types/fax_list_response.py,sha256=EhzqiXoifMLhA7FSDcJZk8xWTGlO3Vc5uKxOKTbmpf4,314
|
|
636
|
+
telnyx/types/fax_media_processed_webhook_event.py,sha256=aJSpumXg7R_4vBBIb3lS7X9F-wvJVcCgOUHr-letHAM,1886
|
|
637
|
+
telnyx/types/fax_queued_webhook_event.py,sha256=KeZeQuBlM-b7zk9vL7kz5EIvBKRuQdR_V6mNeqk4uTU,1852
|
|
638
|
+
telnyx/types/fax_retrieve_response.py,sha256=HNHPttDOk7sI5qRTJki653d_c_-CqrD_5Szeih4PLaE,275
|
|
639
|
+
telnyx/types/fax_sending_started_webhook_event.py,sha256=p9xk7UnQxxuzxfIA9W80r5sQbhHK9zEdb1YPohMB49Q,1878
|
|
640
|
+
telnyx/types/fqdn.py,sha256=UG2PjoDPWpQw6sVEIPo5wWxa8eLjyHeSr1TZsJtwssk,1158
|
|
641
|
+
telnyx/types/fqdn_connection.py,sha256=HsEtVrgYN_oTeUavZKp51Idl-zS46_O5RgU2chTQSRk,5153
|
|
642
|
+
telnyx/types/fqdn_connection_create_params.py,sha256=bMFr8gxwpzlWGruxnM590u07sQxrwU4J3D0bHQ584V0,3589
|
|
643
|
+
telnyx/types/fqdn_connection_create_response.py,sha256=jBQQSBgHiebHAM-88QRkQ6MRxKoZzCOfZ4MzmYIqM4g,327
|
|
644
|
+
telnyx/types/fqdn_connection_delete_response.py,sha256=1Ob9iRfPP_y6M-yIqyTL9p9Y8Zq48tPZiOPs_3ekGt0,327
|
|
645
|
+
telnyx/types/fqdn_connection_list_params.py,sha256=9CjHsQPHVBAZB1dLlD_CYDghiaUTc03RBE2ikFc0c1I,2149
|
|
646
|
+
telnyx/types/fqdn_connection_list_response.py,sha256=YAwOc7hDFPCr2q6jPJfFWyqGN6tukYG54fiKCLew_MU,463
|
|
647
|
+
telnyx/types/fqdn_connection_retrieve_response.py,sha256=Q0a_AMV86r7sjBDniH_Pzcs8TYrovJ1I0MsF9YX7U20,331
|
|
648
|
+
telnyx/types/fqdn_connection_update_params.py,sha256=x0hGIkTyeX9dwmw1vYdGjo2vv3tzfrkSn0a7LgVHUB8,3361
|
|
649
|
+
telnyx/types/fqdn_connection_update_response.py,sha256=qkWV8k2V94-3h-pvpExAFfKm5z2mS0CzzsJDsBy5qGs,327
|
|
650
|
+
telnyx/types/fqdn_create_params.py,sha256=XlsZOd3vpMA2g8_9KCEfirxoVeE6yzZS3obXWXpWNec,846
|
|
651
|
+
telnyx/types/fqdn_create_response.py,sha256=iYpL_OO1SHpy-kptK_UU-obsFXaMKZ2JI5dSaJDFVo0,276
|
|
652
|
+
telnyx/types/fqdn_delete_response.py,sha256=ejbmu4Qu0OyvG5pSXWp9kCRy8N4TufysmAiU31StIrU,276
|
|
653
|
+
telnyx/types/fqdn_list_params.py,sha256=CmEpAiZdk_wYFlHmb-qWmnkX1fXndw46j4kz7vv4L9A,1015
|
|
654
|
+
telnyx/types/fqdn_list_response.py,sha256=z8DboVaLqRuuWOHg6SIU0yJ245hWVB78KiUyLc26VD4,412
|
|
655
|
+
telnyx/types/fqdn_retrieve_response.py,sha256=hV3nxN_gn9dEMJOeB_Djr2jvru1ki_Fu3U6gRgFe3ik,280
|
|
656
|
+
telnyx/types/fqdn_update_params.py,sha256=ZxytN1IGdK7AazO0adj2keaYcLQcrbg0FZSVDo9GzRY,806
|
|
657
|
+
telnyx/types/fqdn_update_response.py,sha256=4-MH10Fql-YEbJUv7PAg7Fy_zW9jT_ADMvmtFsv3Uyc,276
|
|
658
|
+
telnyx/types/gcs_configuration_data.py,sha256=_72u8Duy6sCXXFPltTwhMTg6b7KKdQqKaUVWAwHolzg,469
|
|
659
|
+
telnyx/types/gcs_configuration_data_param.py,sha256=Zc1ZsIQqqNJF_zQX3Sf0yiuObdhHjZCkAdjcqOMmLN0,473
|
|
660
|
+
telnyx/types/global_ip_allowed_port_list_response.py,sha256=H4-7w8b2CS64so_sNuYaFL3rx02LCFiAV-dvIFHhkmU,774
|
|
661
|
+
telnyx/types/global_ip_assignment.py,sha256=JCbyu7DI2xp2pigGQIX_MdZjuI_uXAzxlBQINdYa98I,850
|
|
662
|
+
telnyx/types/global_ip_assignment_create_params.py,sha256=3h0B9GxdrErOQvHRhNHI2IyufiH2eAx6M9c4E5D3q2c,448
|
|
663
|
+
telnyx/types/global_ip_assignment_create_response.py,sha256=3Nk2qDHmXHnn6Mk34iBu6dTJiVDQbgKRBH8cVrNtan8,348
|
|
664
|
+
telnyx/types/global_ip_assignment_delete_response.py,sha256=vI-3WS5HN8mjsw75lbOKLNG_DR0UrU6Rkg9wVNnV2Xg,348
|
|
665
|
+
telnyx/types/global_ip_assignment_health_retrieve_params.py,sha256=vYHv8b1y_l3vOH_LEH3BxtCaWLTuqXKE2Vf1owOvknY,1499
|
|
666
|
+
telnyx/types/global_ip_assignment_health_retrieve_response.py,sha256=5rYTeysqPol_BEvQ6CKmLzpmXgVcFjP74kP1XC42RjY,1628
|
|
667
|
+
telnyx/types/global_ip_assignment_list_params.py,sha256=xWhyVlMxUe4e7AlFynHxdqScwSU7s4OF38W7EHECDcc,531
|
|
668
|
+
telnyx/types/global_ip_assignment_list_response.py,sha256=Q84EO0vf4YGbNzJUwmIrZoPLIHaBhiGur6EnuPkvgbA,443
|
|
669
|
+
telnyx/types/global_ip_assignment_param.py,sha256=g1Hq7lILcJqlN3Ya3D4qaiGdIRFH_0Ham8GNOiAaPuA,434
|
|
670
|
+
telnyx/types/global_ip_assignment_retrieve_response.py,sha256=gHXHPwjLpqHLepGeQk_YTgp1OLwrvKIkQSKZnIS3XTg,352
|
|
671
|
+
telnyx/types/global_ip_assignment_update_params.py,sha256=CtftDhUehD5_ewDihVfYcCLdsBip3c89UnUu_z1khB8,442
|
|
672
|
+
telnyx/types/global_ip_assignment_update_response.py,sha256=WO68c_jECZdL2cUMuWs2FKusk_wpZAsJVYuG0vs1vus,348
|
|
673
|
+
telnyx/types/global_ip_assignments_usage_retrieve_params.py,sha256=mmRSXb85WrjYw2L16M1cpygsEInWmhLMOMvllzxk-Dg,1499
|
|
674
|
+
telnyx/types/global_ip_assignments_usage_retrieve_response.py,sha256=17kQvuX8DiY_Tm3yaLwlP3VziKf5Joo10OeYLMumt-c,1828
|
|
675
|
+
telnyx/types/global_ip_create_params.py,sha256=e242eIxYSsKbQN5qTEUjIczP4dT4Ofb9q02jfKJZPB4,502
|
|
676
|
+
telnyx/types/global_ip_create_response.py,sha256=RteY5Hnyt7DiJlO9sY3GeEsGSR_UqeD0DTWq9NO7Fog,773
|
|
677
|
+
telnyx/types/global_ip_delete_response.py,sha256=j7ooiKXM3RW24T4Up7o5CI9PCw0Ykd7PRXsrMjoS4C0,773
|
|
678
|
+
telnyx/types/global_ip_health_check_create_params.py,sha256=ZVRIPypvozFKA-XvaklVI_f3Aawepqb4J_MuQnK_GEE,503
|
|
679
|
+
telnyx/types/global_ip_health_check_create_response.py,sha256=ClsININVlLIgmO_C4uHLLbUYKMr4OVyhq1vvvB6cLxQ,703
|
|
680
|
+
telnyx/types/global_ip_health_check_delete_response.py,sha256=3_06r-FgveTK8R7oucBV-2Fv-QIIGEu0Hj2n_FGpvC4,703
|
|
681
|
+
telnyx/types/global_ip_health_check_list_params.py,sha256=A0-sk3W4FQmjVXjs9CUIhu2m-CKaHiDrX7IPzhxOdOI,533
|
|
682
|
+
telnyx/types/global_ip_health_check_list_response.py,sha256=zeuhpCPQ7mpIge9fiKMrjmiiBDKhvQGdpUKbCdch_XU,798
|
|
683
|
+
telnyx/types/global_ip_health_check_retrieve_response.py,sha256=I23wikVzaIBMmepMOv-zH6vI5rvnoyrOQHfu6rJOkjQ,707
|
|
684
|
+
telnyx/types/global_ip_health_check_type_list_response.py,sha256=8FYPCA-KZic37D9197aQn0tTCX2qN2wZ_7_zyK8ygRo,609
|
|
685
|
+
telnyx/types/global_ip_latency_retrieve_params.py,sha256=kq-h9uZDA5Orqf3Uf-CofKRDQea2HKWyKr91pO4mUZo,894
|
|
686
|
+
telnyx/types/global_ip_latency_retrieve_response.py,sha256=s0ZPrSqjuEsqp5EbUBXwKhRqrU3ELCPJRwbNbWZfL4o,3621
|
|
687
|
+
telnyx/types/global_ip_list_params.py,sha256=REdqj6idyXZUk5Y7Rju1s0IwSoSp4XX-o7Zz1cEjS14,511
|
|
688
|
+
telnyx/types/global_ip_list_response.py,sha256=RmDl1wxjCFGvWthfTLHQxDkVEGPV7hA7WXnCPnRxnN4,868
|
|
689
|
+
telnyx/types/global_ip_protocol_list_response.py,sha256=rc1nYUw5WRbn5lcE_nMy-WjeG4JAyicaeiBCN3QVzZE,547
|
|
690
|
+
telnyx/types/global_ip_retrieve_response.py,sha256=7nTjnOkRChg2oAWsRlUQ4aaUhz62K_psKtGu26D4hXQ,777
|
|
691
|
+
telnyx/types/global_ip_usage_retrieve_params.py,sha256=zqokpjfGzZQ79V8S7RpJrrsfiMQVwvp_-j1jojN5-80,890
|
|
692
|
+
telnyx/types/global_ip_usage_retrieve_response.py,sha256=W9Q5wX7pIOrDoyKNR5-HcFhtEe48TQzOY_S0cvjZtCU,1169
|
|
693
|
+
telnyx/types/inbound_channel_list_response.py,sha256=NK3YJPL41tz9KbklLQVElsPkhO6qYqjwHm0x58W0wo0,494
|
|
694
|
+
telnyx/types/inbound_channel_update_params.py,sha256=H4tTrypo5U5VNFBVcUd0HQUzoDhXiu3pm4sXvn767OI,367
|
|
695
|
+
telnyx/types/inbound_channel_update_response.py,sha256=7yNLrDclWAmzICqurOzKVeu20Du8kLvRl_R1NmzFCsI,479
|
|
696
|
+
telnyx/types/inbound_fqdn.py,sha256=gRTjhor3JBPGjVB9JDRD8ulsTn3v5Z-UydzmR9fuvoI,4078
|
|
697
|
+
telnyx/types/inbound_fqdn_param.py,sha256=gLRAwVYISGgI1vE6RhyJomKFwUfnuOMnAQNpw9QWnoc,3910
|
|
698
|
+
telnyx/types/inbound_ip.py,sha256=GOJSmMdUMrBddHa1TSlhJvAK_XR0uYOPVYlkaU6MnFA,4134
|
|
699
|
+
telnyx/types/inbound_ip_param.py,sha256=KNam6F3fJX_b7sOUlQiEA7NVRQtVmHSBjkzFyJ3zt4o,3878
|
|
700
|
+
telnyx/types/inbound_message_webhook_event.py,sha256=qJlY4h4dELGTwUQJoqPoIp8VEFaWENE9bPVcVPFNKEc,6520
|
|
701
|
+
telnyx/types/integration_secret.py,sha256=iod7QJKV0aqvMJHDjKJyAe4PYmQfAjCWGBTOutYjkfA,373
|
|
702
|
+
telnyx/types/integration_secret_create_params.py,sha256=DoWwA0bhSj6SIljRMN7iv3ZNmQN_npNO-JOf6q-ldgc,790
|
|
703
|
+
telnyx/types/integration_secret_create_response.py,sha256=-n6QbC8716Z-zGHnhFics9-Wd8KXNNfa5kKb_hn5vD8,296
|
|
704
|
+
telnyx/types/integration_secret_list_params.py,sha256=RjzFEJSO-MtQWgfaH1sTn21rZ2KbWlx5vwaFk8arjZ8,665
|
|
705
|
+
telnyx/types/integration_secret_list_response.py,sha256=bUDa9L-TFeGu54iLHznlPrqDxblU5-kvne_4FHTREfw,459
|
|
706
|
+
telnyx/types/interface.py,sha256=zGECkEt_NBe3ZcpikwnBkQ5dhQZstLTHS8sHnols8gE,536
|
|
707
|
+
telnyx/types/interface_status.py,sha256=vnWdgi1uHsb1BtzF0PXqjf4ZUTIWnf0lPR7MkTLHRMQ,259
|
|
708
|
+
telnyx/types/inventory_coverage_list_params.py,sha256=WiFTHcbOuVEcjorp7jNH8zAKO3OuxabnrcVeHhISEM0,1943
|
|
709
|
+
telnyx/types/inventory_coverage_list_response.py,sha256=w8ZNE4wLVnTa5yxODMOnq5cczPYr8iOdkw04Yqfaquc,1060
|
|
710
|
+
telnyx/types/invoice_list_params.py,sha256=9W6qbQvx5Yp_4KggyherbMP_yG2oFtaY6dybDa3Bq40,618
|
|
711
|
+
telnyx/types/invoice_list_response.py,sha256=tXaSP-2nm-7-133OPlMGH1pOTooXv9kSNVOYNHS0D1g,763
|
|
712
|
+
telnyx/types/invoice_retrieve_params.py,sha256=bfpM2eDVXM0T7FGt46Prd8TnaU7h8Ur18rkaEwBzapo,325
|
|
713
|
+
telnyx/types/invoice_retrieve_response.py,sha256=Shvm4JL41ccxAdnnmdz1nHY-pLcVgYz7bzYBcYaqBGc,646
|
|
714
|
+
telnyx/types/ip.py,sha256=RSwRfygR4d-_EgI-FgFEsW_b2BfZJ19R7mocu5Jjcbg,859
|
|
715
|
+
telnyx/types/ip_connection.py,sha256=TmHW6Zx3libvIs2H6cXm9s0uL3oQdvag0dfcSjdAHQs,3509
|
|
716
|
+
telnyx/types/ip_connection_create_params.py,sha256=IFXHB15YgLR9aF2lOEivLqPFT0Rixwlz95V7NRKRb_I,6098
|
|
717
|
+
telnyx/types/ip_connection_create_response.py,sha256=QUqCPTWkTH0Mb2wZGBn1MlX5Uf7AG5D8EVkhiyz5NNU,317
|
|
718
|
+
telnyx/types/ip_connection_delete_response.py,sha256=5PQmnKYa4l-cSFfWwRx_NnU4ZM7RE6CqcmI87xTKd_8,317
|
|
719
|
+
telnyx/types/ip_connection_list_params.py,sha256=rHxnQu0RyiAOnheVlGw9Z9s80ojquzS-R8gRnAzz0VI,2145
|
|
720
|
+
telnyx/types/ip_connection_list_response.py,sha256=4WHzuYlF1LZJ6i5GM_ma2tj3xfctXT6lH7HjXgo1Bn0,453
|
|
721
|
+
telnyx/types/ip_connection_retrieve_response.py,sha256=n-CUM-CzVIHyVPIerlCR7gK2Vyf5f2dpmzZx5gy9bPs,321
|
|
722
|
+
telnyx/types/ip_connection_update_params.py,sha256=4D5aCJB718ZUjMwCj2caTCofXdeTTwsaAPIkx-EApxs,3197
|
|
723
|
+
telnyx/types/ip_connection_update_response.py,sha256=EN-GukpeJY9sZlP6tX1ZCaZNbifFeW44cbvAAdli_BA,317
|
|
724
|
+
telnyx/types/ip_create_params.py,sha256=1i8FqhZM-eQ0H41fL59wa4dtxNi7tExbPlDiQ4D-fag,493
|
|
725
|
+
telnyx/types/ip_create_response.py,sha256=Uckq1_DTTr1xE0naoQRFVqDYj3axzWEDETGOjrIt1bs,266
|
|
726
|
+
telnyx/types/ip_delete_response.py,sha256=EgmWr-xD1nYZYsLZTJOuFfDKqYpgL0j-Hc9dpqGMDcE,266
|
|
727
|
+
telnyx/types/ip_list_params.py,sha256=28znpwELsDbJDDem9rJSfzidx6oz0r566bDSSRfwbqk,939
|
|
728
|
+
telnyx/types/ip_list_response.py,sha256=VfLSL-D5oiHZehp-RLyUL0cM0vy9ts_lVgXqmq9LZ70,274
|
|
729
|
+
telnyx/types/ip_retrieve_response.py,sha256=nU6bXtxoSbIwhdA-F_evbzkY_tEBHELqswOM9FMWdiA,270
|
|
730
|
+
telnyx/types/ip_update_params.py,sha256=CF3ddXGC7qC64M-bILSbK5M2dn0EWjawjyfIFhcX1No,493
|
|
731
|
+
telnyx/types/ip_update_response.py,sha256=rBqbzwGDFgSeRV0S6nUSO1crx7094qtfeXnqM8fuUPM,266
|
|
732
|
+
telnyx/types/ledger_billing_group_report.py,sha256=ywIzPZsbG6XPg3JgFtrr4LYdS4YDWDQhiBbGEUVVvL0,1103
|
|
733
|
+
telnyx/types/ledger_billing_group_report_create_params.py,sha256=o_tg5q25ln0PQLatVN6o-7RoqY3oGzk_e0ziugR0cjE,416
|
|
734
|
+
telnyx/types/ledger_billing_group_report_create_response.py,sha256=tRb87tzw-7pVdmhhF0orQoKPiSMDexuqJLQe53-X6vY,379
|
|
735
|
+
telnyx/types/ledger_billing_group_report_retrieve_response.py,sha256=G3gZ6g4C705dcxi0qQGUfnql-B_3ova2-gBJUgakSrc,383
|
|
736
|
+
telnyx/types/list_buckets_response.py,sha256=EWUn2sweJ7AmJH3ZefcAJJF1h28yvpFuYLobJbkG8i8,567
|
|
737
|
+
telnyx/types/list_objects_response.py,sha256=3PdlRHiSkuYs5z0SKe-F3-tcLs0QOmhpAz_B29UqLUk,702
|
|
738
|
+
telnyx/types/list_retrieve_all_response.py,sha256=4NBVNSCVCdGu3vrg_vU55WVzaITLD15wMxcLsXXkSQo,673
|
|
739
|
+
telnyx/types/list_retrieve_by_zone_response.py,sha256=H7mqctugxuKTtaOGXZmDUjTcnhFE8hjIAOdeTy_23u4,679
|
|
740
|
+
telnyx/types/managed_account.py,sha256=VLHqyrra3HUOr4ZghPDBkk_bnWUefXBKszXIlO2y4QM,2067
|
|
741
|
+
telnyx/types/managed_account_balance.py,sha256=za-n6FpR9ikwgR0R9ptn3yy13fee1btIiK3uKUJR2qk,704
|
|
742
|
+
telnyx/types/managed_account_create_params.py,sha256=Ty55dT9o60TRbZwhy69j2oTe_JHPEnKPYbP3V3vFzUI,1770
|
|
743
|
+
telnyx/types/managed_account_create_response.py,sha256=rIzUaH3NXj5jOlqRL96WF3kegoEtT94oSuehoJWThF4,327
|
|
744
|
+
telnyx/types/managed_account_get_allocatable_global_outbound_channels_response.py,sha256=qsqhkKR8_FVjhCJIiKLhkwIddHaw3falaDqvBE81ikk,1473
|
|
745
|
+
telnyx/types/managed_account_list_params.py,sha256=R0OPiAZAOtDABOM8PqGNmpzlz-LwZBaWNGn0FZEOGQU,2393
|
|
746
|
+
telnyx/types/managed_account_list_response.py,sha256=xIj4B7LIyvLXhbP_IJls-5SjsS8ubg42dFsaYmPNxLI,2010
|
|
747
|
+
telnyx/types/managed_account_retrieve_response.py,sha256=6jJBmeZzhqRzdpJ5sFLkdAG1sH5F2nySAQu4HMsVHhI,331
|
|
748
|
+
telnyx/types/managed_account_update_global_channel_limit_params.py,sha256=TXdwH7qASkJtxnVGqNoroWun_k9nthmcnnY9i0OBwjk,618
|
|
749
|
+
telnyx/types/managed_account_update_global_channel_limit_response.py,sha256=yw6c18DyLx70jDg28QhVPMz6pqUVH2f2CwfjxOOTVyg,994
|
|
750
|
+
telnyx/types/managed_account_update_params.py,sha256=7S53YiXUCIFcIQ1n1cOBBOHCHuEDzqlFIHzLl2KZllo,636
|
|
751
|
+
telnyx/types/managed_account_update_response.py,sha256=V0hwiXhj3IwJ_bVXo0rS3p9pthUVK6aYIxnOgNzKwKo,327
|
|
752
|
+
telnyx/types/media_list_params.py,sha256=3MBr_ni4SHg6HVjrOE96QKzwePg1tsgMNjAwtT01d8M,539
|
|
753
|
+
telnyx/types/media_list_response.py,sha256=xlII4oP9nnLdewf_PCStHsfsBrSuNMCf0wGCw53zh_s,401
|
|
754
|
+
telnyx/types/media_resource.py,sha256=J8TFAIHrrk7EM1vlnGqA8lfdxJnOS-oGXJ7iTECUS6s,725
|
|
755
|
+
telnyx/types/media_retrieve_response.py,sha256=R70S76qDgbrCM0vacFsqAlzKVQHm6wgpsBvCYdYLCsI,310
|
|
756
|
+
telnyx/types/media_update_params.py,sha256=eB9KZJ7hCIuIoigT7mX2PxExKR6bWFS-g0dA6GH9a4o,599
|
|
757
|
+
telnyx/types/media_update_response.py,sha256=xgSNnPfA7XZMgO4Lu5NTLMzErfX92Ba0-YwvW2_AHTQ,306
|
|
758
|
+
telnyx/types/media_upload_params.py,sha256=tZtcDr8yKHxzDTxaUyUNFASpXhx1RT4GqR83bRgBFjg,683
|
|
759
|
+
telnyx/types/media_upload_response.py,sha256=zPcJCT1pR2MihfA6LKQj33Z0jGZeR3_C9eATOXpnhyY,306
|
|
760
|
+
telnyx/types/message_cancel_scheduled_response.py,sha256=yW-f1v_b5j7LBcnaEkgeoGiPb-gbyhez4lVb2n_X1-Y,5542
|
|
761
|
+
telnyx/types/message_retrieve_response.py,sha256=Hqi1sZb9_pMkTseo8T73n_olHp4YTnZC6LVa8zK8F7Q,6568
|
|
762
|
+
telnyx/types/message_schedule_params.py,sha256=3cohq9Oq5CU2SeH9zVsDZjsxrKVaMJxN74c8Ig8zoHM,2215
|
|
763
|
+
telnyx/types/message_schedule_response.py,sha256=HSI2fpWK9PI7YN-S5gBJBjs559TfO4ioNh7X5a-0BQo,342
|
|
764
|
+
telnyx/types/message_send_group_mms_params.py,sha256=gmkfCITBzjZdDQQJpvqdN6SvdvnjVvH2BdfBg-XWdpU,1372
|
|
765
|
+
telnyx/types/message_send_group_mms_response.py,sha256=M8mg3UWUZwetaO70N8ZQTst3W4uwXRDrfwmXFGy5ZEM,350
|
|
766
|
+
telnyx/types/message_send_long_code_params.py,sha256=4cf7PK_jvbVig3fwn5-hmDNOEIz2tTphFTjRRWEjXfo,1681
|
|
767
|
+
telnyx/types/message_send_long_code_response.py,sha256=CPseOgGFF5XlwnATqm97uTxn-hlVxWu79P3KFu38kuI,350
|
|
768
|
+
telnyx/types/message_send_number_pool_params.py,sha256=gG_AnE4b8-44VqvOpT9EOewcNKYJqaGv09ZhYEFAkzs,1601
|
|
769
|
+
telnyx/types/message_send_number_pool_response.py,sha256=ODsjmL4YVLWXA2-v7JB15Va8-CaHBPpahueEsFsWEN0,354
|
|
770
|
+
telnyx/types/message_send_params.py,sha256=6Pwx0Eco0MDZ4ypedLUFMpBkMmmVzJiUVuleS7ww5UU,2213
|
|
771
|
+
telnyx/types/message_send_response.py,sha256=VNa37bL5N0Qt3B20cRTALoHph6u1G3dCKoW22j-ml5k,334
|
|
772
|
+
telnyx/types/message_send_short_code_params.py,sha256=BuoMtCtyl2wXGEZRlhZYMaQaXtKGvcykmPnsbdu4EmE,1683
|
|
773
|
+
telnyx/types/message_send_short_code_response.py,sha256=0OXWKYMyPdTTOWoOy_Da9jCe6uxP8lTyF3BSHGSzmHU,352
|
|
774
|
+
telnyx/types/messaging_error.py,sha256=EeXUDByRpKqwPefeMwsqJVB4__yLLW9pm9fnB4NxnCo,575
|
|
775
|
+
telnyx/types/messaging_hosted_number_delete_response.py,sha256=CVOIUTUYoNAauR5_qR9Z5wHKZlC-Kd6dloNaEh10-pw,386
|
|
776
|
+
telnyx/types/messaging_hosted_number_order_check_eligibility_params.py,sha256=fo_oC19th-_0hpglEeu0IsFLzNIeL7PnlSNyFkwLIPo,458
|
|
777
|
+
telnyx/types/messaging_hosted_number_order_check_eligibility_response.py,sha256=4H-sjzqm8_JfUf3TUfSB5BzHQqnpykg71qahr0JYpK8,1439
|
|
778
|
+
telnyx/types/messaging_hosted_number_order_create_params.py,sha256=soUDXTlGPMnwyZZ2TXHxI-hCvHCEau9M6Czfe_Zls3Q,571
|
|
779
|
+
telnyx/types/messaging_hosted_number_order_create_response.py,sha256=mUc-UMRn97djZdMZQmgnRA_9IWdb3NHFo1SvmuZVHbs,396
|
|
780
|
+
telnyx/types/messaging_hosted_number_order_create_verification_codes_params.py,sha256=UbfVaLDg2JHefWOpUEqYVsBngcNUuKNmQE3GQtgGLhs,500
|
|
781
|
+
telnyx/types/messaging_hosted_number_order_create_verification_codes_response.py,sha256=3zHtH-TX1HcYKSuQijpiiCK_YEuUbv6gyp4L8w8d-fk,1085
|
|
782
|
+
telnyx/types/messaging_hosted_number_order_delete_response.py,sha256=BdbxdizK_SWxkQ6Wff_KpU2-EupgRI8OSzZXtDNgNFY,396
|
|
783
|
+
telnyx/types/messaging_hosted_number_order_list_params.py,sha256=LLNeISOHCaBAVyRU3XieFDKnZs77K5iU6eAjU_kchDg,547
|
|
784
|
+
telnyx/types/messaging_hosted_number_order_list_response.py,sha256=21cPhWjJ6oXk2bEy47B0vpoDGXk97oknuk7em0eVwY0,491
|
|
785
|
+
telnyx/types/messaging_hosted_number_order_retrieve_response.py,sha256=S_p6TlC3KNtYxW1xJlaXBit_PR1aFo-P-IOMZoTH0Ig,400
|
|
786
|
+
telnyx/types/messaging_hosted_number_order_validate_codes_params.py,sha256=bKs_pD6TKWx57yrJTtSUdbU1-xWbZNH440DwmyvcH3A,529
|
|
787
|
+
telnyx/types/messaging_hosted_number_order_validate_codes_response.py,sha256=aRGN-DpMdazJachszQq5xDkYurgp4i5gZsPQJF2E86o,590
|
|
788
|
+
telnyx/types/messaging_numbers_bulk_update_create_params.py,sha256=w4OkuLRh7oh71yd9O7EjBtlUe1MltMwEIbyfpJeEsoo,768
|
|
789
|
+
telnyx/types/messaging_numbers_bulk_update_create_response.py,sha256=t6z5Qz2gSeAT3VwzyyH0QIwX8V0m8mp_J9vxs3vhWdQ,844
|
|
790
|
+
telnyx/types/messaging_numbers_bulk_update_retrieve_response.py,sha256=hKxAXimCg3mgso6gXw7eoDk5f7oKfVyXAsMpRz_vCvo,848
|
|
791
|
+
telnyx/types/messaging_optout_list_params.py,sha256=cKZZaJSeg1NnE90jUqMZf_PkGUHauBeSjMEUXpYoSdg,1651
|
|
792
|
+
telnyx/types/messaging_optout_list_response.py,sha256=-iQf34X1cGMQquQMc7Gz_OAL3qE5C7-v4AsOOOOyApU,1038
|
|
793
|
+
telnyx/types/messaging_profile.py,sha256=GP751keUEwvqbCkB2G7DmSlrX55m2xB_cdWICx6HxJ4,3429
|
|
794
|
+
telnyx/types/messaging_profile_create_params.py,sha256=5OaDimDt7alF7JTSHRhfAEDNi2owq9jv_rpIUAzLQEE,2865
|
|
795
|
+
telnyx/types/messaging_profile_create_response.py,sha256=lrKJ60WkmPNI7ZhE78eliZkMchXTntaHeELKKKw3jJE,337
|
|
796
|
+
telnyx/types/messaging_profile_delete_response.py,sha256=_-OL_u-nBz647c0vDDZSJlbwUZ7754TGKuqDXaRgYP8,337
|
|
797
|
+
telnyx/types/messaging_profile_list_params.py,sha256=0A5pYKasObvboNZK8MOVBSJ5OreYeX06B4RbC4yk4u4,721
|
|
798
|
+
telnyx/types/messaging_profile_list_phone_numbers_params.py,sha256=NcbSB4-Rzi_AmmnWvDuWbp03_Jg0GrQsIP02H2yILvk,551
|
|
799
|
+
telnyx/types/messaging_profile_list_phone_numbers_response.py,sha256=4pezg_ywlKr2ngUdGQCznSgx5wHoBttdTatq_KIk-Uw,514
|
|
800
|
+
telnyx/types/messaging_profile_list_response.py,sha256=QtWMM8qc8qM3UG5oL8RqjyrgDokuRUnqfQXaFRxDsI8,432
|
|
801
|
+
telnyx/types/messaging_profile_list_short_codes_params.py,sha256=QqCwh4H_jPttFNqBnXd1hzIPkO2GbV79MONU4x2BxGQ,547
|
|
802
|
+
telnyx/types/messaging_profile_list_short_codes_response.py,sha256=Tb1kixdj1k7poCXEgYZRooezv4-U2_Nb14cnft6sy3g,438
|
|
803
|
+
telnyx/types/messaging_profile_retrieve_response.py,sha256=F04p6wT0Dtsh_Aw0-rFTsDTlD6098nyQREwQ9u7ePpg,341
|
|
804
|
+
telnyx/types/messaging_profile_update_params.py,sha256=Ojfb-Z4qIwwiHzD_ozzWdUkANL8do03Uk38q50YjwME,2995
|
|
805
|
+
telnyx/types/messaging_profile_update_response.py,sha256=lWTHuMd6Vt2uoTCGvI88lTXjGWkSRnigPlvIYaFSfI4,337
|
|
806
|
+
telnyx/types/messaging_url_domain_list_params.py,sha256=gUE67OY2ccV9gTFIrUSWEiRa-iNa5zZaZ-8Um6sBusQ,531
|
|
807
|
+
telnyx/types/messaging_url_domain_list_response.py,sha256=TMtcw9meS1vJ4o8IQQ-d68DruhpW2kase1xbdX2V7Ao,551
|
|
808
|
+
telnyx/types/messsage_rcs_params.py,sha256=1HQUiysSDjrjL1lchjZN0_os7231TgXbJ6auZ8oLJ_0,1459
|
|
809
|
+
telnyx/types/messsage_rcs_response.py,sha256=8W5ZQHOEMzLDIYqA3XZD6g2E7-ngOMsBGYOXSsEyZx4,1245
|
|
810
|
+
telnyx/types/mobile_network_operator_list_params.py,sha256=GafRtCJ927VGDgXgPaQ2oNpTh6rU-Xa2bqiL4jMnbyg,1504
|
|
811
|
+
telnyx/types/mobile_network_operator_list_response.py,sha256=uZ2kMU3-zAjCFEPxLDwKiXFnakX9zcP8nGpYnyBezdo,1789
|
|
812
|
+
telnyx/types/mobile_push_credential_create_params.py,sha256=kMoVIaS7Ygz8pvgyv4p6RwmRpJyAugl24-3bgtANNIc,1267
|
|
813
|
+
telnyx/types/mobile_push_credential_list_params.py,sha256=ccE4Ofnu13LxnhYvkOorp7BjcCtBh0oTqXzYsttQ59E,866
|
|
814
|
+
telnyx/types/mobile_push_credential_list_response.py,sha256=KFf0Uz3G7fFUe5HF0uZB2wDh0MuFU4V53fxDQwEdnu8,434
|
|
815
|
+
telnyx/types/month_detail.py,sha256=6ayDmcHxHNDqVZIOZu5Av-NjzgTFCqA2wr9zX-V2aqQ,407
|
|
816
|
+
telnyx/types/network_coverage_list_params.py,sha256=7N9lcKtccEg6ZtCmqCWS_usGMFU9AU1npwNFwT8KBt4,2069
|
|
817
|
+
telnyx/types/network_coverage_list_response.py,sha256=Q6S5wAfhCqvFl57OzsDjibLap0IXNO4Fm2lVfgAUh04,1110
|
|
818
|
+
telnyx/types/network_create_params.py,sha256=XajE0tvPaG-e5i4_30VePKHGK6Xka_D1bktbYIiTwEg,334
|
|
819
|
+
telnyx/types/network_create_response.py,sha256=aYfNgKwusjp1IrpMj34Y3Bczmbr456QSzbXH3fDI5m8,498
|
|
820
|
+
telnyx/types/network_delete_response.py,sha256=2x2aRltq02aKQCEpjaQwonu_eoudgWnEPFG5FB4g5pI,498
|
|
821
|
+
telnyx/types/network_list_interfaces_params.py,sha256=eV3AM60VuCmgDIrHs_EB3h4vL0N_jJxZN2FXYTG4DLQ,839
|
|
822
|
+
telnyx/types/network_list_interfaces_response.py,sha256=sZC6zGIF-PHzIjEshn9K10JOwSSmzPxmW0jkB5M4-nc,1057
|
|
823
|
+
telnyx/types/network_list_params.py,sha256=NIL2YbADK9396SXYFNaNKb46MIK4P3JX_fxrnMbF39I,719
|
|
824
|
+
telnyx/types/network_list_response.py,sha256=z35IYf2M_PGqT9zmSketZ5gic9d0K3c7ubF1j6LLpmM,593
|
|
825
|
+
telnyx/types/network_retrieve_response.py,sha256=nX9xcoZ3qkFNe0BDTwB8_nlZOh89ZB0ty4nvjTj3UYg,502
|
|
826
|
+
telnyx/types/network_update_params.py,sha256=aDxMifKKJAj2vWZ2s7mctrRU0GHuJ4IqaLs8BtLQs-c,334
|
|
827
|
+
telnyx/types/network_update_response.py,sha256=z4GC4qLn4uW7rNOflBm1FGo-kelgHjfPDyJwuSOuHAs,498
|
|
828
|
+
telnyx/types/notification_channel.py,sha256=dQFfAsgWttObfTB6IaSXSXN7oadzOhhPIFZ2rQ3yFsI,912
|
|
829
|
+
telnyx/types/notification_channel_create_params.py,sha256=aAs1hOTb0JSHIscNrS8W5SeFNl27MT0ugsMmDb51Sxs,568
|
|
830
|
+
telnyx/types/notification_channel_create_response.py,sha256=HS-CttoRa5PkGieMmEGhmqsG8Ii2NPb06Zy-RqNW_Ko,385
|
|
831
|
+
telnyx/types/notification_channel_delete_response.py,sha256=yB1xXai-jrUX4CHz745fgPsQamei0AVRO7CfJfKqO6U,385
|
|
832
|
+
telnyx/types/notification_channel_list_params.py,sha256=MeavhhYGluRsd8qzSEtVVIVq5grUyjFdpqnJ1SiMGPg,2414
|
|
833
|
+
telnyx/types/notification_channel_list_response.py,sha256=1_fsQ4hTOgHYz-TXFYMeNXBES4w9fpLgOsVAVpurZXU,447
|
|
834
|
+
telnyx/types/notification_channel_retrieve_response.py,sha256=T1xJmculH0EOnc8vtZ-A8uyOYRTfq-jQoBwfS1qS_kg,389
|
|
835
|
+
telnyx/types/notification_channel_update_params.py,sha256=dgd-OumbHM8w_S2GWwGmjANhYERWYtAVufaPWnaVQa8,568
|
|
836
|
+
telnyx/types/notification_channel_update_response.py,sha256=8yNTIaOsCFa3YRzzQySXCrl2dWY8COFQhyTTL-72eWg,385
|
|
837
|
+
telnyx/types/notification_event_condition_list_params.py,sha256=C6ZtXouF2Bz5jp0pSM8EJ1m0_YiuvnkckokSKW0U3CM,2428
|
|
838
|
+
telnyx/types/notification_event_condition_list_response.py,sha256=IK1eHtzCWoGo88aBMJeCvvovv2wcDcru7wfnDms-HM0,1657
|
|
839
|
+
telnyx/types/notification_event_list_params.py,sha256=85iUeHYXVG_1rXarunnhEalrqkHJSfWtZshFTnsRcpU,529
|
|
840
|
+
telnyx/types/notification_event_list_response.py,sha256=dckImUqUmraSzdZHVrjM0yR1mz0rx2d03Or5U43_5vA,872
|
|
841
|
+
telnyx/types/notification_profile.py,sha256=8RDsMAgIqVP7DFuVASn7QJRhmt6RwOdggj9by0ixK_4,603
|
|
842
|
+
telnyx/types/notification_profile_create_params.py,sha256=CLf4x-TQoP0y4-jFPka8M5gUuxKwBwOoP7t69my6i8U,322
|
|
843
|
+
telnyx/types/notification_profile_create_response.py,sha256=0UtG2Y3xbdrNcUYge8pkj0oXBVAeOwnbpHlhrcRad2U,400
|
|
844
|
+
telnyx/types/notification_profile_delete_response.py,sha256=NpmDve7It7mz4WzVT1oGPy95a6NraIrFzEuyzpFYoSQ,400
|
|
845
|
+
telnyx/types/notification_profile_list_params.py,sha256=0JvLhWVnmlIYVMLOxNZ7q1SoI3E3rO0qLPo7m6QnKzE,533
|
|
846
|
+
telnyx/types/notification_profile_list_response.py,sha256=-VoVPtoGrMH4D54jRr4wdswA5kfHguH6v_cyjDiQDkM,447
|
|
847
|
+
telnyx/types/notification_profile_retrieve_response.py,sha256=bFe9FSbPS-9i2ZBQBEGg57VyDaXXZl9Efg3ecdacKlM,404
|
|
848
|
+
telnyx/types/notification_profile_update_params.py,sha256=6IyIxgqVidecKVjW2ZwxTgSfrWuNtGINE4OEuBTXbjg,322
|
|
849
|
+
telnyx/types/notification_profile_update_response.py,sha256=PZ-eQm02DKH3tuutEOy4UHLpToIeiqtwkAmPKxn90CQ,400
|
|
850
|
+
telnyx/types/notification_setting.py,sha256=awPy8EjxmvfC36f-658j45dA_FSDCc98fmYX6KHYCUs,1595
|
|
851
|
+
telnyx/types/notification_setting_create_params.py,sha256=U4kG__Df00fVjfNBuyhXusdvbHYEAIs3-p0J3Irx-Ug,744
|
|
852
|
+
telnyx/types/notification_setting_create_response.py,sha256=5TSpXC5NIkV5banHdUFEoGNoNWlGButMZm9Ry_ttOQ4,352
|
|
853
|
+
telnyx/types/notification_setting_delete_response.py,sha256=l9rkTCXzZzIoupp8maRyjvsY08XkV6K3pVJYIyHu_ow,352
|
|
854
|
+
telnyx/types/notification_setting_list_params.py,sha256=asm1og2Q6QUJBbdN41uOjF8Dncq8oa1otdsRuuJaJgM,2414
|
|
855
|
+
telnyx/types/notification_setting_list_response.py,sha256=ONXm7PgqHB6TeqF1oDVr0gP-DSqTZJOuAmKBU1-c15A,447
|
|
856
|
+
telnyx/types/notification_setting_retrieve_response.py,sha256=NFQkk94MAXF3ot0u4t3rXZAwudxhPqaYRVFq_dqheOI,356
|
|
857
|
+
telnyx/types/number_block_order.py,sha256=226tL1-5XZvPh2o9IyHt8TEyW9CZKcgPKcvVIK9Gs6A,1503
|
|
858
|
+
telnyx/types/number_block_order_create_params.py,sha256=6Vz9INkiBWcqKdpbTXK6pjfImU6V9c5woVW1IfUM9X0,727
|
|
859
|
+
telnyx/types/number_block_order_create_response.py,sha256=CXQge7fsbItHevOROpe5HHM5Wd2_hpTs7RZoYywPeao,338
|
|
860
|
+
telnyx/types/number_block_order_list_params.py,sha256=Q8uiFXJHhVJLFkDtMggmbUUV5gsMqQsjVV8-pap9AyE,1336
|
|
861
|
+
telnyx/types/number_block_order_list_response.py,sha256=gVg7hYp7oc_7MCwXnQDDY5h6V7AkXGH16tlLONSqCXA,433
|
|
862
|
+
telnyx/types/number_block_order_retrieve_response.py,sha256=z8GDxAW7nve4s8XwrLlK5-kYeWhtzU-UGs53YRpT4L4,342
|
|
863
|
+
telnyx/types/number_lookup_retrieve_params.py,sha256=X0GGsgHDd4OcRGuUKm0aYKdR9Cb2fUaWvb9qvIDJkms,380
|
|
864
|
+
telnyx/types/number_lookup_retrieve_response.py,sha256=pAnrc8p3s7iRGe2-dKJsCnX2APTcW3hu51gy4eW_Vww,3937
|
|
865
|
+
telnyx/types/number_order_create_params.py,sha256=T3od4tjkMPSGm4PfW6BkK06NF2IPnS3ZmmcIR2HzQYU,1024
|
|
866
|
+
telnyx/types/number_order_create_response.py,sha256=_zkBmnjlzzZicnfJyjzWVpXvxtyOaU2vIzMCsT6RN1A,363
|
|
867
|
+
telnyx/types/number_order_list_params.py,sha256=2H5_3PQvzgV3tUpvwOo0NCHrkahPFPwP4j_f6Z7TY5c,1391
|
|
868
|
+
telnyx/types/number_order_list_response.py,sha256=AXiLFow63ej-xw4B0HesMGEADB6_p5-Oh54nHruHDvw,1894
|
|
869
|
+
telnyx/types/number_order_phone_number.py,sha256=wpGRFkVuCg0yO3bIoo5Hv-iSuZJ9nbBksyQC9-BftKk,1632
|
|
870
|
+
telnyx/types/number_order_phone_number_list_params.py,sha256=JgFstLW4b5r0RTUlyVQJ9Ak1hvoV9_Z6SUDYgxExG3Y,521
|
|
871
|
+
telnyx/types/number_order_phone_number_list_response.py,sha256=SLqqmsdnx0t3lYSljw6sFmliMxRJxMIIcqflEP67F6Q,464
|
|
872
|
+
telnyx/types/number_order_phone_number_retrieve_response.py,sha256=9DmebUNX8ZLC6zWdWBLN0ukZpk9iU7Ve3zdngyCLUHs,373
|
|
873
|
+
telnyx/types/number_order_phone_number_update_requirement_group_params.py,sha256=o86glZWBwvbm2JpSRF70I07VcNXGmYTel8MUqFNOTEo,418
|
|
874
|
+
telnyx/types/number_order_phone_number_update_requirement_group_response.py,sha256=uFes84BD0aq_YRhxosQ2pFCE_A9aHqMEEdeFMsSq2T0,1264
|
|
875
|
+
telnyx/types/number_order_phone_number_update_requirements_params.py,sha256=6oZLLdQRiNMYv3VOaojY-UGMkkBunKzYfxi4S6t9J1c,488
|
|
876
|
+
telnyx/types/number_order_phone_number_update_requirements_response.py,sha256=gpBTWv98n_JccRd-mwaYkVUtNiWihdavKqHOaNylPZM,393
|
|
877
|
+
telnyx/types/number_order_retrieve_response.py,sha256=1WygTrroK2bSgUhhmjmCIEVsx-TCN6gpyLdtrdAHC3k,367
|
|
878
|
+
telnyx/types/number_order_status_update_webhook_event.py,sha256=I1ooLnocUA1jxrMnJU_ep0alxtzEmf05TtEmqqsji3c,841
|
|
879
|
+
telnyx/types/number_order_update_params.py,sha256=yWf5rSyWr-POo7WNMqRI8I1f88lEy1yPRPjnAMBAFzY,532
|
|
880
|
+
telnyx/types/number_order_update_response.py,sha256=vOdtpv_CwkLei1nCn2u_-qN1YYrEqRxjbqf5BfWDkK0,363
|
|
881
|
+
telnyx/types/number_order_with_phone_numbers.py,sha256=mq6s2u4zP8BgkUKps5Eu63wM4_ENFPvOjoM9HCo5xrE,1579
|
|
882
|
+
telnyx/types/number_pool_settings.py,sha256=CcZYwwtrRYxlRlo6T5x0xf8rGXFc9wSVywZx0ggk3EI,2042
|
|
883
|
+
telnyx/types/number_pool_settings_param.py,sha256=SCrUVV3gOtW9PzrDuw7R4Ybs5eFbAQf08JWlwSlIoDQ,2086
|
|
884
|
+
telnyx/types/number_reservation.py,sha256=_1l8-ixrFpi3FotXyCboICXQ-6d0dfl8bwJAYOOJgOg,963
|
|
885
|
+
telnyx/types/number_reservation_create_params.py,sha256=5oZPExGxbANAy-2sdrqlrxauWtzaNf2JRamkI0Klysw,510
|
|
886
|
+
telnyx/types/number_reservation_create_response.py,sha256=1qUbizDelchE47cM7K3p6D246JDRplYms1a1DIwgKgs,342
|
|
887
|
+
telnyx/types/number_reservation_list_params.py,sha256=gT6Vib1kXeqpK3KRLx66a-HZDFr5ndOvnMQLRLIXLA0,1455
|
|
888
|
+
telnyx/types/number_reservation_list_response.py,sha256=BmCn63NV2cHRhO661HgQEsBfWQZ3kY51lHEO8jPC1HI,437
|
|
889
|
+
telnyx/types/number_reservation_retrieve_response.py,sha256=mNgKrwL_Qq0rVPeCZzhaTeubpca-uUE0YUx535U2_HU,346
|
|
890
|
+
telnyx/types/numbers_feature_create_params.py,sha256=ArXiQW5-MhR81YaUNJOjR41aVgXICMajYK4D0CfU9Mk,361
|
|
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
|
|
914
|
+
telnyx/types/ota_update_list_params.py,sha256=ZD8dqS8kn7nt3ltxPy-NzYTnMiImZBJeyJM-vMhz_y0,1016
|
|
915
|
+
telnyx/types/ota_update_list_response.py,sha256=sl7b11aO8Lh7zqbbowc9lxJ1QpTBifyipIZKJ6m4aGI,1145
|
|
916
|
+
telnyx/types/ota_update_retrieve_response.py,sha256=L3TXeJdR8lr3V9GUlLlYvZxqoL1iFaNlQDIj8nCkmHQ,2358
|
|
917
|
+
telnyx/types/outbound_call_recording.py,sha256=Oi7cpfC6_RSVeIt9cGMe16fv80wip8TeWWJ3PfTbGOM,1020
|
|
918
|
+
telnyx/types/outbound_call_recording_param.py,sha256=WHjGLWQ6yGOnzwwMRCF8LbaxnCaYwxgfMN9JrhYsdYQ,1002
|
|
919
|
+
telnyx/types/outbound_fqdn.py,sha256=RW1cscBSwJN4qyaTzZBRwxIDW5Ca70C6bStZSsNFbe4,3022
|
|
920
|
+
telnyx/types/outbound_fqdn_param.py,sha256=mobTVWB81k1DxKLByzd_WwwPqIgcUC8W18WWi2lcARw,2811
|
|
921
|
+
telnyx/types/outbound_ip.py,sha256=j1SaTTVU3p5TUyiK6-3yRcaAEobgMI3pAmZC_IP4cXE,2573
|
|
922
|
+
telnyx/types/outbound_ip_param.py,sha256=KyjUlQNEOHs4r9uUw4WRUgfrmM-91ed5IyICuxOFFM8,2402
|
|
923
|
+
telnyx/types/outbound_message_payload.py,sha256=NZqKQ6LlI9Iytn_NpVy_dFPdAchyoOkTI4171FYxnAM,5476
|
|
924
|
+
telnyx/types/outbound_voice_profile.py,sha256=pFYvaW838wJvuEEHxFj0F21bH-QgGfazo1rv-yr9vS8,2701
|
|
925
|
+
telnyx/types/outbound_voice_profile_create_params.py,sha256=EAIvFOUKvmtAvhL_5xhlh3PyrFrNzKa0MgUx_rvzsso,2173
|
|
926
|
+
telnyx/types/outbound_voice_profile_create_response.py,sha256=0nh5001-5Gj2vAv5Tp8Y84gz1Ako8SJrVrxHB_L5rp4,358
|
|
927
|
+
telnyx/types/outbound_voice_profile_delete_response.py,sha256=0z_bamv9ZIwA53u7aAVfEj7pX1UH40zLeRsRJu5K-54,358
|
|
928
|
+
telnyx/types/outbound_voice_profile_list_params.py,sha256=GAFzFtLpJvxEY39BOHdYtnUW4347mXJGBYD8e65sgg8,1697
|
|
929
|
+
telnyx/types/outbound_voice_profile_list_response.py,sha256=VG6cUGRlLsnDazOrcgyKI8812efr_mgqcWOk9goW3bg,453
|
|
930
|
+
telnyx/types/outbound_voice_profile_retrieve_response.py,sha256=G5wf7rorFkkMXAgaTEElW526zTd4D6_5zPK8VP-V1Ko,362
|
|
931
|
+
telnyx/types/outbound_voice_profile_update_params.py,sha256=4LL1OkNeMcDQSa9U8V1kMrDG94qCHTufv2i2BuX81UI,2173
|
|
932
|
+
telnyx/types/outbound_voice_profile_update_response.py,sha256=0kERLKyY68RTrtppaNxtrocov2knttSff6a-R9jf-LI,358
|
|
933
|
+
telnyx/types/pagination_meta.py,sha256=DnXM2qToZRFfjgcvw7A4vC3EFAkHp_Yj0-zJhIxlkPU,368
|
|
934
|
+
telnyx/types/partner_campaign_list_params.py,sha256=bolV6Mb1r6Mc16qAieOHrUALgC8bSwkSHUzrVqESMiY,1071
|
|
935
|
+
telnyx/types/partner_campaign_list_response.py,sha256=LPX5oC1NpKPzapjI41-qWHcA7rTfhrcv9Zjcoawz7Kk,526
|
|
936
|
+
telnyx/types/partner_campaign_list_shared_by_me_params.py,sha256=EhOqECUFifOHMDMbqyQXDbNzuXX0nvhUUNgL7YH1PXI,608
|
|
937
|
+
telnyx/types/partner_campaign_list_shared_by_me_response.py,sha256=8TsyF0pZ5kdFGszbtC85sIa2MN9iapdkFy12KKtYzl8,1322
|
|
938
|
+
telnyx/types/partner_campaign_retrieve_sharing_status_response.py,sha256=_bnBxfNOoqKNCy4qX2VYc0YoQapuPi2cQudhNUrgjxA,363
|
|
939
|
+
telnyx/types/partner_campaign_update_params.py,sha256=wcp2TqqmlALt1mH3AaFDJUkIiog0iGw8PUO--ynvKZE,594
|
|
940
|
+
telnyx/types/phone_number.py,sha256=HTtwm2aXCCpHVoiAdUR9sXfMnAyorcfuSy-s7yhlyFQ,1549
|
|
941
|
+
telnyx/types/phone_number_assignment_by_profile_assign_params.py,sha256=HtZr64iOklTOOnGJB1_YuT4J8OmjUSZ5gVvcC224vlw,1107
|
|
942
|
+
telnyx/types/phone_number_assignment_by_profile_assign_response.py,sha256=o1boBDTLvDJQFW3X3M3MQn0lA-ZP7mqq09X6nEMQ__0,1508
|
|
943
|
+
telnyx/types/phone_number_assignment_by_profile_retrieve_phone_number_status_params.py,sha256=X2sIPT5cpdXlaEP59Bj6fOC2jpLIqJUr3fVuinNd-7g,471
|
|
944
|
+
telnyx/types/phone_number_assignment_by_profile_retrieve_phone_number_status_response.py,sha256=hMfuHKsujvkhRVk8I5a1Mt4SP3XmL-W61ww4qrF3Ph0,721
|
|
945
|
+
telnyx/types/phone_number_assignment_by_profile_retrieve_status_response.py,sha256=vhTIjgI-wuwy7G2i551xEJLYQ2bEwC3XzjmAR4eI2I0,700
|
|
946
|
+
telnyx/types/phone_number_campaign.py,sha256=nC6YMWfNjxU49elkIxofdkeeYebCImE2RRCIR9kW8uI,1713
|
|
947
|
+
telnyx/types/phone_number_campaign_create_params.py,sha256=zJ4NCI9mbcLWYRZ6TuDDyZ9wk4k_qrBhltdwe7usbHE,636
|
|
948
|
+
telnyx/types/phone_number_campaign_list_params.py,sha256=77A1YYCwj37a0S9lChI-xZl4D0ocIRRybqoC9cv7enY,1209
|
|
949
|
+
telnyx/types/phone_number_campaign_list_response.py,sha256=rEhkg2Ge9HUi79PRaF8SjebXZcwhArBvme7jkxO7aI0,451
|
|
950
|
+
telnyx/types/phone_number_campaign_update_params.py,sha256=UPFD0w1Tl7v_1otFvPA0oCgrQ0lEcQUvV40crvqW9qU,641
|
|
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
|
|
954
|
+
telnyx/types/phone_number_list_response.py,sha256=1CpTovSXDGaY6fV2kydhlb7S0bkjvAMSWNq1SmxnC-Q,432
|
|
955
|
+
telnyx/types/phone_number_retrieve_response.py,sha256=4-PnbHooOOehtlvixbyN3BPg43mRfa4_46oDDqPt2Os,341
|
|
956
|
+
telnyx/types/phone_number_slim_list_params.py,sha256=APu7BkOe4jGJSXQpvApveEF5uvP-tRekzy-X4hgaTEI,4330
|
|
957
|
+
telnyx/types/phone_number_slim_list_response.py,sha256=jBgptkdSSjUK-EOIcptt-qNn0twAmxxeto5DjwiHHoU,4556
|
|
958
|
+
telnyx/types/phone_number_update_params.py,sha256=R5Pg2M8Nb8kGMJNATJSEWgCVEg8-z2UQC6wyN5xOWCI,1099
|
|
959
|
+
telnyx/types/phone_number_update_response.py,sha256=EAkMZOjG2ZS0YDIVNgjgv21Ih67wbktES2S7lm9tzgw,337
|
|
960
|
+
telnyx/types/phone_numbers_regulatory_requirement_retrieve_params.py,sha256=agABXgYQ-WVsTSxim_Po4fKGlBPvuJJTrzYu9P-gqFc,551
|
|
961
|
+
telnyx/types/phone_numbers_regulatory_requirement_retrieve_response.py,sha256=Dbhuyieyz_2LdvPinfGHyWK1ybZe3aE9XJIqqnofdMg,1490
|
|
962
|
+
telnyx/types/portability_check_run_params.py,sha256=0mGHrFlvbcbhQR4tjos08kX6e7EgewMBcJFwHjqgkYc,417
|
|
963
|
+
telnyx/types/portability_check_run_response.py,sha256=_y2ZkWfs0E32q6AbNdSw6NjEiqRgrwkPfhQSp6kpE24,869
|
|
964
|
+
telnyx/types/porting_list_uk_carriers_response.py,sha256=nmz5ttx9Vj2K41BLNyz_0oF0Vkf6RGhHaiC8KRsTT50,1052
|
|
965
|
+
telnyx/types/porting_order.py,sha256=PBAWUxR7XMWsxda5865jmbky6r6bOoLyezsdotHHavQ,3776
|
|
966
|
+
telnyx/types/porting_order_activation_settings.py,sha256=hWNxerN8xlXdV_vDXyF8R4xqoIyu05RxNol3R9F4Gog,1087
|
|
967
|
+
telnyx/types/porting_order_create_params.py,sha256=9FniLm_A7STlM-FlqMddFPpEGJINHOovelDeMMfmWqs,637
|
|
968
|
+
telnyx/types/porting_order_create_response.py,sha256=rHUZqnEylVSSs10cA4xufxzdw3HbgEbZ3Bc73ou10ek,329
|
|
969
|
+
telnyx/types/porting_order_documents.py,sha256=e7LNPWm6fVMGxkABWdkJbQG8VjIZ757wx9Td1D2eKcM,436
|
|
970
|
+
telnyx/types/porting_order_documents_param.py,sha256=F8pfn8vVOrjF_GcyHygI2Cd2-4z_5vu04p29K1xzAWA,440
|
|
971
|
+
telnyx/types/porting_order_end_user.py,sha256=Wby1t2cBzToDMy4lVaLvY_yXhaeQWR1PZwEG6vbT6xg,476
|
|
972
|
+
telnyx/types/porting_order_end_user_admin.py,sha256=6na8_NE5rG0mHgXDGKjO7bdiQSvxLQKFCT0hmctRcXo,1076
|
|
973
|
+
telnyx/types/porting_order_end_user_admin_param.py,sha256=tE_pu51AYgX6flLJuX7rHeWWsPHf5pv0DM305nAQKa0,995
|
|
974
|
+
telnyx/types/porting_order_end_user_location.py,sha256=hW-qGKm-AaXfVZDqhu-R4r0CiQO7CSVc_u1wutGwXIU,775
|
|
975
|
+
telnyx/types/porting_order_end_user_location_param.py,sha256=1ijg5ZggPEedL9kqSX_um9hoelwiUgJa7ckkYZG0YMg,711
|
|
976
|
+
telnyx/types/porting_order_end_user_param.py,sha256=92FdqH4jN4p4IZpIRm8ILNUIwKSYx1RGVSKT-NtDsMw,513
|
|
977
|
+
telnyx/types/porting_order_list_params.py,sha256=kfXjGh-pA3Tb3cI7BCRTaiBulJ-eJe1D5wjOLC9UfqI,3700
|
|
978
|
+
telnyx/types/porting_order_list_response.py,sha256=-MKEyjCUC4zQEOhn2PMvg1FDakvAsA_ovd2JHs9hHfk,412
|
|
979
|
+
telnyx/types/porting_order_messaging.py,sha256=jkGGFmt4PzaFCHJ52MRKjE-uag6TYmReUbavR6YZZrI,974
|
|
980
|
+
telnyx/types/porting_order_misc.py,sha256=Eerfrhs5T65zrIgWLkTJkh2KSJJIrfI_sdBLkgiRfVA,1085
|
|
981
|
+
telnyx/types/porting_order_misc_param.py,sha256=0lDFlBob1uZWCVqDalcTtcGCC1jCN22nWB3XoGYRxYs,1044
|
|
982
|
+
telnyx/types/porting_order_phone_number_configuration.py,sha256=AvPu1eTbXTvtgKHbT5i9DUbvb9dAByAPraj1kfLOsW0,778
|
|
983
|
+
telnyx/types/porting_order_phone_number_configuration_param.py,sha256=QxUNnFoi9L56w8h18gtCm6WeHWZzbTwvEaCatJjrzhA,772
|
|
984
|
+
telnyx/types/porting_order_requirement.py,sha256=43qV51DDSK05NhoDLelmFt6NY0d8OJoWxloVmabmAE8,684
|
|
985
|
+
telnyx/types/porting_order_retrieve_allowed_foc_windows_response.py,sha256=dQcQ8KbuyQYQDk7r82D54v0N44PaLXF8utkLZ1mcOX4,801
|
|
986
|
+
telnyx/types/porting_order_retrieve_exception_types_response.py,sha256=7IIjmipvdyBHfuid0fo_eLR0lorxynzYfZ15Uj9AdxA,412
|
|
987
|
+
telnyx/types/porting_order_retrieve_loa_template_params.py,sha256=_w_mKZ58KJLDbDryptJo-S1rAY5bxKIH_i4iTcuiYyE,463
|
|
988
|
+
telnyx/types/porting_order_retrieve_params.py,sha256=m_xHyUB2qzIh6KsQL6f5fh5c9H0aMlS3TixccgQF_Yg,364
|
|
989
|
+
telnyx/types/porting_order_retrieve_requirements_params.py,sha256=ma5kpg64h2CDiHmp2xkgpG0otMRe9K-hCPP8XwSxLXU,551
|
|
990
|
+
telnyx/types/porting_order_retrieve_requirements_response.py,sha256=bn8-lL-xao5MVIce8cOpVTlBHK89Q3ogQte7bTg4q9U,1565
|
|
991
|
+
telnyx/types/porting_order_retrieve_response.py,sha256=PLePbTzTmbAf3MYMrNI1pcrbD5uPk-lunurZMbEnHWQ,472
|
|
992
|
+
telnyx/types/porting_order_retrieve_sub_request_response.py,sha256=2Xo7jn0efyCcs8CZWOfnATM4N8o_xhuLiuD5hNsGcY8,553
|
|
993
|
+
telnyx/types/porting_order_type.py,sha256=s2TI5xjXtNPvClhyv_Ou1BhTLDMm5bkVr48ZVwg3Ems,226
|
|
994
|
+
telnyx/types/porting_order_update_params.py,sha256=XZDzL4TzuGBR99_eWP9tX0Nt8xnJdaZObtxbv3VaqlI,2568
|
|
995
|
+
telnyx/types/porting_order_update_response.py,sha256=tb4S0gw_MtqcVIj2T8fvbbWsldLBsV_vt9n8OrUYejU,468
|
|
996
|
+
telnyx/types/porting_order_user_feedback.py,sha256=a5wKwLZfyI0v_pGIuFdg5v_VVxDdFUj32igWD8IKx-4,502
|
|
997
|
+
telnyx/types/porting_order_user_feedback_param.py,sha256=3ZijhNy-FT6aQ3BSmROtXxfGOJmp7_Zw9mjuOrqmS58,506
|
|
998
|
+
telnyx/types/porting_orders_activation_job.py,sha256=kjNYw559YdY_eQ6VdybjjzN1miqeXH5jAkmD2sdMhLI,1600
|
|
999
|
+
telnyx/types/porting_phone_number_list_params.py,sha256=f0bnOfAdDTIc61WftlLgI5grFJxQtVSdKEnLlH1lIuA,930
|
|
1000
|
+
telnyx/types/porting_phone_number_list_response.py,sha256=qCp904HWLjtaxPkPiAphMRqIcwryoeqlCpjuWAQYAfY,2261
|
|
1001
|
+
telnyx/types/portout_details.py,sha256=evFNmf5RM3tnHHje440-4K1w0aEC2LiaWXaLTjhFZVI,3005
|
|
1002
|
+
telnyx/types/portout_list_params.py,sha256=1qia9W1bf7ri5O1RVi5o6ZrNZihTIIAq-ifVPtg8D9Q,2911
|
|
1003
|
+
telnyx/types/portout_list_rejection_codes_params.py,sha256=alCdjt42fAR366PqmLfpJoPikvMzevuEQf2hXksGa9k,575
|
|
1004
|
+
telnyx/types/portout_list_rejection_codes_response.py,sha256=pnMFoyfbB9b8I4MJV7CnwPdGKQpY0TbEyqFERPVu8a8,442
|
|
1005
|
+
telnyx/types/portout_list_response.py,sha256=VnJN0Zo0yyqV0sm-6jdyrzxjE1irEsoZ5xzDZSRze_4,396
|
|
1006
|
+
telnyx/types/portout_retrieve_response.py,sha256=2eB1f97wBhv7mABepS2XpN29Fh5hizhzqR_J2HAdKkA,317
|
|
1007
|
+
telnyx/types/portout_update_status_params.py,sha256=OJNfUyMeFuxSUCVYG8zO3j3_gYNXSyoxXJQ-M_LLMMA,532
|
|
1008
|
+
telnyx/types/portout_update_status_response.py,sha256=DZsc9v2sM5BbDuJ5qkYqBJoByE81z7Z3yfWPTvvALxo,325
|
|
1009
|
+
telnyx/types/private_wireless_gateway.py,sha256=xZQOQyatxZbdnMQfKkd3gjUfPSIo6bUjgYfscEBmQ5k,1460
|
|
1010
|
+
telnyx/types/private_wireless_gateway_create_params.py,sha256=ZCM5-sLUZNR2ClezXeTtj7oN_R_kayA5iLFQA06GxpA,636
|
|
1011
|
+
telnyx/types/private_wireless_gateway_create_response.py,sha256=wV5oT2wU9NJY6GnK9fonprvvqY-q7K4tKDeQLdlH9rQ,368
|
|
1012
|
+
telnyx/types/private_wireless_gateway_delete_response.py,sha256=HBJx6UOxwtU1Gm0nXwd6XoFCaxv5aUu90yQ5dPU8lKI,368
|
|
1013
|
+
telnyx/types/private_wireless_gateway_list_params.py,sha256=Bz0HwTYZ-U8YBVIXcx-5y6R14Q39bcOvZrSF2lDr9ds,1232
|
|
1014
|
+
telnyx/types/private_wireless_gateway_list_response.py,sha256=6DhSZTWhZynupFu1BiXopQ3iHKknSXRtuyf87s2-tj4,463
|
|
1015
|
+
telnyx/types/private_wireless_gateway_retrieve_response.py,sha256=WPfQudjKp11jgTvXv1a5XBF9_gINSrsvDP7u1jSOOTg,372
|
|
1016
|
+
telnyx/types/private_wireless_gateway_status.py,sha256=HbQG5ENyO6NkzPa03YJVfaG-zb1xZuvLKdVRmmWpB1k,1300
|
|
1017
|
+
telnyx/types/public_internet_gateway_create_params.py,sha256=Yhi5ohTHdCZ7MexAQwYKR3qje6aFSO97HovY6tKJuMY,508
|
|
1018
|
+
telnyx/types/public_internet_gateway_create_response.py,sha256=alpJbSWrTaqNulJOqtLFtrppxW7Nn-7LC1fZ6f6XcqI,986
|
|
1019
|
+
telnyx/types/public_internet_gateway_delete_response.py,sha256=WD55u53UpVnl9H46zbrZzOA9DLyEzFe_vc0X6cHG_XE,986
|
|
1020
|
+
telnyx/types/public_internet_gateway_list_params.py,sha256=-TIyTdSSoajjgcmDnMhzf2y51UbPUvBWQySmoRVTLMQ,778
|
|
1021
|
+
telnyx/types/public_internet_gateway_list_response.py,sha256=Tbdmh7WLYwoB-hn9QgFF8Ulzn35nt6XhY3TRltTzmCI,1081
|
|
1022
|
+
telnyx/types/public_internet_gateway_retrieve_response.py,sha256=3733lzdFXizwofbuP3XUb31SrHmzoHpUYaoC440exaI,990
|
|
1023
|
+
telnyx/types/push_credential.py,sha256=ejpKbK6TOL2G39kbR-9VW2UKM2dzUJ30fi8H4wLObXM,1007
|
|
1024
|
+
telnyx/types/push_credential_response.py,sha256=eF_oNe-T_TNVN8sO74izsQm9J3j6lgV1OI8F42CkCCk,315
|
|
1025
|
+
telnyx/types/pwg_assigned_resources_summary.py,sha256=QN-xzgP13t_oDDxee2drpEWmAJdYhDg7wUgl-cyEXc0,476
|
|
1026
|
+
telnyx/types/queue_retrieve_response.py,sha256=uJ_n6yx_R_bnLVr-kWIdYWfIHQLQvwjYKcIs5_Vx_gU,939
|
|
1027
|
+
telnyx/types/rcs_agent.py,sha256=xGSpBzSMJR6Ikx2-pFsJHPaYL-_-0UYe6EwG6O4bVIk,992
|
|
1028
|
+
telnyx/types/rcs_agent_message.py,sha256=CTRBUFaOY8jHRJky2LjgRELWhDL8YAtBu0YtyiUrD8E,2316
|
|
1029
|
+
telnyx/types/rcs_agent_message_param.py,sha256=nM_V43AmH2SXnr8bQvTfrS_g3ej4IHmHF9lVXTiXRl8,2454
|
|
1030
|
+
telnyx/types/rcs_agent_response.py,sha256=FMps5lovF2yOeQ2n7hQUJrIzq4eGXIig6UDf34In7wg,285
|
|
1031
|
+
telnyx/types/rcs_card_content.py,sha256=MzixYD24kMKH1eAq7g7Plt3b5zXAuoHOcpK-5FE7xCI,1103
|
|
1032
|
+
telnyx/types/rcs_card_content_param.py,sha256=Zi4LKdY2eBtXFfhbnp9MYL04YoeMijewXmBAloGoEeg,1082
|
|
1033
|
+
telnyx/types/rcs_content_info.py,sha256=xgj6d_XukwXOTPmRb6y-S_dE7EeNy_PB45Ino2zy4_U,488
|
|
1034
|
+
telnyx/types/rcs_content_info_param.py,sha256=9VcYd97o_9eNRbu6jlkiGIOSmnm87f9RHPjkRk_Qj9U,512
|
|
1035
|
+
telnyx/types/rcs_suggestion.py,sha256=vO26VwewIixLfTV2I-iDtvT7_3NYwGXCll4_PKK_-zc,3646
|
|
1036
|
+
telnyx/types/rcs_suggestion_param.py,sha256=npO5BVYMj_Ok5LDxxU2XX8C_snh3eWasEV32KHq5SMk,3657
|
|
1037
|
+
telnyx/types/record.py,sha256=PZKiKpovPR_hGKNPmtJD4v5hp37mqTn88bXnHy8dve0,585
|
|
1038
|
+
telnyx/types/record_param.py,sha256=e7mXDk3lSFS76D1AuKOEahlGzEnDr1hxMy-7GWwG3YU,244
|
|
1039
|
+
telnyx/types/recording_delete_response.py,sha256=J4KEMuOCWhhA7hjADDYNfkt7o7OZlLVttd1gpC4HYN8,339
|
|
1040
|
+
telnyx/types/recording_list_params.py,sha256=yJPZB__JJfioYMT3kv8L1q2ZVKTj2Ri7UkJnbwzXpPM,1904
|
|
1041
|
+
telnyx/types/recording_list_response.py,sha256=c_H6mrGUhwUfVBMxkmWOg2J6h6pr0xrMXQIlnXA5MK8,434
|
|
1042
|
+
telnyx/types/recording_response_data.py,sha256=oLOd031wHG5MNY3j2ZajgD92e-2_OVTkDW6OwtDbzdE,2330
|
|
1043
|
+
telnyx/types/recording_retrieve_response.py,sha256=sy2bO-EiLx3a9_TDcjSMVrXgSqSG8x7opUsYIg3cgu0,343
|
|
1044
|
+
telnyx/types/recording_transcription.py,sha256=k1zaabZB04H_Sc7qDb84cIyx7BGbsWPO7u09TgEVt1E,1157
|
|
1045
|
+
telnyx/types/recording_transcription_delete_response.py,sha256=Kqxe7XpQzvj9bfjbWy3w4KvJgPT7_-ty3LY7FkCdtnM,367
|
|
1046
|
+
telnyx/types/recording_transcription_list_response.py,sha256=-nvyVDWdWhNJxybgI0Trr5bKRTsS9l6LYgcGx4OHTUk,814
|
|
1047
|
+
telnyx/types/recording_transcription_retrieve_response.py,sha256=VpWVOtEIt6x7RZu0m3031jGNPQ3e3yuAxySaDD_yjd0,371
|
|
1048
|
+
telnyx/types/region_in.py,sha256=Bu83TsCKERBSavJbUZZwfCLoD3s4KTA36QWzsjHp5ss,297
|
|
1049
|
+
telnyx/types/region_list_response.py,sha256=63xraL2UKHy65WEzP8NokxC5F1rL_dRkjAgXBQaMrnc,865
|
|
1050
|
+
telnyx/types/regulatory_requirement_retrieve_params.py,sha256=eycU8B3_UIYh6ikdRLRpIclZv3HLhlVAmS63HvdjRYE,1045
|
|
1051
|
+
telnyx/types/regulatory_requirement_retrieve_response.py,sha256=ML0a3Te_vhCA3TQU4ex5jZjAdvRkIJkwVUjMtZ7v9Bw,1328
|
|
1052
|
+
telnyx/types/replaced_link_click_webhook_event.py,sha256=uNNc00sp7pIZ9iNcYJpIlvSNOOES3L50AszXGJvc81U,880
|
|
1053
|
+
telnyx/types/report_list_mdrs_params.py,sha256=7m_OXWSKQUijlTks53XcjvRNgYxsd-hKcZJNZC5paO4,831
|
|
1054
|
+
telnyx/types/report_list_mdrs_response.py,sha256=Y1V0bvqzZck5Fsz4GCImda5UeEqO8dY_tcOAK8FgACI,1958
|
|
1055
|
+
telnyx/types/report_list_wdrs_params.py,sha256=6kzWR9r29umTvogrqxJ07ZtlmmWMRZAA5uc2iVqJbHE,1155
|
|
1056
|
+
telnyx/types/report_list_wdrs_response.py,sha256=lB7ZRXPcEl5GWkBZ_IwApjlv2JFspPMwl69uVU2RXoA,2386
|
|
1057
|
+
telnyx/types/requirement_group.py,sha256=DA5mSuhIrdViPX0LTQkh53F498bfdpEtYpvFzdGXSm8,1191
|
|
1058
|
+
telnyx/types/requirement_group_create_params.py,sha256=g5Lzv9ZV_vKw3SbRFmDhPJRDXd9ndciu6CoTAi0mXFs,755
|
|
1059
|
+
telnyx/types/requirement_group_list_params.py,sha256=IJwCYUZjKaUC9UrywQWpxhlwWFHei718uuG6Jt8bzhE,1091
|
|
1060
|
+
telnyx/types/requirement_group_list_response.py,sha256=tnppNgANdLq-yXTOCwgoRl-BCUFuptBDGdBIny-xQlo,310
|
|
1061
|
+
telnyx/types/requirement_group_update_params.py,sha256=EVh55HBnuKVbWTOYEesXSEhA3mm2e5dUZKoBNUah1kc,660
|
|
1062
|
+
telnyx/types/requirement_list_params.py,sha256=8G4Q8xaN1wXMz8uW2jtFZh4cnqzMNLk1G6doHNOogkU,1574
|
|
1063
|
+
telnyx/types/requirement_list_response.py,sha256=ipO1ARIT-MsN54uE782YB_4bEbTEk4LLktEHuGpwi4M,1731
|
|
1064
|
+
telnyx/types/requirement_retrieve_response.py,sha256=EyXQ0D16uMFD2B5a-SbFd2QGGUsTeVXvwbTp5w8wzGc,1646
|
|
1065
|
+
telnyx/types/requirement_type_list_params.py,sha256=jjS3jrTShEdEIX_7yrP13zusEq_yV66lyDSS9JGyN-I,871
|
|
1066
|
+
telnyx/types/requirement_type_list_response.py,sha256=kkvmLiF-lPy5mQwd0jcwDqU0U6lFNls_zHnnQcSS06U,457
|
|
1067
|
+
telnyx/types/requirement_type_retrieve_response.py,sha256=t9ormEevbwJnL5gslwDVKLJlhPQn5CAV0kVpNSIRJcQ,366
|
|
1068
|
+
telnyx/types/reserved_phone_number.py,sha256=8z3w5Cw0Vd2afQVykbNtevHMezTgtZAllDq9zM65UOo,994
|
|
1069
|
+
telnyx/types/reserved_phone_number_param.py,sha256=ewvRLAcec95e3RXIAq5eVJEIL6tFb6eIVusaJi46Bmo,283
|
|
1070
|
+
telnyx/types/room.py,sha256=MdRDNPRU33OKxPLmN19QhqGQWX4HhYo07kRHPUQBqzE,1544
|
|
1071
|
+
telnyx/types/room_composition.py,sha256=GElu3NghoRWCiQmEGwYlaOhky3M-k2ZeW60susrIxUk,2505
|
|
1072
|
+
telnyx/types/room_composition_create_params.py,sha256=wm0hJ_65TcRkDXNonQ2Z6b33q3jTunUs5C-zUhy85y8,1426
|
|
1073
|
+
telnyx/types/room_composition_create_response.py,sha256=GQZSymCSbN1d6d26W2G4K8M9Egzybwy9wNt0cTqENVM,332
|
|
1074
|
+
telnyx/types/room_composition_list_params.py,sha256=iyDO-mL0tmmY-dC6rW6w4jeJrwtvGoLMSdBeXTQiEJQ,1684
|
|
1075
|
+
telnyx/types/room_composition_list_response.py,sha256=CqjPnZM4N2Kb1pL9lyqD8OV-Tse1T8l1EbUXNgKctEk,427
|
|
1076
|
+
telnyx/types/room_composition_retrieve_response.py,sha256=Fg4Uz5ZpDRey6z73AqVFRUSH6526yXbWpHTwCqB2k-k,336
|
|
1077
|
+
telnyx/types/room_create_params.py,sha256=GzoZDwr8s0Yk-94CaS0Ivx5IY0qa-QTsbli84zytXdo,1121
|
|
1078
|
+
telnyx/types/room_create_response.py,sha256=wQj61G_7OGfR8ykFqdXnDM-sdmytyTLlrB05A26HOlk,276
|
|
1079
|
+
telnyx/types/room_list_params.py,sha256=Pfg34XK5buM24xbr_IPWuj-A57uQYzmaG5SdRER-IPo,2211
|
|
1080
|
+
telnyx/types/room_list_response.py,sha256=RZofogRWImEwCVeCjKcQyEMRRyCzlpNuhAYwiU93pOw,371
|
|
1081
|
+
telnyx/types/room_participant_list_params.py,sha256=7tY-UrulWo2q34TGhXaS01HjKATqmVUUB37bPeevbAQ,3022
|
|
1082
|
+
telnyx/types/room_participant_list_response.py,sha256=OtWkUCzHyMn_jVWBBkCseU0hKE4IDBqmO0Js7ZLXgck,434
|
|
1083
|
+
telnyx/types/room_participant_retrieve_response.py,sha256=aNJAk2FH1CFZRFl2TJ2py7KnhKrwNbZgvAh1Q0y0BGw,343
|
|
1084
|
+
telnyx/types/room_recording_delete_bulk_params.py,sha256=8x4bj4e2QpkWNW8uBnynMrlpFrxmI9oRdaW_oLQ_rbA,2659
|
|
1085
|
+
telnyx/types/room_recording_delete_bulk_response.py,sha256=g7O3r3lyda5ypaNxfNLKHLVFFPgfk2kbnaLJjL63IfA,399
|
|
1086
|
+
telnyx/types/room_recording_list_params.py,sha256=68gPUVJoQKgRfajL1x9JBEOKyvCqpL5b9mi9dz7Z2O0,2647
|
|
1087
|
+
telnyx/types/room_recording_list_response.py,sha256=4TLnpWbuK5maXugvBy-z1XLe4u_LpR2frxvnOnnbEJU,2013
|
|
1088
|
+
telnyx/types/room_recording_retrieve_response.py,sha256=lSIHhj_xWI9X3JsMp0ejf_Za9RdP5jpCSLwx6B7SCsI,1922
|
|
1089
|
+
telnyx/types/room_retrieve_params.py,sha256=xl4Z63xlHii9uOTsW9ZSUgwALk9RRSzfLyW02zbeuSY,349
|
|
1090
|
+
telnyx/types/room_retrieve_response.py,sha256=C-Eg1ciyPiI2qZUANW6u-IYBF-FQWRpGnCcs84jFkfY,280
|
|
1091
|
+
telnyx/types/room_session.py,sha256=7Z476C13L7hPm1aLc1wZ9C7al-9J8GDpD1KJ6CDKom4,970
|
|
1092
|
+
telnyx/types/room_update_params.py,sha256=S02-tBrY1eaCUyW0FgTJRthxy2uo4cJYFd055Scq-FA,1121
|
|
1093
|
+
telnyx/types/room_update_response.py,sha256=4xnpqff5b3iKfa1MaVu_9ndZT_1aMe47IUo6llHOHQM,276
|
|
1094
|
+
telnyx/types/s3_configuration_data.py,sha256=Rb8pg2eG16NrCE55L1W5Ex6uYfuzkFGICCqPf0znLCs,570
|
|
1095
|
+
telnyx/types/s3_configuration_data_param.py,sha256=sYjOi-bzPGgyymqlitk9kEirs_OUkVTMYvRpkP6xIUA,540
|
|
1096
|
+
telnyx/types/service_plan.py,sha256=eiGngnNzNDcqroKgc3A1FunGJzeBGI1JYp3xJP5WuSw,207
|
|
1097
|
+
telnyx/types/seti_retrieve_black_box_test_results_params.py,sha256=e_NCLA5lPwgfSX8XV2XmfwgUYOOn84F6tSie-nYzOOM,510
|
|
1098
|
+
telnyx/types/seti_retrieve_black_box_test_results_response.py,sha256=rbb1Pp1Co-nSg4KoPN1pFyQuLXoJw7flWLFZupqYbUQ,813
|
|
1099
|
+
telnyx/types/settings_param.py,sha256=clujK8UiVrcGv2aHgB6NrWXFs4bNk9Hxn-YcLee605U,752
|
|
1100
|
+
telnyx/types/short_code_list_params.py,sha256=XvxruVWLmmCNDRKF2bu9glplaaBvfiZqat4v6zX1B1w,956
|
|
1101
|
+
telnyx/types/short_code_list_response.py,sha256=AvvRr9Aigrx328b_MK4ANs1w-2R_xlvt6j8rlCc3yRs,404
|
|
1102
|
+
telnyx/types/short_code_retrieve_response.py,sha256=r0VPeGPNPdX7T0Z172uk1UGf4F7LZPpH8gzItaPGxnM,313
|
|
1103
|
+
telnyx/types/short_code_update_params.py,sha256=VBSQiPYagcMNJEuVI0jf3BMREMbNTX8u_5WfYkEPx6M,358
|
|
1104
|
+
telnyx/types/short_code_update_response.py,sha256=_LdVQSz5Tll_i2rN0UlLa3jQs_EkzDR3B8so_1bGYao,309
|
|
1105
|
+
telnyx/types/sim_card.py,sha256=ue5hoYTXnsSAzlVnpZQkrsOQUFwMbh-enoZqHnFSb40,6494
|
|
1106
|
+
telnyx/types/sim_card_data_usage_notification.py,sha256=IygmPGmwjIWghUlizAiJtvnPoVFIqwlhF54mZQCNU-U,961
|
|
1107
|
+
telnyx/types/sim_card_data_usage_notification_create_params.py,sha256=mZwgfx6uI9DZxUchwKWykIRKCsCsKxbI1oo_MR-pTcs,617
|
|
1108
|
+
telnyx/types/sim_card_data_usage_notification_create_response.py,sha256=L_CGKuBjgAnFbvYW-PhL7-lkcV36OHBbdkE2UbWo4DU,471
|
|
1109
|
+
telnyx/types/sim_card_data_usage_notification_delete_response.py,sha256=Ibd1Sr9CrpNa1TYCDhdMrths-l7QbWdF4ryyDeZUU7U,471
|
|
1110
|
+
telnyx/types/sim_card_data_usage_notification_list_params.py,sha256=t2fJ5zx1_Kdg5giMaDhJ7doaSYNSAr6zSZE4_01-9bw,649
|
|
1111
|
+
telnyx/types/sim_card_data_usage_notification_list_response.py,sha256=RHR2_mWmbZkP2I3zlrqpD3NysNXplfpdKcWxMaMt9JM,495
|
|
1112
|
+
telnyx/types/sim_card_data_usage_notification_retrieve_response.py,sha256=1sAgwZxXFhrHcgniIgJ_z0YNCrok97w3N_7dNPYtlnI,475
|
|
1113
|
+
telnyx/types/sim_card_data_usage_notification_update_params.py,sha256=QXs36w2t_6Rcuaf8bHlVFCzfBo26LWhISAqd1hkE4Pg,587
|
|
1114
|
+
telnyx/types/sim_card_data_usage_notification_update_response.py,sha256=mgl0D1N32KWxp1BuN4w4LE7bNk30nZsGfXsjzbBU_b4,471
|
|
1115
|
+
telnyx/types/sim_card_delete_params.py,sha256=0hWXOphTIb1QEYG-cwxX-8SSZ-lDf2o880O6OreQi7s,428
|
|
1116
|
+
telnyx/types/sim_card_delete_response.py,sha256=kPkuTddeFz1CvYmrkbd5H9llUH5omPbD5tRzplUXLoI,292
|
|
1117
|
+
telnyx/types/sim_card_get_activation_code_response.py,sha256=34Hq4t2NpAtuL5JPI2YOt4DCqnsX7Cf_0HgGQbyVF3A,446
|
|
1118
|
+
telnyx/types/sim_card_get_device_details_response.py,sha256=GhP3kHfEt81QVr9DhxXwHXlc2Dflfrc7EWtDnjW_4PA,969
|
|
1119
|
+
telnyx/types/sim_card_get_public_ip_response.py,sha256=g4zrRFlBPETm_vi81GlQ036f3exPxFJz64SWLg6fcRc,920
|
|
1120
|
+
telnyx/types/sim_card_group.py,sha256=ieUeE3Pu0ovo_7cZmx20Hrh_0LC6oTezyQRuDvaWnS4,1513
|
|
1121
|
+
telnyx/types/sim_card_group_create_params.py,sha256=GLR3ayzGZIHLEzQqz91RAz3IZsBlEutvtmlYso9W3ms,550
|
|
1122
|
+
telnyx/types/sim_card_group_create_response.py,sha256=GVG3yPRKLYp69eVHripBXu9kQn_5DfDKZVqyPCUtO2g,318
|
|
1123
|
+
telnyx/types/sim_card_group_delete_response.py,sha256=rUjSDPZyN6T_QP3hxIoGmPnVGt2YZQPwuIjJKkAdiBQ,318
|
|
1124
|
+
telnyx/types/sim_card_group_list_params.py,sha256=iak9E-kpKeCnsNjqqTKOMQsKAmra4wMkMRl5YtG-ysY,957
|
|
1125
|
+
telnyx/types/sim_card_group_list_response.py,sha256=cETfCRrn8oNxb-nNBzh8e-yzvFAS9Y8Y_5w_PhSlVds,1816
|
|
1126
|
+
telnyx/types/sim_card_group_retrieve_params.py,sha256=8qnfDQYr3BlCp27kJDmLsb_tigz96PUgL5C5Z2AhMxQ,341
|
|
1127
|
+
telnyx/types/sim_card_group_retrieve_response.py,sha256=wLwOKDSYRs2UkobvM1y17IcihJgpfhejrq_VyXwIp-M,322
|
|
1128
|
+
telnyx/types/sim_card_group_update_params.py,sha256=EidWSmuxGISfcl_73ycjHcKnl0PimisMjWYAuUbuYV4,530
|
|
1129
|
+
telnyx/types/sim_card_group_update_response.py,sha256=LyzaW-mSPTmKlclDb3fs00RsTx6mlrelXZTS7lZN2ks,318
|
|
1130
|
+
telnyx/types/sim_card_list_params.py,sha256=J5sEcQ6FdtU8wUNvN1LDfaUPrJ5vT-7XuF2sr-p4WFc,2237
|
|
1131
|
+
telnyx/types/sim_card_list_response.py,sha256=0bEtZ6PMqMtKb_9peXMF9HQmIKg3VA-twckPLEzHwrw,413
|
|
1132
|
+
telnyx/types/sim_card_list_wireless_connectivity_logs_params.py,sha256=YuHS18Y4Y0N5hFvyWwNgA02dDMViMimeQ74NTejL41o,541
|
|
1133
|
+
telnyx/types/sim_card_list_wireless_connectivity_logs_response.py,sha256=dV8QzAaZF4JMKGWwvHKSXVoLsI6E4m4lxXZyOIBh-ig,3727
|
|
1134
|
+
telnyx/types/sim_card_order.py,sha256=HMRVEcZZLtMDcwFSXn7-U9k7sPLyWQkFmZGG4KH-V94,3066
|
|
1135
|
+
telnyx/types/sim_card_order_create_params.py,sha256=5KAsNknANWAtO02f78EVgMzqliE-rkOp8lYA-rwvrXQ,431
|
|
1136
|
+
telnyx/types/sim_card_order_create_response.py,sha256=PeC0Lgw9gvzJoCg5-En-_4SGwkS9yQ9oh_6E3Mdv1b0,318
|
|
1137
|
+
telnyx/types/sim_card_order_list_params.py,sha256=RWVZZptVPfny5elx0kMqFnrSW5Zb2r4aLmlEjLoJJw8,2599
|
|
1138
|
+
telnyx/types/sim_card_order_list_response.py,sha256=0Lhoe5zeHrMh2m9Azvu5ydWwWhhZE8mTiisNdWkOfp4,413
|
|
1139
|
+
telnyx/types/sim_card_order_preview_preview_params.py,sha256=GLB9vJsYy-BUADgN_0twoq3f1vHIRG86f_Zt6JGTtac,511
|
|
1140
|
+
telnyx/types/sim_card_order_preview_preview_response.py,sha256=x2dhTdPLD6DWjfiPSJhHfjcYtP3r_lXEUPWNrEEblcs,1290
|
|
1141
|
+
telnyx/types/sim_card_order_retrieve_response.py,sha256=GYLCvb2lrz2VetUPGBNdK9iEWY0v2mSwu_VGHgqA3b0,322
|
|
1142
|
+
telnyx/types/sim_card_retrieve_params.py,sha256=msfn5KqDidUX18bAc0mFlQA70XECzWhdAl7ria3s9uk,616
|
|
1143
|
+
telnyx/types/sim_card_retrieve_response.py,sha256=1Gnx72wKn2QvDXii7elirdIUjVEl23ZXDrq2X5O_xTI,296
|
|
1144
|
+
telnyx/types/sim_card_update_params.py,sha256=lgcDVFpyLRdaVROawfYy1gvDxI2TZjUqDsFbYgHORPg,973
|
|
1145
|
+
telnyx/types/sim_card_update_response.py,sha256=TQ8B1JYAhOFzzpywZ_0I5AFSd_UQzX1OhphcqbwnMW8,292
|
|
1146
|
+
telnyx/types/sip_header.py,sha256=SBBvBzGKngaba4k0-vKQZYuwdLwCtoPglPt2C_GTzjg,339
|
|
1147
|
+
telnyx/types/sip_header_param.py,sha256=VF4Dw9UcPG0qulCDCup7wm9BAVcSAO3kmYWIQyhuZRI,406
|
|
1148
|
+
telnyx/types/siprec_connector_create_params.py,sha256=8TjCI3DJzIG29H-nzntvyHvjEFRssJ8vI5-J8KUEqO4,612
|
|
1149
|
+
telnyx/types/siprec_connector_create_response.py,sha256=5IHpw07FODSscGqXSncsLfS8Qw_WdLf_ySg8-7lRZHU,854
|
|
1150
|
+
telnyx/types/siprec_connector_retrieve_response.py,sha256=OQRBDNKPhfmt0UpRB3sR1WQPPvBXbXAPA8eo9OgvpII,858
|
|
1151
|
+
telnyx/types/siprec_connector_update_params.py,sha256=H2XZbb53UZy__CytRodw82XDpLy1VC2B2KrOr6w155Y,612
|
|
1152
|
+
telnyx/types/siprec_connector_update_response.py,sha256=3XJlAD7OkMMx6bMxRVlTBf6IbLBdiO3tw_gNeoFfAyg,854
|
|
1153
|
+
telnyx/types/sound_modifications_param.py,sha256=vjaonlIrV7SanIqjlIR2WcKQWZ-gQAvjP9WYd6FAowE,715
|
|
1154
|
+
telnyx/types/stock_exchange.py,sha256=BmxOo0O-trPZ9NXynvfWaifk7yvKTmrieO5SE4Y26K0,488
|
|
1155
|
+
telnyx/types/storage_list_migration_source_coverage_response.py,sha256=scPDrxF0TeUHHjpZi7lQgmOCM2dF7Dwi2FGm6kSw2bo,700
|
|
1156
|
+
telnyx/types/stream_bidirectional_codec.py,sha256=5vpEFf39xHjdEheIlioJQA5tTXj5dHlXwZXrTfs3egQ,272
|
|
1157
|
+
telnyx/types/stream_bidirectional_mode.py,sha256=0q0fmRopWjaa4QQAbP0kWWEdsYjYV-4S2isZPBVuxLw,235
|
|
1158
|
+
telnyx/types/stream_bidirectional_target_legs.py,sha256=MbV-S4HB92iCT3dkYUPLgHkpV0Hu5aF-TZ2tiN6qAhY,261
|
|
1159
|
+
telnyx/types/stream_codec.py,sha256=EAxerZRD_V3kaQckzKBWhRNZBJilq5Wbd65X4Ydntx8,257
|
|
1160
|
+
telnyx/types/streaming_failed_webhook_event.py,sha256=99U5ZHyGW1RdGr-H6meGBnxV7f-JVuG9CWCyRI4T49w,2364
|
|
1161
|
+
telnyx/types/streaming_started_webhook_event.py,sha256=1hORCcvNXVPGwuPnKvXBeLqKXTDAKkCj8TpDS7tOTCg,1696
|
|
1162
|
+
telnyx/types/streaming_stopped_webhook_event.py,sha256=r0s21JyCa0nWqD-LFLEeUAxMUrfQMKBbN0G7kiiA-MY,1696
|
|
1163
|
+
telnyx/types/sub_number_order.py,sha256=KzlLcQFuwm6YUWPuSWmKg5qEYCEHaVgpCwS6uAlqnbU,1585
|
|
1164
|
+
telnyx/types/sub_number_order_cancel_response.py,sha256=V2Rg3ImwNq9LFBeKrt-AQrtxo4B1H9yZcG81NYC_gjw,328
|
|
1165
|
+
telnyx/types/sub_number_order_list_params.py,sha256=6ZrP75ip2NTV0vwxkRxeoHCnyKjso5FDZ-auqKj4jUQ,886
|
|
1166
|
+
telnyx/types/sub_number_order_list_response.py,sha256=Mqyf62ir2TiH8asxnKQZmOfZ5aKQouzflc1L_bpAmNE,423
|
|
1167
|
+
telnyx/types/sub_number_order_regulatory_requirement.py,sha256=cJj1dw4CLHlJfh_lSEdvOG39h1vRqBwAujXGPMlZJD8,500
|
|
1168
|
+
telnyx/types/sub_number_order_retrieve_params.py,sha256=RNML0ojZSAYJ9Ak6Hu5cy-CHfhpqsyr0cF31gL6y9Oo,549
|
|
1169
|
+
telnyx/types/sub_number_order_retrieve_response.py,sha256=H8jhwUzIKHlXrXp7AEKnxfdnfAVnKTIK7NIhpmtFl8I,332
|
|
1170
|
+
telnyx/types/sub_number_order_update_params.py,sha256=bNDhrDCqnplffOEsu_g2lLr7Pg5cxwTTJ_O0wR24W5M,448
|
|
1171
|
+
telnyx/types/sub_number_order_update_requirement_group_params.py,sha256=DxoVR_s0VrM9c-6LeKn5XjzWBzJH5BnD55ojeOQFqIg,402
|
|
1172
|
+
telnyx/types/sub_number_order_update_requirement_group_response.py,sha256=9i9wpfyvL017r6jseM56VDidVCzcrhdm0NAZP1F1mDI,1987
|
|
1173
|
+
telnyx/types/sub_number_order_update_response.py,sha256=aPferhFy2l8vqph5zN8Tr_5W4_ZoYIQpitLpsfyEsiE,328
|
|
1174
|
+
telnyx/types/sub_number_orders_report_create_params.py,sha256=8ULbPKmQifLhXasaLO3p0fyfX582-xDHB8zMAd6Zyww,945
|
|
1175
|
+
telnyx/types/sub_number_orders_report_create_response.py,sha256=yijdkXCATSVSdPvIHTpsGcEK8SorIXOvAF_JgIbJRVI,1498
|
|
1176
|
+
telnyx/types/sub_number_orders_report_download_response.py,sha256=QZVXj_5IVAP-hE6-qew6iZ8zTnzrcKr4mTpNYQLdJVE,239
|
|
1177
|
+
telnyx/types/sub_number_orders_report_retrieve_response.py,sha256=uZqfbvP3YpaPJKls4gIcHfDbD70hWSI6Ap8yzEMCleQ,1502
|
|
1178
|
+
telnyx/types/task_status.py,sha256=inaFK0Mjsre1BAeB6wZdKqUFCVHJSaEaEJe0iqEqnlU,252
|
|
1179
|
+
telnyx/types/telephony_credential.py,sha256=YRSUL33R7HLWsgXgB2MjrhHp1edMdc4wD0Oq8cU44Tc,1132
|
|
1180
|
+
telnyx/types/telephony_credential_create_params.py,sha256=FPfn9GAGhg85nYAqtOpLEGnc6YQ9DZQQkpKVBEz1V7o,609
|
|
1181
|
+
telnyx/types/telephony_credential_create_response.py,sha256=aelSQZx2nTNu07vyGx3EgXVvaAfycR2LH1d2Su5dJl4,352
|
|
1182
|
+
telnyx/types/telephony_credential_create_token_response.py,sha256=vdHBV4OQ0dcWww7dWCXf1zKLqLCs3kRmiv7JX-iyngk,238
|
|
1183
|
+
telnyx/types/telephony_credential_delete_response.py,sha256=D3Ojo2pysYGcA4C9cHx12Hr4gWSUd1l1dQoZqI0MU30,352
|
|
1184
|
+
telnyx/types/telephony_credential_list_params.py,sha256=X6i36Uk_9iXqOnH_Goqgva_ubB37_Uj54le6EN3V0Vk,1005
|
|
1185
|
+
telnyx/types/telephony_credential_list_response.py,sha256=x7bHEW-LLVrAnFMvZ2VxTMmvUqJwjbk266Llaqdb2bg,447
|
|
1186
|
+
telnyx/types/telephony_credential_retrieve_response.py,sha256=ILXp0qHAs12wL4E5vVMDUa7fFrmsN8tWdtaU4czPhEI,356
|
|
1187
|
+
telnyx/types/telephony_credential_update_params.py,sha256=WjBH96BIA8jbqmss0M_MPY9x4cYmOGbSs4ys9MQneIU,589
|
|
1188
|
+
telnyx/types/telephony_credential_update_response.py,sha256=LFpp88SJWHUTvm2iSHBRUGh4cwhGp8hjtZoiH05wbgE,352
|
|
1189
|
+
telnyx/types/telnyx_brand.py,sha256=6rMruNlzxO-QaISHyjni8Asta1W4LPxpSPUfQb3eYBQ,5417
|
|
1190
|
+
telnyx/types/telnyx_campaign_csp.py,sha256=oZW5xx8Kjf7-zM4eiahwPJSyhZl09rJOV7l8zmVOAXg,8131
|
|
1191
|
+
telnyx/types/telnyx_downstream_campaign.py,sha256=BfuYv57KWESLO6WJW0th5ojATo_lWRSwchj-kCdjgdA,6071
|
|
1192
|
+
telnyx/types/texml_application.py,sha256=vKy3RGG90iOr3rTA_QSyKqwTX7ungjT4MBLO5aCoVTw,4208
|
|
1193
|
+
telnyx/types/texml_application_create_params.py,sha256=0RL5NgYXMJ4ssn81uLbUmgOWHVTFBXmKRD9tRUuBqkw,3600
|
|
1194
|
+
telnyx/types/texml_application_create_response.py,sha256=3UQPNFJF97fFnyiGp5RIDZBbdkKWMEdsQpnMIeWtmgQ,337
|
|
1195
|
+
telnyx/types/texml_application_delete_response.py,sha256=PoZI3wfrCXq50MDVZrX7Qr1KRHUGgsoBOyKVK2UWbks,337
|
|
1196
|
+
telnyx/types/texml_application_list_params.py,sha256=1ev94OTDiN6Aqfh2t_bcP9lNNpmovQFKwi4HUt8nKpk,1719
|
|
1197
|
+
telnyx/types/texml_application_list_response.py,sha256=m6pLfgG93cZhhvpD7tw-yCZ4_agmCwp4unBQVU3Uxzw,566
|
|
1198
|
+
telnyx/types/texml_application_retrieve_response.py,sha256=Aq9H0TIZf4ULlGlz1_yoWusXP1Gh-sUfFB-iUbxn-Jc,341
|
|
1199
|
+
telnyx/types/texml_application_update_params.py,sha256=tjvXOlR8LVIaLN5M9Xdrwgv1kyZw4E7HF_SXSJDYWnY,3600
|
|
1200
|
+
telnyx/types/texml_application_update_response.py,sha256=cGDbjSfxA_kdV3gDX9LSgB6QxcM5heJoBTct6R9OFsg,337
|
|
1201
|
+
telnyx/types/texml_secrets_params.py,sha256=Szn_zRWLU9iwNNhqFgjGGZLnY0GTXoP9uf1JzXr0_LU,523
|
|
1202
|
+
telnyx/types/texml_secrets_response.py,sha256=ylFPjOUsLefgleC1itNVHFGscKGkKbSsWq3a2rwW9_Y,408
|
|
1203
|
+
telnyx/types/text_to_speech_generate_speech_params.py,sha256=4t5XT6SYw2vkWyITJ08I6ASt0C10tId4v3G3TWEBrOI,703
|
|
1204
|
+
telnyx/types/text_to_speech_list_voices_params.py,sha256=csnzlAqf8BYDdk4x007Byv-PDrQnfowUak2dxBWIbSI,484
|
|
1205
|
+
telnyx/types/text_to_speech_list_voices_response.py,sha256=c1j4-VT3c_m4kJVEXfYSAoiFl8v4m9c1shHQMvnVDzU,592
|
|
1206
|
+
telnyx/types/traffic_type.py,sha256=A-AJm17wtfR_2Pw5Kv8UikoP1VO8HmdvBhcLArUMFZA,215
|
|
1207
|
+
telnyx/types/transcription_webhook_event.py,sha256=vcg1hLd5IFuOJHiVi1-TLYkf5ybw_18MfHueHPSmMZU,2267
|
|
1208
|
+
telnyx/types/transport_protocol.py,sha256=Gyoe_0z2H4u4wCzPnhwT8ohBi_YCSkBOtanpOM5COtA,230
|
|
1209
|
+
telnyx/types/unwrap_webhook_event.py,sha256=Ee8V2LA5KrQAFxBZ_2FvopKY22Ehc5zOR5qOYB15KaM,7932
|
|
1210
|
+
telnyx/types/update_regulatory_requirement_param.py,sha256=QhOyVF_pzTxrYUQOBsYMfUAZ4P-rZPlEFFEHZTvYn0A,552
|
|
1211
|
+
telnyx/types/url_shortener_settings.py,sha256=qL9sQEPrx8nejnZ0-pPtve9ki39q9mSx8PQctGSisec,845
|
|
1212
|
+
telnyx/types/url_shortener_settings_param.py,sha256=Z3QI7_Ltgktz4mU2D7MA3YHpb0X4CzaA22k9lrpcYmM,852
|
|
1213
|
+
telnyx/types/usage_payment_method.py,sha256=vrC9TQxAft3KAEG4-djggbKTrg6XV2RiUyR2oNNIt1w,224
|
|
1214
|
+
telnyx/types/usage_report_get_options_params.py,sha256=h7u8CfNHK-nU3P-nkTlzPi9CT8mWAa_rEWGwPpQZI7A,503
|
|
1215
|
+
telnyx/types/usage_report_get_options_response.py,sha256=1zoSebNH-2IC983CpEblg-o6-JNylcEpHGbxA_qhy6k,977
|
|
1216
|
+
telnyx/types/usage_report_list_params.py,sha256=YU1n5mo_-B4LqSF3ULHRzjaRRkExi20TiG621nrQmsE,1753
|
|
1217
|
+
telnyx/types/usage_report_list_response.py,sha256=d_fmqbMSmL3THxhpqvTBhlcCbR_81d3Blam8ndQwAZs,649
|
|
1218
|
+
telnyx/types/user_address.py,sha256=YtjviQBN_Q8zuqFIyOVf3X3isHXct6AsDJLd8i9LMIM,2314
|
|
1219
|
+
telnyx/types/user_address_create_params.py,sha256=i2MzwYnifAEIy_X-1LI40mDDkCYOHUdrU83BZcn2bhg,2738
|
|
1220
|
+
telnyx/types/user_address_create_response.py,sha256=XheRImBaE4wHGyEn6x303hKRAzLY0tlROpY9bi4vXPI,312
|
|
1221
|
+
telnyx/types/user_address_list_params.py,sha256=EM2j_h6HU6i5vadiKZNEa8n_yDNz4hx6JCuyY_wv9E0,2560
|
|
1222
|
+
telnyx/types/user_address_list_response.py,sha256=3DhzZVONAZFTp5Os3R9iYRTIcCcLMCVLUtAn71ZdbvE,407
|
|
1223
|
+
telnyx/types/user_address_retrieve_response.py,sha256=q0sb1tJNnWg5GZx8hLOGa2BmPiES5e6D-9E3cJBXM6E,316
|
|
1224
|
+
telnyx/types/user_tag_list_params.py,sha256=K2a4Vr2hd0faOncocQE36DERjL0EWAGlV4IiaKhRFkk,471
|
|
1225
|
+
telnyx/types/user_tag_list_response.py,sha256=peplsopZlTAWLZnTF9qHOc1SnWV3gB-kHrYU6TgitUU,1053
|
|
1226
|
+
telnyx/types/verification.py,sha256=etIqQbjIWYn1cU8NFuEOK4sMXq6Neq4Jeme3Fnf3dJU,1309
|
|
1227
|
+
telnyx/types/verification_retrieve_response.py,sha256=1VDPKAqX8HPHo8YKNddOPX0hM653O1cUJU-NPOjYYtQ,274
|
|
1228
|
+
telnyx/types/verification_trigger_call_params.py,sha256=vJsgP7Tjum_Zf_JVzaBMSdHtG0Fn75K04e-nZasNH5s,872
|
|
1229
|
+
telnyx/types/verification_trigger_flashcall_params.py,sha256=gtbnxXpCy-QbKrmj8gkgZPUcLmheZgBh7yCq0fYvjmE,551
|
|
1230
|
+
telnyx/types/verification_trigger_sms_params.py,sha256=3fLec5fpkUTdsmml2tLp-c6elbD5ZHm_xoux-QSMFYY,660
|
|
1231
|
+
telnyx/types/verified_number.py,sha256=A9j9l8Znwt3wXSOxtVvSpwBH4IsC7ydPzd4oPSPXwd8,445
|
|
1232
|
+
telnyx/types/verified_number_create_params.py,sha256=UbHdOGt_wcA-B9fyTdA1CvGTobAmneh2uJxzxuU7RWw,406
|
|
1233
|
+
telnyx/types/verified_number_create_response.py,sha256=k3kikVZDwy4UZ8szFrnfknJYdcZeBvYM5TpJOx_i-PM,327
|
|
1234
|
+
telnyx/types/verified_number_data_wrapper.py,sha256=O9UQYCkGMK4oScY6TppqTuPXkzJ93i3KGNjpX65HTzY,321
|
|
1235
|
+
telnyx/types/verified_number_list_params.py,sha256=S2iMCu-O2ztlcHyIkb1YsChOzFxhEQuGWZf34e3xVlI,515
|
|
1236
|
+
telnyx/types/verified_number_list_response.py,sha256=6-9_jeZNSTTJfqL6kFErVoC6sIqkRC8Z14Z7qJ9GjEc,522
|
|
1237
|
+
telnyx/types/verify_profile.py,sha256=9WksG8mqGRX0WUEsaCApvsQGtjAKwxtZWDjT1tF-K_M,4493
|
|
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
|
|
1241
|
+
telnyx/types/verify_profile_data.py,sha256=zuMcvo3F_6ugK6OJUEtmTey-WSMpUqkvJDfLruSViYM,302
|
|
1242
|
+
telnyx/types/verify_profile_list_params.py,sha256=LZr3l8Nsq-kXb3pWUvhBOuWc5QvLY9A9MxmpTbbw1UU,670
|
|
1243
|
+
telnyx/types/verify_profile_list_response.py,sha256=ntFBhR_57db0aAgOF09K2h20whmrRHG-haYdYBta_Ho,517
|
|
1244
|
+
telnyx/types/verify_profile_retrieve_templates_response.py,sha256=ZeFhBEIr0HLyDZz_Lbb6t679W-5esCvZxJrC0x5f7dc,382
|
|
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
|
|
1248
|
+
telnyx/types/vertical.py,sha256=iHaWXSXp1agwA2ORKJA3VwTJizZu9SFoEatEqcEMz60,494
|
|
1249
|
+
telnyx/types/video_region.py,sha256=zaMiWSVkAc0FbkWrK-g1uNPqW0QgBT9mH7kpjrpqzXw,1488
|
|
1250
|
+
telnyx/types/video_region_param.py,sha256=RZ3fm6bw1utuNM1nUsntXvGLUf9_NQky2FWcpEhoFt8,1529
|
|
1251
|
+
telnyx/types/virtual_cross_connect_create_params.py,sha256=lH8vJlO__jXCuT2VOZr3VdmdJAQ0vrfWD3Sobv-n66E,3227
|
|
1252
|
+
telnyx/types/virtual_cross_connect_create_response.py,sha256=0fnH3XhujxhBzmlpPS90utp89FLqmDPF0sjQexRXGtI,4189
|
|
1253
|
+
telnyx/types/virtual_cross_connect_delete_response.py,sha256=GJLAxYlMLiPdmmbOs0yF4SSGfAFwlc4l4N-K2FNkYp8,4189
|
|
1254
|
+
telnyx/types/virtual_cross_connect_list_params.py,sha256=VegvH3kYUhN4Lk8S0eVscN4zlX6my2IaWJvI2HmqCRk,774
|
|
1255
|
+
telnyx/types/virtual_cross_connect_list_response.py,sha256=jQDVhKdB66acwc6w1afNkUhroZh_VLYozbMV00i5MYU,4284
|
|
1256
|
+
telnyx/types/virtual_cross_connect_retrieve_response.py,sha256=M7SPhYEBbnS9iz5EdFuYZgNzhdtwhFOl6dUrXmiVilc,4193
|
|
1257
|
+
telnyx/types/virtual_cross_connect_update_params.py,sha256=zjgxe6x5ERA45IXgZdoDSg4DYYS1k66iHnd2ar9mgTk,1302
|
|
1258
|
+
telnyx/types/virtual_cross_connect_update_response.py,sha256=NSx5BevIdONecR7txWk-ed7BPPaQTcH17HdvwUzdIjE,4189
|
|
1259
|
+
telnyx/types/virtual_cross_connects_coverage_list_params.py,sha256=2PAaHsJmUdA0uDvVWMwCfOil2lcRfqbROb5OAjOxQDk,2277
|
|
1260
|
+
telnyx/types/virtual_cross_connects_coverage_list_response.py,sha256=kWEV8TSTEErPEQsIFyCtsIkvb8UnacgLW5fulmS0h7o,1585
|
|
1261
|
+
telnyx/types/webhook_api_version.py,sha256=Z1OhRLRE2APWtQOvcvPZPs0gL4cLK44_2ar1gx8REaE,219
|
|
1262
|
+
telnyx/types/webhook_delivery_list_params.py,sha256=i8Ud2pwGvz5iKveZOdKDsap6nuzbKwRzAzv6bH_VkGQ,2451
|
|
1263
|
+
telnyx/types/webhook_delivery_list_response.py,sha256=EuXC75OpUzhtGUKdYEfhw8HMwRk4A9WxvGvxtTl7d7U,3251
|
|
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
|
|
1267
|
+
telnyx/types/wireguard_interface_create_params.py,sha256=v5hzXUge3M5qhsPn3JZL-fOLDeFkPjqNMUkkhM0DM_g,623
|
|
1268
|
+
telnyx/types/wireguard_interface_create_response.py,sha256=QdkMG6kIs4PC80sWN7XEFCxd5AL1zB-FE64ZA235FFo,1181
|
|
1269
|
+
telnyx/types/wireguard_interface_delete_response.py,sha256=CQca3bq7aQR7Vcb2YKG3rKiIqAfheKK0JBawUNtnovg,1181
|
|
1270
|
+
telnyx/types/wireguard_interface_list_params.py,sha256=QljJZVT6SgiyllQW6Oy3SdK3pLsTOYM64cs9G_DPKx4,772
|
|
1271
|
+
telnyx/types/wireguard_interface_list_response.py,sha256=9cR23C5vA0b-fKh0zIzPCYhCr-YgmH9zVViIJFNFSsk,1276
|
|
1272
|
+
telnyx/types/wireguard_interface_retrieve_response.py,sha256=YiVz2P4cIcgHvlIUBCiGLcwHpulShqNCNiWA4VMI3RM,1185
|
|
1273
|
+
telnyx/types/wireguard_peer_create_params.py,sha256=IvkydnUQI-XDV-NNqQySgVxV8yD6NHWTV1009Tvw12w,565
|
|
1274
|
+
telnyx/types/wireguard_peer_create_response.py,sha256=XHie9zm3OJx7-MJDg4afrevyHOAwnybWAXenzSl1eXU,1194
|
|
1275
|
+
telnyx/types/wireguard_peer_delete_response.py,sha256=DVJzxBB5Yo5-jiIEFYHBpqP5DoQSqs1Utan8U_af_BE,1194
|
|
1276
|
+
telnyx/types/wireguard_peer_list_params.py,sha256=q2w2uCRCnyG11YqQed4ub2l4EwrCetWjDPsyZinIFE0,805
|
|
1277
|
+
telnyx/types/wireguard_peer_list_response.py,sha256=PEUr0AxAzqnSAJJS6p6ILaGuchWOw81s2n7gI8YfN-w,1289
|
|
1278
|
+
telnyx/types/wireguard_peer_patch.py,sha256=Jehu7h2y3q5Th1mK8_pcnfeBucJrmlX9vAdrldFucuE,417
|
|
1279
|
+
telnyx/types/wireguard_peer_retrieve_config_response.py,sha256=adL1Wt2kiWfHo_NrpTyzskiqpeTqAqM77ktFfyci8CI,232
|
|
1280
|
+
telnyx/types/wireguard_peer_retrieve_response.py,sha256=xBy3oNRwWdLtjyxCp9X8ZrNTdgI7-qAZygnmsyWo7h0,1198
|
|
1281
|
+
telnyx/types/wireguard_peer_update_params.py,sha256=SK0gM6fvCVhJ6kMFpie-mD3Ud5TEJwAnI5zS2ye-icQ,442
|
|
1282
|
+
telnyx/types/wireguard_peer_update_response.py,sha256=d30H13JOxKSxsLAyXjD52yXc4gHAJJ8Y6b4TCgJXiTk,1194
|
|
1283
|
+
telnyx/types/wireless_blocklist.py,sha256=Nt4NIIMZA4XNnLqVp9BAY2VMyEFdVKLz7kvC4vwxL7k,910
|
|
1284
|
+
telnyx/types/wireless_blocklist_create_params.py,sha256=lpYH6yUDojo2MK0QNqdcOzjnVtWnKxQXxP0Vcc90OlA,624
|
|
1285
|
+
telnyx/types/wireless_blocklist_create_response.py,sha256=bF7gI5mJ0ix92wnVrcpf9_bEg3ixoHbHEQxlfr8VeiY,342
|
|
1286
|
+
telnyx/types/wireless_blocklist_delete_response.py,sha256=Ey8vaxbXdTuCVODONKSaVgjmGfV0IUCbeNZsjTSCBSQ,342
|
|
1287
|
+
telnyx/types/wireless_blocklist_list_params.py,sha256=Ams_BwvX73GfqUXccA6Xp_eM-S_zY1H7sPCPUNMEP20,875
|
|
1288
|
+
telnyx/types/wireless_blocklist_list_response.py,sha256=UMEauF56Z4N6ejxjvz00dcM2w6HrokmiMI_VaVqCakc,437
|
|
1289
|
+
telnyx/types/wireless_blocklist_retrieve_response.py,sha256=Ea7IxQV_i_G00dJnDpiInIsKNQRookEUZkljNH9uUbg,346
|
|
1290
|
+
telnyx/types/wireless_blocklist_update_params.py,sha256=5xCHVvQHLKPOSMmYmq0seJg4y8Hp8TWRKgY4YcLgjpE,584
|
|
1291
|
+
telnyx/types/wireless_blocklist_update_response.py,sha256=C5RmZkPXN76DOtNFAzkpfNTw-PNntRY7rcHF2QhzJdE,342
|
|
1292
|
+
telnyx/types/wireless_blocklist_value_list_params.py,sha256=e83Jq0z91nDQ4OqEFG_AJkMGyuVQkUCTZeaplC2cw1U,470
|
|
1293
|
+
telnyx/types/wireless_blocklist_value_list_response.py,sha256=7F-zPBkvgQjG4d9lOVfi9JlcqJRT9VnqGkfBNV8Seuk,880
|
|
1294
|
+
telnyx/types/wireless_retrieve_regions_params.py,sha256=lj2WCL_wkH33fTyYvywas_SudiqKUBq63WRjoyG66sg,421
|
|
1295
|
+
telnyx/types/wireless_retrieve_regions_response.py,sha256=3JzBDEWyQ6ZAhK7tmE1Mm-RU8pWWMe4u_4pmjNKIu-A,649
|
|
1296
|
+
telnyx/types/actions/__init__.py,sha256=o5FXTG_jn1gQK6IZa_tT73w8Y2GDRmB18k2mvN-bWqQ,459
|
|
1297
|
+
telnyx/types/actions/purchase_create_params.py,sha256=XW_aMip4mSnDb0yxG6llKs7mkStvQGv81HpctYFCVfs,1155
|
|
1298
|
+
telnyx/types/actions/purchase_create_response.py,sha256=iSfWhLU6OXxLSgws_8pLZjhzsqxGJX62_sygDh17_NI,850
|
|
1299
|
+
telnyx/types/actions/register_create_params.py,sha256=Hoe54_kHp6oo0uBKV5ua7sH_T4xo-dn6CvLceD2-8CA,767
|
|
1300
|
+
telnyx/types/actions/register_create_response.py,sha256=7Wgd-1zWLcFLafWd7SZVCOtgoi8N19nPKbvCUjJ_9cM,850
|
|
1301
|
+
telnyx/types/addresses/__init__.py,sha256=m-_aSxRiotRXrdHEqmV9NQlyot9383J7GhH7A9J7LjA,515
|
|
1302
|
+
telnyx/types/addresses/action_accept_suggestions_params.py,sha256=n8ifP4q6XNEaLrgkLalRt9f20S1oXQshCdhKnyLOQcY,405
|
|
1303
|
+
telnyx/types/addresses/action_accept_suggestions_response.py,sha256=PUK8ojT69lS3oSypV2FauV0MuxdHCmsoIKeufmHqsr0,579
|
|
1304
|
+
telnyx/types/addresses/action_validate_params.py,sha256=Q94O9NnGAxWADHZS4lFWDuypKVssnBeouGJ9-XDIj6w,993
|
|
1305
|
+
telnyx/types/addresses/action_validate_response.py,sha256=w-UDoOKNzJAUURNiJhj5Os0qm8jxCNbJ5GA7ByyLuzE,1993
|
|
1306
|
+
telnyx/types/ai/__init__.py,sha256=Z8_3J4Not4iyO8aKo2rYPaVcIz8Neh3IZG38tpHyLlE,6498
|
|
1307
|
+
telnyx/types/ai/assistant_chat_params.py,sha256=CC0HBoZ2dWKUlrqMMuiz7Uj_Fg_abaMltXOTQAkLNLA,557
|
|
1308
|
+
telnyx/types/ai/assistant_chat_response.py,sha256=EB-0npHYLL4g2EsRBpdDm-objtcDg5NYujSpc9483-0,301
|
|
1309
|
+
telnyx/types/ai/assistant_clone_response.py,sha256=_vY99mNwv1VphjuASE9ySPDfsrOq0vc4ZwoIEPjUNkA,3022
|
|
1310
|
+
telnyx/types/ai/assistant_create_params.py,sha256=cjcxqMWuNxef5C7jq9R5ktWld9TgORF5Wz6n0WqAELU,2852
|
|
1311
|
+
telnyx/types/ai/assistant_create_response.py,sha256=9rvGRN8uUxk6Twe6FVlMXKlHIQJi2hSRNQoW9iBKFlg,3024
|
|
1312
|
+
telnyx/types/ai/assistant_delete_response.py,sha256=Ds8GWenkIBgXRao6LDJX7gZb25y8V482zfbFoqvRzMw,251
|
|
1313
|
+
telnyx/types/ai/assistant_get_texml_response.py,sha256=sTvUF8AQOVOB0OGnkvpWoMqReDTuxSM4-eS7bHoiXSE,212
|
|
1314
|
+
telnyx/types/ai/assistant_import_params.py,sha256=ky2CJa42M63NzpBxoFWYU8NIwC2Y5guRQpNkHImAHoU,616
|
|
1315
|
+
telnyx/types/ai/assistant_param.py,sha256=JmTZBM5cvf9_FL2dfpSE4kgxT8cYlTi0jYrEW2qragg,3629
|
|
1316
|
+
telnyx/types/ai/assistant_retrieve_params.py,sha256=JZ7ojEWhYs2h3e0JBUXfKnaz5tdb01Nx0eP4ntHVTEw,447
|
|
1317
|
+
telnyx/types/ai/assistant_retrieve_response.py,sha256=g8c-z-jXzBYAuqaQMv_DnPzJZjyunhu2Gzl7KWiHRmk,3028
|
|
1318
|
+
telnyx/types/ai/assistant_tool.py,sha256=EDBdF-MtB5DVl8ey1FuoVt2Z71nNv-P2OE9iXq4TRI8,3461
|
|
1319
|
+
telnyx/types/ai/assistant_tool_param.py,sha256=SVCigf9OuXF31xNTLtR4pOfrGXNIfXZbY6FoWbjHP0s,3653
|
|
1320
|
+
telnyx/types/ai/assistant_update_params.py,sha256=Xiw9w8pVTTinim7jInrT01boGZFpoYY5IkWqF-ppHCA,2949
|
|
1321
|
+
telnyx/types/ai/assistants_list.py,sha256=EYMlIRblfrAnxSkTCx8SCDfFBEd89H7rlm4GrQgOaYs,3060
|
|
1322
|
+
telnyx/types/ai/audio_transcribe_params.py,sha256=E1QqgLbL27D1E9a_7B455aZPFR4N_NHeNft6KpaH69M,1576
|
|
1323
|
+
telnyx/types/ai/audio_transcribe_response.py,sha256=nwvEgMlNdOqlnlKOP2uzU0GkomsqD8utgeVPDOAGepQ,953
|
|
1324
|
+
telnyx/types/ai/background_task_status.py,sha256=qfGTzQ1GkZNXhjkOQkQS7_UGv8eDCwC6_S_b1xN-hQU,280
|
|
1325
|
+
telnyx/types/ai/chat_create_completion_params.py,sha256=6w2kPoAdx1wCvQNxhnjDkPzpDaIt_cSRwJrNd88YQfs,5644
|
|
1326
|
+
telnyx/types/ai/cluster_compute_params.py,sha256=BzIa0BY7uje0bt37QL805eyST68PszbY0ZwrBFEKBis,1113
|
|
1327
|
+
telnyx/types/ai/cluster_compute_response.py,sha256=Kx9xDbEQA4Res87VTT4ik-qemRb6V21uy8F0bKL4cjc,266
|
|
1328
|
+
telnyx/types/ai/cluster_fetch_graph_params.py,sha256=TIHEqph4oLSvlJFotWZc74yY2JF4g3NQYb_9RSF3Puc,279
|
|
1329
|
+
telnyx/types/ai/cluster_list_params.py,sha256=9TYvnBYBONcrRgm4f8RLKmVir64eu4a-XfEEBaVGwdA,444
|
|
1330
|
+
telnyx/types/ai/cluster_list_response.py,sha256=F9Q4tbZIVoqkp4SKksXMj3Mux-J1F9PAwF5Gs47Q1ik,577
|
|
1331
|
+
telnyx/types/ai/cluster_retrieve_params.py,sha256=7sU3B0n_ZE17uc5tw6LC0pcpE3X345BUxNTTkATCQdY,528
|
|
1332
|
+
telnyx/types/ai/cluster_retrieve_response.py,sha256=luYQrxjIMJFad5KO2-Vsm5eDUnDRmfnPXURwiXOfiKs,479
|
|
1333
|
+
telnyx/types/ai/conversation.py,sha256=SqbBhoeCf1cGEN434GwwzuLvw4kfGgmtaZz5kTYebY0,645
|
|
1334
|
+
telnyx/types/ai/conversation_add_message_params.py,sha256=oox_iXf-lGmGeNNxnHkNxkLGHKqg7qaB1orTo4XT_QE,761
|
|
1335
|
+
telnyx/types/ai/conversation_create_params.py,sha256=0zYEDBNTQsRqiT0vbogywRNsRYKqXt4dCK5G5kWkaKI,382
|
|
1336
|
+
telnyx/types/ai/conversation_list_params.py,sha256=SQp7y1CVuc1SPxJ8mlLLgmakgxzGo-e97CsqEt4ARGQ,2175
|
|
1337
|
+
telnyx/types/ai/conversation_list_response.py,sha256=FJB7lMGBALYH5MdKxvBmxuO9rgjKiE7UUh-5qh8PdDI,298
|
|
1338
|
+
telnyx/types/ai/conversation_retrieve_conversations_insights_response.py,sha256=tcTPkU88Ije1Rq5vGhFpEZCEiqJInW9II7BeNKFpfx0,1176
|
|
1339
|
+
telnyx/types/ai/conversation_retrieve_response.py,sha256=-HiQ97xbprhBvoOGTRQQUp0DuF4qbWADKGbt6RZw9n4,321
|
|
1340
|
+
telnyx/types/ai/conversation_update_params.py,sha256=rGdl-wP9ZrLcWJpmsOgRFu4E_zgTCJYHOivaV289cKM,367
|
|
1341
|
+
telnyx/types/ai/conversation_update_response.py,sha256=ZfOM5FqVEatx__5nQJR_Cny8RRF-i-b3h5jL77Feff0,317
|
|
1342
|
+
telnyx/types/ai/embedding_create_params.py,sha256=A04mkYl0nFewkZkpnMv24JAadnB8fiqLw1rxzGx7_JI,633
|
|
1343
|
+
telnyx/types/ai/embedding_list_params.py,sha256=O_GKp-ImK7HS_6ZST3j3KYenIx07nM2ZXpwuqeJbZdg,392
|
|
1344
|
+
telnyx/types/ai/embedding_list_response.py,sha256=R5bmdbwKes5JwxzuLsWRdCLLukAxkDL_59YLRcc6tCk,608
|
|
1345
|
+
telnyx/types/ai/embedding_response.py,sha256=U5A74GBhFIzy1N2uzcJ9wiou03iIMVDm0gmd8mcMbAg,485
|
|
1346
|
+
telnyx/types/ai/embedding_retrieve_response.py,sha256=nsTaJBWo79hhzqEZmciwJJn6WRNI7pvA-WNNKQ1_0DE,580
|
|
1347
|
+
telnyx/types/ai/embedding_similarity_search_params.py,sha256=tdNDuBUeqCyJSpG7ghTY1Jbxk2wcHbOcNtQbW-3_knI,364
|
|
1348
|
+
telnyx/types/ai/embedding_similarity_search_response.py,sha256=6Z6psauqc7iXItMZygdkh2FrJSxxPDNNJFaD4NHvLag,610
|
|
1349
|
+
telnyx/types/ai/embedding_url_params.py,sha256=l6jZ8PWsqiX3vl0HrmF29Sd2jxpQoYYucq-mtVrzh9U,442
|
|
1350
|
+
telnyx/types/ai/enabled_features.py,sha256=1MCQLmyaHOR-pJGIwmANfs4XAC8UuhcliOgpXvOHrBU,231
|
|
1351
|
+
telnyx/types/ai/hangup_tool.py,sha256=LnEAZmGS0infVdmjBtleuayp-CyZU1zNO-v9CUfgG1E,323
|
|
1352
|
+
telnyx/types/ai/hangup_tool_param.py,sha256=SQvf6lFUgKV1HDeT2qNY__eu-qDx_FnAjlXQ2lReuDU,406
|
|
1353
|
+
telnyx/types/ai/hangup_tool_params.py,sha256=YT6_fzWANLp4meyP32-Rt0HO7FOhDTHEJ3StXH2VN2k,336
|
|
1354
|
+
telnyx/types/ai/hangup_tool_params_param.py,sha256=RZaWG9PfKesctTgGYRNB_OIvPZo0T9Ph6WathUZfnd8,356
|
|
1355
|
+
telnyx/types/ai/import_metadata.py,sha256=Q8S3K51yiAyxPqdaOcm1T9YamhwFWScFrFg1TY80X_A,465
|
|
1356
|
+
telnyx/types/ai/inference_embedding_bucket_ids.py,sha256=yeoZw3FXqgHxHh9t0D57Dwrn0__oK-q6CYAFeobWX4c,588
|
|
1357
|
+
telnyx/types/ai/inference_embedding_bucket_ids_param.py,sha256=Qpzf4VaUrL91hYpfBwCuuxXPhQHWBZhay9hY0X_LDfY,670
|
|
1358
|
+
telnyx/types/ai/inference_embedding_transfer_tool_params.py,sha256=4dukEZt79j1dce0aW9h_YeCP-DYH2cACgxu6pkEv0s0,1246
|
|
1359
|
+
telnyx/types/ai/inference_embedding_transfer_tool_params_param.py,sha256=irlhSeQBdNA81Kw_hMuAmyveqaFYT3uGcW1-mFtpIE8,1393
|
|
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
|
|
1362
|
+
telnyx/types/ai/insight_settings.py,sha256=4J4GFvMv-j697Stw6mOD0yU4glM7I6ji41JyL3BP3nA,402
|
|
1363
|
+
telnyx/types/ai/insight_settings_param.py,sha256=x-moBUrjK75NuMjXfMbdRyEXledn_U2bROcfGt_LVYc,422
|
|
1364
|
+
telnyx/types/ai/messaging_settings.py,sha256=3jewX-cEPO7JMdve0No3bufDGM2iCIn4nc2Yq1U7zWo,597
|
|
1365
|
+
telnyx/types/ai/messaging_settings_param.py,sha256=ScRsdJfGcVmGNhUOSx68yhnZ3ZN6CZKUpQXIS1Wgd8c,600
|
|
1366
|
+
telnyx/types/ai/privacy_settings.py,sha256=7gOhikBa0Xup442XUdeFIGsUrKTKg7VVgckiqiuezQI,724
|
|
1367
|
+
telnyx/types/ai/privacy_settings_param.py,sha256=TTv_YfsnwCPEEwPAQznIlerr9zl-TQKSZW9xUylno1k,744
|
|
1368
|
+
telnyx/types/ai/recursive_cluster.py,sha256=cwRoPyxxaAFIikaZPWNqTTWorWsMDfn5-mJE4T7SV1o,687
|
|
1369
|
+
telnyx/types/ai/retrieval_tool.py,sha256=845vYHE2MMEmVQ7NkoQ9515pr9gPPb7HPt50CGjNqmY,369
|
|
1370
|
+
telnyx/types/ai/retrieval_tool_param.py,sha256=FgkfpJWuWv2GtTEDPS_0WKP7DPsrkjprVJknFvxuwyw,452
|
|
1371
|
+
telnyx/types/ai/telephony_settings.py,sha256=MKR9FpDYqn-KMIZkpguGTM8_ryLnVK0y4xH9rrWctG4,706
|
|
1372
|
+
telnyx/types/ai/telephony_settings_param.py,sha256=J5UIeyk7iziAaV4t1wytYQZUBlTClsZiy2dYRK7vPLA,709
|
|
1373
|
+
telnyx/types/ai/transcription_settings.py,sha256=n-SjDwt88zMKz_CTFtNG3_JwrqOQddbzJxf24N6fy00,934
|
|
1374
|
+
telnyx/types/ai/transcription_settings_param.py,sha256=_OoVaUxjMv-2cBOCkzxfp9S3SYX3qaoO-cDeINtdWwY,937
|
|
1375
|
+
telnyx/types/ai/transfer_tool.py,sha256=xqKXllTFynurQui0ZyCVKKIjr327ImUo1Ir6let46QA,393
|
|
1376
|
+
telnyx/types/ai/transfer_tool_param.py,sha256=yGOHLSzsjhEvUk5STQ0nK6ogfIkaZdHSX5fWAQplLwo,476
|
|
1377
|
+
telnyx/types/ai/voice_settings.py,sha256=aF62sZSVF1AQdTQAiBMJxKSxDaG0X05fCsen8v-SKZo,1406
|
|
1378
|
+
telnyx/types/ai/voice_settings_param.py,sha256=usEnAa6umbtGsBj0ibeing4FyUyMMjwUTd6d6faz-pc,1429
|
|
1379
|
+
telnyx/types/ai/webhook_tool.py,sha256=S_RXQiWcyOokeXb7XOad2NRPmM5q77s1_x_z5hOl6gk,386
|
|
1380
|
+
telnyx/types/ai/webhook_tool_param.py,sha256=ANK9w6A-cmMLTJThOMcKXXYoVmILQmOdqtIzq4RlNfI,469
|
|
1381
|
+
telnyx/types/ai/assistants/__init__.py,sha256=-pnVFavZeoKOuqdSITPRlbySQVCQf_PMfBwLW1RmRuQ,2243
|
|
1382
|
+
telnyx/types/ai/assistants/assistant_test.py,sha256=jq6P64Ncm61lSR9UQU_akStuMVudL3KpgIspZIgzCLs,1491
|
|
1383
|
+
telnyx/types/ai/assistants/canary_deploy_create_params.py,sha256=Egkt9Aux40LRP6bG5HuutOEs-WxYxI_b55RZmZJiO68,447
|
|
1384
|
+
telnyx/types/ai/assistants/canary_deploy_response.py,sha256=DF0X3tYdDGXwWvk6aTJLipYaBFw0b2nDpj2QxXAhtt4,404
|
|
1385
|
+
telnyx/types/ai/assistants/canary_deploy_update_params.py,sha256=J6UAJ7A-UUqCm9BHFMWF_tIu8yu89LPhrxOxxcC20Lg,447
|
|
1386
|
+
telnyx/types/ai/assistants/conversation_channel_type.py,sha256=oJOfiBvNNSEIOg6fvakaS5jLfhIFrzxZe-xaBn_RbgY,247
|
|
1387
|
+
telnyx/types/ai/assistants/event_status.py,sha256=Xd1v5LwiL3JE4XWdAVUsumjCZ8GlfNG9saCMz-IYn4k,246
|
|
1388
|
+
telnyx/types/ai/assistants/scheduled_event_create_params.py,sha256=1tMmKKD_1Q9n8z68oAo6gVMwz1aT7reYg1R73ciCqSM,1240
|
|
1389
|
+
telnyx/types/ai/assistants/scheduled_event_list_params.py,sha256=FaBFRXtdS_N_Xt5N-5iVx9SN7Y17sF5_joZDRFGkmGU,833
|
|
1390
|
+
telnyx/types/ai/assistants/scheduled_event_list_response.py,sha256=CqPDQmuTUxPFknMbxeWyWxXrp-gxrtjIFGvx6JJ0W8Y,602
|
|
1391
|
+
telnyx/types/ai/assistants/scheduled_event_response.py,sha256=Wo2uAk4KfSp64JOHGtC6LeBDO1XU0gIFuad9ZryFvO4,443
|
|
1392
|
+
telnyx/types/ai/assistants/scheduled_phone_call_event_response.py,sha256=XYMhFE9hbk0cixpLIZcLOng4Xcomg81UtCSp2WriAb4,958
|
|
1393
|
+
telnyx/types/ai/assistants/scheduled_sms_event_response.py,sha256=KDZ7LqD4G5i_HaZATp-0qCblcGNiq80cVh6ZXTqwIBo,919
|
|
1394
|
+
telnyx/types/ai/assistants/telnyx_conversation_channel.py,sha256=UMHNJPUzQrqJoHQQz1KwFbeecWElPxAxufuK_r_YkW0,275
|
|
1395
|
+
telnyx/types/ai/assistants/test_create_params.py,sha256=Ag6l_OtV2tkdAc1RPDu6dVsra94EVLt8D24QYYc-SFI,2123
|
|
1396
|
+
telnyx/types/ai/assistants/test_list_params.py,sha256=39SS_YzvJqRUJ1PjqwHBNfsakFIbhKWcSH7QeINctRg,813
|
|
1397
|
+
telnyx/types/ai/assistants/test_list_response.py,sha256=EgI-sDw-f_Rt1ADZIcjPNnU6KpLOhwu8BlvgKRE4F8Y,505
|
|
1398
|
+
telnyx/types/ai/assistants/test_update_params.py,sha256=ltYPjsKzeiOIv31BUwIC23p6pJDvScGpVBusd9-IqW4,1402
|
|
1399
|
+
telnyx/types/ai/assistants/tool_test_params.py,sha256=7bPia0hKaaTPxBB9TewKx0TSgIguhdE3B5qUNGVsL3o,507
|
|
1400
|
+
telnyx/types/ai/assistants/tool_test_response.py,sha256=tCPIDiY8fksWXYaxUbAq9eRcr7DB-fjJ4OUuTHCeDd4,432
|
|
1401
|
+
telnyx/types/ai/assistants/version_config.py,sha256=BreLDwxDUjwrwgqI1k8Oiojqc0_Nm8HVozPTIhHe27M,357
|
|
1402
|
+
telnyx/types/ai/assistants/version_config_param.py,sha256=WmwXeth_e9xEcXwOg_lG-yk_54Yb3QQgQOF3wHFD4Hg,452
|
|
1403
|
+
telnyx/types/ai/assistants/version_promote_response.py,sha256=OH2_czCsc3x4_fGryjJXf_l2O7HyNZ7PpeeoO1zEDO0,3032
|
|
1404
|
+
telnyx/types/ai/assistants/version_retrieve_params.py,sha256=dHctLxr7izCYdLpfLWgWIto5zV6kbx-WaoPb927rFww,328
|
|
1405
|
+
telnyx/types/ai/assistants/version_retrieve_response.py,sha256=CWNILuNkWAHd9ckp5yWONwNpuZ_M2S9Y4eiVm8jt7XY,3034
|
|
1406
|
+
telnyx/types/ai/assistants/version_update_params.py,sha256=R-BvozbYsvYLuA7VyTZz8uDLEyHbrJbt3Pg6b74T-QU,2859
|
|
1407
|
+
telnyx/types/ai/assistants/version_update_response.py,sha256=zIgCTcssv5wCQUv7Uigf49UlV9RP-VbG7EJIszgNJv4,3030
|
|
1408
|
+
telnyx/types/ai/assistants/tests/__init__.py,sha256=-6Q4JrBMcugVh5N_i6_Kwp6u8eQgSAIkpBU1Q8YNz5g,453
|
|
1409
|
+
telnyx/types/ai/assistants/tests/run_list_params.py,sha256=LETIrcrJKcrmpkzVORDGqSMeDRGdMrpc4Goj0lw0SNs,652
|
|
1410
|
+
telnyx/types/ai/assistants/tests/run_trigger_params.py,sha256=p6hkzTH7GAFcrb5j2_ZJi7JLxfflom3z7A-B8rqqp_8,473
|
|
1411
|
+
telnyx/types/ai/assistants/tests/test_run_response.py,sha256=a5YgDp1d8g25YmaFJXyMAl4Q1DD5qS4DQjuwS6D84rY,2397
|
|
1412
|
+
telnyx/types/ai/assistants/tests/test_status.py,sha256=5VLhiLQhpWzRj30rsgBZKn9NEOLjhOQfhSj_uqPC-Hg,258
|
|
1413
|
+
telnyx/types/ai/assistants/tests/test_suite_list_response.py,sha256=BTXzD5tMw0HcZpMnTa-0GZwl31K81QsBPu1MmzdlJas,333
|
|
1414
|
+
telnyx/types/ai/assistants/tests/test_suites/__init__.py,sha256=kS6RYt5bjUb9XjDA3jNqKP-R3QyeJQ4R8LffYH98q84,440
|
|
1415
|
+
telnyx/types/ai/assistants/tests/test_suites/meta.py,sha256=7ZhoqvceZK5EyG8fxQOZ93zq2x9fyWftLeFpIunG0ro,255
|
|
1416
|
+
telnyx/types/ai/assistants/tests/test_suites/paginated_test_run_list.py,sha256=3Q-e1oUTSGHeVQXmhNaYo_WH9eNdv19HRTq_UjeNryM,478
|
|
1417
|
+
telnyx/types/ai/assistants/tests/test_suites/run_list_params.py,sha256=imqpdtqeMHwxtjAjyrsWZDERlxaaEncqJ4oAbGtoxSY,739
|
|
1418
|
+
telnyx/types/ai/assistants/tests/test_suites/run_trigger_params.py,sha256=YYqEVKG6u-UUJW3q6r-m7OP42QZrhZOO7iuGNwwWWp0,487
|
|
1419
|
+
telnyx/types/ai/assistants/tests/test_suites/run_trigger_response.py,sha256=_50TSPBaEUBELVm_Goky2gpDFn_kE5IDpb3m6IcqZII,289
|
|
1420
|
+
telnyx/types/ai/conversations/__init__.py,sha256=KFVtmf6mqkhin4UP8iAsU3VmpWoyFVnR7zAjsSYpAOs,1353
|
|
1421
|
+
telnyx/types/ai/conversations/insight_create_params.py,sha256=KdTKG2pwKSzUdh8z3vRE-Wj5UULh0ifDGHqhrbo8G-s,462
|
|
1422
|
+
telnyx/types/ai/conversations/insight_group_insight_groups_params.py,sha256=_P9-MsE2-Kuvnf5OLc8QovkCAyUxTkhmbCBR0xx2liA,349
|
|
1423
|
+
telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_params.py,sha256=WL8bQ_bgmo8OHapip7SEFWj8p6lbhsRIuJksN0nZoR0,555
|
|
1424
|
+
telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_response.py,sha256=NDU1dU3akDsAf-befa7YANSr8qmpw5MXZczCzLNG9_4,428
|
|
1425
|
+
telnyx/types/ai/conversations/insight_group_update_params.py,sha256=wYMqbd9X18M3ywVxy76FbAYTx02rjhkmpKuY44Hcuro,315
|
|
1426
|
+
telnyx/types/ai/conversations/insight_list_params.py,sha256=uQPK4l4jJvlAWIumw8mFqrD44WFAFcC9sWuZoPXIVuk,511
|
|
1427
|
+
telnyx/types/ai/conversations/insight_list_response.py,sha256=6r8fwSxM_cqZfeQw2CUyNFyBrAjuRTg6SoyU--d2IWU,368
|
|
1428
|
+
telnyx/types/ai/conversations/insight_template.py,sha256=OQzpGmY6JpzbSLgB9Xm_5Sw8oM2FdBSlE891LyYVK1I,599
|
|
1429
|
+
telnyx/types/ai/conversations/insight_template_detail.py,sha256=B_e_xFmsf8Joejpy-LsUMWiYaratqGvJd-u1XCVL7H8,272
|
|
1430
|
+
telnyx/types/ai/conversations/insight_template_group.py,sha256=E5R9zPcq4-5-dsbL5nYQIn3hPFQfX4NFAH-UwIO07Ac,490
|
|
1431
|
+
telnyx/types/ai/conversations/insight_template_group_detail.py,sha256=qzph4UrqU6PuanWiNYVEY9t8mIuqHRbMFnAvccbsFgc,298
|
|
1432
|
+
telnyx/types/ai/conversations/insight_update_params.py,sha256=eOqWNcZ7ZP985lthVOngmaVjedmoqijiGcBiEwWp8Z8,368
|
|
1433
|
+
telnyx/types/ai/conversations/message_list_response.py,sha256=8kXalX3zsdKMb__S0aC-k22tJMluyRpVE1A3zss8QLw,1493
|
|
1434
|
+
telnyx/types/ai/conversations/insight_groups/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1435
|
+
telnyx/types/ai/embeddings/__init__.py,sha256=hutZ3j-e0lQbtrV1-9s__J24fvN10927TMt7L0WTKlk,285
|
|
1436
|
+
telnyx/types/ai/embeddings/bucket_list_response.py,sha256=A6GVJqthwBm-b1zb69MdPwOkfjMiUm4KLdK0whSvTpU,290
|
|
1437
|
+
telnyx/types/ai/embeddings/bucket_retrieve_response.py,sha256=Vy1JkqAezyS23qL52TueYHqzENIabKvNky-0Hd9Vaw8,514
|
|
1438
|
+
telnyx/types/ai/fine_tuning/__init__.py,sha256=r6wGUnYvbrps2bx8ZB20k9dRQXjJn1zSSopSCa-IOGw,315
|
|
1439
|
+
telnyx/types/ai/fine_tuning/fine_tuning_job.py,sha256=rYdJIcocVVlE-VqJ9j3JjMPRwl0APnGNDdP7afQPl4w,1493
|
|
1440
|
+
telnyx/types/ai/fine_tuning/job_create_params.py,sha256=Ocf6xjZyy1aPROvRDGzSbzH8a8bsdTUpvPZsa9j9NBc,984
|
|
1441
|
+
telnyx/types/ai/fine_tuning/job_list_response.py,sha256=Ky9ARKOFp2vOI14rzty3yJd9okLIZALuev43F6HLAMU,286
|
|
1442
|
+
telnyx/types/brand/__init__.py,sha256=k1G1raS7KyZ2U6HDOp6y_4lKkJcjom9O3ZQi30xcuDE,435
|
|
1443
|
+
telnyx/types/brand/external_vetting_import_params.py,sha256=SRIu4cxfbLN6JOHomsMuj3rAhASZF6kO7VDbD4Gyw6o,825
|
|
1444
|
+
telnyx/types/brand/external_vetting_import_response.py,sha256=DvJIDmDIbZpRda0YPsXbNxZ6ld_GeBdMVVfUzEsZ5Mk,1553
|
|
1445
|
+
telnyx/types/brand/external_vetting_order_params.py,sha256=Y622TbGy7BjCcc_OHNDCeU9n_rLdrBnQPtGdHBSPbKk,572
|
|
1446
|
+
telnyx/types/bundle_pricing/__init__.py,sha256=ThmC4xNbhCRuqB4pq9MDkGenAoMmvyD4fVNdaGqDpIc,1582
|
|
1447
|
+
telnyx/types/bundle_pricing/billing_bundle_list_params.py,sha256=CIkGXWRJlaq1nIMuNvBoaVLhOn71ne3byMZ1t4anZAo,1050
|
|
1448
|
+
telnyx/types/bundle_pricing/billing_bundle_list_response.py,sha256=4eYbrx7K2kHLmr-EJaxHA85MIGZWVrvt7U2KfATN_Z4,408
|
|
1449
|
+
telnyx/types/bundle_pricing/billing_bundle_retrieve_response.py,sha256=n-PZxK5qjvPrzdZZPa1XvaLJKuop1uk2_PLXa_8cX6E,1507
|
|
1450
|
+
telnyx/types/bundle_pricing/billing_bundle_summary.py,sha256=QaaDA1ArATnmBrIwaBjFE85JPuAmwl0t3Pp_2lHalSw,959
|
|
1451
|
+
telnyx/types/bundle_pricing/pagination_response.py,sha256=iX9J2AlWIDFhYj-C5VLi-xldLsrsAJrEfQAT8OTgOgk,451
|
|
1452
|
+
telnyx/types/bundle_pricing/user_bundle.py,sha256=h0-XL-y1L_H-nIWTyELH9QmgpYJ1JejxxN-Fb3SRQOc,807
|
|
1453
|
+
telnyx/types/bundle_pricing/user_bundle_create_params.py,sha256=bsIcRIaGiGUnHhplsqlSwIGVJzfijnpDv5wN8vbzxug,760
|
|
1454
|
+
telnyx/types/bundle_pricing/user_bundle_create_response.py,sha256=OsVS5GWZ1CpWHrzVBVFh7sBuwyrHtC2d-FBVl4WwCLk,293
|
|
1455
|
+
telnyx/types/bundle_pricing/user_bundle_deactivate_response.py,sha256=8ZQl4o5PCY8qOE0J44DGDfjSS_uJ6stEUoL1_49whxo,270
|
|
1456
|
+
telnyx/types/bundle_pricing/user_bundle_list_params.py,sha256=hTyI963VBD4INJjmJ_BYoW6ZjEnIp0uPPyNuHfgMTSo,1044
|
|
1457
|
+
telnyx/types/bundle_pricing/user_bundle_list_resources_response.py,sha256=Us-ZdqjBmJjt-ywpMhmAI8bAjY5nRZh-KjR_upILeZE,332
|
|
1458
|
+
telnyx/types/bundle_pricing/user_bundle_list_response.py,sha256=bFtv-OTyt16v-GyuxGrRLjPVbKOK9e9eLt55rBDAVMA,371
|
|
1459
|
+
telnyx/types/bundle_pricing/user_bundle_list_unused_params.py,sha256=iuQooCsvlnGn_MWAO8jdYVMpb3KiXwwfCUH1MZaGGuc,791
|
|
1460
|
+
telnyx/types/bundle_pricing/user_bundle_list_unused_response.py,sha256=KHAF8VmY5HE5PqKV8be2gwi2kHpv9BfjMWTpmy1VOr4,474
|
|
1461
|
+
telnyx/types/bundle_pricing/user_bundle_resource.py,sha256=Oe99CUd5UuwiQE9BUX2o5s4e8Mk_hgHhO-7FVj4TvVY,587
|
|
1462
|
+
telnyx/types/bundle_pricing/user_bundle_retrieve_response.py,sha256=3ouYQWSxC5ypWOVDlGtk3oyf_q_-7pcNENSjI4_yBqw,266
|
|
1463
|
+
telnyx/types/calls/__init__.py,sha256=ZpfzG_l6J4PU8huKUMqMPQEGRC93LzP1Gxwphnw3uDQ,8240
|
|
1464
|
+
telnyx/types/calls/action_answer_params.py,sha256=eihEqpTQveI6Rz8WK7Krzt0SP81_lvOr_Z7t03wiZLU,4987
|
|
1465
|
+
telnyx/types/calls/action_answer_response.py,sha256=QXvXCTfUYai9afI8jwCBl8nVTeSXCFP4zHIlco7z3MI,478
|
|
1466
|
+
telnyx/types/calls/action_bridge_params.py,sha256=eBgJ5mmyovDSBil49sfMgrdWnVWVDrWcYUWITTKF8JM,4832
|
|
1467
|
+
telnyx/types/calls/action_bridge_response.py,sha256=VaSr4m4v_BQavB2AQUf0kUmMnoFtNgb03ygiN3irf4g,344
|
|
1468
|
+
telnyx/types/calls/action_enqueue_params.py,sha256=_YhSEKgsD49280EDZVOAdzOZMmWwambwKScNIWOXcJs,1009
|
|
1469
|
+
telnyx/types/calls/action_enqueue_response.py,sha256=yCMirKpUKRpbp-TzEGZ3gHNEJFnB97Uk5fu5mx6sJEc,346
|
|
1470
|
+
telnyx/types/calls/action_gather_params.py,sha256=OTzy8S6L_NIbKVGirx4YPVmK56TNiKjLVUK3raED-Ng,1494
|
|
1471
|
+
telnyx/types/calls/action_gather_response.py,sha256=juPTG7gUSY8I55pQL6PRBI4Bz2LADmieyp9FSgaDdDo,344
|
|
1472
|
+
telnyx/types/calls/action_gather_using_ai_params.py,sha256=ZTwQ7P7Dslvp25uF1klYpDN8HOu99XX9upmjxYKDyDI,5246
|
|
1473
|
+
telnyx/types/calls/action_gather_using_ai_response.py,sha256=hfA5-WZ6zEbbHy5dlf6uh4gw7PYX6Q6HoxnpbQffQeI,442
|
|
1474
|
+
telnyx/types/calls/action_gather_using_audio_params.py,sha256=kYtKDtVapvd4gBNJIFwb5dBVxNVZ8mRV3heyheMPgd8,2675
|
|
1475
|
+
telnyx/types/calls/action_gather_using_audio_response.py,sha256=Tfkhngpbudgw0kvmvg47iQaM0R718YgTc6t-bfagGxA,364
|
|
1476
|
+
telnyx/types/calls/action_gather_using_speak_params.py,sha256=5mNtC5ZMbNwLDYCo59uhN_OQKLrMPXx8A0ZvU2HKWbM,5017
|
|
1477
|
+
telnyx/types/calls/action_gather_using_speak_response.py,sha256=igpC9rxlIVsOyJozVINZB4_Q4FRSfam0ghBTPYbc84w,364
|
|
1478
|
+
telnyx/types/calls/action_hangup_params.py,sha256=Qbair2J50-ExGRNIXMOru2BqTfiMdjBlZQ5VpMiNad0,570
|
|
1479
|
+
telnyx/types/calls/action_hangup_response.py,sha256=J9bHtE1XFLj3PSp8G-xicgu5xoeqXXO4KUs_v9y0COc,344
|
|
1480
|
+
telnyx/types/calls/action_leave_queue_params.py,sha256=LGjuqrpKNRFKdoq33NgJgfZA3a6xBLoxVZDC8VxEt_k,578
|
|
1481
|
+
telnyx/types/calls/action_leave_queue_response.py,sha256=ejvYjga0UolWCgd6E8e6yR5Fvq02FkpL0QjSOuJI-fA,352
|
|
1482
|
+
telnyx/types/calls/action_pause_recording_params.py,sha256=v1GGFxhoEEdCgGJi2vGfuFhhfGf6J8T8et99H_CMSrQ,653
|
|
1483
|
+
telnyx/types/calls/action_pause_recording_response.py,sha256=YMCISbyTD5t_dOSPPN51QFKBtp9XEqrUkcADEAe9Sys,360
|
|
1484
|
+
telnyx/types/calls/action_refer_params.py,sha256=cnNiokLalYBLW6ZxP_vtNW9FdDb3XPPTZzz-ZhZYOBQ,1275
|
|
1485
|
+
telnyx/types/calls/action_refer_response.py,sha256=JOIGlOJdf3YStvzeOKf1CXqNoSRGIdlHaXG92yBSsHw,342
|
|
1486
|
+
telnyx/types/calls/action_reject_params.py,sha256=M-yjMetuzKxZa6gvYMWLQgnVBJ1cIMwVv5jLTlQqgys,685
|
|
1487
|
+
telnyx/types/calls/action_reject_response.py,sha256=dXfo2jULE6NIr_xaLShzcSPch2lgNyXTvCV9HILasOc,344
|
|
1488
|
+
telnyx/types/calls/action_resume_recording_params.py,sha256=IkN-B4iwm-KZ44J6J6fCmZL5r-JS2dvbZ3iPp8_UYTU,655
|
|
1489
|
+
telnyx/types/calls/action_resume_recording_response.py,sha256=B3MikSDMPtoFpV_FwKXNHbdjMV03TvnDjM9ROVP99t0,362
|
|
1490
|
+
telnyx/types/calls/action_send_dtmf_params.py,sha256=s1kNu-iUi439D2w_PAcURnh-yBf_QzBDWlGik4_Uk9U,901
|
|
1491
|
+
telnyx/types/calls/action_send_dtmf_response.py,sha256=c654KN_kxMl716mC8gIKCZaIrF1o9CopD3nsZUmyFxI,348
|
|
1492
|
+
telnyx/types/calls/action_send_sip_info_params.py,sha256=Ggz79jmdMCns-67RjIiUAWKTP1OzteJ3-NkbV19wsgI,791
|
|
1493
|
+
telnyx/types/calls/action_send_sip_info_response.py,sha256=svL40lbyCqBnEgoHBsjt07bo3-pXLMCSMBsNpvmQHNM,354
|
|
1494
|
+
telnyx/types/calls/action_speak_params.py,sha256=A59YzCO9o3-Q3GvuhpRXTyyxCXEVXmoyWCDqX5U3BTs,4178
|
|
1495
|
+
telnyx/types/calls/action_speak_response.py,sha256=Q_5iiIlT5NBqLpOe6L77oBXTa9624nIVrSxDuwOSAlc,342
|
|
1496
|
+
telnyx/types/calls/action_start_ai_assistant_params.py,sha256=Rxkfj-V5FsqgyNqGu48iSSRgrFHsad803flYTYBTDGs,3826
|
|
1497
|
+
telnyx/types/calls/action_start_ai_assistant_response.py,sha256=k45qcuh9KD5DuTjW4E9UjljQi_HV4CQJBsh1FyaUY7s,448
|
|
1498
|
+
telnyx/types/calls/action_start_forking_params.py,sha256=8ZO99YWIFrf1dU91i5SlmrHfOGTdrvyqs0Mi8w-3dew,1140
|
|
1499
|
+
telnyx/types/calls/action_start_forking_response.py,sha256=V1zscI--5rlGDHH335BFAHD36jn43gT0E6d3IHeHR_A,356
|
|
1500
|
+
telnyx/types/calls/action_start_noise_suppression_params.py,sha256=zGehlpnlFlMkZF0Oim7_XuCsTANGRJCeYX8chgjaR1s,884
|
|
1501
|
+
telnyx/types/calls/action_start_noise_suppression_response.py,sha256=_zf9dL4R7M6XDF12GO5MzgOoO7rH6dllbRefb09aVb4,374
|
|
1502
|
+
telnyx/types/calls/action_start_playback_params.py,sha256=LsVYhgDOjLbXMxGO1uc9AxXkSrVZaENZcC7OjHEk20Q,2542
|
|
1503
|
+
telnyx/types/calls/action_start_playback_response.py,sha256=2-qTkPflC5HMkrcSFKwEbreZKKqgG4xu4nE-E-YObe0,358
|
|
1504
|
+
telnyx/types/calls/action_start_recording_params.py,sha256=FA9D17UEJEx0hDMeLWwNMT6OYEYLMk-4LqTUcq4SgRE,5547
|
|
1505
|
+
telnyx/types/calls/action_start_recording_response.py,sha256=Lir1JuVgqBLIJUm5ekMxF2Q8eSls57PntReJo32Kaew,360
|
|
1506
|
+
telnyx/types/calls/action_start_siprec_params.py,sha256=t1H8_BDwS2Lukg42wTkyiEycib__gBDESyTf89Ro3sg,1368
|
|
1507
|
+
telnyx/types/calls/action_start_siprec_response.py,sha256=wYyiEf8nK5iDlSyhMUqjI5LGIuh47i0bllqfB3SA7oA,354
|
|
1508
|
+
telnyx/types/calls/action_start_streaming_params.py,sha256=qYO2XbSYvuNRgxTJSuwxAoqRIhp9VWDHs6KLvloaZto,2087
|
|
1509
|
+
telnyx/types/calls/action_start_streaming_response.py,sha256=eGSo9KvyzBx-Q4MkunrOeKh9oF2RXMyQD_yM-F-Rbck,360
|
|
1510
|
+
telnyx/types/calls/action_start_transcription_params.py,sha256=Cn0QDFjlteFRRx2-80mmPojTMnVAExTxTio8hhSeBSE,1392
|
|
1511
|
+
telnyx/types/calls/action_start_transcription_response.py,sha256=YBz5cet2N0xXBQWVWqaGRnHT4mMYgq_zE1n1gWtJCZk,368
|
|
1512
|
+
telnyx/types/calls/action_stop_ai_assistant_params.py,sha256=dpiR3dGM3Fcz5PdqTDhq2s5Y9vmBFkJYIWhIJ1hv25Q,588
|
|
1513
|
+
telnyx/types/calls/action_stop_ai_assistant_response.py,sha256=dlDTKZd_L46ZZTuNSUUYds2iteLKVBpFhFvPZw9ERuI,362
|
|
1514
|
+
telnyx/types/calls/action_stop_forking_params.py,sha256=r3aA8bPa76rrHhoJ-I2pz__6uNDs_MtbbHwtnYf4138,796
|
|
1515
|
+
telnyx/types/calls/action_stop_forking_response.py,sha256=9oKWvYSKuvH3DBJt6hbbRxbTfld3gD34tAn3o9h-IMk,354
|
|
1516
|
+
telnyx/types/calls/action_stop_gather_params.py,sha256=VpFagpose1WBjdoQrXayWJDfUPewP0NyA0DG5J4YeBE,578
|
|
1517
|
+
telnyx/types/calls/action_stop_gather_response.py,sha256=CTjwM531IfHvKA7tZXkGGvX_YicXhiSDs44VFcFqSVY,352
|
|
1518
|
+
telnyx/types/calls/action_stop_noise_suppression_params.py,sha256=4CyrhdLjHDMx9smMiBgHUhUhE7PTPNZQZhgAMoSOVJo,598
|
|
1519
|
+
telnyx/types/calls/action_stop_noise_suppression_response.py,sha256=omqEtVoqwyYuencrw_V_TPIbqIR4BcZqVS3DzgRUA5k,372
|
|
1520
|
+
telnyx/types/calls/action_stop_playback_params.py,sha256=NTjvFI4jJz4207iwJaUJPW2odgrDOPcNI3qdh7K3f44,868
|
|
1521
|
+
telnyx/types/calls/action_stop_playback_response.py,sha256=eSK56-oOjUKhc6gZjheomBMMmkyT8gkkO65fa4N2r8s,356
|
|
1522
|
+
telnyx/types/calls/action_stop_recording_params.py,sha256=AMhWhYg9fJ_iKN8e4PRzH2hTg6Qk8hC7hYnEe1hFid8,651
|
|
1523
|
+
telnyx/types/calls/action_stop_recording_response.py,sha256=iRtn7MJV07geC-s-90I4DS2oP2KL3F97oUc6HzlupiA,358
|
|
1524
|
+
telnyx/types/calls/action_stop_siprec_params.py,sha256=OcqEXl_CJrI06PJksj8iXIW-7d_zHo-KN-9FE9fojB4,578
|
|
1525
|
+
telnyx/types/calls/action_stop_siprec_response.py,sha256=iaHpRXYVlOJQDGOA9kx-_oCeQO4hkdHZ4-Mw7rQADjE,352
|
|
1526
|
+
telnyx/types/calls/action_stop_streaming_params.py,sha256=SK1-Tkze9GPVDuUT8tKSg2MPGeBoSDvmIG-qmsOa1Xk,759
|
|
1527
|
+
telnyx/types/calls/action_stop_streaming_response.py,sha256=eNFFn2N0fb3Ex7JAUFlMN--vJM3G9C1_t-3EbptgOAM,358
|
|
1528
|
+
telnyx/types/calls/action_stop_transcription_params.py,sha256=YUb-a_KunUDsD6fbaug6G4V6BVm4OD_sB0KuwJC8bNs,592
|
|
1529
|
+
telnyx/types/calls/action_stop_transcription_response.py,sha256=hltLMgIxyJxj_PEeBuA3BPQ_33n1LvKSiDBV3EspYCY,366
|
|
1530
|
+
telnyx/types/calls/action_switch_supervisor_role_params.py,sha256=_oDT9Uae3ODWqltkCHnAyf1H3lRQZ_gmlBI4_EKr-4U,529
|
|
1531
|
+
telnyx/types/calls/action_switch_supervisor_role_response.py,sha256=0JlFJ7E6GGgtB9ZmyEB01RH0MmiEHjp_O3LEiIPCRWY,372
|
|
1532
|
+
telnyx/types/calls/action_transfer_params.py,sha256=VxWU0BuPn_C8rUmNTOjiMjCmXKPxDnYbQvwml1HnsxE,8894
|
|
1533
|
+
telnyx/types/calls/action_transfer_response.py,sha256=HVyyXYhzue5F6EuZtm3DGxX52fopUO6lqRWz06nrqJw,348
|
|
1534
|
+
telnyx/types/calls/action_update_client_state_params.py,sha256=tXxzOKclY3R_ZIRgleAY9sfge7Kwi9Vk48yu6CqXVpk,433
|
|
1535
|
+
telnyx/types/calls/action_update_client_state_response.py,sha256=S560c0ysvnArlfz0YogaMLuLpGpDJIaVSnQ4tTIRvok,366
|
|
1536
|
+
telnyx/types/calls/aws_voice_settings_param.py,sha256=xJ74kESJjFBMWSwc4mwYYkD7Um9WMh4fJnqXMPc3kUc,243
|
|
1537
|
+
telnyx/types/calls/call_control_command_result.py,sha256=KDwZ0FCljEaUn-Yq5q0hHOUtyjrOqAFMtX8idbe-roA,267
|
|
1538
|
+
telnyx/types/calls/eleven_labs_voice_settings_param.py,sha256=gHD7fEYqxD2OyYzE9ETT-l6EGwPYuNB13dHadiXX-7M,592
|
|
1539
|
+
telnyx/types/calls/google_transcription_language.py,sha256=tDjPKZGELuC58nHl_Ea04h15dSDmvb1j2nc3_VJXRdg,1034
|
|
1540
|
+
telnyx/types/calls/interruption_settings_param.py,sha256=rHmZAs6dTs7UPmONAvYOfBqMYVdzi7aP_BsVv4XxHFs,356
|
|
1541
|
+
telnyx/types/calls/loopcount_param.py,sha256=snoWd5Kn2jbPeeplbITO2We4h3xKwkQRrDslcA3ZBWc,263
|
|
1542
|
+
telnyx/types/calls/telnyx_voice_settings_param.py,sha256=cKNxCHVAYAyub7djKQRrVhshbTcORKqIcXyS1GFLYCs,413
|
|
1543
|
+
telnyx/types/calls/transcription_config_param.py,sha256=Vs5N08QkJC_yjhLdm4msoejBgSN4MkNG8w29duTOyMo,652
|
|
1544
|
+
telnyx/types/calls/transcription_engine_a_config_param.py,sha256=k4piu8I-WlUzX14N0LOyExjYUcPmF_XYu-nJgVP72LQ,1810
|
|
1545
|
+
telnyx/types/calls/transcription_engine_b_config_param.py,sha256=7gWLXIHR2LF5jMO8Pq2Di9iYZIEiyIB8aOG-J08Bw6Q,2009
|
|
1546
|
+
telnyx/types/calls/transcription_start_request_param.py,sha256=XZc239pYzUUK24NAAGyiR0mQCBKKwXFg2sXlKYpsITI,1391
|
|
1547
|
+
telnyx/types/campaign/__init__.py,sha256=EiCQNPPvDeCHP-bO9yVxHoeoEvU_Ln529j81ptDzk2s,293
|
|
1548
|
+
telnyx/types/campaign/usecase_get_cost_params.py,sha256=IpXXEkkWs6BrDL2wqbac-GbN4UGrP3vVpU1cPNosUQE,290
|
|
1549
|
+
telnyx/types/campaign/usecase_get_cost_response.py,sha256=oOKguNRxUrMrTrPjGSho7OW5qwq9ZLb6fPqNk0_v3nU,440
|
|
1550
|
+
telnyx/types/campaign_builder/__init__.py,sha256=tOZW32f4DDwCmKo3h_jPtK3uK6PPBt0pFHqcv5tXJiI,233
|
|
1551
|
+
telnyx/types/campaign_builder/brand_qualify_by_usecase_response.py,sha256=hDW8jagEpo0cisTZ0vCQKGwwAlpoeTx5Dj7q1q6U4NE,1273
|
|
1552
|
+
telnyx/types/conferences/__init__.py,sha256=k2jxvCPwjx1XL-lCUXiwGctPopCycBc7dxdBiQKVb7g,2453
|
|
1553
|
+
telnyx/types/conferences/action_hold_params.py,sha256=0DmpsaQKoMBz84e7UmBawce8ZpQcTDDQI5oBgJlpX20,939
|
|
1554
|
+
telnyx/types/conferences/action_hold_response.py,sha256=cLjn1G9ThJ4sYw0xNd_xYU6VfwZ_iv52y40NL2NNUTo,336
|
|
1555
|
+
telnyx/types/conferences/action_join_params.py,sha256=RmxVohF323A8AXFvyCXWCCFFBXzl8tuA521KshVqY8E,3633
|
|
1556
|
+
telnyx/types/conferences/action_join_response.py,sha256=E1fGwNwaIbe_oqlgoFiNoDoX5Mv1yyosLngp-Ckzx5c,336
|
|
1557
|
+
telnyx/types/conferences/action_leave_params.py,sha256=oVlLVHSX_YqgyJIXCJcikjvgDDf1oWQkL02i1zlICAk,800
|
|
1558
|
+
telnyx/types/conferences/action_leave_response.py,sha256=5B8MOC1sOZ7UISrDL1uj4my6tb4sod4AUcCtzkIqACE,338
|
|
1559
|
+
telnyx/types/conferences/action_mute_params.py,sha256=FMbmj0gTWQ6pr8WrxcXilkpgF0drznA-gQjw6sc8A-o,453
|
|
1560
|
+
telnyx/types/conferences/action_mute_response.py,sha256=3FlUQlzO9XtoAqi3dLGKdT85KJPhUeS7OOK1Q33iO_0,336
|
|
1561
|
+
telnyx/types/conferences/action_play_params.py,sha256=HZ0hIq-B8weg2kMUV8_189q2kZoRK2xYMaWZWS1cE4c,1202
|
|
1562
|
+
telnyx/types/conferences/action_play_response.py,sha256=XqktjnlJcxu7mwKaKJF_tAdF3FbkFHAgGz4UtmNILMg,336
|
|
1563
|
+
telnyx/types/conferences/action_record_pause_params.py,sha256=-RPhxyukqHA6Dl4Q2r9Ms9qnxE0UPNRzy71yWkaAFmU,514
|
|
1564
|
+
telnyx/types/conferences/action_record_pause_response.py,sha256=vLayzTJ44KOHbL-9PdZrp5SuhGt3RqSKNXWqmjv2knU,350
|
|
1565
|
+
telnyx/types/conferences/action_record_resume_params.py,sha256=WkOqgaZugs4M7mSY0fbCNd8IlKYFU2aEyHzVOOGDdDY,517
|
|
1566
|
+
telnyx/types/conferences/action_record_resume_response.py,sha256=51wRtSgDQ4Hfqm5jYCtNvWoFwxYaoXV2nDb3sEbDe14,352
|
|
1567
|
+
telnyx/types/conferences/action_record_start_params.py,sha256=1HGkqumTJO3RWh2X3C-TQz4JMsILIrzhN4_G4h1maRU,1045
|
|
1568
|
+
telnyx/types/conferences/action_record_start_response.py,sha256=OQcotw6Wt3pWm56HLIb5fFqnnZhl1BhrLyisRn9C9t0,350
|
|
1569
|
+
telnyx/types/conferences/action_record_stop_params.py,sha256=U5AdC9DNcy7GZBdMUB3KVfCRnJ8WVYrRhrjlUjHMe9U,645
|
|
1570
|
+
telnyx/types/conferences/action_record_stop_response.py,sha256=WgYXQtGvR4wzQAkPhViLrnOEfvq_WwtPil1xGBGjEV0,348
|
|
1571
|
+
telnyx/types/conferences/action_speak_params.py,sha256=gR9Cri7b589mTUDRJAhM9hRo4xkn2kL6wcRIz32Cvfg,3767
|
|
1572
|
+
telnyx/types/conferences/action_speak_response.py,sha256=quPsjqeOlnVW1243jr5Z30AXyNgsEpeHIxiyB4qQaHg,338
|
|
1573
|
+
telnyx/types/conferences/action_stop_params.py,sha256=uYTLCqU-68MVbuK-6NJsXLEGips_rOnP80AoPHALRVU,505
|
|
1574
|
+
telnyx/types/conferences/action_stop_response.py,sha256=Z6jlJ_qU5KAmqUQ9S3wTKg3pUFeb8RXkZBi-MqhWM0g,336
|
|
1575
|
+
telnyx/types/conferences/action_unhold_params.py,sha256=elq97_UBFaseZG_trC6peYANLuyDqUcQeDClyLRo2_E,474
|
|
1576
|
+
telnyx/types/conferences/action_unhold_response.py,sha256=6B8rFFik618eoZanuwXCI7JgMpll3o_6Cm6U6cHKIdk,340
|
|
1577
|
+
telnyx/types/conferences/action_unmute_params.py,sha256=BnPJnY9goictIGr-1Eux-gwJfuU6AD7FcIN_X367N3Y,504
|
|
1578
|
+
telnyx/types/conferences/action_unmute_response.py,sha256=5gfnXbXFnuUkB3kaA7nHW6PARPV8vYHtGtP7JNG25h4,340
|
|
1579
|
+
telnyx/types/conferences/action_update_params.py,sha256=LVqnBHCp3b4dEAq0awR02Po7Byj0nGg_IVNWoAtjGxE,1345
|
|
1580
|
+
telnyx/types/conferences/action_update_response.py,sha256=4KSvnb5_fdHegz2o73eV9lv4KT1gwsIUFnTnMctNoBw,340
|
|
1581
|
+
telnyx/types/conferences/conference_command_result.py,sha256=ELNqKO8V5N8Vwp3llLqrOiwwlqnU5VlfK97JK5huIDI,219
|
|
1582
|
+
telnyx/types/credential_connections/__init__.py,sha256=iv5LJoRk5Sw9iJ6mAGwzaumCAZFH_kvzo8RbC-Y55iQ,266
|
|
1583
|
+
telnyx/types/credential_connections/action_check_registration_status_response.py,sha256=TZyz6omf6dxlJvPPZ5C6Yw-aP_PxEggD97xv3w4KHjA,1192
|
|
1584
|
+
telnyx/types/external_connections/__init__.py,sha256=O7vrqPduYpRukfCOs-H2kNe0OQN0BnWwULsfAZjIkys,2359
|
|
1585
|
+
telnyx/types/external_connections/civic_address_list_params.py,sha256=r-EQ-tQPi2_NrU-wpeG1rlkAiRPG1HIrAQHZyaFTzf0,566
|
|
1586
|
+
telnyx/types/external_connections/civic_address_list_response.py,sha256=2-cMrwMYtv54RuLVG5TTowDu0Zc6VEfmCgmzMBKZdgk,1458
|
|
1587
|
+
telnyx/types/external_connections/civic_address_retrieve_response.py,sha256=6qlIdPqnF79zqvEGQf0ttR_iP0ZmGXX3sVx-ladYJlI,1460
|
|
1588
|
+
telnyx/types/external_connections/external_connection_phone_number.py,sha256=Ve74u0_Hzgq1rKc-BwI-vbJX61rkZw3TZ7zRI4TTqw4,1098
|
|
1589
|
+
telnyx/types/external_connections/log_message_dismiss_response.py,sha256=tEUrS6oyiz1dVVoVzeSNm4eKQJgT7RnRZEqxZaI2ab8,334
|
|
1590
|
+
telnyx/types/external_connections/log_message_list_params.py,sha256=S57q8J3bNZxiqM4FBgc58s67RVbZ2jvki2JZftXoKUg,1413
|
|
1591
|
+
telnyx/types/external_connections/log_message_list_response.py,sha256=q-YYoe_K3uUS6AhBScFMdppfHe9ojIdhJ7rknXnj65s,1219
|
|
1592
|
+
telnyx/types/external_connections/log_message_retrieve_response.py,sha256=1v2r7oS14BqbvxM6d4t9W80ta_nAOiSEqgSjTx1aAQ8,1061
|
|
1593
|
+
telnyx/types/external_connections/phone_number_list_params.py,sha256=5yG1fRmbMSCrLmzhGsMh3T5CpjjL7jAHTFURbJjmhRY,1348
|
|
1594
|
+
telnyx/types/external_connections/phone_number_list_response.py,sha256=LYDU6BhXD583cILpd36Q4Pl3bzmdOxAav9ff8EQXk6s,543
|
|
1595
|
+
telnyx/types/external_connections/phone_number_retrieve_response.py,sha256=-5IcbzXPkO8D9r7yHN_I55sX7WwiYn2fSnIN5SQU7wk,373
|
|
1596
|
+
telnyx/types/external_connections/phone_number_update_params.py,sha256=9ufRuQSV1r3_ks6fTpelW0F9tQa8YyQrrP3qGsJXvNQ,378
|
|
1597
|
+
telnyx/types/external_connections/phone_number_update_response.py,sha256=JPpz7pC8s5wyHNrWSq5uwW-tr4U-g71VLzjdhYcbnfU,369
|
|
1598
|
+
telnyx/types/external_connections/release_list_params.py,sha256=iBQ2xZvN3PC8N0idcVtiF_yFZLMKgaEqLRg1nNpR5Sc,1769
|
|
1599
|
+
telnyx/types/external_connections/release_list_response.py,sha256=rfgVkrTcsETl2dQRELwY8EMYGfRarOHVLo6aU2jvZnY,1346
|
|
1600
|
+
telnyx/types/external_connections/release_retrieve_response.py,sha256=QfceFyLfmf8yotG8CLraqiU4bqGQV8n2F2G3m0X8KAM,1182
|
|
1601
|
+
telnyx/types/external_connections/tn_upload_entry.py,sha256=WdTriRAbt7qWRxV55zDuNOGgZeyPOLZPlOhgESUWlaA,1749
|
|
1602
|
+
telnyx/types/external_connections/upload.py,sha256=3dGtXGQw2ZGVbAV5IjCfyPtSCtuA9Xc0b61EnRl36_g,1050
|
|
1603
|
+
telnyx/types/external_connections/upload_create_params.py,sha256=0_yFpuc1aYI9Rk5dvA1891w-OncFU3F4eRKhoNJedj4,862
|
|
1604
|
+
telnyx/types/external_connections/upload_create_response.py,sha256=Fa6mX1ZoOCkRlJr31uBFip5I_Gux2i19x77jiNofN0w,403
|
|
1605
|
+
telnyx/types/external_connections/upload_list_params.py,sha256=voJECmEzAn9ErUhFCRTkfthHD9-OT8Twphzp21Aevd0,1626
|
|
1606
|
+
telnyx/types/external_connections/upload_list_response.py,sha256=dPFQxVc7ZgeYQLEZoRojc8R7vx1slYce4t9KQLTn9ds,461
|
|
1607
|
+
telnyx/types/external_connections/upload_pending_count_response.py,sha256=reN2NR7lyvS-MToHX400lQLdCQeAmrHygv4V94EgxU4,590
|
|
1608
|
+
telnyx/types/external_connections/upload_refresh_status_response.py,sha256=5k4-cEu2KI_wentV_Kn6bAfMZ3ZDExlJ_15Bdv_24pQ,338
|
|
1609
|
+
telnyx/types/external_connections/upload_retrieve_response.py,sha256=XWc-iSRfcNNClTUYYktHPs6p7QbYpyes8Wyy4bnoaUM,291
|
|
1610
|
+
telnyx/types/external_connections/upload_retry_response.py,sha256=WoAkYMT_gf-6cIS-SYm7sIl02f8z-IdFsSiTM36Qb6g,285
|
|
1611
|
+
telnyx/types/faxes/__init__.py,sha256=8klMpMQCvfsBbuavxmmgN3rsfIdS2I4Ru3XclQKt_Sg,288
|
|
1612
|
+
telnyx/types/faxes/action_cancel_response.py,sha256=SHtVH_YQup1fLb_1SdMcp_nHUO5Zuq-uK19IPB1Yw-0,259
|
|
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
|
|
1650
|
+
telnyx/types/managed_accounts/__init__.py,sha256=s53m4G7A5MA-7Plebq9kzzJSt4VoqqpfiAnyePk-2rM,363
|
|
1651
|
+
telnyx/types/managed_accounts/action_disable_response.py,sha256=EvZGazP3Ve4MkwX1Y6a8V_RuMQh33Ghtpk0fTTx_8qM,315
|
|
1652
|
+
telnyx/types/managed_accounts/action_enable_params.py,sha256=xbPShY1bj7XSTclowbA7-cDZnjssDCHTb3GQZsUqXbg,478
|
|
1653
|
+
telnyx/types/managed_accounts/action_enable_response.py,sha256=fj0HbGOB6wVSAn1q6qOCNwYpNc59ujYeqC-Zmt-Pd_c,313
|
|
1654
|
+
telnyx/types/messages/__init__.py,sha256=9LM3jFslit6WWh-W_bbLEbyGQgwYecJbrs5QSolxvbA,317
|
|
1655
|
+
telnyx/types/messages/rc_generate_deeplink_params.py,sha256=ffHwdqJULKIyCwBplwS-kvKkyqGItEfplduxFnAKqTA,398
|
|
1656
|
+
telnyx/types/messages/rc_generate_deeplink_response.py,sha256=cw11AeSzLTJ_MGL81iem52HByIKxgsrzqvk6T6bs3v8,307
|
|
1657
|
+
telnyx/types/messaging/__init__.py,sha256=YfXxon3b5-RZaErwb9iAK2HS6JHRJXESBUjp3Op0s4s,621
|
|
1658
|
+
telnyx/types/messaging/rc_invite_test_number_response.py,sha256=GgMzLoceJEqCzTBw6EZmw79H2dCvB3fNdrHtvu-QeKI,670
|
|
1659
|
+
telnyx/types/messaging/rc_list_bulk_capabilities_params.py,sha256=fgqwwR7WG8kbaeFfoRa7B8uOO5B3OKChGZm2r_114xQ,459
|
|
1660
|
+
telnyx/types/messaging/rc_list_bulk_capabilities_response.py,sha256=wPgIeeLKtM0Qe8kmrYXVtJzMZp33M4lmZXJD5KiJ-sM,347
|
|
1661
|
+
telnyx/types/messaging/rc_retrieve_capabilities_response.py,sha256=DDAjDG8jWaXaMB5BQHybyK61XL16Al8XVGUIiWi1kaI,335
|
|
1662
|
+
telnyx/types/messaging/rcs_capabilities.py,sha256=Rh2Ibrc_T32GOFKM4hzDTHcWlGI-P3EOYeiagzzUW-I,630
|
|
1663
|
+
telnyx/types/messaging/rcs/__init__.py,sha256=nsI6zmiulzCr5aHDhOmZcxanr54EksSQzo6nJx-YPEE,333
|
|
1664
|
+
telnyx/types/messaging/rcs/agent_list_params.py,sha256=AoVDtxK2mf6TBcWU5pOaVU6YQlPh74rhiD_cPOlsEuw,505
|
|
1665
|
+
telnyx/types/messaging/rcs/agent_list_response.py,sha256=09fypRa9LDHTIHN0VLohdDI4M6KR6lKofIp71t732qg,392
|
|
1666
|
+
telnyx/types/messaging/rcs/agent_update_params.py,sha256=TbOR5KPQQPSPdU6ZWFtctnBEVrH9jr9eSvVMoNSINB4,520
|
|
1667
|
+
telnyx/types/messaging_hosted_number_orders/__init__.py,sha256=dfyO3Tki3O2O7FceSyMoomhb39mchEhMS7JpdC1Hl7s,305
|
|
1668
|
+
telnyx/types/messaging_hosted_number_orders/action_upload_file_params.py,sha256=DVbFGxIBOKks-QSE7WtflCcod0Cgfklt0XG0YpQarcI,533
|
|
1669
|
+
telnyx/types/messaging_hosted_number_orders/action_upload_file_response.py,sha256=sljp0BqE0k039h506eC3_ipQCyeizfVBbtnWT8fGI24,366
|
|
1670
|
+
telnyx/types/messaging_profiles/__init__.py,sha256=RTEHA_Gn5qNUilWpmVHP4Hm5nElGcQ_HlWjUokQXLZc,668
|
|
1671
|
+
telnyx/types/messaging_profiles/auto_resp_config.py,sha256=cpknBd4iNbIxTAiCodLIn3EDE4lSi15zB8VOVNmQDFQ,479
|
|
1672
|
+
telnyx/types/messaging_profiles/auto_resp_config_response.py,sha256=OB82kX9x2tycIK1LYYrwj-Gtd-wDq2iWL3NV5kMQoUI,271
|
|
1673
|
+
telnyx/types/messaging_profiles/autoresp_config_create_params.py,sha256=ywAH8XHZxa-miB6VWjQY_EtQKrvYugOQi4CiSgEiAvQ,471
|
|
1674
|
+
telnyx/types/messaging_profiles/autoresp_config_list_params.py,sha256=8jNayXBl9mKkmHPz6FyySukEmW3sP0Xi1CluzQ7UIm0,741
|
|
1675
|
+
telnyx/types/messaging_profiles/autoresp_config_list_response.py,sha256=qh2aso1yINXh8KCu8pJvDutMRG-1TUwta3RZNS6_BYE,381
|
|
1676
|
+
telnyx/types/messaging_profiles/autoresp_config_update_params.py,sha256=t0rCpoYD5egY8pJGrncX556Ca5f3Tn1ZAlj7u5mALaM,502
|
|
1677
|
+
telnyx/types/messaging_tollfree/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1678
|
+
telnyx/types/messaging_tollfree/verification/__init__.py,sha256=uydes9s3dEq5GgID_v0J-jIy_7W5z6IomNyjSgeAzcU,1019
|
|
1679
|
+
telnyx/types/messaging_tollfree/verification/request_create_params.py,sha256=p4-oc4XIQdo0LtcWLQG1sMIJMU-G4uA8bUMfSSu8NBg,3810
|
|
1680
|
+
telnyx/types/messaging_tollfree/verification/request_list_params.py,sha256=du1u1sKD1su76I9pdJeIPKJVc-LWKyacqMOJkPLc3Us,862
|
|
1681
|
+
telnyx/types/messaging_tollfree/verification/request_list_response.py,sha256=YuKTQpt2LsvteiS9NTYXdMJ7zBLmENw5rNuU_DnE60Q,512
|
|
1682
|
+
telnyx/types/messaging_tollfree/verification/request_update_params.py,sha256=jSj7sl8wxZMOycgQD_c9WYwMNHcD9TLl5ELmiive8Ww,3810
|
|
1683
|
+
telnyx/types/messaging_tollfree/verification/tf_phone_number.py,sha256=1rDKVArKlW-ipG13ZwxU8zHrnLJWxqZAWOxoWWKs484,280
|
|
1684
|
+
telnyx/types/messaging_tollfree/verification/tf_phone_number_param.py,sha256=HKFsEA1RxqQYRNlTpfTmynoXJAA49n2DHJQkHAxfKCo,385
|
|
1685
|
+
telnyx/types/messaging_tollfree/verification/tf_verification_status.py,sha256=WXv7GzELh6X0nky743XYKZPujcj-g1piDbfSITavwsc,328
|
|
1686
|
+
telnyx/types/messaging_tollfree/verification/url.py,sha256=CbLrYJeilXZJO2rWGmLL_W_L60CMVIolRpBUO3zLx7U,177
|
|
1687
|
+
telnyx/types/messaging_tollfree/verification/url_param.py,sha256=dyPNCHkYbJQ7zHhpuLa8xTdJQS0H0fW0YIqWItTNCCY,262
|
|
1688
|
+
telnyx/types/messaging_tollfree/verification/use_case_categories.py,sha256=EM8ohix6mMTnMK6F4DwmRPxpcjdTUYobHfONdsFNleE,1227
|
|
1689
|
+
telnyx/types/messaging_tollfree/verification/verification_request_egress.py,sha256=NVz_QrQI6RrNJG5lPoVdCYYiUR33rRmvMCTL7nVriPA,2252
|
|
1690
|
+
telnyx/types/messaging_tollfree/verification/verification_request_status.py,sha256=VOBr4reafObW6L8gDkDtwxPC84gKghVuNCA7GFNLyPs,2377
|
|
1691
|
+
telnyx/types/messaging_tollfree/verification/volume.py,sha256=ocfY2EJG986TBTvLKK_aWPxwbdTKxPzsZoBv5SFdxXI,310
|
|
1692
|
+
telnyx/types/networks/__init__.py,sha256=QYtQzaWvF6EggvmdzyJwDGkakz9opa76cWVBvy7QF3I,547
|
|
1693
|
+
telnyx/types/networks/default_gateway_create_params.py,sha256=uh5oaOF16AMo3GiFU9cLUX7zy8l5us_HenVBAJiFf18,321
|
|
1694
|
+
telnyx/types/networks/default_gateway_create_response.py,sha256=s5FswP-lncv6s363XwccpnM9wkWaq-Y_FSw8Ad58dXI,818
|
|
1695
|
+
telnyx/types/networks/default_gateway_delete_response.py,sha256=fM4W5eo2Fqm8mcq0GzHD2tpJZ9PVGaAlNxIt8WVW8bw,818
|
|
1696
|
+
telnyx/types/networks/default_gateway_retrieve_response.py,sha256=UiSjZHvji_0G3kk3vLoUtWkD_6xuh0Z3SB2dn1Ce3v4,822
|
|
1697
|
+
telnyx/types/number_reservations/__init__.py,sha256=Ak9GBt1dBxRMynP02qb5y4U66T2oW9CM_ytKY5bwoDY,204
|
|
1698
|
+
telnyx/types/number_reservations/action_extend_response.py,sha256=SI3THhfcq0clZqYxSMh1vnMB0wEENNs9LN8tXAyF_O4,322
|
|
1699
|
+
telnyx/types/operator_connect/__init__.py,sha256=lWkacjA1L2d-w5yKe1v4vhmw66crhI4uresFLSX1aH4,207
|
|
1700
|
+
telnyx/types/operator_connect/action_refresh_response.py,sha256=x_oibdBf0MNxwHySvNoY4dvjQL9USCMHO1zLlVXLy9o,420
|
|
1701
|
+
telnyx/types/payment/__init__.py,sha256=0YwnCxSPUEwdzFThpel31djcLW6hgxi9nDZbRVRV15A,450
|
|
1702
|
+
telnyx/types/payment/auto_recharge_pref_list_response.py,sha256=XiHC3dzwNIGMsfms7wueynmzCQXk6lUMQCrKwC6I094,1078
|
|
1703
|
+
telnyx/types/payment/auto_recharge_pref_update_params.py,sha256=e4BFJmOyfQR1WrSMQVitjn6CvdRjprcufDU5XcqAEHE,764
|
|
1704
|
+
telnyx/types/payment/auto_recharge_pref_update_response.py,sha256=twKHzyDzDedX_wfne9IeQFaGuAfZRotf6y3vSlkS3H4,1082
|
|
1705
|
+
telnyx/types/phone_number_blocks/__init__.py,sha256=wC6oPhPwv-O30tJVpRes92sAX43Q7-v7RhJbJ0GSeM8,604
|
|
1706
|
+
telnyx/types/phone_number_blocks/job.py,sha256=_-npUJf9jzGz7ZX5QZbzUDsd58bNJzKhaOimNhEmcI4,2364
|
|
1707
|
+
telnyx/types/phone_number_blocks/job_delete_phone_number_block_params.py,sha256=ywAhRJklSizIkDUt_gj6UMdF-vdVzmrcgM_Pypnnj38,326
|
|
1708
|
+
telnyx/types/phone_number_blocks/job_delete_phone_number_block_response.py,sha256=KwMoWXP2PCDkOyRPgSfrnM6a-oLF9cA1qO9R7F6LIWY,304
|
|
1709
|
+
telnyx/types/phone_number_blocks/job_list_params.py,sha256=YQDWmblokCjozJfhgTkEw9g64G7s_oziuzly7l-AOy4,1075
|
|
1710
|
+
telnyx/types/phone_number_blocks/job_list_response.py,sha256=qRuAw6dP-SLBQG-QoKWyYOABaDoLSZOlsbJntzXoptQ,368
|
|
1711
|
+
telnyx/types/phone_number_blocks/job_retrieve_response.py,sha256=b_PRsZBBPKwn2BhbSq_EJf35rX6G1UALvaCUk1Bx3ig,276
|
|
1712
|
+
telnyx/types/phone_numbers/__init__.py,sha256=00vqbTkvfFGjDBuHToVzOXKLi2iy12kU2qGM6XaSO5U,4266
|
|
1713
|
+
telnyx/types/phone_numbers/action_change_bundle_status_params.py,sha256=NOjcax9mYJioC_kRwl_2AxUawd1JWZTEetRKtvvZcfE,689
|
|
1714
|
+
telnyx/types/phone_numbers/action_change_bundle_status_response.py,sha256=3ttzGGA_SJU-gbb8zcMWeLG5DCmSbi2QIH28xqTb17g,381
|
|
1715
|
+
telnyx/types/phone_numbers/action_enable_emergency_params.py,sha256=UwHCviQOrZMX5Z6P1inoOee3bkY_ZTWkZ-e6z0w3y1E,498
|
|
1716
|
+
telnyx/types/phone_numbers/action_enable_emergency_response.py,sha256=Rzo65Unj0S4kWL7geh99LZaP7vmUR0sdDS2oxD7i8lU,375
|
|
1717
|
+
telnyx/types/phone_numbers/action_verify_ownership_params.py,sha256=XbLWqUOE615AeHUkoipgDd6R24YCryMTKrqQnXv3w3c,421
|
|
1718
|
+
telnyx/types/phone_numbers/action_verify_ownership_response.py,sha256=IrNPxy_YBDWTTIl_GPEheEXb55pEdeTj25evvecF24c,818
|
|
1719
|
+
telnyx/types/phone_numbers/call_forwarding.py,sha256=dBxLb3PqKYNUAJR3uAj1XIUlpQIkYKF6SXvEep8jVAo,928
|
|
1720
|
+
telnyx/types/phone_numbers/call_forwarding_param.py,sha256=Vb5TD7UEvqekCZRWlB6AHRHISQ01LQeRBMQj7zHPq7s,885
|
|
1721
|
+
telnyx/types/phone_numbers/call_recording.py,sha256=OzQ4uoCbjRCxo1arkvyh6ZhtHUYmikDxhklT0nfDHrM,749
|
|
1722
|
+
telnyx/types/phone_numbers/call_recording_param.py,sha256=DTl3_bMXxn1-czDrzdCWRQF0iWX_A3OnZKEv09DFVyI,706
|
|
1723
|
+
telnyx/types/phone_numbers/cnam_listing.py,sha256=UtyiazGBPzt6Ne3MJ9YAYPAMFSc-FDyfAu9S54xUACA,600
|
|
1724
|
+
telnyx/types/phone_numbers/cnam_listing_param.py,sha256=yY_HD0j-e6tjtn0EeBIRFT3rlLbfrkXspveCfPHb_RY,603
|
|
1725
|
+
telnyx/types/phone_numbers/csv_download.py,sha256=C1Z8WKf51VHSfwqayq-MM2hbh7OeWwBEUvbb6O95OPY,703
|
|
1726
|
+
telnyx/types/phone_numbers/csv_download_create_params.py,sha256=rL_YcRFMGioW3pB0Dlz93xbIbzDalK6AHMnkhmBRWT8,2890
|
|
1727
|
+
telnyx/types/phone_numbers/csv_download_create_response.py,sha256=9UTtuuX0Y8EGHugxoajrTMu9_g7ApFSIu3SVhJLvFek,325
|
|
1728
|
+
telnyx/types/phone_numbers/csv_download_list_params.py,sha256=xFPNKDMevVQi-6rnHMn5_KApMK-yGniINN1j5ODymeU,517
|
|
1729
|
+
telnyx/types/phone_numbers/csv_download_list_response.py,sha256=GGIAUhOL4voLshkU858DICtvp7Qv0P7Bm2W9ivj7gAc,409
|
|
1730
|
+
telnyx/types/phone_numbers/csv_download_retrieve_response.py,sha256=e9U1AjAsvkEynlsnlvpElP0u_RCpvcnwhT_POcokxbA,329
|
|
1731
|
+
telnyx/types/phone_numbers/job_delete_batch_params.py,sha256=9u-_IwN8J3CSSsJT603atakwgWb7EFJpKWhERl1aDZM,350
|
|
1732
|
+
telnyx/types/phone_numbers/job_delete_batch_response.py,sha256=pU7r3bHrQTfZilyKsAKrK8nvYghExdaEjeJALKLwdyc,320
|
|
1733
|
+
telnyx/types/phone_numbers/job_list_params.py,sha256=km-cMCdyzGVSb0bBQ4qeBzW0axf3UcRydiZs9G-CxCQ,972
|
|
1734
|
+
telnyx/types/phone_numbers/job_list_response.py,sha256=S77RROwO-b23jXNfsmP2c6XG6iQuQfm2T4YBYhLYZRk,406
|
|
1735
|
+
telnyx/types/phone_numbers/job_retrieve_response.py,sha256=3hSWls-xCpYJCz5iTY-LzapbPBp1cAl5IlJDL88ubHg,314
|
|
1736
|
+
telnyx/types/phone_numbers/job_update_batch_params.py,sha256=Mr0aN-RDsWn4OJULWvwCvYVDxSxGGkkI2YLR8NRCx8s,4526
|
|
1737
|
+
telnyx/types/phone_numbers/job_update_batch_response.py,sha256=lYeM8CZH5zHjvVrlfI2OE3Y5gZ0eUqzFMuOl2XGlY40,320
|
|
1738
|
+
telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py,sha256=4kwW_x0lIJbhR5pGAR43XWSY67JiokA-CSrRlZoQolY,753
|
|
1739
|
+
telnyx/types/phone_numbers/job_update_emergency_settings_batch_response.py,sha256=iFRA6iIZ8Xi0NJ33v2hTLQyVNWsRNJTVFgSmD1dR7OI,354
|
|
1740
|
+
telnyx/types/phone_numbers/media_features.py,sha256=PEJJQiI8E2KDU18cMi7XyzuQfef_2oglb4NvZW74r4E,908
|
|
1741
|
+
telnyx/types/phone_numbers/media_features_param.py,sha256=1-dExw38nYYJLNoB1TjfMQ0j4iATSiCTPs89F-Pd8KM,894
|
|
1742
|
+
telnyx/types/phone_numbers/messaging_list_params.py,sha256=QLDcajv8z6fjgpQCNZHow7jriqLBRPc2xeKNSs8s0FU,513
|
|
1743
|
+
telnyx/types/phone_numbers/messaging_list_response.py,sha256=kN0qdte2A3C6U5BfpumOxrqovhkjs3-ULATLAoHRNB4,479
|
|
1744
|
+
telnyx/types/phone_numbers/messaging_retrieve_response.py,sha256=O44AEySuXUYkDLefeiA-7a7-HGFRqci6vjn3mXhdVYk,387
|
|
1745
|
+
telnyx/types/phone_numbers/messaging_update_params.py,sha256=3YKXNWMISyGb1jy3TUlzoU79v3pZYV7tYgrUiMS7t7Q,891
|
|
1746
|
+
telnyx/types/phone_numbers/messaging_update_response.py,sha256=UKxjFqA5wuYKJMHPy9SP6lOsnzr3EMEBdeRvBmxXawI,383
|
|
1747
|
+
telnyx/types/phone_numbers/phone_number_with_voice_settings.py,sha256=ik1WWz0ahNr-_LidnSYXICbM9gNJiHFggwAhQcK4ddw,3072
|
|
1748
|
+
telnyx/types/phone_numbers/phone_numbers_job.py,sha256=gEKj7pdH-AGvJs-YOiAJS80rfgclYKr9ZRnwwoVyqbQ,2964
|
|
1749
|
+
telnyx/types/phone_numbers/update_voice_settings_param.py,sha256=qdv4W-m-9ID6cvyY2WwjJWN1m-iSZLq___Bg9E43cPo,1937
|
|
1750
|
+
telnyx/types/phone_numbers/voice_list_params.py,sha256=U-Diy0LQac-C_WVo4vVmzflErfRFIKgKQwRxSmi45Zs,1760
|
|
1751
|
+
telnyx/types/phone_numbers/voice_list_response.py,sha256=A1qBczxHbiCSUkCLOdvgapv3JXi-_daNLzMsuLTEqA4,451
|
|
1752
|
+
telnyx/types/phone_numbers/voice_retrieve_response.py,sha256=DbG9wPdRqbAG9gkcl8ucRIeTwY3tcD1ZBspf-ZafLmw,359
|
|
1753
|
+
telnyx/types/phone_numbers/voice_update_params.py,sha256=8elnYq04XrP0CeeckAkceLXbF-7nLA7uO-ujigz5eGg,1923
|
|
1754
|
+
telnyx/types/phone_numbers/voice_update_response.py,sha256=wJhTbcfzAOB3ekuttjjsyf_xl9xrbQ_uLxvQGaPTfRM,355
|
|
1755
|
+
telnyx/types/phone_numbers/voicemail_create_params.py,sha256=rt6AEuk3-uNLfojmy8RQMhz80V_2qXMGpqZGDZlO6_4,364
|
|
1756
|
+
telnyx/types/phone_numbers/voicemail_create_response.py,sha256=m3AUqJdm81uxq3nVSgd7n2T6KwgUVdOg_jJ792wrBN8,340
|
|
1757
|
+
telnyx/types/phone_numbers/voicemail_pref_response.py,sha256=KatkOgOmu0aRBPWsMX-dK1FzQUZLLF_z6kb1chyHK-U,376
|
|
1758
|
+
telnyx/types/phone_numbers/voicemail_retrieve_response.py,sha256=mukmhXB3L7gPrUXr7hnA8YT0TIEZV1_3TaCr09UtJL8,344
|
|
1759
|
+
telnyx/types/phone_numbers/voicemail_update_params.py,sha256=ypC7f4zWItROJxe2LxiDnpB0kIXWYQMGV9ixor3wFsg,364
|
|
1760
|
+
telnyx/types/phone_numbers/voicemail_update_response.py,sha256=WkjIUhM8pfcJ2S6MpiIH9HnshIql2q2_MMjelv6u9ck,340
|
|
1761
|
+
telnyx/types/porting/__init__.py,sha256=tveeVKVFH8iSdE0rJq5qHzW84vzpBfah-POHet7FqCs,1993
|
|
1762
|
+
telnyx/types/porting/event_list_params.py,sha256=9Wsv7iM0Ybs3923g4R94L7CDaSCF94cYSu3lElwzaQk,1663
|
|
1763
|
+
telnyx/types/porting/event_list_response.py,sha256=f2kZtjgNOLkV_r2dFyMPBpJl6yBpFI-aiuh1EiI-Lds,7191
|
|
1764
|
+
telnyx/types/porting/event_retrieve_response.py,sha256=bI76TXQgNrNZzxn51lEvVHmjPNjUhyjmDEydqWq9fMI,7105
|
|
1765
|
+
telnyx/types/porting/export_porting_orders_csv_report.py,sha256=Cx7xLC22QThEpvhsS1V6Z5W6e8oL-liK7xwzKVp7fI0,1429
|
|
1766
|
+
telnyx/types/porting/export_porting_orders_csv_report_param.py,sha256=Hjz0zxRl-4YRy1mX0INryIYqgXPfVicPOMEvPxaxwxw,1573
|
|
1767
|
+
telnyx/types/porting/loa_configuration_create_params.py,sha256=sLgDBwtTbYbsivMymOlattu0Rchrq-Oe8ycYKyDziJA,1432
|
|
1768
|
+
telnyx/types/porting/loa_configuration_create_response.py,sha256=idFW9lRXOi0eoowWG26-OSVcI3Hp_fmfFStZ3krwG64,360
|
|
1769
|
+
telnyx/types/porting/loa_configuration_list_params.py,sha256=M2iuy3pEkM_zeYz4ZGv9zbyb7D6khePUWVhYZwW3pm4,527
|
|
1770
|
+
telnyx/types/porting/loa_configuration_list_response.py,sha256=4T7hlI2r4PKxY6-QruMPwsPASMmTJDzpviJOMZlgXaw,456
|
|
1771
|
+
telnyx/types/porting/loa_configuration_preview_0_params.py,sha256=w-T5cIgZG6GoCSksU8v0vOZuNyn95J4w7D9oOUoyfYc,1436
|
|
1772
|
+
telnyx/types/porting/loa_configuration_retrieve_response.py,sha256=jhmNZzh5AoN84csgD8z39VbY2Rgu0mB1bRUcLzR1--o,364
|
|
1773
|
+
telnyx/types/porting/loa_configuration_update_params.py,sha256=0jI5X6q0PgwHr1so6bDe4C7KIlnbQxeyW7OtFr-e694,1432
|
|
1774
|
+
telnyx/types/porting/loa_configuration_update_response.py,sha256=HlMzjUvmkkHaynvWd4iJrctknDKZjK_Rgj2sUiJOij4,360
|
|
1775
|
+
telnyx/types/porting/porting_loa_configuration.py,sha256=n1rOrKKMaRSYKPsOm6mojNCnEOuaw0nbbpZc1UoZ2WM,2146
|
|
1776
|
+
telnyx/types/porting/porting_report.py,sha256=wf2QFzAHR3TvO8zcsZkGv6G5YSug0hvXW8xWscjQFHg,1307
|
|
1777
|
+
telnyx/types/porting/report_create_params.py,sha256=JIIWG5ZSOIIN4GJI5meWcwS18bypDEEOX03XnX50e70,585
|
|
1778
|
+
telnyx/types/porting/report_create_response.py,sha256=BNT3KHwt1d3MioPeMxbA4sze-QbQNradK8VWUJChVSc,309
|
|
1779
|
+
telnyx/types/porting/report_list_params.py,sha256=OfkdQ2wuup3u5TFOe3HnPlnX4ghLGlaYBuBeQM4vPkg,893
|
|
1780
|
+
telnyx/types/porting/report_list_response.py,sha256=zpvOqmVr64-slJjIY1b_g-DGDI2XcRTsD8m5XMwqSEI,405
|
|
1781
|
+
telnyx/types/porting/report_retrieve_response.py,sha256=8OyIysbVNL7p2mcKrDaGKWZV3GIoMIeyUwJtJ1wdC_w,313
|
|
1782
|
+
telnyx/types/porting_orders/__init__.py,sha256=HJl65BJpcwiEeK6O0B0ByS_9PegKruRhu0xbJt9MlbM,5426
|
|
1783
|
+
telnyx/types/porting_orders/action_activate_response.py,sha256=yHEqDYp-dHYqPHME8zNY91Q2Cwa63kh0GKT0k7PQeao,355
|
|
1784
|
+
telnyx/types/porting_orders/action_cancel_response.py,sha256=t-CwDtKYFrEIUZxpM9H6eC1ItUT-ckT_bt0DcWOXRdY,458
|
|
1785
|
+
telnyx/types/porting_orders/action_confirm_response.py,sha256=8yaAwjsbtWY_PjmYLFkpLITIHZI7csntjQ_ZkmNzopA,460
|
|
1786
|
+
telnyx/types/porting_orders/action_requirement_initiate_params.py,sha256=B8asY-O22kt_WaJUFgmXt5Q0W3dMzxOEos2rNSVJ0g8,727
|
|
1787
|
+
telnyx/types/porting_orders/action_requirement_initiate_response.py,sha256=NYokr-_EHqC9-mWUjRNar5Ajm5Ri7--VrmDwoMR0kBE,1428
|
|
1788
|
+
telnyx/types/porting_orders/action_requirement_list_params.py,sha256=PLR1f6Trd5b1JccXVF7DYLKGlqzWi2725vjUd3GpQa0,1560
|
|
1789
|
+
telnyx/types/porting_orders/action_requirement_list_response.py,sha256=Pz7Gen2DstnU6g-lVFMAbfg8b_6R9yXcCQlZj3KdhAM,1520
|
|
1790
|
+
telnyx/types/porting_orders/action_share_params.py,sha256=Qc4xK47aS1JELeFF7raHxt5dhAwfJWhAmpv4NWC2JEs,480
|
|
1791
|
+
telnyx/types/porting_orders/action_share_response.py,sha256=ofTtHdeZMNe5ke9ZmezfLi8-vkxD81Cc6IVW5ZFilEc,1258
|
|
1792
|
+
telnyx/types/porting_orders/activation_job_list_params.py,sha256=zDoWD1LmyuRTs9bbPb_yk5SDcJ3lQ_DPmt1ouwWPYog,521
|
|
1793
|
+
telnyx/types/porting_orders/activation_job_list_response.py,sha256=VivJe08mZWXdoBHUsD3SYdIo_BxsNPnhW6Wt9oj05a0,461
|
|
1794
|
+
telnyx/types/porting_orders/activation_job_retrieve_response.py,sha256=_RxWJXWfNJBQD6nL7tQj0qq_VCuWVjbkMPagejvDAZY,369
|
|
1795
|
+
telnyx/types/porting_orders/activation_job_update_params.py,sha256=CiKMdENXjyDAmNDOrsat1UK_KEF6QhfN8nmMHyuE4OQ,597
|
|
1796
|
+
telnyx/types/porting_orders/activation_job_update_response.py,sha256=OMMgYL8Tn6jS4DyPlvXnL_RFqKCNpY8O4T270MhqhdE,365
|
|
1797
|
+
telnyx/types/porting_orders/additional_document_create_params.py,sha256=oQxoPSbNnUV89n6FHrNAVPBZ5sW1ibjVSVAw4LrIotI,606
|
|
1798
|
+
telnyx/types/porting_orders/additional_document_create_response.py,sha256=FLv5T8rDxs9djlzcNw13vq-NbaxBXoh1TpEDjV4nC7c,1289
|
|
1799
|
+
telnyx/types/porting_orders/additional_document_list_params.py,sha256=jdkNwX-4qzqNr8NfLxYqqgIyLs3iUZV9K_oQW3BPA98,1189
|
|
1800
|
+
telnyx/types/porting_orders/additional_document_list_response.py,sha256=qaApsutQD4WhtPhgaIykgvP6RSSuZSHzc79lARSN680,1373
|
|
1801
|
+
telnyx/types/porting_orders/associated_phone_number_create_params.py,sha256=s4_o5TmClTxj6ksA4hxX16wG_E6h-vk7a4JW9HXy-_o,771
|
|
1802
|
+
telnyx/types/porting_orders/associated_phone_number_create_response.py,sha256=WMS7UKwTJjq9oN5yi_3hc2fDQW8XP6bCGd14KmC9yAs,386
|
|
1803
|
+
telnyx/types/porting_orders/associated_phone_number_delete_response.py,sha256=HZ9wItzYJBv94d-BYjROiraQaSa_r9FQSNG6ANRQas4,386
|
|
1804
|
+
telnyx/types/porting_orders/associated_phone_number_list_params.py,sha256=6V-B52tWcYOCIwkCVgzj_rAlJb5bIfHNIq7BPs5F8Ls,1231
|
|
1805
|
+
telnyx/types/porting_orders/associated_phone_number_list_response.py,sha256=pibQUZm4s_O9w4Xl7kVUw2l4tplRra9tKw0F09J5YIw,482
|
|
1806
|
+
telnyx/types/porting_orders/comment_create_params.py,sha256=yQIBaea_5_j9g670Ox4vUX7o5-Jne-U-0ruhpf68oQQ,265
|
|
1807
|
+
telnyx/types/porting_orders/comment_create_response.py,sha256=3bkbI7QrdtPKSAAYTgxxBbd92pZRKctVkBAs36UUGXk,853
|
|
1808
|
+
telnyx/types/porting_orders/comment_list_params.py,sha256=cRy05V4qlq0jnrIKNTT0rTr4FpSBi873qDmVawv4dZA,509
|
|
1809
|
+
telnyx/types/porting_orders/comment_list_response.py,sha256=rpHUTgrstb51jdHpJoKl7L5YrZCMa-Z8XHaRvZlK4U8,949
|
|
1810
|
+
telnyx/types/porting_orders/phone_number_block_create_params.py,sha256=CHJt-YulkiyRbLEkP8XaZJnr_ALJQsJpLOw_r5ZRbk0,1315
|
|
1811
|
+
telnyx/types/porting_orders/phone_number_block_create_response.py,sha256=WjwIs8coYmDqRvm49nmJw_f7ehhTMDHgL85V3C_-6rw,361
|
|
1812
|
+
telnyx/types/porting_orders/phone_number_block_delete_response.py,sha256=DMWZYmf7J1EYvn2_BmUTcxy8fvvxwSlIXxKjmjxcSA8,361
|
|
1813
|
+
telnyx/types/porting_orders/phone_number_block_list_params.py,sha256=97oRtYK1ZS4NEH3Cy257QkOwMRO1tIxY1702P1jFSyY,2719
|
|
1814
|
+
telnyx/types/porting_orders/phone_number_block_list_response.py,sha256=FhkDk-GORVflJjCGbt9KOwenNEZGS-LlBp2jDrDMFF4,457
|
|
1815
|
+
telnyx/types/porting_orders/phone_number_configuration_create_params.py,sha256=7zusgczIv8YqlDc2lmrNL9IQZcEy39UpXw7hzSR7Szo,704
|
|
1816
|
+
telnyx/types/porting_orders/phone_number_configuration_create_response.py,sha256=jw5FJRrN4OMWFGsYedIQcalJJbBy1wUuRYrTIhxGEe4,982
|
|
1817
|
+
telnyx/types/porting_orders/phone_number_configuration_list_params.py,sha256=oFvDdsTUB7f658IgWHC4r0o_ngAeCmWCidJbeC7VyB4,1863
|
|
1818
|
+
telnyx/types/porting_orders/phone_number_configuration_list_response.py,sha256=ZLwF-ccYFoQAg46SpkZqKuDaavlz-wUzZOwkVmqIcsI,1066
|
|
1819
|
+
telnyx/types/porting_orders/phone_number_extension_create_params.py,sha256=F0nBFwH0o_CUSnb89oCGF3pqRqfOm9g9zhKtk-LUeCc,1485
|
|
1820
|
+
telnyx/types/porting_orders/phone_number_extension_create_response.py,sha256=yr4EwLHA5Eylae8icT26M2Km1kSufge8wqAY1Q7jMmE,381
|
|
1821
|
+
telnyx/types/porting_orders/phone_number_extension_delete_response.py,sha256=bfA8OGqvKT5jZM8OHjmAgXkirxFFQ2lFsQl70G4HN_0,381
|
|
1822
|
+
telnyx/types/porting_orders/phone_number_extension_list_params.py,sha256=kBvfAxKjPlg_wYQF2OKn_VV8fTjr4eqhutPxDzx1tIE,1130
|
|
1823
|
+
telnyx/types/porting_orders/phone_number_extension_list_response.py,sha256=aAVTLtBQkFibMpB014MBErDBXM-RPqRWz7wCUAU54o4,477
|
|
1824
|
+
telnyx/types/porting_orders/porting_associated_phone_number.py,sha256=PN1tjG8VxFOWRe2PiBj4Di0fyaXhu9wtdx-b4lE2hEE,1801
|
|
1825
|
+
telnyx/types/porting_orders/porting_phone_number_block.py,sha256=Xm_ZDjQMhHsNxg6V2wMh4X56JJ3f1wuUpySyPkAGSXU,2216
|
|
1826
|
+
telnyx/types/porting_orders/porting_phone_number_extension.py,sha256=XqGkZpZwvDSg7ZrVdCcWqJBxtiRZgv66fKNkGz0FF7E,1972
|
|
1827
|
+
telnyx/types/porting_orders/verification_code_list_params.py,sha256=Yod961uvJxU6eiRv3-OT2lpGzdEvMPfO_JWGzpLwTs0,1099
|
|
1828
|
+
telnyx/types/porting_orders/verification_code_list_response.py,sha256=ua7Y0qud-ehAMI_2403_MHT109ldSv-cuDweMvx6KTQ,1128
|
|
1829
|
+
telnyx/types/porting_orders/verification_code_send_params.py,sha256=dvhevoOTJmajW_79D97rVWzG-e7A2PY1ezxNdDuPiyo,400
|
|
1830
|
+
telnyx/types/porting_orders/verification_code_verify_params.py,sha256=CVpbc5pnfHS0oDD0Ftf75U-VMad7BAz3xgkvxmDTkjA,455
|
|
1831
|
+
telnyx/types/porting_orders/verification_code_verify_response.py,sha256=svKh_ehqL6SAd5Vlms9HCm-edP9PEzqnk49DSJqqgXA,1044
|
|
1832
|
+
telnyx/types/portouts/__init__.py,sha256=grhw0ciMPFbCOuKlEW9rS8zChKHySSntgK-mf6GP55k,1571
|
|
1833
|
+
telnyx/types/portouts/comment_create_params.py,sha256=wg688BYJAsoOYDm1uc3WEB1HMMhL224vP1ZpqUq1IAA,315
|
|
1834
|
+
telnyx/types/portouts/comment_create_response.py,sha256=QxKy6pGlwylEHc2t8UP6scU4lWvIgYkz14uCwlIP7Ss,716
|
|
1835
|
+
telnyx/types/portouts/comment_list_response.py,sha256=4HOSywIjFQ3tdek0wpGkhpfAen2YVj2TNr5KjdlDm4Y,800
|
|
1836
|
+
telnyx/types/portouts/event_list_params.py,sha256=HkNTkA_aGmnpkcAPi7OWZ-X0GJEf_C9x3l7pi-XuzBY,1445
|
|
1837
|
+
telnyx/types/portouts/event_list_response.py,sha256=d4BkTXdPy9B65-JM4J5HjUxTdoY0j_ef-iVDjQUa0NA,3723
|
|
1838
|
+
telnyx/types/portouts/event_retrieve_response.py,sha256=JcRLrM4So2XD7vfqwiLY3_mOvyghel1kxHCNsFmbk7c,3637
|
|
1839
|
+
telnyx/types/portouts/export_portouts_csv_report.py,sha256=NH5YTBP77zpBPNRu0LBq_U8LlKfW7sQVNTC2VuhsHdE,1502
|
|
1840
|
+
telnyx/types/portouts/export_portouts_csv_report_param.py,sha256=CpP3JCyOTRMUn5gMGQoEUVWFau-VLgu-Nw2XrGh6UMU,1628
|
|
1841
|
+
telnyx/types/portouts/portout_report.py,sha256=HSOhs7YIDUWpNSEVH4un2S2vfGqPv0WP_I1jDLjrDO4,1280
|
|
1842
|
+
telnyx/types/portouts/report_create_params.py,sha256=CGysEL_ihcATHpNybcBufQ7oQ-2BMNUFPvhSj1j4-UI,558
|
|
1843
|
+
telnyx/types/portouts/report_create_response.py,sha256=Gf9QtOaycu71ixu-0FqvvQZKhNPWHKJCS7aThvZcAP0,309
|
|
1844
|
+
telnyx/types/portouts/report_list_params.py,sha256=XFJEh7Xml5IZSX8RlY5vV9goBD5t0kI8B3DS3vBftAA,887
|
|
1845
|
+
telnyx/types/portouts/report_list_response.py,sha256=zoBU-0Nnyd7YTSBm3TMmyVmAG963mifjoEZKFUXcLH0,405
|
|
1846
|
+
telnyx/types/portouts/report_retrieve_response.py,sha256=00HN_V2WBWS6JIxNKxmhFxihveDBez0t82juhcVg2Jk,313
|
|
1847
|
+
telnyx/types/portouts/supporting_document_create_params.py,sha256=dBtQ1FGA5DTrldkD564eBQZt-XOgMMYZPaQRfAWQ4X4,627
|
|
1848
|
+
telnyx/types/portouts/supporting_document_create_response.py,sha256=tigici7lnq_zj8BsldeJ7pCZms3CoOZQ8HCjgOlQJok,848
|
|
1849
|
+
telnyx/types/portouts/supporting_document_list_response.py,sha256=mhwtfvJjKurllrcovdukqm6jodHx1_YM1Xv4E8j1sb4,844
|
|
1850
|
+
telnyx/types/queues/__init__.py,sha256=rGSKKW6-MlkMnffiof0TR2Vr1e8-Cwtp_ex_3O1uJzg,336
|
|
1851
|
+
telnyx/types/queues/call_list_params.py,sha256=xjZWqMDlVSXPyjJK9CU_CTWI9R0aBIl2EKktFyWDcoA,721
|
|
1852
|
+
telnyx/types/queues/call_list_response.py,sha256=B3zKXOFLyFKIom-3IJ2vNzMZLiiComYzoorjLlpuK_Y,1586
|
|
1853
|
+
telnyx/types/queues/call_retrieve_response.py,sha256=byyNjHmcSEzntHhj74KmTZXCqvnTBNLn3vWL58zRJNg,1494
|
|
1854
|
+
telnyx/types/recordings/__init__.py,sha256=VqH0wJRWVFrnA6rgjI3ufNPQS_7Q_SliOtpyPTOelv0,198
|
|
1855
|
+
telnyx/types/recordings/action_delete_params.py,sha256=VY-yscM6ywcIXJ3XfVFa25b0l2MBmDceTiE4YmVZ7TI,384
|
|
1856
|
+
telnyx/types/reports/__init__.py,sha256=QIIseXBHBXfK8C6a0Xa3ZjLSsgbRUKdmAOTV1Ef0x8Q,1266
|
|
1857
|
+
telnyx/types/reports/cdr_usage_report_fetch_sync_params.py,sha256=ADYLC3lC0_k-vulNyxPBxCtdbpupFIOTrjbckXu9cuw,813
|
|
1858
|
+
telnyx/types/reports/cdr_usage_report_fetch_sync_response.py,sha256=227MbWIxADGD64C3mMc3qbSeY-08qTsJUuBoW8wL5uk,1124
|
|
1859
|
+
telnyx/types/reports/mdr_usage_report.py,sha256=FO83_SE63RJA32D7Clzc8f7baNLlZSGpWpJjlLnXfw8,1437
|
|
1860
|
+
telnyx/types/reports/mdr_usage_report_create_params.py,sha256=PCNtkq8fftLjalXvaL8I5_72xoOh-0h_wglFbXF_gVo,662
|
|
1861
|
+
telnyx/types/reports/mdr_usage_report_create_response.py,sha256=F1bTtvhfdDNJENBqxGOGdBAWqchnI9FthVnncmgPAwQ,329
|
|
1862
|
+
telnyx/types/reports/mdr_usage_report_delete_response.py,sha256=ALtBctlQ7Z9x0q2nWLl1XgGKa8J7TMGHIn_25OkKAZQ,329
|
|
1863
|
+
telnyx/types/reports/mdr_usage_report_fetch_sync_params.py,sha256=-vJYfIW1sscvLdN9OXJPtqFBvribswMqz5TBHQ7Uzgo,701
|
|
1864
|
+
telnyx/types/reports/mdr_usage_report_fetch_sync_response.py,sha256=BGS6Nlv3UlAs18XNyxmkRo7uqA663LCNfKN5cxG2-KI,335
|
|
1865
|
+
telnyx/types/reports/mdr_usage_report_list_params.py,sha256=gRErjG0Dbpv4kxfHOmQsz880fNHa6XZ5eImZcsy0W8k,507
|
|
1866
|
+
telnyx/types/reports/mdr_usage_report_list_response.py,sha256=q61KmPB8aerzjxq8yYr7XCZcsCv9fE2b_oviGthZLd4,558
|
|
1867
|
+
telnyx/types/reports/mdr_usage_report_retrieve_response.py,sha256=dZwf4DZI0w7voOtSXV8MA73Xu-CN49PQQqjSMpLsUok,333
|
|
1868
|
+
telnyx/types/rooms/__init__.py,sha256=QMDi7DtWKTqiEtEGnoysz-8UP-wdQGxxDbZI11RLHn0,1384
|
|
1869
|
+
telnyx/types/rooms/action_generate_join_client_token_params.py,sha256=doGR8gnOb4Eixm-au280XDAhvQxq7oW-jh5tk__QwjU,653
|
|
1870
|
+
telnyx/types/rooms/action_generate_join_client_token_response.py,sha256=Nb9l0UXiCMdSw2UblVl9bVjZkAVxlp93EfQcKCIBP1w,648
|
|
1871
|
+
telnyx/types/rooms/action_refresh_client_token_params.py,sha256=43YHBJltGtnEwa99yIcvCAzyi0r1cqSAVQjt139Ww6k,492
|
|
1872
|
+
telnyx/types/rooms/action_refresh_client_token_response.py,sha256=W_i_MfCWJxGXp0GCOMH0odyO_1jpyj9kiQFvX_ZEi7w,479
|
|
1873
|
+
telnyx/types/rooms/session_list_0_params.py,sha256=vCGgX8_Z-z2b9Dw1BowuIrCXhGXnixHJiuwurSjHbUQ,3001
|
|
1874
|
+
telnyx/types/rooms/session_list_0_response.py,sha256=N7r-klKwgR9To3AFRMSVMa5mm2rRcg94aslX9Jdvo4w,404
|
|
1875
|
+
telnyx/types/rooms/session_list_1_params.py,sha256=6G_93DA2PXP0z-gD55SINs05YzsiB5ejK_rzIQHtqWo,2919
|
|
1876
|
+
telnyx/types/rooms/session_list_1_response.py,sha256=S7LlqK-XC3CDMKDTKGMcQg3bOwUlsx3gEXlKcMPLCng,404
|
|
1877
|
+
telnyx/types/rooms/session_retrieve_params.py,sha256=xXVXjR4gKhPP51FC1lPIZzgNHy9-K-x4fR6SYqjWr1w,363
|
|
1878
|
+
telnyx/types/rooms/session_retrieve_participants_params.py,sha256=WMAAH6UwCbT09Wk_tZUkx7MCQARNJ89o4ppJngmwyvE,2944
|
|
1879
|
+
telnyx/types/rooms/session_retrieve_participants_response.py,sha256=2_lNU-dDlgzyBXsY5MpSmbhGeW2Tuc3lSEAcMShUW6w,453
|
|
1880
|
+
telnyx/types/rooms/session_retrieve_response.py,sha256=TYRoLk_pVhHfsw12Ih4sh1hN0_ElOOP_kAtqGQQjz1U,310
|
|
1881
|
+
telnyx/types/rooms/sessions/__init__.py,sha256=gRGDmydoGVXKu4fc9X7-nVBq4Qalg-xz99mUP0fyz5Y,639
|
|
1882
|
+
telnyx/types/rooms/sessions/action_end_response.py,sha256=HyWTbaa-53ghSBNYmWTCqsYeXl3pldh3Xhs3y-yy6kw,319
|
|
1883
|
+
telnyx/types/rooms/sessions/action_kick_params.py,sha256=bIQ6qN11PTDRd8GnIYrWXI36Svp1FyrR22vO7dDLKdg,619
|
|
1884
|
+
telnyx/types/rooms/sessions/action_kick_response.py,sha256=pKzWWzU8DpohL4a6sXRN7tWm5e2JpjUl2VT4hNeHYfI,321
|
|
1885
|
+
telnyx/types/rooms/sessions/action_mute_params.py,sha256=9AZlHD7j-CqVbiqMzICWAR_N9VB9KDiFl-aTE2gNTww,619
|
|
1886
|
+
telnyx/types/rooms/sessions/action_mute_response.py,sha256=p_LSOgywJ9isRWIBUbgPbrw9ApwkjFo0AN2V7AAxXHg,321
|
|
1887
|
+
telnyx/types/rooms/sessions/action_unmute_params.py,sha256=8chvRGfHZpJ56QwPqsIulHle5WK7P2IZaC_HzUiOPY8,623
|
|
1888
|
+
telnyx/types/rooms/sessions/action_unmute_response.py,sha256=x_8LTDbXFuMwTkKwmWWsWDNrGTwdbDWsXWNhCcxPuNo,325
|
|
1889
|
+
telnyx/types/shared/__init__.py,sha256=g0D3604-dM4M4ze6C5-0ixi_BFq5atFf1hOzp6rx1HE,1318
|
|
1890
|
+
telnyx/types/shared/connections_pagination_meta.py,sha256=p7kiAXOSJ_320-SBkhP5tPpij1kKms9zLnnPhRFkjOY,391
|
|
1891
|
+
telnyx/types/shared/doc_reqs_requirement_type.py,sha256=mMPA-dalQskntqa3kXGPzVDFKN2BmtcWF06H3xxFubw,1865
|
|
1892
|
+
telnyx/types/shared/hosted_number.py,sha256=eX8vQvhBv18c3kjixEV2XNKq7cKPfYEMqhWBm2fLHWw,915
|
|
1893
|
+
telnyx/types/shared/messaging_feature_set.py,sha256=MoVBAiOjb-67tLTrXdFl1WCp8FGanTMvdpcuPNvatQQ,486
|
|
1894
|
+
telnyx/types/shared/messaging_hosted_number_order.py,sha256=5if3osK-8DoVoFq_cxxqtRWU5Jr26Wz9Y-YNBkQ8Lv8,1140
|
|
1895
|
+
telnyx/types/shared/metadata.py,sha256=UjUJ4jqQ-Hfz7uF7a9P1g8jblKBLSVzV4t3XRGUPqZA,672
|
|
1896
|
+
telnyx/types/shared/number_health_metrics.py,sha256=4lMmkusIvA3fe1Y6O1z7ITNlF4SaR2-6ojfdjVpSbNQ,628
|
|
1897
|
+
telnyx/types/shared/phone_number_with_messaging_settings.py,sha256=-M7HZiHdcpDWwzbVgzhc015JPjO_dmCZD_oamvQuKzU,2428
|
|
1898
|
+
telnyx/types/shared/porting_order_status.py,sha256=DoCRE0HJM-V81miU8OYH-RQF4M91Zz4HDu_KaMtSN3Q,791
|
|
1899
|
+
telnyx/types/shared/porting_orders_exception_type.py,sha256=xr2cnU_xZjPPylOQQL6eN_oZX0wyPf84liMhocknzlE,1181
|
|
1900
|
+
telnyx/types/shared/room_participant.py,sha256=nmrO3YMZCIB2Rc5u8nAdNnIX7xWBmakr4OAWV_85bEA,909
|
|
1901
|
+
telnyx/types/shared/short_code.py,sha256=oMFf1RAYve3xzPRoLzWYUfDAoYPCTkha22BZtcNcVEs,965
|
|
1902
|
+
telnyx/types/shared/sim_card_status.py,sha256=XLSUX-M8kG643YOTwXkTGbWUwe5HRkEAxaguBajo014,1436
|
|
1903
|
+
telnyx/types/shared/simple_sim_card.py,sha256=tfzWtCCSNJMihk5dsi9n70Wcw7Abu-MK_tAS5pXNaRQ,3573
|
|
1904
|
+
telnyx/types/shared/sub_number_order_regulatory_requirement_with_value.py,sha256=iEo0O4dFFovZJtvOjGOB2YLJfZ6o-jh3jE7uAGhIZr4,665
|
|
1905
|
+
telnyx/types/shared_params/__init__.py,sha256=VKGipl4SSoarenbMifwUglI4K7Orej5mnjIe21W2DK4,147
|
|
1906
|
+
telnyx/types/shared_params/sim_card_status.py,sha256=hDAOd5xAkl102wrndG1eKNdREdWTKPocJvZD4OuJQLo,248
|
|
1907
|
+
telnyx/types/sim_card_groups/__init__.py,sha256=Sx2YcYgxYZILbjIBD4mg6WsVrkngsExt7xUhs2erIIo,1279
|
|
1908
|
+
telnyx/types/sim_card_groups/action_list_params.py,sha256=eoFFNIZEUF0oPfOXKL-JjujevD-1Gs5AQCYzKIg743c,1125
|
|
1909
|
+
telnyx/types/sim_card_groups/action_list_response.py,sha256=URWiu8SIuoxEugc340qCnHue2zE_I-gpWcjAAEUkndQ,422
|
|
1910
|
+
telnyx/types/sim_card_groups/action_remove_private_wireless_gateway_response.py,sha256=vWZzb4TDKBZ7hITNvLb-JmbolMezmJnVAGk8crYKGrs,556
|
|
1911
|
+
telnyx/types/sim_card_groups/action_remove_wireless_blocklist_response.py,sha256=dRn6Jmyj9WyOklh_rijjWCQTEDeI3NlbyHIuXxTm9Pw,546
|
|
1912
|
+
telnyx/types/sim_card_groups/action_retrieve_response.py,sha256=E60lW52UCgvGzYLle84ZIDnbO81n1OyqFyT_RSrVL9A,516
|
|
1913
|
+
telnyx/types/sim_card_groups/action_set_private_wireless_gateway_params.py,sha256=zJ9D4unxfXF15TdChhnRJFmrrls2n3E4lHQA0tXrLN0,423
|
|
1914
|
+
telnyx/types/sim_card_groups/action_set_private_wireless_gateway_response.py,sha256=WPFGVBGPqMaiWWmaQdzdSzyxh1oGIefvmY3lX0TvQxc,550
|
|
1915
|
+
telnyx/types/sim_card_groups/action_set_wireless_blocklist_params.py,sha256=6NsbfesSWnkYx0EbQ0b2_tw-_4PHVuch5EamGD2N82o,401
|
|
1916
|
+
telnyx/types/sim_card_groups/action_set_wireless_blocklist_response.py,sha256=I1X5i7HLZDl9QmzE50waE76gFs1o_OIykAMmyRRk6Dc,540
|
|
1917
|
+
telnyx/types/sim_card_groups/sim_card_group_action.py,sha256=pOMm8NL0e7cnYezH48fcYthdobsp2WaPGE3QsuVIvB4,1332
|
|
1918
|
+
telnyx/types/sim_cards/__init__.py,sha256=MODlqcTD3wHvtPuHSJS4vt1Osii2yuKcaekDExk4Hag,1484
|
|
1919
|
+
telnyx/types/sim_cards/action_bulk_set_public_ips_params.py,sha256=HitNZ55poUzhvUb4IAUnxAbLBftONoz6367okRO6GqM,365
|
|
1920
|
+
telnyx/types/sim_cards/action_bulk_set_public_ips_response.py,sha256=QcND2JCENc5r34xkphWUMofFYiWkAn542DXAbuPxKQA,1239
|
|
1921
|
+
telnyx/types/sim_cards/action_disable_response.py,sha256=-RBgx66OI5-gTOLEJirSEM3Ez91HU7Q10Os_9IFAM2Q,455
|
|
1922
|
+
telnyx/types/sim_cards/action_enable_response.py,sha256=jT6tTv5LICc8vt_4dRd6HN5SDPf10OxotigcEctLAOk,453
|
|
1923
|
+
telnyx/types/sim_cards/action_list_params.py,sha256=r06ad4TrDYKZvs8WFxb95ETVI1Buoy26Yb7GkS2zBps,1223
|
|
1924
|
+
telnyx/types/sim_cards/action_list_response.py,sha256=vCBHMW3e_3pzdZvrJasSn1CiyUa6MhUfFfzN1Zi82x0,406
|
|
1925
|
+
telnyx/types/sim_cards/action_remove_public_ip_response.py,sha256=t_zzhKrYvqMYFm09wdIH64SZ7TJM3jVvLuqnifj2ru4,469
|
|
1926
|
+
telnyx/types/sim_cards/action_retrieve_response.py,sha256=v83QJUtdDUqzagkuM-KaZ6ZENE_DYS_hx62U_RwZyUc,457
|
|
1927
|
+
telnyx/types/sim_cards/action_set_public_ip_params.py,sha256=tXt8FVOIGSNi0Qh-ZKZ3rMUsgnv1CkpejMaQRSvP-KE,428
|
|
1928
|
+
telnyx/types/sim_cards/action_set_public_ip_response.py,sha256=hDt0ImCL2lWxStqN0BvrNY3CT24Y7mf_G8KktyxMctg,463
|
|
1929
|
+
telnyx/types/sim_cards/action_set_standby_response.py,sha256=rL8T8BuffYWqJlp3OyEXuHgyrxyx7cmMOzNav4QFDmM,461
|
|
1930
|
+
telnyx/types/sim_cards/action_validate_registration_codes_params.py,sha256=Jwb1ykfbVwcuIOs61WOGvTAfxZLDOzjR3wvVajfdWwU,369
|
|
1931
|
+
telnyx/types/sim_cards/action_validate_registration_codes_response.py,sha256=UpBtEM78R2lXhvam2ROfypH64VdLWdeolkPqBgWM2w4,653
|
|
1932
|
+
telnyx/types/sim_cards/sim_card_action.py,sha256=_mdYqKpyPGIffBi766aPtXANTEebG4CQbl89JCEQUvE,2005
|
|
1933
|
+
telnyx/types/storage/__init__.py,sha256=w1SKDPQWDjAO0Un8wRsHt-Ii6SmqciBZgdmMz31j0JY,1397
|
|
1934
|
+
telnyx/types/storage/bucket_create_presigned_url_params.py,sha256=V9vnxw7EUxyAylMl-gDRgq3fB4JYLhPLLMEZ5QP3Rr0,471
|
|
1935
|
+
telnyx/types/storage/bucket_create_presigned_url_response.py,sha256=re95uEOTe8MstoinrelpFIZMiMXcf6HLOt4SPshl2Og,594
|
|
1936
|
+
telnyx/types/storage/migration_create_params.py,sha256=dLx6EO4VPpguqJrFuw_p_xjDqwvloRwqLPCV_RblGKo,752
|
|
1937
|
+
telnyx/types/storage/migration_create_response.py,sha256=GVMuo06QhW7vOFsyUWHHyBXzyg3IMjFikK4cTesX3hk,321
|
|
1938
|
+
telnyx/types/storage/migration_list_response.py,sha256=m2jzjmr_LHE2fcEP624-GhHUfmeqpKP5JGyGn-_f65I,443
|
|
1939
|
+
telnyx/types/storage/migration_params.py,sha256=mSaZSx7_zu-LqdA5GWh0Ah1BWduC92vXLl-aHVPIUVs,1565
|
|
1940
|
+
telnyx/types/storage/migration_retrieve_response.py,sha256=H1i22wAV3gSR0xOn5WtkYK7H1kheln4EJOf4HOZFw4s,325
|
|
1941
|
+
telnyx/types/storage/migration_source_create_params.py,sha256=55dNcRRc9Z2tCVZsYd231JZJ76EP0hYBJoXxyOBK82c,1042
|
|
1942
|
+
telnyx/types/storage/migration_source_create_response.py,sha256=wH3fVKs50Nbw2ngyQfIFTszrhe6EwhfGLH2SY5ozSzo,352
|
|
1943
|
+
telnyx/types/storage/migration_source_delete_response.py,sha256=_71HV_BtjYW5MF6cF7iLVV2MgXKbQA0YdT1BAW6ss2w,352
|
|
1944
|
+
telnyx/types/storage/migration_source_list_response.py,sha256=C3uXRDrxvLQbnzkh-oUg2roPs0tuSlBnD3eRQGEXEG4,474
|
|
1945
|
+
telnyx/types/storage/migration_source_params.py,sha256=IosTjeSz9usEG_3MfMi9-CkcVGccmayKsnxMxJ10iwQ,1119
|
|
1946
|
+
telnyx/types/storage/migration_source_retrieve_response.py,sha256=CuefyYc5dFjHaKgS2KfooR8avDW7oLWr6TI2KooGYDI,356
|
|
1947
|
+
telnyx/types/storage/buckets/__init__.py,sha256=MQ7SZnQZHIRsjn_Ps36KkTyZnJkIGjqtY5M2hWE8YfQ,978
|
|
1948
|
+
telnyx/types/storage/buckets/pagination_meta_simple.py,sha256=jcGfUdVy_CSdr90UGMFzk4rZGSke2OcgQKKUrRxYvf0,382
|
|
1949
|
+
telnyx/types/storage/buckets/ssl_certificate.py,sha256=i3BvTdHdLTwnZ9JCd5kKBgnKdcJ8h8wTmbeeG1ATjFg,1392
|
|
1950
|
+
telnyx/types/storage/buckets/ssl_certificate_create_params.py,sha256=ptVyOvt6yfVkr-FYrrUcDujcI3njKMRzFZU22TGEEmI,420
|
|
1951
|
+
telnyx/types/storage/buckets/ssl_certificate_create_response.py,sha256=fUHneJ2_E-UqYv7KQ2-Cquv_uVK-pUc69s6iF5waJ1U,329
|
|
1952
|
+
telnyx/types/storage/buckets/ssl_certificate_delete_response.py,sha256=ZaLsybuMyHreZySZ-x7sE5OgPu1zPCLbBiztvqxL888,329
|
|
1953
|
+
telnyx/types/storage/buckets/ssl_certificate_retrieve_response.py,sha256=KlMkr9WozOwa6EHA9deq1t2Ug7bkG8m-K1KJX5MBz_0,333
|
|
1954
|
+
telnyx/types/storage/buckets/usage_get_api_usage_params.py,sha256=nwd7snlXudnODMvINUAgHky1xZvgla5N32w4dnhEJTc,913
|
|
1955
|
+
telnyx/types/storage/buckets/usage_get_api_usage_response.py,sha256=SfPvoWa_b2FxJkmYQb0i5X6SqaHZpgdj9Op64bRm2As,1665
|
|
1956
|
+
telnyx/types/storage/buckets/usage_get_bucket_usage_response.py,sha256=4Yu_ZvghbHxKV4UrNJC8ka4l-0_FuD05QHPEm8XrLbU,777
|
|
1957
|
+
telnyx/types/storage/migrations/__init__.py,sha256=tLBn8B5kHglM79HNqM3OKp1hK10IqeUzkGPfnOsvjmE,198
|
|
1958
|
+
telnyx/types/storage/migrations/action_stop_response.py,sha256=fy-vfnr6GsBQ2bh7sGlQLEKLOZC53tNMk8qNk-7sZrI,313
|
|
1959
|
+
telnyx/types/texml/__init__.py,sha256=pgDuYIN61-6SlCBWZDg-WPMIfQ6oEOSZk2tISHAjK8w,1251
|
|
1960
|
+
telnyx/types/texml/account_retrieve_recordings_json_params.py,sha256=TXZrrWw6NCsdDzroUCqA_YwCdyJXPg85asmwYDmbNto,1023
|
|
1961
|
+
telnyx/types/texml/account_retrieve_recordings_json_response.py,sha256=e_95pmxvvjTr6KyVnwLNpjTk1uZpPS8bDCd_iLhkVxM,1168
|
|
1962
|
+
telnyx/types/texml/account_retrieve_transcriptions_json_params.py,sha256=rtnyL6rKanil2yqndrCs1gXT_Blc1AsnzrtkPTL4lIo,575
|
|
1963
|
+
telnyx/types/texml/account_retrieve_transcriptions_json_response.py,sha256=9_T3tu4ie04FdXWHvY7ECE_VQr7960Q1Mc9SGE1XPzA,2098
|
|
1964
|
+
telnyx/types/texml/call_initiate_params.py,sha256=FGg0w5IztnC5kFaAOh5wpQ7pPoesxJ3I7HPXelg7YEU,6922
|
|
1965
|
+
telnyx/types/texml/call_initiate_response.py,sha256=eEECfW-ONB3kjOggFB8I_SpLFLzS4ipMCvm71MigIrM,461
|
|
1966
|
+
telnyx/types/texml/call_update_params.py,sha256=RT1cf5iwOcmXbgtyrRlji6DGspHNmBt3MOOh3yyhUhg,1540
|
|
1967
|
+
telnyx/types/texml/call_update_response.py,sha256=AGkaot7GE6ZCW04zkZGSZErHNYGq1HuLhzL_b2ZU1ZQ,351
|
|
1968
|
+
telnyx/types/texml/texml_get_call_recording_response_body.py,sha256=KoY6eG7_TI_4qyezqH9Y6MqKDc7mdIx4_HNwDcbI7uk,1557
|
|
1969
|
+
telnyx/types/texml/texml_recording_subresources_uris.py,sha256=4qX4UjregkbgPbMSSwIUCYJUZnb32236Yp9kiSpfix4,287
|
|
1970
|
+
telnyx/types/texml/accounts/__init__.py,sha256=hP_89dblkJTZqdHSemSUG7x8OQN_gpdA439kCzA_t2Q,1868
|
|
1971
|
+
telnyx/types/texml/accounts/call_calls_params.py,sha256=Fm558MJFiR5Mxk1VMmwLZwCBFVvbJ35upNKrHX7aiKY,7178
|
|
1972
|
+
telnyx/types/texml/accounts/call_calls_response.py,sha256=o_XmUxY5SFrNPvLoVRuuZm0m23pFJBscM1m6KUOsWXo,391
|
|
1973
|
+
telnyx/types/texml/accounts/call_retrieve_calls_params.py,sha256=lXADuV3aNL1y5Nx__TIm2_Gnl3lky3R4P8psnCRaIaM,1955
|
|
1974
|
+
telnyx/types/texml/accounts/call_retrieve_calls_response.py,sha256=zfhAdQPOWnlT1cyCTLyc4RGf7yAsEnuUOi_bv79S0uw,3034
|
|
1975
|
+
telnyx/types/texml/accounts/call_retrieve_response.py,sha256=F1RtkfOgZDOQHhheVM8MiqU0_AGhtBA_40vjuIqRcSY,2197
|
|
1976
|
+
telnyx/types/texml/accounts/call_siprec_json_params.py,sha256=tIpmy_29V93cT6J2x2jdSrha9_OmrCDDyTXXGW1cXso,2199
|
|
1977
|
+
telnyx/types/texml/accounts/call_siprec_json_response.py,sha256=RM-M0m-s0AFZZGIBogz9W3O1_QxPWwPeT28Hw88Waos,1231
|
|
1978
|
+
telnyx/types/texml/accounts/call_streams_json_params.py,sha256=MNM1Ybjm-PiRx04EE2JugBR0JwfD6d_e_ytaJ2FETLA,1450
|
|
1979
|
+
telnyx/types/texml/accounts/call_streams_json_response.py,sha256=mkjM-tcI-zrgLQnOjtFxjzoJu2Syz8TBcalrgGhq2io,743
|
|
1980
|
+
telnyx/types/texml/accounts/call_update_params.py,sha256=Yj71vXAJ8_eqBRViz4W3O1nD-NijwizkDc3JhslXA3I,1583
|
|
1981
|
+
telnyx/types/texml/accounts/call_update_response.py,sha256=Qp71H8IHL4qQHM7-SG9jPDR4u6_dhnAey8z7HQ4kb6s,2193
|
|
1982
|
+
telnyx/types/texml/accounts/conference_retrieve_conferences_params.py,sha256=COJ4mdRowyNBT4FB8Rw6lu-NsoAD5N_RHjwM0PuSKys,1494
|
|
1983
|
+
telnyx/types/texml/accounts/conference_retrieve_conferences_response.py,sha256=VlGogFRi2mXA9V8VCX51OHMoyWZQ_5yH2KJr-jF5IPE,2635
|
|
1984
|
+
telnyx/types/texml/accounts/conference_retrieve_recordings_json_response.py,sha256=vn3ILlKF_AS7mWEGuFVAxqUYvSfGr8ZvzBJTgsnQLEE,1176
|
|
1985
|
+
telnyx/types/texml/accounts/conference_retrieve_recordings_response.py,sha256=3sLpDPQwwHrTwTZkWrH9-x42Mlq1W2ot2sqQ0LWgAo4,2904
|
|
1986
|
+
telnyx/types/texml/accounts/conference_retrieve_response.py,sha256=anzj4u5TEM93g6aaTeJhNqGARJjpKLrL-_pEVbl4eAo,1750
|
|
1987
|
+
telnyx/types/texml/accounts/conference_update_params.py,sha256=m8jfH6Y9FfV11A181UE4D5fMPV8D8R5m5-x_ybv3BjI,1004
|
|
1988
|
+
telnyx/types/texml/accounts/conference_update_response.py,sha256=YX7oS6FUqTKMPPemdtGmL-R2lWK4Ys5Rxh4X6EEJLpc,1746
|
|
1989
|
+
telnyx/types/texml/accounts/calls/__init__.py,sha256=hADdyHV9beKUJAXeplzntAwB3AzouhR3Zy7rLBRTQhQ,1231
|
|
1990
|
+
telnyx/types/texml/accounts/calls/recording_recording_sid_json_params.py,sha256=xa45n_nW5QMLDrT0BfvqWVcRJ9U11C8ghbJZ060UEqY,501
|
|
1991
|
+
telnyx/types/texml/accounts/calls/recording_recording_sid_json_response.py,sha256=00NXJXOdaCDlp-v5YTSmrX4TIjAeeuf1tzmGKtiKMSk,1574
|
|
1992
|
+
telnyx/types/texml/accounts/calls/recordings_json_recordings_json_params.py,sha256=S2Zj5eXl49Qf_o56vkcQO0ucvRCZ3mbRkYyzzsflWKQ,1765
|
|
1993
|
+
telnyx/types/texml/accounts/calls/recordings_json_recordings_json_response.py,sha256=zOQd5eeFCjXVX3I1DSDI3E6DwohOXoV1l5yxsBKkmRQ,1580
|
|
1994
|
+
telnyx/types/texml/accounts/calls/recordings_json_retrieve_recordings_json_response.py,sha256=szOICmytRavNX7m-QqQKkez06HdgAgLEy4L-SbL-_pw,1186
|
|
1995
|
+
telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_params.py,sha256=IAsUZJgaqEXH3jvzsIZpbwy90SvAWl_4KCsyqHom5Jk,566
|
|
1996
|
+
telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_response.py,sha256=ME65hRFskaHigWdKe7kiCCC5v6EQuH7GkbGBrLjddUw,908
|
|
1997
|
+
telnyx/types/texml/accounts/calls/stream_streaming_sid_json_params.py,sha256=FfNQo4SK-2LEpiJTS_ZVWX5zmNZ5_lH7pPy6Ac9OsdY,525
|
|
1998
|
+
telnyx/types/texml/accounts/calls/stream_streaming_sid_json_response.py,sha256=XWAhiQHqIbt1tR2KESOImB2eYCBgtzyf6tiN1Z7nTac,677
|
|
1999
|
+
telnyx/types/texml/accounts/conferences/__init__.py,sha256=Bg0dRzgpbuEHe1SZVFyQ1rrJ131Ztghzr35Ab5calm0,781
|
|
2000
|
+
telnyx/types/texml/accounts/conferences/participant_participants_params.py,sha256=ArQxJckNc7coXyEns0Loo-y_6NLRDyCxtrwAhj2mTlc,10618
|
|
2001
|
+
telnyx/types/texml/accounts/conferences/participant_participants_response.py,sha256=RT67NwpP6mUMZcS2xnar8qqrtmPY3nOJgv-qF8F4IRY,1173
|
|
2002
|
+
telnyx/types/texml/accounts/conferences/participant_retrieve_participants_response.py,sha256=dCofb3Tsl1QGbUBGkLgVBnbg4qBbLK9fTuLK3eSOA-Y,2673
|
|
2003
|
+
telnyx/types/texml/accounts/conferences/participant_retrieve_response.py,sha256=GXZKPUAz4Qri8sYTQGnsLC61AsJ__gBsRwCdP02GH-k,1681
|
|
2004
|
+
telnyx/types/texml/accounts/conferences/participant_update_params.py,sha256=YQA990N9VLOJMDKWRClclUrnAkCl1cEOgSly1MkSDb4,2479
|
|
2005
|
+
telnyx/types/texml/accounts/conferences/participant_update_response.py,sha256=NNxsttT3VVUhqaazCgCyyhwMjfACmM1db7bz4AOzRJQ,1677
|
|
2006
|
+
telnyx/types/texml/accounts/recordings/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
2007
|
+
telnyx/types/texml/accounts/transcriptions/__init__.py,sha256=wJIYpmO_s3VtBxFWO0oUJg3SJ45JoaHKkjWfgkO4krk,304
|
|
2008
|
+
telnyx/types/texml/accounts/transcriptions/json_retrieve_recording_transcription_sid_json_response.py,sha256=kcWmaETp4bQlG40IwTRm6NzpuD_FPvPxtCCqd17kftQ,1260
|
|
2009
|
+
telnyx/types/verifications/__init__.py,sha256=b6TyhcfPImlHjJDQLgkXio1TXR9zFBzC-50Fpm8DU4o,296
|
|
2010
|
+
telnyx/types/verifications/action_verify_params.py,sha256=sD5uyHHRgz5wHmlIzujMibOWoaiXwfz7hSWDiYrrxhQ,527
|
|
2011
|
+
telnyx/types/verifications/by_phone_number_list_response.py,sha256=RwK17i8EuYGerA4uzR0jXwcZR-ehjO-_6DnauvPj6Ec,515
|
|
2012
|
+
telnyx/types/verifications/by_phone_number/__init__.py,sha256=199aK3I-4qIxJ83Pgd08dHl68M0DWmUOU8JfCDCrhxI,310
|
|
2013
|
+
telnyx/types/verifications/by_phone_number/action_verify_params.py,sha256=aoaX6B3kkW6-9v6MJPcalXWTckR7NmrhTty0TeJPQ2g,442
|
|
2014
|
+
telnyx/types/verifications/by_phone_number/verify_verification_code_response.py,sha256=bVtf0KjwYjZLNvWTnBcBmAfEdh0EYsCX0L4AVzjbXTg,496
|
|
2015
|
+
telnyx/types/verified_numbers/__init__.py,sha256=RhHTIchxprQULl-gCrUFdWfrCa3e17Z6cyzJxtk5RxQ,257
|
|
2016
|
+
telnyx/types/verified_numbers/action_submit_verification_code_params.py,sha256=Hnd_RwIyU261OAMC9Tpf0_yAnxzQwE2dGNwn6CS-TNk,328
|
|
2017
|
+
telnyx/types/wireless/__init__.py,sha256=lkEHnID1izlqCgDWHfVNyAeYJBhivh3CkjZMsY_2lmA,911
|
|
2018
|
+
telnyx/types/wireless/detail_records_report_create_params.py,sha256=Is_MrEKjfDb3PZcI3_3uAXIvSyPHNwfms0yOgQlVmyA,444
|
|
2019
|
+
telnyx/types/wireless/detail_records_report_create_response.py,sha256=GQDXWz-6iYTZKBphZhH1Tx8J5VS7_0Xw6iv8VYZellc,323
|
|
2020
|
+
telnyx/types/wireless/detail_records_report_delete_response.py,sha256=NIw2VVvtx1qM03LRKnwCePkZtBeBAYjN5kR2xCYHLx4,323
|
|
2021
|
+
telnyx/types/wireless/detail_records_report_list_params.py,sha256=cfjsh4L_8mpDkg1olXhRH3HquwenRG9KDImaZoEruKY,518
|
|
2022
|
+
telnyx/types/wireless/detail_records_report_list_response.py,sha256=S_6nD0fm5EseRIZHnML-UN0-g8Q_0J1cXfg_eLNUev8,331
|
|
2023
|
+
telnyx/types/wireless/detail_records_report_retrieve_response.py,sha256=f0C8z8uo_QeCyi3nSDME4f4F3vqcy7o0MpinwDIqe_s,327
|
|
2024
|
+
telnyx/types/wireless/wdr_report.py,sha256=bxRr-dc_IW6D0E3i_PUHK-bbu9w114Qql1uoJ_znxEE,1068
|
|
2025
|
+
telnyx-3.0.0.dist-info/METADATA,sha256=nl2B-HgUiK7rkqU-RFD9lg7e5LKLVr_RcPUCx4wz1ZU,15530
|
|
2026
|
+
telnyx-3.0.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
2027
|
+
telnyx-3.0.0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
|
|
2028
|
+
telnyx-3.0.0.dist-info/RECORD,,
|