telnyx 3.0.0a0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of telnyx might be problematic. Click here for more details.
- telnyx/__init__.py +90 -0
- telnyx/_base_client.py +1995 -0
- telnyx/_client.py +3163 -0
- telnyx/_compat.py +219 -0
- telnyx/_constants.py +14 -0
- telnyx/_exceptions.py +108 -0
- telnyx/_files.py +123 -0
- telnyx/_models.py +829 -0
- telnyx/_qs.py +150 -0
- telnyx/_resource.py +43 -0
- telnyx/_response.py +830 -0
- telnyx/_streaming.py +333 -0
- telnyx/_types.py +219 -0
- telnyx/_utils/__init__.py +57 -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 +447 -0
- telnyx/_utils/_typing.py +151 -0
- telnyx/_utils/_utils.py +422 -0
- telnyx/_version.py +4 -0
- telnyx/lib/.keep +4 -0
- telnyx/py.typed +0 -0
- telnyx/resources/__init__.py +2049 -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 +232 -0
- telnyx/resources/actions/register.py +208 -0
- telnyx/resources/addresses/__init__.py +33 -0
- telnyx/resources/addresses/actions.py +314 -0
- telnyx/resources/addresses/addresses.py +660 -0
- telnyx/resources/advanced_orders.py +329 -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 +597 -0
- telnyx/resources/ai/conversations/__init__.py +61 -0
- telnyx/resources/ai/conversations/conversations.py +813 -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 +298 -0
- telnyx/resources/ai/embeddings/__init__.py +33 -0
- telnyx/resources/ai/embeddings/buckets.py +298 -0
- telnyx/resources/ai/embeddings/embeddings.py +710 -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 +812 -0
- telnyx/resources/call_events.py +213 -0
- telnyx/resources/calls/__init__.py +33 -0
- telnyx/resources/calls/actions.py +7061 -0
- telnyx/resources/calls/calls.py +872 -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 +2029 -0
- telnyx/resources/conferences/conferences.py +670 -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 +488 -0
- telnyx/resources/detail_records.py +207 -0
- telnyx/resources/dialogflow_connections.py +514 -0
- telnyx/resources/document_links.py +197 -0
- telnyx/resources/documents.py +804 -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 +671 -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/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 +389 -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 +278 -0
- telnyx/resources/messaging_optouts.py +217 -0
- telnyx/resources/messaging_profiles/__init__.py +33 -0
- telnyx/resources/messaging_profiles/autoresp_configs.py +599 -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 +169 -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 +385 -0
- telnyx/resources/phone_numbers/csv_downloads.py +375 -0
- telnyx/resources/phone_numbers/jobs.py +686 -0
- telnyx/resources/phone_numbers/messaging.py +379 -0
- telnyx/resources/phone_numbers/phone_numbers.py +854 -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 +173 -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 +1438 -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 +622 -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 +170 -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 +505 -0
- telnyx/resources/requirement_groups.py +625 -0
- telnyx/resources/requirement_types.py +279 -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 +934 -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 +808 -0
- telnyx/resources/text_to_speech.py +327 -0
- telnyx/resources/usage_reports.py +389 -0
- telnyx/resources/user_addresses.py +541 -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 +570 -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 +627 -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/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 +590 -0
- telnyx/types/__init__.py +1223 -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 +36 -0
- telnyx/types/actions/purchase_create_response.py +35 -0
- telnyx/types/actions/register_create_params.py +25 -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 +24 -0
- telnyx/types/ai/__init__.py +87 -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 +184 -0
- telnyx/types/ai/cluster_compute_params.py +37 -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_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 +22 -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_create_params.py +29 -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 +13 -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 +20 -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 +99 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +99 -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/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 +42 -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 +42 -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 +28 -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_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 +73 -0
- telnyx/types/call_control_application_update_response.py +12 -0
- telnyx/types/call_dial_params.py +435 -0
- telnyx/types/call_dial_response.py +56 -0
- telnyx/types/call_event_list_params.py +123 -0
- telnyx/types/call_event_list_response.py +43 -0
- telnyx/types/call_retrieve_status_response.py +50 -0
- telnyx/types/calls/__init__.py +95 -0
- telnyx/types/calls/action_answer_params.py +149 -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 +138 -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 +59 -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 +199 -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 +64 -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 +145 -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_submit_appeal_params.py +15 -0
- telnyx/types/campaign_submit_appeal_response.py +16 -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_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_retrieve_response.py +12 -0
- telnyx/types/conferences/__init__.py +33 -0
- telnyx/types/conferences/action_hold_params.py +30 -0
- telnyx/types/conferences/action_hold_response.py +12 -0
- telnyx/types/conferences/action_join_params.py +100 -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 +16 -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 +110 -0
- telnyx/types/conferences/action_speak_response.py +12 -0
- telnyx/types/conferences/action_stop_params.py +16 -0
- telnyx/types/conferences/action_stop_response.py +12 -0
- telnyx/types/conferences/action_unhold_params.py +16 -0
- telnyx/types/conferences/action_unhold_response.py +12 -0
- telnyx/types/conferences/action_unmute_params.py +17 -0
- telnyx/types/conferences/action_unmute_response.py +12 -0
- telnyx/types/conferences/action_update_params.py +37 -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 +122 -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 +118 -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 +60 -0
- telnyx/types/credential_outbound.py +66 -0
- telnyx/types/credential_outbound_param.py +64 -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 +98 -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_verify_phone_number_coverage_params.py +13 -0
- telnyx/types/customer_service_record_verify_phone_number_coverage_response.py +50 -0
- telnyx/types/detail_record_list_params.py +83 -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_link_list_params.py +37 -0
- telnyx/types/document_link_list_response.py +37 -0
- telnyx/types/document_list_params.py +75 -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/error.py +27 -0
- telnyx/types/external_connection.py +75 -0
- telnyx/types/external_connection_create_params.py +57 -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 +54 -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 +21 -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 +26 -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 +83 -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 +89 -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_list_params.py +84 -0
- telnyx/types/fax_list_response.py +14 -0
- telnyx/types/fax_retrieve_response.py +12 -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 +110 -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 +104 -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 +111 -0
- telnyx/types/inbound_ip.py +111 -0
- telnyx/types/inbound_ip_param.py +111 -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 +182 -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 +101 -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/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 +21 -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 +77 -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 +56 -0
- telnyx/types/message_send_number_pool_response.py +12 -0
- telnyx/types/message_send_params.py +77 -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 +16 -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 +13 -0
- telnyx/types/messaging_hosted_number_order_check_eligibility_response.py +42 -0
- telnyx/types/messaging_hosted_number_order_create_params.py +19 -0
- telnyx/types/messaging_hosted_number_order_create_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_create_verification_codes_params.py +14 -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 +22 -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 +82 -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 +87 -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 +18 -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 +20 -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_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 +12 -0
- telnyx/types/numbers_feature_create_response.py +17 -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 +28 -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 +71 -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 +71 -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 +113 -0
- telnyx/types/phone_number_detailed.py +139 -0
- telnyx/types/phone_number_list_params.py +130 -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 +148 -0
- telnyx/types/phone_number_slim_list_response.py +125 -0
- telnyx/types/phone_number_update_params.py +33 -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 +13 -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 +12 -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 +130 -0
- telnyx/types/phone_numbers/job_update_batch_response.py +12 -0
- telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py +22 -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 +13 -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 +44 -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 +98 -0
- telnyx/types/porting_order_activation_settings.py +39 -0
- telnyx/types/porting_order_create_params.py +16 -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 +116 -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 +24 -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 +74 -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 +56 -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 +105 -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 +70 -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 +14 -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 +86 -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 +39 -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 +13 -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/report_list_mdrs_params.py +36 -0
- telnyx/types/report_list_mdrs_response.py +74 -0
- telnyx/types/report_list_wdrs_params.py +60 -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 +21 -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 +19 -0
- telnyx/types/rooms/sessions/action_kick_response.py +15 -0
- telnyx/types/rooms/sessions/action_mute_params.py +19 -0
- telnyx/types/rooms/sessions/action_mute_response.py +15 -0
- telnyx/types/rooms/sessions/action_unmute_params.py +19 -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 +85 -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 +177 -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 +65 -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 +36 -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 +12 -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 +12 -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_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/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/transport_protocol.py +7 -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 +70 -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 +22 -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 +114 -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 +114 -0
- telnyx/types/vertical.py +25 -0
- telnyx/types/video_region.py +53 -0
- telnyx/types/video_region_param.py +54 -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/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 +19 -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 +19 -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.0a0.dist-info/METADATA +431 -0
- telnyx-3.0.0a0.dist-info/RECORD +1874 -0
- telnyx-3.0.0a0.dist-info/WHEEL +4 -0
- telnyx-3.0.0a0.dist-info/licenses/LICENSE +7 -0
|
@@ -0,0 +1,1874 @@
|
|
|
1
|
+
telnyx/__init__.py,sha256=9AJxcXeplxj1nS-mSEVft0YfJIBsXvs5e3M1wMhhUW4,2578
|
|
2
|
+
telnyx/_base_client.py,sha256=cRTxhagl38BtlgKR5Pv5O_O59pz2fBDLPhksecaM8Rw,67035
|
|
3
|
+
telnyx/_client.py,sha256=VSoM2uDZZOQOx8DpKfOf55CEGX5O9u4oBLEfWlzWnpA,170660
|
|
4
|
+
telnyx/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
|
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=KvjsMfb88XZlFUKVoOxr8OyDj47MhoH2OKqWNEbBhk4,30010
|
|
9
|
+
telnyx/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
|
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=c0fPUnqjxrdVYFjtxNbWwRnbHiW4iCbbfw_xnr-BVZw,6197
|
|
14
|
+
telnyx/_version.py,sha256=jA4-9hrRbF0gMIiSupRh-rsArThXNzc0xRKTAYowYS0,164
|
|
15
|
+
telnyx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
telnyx/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
|
17
|
+
telnyx/_utils/_logs.py,sha256=0TK41m0v92Gj1abmzI7B2Ogm7Mcu_J9hiz8mkrF5cIQ,774
|
|
18
|
+
telnyx/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
19
|
+
telnyx/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
20
|
+
telnyx/_utils/_resources_proxy.py,sha256=4CCGhESs3yjs_0is3o1rPOg0T_k20lTYZpIFGAUZQCw,589
|
|
21
|
+
telnyx/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
22
|
+
telnyx/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
23
|
+
telnyx/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
|
|
24
|
+
telnyx/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
|
|
25
|
+
telnyx/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
|
26
|
+
telnyx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
27
|
+
telnyx/resources/__init__.py,sha256=6wpwERN8FQSG-U4MLJvHYwOjwfYX2oqrIRXw6bXtRts,83477
|
|
28
|
+
telnyx/resources/access_ip_address.py,sha256=UxbBNXpA4YRIQSTopGhdHS2-b0I8jBeGN1Z3bT_2lwM,17561
|
|
29
|
+
telnyx/resources/access_ip_ranges.py,sha256=GYF-BpmJYfkpMTnjBHVWGu04IPsXaJRXDqHN_ARP6bk,14252
|
|
30
|
+
telnyx/resources/advanced_orders.py,sha256=QqZ5rP25INJGslSyCUyqluRYPJjSFxPtT9wJxqHOkLQ,12773
|
|
31
|
+
telnyx/resources/audit_events.py,sha256=XjsrDGMJtTW_vwjcxgL08t_daqxMWlKCDzQDYO8LSqw,7853
|
|
32
|
+
telnyx/resources/authentication_providers.py,sha256=SaQCA-qVza9HiEIAFUhVUMy-lJ0nTCgMH9nHtczkWdw,26915
|
|
33
|
+
telnyx/resources/available_phone_number_blocks.py,sha256=QBVHHqLbBoSC5OhS5nqhdnnw3cIKfeLN0hVPBHCjHEY,7605
|
|
34
|
+
telnyx/resources/available_phone_numbers.py,sha256=CSTkzlfCKO0LmOyS4UmJ7ast3sTfE88QCRknmYA92T4,7788
|
|
35
|
+
telnyx/resources/balance.py,sha256=RsXi_0f0vtMgrbayK_JrPOIXF5StP1SeQ6gI5KT25qI,4969
|
|
36
|
+
telnyx/resources/billing_groups.py,sha256=9ZLPpXcMwTYIkK4q6tD6KbrXWGCmjX-Cpc7VmY1hutk,19318
|
|
37
|
+
telnyx/resources/bulk_sim_card_actions.py,sha256=w01AGA8P2iIz-qvV4tLVbc9VH9CKuL8PR8l0Xuuq3fs,11349
|
|
38
|
+
telnyx/resources/call_control_applications.py,sha256=_iqVZlm9hbA-1vvn5XMSaqmCLBKBqtkJdGNxF2dzVFI,37380
|
|
39
|
+
telnyx/resources/call_events.py,sha256=W7XXgHLcy22FTDcLaQ2LIwjyR1OFYH7B_yLrb7cf-L0,8353
|
|
40
|
+
telnyx/resources/channel_zones.py,sha256=1ccezmYIY0rTRegtp0HT_jQXqR2wfRMGqsTlNikT4sE,11298
|
|
41
|
+
telnyx/resources/charges_breakdown.py,sha256=ij5ADHnMNmqNfagQ6gXwZlWyR-YmSnR6cR1Rk4Psg4M,8438
|
|
42
|
+
telnyx/resources/charges_summary.py,sha256=ayMR67RbZLdc3rvz6OE0AO-0OKM5TAkB86m4RzW5MCw,7782
|
|
43
|
+
telnyx/resources/comments.py,sha256=mETOXdOrze53AAeIuGH_-cp_ANZyQV_5x9RM9hDmW6s,16225
|
|
44
|
+
telnyx/resources/connections.py,sha256=npR2o7tyrGSrR_R2iQzJGMHR34yCpL-tN21c2pjSlfU,17100
|
|
45
|
+
telnyx/resources/country_coverage.py,sha256=jPjIJ3AD5hAyruaGa7fPX06_m08PDIdt_icv_r9zpW8,8688
|
|
46
|
+
telnyx/resources/custom_storage_credentials.py,sha256=IgAFJji1TB1oQrhWgJsylxGPA0D1ypIvDpVb4RG_Tos,18535
|
|
47
|
+
telnyx/resources/customer_service_records.py,sha256=d4I83zLME3c8Afzw56h22nYLASXdCpzQm1AA6xueBC8,20403
|
|
48
|
+
telnyx/resources/detail_records.py,sha256=udmlGeGoP2G70NwH0GsP62cp8RJwRzg6Suvs8begKkY,7857
|
|
49
|
+
telnyx/resources/dialogflow_connections.py,sha256=NqrxiR17ICouCrNz8ahbenUr7co_-WxJxXnFQmPuJOg,21618
|
|
50
|
+
telnyx/resources/document_links.py,sha256=5X5y-a5t7-exjlwT0y7VIKwSDuIacgrDECiTK2jLVco,7470
|
|
51
|
+
telnyx/resources/documents.py,sha256=M9vCcJ0QFgxrhQM9l-DPyQ3QWegbglcytqdJWW75fbo,31424
|
|
52
|
+
telnyx/resources/dynamic_emergency_addresses.py,sha256=N-RKemA-sdfDGS3abSVr7vRWcG02tZOlC9-cKhg5aSY,20075
|
|
53
|
+
telnyx/resources/dynamic_emergency_endpoints.py,sha256=GJwFVKp06pV4bVbEHTmpDOPJ_w9L6DntTQdrUvu5br0,18716
|
|
54
|
+
telnyx/resources/enum.py,sha256=xGHamZ9ftAUwGxmVveOms-5C2jHFRdChDpN23M2vxnw,7191
|
|
55
|
+
telnyx/resources/fax_applications.py,sha256=vqrHdVghge9SqjMpx-z59acJcceetnaJgwTVOy7ajlc,31963
|
|
56
|
+
telnyx/resources/fqdn_connections.py,sha256=jwcaI2OfhLlcymEzCtjGYDc7nqDLM-9CS5qs945aZ5E,42275
|
|
57
|
+
telnyx/resources/fqdns.py,sha256=2cW9rVa1OX9RcZi565QfksuxAtREbZqkIqTX2Lm-TUw,22647
|
|
58
|
+
telnyx/resources/global_ip_allowed_ports.py,sha256=B_tGaaxH2jpLaHmx8pz_c-oRX-v3ANyhxldW5rbH00M,5544
|
|
59
|
+
telnyx/resources/global_ip_assignment_health.py,sha256=GIXiPrgQLqOxZA3UDGlkZ3D1pUkFHO-BNwBagpIYyXI,7586
|
|
60
|
+
telnyx/resources/global_ip_assignments.py,sha256=SEm64Ks75ytPtKO4P1gRmcNohiOuw3jSpW064C-gObc,20981
|
|
61
|
+
telnyx/resources/global_ip_assignments_usage.py,sha256=tImrz0RXmH0GPAspdx7jZCgNqQtqgr-6nXhAqzgh5eI,7572
|
|
62
|
+
telnyx/resources/global_ip_health_check_types.py,sha256=gdkPZacQe1b6AOZr4r8G8L00SmVN_NgsmpTscBIucqs,5751
|
|
63
|
+
telnyx/resources/global_ip_health_checks.py,sha256=H_IU9yTXUCGMQw5NQZauh6KhsaIIP78yx7twNucKMOY,17719
|
|
64
|
+
telnyx/resources/global_ip_latency.py,sha256=WZi5tlZ8VFHpSMHFITZ7hWN_TYRUUorhJWfbvwMAVrs,6955
|
|
65
|
+
telnyx/resources/global_ip_protocols.py,sha256=SHKFUTjBOOgA4-M0kvK5bDpikus9d1C17wLfCssa7iU,5385
|
|
66
|
+
telnyx/resources/global_ip_usage.py,sha256=h_GJ4JPlVKA2hF0e3qooToxuk61WWx0dl6voog-NESQ,6811
|
|
67
|
+
telnyx/resources/global_ips.py,sha256=7MR5LXjUZE1fEcfNcKjOcB_jkdGjxw9u0F2qRG25LIk,16343
|
|
68
|
+
telnyx/resources/inbound_channels.py,sha256=cZDVrczinB_l9nFbTseMTe26dLGWwxY5I2SjbUp_COE,9817
|
|
69
|
+
telnyx/resources/integration_secrets.py,sha256=sR4-F_SDlQGTFs9pN3pgblRgW2M_bp3F4w58UcaICZA,15693
|
|
70
|
+
telnyx/resources/inventory_coverage.py,sha256=vQiGffNM2sKV6KTFGObBYSihxnHYmq1jLsks1g4fsjQ,7511
|
|
71
|
+
telnyx/resources/invoices.py,sha256=w0rY5zFLTgpLGMUP6ayZJEBL-NcpinW7ggxWlM_RjDo,10529
|
|
72
|
+
telnyx/resources/ip_connections.py,sha256=ML1Yd0uYTYMnv1--rWTLcmYQZqS3wfF3WRtW8MnWA6w,41010
|
|
73
|
+
telnyx/resources/ips.py,sha256=J46seDGup3fljpH-eTtTlcBRGH72Wux-0i97_yJlX4A,20752
|
|
74
|
+
telnyx/resources/ledger_billing_group_reports.py,sha256=YTcMvoRiPo5SOqZeM52dpKNzEBvgV_FlWXEbQ7xN6iA,10699
|
|
75
|
+
telnyx/resources/list.py,sha256=aBgqQgUfYkwkq6uCPRyqDoRGxZz0aac0JmJc5mdSfXs,8302
|
|
76
|
+
telnyx/resources/media.py,sha256=vZ5JRLLAEYzDgztiDUGn1qsfzn0u1j3BA5n4ErbmUsI,26572
|
|
77
|
+
telnyx/resources/messaging_hosted_numbers.py,sha256=G3JQxL3bObpJY0D5Mk4ErMHsZWqt_1vgBS7XOXkGBYc,6529
|
|
78
|
+
telnyx/resources/messaging_numbers_bulk_updates.py,sha256=c1OI1XzUAeWrGiB-LrnN9m0l7dRJU3QfNrTlfRNFtjQ,11586
|
|
79
|
+
telnyx/resources/messaging_optouts.py,sha256=h2F6cSTfhncZUm-kaS6qegkPBvaaxmGpb0sHa6SCTpU,8527
|
|
80
|
+
telnyx/resources/messaging_url_domains.py,sha256=uL70rNSt-1JUDOSV66xk1WkTFFGsXnTaSjPmJpe5p6Q,6966
|
|
81
|
+
telnyx/resources/messsages.py,sha256=DGQVyIzi45lOJA562gyvxAOVJZQ0Vcj0UaZZYGmb6EE,8143
|
|
82
|
+
telnyx/resources/mobile_network_operators.py,sha256=R969lNOGnafZ4HVMiDQMS2IlehkskAbqHpuu5tVpuVA,8981
|
|
83
|
+
telnyx/resources/mobile_push_credentials.py,sha256=5pZE1TeZaFbSzIKaqhsOLSHQbvaYq0uZzyNns33Gehg,23164
|
|
84
|
+
telnyx/resources/network_coverage.py,sha256=aN1M40XxVTJ__S3DmBQV5YiY6iNsSE0XgjUg2qKRKhQ,8197
|
|
85
|
+
telnyx/resources/notification_channels.py,sha256=xes5yEgmeMjiJNSpjzFYXEVm823vxtocKFNGljkCojw,23691
|
|
86
|
+
telnyx/resources/notification_event_conditions.py,sha256=JxL_99pZZTwJmW3AyPNOfrpyxLiUi72pr6HvXoeRr-4,8540
|
|
87
|
+
telnyx/resources/notification_events.py,sha256=axMqyPBvLlWb0q42TXZ6mIQYMFZrI4fwHrJIGe73hUs,6927
|
|
88
|
+
telnyx/resources/notification_profiles.py,sha256=dcLXfJZ5eGY7uGz2umnrlpnk1EbyTMBbmHCGQksuuO8,20282
|
|
89
|
+
telnyx/resources/notification_settings.py,sha256=xe2Qp10lSn4tQV4KxbAYMj5u4BG0Whtoqfy4wYYn1gU,19371
|
|
90
|
+
telnyx/resources/number_block_orders.py,sha256=JgduOe4PhOoHiB1ZMq2PzZbHwYTlLLv4Fzn9t-fegng,16026
|
|
91
|
+
telnyx/resources/number_lookup.py,sha256=ld4h-RRcfNUAJxZN3zMcwYVLSKtAnEt5KBi_FGU0c3s,7047
|
|
92
|
+
telnyx/resources/number_order_phone_numbers.py,sha256=HiAObw_arHUyGAZ5mKXGvEiiKstRl-7vAIS5OJgvMM0,19854
|
|
93
|
+
telnyx/resources/number_orders.py,sha256=_6bqu-oSIYBucTqwM6EUJ9GC-7Mqi118wH1MAHbOnT8,20084
|
|
94
|
+
telnyx/resources/numbers_features.py,sha256=1V42uV6AIwVQ3RR_1bxE15oV369cfQuVciGmleccnOU,6485
|
|
95
|
+
telnyx/resources/ota_updates.py,sha256=J08HEAAe6Zf1h1KVSHw0U17-Mlbi2sypbNXSzCtPS_E,10322
|
|
96
|
+
telnyx/resources/outbound_voice_profiles.py,sha256=OrBpdIYK2o9onJzhwklkOe42ormrWvnDCg00PB_MypY,35033
|
|
97
|
+
telnyx/resources/partner_campaigns.py,sha256=th0hhnZzOoWAKvtvFep972XVzkHT8cq9e0gxzI9BNMA,25153
|
|
98
|
+
telnyx/resources/phone_number_assignment_by_profile.py,sha256=aQaum53U3LEJHFdhzuc2Nr5DVBIVY3WXGb4ZzUjd8Kk,19205
|
|
99
|
+
telnyx/resources/phone_number_campaigns.py,sha256=LQBXiyjKauphx3meYLrRHhvZY5LyuRpFhLefWJoSKMs,23023
|
|
100
|
+
telnyx/resources/phone_numbers_regulatory_requirements.py,sha256=FYKzv74d4tikcj9XbYCJBUZUAwKhV1yadTUb3Cdt8kE,8048
|
|
101
|
+
telnyx/resources/portability_checks.py,sha256=jD1U54KUDyCd62deQTgDs8CP7rkT_ues1vUYsOykCng,6788
|
|
102
|
+
telnyx/resources/porting_phone_numbers.py,sha256=ZUnUYzBVc2cVcUPomdF3uiTnbkgLFyXMXyXR0T7fOMY,7698
|
|
103
|
+
telnyx/resources/private_wireless_gateways.py,sha256=C1L2WDuKu4cKVN54sDJkYLzcRz3vS6mIcZ67TR8oBD4,20732
|
|
104
|
+
telnyx/resources/public_internet_gateways.py,sha256=UtOmyXyOcIcErpIjmq8n2883LiuTdIqgkx25f-Y4TcU,18382
|
|
105
|
+
telnyx/resources/recording_transcriptions.py,sha256=nkZai3brihS9cFKascff6coaPbkj-bohPzjTUIY2LwY,12724
|
|
106
|
+
telnyx/resources/regions.py,sha256=SPActTpsuoigyW_JLDBCA7xJ5hRARJPVeXuQlQfe4i8,4963
|
|
107
|
+
telnyx/resources/regulatory_requirements.py,sha256=c_9BpFHn1g8011rz2-iOhXSh6dx3PXK8BXoR9k3hxjk,7499
|
|
108
|
+
telnyx/resources/requirement_groups.py,sha256=mtq4-qyZ-Jy2F9Qu_LsQiSdmr4pE9cdv8Cg2EM5naCE,24792
|
|
109
|
+
telnyx/resources/requirement_types.py,sha256=hEd7L-2-bQL7V1VZRbUrp7EPzaFNqk775RdqGtkbReQ,10837
|
|
110
|
+
telnyx/resources/requirements.py,sha256=yuQ7BuKQVysRaCylnG1HKYDHNtLO7J4qfldKoJvjaCQ,11596
|
|
111
|
+
telnyx/resources/room_compositions.py,sha256=zPGo50dDAt3QR1aqhrDicthPYY0Brp3BBYZkb-HR-WM,21204
|
|
112
|
+
telnyx/resources/room_participants.py,sha256=Vzg9m82_hZfacKk6w9S9rXfzdpAckF5SHUeaW-upM3k,11452
|
|
113
|
+
telnyx/resources/room_recordings.py,sha256=ROyLlaQzbXSQthYEnU1Pwcs9sta1v9oY9UPYIEYRuIw,19451
|
|
114
|
+
telnyx/resources/seti.py,sha256=SYZlbrehshDIW3XK6WsjSpZ3GkSihPhvaNYo7TT7Olg,6911
|
|
115
|
+
telnyx/resources/short_codes.py,sha256=-Mkh4bVg7MeX-6fRuVoP3gMWfLVvdkXzFUg8EjlLFFk,13993
|
|
116
|
+
telnyx/resources/sim_card_data_usage_notifications.py,sha256=jPebaWpQYTLe5uY9xpfs2yUVH-a5Dswv23KWor5oHeo,23723
|
|
117
|
+
telnyx/resources/sim_card_order_preview.py,sha256=0KFAkq6RWAlhK97O7XAuvVJv-lOzZHchbPx_NMw9Sj8,7302
|
|
118
|
+
telnyx/resources/sim_card_orders.py,sha256=BjRSVyuMToE2nBkNcEmtv3r30-cgqqfvYI4EEg6JTDs,14846
|
|
119
|
+
telnyx/resources/siprec_connectors.py,sha256=UD8632Gv4Je0THpG3-GpGlG7fWj9dOYE5DcJt4VVSTQ,18597
|
|
120
|
+
telnyx/resources/sub_number_orders.py,sha256=lFjswZTFrXTMGFUQ_0bJlFB4ccmaUzlCTZri7S_EH5g,22881
|
|
121
|
+
telnyx/resources/sub_number_orders_report.py,sha256=78uwNUYNfE6PPh04hGc_yY1JUbZftuKWKlifwMqQfiU,15822
|
|
122
|
+
telnyx/resources/telephony_credentials.py,sha256=ULXlYBnYjaRn3z8NyL7yZQ-rHif_SeUjuUnF_oLHY7U,26494
|
|
123
|
+
telnyx/resources/texml_applications.py,sha256=I4KzIk6w_asYUgDENkcX7nomoKRtNG8hkFur9gaQkIc,34924
|
|
124
|
+
telnyx/resources/text_to_speech.py,sha256=CyZSXCOfj73_7V8dp9UtRi9hBPUwMwzH_UtKv36Z4Qc,12500
|
|
125
|
+
telnyx/resources/usage_reports.py,sha256=Kp4n0gJsB6AOr6JCWPaijviLECc4CG0p6-4BwwpaWQc,15652
|
|
126
|
+
telnyx/resources/user_addresses.py,sha256=T0GGugLK4b8pOe3WSny442LQSS031TQh45e3tnUDpi8,22940
|
|
127
|
+
telnyx/resources/user_tags.py,sha256=Bssfkr8jlawO8PmRsjb3tw2Fs1ellkrK4OCoor0TWvg,6371
|
|
128
|
+
telnyx/resources/verify_profiles.py,sha256=5D-RE6le_Mn7kXGoQLkWv5LA6vrQHgwXdHaw4TgzBnA,25301
|
|
129
|
+
telnyx/resources/virtual_cross_connects.py,sha256=ZHflYuZRJ5sob_SOAvgvLb83Vg4eD2PFFgX-SYevfBw,35009
|
|
130
|
+
telnyx/resources/virtual_cross_connects_coverage.py,sha256=TPYIaRXgZBcE9igZEQdQne0E_mrfx9xcQ--RiEhk2Jg,9362
|
|
131
|
+
telnyx/resources/webhook_deliveries.py,sha256=qL67EOAzFl3XuqhwlAiCfKzq5mUuRzKjAwngQlCT79k,11198
|
|
132
|
+
telnyx/resources/wireguard_interfaces.py,sha256=dN8ntL6q2phY8LVdNkyCqCfeghUQIQhkQNUvL7Jm2NI,18474
|
|
133
|
+
telnyx/resources/wireguard_peers.py,sha256=RPnaxUha-94n5-neiPebRRiSPn45YeCPcdj-dy_d2NY,24675
|
|
134
|
+
telnyx/resources/wireless_blocklist_values.py,sha256=B675l745Y2kBTr9ToH3HI_6DjZILQqCqDTZ8n6jJD1k,7287
|
|
135
|
+
telnyx/resources/wireless_blocklists.py,sha256=cnEpTObEK2ay8kMRUHVy0Yjd5j3fHy4rEky_rhd_EAM,22854
|
|
136
|
+
telnyx/resources/actions/__init__.py,sha256=VN20oGg2PPDqNzueSMHE9Naa3YRB2FmdkXAAN_4bFIg,1517
|
|
137
|
+
telnyx/resources/actions/actions.py,sha256=vwopKPMSsjSTDKeSP0xEjAvI8pinCNbmKcUPKOBRqOQ,4828
|
|
138
|
+
telnyx/resources/actions/purchase.py,sha256=K64r6OCGO1ji_A3n0ytzDtcG5nsCawzeHcMd9twvVUI,9281
|
|
139
|
+
telnyx/resources/actions/register.py,sha256=itJQkLLTClOkYflw0D6LBOIMzLIcg288jXMpMrt3iDs,8181
|
|
140
|
+
telnyx/resources/addresses/__init__.py,sha256=WzZO1-fZmX_-MJHYGQWkSL0Y-UdfQAOL2AHNC5a5Vdc,1054
|
|
141
|
+
telnyx/resources/addresses/actions.py,sha256=iwtO7-7gDoAW_YOcQAzrAHr_wTINDlutT_PGp_X9vWI,12550
|
|
142
|
+
telnyx/resources/addresses/addresses.py,sha256=Ne_3CpvXYGnE5yiUb2ygrt4tw-X3oO617J4PpEXnpAY,26620
|
|
143
|
+
telnyx/resources/ai/__init__.py,sha256=vRse5K6qkv7nfwqZETr-is6oSj88tp2hrbx1X6Xx7PM,3885
|
|
144
|
+
telnyx/resources/ai/ai.py,sha256=SeJNu81e9fCt8m_JLn8cVmE_FFr41bKKRep4_nycqEE,18015
|
|
145
|
+
telnyx/resources/ai/audio.py,sha256=CZK6oP6BUsPqMUMKGMhBlSOIJxaCfAo_iEhtcYWcg5E,10545
|
|
146
|
+
telnyx/resources/ai/chat.py,sha256=mop2xpLe7-99v85sDFqhvEfW-vjstZaINo3fb8bzJhw,18768
|
|
147
|
+
telnyx/resources/ai/clusters.py,sha256=ug98ErAjPNMDbsIrzGgGigmCazJ1P-MF1Vi1s0z8-wQ,23265
|
|
148
|
+
telnyx/resources/ai/assistants/__init__.py,sha256=JswsU3VzDvDn-4-0IVH0BGY9ji3RY_pYl-Aib09q0ks,3064
|
|
149
|
+
telnyx/resources/ai/assistants/assistants.py,sha256=kiYHTSmnmrqt_AvtR2rVJidZ9vyeYfcvzh_z921-XWo,56727
|
|
150
|
+
telnyx/resources/ai/assistants/canary_deploys.py,sha256=CXCjSwUseXKEQEY4fMAjhwKBt81to0wcgJSV_h3xbSM,18193
|
|
151
|
+
telnyx/resources/ai/assistants/scheduled_events.py,sha256=bAVlAY2TPSjoRPFxbFqpwdjlxF9ZecBef3vLZ3t-DC0,22355
|
|
152
|
+
telnyx/resources/ai/assistants/tools.py,sha256=AVk8y2ZEC3NlVzKA0A3Rzf6P046ozRoyx3nA_-FGp4o,7391
|
|
153
|
+
telnyx/resources/ai/assistants/versions.py,sha256=__8LFs47t05ZvTEBoV-3Dw6VwUczAVz4FAcP_df0zyw,29342
|
|
154
|
+
telnyx/resources/ai/assistants/tests/__init__.py,sha256=wOXvaXKdQlfkKkZtgZg11ySS8bzss5842gqBhGKmpVI,1466
|
|
155
|
+
telnyx/resources/ai/assistants/tests/runs.py,sha256=ZQp5ao3q5eNcK0qg86ClcPaHRUCS4MRisjHlKghT7Fg,14663
|
|
156
|
+
telnyx/resources/ai/assistants/tests/tests.py,sha256=_7quk3H-jmLfzmMf10MRz-TF74sk_7vuVRpTbEkQY1U,29990
|
|
157
|
+
telnyx/resources/ai/assistants/tests/test_suites/__init__.py,sha256=wTdI7qo8_d2SnlfmHLKyHgFyh7-OfkBfgVXt2FpT57Q,1029
|
|
158
|
+
telnyx/resources/ai/assistants/tests/test_suites/runs.py,sha256=ksGhMzs5uny73ulKk85Z4rIvl5eSzE7O_7dopfUzZ1w,11922
|
|
159
|
+
telnyx/resources/ai/assistants/tests/test_suites/test_suites.py,sha256=qZQujQnldjY4WIYKEZyN9hP4MZ1u0qH6R5BCm81n50c,6341
|
|
160
|
+
telnyx/resources/ai/conversations/__init__.py,sha256=E0T0_VEZjLTBGAbDf9LZGPaAZCns8GrSTW6oXkPA_d4,2137
|
|
161
|
+
telnyx/resources/ai/conversations/conversations.py,sha256=xQES28pqtwGgELkldj9J0KqMLM2azb4ayE7KunkR94w,33780
|
|
162
|
+
telnyx/resources/ai/conversations/insights.py,sha256=OUaq8Yb32wQ0eLaFimdncqDMOVROAWsSle_6Wfe5Rco,20610
|
|
163
|
+
telnyx/resources/ai/conversations/messages.py,sha256=6oJ2g_atC8P29ozTd_z9JsvOPrh4zNDbeoKhZep9aQY,11583
|
|
164
|
+
telnyx/resources/ai/conversations/insight_groups/__init__.py,sha256=BECCfROCjeQXyebDMpckN8GnyXA8uwQfzBiZXMVgqjA,1120
|
|
165
|
+
telnyx/resources/ai/conversations/insight_groups/insight_groups.py,sha256=UV6w7ZvCTHmTWQ2lIZVLUBRGvvAL2etWyZFi9H4cMx8,22399
|
|
166
|
+
telnyx/resources/ai/conversations/insight_groups/insights.py,sha256=y-eCysfUYBUtQCUmcacPWKfdnJ94Us4cSxQx3J2npBw,10032
|
|
167
|
+
telnyx/resources/ai/embeddings/__init__.py,sha256=PSS3P26wVVgM4MjdKqw87xocgC3_jV1ohpUVQ2xeixM,1067
|
|
168
|
+
telnyx/resources/ai/embeddings/buckets.py,sha256=1LQLWi_zsMDSg2ip-s3vsf5XIrESLmGCOV80i9GaoWI,11519
|
|
169
|
+
telnyx/resources/ai/embeddings/embeddings.py,sha256=uEACrRCPMRrcWu9vyRmcCFF7WOzxk6H2qjDLT7-OEKI,29297
|
|
170
|
+
telnyx/resources/ai/fine_tuning/__init__.py,sha256=kpo9Jeem0KeFxdH3eUY238GNNk_4jqUsUDUi02rTbC4,1029
|
|
171
|
+
telnyx/resources/ai/fine_tuning/fine_tuning.py,sha256=eWYzKDMmaQeFHdfzgSw_DNeoRcx66nOlXonnVuPHHhU,3707
|
|
172
|
+
telnyx/resources/ai/fine_tuning/jobs.py,sha256=bTFPxFNfOd5mv19AzE3XMWDwtDpysIsW_fYrH6HTaG8,15164
|
|
173
|
+
telnyx/resources/brand/__init__.py,sha256=eroGmcDdAyDxyGLR8DsFe_yCAxgH9bJSbUtSLZ8UiN8,1107
|
|
174
|
+
telnyx/resources/brand/brand.py,sha256=11SA_qg8DTw32OgoCNbdoLNM2ybyJTv1niOJHLEVkG4,50558
|
|
175
|
+
telnyx/resources/brand/external_vetting.py,sha256=9i0yJSL11QHPW7c9c_0GLa8JRKFCHdkc4vnFu7mOJlE,15232
|
|
176
|
+
telnyx/resources/bundle_pricing/__init__.py,sha256=Rfq97xRuf9wsjsRAyhqUjYqFNvNmuWtn_HjpEFlUHl0,1715
|
|
177
|
+
telnyx/resources/bundle_pricing/billing_bundles.py,sha256=FyRYMIirv-hdiKF63wrsi82wZXneUrxkQvW-vBev6ko,12035
|
|
178
|
+
telnyx/resources/bundle_pricing/bundle_pricing.py,sha256=d3L80tHqOCfcTxVQ7c6DDLfO-5FkG7HMlOfTLVz52-A,5371
|
|
179
|
+
telnyx/resources/bundle_pricing/user_bundles.py,sha256=ZeSqLtEG9bT4qXslA-63_w-6sHrau6xo1HurUJGhCMc,28900
|
|
180
|
+
telnyx/resources/calls/__init__.py,sha256=zQUq3YFSSLeXKg5bb5oG2Hh7VJsNmm_Z5nm68sU98LY,1002
|
|
181
|
+
telnyx/resources/calls/actions.py,sha256=PRXZ-KRGvyUj5V888jfUusP8bSUbuCOW_sGNonav0Kc,313410
|
|
182
|
+
telnyx/resources/calls/calls.py,sha256=MPWZ9g9235gx4IKuOcRKnwRwTDLs0t9PL41WoVm4ZJ0,44861
|
|
183
|
+
telnyx/resources/campaign/__init__.py,sha256=MGF-U4sQL_jE6xQKvsDXhucn5snUbtl1naBlZDaujPk,1452
|
|
184
|
+
telnyx/resources/campaign/campaign.py,sha256=LXTX1WbSWF90PKQnIzVl-D4ZJpXSlPshSjYPwsE6fl0,41698
|
|
185
|
+
telnyx/resources/campaign/osr.py,sha256=feTwm5Hm59d3nj4FjxNIcGuQWmo9wQOwnSFemGPP3PI,5764
|
|
186
|
+
telnyx/resources/campaign/usecase.py,sha256=tE-AmBQznrgeXD6QOaxhRyXMKi4aSsjMTm_wtB53Zn8,6092
|
|
187
|
+
telnyx/resources/campaign_builder/__init__.py,sha256=mXUQxXn8C_VC9EfazTXR2Uby4-ZazQS7S4nhuNjWJ0Y,1107
|
|
188
|
+
telnyx/resources/campaign_builder/brand.py,sha256=zbRu5gGb-rzbRtKGhthSf4-dTbGzdKgABTnZCcCFl8I,6544
|
|
189
|
+
telnyx/resources/campaign_builder/campaign_builder.py,sha256=zA3CMyV7S-9A-KMvAuYfClN__U5bQv9igKw1cHQHewc,23171
|
|
190
|
+
telnyx/resources/conferences/__init__.py,sha256=omYb2ssvce-OpSlKNGbIkXBaQFaE0PYSMV7Q-g9JRHg,1080
|
|
191
|
+
telnyx/resources/conferences/actions.py,sha256=Bah8CcqRgVORJpriFaI3Yniyd_3gqqVnqfMNwPLJJrQ,86537
|
|
192
|
+
telnyx/resources/conferences/conferences.py,sha256=kpHwBYb8aDdAF4Dtr2x8ZyXJghC2raKj712nAu4qYm4,28300
|
|
193
|
+
telnyx/resources/credential_connections/__init__.py,sha256=81iT_jEVYsPVEtnMBmM75XlgI5D6u4-1p1a3Gl2j7D0,1211
|
|
194
|
+
telnyx/resources/credential_connections/actions.py,sha256=gtlaVgpuL8XkP-ov0dl3_iybF9Q0_P2303gz8r91tXQ,6583
|
|
195
|
+
telnyx/resources/credential_connections/credential_connections.py,sha256=EcOwKan4Dku5Iv3A90paC-Pp2BnUuVs41wzUtJat-aU,46896
|
|
196
|
+
telnyx/resources/external_connections/__init__.py,sha256=Wh4TgdigAO9vIeadftwG3-pWOm4llfA1cDPdFBsb7mc,3261
|
|
197
|
+
telnyx/resources/external_connections/civic_addresses.py,sha256=OCaYYke_fViqOzPkrfcwQgFm_tG0vrMbvmNvwlXmVEs,10751
|
|
198
|
+
telnyx/resources/external_connections/external_connections.py,sha256=kVwp2Axrw0VxKWDoSj50EKLissPGJc1ExWj9el3zSmE,39273
|
|
199
|
+
telnyx/resources/external_connections/log_messages.py,sha256=zH52SXMUxaeKcQOaBUzD4YFUWgTkpy6iZdQYVMQ0zm4,13944
|
|
200
|
+
telnyx/resources/external_connections/phone_numbers.py,sha256=haoqj4brscW6yDXZK3Fj9Uq9mKSLsvj1z5l86A7j9v8,15689
|
|
201
|
+
telnyx/resources/external_connections/releases.py,sha256=OZLhKyb3LKthy2jL8ecy6wf8tORlmFxalsD_iCRcWJE,11317
|
|
202
|
+
telnyx/resources/external_connections/uploads.py,sha256=-89Zp2HafbtSncs9zWl3ZRvlCT-T0HL-cvXhbHYE19U,27219
|
|
203
|
+
telnyx/resources/faxes/__init__.py,sha256=De06LWWuy8Yzbul2Z-FrFA_cSwHPu1eaO-yU8OtefJ0,1002
|
|
204
|
+
telnyx/resources/faxes/actions.py,sha256=cCppCS3CBOtQr-u0LqTaGi-L42sQ-AlNDo88QWMKeZc,9122
|
|
205
|
+
telnyx/resources/faxes/faxes.py,sha256=2Poos9wvlO1OLj6HGORFxyFaQn1R3VJwRYOr11Azc3A,25555
|
|
206
|
+
telnyx/resources/managed_accounts/__init__.py,sha256=EoKq6ptLTh1aE0YVPAo39ZAUsU3lBxce13N1p3nmE8c,1133
|
|
207
|
+
telnyx/resources/managed_accounts/actions.py,sha256=q3RWaFTLlpLCpSDmxEnVv13PYiNfA87IrRjXA5b4l6w,10588
|
|
208
|
+
telnyx/resources/managed_accounts/managed_accounts.py,sha256=0WRCErWXdKkpF4bICVwj8s7iBKsoI9JyI-GF1RkFA1s,34088
|
|
209
|
+
telnyx/resources/messages/__init__.py,sha256=MIdmEB4u5Q1BCJBI1SkBqDqOruL7it4EOhs49-mHXH8,989
|
|
210
|
+
telnyx/resources/messages/messages.py,sha256=p86X4W9JRgrbjpVxQHB-rFfTHofw5pEvJSiiIs-eYQ8,57746
|
|
211
|
+
telnyx/resources/messages/rcs.py,sha256=WYyWwfKuKyZY6o5vzfMFqBhBd3qWZERUavatmbdOzXY,7264
|
|
212
|
+
telnyx/resources/messaging/__init__.py,sha256=LNf5b86iirmOWWMl2D7McVcCly7IIs0zumVmwgYXBvY,1002
|
|
213
|
+
telnyx/resources/messaging/messaging.py,sha256=G-4gKvfg60A-R1KjY5rPlqq702ZA7B0li_jDVEf6l3o,3628
|
|
214
|
+
telnyx/resources/messaging/rcs/__init__.py,sha256=cl0dbvKZcV2q5we4U_qKw7GbWl0JrlppiiafBusl5Yc,963
|
|
215
|
+
telnyx/resources/messaging/rcs/agents.py,sha256=JKSNgFH4z8IkvEPrK_RyDicfhlV3MYzKA9u90SM8ZCU,13543
|
|
216
|
+
telnyx/resources/messaging/rcs/rcs.py,sha256=iixXxlBSws27Ow9pBiR61iMmo_ShHGXMxEi4MQsJQaE,15029
|
|
217
|
+
telnyx/resources/messaging_hosted_number_orders/__init__.py,sha256=KLUjxUfCFX2X4WQEZxydkTrmT_pOZWr4ViXnv_L4kAI,1291
|
|
218
|
+
telnyx/resources/messaging_hosted_number_orders/actions.py,sha256=g1mwlzzpcfK3Sa6XePxkwq-AeCMf0m6kqdTGuSkwyMM,8168
|
|
219
|
+
telnyx/resources/messaging_hosted_number_orders/messaging_hosted_number_orders.py,sha256=aQKGu73rxRcG53FmWGgH86QJkfRkddZ1vEpIVa0Oxqc,32729
|
|
220
|
+
telnyx/resources/messaging_profiles/__init__.py,sha256=CpwlRx3PwlBRN-OVbt2ecEP0yVhdYVQv4EeEnKjLysw,1264
|
|
221
|
+
telnyx/resources/messaging_profiles/autoresp_configs.py,sha256=YES_HoK0i5Dvh7Pa8hU7jxI5zaOFD-IzuTKE4700Q0I,23803
|
|
222
|
+
telnyx/resources/messaging_profiles/messaging_profiles.py,sha256=Q9QHVbKikEVyOhnInT04N6eJVaxtqjI87BQau8QsZUw,46027
|
|
223
|
+
telnyx/resources/messaging_tollfree/__init__.py,sha256=xS6W3IHhxe9zW0nTAz695v-OJDsLHTsfhSx6J_4NU10,1224
|
|
224
|
+
telnyx/resources/messaging_tollfree/messaging_tollfree.py,sha256=6bIyhm1Q9YMWEqVCFQSbn6y_8WW1PAbhpB10l59j-Fw,4202
|
|
225
|
+
telnyx/resources/messaging_tollfree/verification/__init__.py,sha256=Sic6oOAjxw7WlvG0PaCb7B0jUmdjDSO8aM2DlSny06Y,1106
|
|
226
|
+
telnyx/resources/messaging_tollfree/verification/requests.py,sha256=WtZHB7FcUF64UEOEx4y68Bei3KvObFuzKVJtvn3Qah8,37223
|
|
227
|
+
telnyx/resources/messaging_tollfree/verification/verification.py,sha256=2WeDAR3Cwf7uGz3veAPzRwFpIymZ7rle3_UT-llSXIo,3879
|
|
228
|
+
telnyx/resources/networks/__init__.py,sha256=QM1zWhOYa2xtzTmSYs1mdrvGrUR9aB9OWUOs0EDXGOY,1133
|
|
229
|
+
telnyx/resources/networks/default_gateway.py,sha256=okhB-o-VTb4S7lagnoMPThti4QDBS0DKAdVegbYzHfI,13036
|
|
230
|
+
telnyx/resources/networks/networks.py,sha256=8hlnb_wnXNgHzBdHSTB3m9CwNVfIrHW8QctUemjUi9g,25221
|
|
231
|
+
telnyx/resources/number_reservations/__init__.py,sha256=2vUeYMc_LL6lIzkZu1Mc_iYTP5c1J3lRsuDa0fpVIGc,1172
|
|
232
|
+
telnyx/resources/number_reservations/actions.py,sha256=PmVaOws-NPn_ElFST54MOrrgqjFd1ze3guLriXTMnpE,6199
|
|
233
|
+
telnyx/resources/number_reservations/number_reservations.py,sha256=3XGuHHvL-IPX25BOT6wPM0ykdFUrl5NlznrEsX6MtaM,16374
|
|
234
|
+
telnyx/resources/operator_connect/__init__.py,sha256=9JOS3qWSGx9l6uK1HtSrE7JU9fflOJjffilejGcMMQk,1133
|
|
235
|
+
telnyx/resources/operator_connect/actions.py,sha256=-lkHT5ZV63Ql6OtwcWTHtxhv-I3oe3m5RP8MohVfxf4,5808
|
|
236
|
+
telnyx/resources/operator_connect/operator_connect.py,sha256=EwCfCwVYecjzHmlSS7JdVJKgPwYg7T6I7bFJUnDmdrs,3972
|
|
237
|
+
telnyx/resources/payment/__init__.py,sha256=EzDOQYO-nGszQg5suN7-sNGiFFU95rgtsLlqBiQTVhw,1160
|
|
238
|
+
telnyx/resources/payment/auto_recharge_prefs.py,sha256=_mo7RQStDEOr3Njd18b8Ux6bzOc4hrB9qAxUEGmd2c4,10716
|
|
239
|
+
telnyx/resources/payment/payment.py,sha256=jMVwQHMApiaMhg9mFfPjwCw-ISvR3stmomo3v_z7oS0,3980
|
|
240
|
+
telnyx/resources/phone_number_blocks/__init__.py,sha256=gX2I3LXif9roUAq8XFBNgSlHFv_Isko3yN5BN_TI5RY,1121
|
|
241
|
+
telnyx/resources/phone_number_blocks/jobs.py,sha256=fce6ei2qvFqFTs6ZpNCcpFxGVWnqrqyZiSaPkfuvqRA,14693
|
|
242
|
+
telnyx/resources/phone_number_blocks/phone_number_blocks.py,sha256=qzcim3BsiBxAmlwBlw0euA7Rrtsa9nwfQqbt6Ch8AMA,3973
|
|
243
|
+
telnyx/resources/phone_numbers/__init__.py,sha256=EH9BdCk9pCSj-YAo3QzC4jZypbYDy2Rq3P2ubQ0btD0,3462
|
|
244
|
+
telnyx/resources/phone_numbers/actions.py,sha256=di-Te-a5TxT-Xz16wPU4WEv7N7b0Fg-lthgt6asOjHA,15750
|
|
245
|
+
telnyx/resources/phone_numbers/csv_downloads.py,sha256=PloV4nKtPdP1VBEWqoHUfX137gzZ08L7t1kwt0RboBo,14526
|
|
246
|
+
telnyx/resources/phone_numbers/jobs.py,sha256=fOBHOJI7MgSMrDJ4Koo8O8M-Lf1iPKB41YoCM7BeWDM,29230
|
|
247
|
+
telnyx/resources/phone_numbers/messaging.py,sha256=7QcmbugQ1eP2S07alE2nz2LZC0dI0dcHZPZyM35d2mk,14912
|
|
248
|
+
telnyx/resources/phone_numbers/phone_numbers.py,sha256=RfvJ2YHSRw_LITu0HMESAJHXWFt-SX1_hc5lK1P6rDI,34081
|
|
249
|
+
telnyx/resources/phone_numbers/voice.py,sha256=TNrPxrf4KJeWx7iV9amivQoL46Z6ZFBA6el_qsahQ40,19366
|
|
250
|
+
telnyx/resources/phone_numbers/voicemail.py,sha256=bjW7BTNPsXYj-fPF-7SBz8V6iXdfbdKbZZB7j1jYwRM,14328
|
|
251
|
+
telnyx/resources/porting/__init__.py,sha256=RU_ehBaIwEgNLAD_M-atJPrJRuqlL2CeCoRozROpLTc,2072
|
|
252
|
+
telnyx/resources/porting/events.py,sha256=1gDC8AmyLgjRKkAiKgkHQZZfxCP3p5mlBs2ILUrtQCg,13138
|
|
253
|
+
telnyx/resources/porting/loa_configurations.py,sha256=Bi_4hkbXmqe9oixaKkLQsx1NiY4mFyf_w94YukM3j7o,31199
|
|
254
|
+
telnyx/resources/porting/porting.py,sha256=yVDbjjyoVPgN5Y90uVr-ov5GhfbTIjOla11ijI1pDto,8715
|
|
255
|
+
telnyx/resources/porting/reports.py,sha256=1-YLVteKHFus7rhd7kzqA-mnCmVwYbC-7I56-dXDdX4,13979
|
|
256
|
+
telnyx/resources/porting_orders/__init__.py,sha256=GrrSKuKtG_bWUoIUjT3WCt2p_JeAIegF59K7f372eAU,6560
|
|
257
|
+
telnyx/resources/porting_orders/action_requirements.py,sha256=XnMfmcyiNoLP-vDb7wtZFwbkgAeySm06JheFXAYcj3A,12976
|
|
258
|
+
telnyx/resources/porting_orders/actions.py,sha256=DSqzwcVJdust8DGMExLiy9iB5p-Ng1fFiTliePFRKMs,16656
|
|
259
|
+
telnyx/resources/porting_orders/activation_jobs.py,sha256=mrHJxOeENrJFEp5kv0BqeT3fU4a1_VBhYT8B7qMIOfE,14905
|
|
260
|
+
telnyx/resources/porting_orders/additional_documents.py,sha256=quchn1vzomvLIunzLM7DaGJ1RyLqCItYTep2WR-SGR0,16001
|
|
261
|
+
telnyx/resources/porting_orders/associated_phone_numbers.py,sha256=vekyS1V4Ey2BEbembXuGx8ogguk1CSJrWdSC9RNQI0c,17465
|
|
262
|
+
telnyx/resources/porting_orders/comments.py,sha256=CyrOZARw1Q_d92c5e2VEpIYB5v3hKvW47SOENo-y-GI,10048
|
|
263
|
+
telnyx/resources/porting_orders/phone_number_blocks.py,sha256=R6OJ170h7orrHibMRyaRJnZCjuP-d62SVaB8vljux2Y,17025
|
|
264
|
+
telnyx/resources/porting_orders/phone_number_configurations.py,sha256=k712y4rbd5qetaNKGe5B_2TxjFuZEFCQg7k1eScUdRI,12523
|
|
265
|
+
telnyx/resources/porting_orders/phone_number_extensions.py,sha256=I0EJvc9N3u6yFkRyywZsLQEeQ4i49kpWn7vbYjxxskQ,17651
|
|
266
|
+
telnyx/resources/porting_orders/porting_orders.py,sha256=WzBECB2orXAg66aNi-UcNMdpTSXMZrrNas1e5Zcsapw,61815
|
|
267
|
+
telnyx/resources/porting_orders/verification_codes.py,sha256=ALE2bm3zvTVgaYJHIN_7PiyHe8uanY21dlogRouynIk,16135
|
|
268
|
+
telnyx/resources/portouts/__init__.py,sha256=mX6do8iVPgKT6DoJ2fZRgCX1q4ENrqf1L3MFYGzGlW8,2587
|
|
269
|
+
telnyx/resources/portouts/comments.py,sha256=OtXhBhvDSkrGgwHolxmCGHFQETUSWTbr3165GKYNYWE,9435
|
|
270
|
+
telnyx/resources/portouts/events.py,sha256=8N68yZ_U8CgxCj4GED2Ak92eyXAG9MiYGH4aCTSITqI,13121
|
|
271
|
+
telnyx/resources/portouts/portouts.py,sha256=XuhjMySVyuqOkmsApejpGWkpOkXckL6Dn8xnq6D7Lgw,24190
|
|
272
|
+
telnyx/resources/portouts/reports.py,sha256=XFIu8dcwk_q96tafGmgRJMjvVjHF34r0xM8M_tzFtGg,13951
|
|
273
|
+
telnyx/resources/portouts/supporting_documents.py,sha256=G-buxsUYHw5SlMmydJw9MuVFVlejak4doArc1ihks80,10414
|
|
274
|
+
telnyx/resources/queues/__init__.py,sha256=imHzIAoSCvwhKbR_NdPVytFiu9a8xmjGKTDzvj78c6o,989
|
|
275
|
+
telnyx/resources/queues/calls.py,sha256=EamKK5tWo4X_qBGSTa5EapH02_4FMJaBD8tD6iVCdqc,10164
|
|
276
|
+
telnyx/resources/queues/queues.py,sha256=hHLbgnYShGZ1tGnO6-zT2f5wu26ClsEaZPG1L0BDFLM,6937
|
|
277
|
+
telnyx/resources/recordings/__init__.py,sha256=QKXCeJ_NDUEkDXQtFJigJNZ58I1T-VHo0vj_CwuOQXg,1067
|
|
278
|
+
telnyx/resources/recordings/actions.py,sha256=l_3YE1GJhmDgUpSnrZhyWlNiz-PTXnR1uOc7KdMC6Wc,6143
|
|
279
|
+
telnyx/resources/recordings/recordings.py,sha256=vWgy4nrkdhvwZV4Nv69yW07Y3ZfGRjWTuJ-i0zkEXyM,14905
|
|
280
|
+
telnyx/resources/reports/__init__.py,sha256=qk_1dlPxez7lw7AgoInNUZJ7Ri9eGaZSN3_x_2uhBpE,1703
|
|
281
|
+
telnyx/resources/reports/cdr_usage_reports.py,sha256=isO01SzxQyh1hnBVA6i7Id_LS3LeqZLfkHivdPyharE,8513
|
|
282
|
+
telnyx/resources/reports/mdr_usage_reports.py,sha256=ZrtW__egS2WuWC_CsmLdWOI_SfZZw9ipC8-yzlQms_U,22346
|
|
283
|
+
telnyx/resources/reports/reports.py,sha256=weiYFIDYU4PRAKmZVGfoA1vNRwR9R4pO51MR_zcIKAw,18220
|
|
284
|
+
telnyx/resources/rooms/__init__.py,sha256=pL7YR_3rov5JGbgBFxD31YLNVy5zakXtiiPLjWi5etQ,1478
|
|
285
|
+
telnyx/resources/rooms/actions.py,sha256=vNNjdmJaNqHn77L-FW6A-w5dTkpF5fNYcyYFYmmxiXc,13104
|
|
286
|
+
telnyx/resources/rooms/rooms.py,sha256=rkPmJIMkLLizcxYdV7Qh0rhsEo6a7tKBs6gQ6_esUo8,29274
|
|
287
|
+
telnyx/resources/rooms/sessions/__init__.py,sha256=InwPlCDvPCZdMFhpTN9kX7mJ9lfci6uhAFvoh7OQOdE,1041
|
|
288
|
+
telnyx/resources/rooms/sessions/actions.py,sha256=yN0NibC0GE-N_meJX3NaCsWoAO-ANP-IMyROauba8ig,19289
|
|
289
|
+
telnyx/resources/rooms/sessions/sessions.py,sha256=MjcAgxQZadhgz6PPWYB6Cr1OO72yIwbb2noZ89b0RG4,24287
|
|
290
|
+
telnyx/resources/sim_card_groups/__init__.py,sha256=U-6zFEn3_YN1Q6dqpD4qcAPsf55AEGrBsf_iMuPrQMo,1108
|
|
291
|
+
telnyx/resources/sim_card_groups/actions.py,sha256=56aVwVISBhO4qu35L_lXDfpBSuilCpJoja8vVj9TBXs,28853
|
|
292
|
+
telnyx/resources/sim_card_groups/sim_card_groups.py,sha256=e7BXyuHSqzm1gG0agerueYWmrso1rBwylMDuYZ2sJhw,24465
|
|
293
|
+
telnyx/resources/sim_cards/__init__.py,sha256=Xfca4rp_xtgCzQpLNZu_xzEEV4IPJTxG_GvTAtxRn8M,1042
|
|
294
|
+
telnyx/resources/sim_cards/actions.py,sha256=yGRYCQrE_wZ4xSSdVUlMMYVgfC7C-jyL8wUO19FW1EA,39597
|
|
295
|
+
telnyx/resources/sim_cards/sim_cards.py,sha256=GhhMwYw-rqRNHejMPTMaeCUNNpX5l8TJq0d82RI5QMs,39424
|
|
296
|
+
telnyx/resources/storage/__init__.py,sha256=wkopaiZqFsN-F1_kANWv2yCXu5cyy34wWvpffOmWMKU,2111
|
|
297
|
+
telnyx/resources/storage/migration_sources.py,sha256=1rPDMluDpssziFoWnR8CVhjrsi9Apy9pD2L7Lx9-D0g,16394
|
|
298
|
+
telnyx/resources/storage/storage.py,sha256=mhoSU1XSkRWddG0dkqBKIfTF2XiSpn8d9DWLkeV7ZL4,9060
|
|
299
|
+
telnyx/resources/storage/buckets/__init__.py,sha256=1st_6HXl1iC6YNXbGA5epZGQVzxmpcldZPXC_xnqURY,1557
|
|
300
|
+
telnyx/resources/storage/buckets/buckets.py,sha256=NdurYRzuRzLIIJ13HXAxp5o2C4xu3EBd2BGKyE8S9K0,10210
|
|
301
|
+
telnyx/resources/storage/buckets/ssl_certificate.py,sha256=z1A_SmjkMT_CIMPobVWCNuwT2u2xumM7CQM0b2wpFoQ,14990
|
|
302
|
+
telnyx/resources/storage/buckets/usage.py,sha256=wM_AEbGingRSEwHed4dji8qlvYAlcB0WKFve_kDX0BQ,10378
|
|
303
|
+
telnyx/resources/storage/migrations/__init__.py,sha256=MmnevL7UJev8foZQT6wPWRXxoCWO0PvV5cvQCmN0ysY,1067
|
|
304
|
+
telnyx/resources/storage/migrations/actions.py,sha256=uVtXxCPETbilAqlP5Z4GKbklyMmimoowydArBdv7QSo,5842
|
|
305
|
+
telnyx/resources/storage/migrations/migrations.py,sha256=t1K-Y2QZINZ4TzNVwNHdd-odZ-zU5lwybp_NIIabhCs,14087
|
|
306
|
+
telnyx/resources/texml/__init__.py,sha256=W52xEhzyxU1VKNSUgiobUcQo_525qK01WZIXFPHBAcM,1452
|
|
307
|
+
telnyx/resources/texml/calls.py,sha256=f4CVrBOxWbtuyoliQCYWYGq1FV4RAfkMuMt2HxWN_R4,30270
|
|
308
|
+
telnyx/resources/texml/texml.py,sha256=X5ngD-hlm1qgnUgF8_ZKLD63pCDYp1UGKkFzusVN77g,9406
|
|
309
|
+
telnyx/resources/texml/accounts/__init__.py,sha256=6kk6pjNbW0ubJoL63f9jhG06qppY6V71P2FlVteDBMg,2586
|
|
310
|
+
telnyx/resources/texml/accounts/accounts.py,sha256=EpqozFsdYcgbt-sYKqAsH3rIjvU3VtMLk7_odBVDunM,18132
|
|
311
|
+
telnyx/resources/texml/accounts/calls/__init__.py,sha256=FpRE5jgR93GXx5Cre-KG_9jxVVOjT9cJPGSBYJJKVh8,2509
|
|
312
|
+
telnyx/resources/texml/accounts/calls/calls.py,sha256=CAqVzP1kANG6nNoIttPC1tJiiIUhdIDYk4o1mrTgCEI,63039
|
|
313
|
+
telnyx/resources/texml/accounts/calls/recordings.py,sha256=sVOR9RLkSuYUzkfYl01ycczBvy4QKXewgePyAjuT5FU,7710
|
|
314
|
+
telnyx/resources/texml/accounts/calls/recordings_json.py,sha256=GDxhEzIpI8O1NqP6EnGA_ORdv_ja9xKtTbfmCozF8OY,14980
|
|
315
|
+
telnyx/resources/texml/accounts/calls/siprec.py,sha256=E_pPpu3lzZmBLz9bnMCISz3NotnZerwAi1gjFU_IE70,7584
|
|
316
|
+
telnyx/resources/texml/accounts/calls/streams.py,sha256=1CVOkyjY8olQA1lSrYArtmFmP0ncqpyQru-vt3VAq8c,7611
|
|
317
|
+
telnyx/resources/texml/accounts/conferences/__init__.py,sha256=Wgnoin0h5qEE7gcyi5IG6fg1_vpPNUgqHkRTALFE4Zs,1145
|
|
318
|
+
telnyx/resources/texml/accounts/conferences/conferences.py,sha256=_r0qdP2smTuTXP3PZb-UDJ1fAE6p83M9lEnNmoHyL3w,27937
|
|
319
|
+
telnyx/resources/texml/accounts/conferences/participants.py,sha256=qGRP5WO1MTtyfhiuFcaWVphqlb9eibQ3KZl_j2vpoCY,55631
|
|
320
|
+
telnyx/resources/texml/accounts/recordings/__init__.py,sha256=SVRbp2bcFKD_5pDdLHpTMG0ev_OhDRaSjY0htH29bTI,1028
|
|
321
|
+
telnyx/resources/texml/accounts/recordings/json.py,sha256=7QZzc7-qzOl9nCEGfOBHyXs1-MFkibiWEZu35fDtgP0,10306
|
|
322
|
+
telnyx/resources/texml/accounts/recordings/recordings.py,sha256=U4KNMl6dWg9TMq2MVZwFX-u93j54fTGJBVHhMkwL47s,3693
|
|
323
|
+
telnyx/resources/texml/accounts/transcriptions/__init__.py,sha256=kK93xbvNfgmvFbNBx8hFhBUaN8MjMV_lqXwwSxkFFyw,1080
|
|
324
|
+
telnyx/resources/texml/accounts/transcriptions/json.py,sha256=Wv2wLsAuj17qgJEIydFVrZyG6TAzLwrlh24fAZhWbPo,11140
|
|
325
|
+
telnyx/resources/texml/accounts/transcriptions/transcriptions.py,sha256=f-muckAP2-ICXQca61pLidbAClp50Ib6wlSy_LmTB0I,3837
|
|
326
|
+
telnyx/resources/verifications/__init__.py,sha256=0d5jEBzFbPYP_BkSJYXPUq4e49Qs8gANqMwl3lbzLKk,1649
|
|
327
|
+
telnyx/resources/verifications/actions.py,sha256=LYvQKg7BXTq9Mn6gqDXKZFneCzszLuJ_WDZ1zBmMKyY,7378
|
|
328
|
+
telnyx/resources/verifications/verifications.py,sha256=qsAwM09C283rlnG9CRxc6Di981RfmdcddhlcRxsoKrA,22033
|
|
329
|
+
telnyx/resources/verifications/by_phone_number/__init__.py,sha256=XBZbrhLQcba0yXsna85uuKsyUktgarFS8J0NZo8wwjY,1108
|
|
330
|
+
telnyx/resources/verifications/by_phone_number/actions.py,sha256=mqwl1l_zTDPeeVgP9B2J3aPuHEffZ1T9t2pww1CKMTU,7249
|
|
331
|
+
telnyx/resources/verifications/by_phone_number/by_phone_number.py,sha256=hq5ajOHy-FnAdAFPxgGFnVkybLpbEVt3ON7KSuVhveU,7503
|
|
332
|
+
telnyx/resources/verified_numbers/__init__.py,sha256=wv46Dyovmqk8vDqAw5gP_W5KTLZTzTv7tRJhr0rD42M,1133
|
|
333
|
+
telnyx/resources/verified_numbers/actions.py,sha256=bHUeXvok5-jqGtF7Hvem1_8m-UHK6mCJjfl6z81s3e4,6896
|
|
334
|
+
telnyx/resources/verified_numbers/verified_numbers.py,sha256=evCpg4XTmWzO8mog7GCgXWdQw-FbnDrh-h--3yWLYbw,18164
|
|
335
|
+
telnyx/resources/wireless/__init__.py,sha256=fEZwFm-3jI908Ui2_pT-S-3Titgg1vs7uFjzK4p406M,1212
|
|
336
|
+
telnyx/resources/wireless/detail_records_reports.py,sha256=73b10ZJJYsNwTdqA5bee4Q3_TG3WTskTkg4mPsM1jOc,17982
|
|
337
|
+
telnyx/resources/wireless/wireless.py,sha256=NQKcHQh4AoB4VrJRsgP3KGIH64bJmwAXFLRK7ZR1AX8,8176
|
|
338
|
+
telnyx/types/__init__.py,sha256=9OdT9Yscs-84JRBJn5u17jfS_HayaCWiloTy4BMppAI,88590
|
|
339
|
+
telnyx/types/access_ip_address_create_params.py,sha256=qd_T7W_K4XiVIdsJLbsS5U9Qlf3_m0DT677n5Tqdvm8,329
|
|
340
|
+
telnyx/types/access_ip_address_list_params.py,sha256=3sWF6U18lHT3y0fGouO8qCznMlvEyW5PRGx_pItEeLo,1870
|
|
341
|
+
telnyx/types/access_ip_address_list_response.py,sha256=WFYBcqjSoC6c4rf9V6zGWkcB0_UG9DnMQwF5ic17MdY,475
|
|
342
|
+
telnyx/types/access_ip_address_response.py,sha256=hbO8ftAMQrRQSgZnZypafa14lzeD_NGkrEyHrTe-pHo,571
|
|
343
|
+
telnyx/types/access_ip_range.py,sha256=euEtQEzv_1X1gmbUJ2HEj6gCNfRRsYZNiz6-AwwCnFM,534
|
|
344
|
+
telnyx/types/access_ip_range_create_params.py,sha256=zQizIleZucq1wKNAtuy7AxjglfBQmEywUACg9t0Cl9Q,325
|
|
345
|
+
telnyx/types/access_ip_range_list_params.py,sha256=q-TgSlwTgvMkiYGSyR66RQWKVZZopxLkWdLJK-HBPQI,2405
|
|
346
|
+
telnyx/types/access_ip_range_list_response.py,sha256=HiGlD0Ilv4SSOuSwRw2C9FyAYjP-XNIevpsIsF5jD4s,440
|
|
347
|
+
telnyx/types/address.py,sha256=hv48rfJl9lstPsiBfPfsRCgEg1gwrqKW_lVzHUUMDFg,3144
|
|
348
|
+
telnyx/types/address_create_params.py,sha256=2lGqy3wSFiMu-HNZLLI2Xw8Nn-gmzcbzddwvAa7NLoE,2624
|
|
349
|
+
telnyx/types/address_create_response.py,sha256=j2e-N0vYqiWOCpXtPQl2VN1dzV5aRND7Y4Yi07o2mnI,291
|
|
350
|
+
telnyx/types/address_delete_response.py,sha256=P41ZTsQjt6I5qtukCM4tfJAPr2hPq6t2BWkHRD0u8t0,291
|
|
351
|
+
telnyx/types/address_list_params.py,sha256=2otSG0_ZVjD1bPEUAvFG_WJsvTrbxeQenG0A6_p_ODE,3066
|
|
352
|
+
telnyx/types/address_list_response.py,sha256=mI6_cLdNQCltEvs6MuBeSZa28Nt0a8pYHPiZWrNQk9U,386
|
|
353
|
+
telnyx/types/address_retrieve_response.py,sha256=L8QmmvrgJ8uGJ166A6jinLm5E_9wgDqAlxdnS8U1OFc,295
|
|
354
|
+
telnyx/types/advanced_order_create_params.py,sha256=-XDiSCSbln6Bu3sPutJUrWsaOtWOzIZiQDNpFJScfr0,580
|
|
355
|
+
telnyx/types/ai_retrieve_models_response.py,sha256=DWcRuYkI0gXpCXME5KegvYkrFXZLmxHLWkh1MAtLXB4,410
|
|
356
|
+
telnyx/types/ai_summarize_params.py,sha256=rMVpD3Ocy_DmFVUYka9K-Mjspetf150V3CFXgL436hY,518
|
|
357
|
+
telnyx/types/ai_summarize_response.py,sha256=A9umRVyHGNxD1rFdEV0bMRRuJn7dSJFzBxhjYoAJnU4,259
|
|
358
|
+
telnyx/types/alt_business_id_type.py,sha256=ae9aJVHb8ZJh5KreswkuxNRF2rd4ksle-mu-IaQeg5M,240
|
|
359
|
+
telnyx/types/anchorsite_override.py,sha256=82y2l3Di-2RNQh0O0nebFA_pPgDHqy7rYwzz6lJ9aUM,434
|
|
360
|
+
telnyx/types/audit_event_list_params.py,sha256=lOIoNKc5zc9xv8NsBaSYVUep8YTFS0R3SfGltAedqaA,1219
|
|
361
|
+
telnyx/types/audit_event_list_response.py,sha256=frajEliNf22rYQIvQD1jRScE1FzyeHLFsg0mWopOr44,2648
|
|
362
|
+
telnyx/types/authentication_provider.py,sha256=7IHiKJirkWbjllv7mwQT0xK2TFe90qJpbDkVtJpwdw8,2393
|
|
363
|
+
telnyx/types/authentication_provider_create_params.py,sha256=EmyOmCQ7dYovb1y9-tXrYpYzv8KsRJlSPGd8v0BfQRw,999
|
|
364
|
+
telnyx/types/authentication_provider_create_response.py,sha256=gi0mytiD-LCpvqTi3cBKnJPmDXD068TZm55TLIsXoog,367
|
|
365
|
+
telnyx/types/authentication_provider_delete_response.py,sha256=o-UaL3YCARP1T5r5ovyFL454adbMXMyygSwQ0BwzLs4,367
|
|
366
|
+
telnyx/types/authentication_provider_list_params.py,sha256=2F8MHsvqnluDPTIuYE8XsDKkSvccWvun812ZNzlaOdg,1336
|
|
367
|
+
telnyx/types/authentication_provider_list_response.py,sha256=DDsyRbLAExKX8ZUI-0hb5MhmzbHlQDvUcNeUaXnkjSY,462
|
|
368
|
+
telnyx/types/authentication_provider_retrieve_response.py,sha256=U-Ut2ckF-FQMJs2ntbciPN2RN_9t-wqAe4sLloX4Myw,371
|
|
369
|
+
telnyx/types/authentication_provider_update_params.py,sha256=59gE3ZuTZEZkT7sVm9ooHQgnLKvRty-VW2cEi-YWO3U,959
|
|
370
|
+
telnyx/types/authentication_provider_update_response.py,sha256=gw2fMQcROsntcmK8Sq4E28Ezw3E9kcP-DmTl_hX-7-Y,367
|
|
371
|
+
telnyx/types/available_phone_number_block_list_params.py,sha256=noaCrYxNTwoVXokJcHOHBiFSZp1IQy7FW63ieOseiFo,911
|
|
372
|
+
telnyx/types/available_phone_number_block_list_response.py,sha256=-mAM8h2B44yx9a0e5KHgu-0qr21Lp8XKnkuCzqZ3gYs,1386
|
|
373
|
+
telnyx/types/available_phone_number_list_params.py,sha256=5xmj88Pde16OUBNDTNBJpCo6TOmsvu13YlEvg1IKYB4,2755
|
|
374
|
+
telnyx/types/available_phone_number_list_response.py,sha256=-YZa8i_6koh9GMQZ6arOW0tf0RlpOoRUH50ob94e68c,1803
|
|
375
|
+
telnyx/types/available_service.py,sha256=F8V_xVN6nDbIjsXvZWxgS1rvwTNG-84HTmcPCsxK10I,273
|
|
376
|
+
telnyx/types/azure_configuration_data.py,sha256=VE2NXS9bEy5sL1eZ7z4sYpdeRrDdN9imGayUeDB2GPc,492
|
|
377
|
+
telnyx/types/azure_configuration_data_param.py,sha256=pRnDBTfGjG-Q8Qa7ZnbSSuySIzbGHJNrOr0PCsWWKIY,479
|
|
378
|
+
telnyx/types/balance_retrieve_response.py,sha256=NSu7aPQU37lNpZ9GHKFcuHczBHVLKTuR3GNz77eldvU,850
|
|
379
|
+
telnyx/types/billing_group.py,sha256=iP_aY1OTKLOSaWOY8GARg8d8E4FLBUYRfGnB_2YMm8Q,1004
|
|
380
|
+
telnyx/types/billing_group_create_params.py,sha256=2Dl4Ju1uklDSjKz8HtqY7J9M-FH2TlPBu4Zj7awdptI,314
|
|
381
|
+
telnyx/types/billing_group_create_response.py,sha256=HK__HhgrqFIADFGPDpzPzNyJZCNtCyHDILmpzEcwjgs,317
|
|
382
|
+
telnyx/types/billing_group_delete_response.py,sha256=23YV5MVDacwmCXxvPgRYXfvaTtTDNzDfjqCzguT57yU,317
|
|
383
|
+
telnyx/types/billing_group_list_params.py,sha256=7_n5_TNr2jjLClT_Llwd8SWLpeN7FD1ia_IjQYCVAKc,519
|
|
384
|
+
telnyx/types/billing_group_list_response.py,sha256=5ynRvP4fRqcOJnEIthG4_CDCjSuB3H1k3BoJYZdAjgk,412
|
|
385
|
+
telnyx/types/billing_group_retrieve_response.py,sha256=HaXCcoR5QIuXgl4zFK3geYlNJhTsAK-sBWleiKBtcDI,321
|
|
386
|
+
telnyx/types/billing_group_update_params.py,sha256=QkS9t4E6pcVL2GnyGoUT8m3U7JzsXO2MWYqaqzcvniI,314
|
|
387
|
+
telnyx/types/billing_group_update_response.py,sha256=4OfROFr2jKjcAMIG2_MJ-jAKGCBEhCgkUYuhJZ3mDMY,317
|
|
388
|
+
telnyx/types/brand_create_params.py,sha256=E8wqmr5xsNoEG8T9-pqdaQsvSdvc-3ZQR35L5iGKenI,3004
|
|
389
|
+
telnyx/types/brand_get_feedback_response.py,sha256=_z8ZvaaEy_n5hCQNOCWftQUWzbrBmCi4udWIFwNvoqE,915
|
|
390
|
+
telnyx/types/brand_identity_status.py,sha256=fuQtROgpECmib0rPVGZGBdIvK5pFr3fPQpj9WPaREOo,275
|
|
391
|
+
telnyx/types/brand_list_params.py,sha256=tnpXqAPggfhndv2q6cqNhIli7GdZTIWfN3NIYvadKag,1317
|
|
392
|
+
telnyx/types/brand_list_response.py,sha256=eAy-GOLZN2zEPx9xVbG400I5Rnqm4rkCq23OA2Xhx8M,2284
|
|
393
|
+
telnyx/types/brand_retrieve_response.py,sha256=ckUoTUpym0AEU-6O3oi-Zuhoz9apvihYIogDY8vXa8U,436
|
|
394
|
+
telnyx/types/brand_update_params.py,sha256=7gMmNCc8s0rwloKIm7zhmNFjvtjTzSVBmM430Hq4tcA,3306
|
|
395
|
+
telnyx/types/bulk_sim_card_action_list_params.py,sha256=Cb3jfVsOS9fNgAn_Ux-uvNJudDEdotVSvPEK6zo7fAY,665
|
|
396
|
+
telnyx/types/bulk_sim_card_action_list_response.py,sha256=TfBkY5ELe0GS2TIaG6jHhYb5ActI9yURIDu-SSQL7zU,1439
|
|
397
|
+
telnyx/types/bulk_sim_card_action_retrieve_response.py,sha256=wVA0TamPwKC5F3WRCKyPDlbnaGIGhvGDGWCBFExLToE,1354
|
|
398
|
+
telnyx/types/call_control_application.py,sha256=GwQm25fVUXnd5f9IFQxErwp78wizyxkqdYUVEYJ9Oog,2866
|
|
399
|
+
telnyx/types/call_control_application_create_params.py,sha256=QwE_MHP0jDDoNBhWpk2oXHsety7Ou-ciYWj5PXA-RBo,2451
|
|
400
|
+
telnyx/types/call_control_application_create_response.py,sha256=bPZ_zRz836mp7wy9tbzzBEWH2eml2WC5Y3uZBcGZVC4,368
|
|
401
|
+
telnyx/types/call_control_application_delete_response.py,sha256=CV9paX16x7L6fUtms-7bejacGZRZyMlrhzAUQpzR5A8,368
|
|
402
|
+
telnyx/types/call_control_application_inbound.py,sha256=LTXW1JT65ayV3yeynUK-Argn-vFUreS_JMAHYHcFOoo,1398
|
|
403
|
+
telnyx/types/call_control_application_inbound_param.py,sha256=G4UCz3Rm1TJuxulQSqj5PHO-xBU-yPZzamkiuANdj2M,1339
|
|
404
|
+
telnyx/types/call_control_application_list_params.py,sha256=XuiqW2lxoqB0S-lWYjhxRD0YP2x5QtfYjAI9bRQnUGQ,3856
|
|
405
|
+
telnyx/types/call_control_application_list_response.py,sha256=AOBOEXvdRwuSY2z9zJ05454-eKtJkl-ATwnSuSHPkDs,463
|
|
406
|
+
telnyx/types/call_control_application_outbound.py,sha256=PPW35t8bB8zke8sxebSFQ3sjD5PrP3ctHXEml4d_eg4,533
|
|
407
|
+
telnyx/types/call_control_application_outbound_param.py,sha256=aFlCWDtRvjHmF-cu92F7GPPlc5YNdaV3HGG-31gZA_4,537
|
|
408
|
+
telnyx/types/call_control_application_retrieve_response.py,sha256=LZNhV1G4eL-y9FGl2lSmWOJPjoIPrm9SHgy5y9kPpsY,372
|
|
409
|
+
telnyx/types/call_control_application_update_params.py,sha256=o_zlH_K86u5xWqQeS3q5IvSOdGReURTwqf7WeXKjKk0,2535
|
|
410
|
+
telnyx/types/call_control_application_update_response.py,sha256=_JR2YLtITudbuYGVqmaGud1B8StTlAanVmFNtIN_XV4,368
|
|
411
|
+
telnyx/types/call_dial_params.py,sha256=SCfnu4urlFVfmTyTVbJcLgeGkqKuxWq5vRB_1WS2y4U,15884
|
|
412
|
+
telnyx/types/call_dial_response.py,sha256=qV7fNdy_vNuhBte6B_jxhSqvNQMht8tyq3DZ3-YHQAM,1575
|
|
413
|
+
telnyx/types/call_event_list_params.py,sha256=AAhJQiZV0JvPxHLmjyLSWq5f54NV1aMvfxBCDpkjJ9o,3163
|
|
414
|
+
telnyx/types/call_event_list_response.py,sha256=kRLl6TldmQuDw1Expvp7bj2SYO0c89pXa2CuiXG_a8A,964
|
|
415
|
+
telnyx/types/call_retrieve_status_response.py,sha256=RX8VzV4aOrjerr8iBhl8ilCBurIIy7-n4MYhrAFSaJg,1441
|
|
416
|
+
telnyx/types/campaign_builder_create_params.py,sha256=K7AyH31HxvuvmsEj7i_eCUpA_UW_U1zlNsloxOPiFps,5300
|
|
417
|
+
telnyx/types/campaign_builder_create_response.py,sha256=7XT_yPFVsHoPKbp6WhQ2d72VkwSaFjGRAssGmUl5Kg4,326
|
|
418
|
+
telnyx/types/campaign_deactivate_response.py,sha256=tcSCvd-cx3hFz66VdwxOqtbxOFBwJGne_pO5WQWKND0,327
|
|
419
|
+
telnyx/types/campaign_get_mno_metadata_response.py,sha256=oeFWRjTI1wZgMJPMpA0p19T1T5vNBur3Mbxw7tfqeq8,943
|
|
420
|
+
telnyx/types/campaign_get_sharing_status_response.py,sha256=OpBYCVSEGEj8RThsJjiUWslLjE6qEvSgEgZ9ZsFiiCI,546
|
|
421
|
+
telnyx/types/campaign_list_params.py,sha256=gjYy8uWph32nK7i0tX4TFvoYYjPxFWwliVdWNO3VpBY,1066
|
|
422
|
+
telnyx/types/campaign_list_response.py,sha256=cW9tqO3c3ZDnXxcPxkthHS2Q8xvnIrixd12ChsYehBY,8677
|
|
423
|
+
telnyx/types/campaign_sharing_status.py,sha256=-PT1pYJgMRmqf3jKduW0SPdNKGf02sJhUwj2CbQ7MM0,681
|
|
424
|
+
telnyx/types/campaign_submit_appeal_params.py,sha256=S92CMn_b_NGHGtE-etlaVZQn6A68BZLZz1-ZexMBaNA,461
|
|
425
|
+
telnyx/types/campaign_submit_appeal_response.py,sha256=6Bl5gB9OYuioQLgIID9ic3vDpgEdCNp7r01w-B4jUO4,466
|
|
426
|
+
telnyx/types/campaign_update_params.py,sha256=0tUXAyE9dnJhosIxKo3DmJx_uMGMk4xS3W36Ckf-aYU,1577
|
|
427
|
+
telnyx/types/channel_zone_list_params.py,sha256=zaTiR8tGiFf2h2OqMLCHTgvOCKKr_IMEt61-YVWxBOY,517
|
|
428
|
+
telnyx/types/channel_zone_list_response.py,sha256=kylyHUWHyq6ltiS53kvem_1fXk1dqOlRH03-zpl5D58,872
|
|
429
|
+
telnyx/types/channel_zone_update_params.py,sha256=uPKqhtwEzT1WeFnqSQtI-DznHVqejp0Tm6Z8C_u7i60,339
|
|
430
|
+
telnyx/types/channel_zone_update_response.py,sha256=OkOKQDB74JL69xTqveOJ7Pp55YNnQCVamm2WNsJzfrU,718
|
|
431
|
+
telnyx/types/charges_breakdown_retrieve_params.py,sha256=Wzl5y_dvgGe6BGP0eQx4pzGwiRWFpOpX5gPuD8iEI7M,989
|
|
432
|
+
telnyx/types/charges_breakdown_retrieve_response.py,sha256=S4oxr4VW4jwfFRfqxfyw_giXcG3UmlL4S_DxuRJH_I8,1256
|
|
433
|
+
telnyx/types/charges_summary_retrieve_params.py,sha256=WlMwdrN0XTAG9UHYY8IyUvv5H57canI3PRP9zXehB3Q,865
|
|
434
|
+
telnyx/types/charges_summary_retrieve_response.py,sha256=EUbsepVd5Zl64aTj0bHkRnHXaj45jX3UNHebEbNeYl4,2514
|
|
435
|
+
telnyx/types/client_create_bucket_params.py,sha256=E1zUjZd1OfxDr4W-SnUDTEyrMSFk9HSjNxMZXlI05JU,389
|
|
436
|
+
telnyx/types/client_delete_objects_params.py,sha256=M8WjzkKHxSkGbQlekuj4zBd0KmF4-4xeyYT-Ht85nrw,525
|
|
437
|
+
telnyx/types/client_get_object_params.py,sha256=IJrxQuVK76x1apZoqgGdZd5Swcht_6HzaUxZ5hMWxec,450
|
|
438
|
+
telnyx/types/client_list_objects_params.py,sha256=6NWjFks2cuuZNZGHiv0uE8HkiyEsR1FSNk-Tl-aSQNE,384
|
|
439
|
+
telnyx/types/client_put_object_params.py,sha256=RM6YTxDigcq8V8RzLhLce2TK9t8IfyVLSg_1mAzbNuM,579
|
|
440
|
+
telnyx/types/cloudflare_sync_status.py,sha256=vqYPyc4mM0BjtJrfKjZpy7q9xzC67AECSmgGiCQTzZw,235
|
|
441
|
+
telnyx/types/comment_create_params.py,sha256=S1nzHTZIs3RDAsgmFufE-UNfM6dJnmOWejAELoy94ek,377
|
|
442
|
+
telnyx/types/comment_create_response.py,sha256=kJ_kF8XjC4cJjRqGYgyRPPEdLUbfrsJqQeF7TSPvXSo,1002
|
|
443
|
+
telnyx/types/comment_list_params.py,sha256=gQ7QwqrLd_1Ge_oHbL0YGaryBAGtle3c71JjaiPxc90,664
|
|
444
|
+
telnyx/types/comment_list_response.py,sha256=V_N4HHQM1KGUTsIyoE6Fliaioz1GbLol3yK7NWR_LoQ,1097
|
|
445
|
+
telnyx/types/comment_mark_as_read_response.py,sha256=nnm4anoLgz_uDxnE85M6ffvZWBtBGaH4M09Eupor-hU,1010
|
|
446
|
+
telnyx/types/comment_retrieve_response.py,sha256=0FuiTWpTwFo9DbrWrtW4ISatAIg9PaBblfOsDqEJ0JU,1006
|
|
447
|
+
telnyx/types/conference.py,sha256=dzDrCTuIcNqwFN9GA93FdwlJhhr5wbLb_Rd5VSZn748,1508
|
|
448
|
+
telnyx/types/conference_create_params.py,sha256=AJJszf2zS3SYmpPoTBq3Z90G7Kv1J6RcSGr0sHWCyXM,2324
|
|
449
|
+
telnyx/types/conference_create_response.py,sha256=ggiB8W7e31On8Y7spzEEjj890FsF673A-i8d8hveVgs,306
|
|
450
|
+
telnyx/types/conference_list_params.py,sha256=BpNUwUcSkLfxTUJsyTM6iZm2Umr0aVWG__si9lx7Mos,3165
|
|
451
|
+
telnyx/types/conference_list_participants_params.py,sha256=HR3nklZ4h6dWF8S7MFA8azlZpBycCvpo7vHpSUkM_2Q,1290
|
|
452
|
+
telnyx/types/conference_list_participants_response.py,sha256=Mb9sMn_0nWwaeGMruhcweolib8xsA_Lcbw08aivCKao,1932
|
|
453
|
+
telnyx/types/conference_list_response.py,sha256=i1cJ223BHClbvHbFId8kH5Yp9QMw_u_x-GMLhnsyDS8,401
|
|
454
|
+
telnyx/types/conference_retrieve_response.py,sha256=EsRuiQaIETAO_Z9_ri26w4Y5HbA_ZbuE0AWap4kRodU,310
|
|
455
|
+
telnyx/types/connection_list_active_calls_params.py,sha256=eIvWpeQ1o6PjG1B7fy6HFVsnuumINCCQMWs3hoRJoKI,755
|
|
456
|
+
telnyx/types/connection_list_active_calls_response.py,sha256=WcB3pjgz3XToireQsgTE8lCDjQGvB3Mf2eYPOOIOtH8,1500
|
|
457
|
+
telnyx/types/connection_list_params.py,sha256=76BEF_3KbrmaX48_LyUHTeIS2kCKLqQ_CtaIrIzqSsY,2141
|
|
458
|
+
telnyx/types/connection_list_response.py,sha256=aamAwruLbPPb5hn633YrDcroVzsAa5_DljxXPOUtNVI,1980
|
|
459
|
+
telnyx/types/connection_retrieve_response.py,sha256=n2shA0X93eXNR0gJZibcWAxD5WwwsBDi2is29MonYTM,1854
|
|
460
|
+
telnyx/types/connection_rtcp_settings.py,sha256=i-DvbUBvc3o2JmHTbI2hBwLOTTPQNjpzyBf3TH-04RE,786
|
|
461
|
+
telnyx/types/connection_rtcp_settings_param.py,sha256=x5Q7HBMQmzmTE3OTm7GzYsAYZsJf6Ar8jUSLck-mp3E,744
|
|
462
|
+
telnyx/types/consumed_data.py,sha256=aBc8mtHcg7dZmZsO5Od2cTFx9PWzqaE8GQrRmidzvEI,274
|
|
463
|
+
telnyx/types/country_coverage_retrieve_country_response.py,sha256=Rvm7fZieuqZ7O8yELjMpOTO1t4b6wYQKMC8NyL1CVjE,1654
|
|
464
|
+
telnyx/types/country_coverage_retrieve_response.py,sha256=pKBy-Olrgoo2xa_dBEL6n0Ua76xga1MqbOhdAJ0tyMk,1646
|
|
465
|
+
telnyx/types/create_verification_response.py,sha256=rX9zZedL3IEWPprSVtUIH9x46WtrWr15NHzVf0HjP0Y,270
|
|
466
|
+
telnyx/types/credential_connection.py,sha256=GeXlH70_5fz_WIvtd19WZAustX7UFh11B23KRWh3WXg,4240
|
|
467
|
+
telnyx/types/credential_connection_create_params.py,sha256=-QA4C2NEKa3NhnKeN1t6zD_5jTRQhLBEyjyYEUmXuVg,4043
|
|
468
|
+
telnyx/types/credential_connection_create_response.py,sha256=HaLQCfoH9S_SWp4CN3a7iWH5qzpvsTVSlmWI4u1uJtY,357
|
|
469
|
+
telnyx/types/credential_connection_delete_response.py,sha256=2Xje5fhwim_w38O4CoUcW8XQ9nGMZ1UQwkRJURRZieQ,357
|
|
470
|
+
telnyx/types/credential_connection_list_params.py,sha256=rudBU9mwv0QYiKjbQxKKUK47L58WyPYHTX_CzRonfPY,2161
|
|
471
|
+
telnyx/types/credential_connection_list_response.py,sha256=G55ndBy2iBEPrBLTxl52QtkXduMbf6tu3JC8g3ReB2g,493
|
|
472
|
+
telnyx/types/credential_connection_retrieve_response.py,sha256=F8tZfuw3NpA4LZmeukQJxUs7qiqYhVosPRfriwbUB1E,361
|
|
473
|
+
telnyx/types/credential_connection_update_params.py,sha256=5UhRj5J9IG8VAvMWgyx8o9AMx0Ld3O2ynGK8DgOhNSk,3859
|
|
474
|
+
telnyx/types/credential_connection_update_response.py,sha256=_qvEDRgAq0SAV6bqe7UmRJ1POkfKpuTzy73FIx7wHRs,357
|
|
475
|
+
telnyx/types/credential_inbound.py,sha256=rGgNkFyWhrTf8gH9AoRl8HMo6Ws8Rs6I83s3GZd2uvI,2151
|
|
476
|
+
telnyx/types/credential_inbound_param.py,sha256=C1qE_XhQ853j3Oz6fAnqhyEyEEa40xthASlIGj1bcBM,1991
|
|
477
|
+
telnyx/types/credential_outbound.py,sha256=mC46QkajdRoTsmx_cwL8mMK0A68D2MahguaTutvDRTQ,2352
|
|
478
|
+
telnyx/types/credential_outbound_param.py,sha256=_IFnpqeGKijVZIWO2xcqiyvhJiMOVRUrRJ0uWlcTeEI,2232
|
|
479
|
+
telnyx/types/custom_sip_header_param.py,sha256=k42em8N3RkXfMkNWEtyv7qsW9Mqw12Z-TwUuYdT5WXI,389
|
|
480
|
+
telnyx/types/custom_storage_configuration.py,sha256=RhAIsgY82BWsLvR8y5gi2xRtIJO0FaER2WKDE7C1qkc,651
|
|
481
|
+
telnyx/types/custom_storage_credential_create_params.py,sha256=JzqQTnrIFKXBZ8kX1b-ZP-lkLTOFTQk9U3ZRzHZu8Fc,776
|
|
482
|
+
telnyx/types/custom_storage_credential_create_response.py,sha256=--P1xP5rAs8TbAE9R1NirvaF41XBopGY_N6RedUbY5U,604
|
|
483
|
+
telnyx/types/custom_storage_credential_retrieve_response.py,sha256=U8WKFViY8-A1lGGsQ_MoJ90bUp7dlWkLjveddA3YEmY,608
|
|
484
|
+
telnyx/types/custom_storage_credential_update_params.py,sha256=C60LlfFoszWIhOoraINj6hY7yjkdBlAEVrfT4tH60Pg,776
|
|
485
|
+
telnyx/types/custom_storage_credential_update_response.py,sha256=MWUXGCiAJR9XoXu3-faMiv48pPw9E1sgaCvZrUW2Fuw,604
|
|
486
|
+
telnyx/types/customer_service_record.py,sha256=fstB_3ugxrwGxNWhtcc2F8A7L0f69NVogpKZdESq5hM,2620
|
|
487
|
+
telnyx/types/customer_service_record_create_params.py,sha256=u1GLJ-FMsG9gU4MtHD-dGuEosUD_P4snYZYrg2LSajQ,1330
|
|
488
|
+
telnyx/types/customer_service_record_create_response.py,sha256=evFtX8yJ_FXEjEo0DMtp2ptVrU_5yjZ0ArgvtT1p3Tg,363
|
|
489
|
+
telnyx/types/customer_service_record_list_params.py,sha256=Vcs2hp6aXfZtYR26ejDn2mB77dPAiLRVa-r7A2TsLSU,2432
|
|
490
|
+
telnyx/types/customer_service_record_list_response.py,sha256=j83mROt0KQ45us3Lj6lBZSLEZPKGDAJzmdNpKEBIZ74,458
|
|
491
|
+
telnyx/types/customer_service_record_retrieve_response.py,sha256=07_PV2iPF3H8LLaOfDJ8MugnJ9vKcj7jrnlShE4_er0,367
|
|
492
|
+
telnyx/types/customer_service_record_verify_phone_number_coverage_params.py,sha256=I8iaozlUgGYWmTUEZzsBdnrt1G_24q182yyYO5hDs3c,439
|
|
493
|
+
telnyx/types/customer_service_record_verify_phone_number_coverage_response.py,sha256=jQirZgkVJG40Rm6pmbAcef7aq0QYVTwZov3Q-CDulaM,1388
|
|
494
|
+
telnyx/types/detail_record_list_params.py,sha256=JPVUw80GtvR0650KJnA1OZ1Blo17hqRw8ZiDyzrtKBs,2021
|
|
495
|
+
telnyx/types/detail_record_list_response.py,sha256=hQAQ6iyIpgjtj6zxoP8o9XxjAKXP8kNM0ONvOJrq4x8,13823
|
|
496
|
+
telnyx/types/dialogflow_config_param.py,sha256=_b-DntBBdjqtmojDCUsFdsZkUpSC8fk7GHjf7vAi_SA,441
|
|
497
|
+
telnyx/types/dialogflow_connection_create_params.py,sha256=QByCPUPRM1qxN2Ax6vWwW-KDDqzNP40wXfWkCENlfjo,880
|
|
498
|
+
telnyx/types/dialogflow_connection_create_response.py,sha256=5WpqTfJfSKzYgT0ttRX63OFHkVJ3jZD4rnvKx8I3sZ4,834
|
|
499
|
+
telnyx/types/dialogflow_connection_retrieve_response.py,sha256=7zkhtGXS_T2nJxXhPWfkxO-7svptLc1AMX0PLdqLiSs,838
|
|
500
|
+
telnyx/types/dialogflow_connection_update_params.py,sha256=sYD7qggWOuuEc8ajJJbaO_mNs2N1DSu-zdx-ioApaXk,880
|
|
501
|
+
telnyx/types/dialogflow_connection_update_response.py,sha256=iH8x461sDBP4GTzwdVoOHG2iYqedYLCKD0sVkHqO1iI,834
|
|
502
|
+
telnyx/types/doc_service_document.py,sha256=7SX92batc6UbJ2oUt8xRP7Ru3F2Jfg0MS9AxRFXarF4,1387
|
|
503
|
+
telnyx/types/document_delete_response.py,sha256=kKs1qRGn8G_X5i-i8ktv1zZkWk44BSFm9gOJTO5uAlw,328
|
|
504
|
+
telnyx/types/document_link_list_params.py,sha256=HyoeYzCPaJAOaygTEflL6wJWg1Ux2Icn_QUDAalsHkM,928
|
|
505
|
+
telnyx/types/document_link_list_response.py,sha256=cEV3Bx6g2_uxpU1469ODamMLoYpErA4U5KCj_lt7qoQ,1049
|
|
506
|
+
telnyx/types/document_list_params.py,sha256=4enb4EGHLCcy8Y4VUwYs4Fvq2o9GYmXbQeRHw0KPjkA,2066
|
|
507
|
+
telnyx/types/document_list_response.py,sha256=-_gLD3b7x0UT6kfHZ4Z05xEKdpfHEd5fND0yzckJK64,423
|
|
508
|
+
telnyx/types/document_retrieve_response.py,sha256=22mTiLGxPa_ClgA0K0wQ_utozd_FffrM3m1XJtNkGcM,332
|
|
509
|
+
telnyx/types/document_update_params.py,sha256=-pdFL8Ra8mn8accOvApZTnu5bVky0hZJlsBIQs4JMK8,399
|
|
510
|
+
telnyx/types/document_update_response.py,sha256=K4eMjEPsMpJ4daDpu08PgZqNuwEzzt3JPOUjBySBfjY,328
|
|
511
|
+
telnyx/types/document_upload_params.py,sha256=pU9wSxc4XvZCX2z2O6DQk0kEt8vBK0_0OSaCxR1XAKY,1234
|
|
512
|
+
telnyx/types/document_upload_response.py,sha256=81z3z6mwwWMdIX2JGds3q4baK0x8WAMiyHeCYL_4EHo,328
|
|
513
|
+
telnyx/types/dtmf_type.py,sha256=lPGsm0CFOe0KBJR7pxOnxNr7XlB3TKa81JuAH5oCS8I,225
|
|
514
|
+
telnyx/types/dynamic_emergency_address.py,sha256=JumydEPH87-jK1JnYQ308GfbxaMBKR4yEMzjZifM6h8,1261
|
|
515
|
+
telnyx/types/dynamic_emergency_address_create_params.py,sha256=hA-D-6MGiSRBuQ_r4AmRobaxA2DHDj1i8LbONNAcse8,663
|
|
516
|
+
telnyx/types/dynamic_emergency_address_create_response.py,sha256=tVMLfl7ZBeD2R8WbFpQ6GrDgG_UpIdurLyLkF7lXhCI,373
|
|
517
|
+
telnyx/types/dynamic_emergency_address_delete_response.py,sha256=4hJZd6WD7Ed85pcM8T6NfMVl5FkDjKFBIOc0dpw4IE8,373
|
|
518
|
+
telnyx/types/dynamic_emergency_address_list_params.py,sha256=Fq3AOyqpTDW9LwrdJ7rer1WDa8Tfc1E_bf3VSgeHx34,880
|
|
519
|
+
telnyx/types/dynamic_emergency_address_list_response.py,sha256=yMrCTWxC0e2c4rvBCgOWdZjLch6xaxcpR9qRfRX0Ayw,456
|
|
520
|
+
telnyx/types/dynamic_emergency_address_retrieve_response.py,sha256=beh6mwnDhSinFiD48lE1axbzU6Dvejz_Ft2atuI2LKU,377
|
|
521
|
+
telnyx/types/dynamic_emergency_endpoint.py,sha256=SoxUXlRVSplCD18fnMaUG6RAjqgC7sG3GSvXyUCaSsM,913
|
|
522
|
+
telnyx/types/dynamic_emergency_endpoint_create_params.py,sha256=E-K_qz1aEYOwQL3n47zLsijfnyxDMGidJngL51tF1Zc,477
|
|
523
|
+
telnyx/types/dynamic_emergency_endpoint_create_response.py,sha256=4vu1i4KEWs8kzFKMpzkvmaPYKcvNuDOCJY_QKVfsjU0,378
|
|
524
|
+
telnyx/types/dynamic_emergency_endpoint_delete_response.py,sha256=fENqtFNChOE3hTiva1J6U7yJh9h2rDTmQIrH7j8kWAU,378
|
|
525
|
+
telnyx/types/dynamic_emergency_endpoint_list_params.py,sha256=do_5TkWkA9e_c0xhouZmuSNP-sNiU4twZ4XE-Qa7dAg,882
|
|
526
|
+
telnyx/types/dynamic_emergency_endpoint_list_response.py,sha256=Q6huh2eUetzA3SB-WEmLXDyWAF5x2PPKGsk0lefw3jQ,461
|
|
527
|
+
telnyx/types/dynamic_emergency_endpoint_retrieve_response.py,sha256=UjgWjbsBHC8Krwt_gcpq2Q4GLw9rokjvMQAUl7pZtbI,382
|
|
528
|
+
telnyx/types/encrypted_media.py,sha256=gep-8QZ1MEwmJ_aDd9Ym-OVKEcIXHZlM_jvWkT7ldJY,249
|
|
529
|
+
telnyx/types/entity_type.py,sha256=2RX5p8I9whwAMHQw4sNAfSXNKLkuttpImMhnCQB626g,258
|
|
530
|
+
telnyx/types/enum_retrieve_response.py,sha256=EPO8dAJkZET6eGZTnvPIYJQ38IibTi9xwTohAHc2Hec,277
|
|
531
|
+
telnyx/types/error.py,sha256=5RSz0fIaw5K7STV45FKlqeTPJZVqRKWSaZIOwddmO4o,574
|
|
532
|
+
telnyx/types/external_connection.py,sha256=HJ6xD76XN4sROHafTteQtTIwy41mEb0d_HMvzDR-908,2375
|
|
533
|
+
telnyx/types/external_connection_create_params.py,sha256=yJASunRcy2Dm-szfoHFPeJ2FV7rupz6Vr-WVvgIH8Z8,1655
|
|
534
|
+
telnyx/types/external_connection_create_response.py,sha256=lFrIZXYzVmlcXuHraptL6k7NweJ_Asc2X3frkd8d5cc,347
|
|
535
|
+
telnyx/types/external_connection_delete_response.py,sha256=NIwCN0v4HN8HSvuXX8cz0Q2ivZToytjkIFJJkR4DtUo,347
|
|
536
|
+
telnyx/types/external_connection_list_params.py,sha256=twU-4P8nXQOVSj9Vz2TrXoVapGXjN275hTGeuSz-dQU,2045
|
|
537
|
+
telnyx/types/external_connection_list_response.py,sha256=lYVM0wV1XsFMPCMtu07ZO1Da5_wGVXP5nqjteGdQ_44,520
|
|
538
|
+
telnyx/types/external_connection_retrieve_response.py,sha256=3HPHLm-6jYFjuUXBMh2EHOHsw9l6IOBx9M6zYzdmA0k,351
|
|
539
|
+
telnyx/types/external_connection_update_location_params.py,sha256=8O3ON2HU6YwIDjPVh2CDKeY57sZigslt--9qlgOiT5o,441
|
|
540
|
+
telnyx/types/external_connection_update_location_response.py,sha256=4cGAnY_WFqai4nRUocd3Pxj_UEE_zxhxIYi5IiUYchE,480
|
|
541
|
+
telnyx/types/external_connection_update_params.py,sha256=qeqOp4IfWGDB4M-FVzmajfvbt6zJgH5F0kr4AnvyLec,1538
|
|
542
|
+
telnyx/types/external_connection_update_response.py,sha256=2p8qkkiRVv2SLPVPEI89kj8SVM0EZkrhbvkWGIyLcqc,347
|
|
543
|
+
telnyx/types/external_voice_integrations_pagination_meta.py,sha256=pZLFD1IGt4WoDaMnjYPgsGnQ8rwrug63KFo6RAddK-U,418
|
|
544
|
+
telnyx/types/fax.py,sha256=7ETX6rzk1-OI6EDY46etLm2-0NgIx5ygGenEHWSVMVA,3220
|
|
545
|
+
telnyx/types/fax_application.py,sha256=8Pw6o5WK0n-7DyvWcdbJhxWSwvtcnjNb1gILk6A7FIA,3239
|
|
546
|
+
telnyx/types/fax_application_create_params.py,sha256=33oSb8nW2bAfPBY5J4-lI4A3FXR-ky6vayZA8ASxRAc,2741
|
|
547
|
+
telnyx/types/fax_application_create_response.py,sha256=CxbkkI6uYzWW_aCz35u5AcB7TF4Nbi6aFdItA_1ERnc,327
|
|
548
|
+
telnyx/types/fax_application_delete_response.py,sha256=Ev09kcStaWFde1CodwFyiVUCvqBzpUriMvnp-fOishc,327
|
|
549
|
+
telnyx/types/fax_application_list_params.py,sha256=uw6Dms_0MZSGPGF8C1m2EmM-CPAgNDsdE_CUbgRozQY,1917
|
|
550
|
+
telnyx/types/fax_application_list_response.py,sha256=kj6wc0kO72zuCtpUf2cTI8d-nAKsmgR8GigNrTMuB5I,422
|
|
551
|
+
telnyx/types/fax_application_retrieve_response.py,sha256=lr7XQMsYEB6TVZiStkztnmjTP6I3YCRE4KT_PP9xlUw,331
|
|
552
|
+
telnyx/types/fax_application_update_params.py,sha256=FKGjBU_L6Bwt6b22g9-EMw5KP3CYdAhRWx9jqeDxLYs,2919
|
|
553
|
+
telnyx/types/fax_application_update_response.py,sha256=g4jaE6eD4PVDapMuFXEYRVAx-Il1shPKWXG9Y5AONEA,327
|
|
554
|
+
telnyx/types/fax_create_params.py,sha256=5dWNYJET4yIF_8qeYYgguXtNs0w6nxvur2YD1yVr2qA,2594
|
|
555
|
+
telnyx/types/fax_create_response.py,sha256=0LiA8SFITw3My107KPfJEJ5wjgvcy1PIsw9Wi2vXmRQ,271
|
|
556
|
+
telnyx/types/fax_list_params.py,sha256=LtYISzAfuZgInUJM-Obob7d_2coAfsKsGaF_WfSAtIY,2504
|
|
557
|
+
telnyx/types/fax_list_response.py,sha256=EhzqiXoifMLhA7FSDcJZk8xWTGlO3Vc5uKxOKTbmpf4,314
|
|
558
|
+
telnyx/types/fax_retrieve_response.py,sha256=HNHPttDOk7sI5qRTJki653d_c_-CqrD_5Szeih4PLaE,275
|
|
559
|
+
telnyx/types/fqdn.py,sha256=UG2PjoDPWpQw6sVEIPo5wWxa8eLjyHeSr1TZsJtwssk,1158
|
|
560
|
+
telnyx/types/fqdn_connection.py,sha256=HsEtVrgYN_oTeUavZKp51Idl-zS46_O5RgU2chTQSRk,5153
|
|
561
|
+
telnyx/types/fqdn_connection_create_params.py,sha256=8yuN3yHbxRXo7zZzOU2bCwSewPdshUjo2gAnq_xytmA,3549
|
|
562
|
+
telnyx/types/fqdn_connection_create_response.py,sha256=jBQQSBgHiebHAM-88QRkQ6MRxKoZzCOfZ4MzmYIqM4g,327
|
|
563
|
+
telnyx/types/fqdn_connection_delete_response.py,sha256=1Ob9iRfPP_y6M-yIqyTL9p9Y8Zq48tPZiOPs_3ekGt0,327
|
|
564
|
+
telnyx/types/fqdn_connection_list_params.py,sha256=9CjHsQPHVBAZB1dLlD_CYDghiaUTc03RBE2ikFc0c1I,2149
|
|
565
|
+
telnyx/types/fqdn_connection_list_response.py,sha256=YAwOc7hDFPCr2q6jPJfFWyqGN6tukYG54fiKCLew_MU,463
|
|
566
|
+
telnyx/types/fqdn_connection_retrieve_response.py,sha256=Q0a_AMV86r7sjBDniH_Pzcs8TYrovJ1I0MsF9YX7U20,331
|
|
567
|
+
telnyx/types/fqdn_connection_update_params.py,sha256=m3Inml153-h4sSwnxc1UhvEfBmOReVHkCQaANB5YMHg,3321
|
|
568
|
+
telnyx/types/fqdn_connection_update_response.py,sha256=qkWV8k2V94-3h-pvpExAFfKm5z2mS0CzzsJDsBy5qGs,327
|
|
569
|
+
telnyx/types/fqdn_create_params.py,sha256=XlsZOd3vpMA2g8_9KCEfirxoVeE6yzZS3obXWXpWNec,846
|
|
570
|
+
telnyx/types/fqdn_create_response.py,sha256=iYpL_OO1SHpy-kptK_UU-obsFXaMKZ2JI5dSaJDFVo0,276
|
|
571
|
+
telnyx/types/fqdn_delete_response.py,sha256=ejbmu4Qu0OyvG5pSXWp9kCRy8N4TufysmAiU31StIrU,276
|
|
572
|
+
telnyx/types/fqdn_list_params.py,sha256=CmEpAiZdk_wYFlHmb-qWmnkX1fXndw46j4kz7vv4L9A,1015
|
|
573
|
+
telnyx/types/fqdn_list_response.py,sha256=z8DboVaLqRuuWOHg6SIU0yJ245hWVB78KiUyLc26VD4,412
|
|
574
|
+
telnyx/types/fqdn_retrieve_response.py,sha256=hV3nxN_gn9dEMJOeB_Djr2jvru1ki_Fu3U6gRgFe3ik,280
|
|
575
|
+
telnyx/types/fqdn_update_params.py,sha256=ZxytN1IGdK7AazO0adj2keaYcLQcrbg0FZSVDo9GzRY,806
|
|
576
|
+
telnyx/types/fqdn_update_response.py,sha256=4-MH10Fql-YEbJUv7PAg7Fy_zW9jT_ADMvmtFsv3Uyc,276
|
|
577
|
+
telnyx/types/gcs_configuration_data.py,sha256=_72u8Duy6sCXXFPltTwhMTg6b7KKdQqKaUVWAwHolzg,469
|
|
578
|
+
telnyx/types/gcs_configuration_data_param.py,sha256=Zc1ZsIQqqNJF_zQX3Sf0yiuObdhHjZCkAdjcqOMmLN0,473
|
|
579
|
+
telnyx/types/global_ip_allowed_port_list_response.py,sha256=H4-7w8b2CS64so_sNuYaFL3rx02LCFiAV-dvIFHhkmU,774
|
|
580
|
+
telnyx/types/global_ip_assignment.py,sha256=JCbyu7DI2xp2pigGQIX_MdZjuI_uXAzxlBQINdYa98I,850
|
|
581
|
+
telnyx/types/global_ip_assignment_create_params.py,sha256=3h0B9GxdrErOQvHRhNHI2IyufiH2eAx6M9c4E5D3q2c,448
|
|
582
|
+
telnyx/types/global_ip_assignment_create_response.py,sha256=3Nk2qDHmXHnn6Mk34iBu6dTJiVDQbgKRBH8cVrNtan8,348
|
|
583
|
+
telnyx/types/global_ip_assignment_delete_response.py,sha256=vI-3WS5HN8mjsw75lbOKLNG_DR0UrU6Rkg9wVNnV2Xg,348
|
|
584
|
+
telnyx/types/global_ip_assignment_health_retrieve_params.py,sha256=vYHv8b1y_l3vOH_LEH3BxtCaWLTuqXKE2Vf1owOvknY,1499
|
|
585
|
+
telnyx/types/global_ip_assignment_health_retrieve_response.py,sha256=5rYTeysqPol_BEvQ6CKmLzpmXgVcFjP74kP1XC42RjY,1628
|
|
586
|
+
telnyx/types/global_ip_assignment_list_params.py,sha256=xWhyVlMxUe4e7AlFynHxdqScwSU7s4OF38W7EHECDcc,531
|
|
587
|
+
telnyx/types/global_ip_assignment_list_response.py,sha256=Q84EO0vf4YGbNzJUwmIrZoPLIHaBhiGur6EnuPkvgbA,443
|
|
588
|
+
telnyx/types/global_ip_assignment_param.py,sha256=g1Hq7lILcJqlN3Ya3D4qaiGdIRFH_0Ham8GNOiAaPuA,434
|
|
589
|
+
telnyx/types/global_ip_assignment_retrieve_response.py,sha256=gHXHPwjLpqHLepGeQk_YTgp1OLwrvKIkQSKZnIS3XTg,352
|
|
590
|
+
telnyx/types/global_ip_assignment_update_params.py,sha256=CtftDhUehD5_ewDihVfYcCLdsBip3c89UnUu_z1khB8,442
|
|
591
|
+
telnyx/types/global_ip_assignment_update_response.py,sha256=WO68c_jECZdL2cUMuWs2FKusk_wpZAsJVYuG0vs1vus,348
|
|
592
|
+
telnyx/types/global_ip_assignments_usage_retrieve_params.py,sha256=mmRSXb85WrjYw2L16M1cpygsEInWmhLMOMvllzxk-Dg,1499
|
|
593
|
+
telnyx/types/global_ip_assignments_usage_retrieve_response.py,sha256=17kQvuX8DiY_Tm3yaLwlP3VziKf5Joo10OeYLMumt-c,1828
|
|
594
|
+
telnyx/types/global_ip_create_params.py,sha256=e242eIxYSsKbQN5qTEUjIczP4dT4Ofb9q02jfKJZPB4,502
|
|
595
|
+
telnyx/types/global_ip_create_response.py,sha256=RteY5Hnyt7DiJlO9sY3GeEsGSR_UqeD0DTWq9NO7Fog,773
|
|
596
|
+
telnyx/types/global_ip_delete_response.py,sha256=j7ooiKXM3RW24T4Up7o5CI9PCw0Ykd7PRXsrMjoS4C0,773
|
|
597
|
+
telnyx/types/global_ip_health_check_create_params.py,sha256=ZVRIPypvozFKA-XvaklVI_f3Aawepqb4J_MuQnK_GEE,503
|
|
598
|
+
telnyx/types/global_ip_health_check_create_response.py,sha256=ClsININVlLIgmO_C4uHLLbUYKMr4OVyhq1vvvB6cLxQ,703
|
|
599
|
+
telnyx/types/global_ip_health_check_delete_response.py,sha256=3_06r-FgveTK8R7oucBV-2Fv-QIIGEu0Hj2n_FGpvC4,703
|
|
600
|
+
telnyx/types/global_ip_health_check_list_params.py,sha256=A0-sk3W4FQmjVXjs9CUIhu2m-CKaHiDrX7IPzhxOdOI,533
|
|
601
|
+
telnyx/types/global_ip_health_check_list_response.py,sha256=zeuhpCPQ7mpIge9fiKMrjmiiBDKhvQGdpUKbCdch_XU,798
|
|
602
|
+
telnyx/types/global_ip_health_check_retrieve_response.py,sha256=I23wikVzaIBMmepMOv-zH6vI5rvnoyrOQHfu6rJOkjQ,707
|
|
603
|
+
telnyx/types/global_ip_health_check_type_list_response.py,sha256=8FYPCA-KZic37D9197aQn0tTCX2qN2wZ_7_zyK8ygRo,609
|
|
604
|
+
telnyx/types/global_ip_latency_retrieve_params.py,sha256=kq-h9uZDA5Orqf3Uf-CofKRDQea2HKWyKr91pO4mUZo,894
|
|
605
|
+
telnyx/types/global_ip_latency_retrieve_response.py,sha256=0W_ILIWvVowj4ywibFMf3-hOIwvpKCDeGnGNc1F7sas,3642
|
|
606
|
+
telnyx/types/global_ip_list_params.py,sha256=REdqj6idyXZUk5Y7Rju1s0IwSoSp4XX-o7Zz1cEjS14,511
|
|
607
|
+
telnyx/types/global_ip_list_response.py,sha256=RmDl1wxjCFGvWthfTLHQxDkVEGPV7hA7WXnCPnRxnN4,868
|
|
608
|
+
telnyx/types/global_ip_protocol_list_response.py,sha256=rc1nYUw5WRbn5lcE_nMy-WjeG4JAyicaeiBCN3QVzZE,547
|
|
609
|
+
telnyx/types/global_ip_retrieve_response.py,sha256=7nTjnOkRChg2oAWsRlUQ4aaUhz62K_psKtGu26D4hXQ,777
|
|
610
|
+
telnyx/types/global_ip_usage_retrieve_params.py,sha256=zqokpjfGzZQ79V8S7RpJrrsfiMQVwvp_-j1jojN5-80,890
|
|
611
|
+
telnyx/types/global_ip_usage_retrieve_response.py,sha256=W9Q5wX7pIOrDoyKNR5-HcFhtEe48TQzOY_S0cvjZtCU,1169
|
|
612
|
+
telnyx/types/inbound_channel_list_response.py,sha256=NK3YJPL41tz9KbklLQVElsPkhO6qYqjwHm0x58W0wo0,494
|
|
613
|
+
telnyx/types/inbound_channel_update_params.py,sha256=H4tTrypo5U5VNFBVcUd0HQUzoDhXiu3pm4sXvn767OI,367
|
|
614
|
+
telnyx/types/inbound_channel_update_response.py,sha256=7yNLrDclWAmzICqurOzKVeu20Du8kLvRl_R1NmzFCsI,479
|
|
615
|
+
telnyx/types/inbound_fqdn.py,sha256=gRTjhor3JBPGjVB9JDRD8ulsTn3v5Z-UydzmR9fuvoI,4078
|
|
616
|
+
telnyx/types/inbound_fqdn_param.py,sha256=9rz2Gs4NUw-tBch4KhnoE0u_HsGnvBZqizFuO0T6kKI,3869
|
|
617
|
+
telnyx/types/inbound_ip.py,sha256=GOJSmMdUMrBddHa1TSlhJvAK_XR0uYOPVYlkaU6MnFA,4134
|
|
618
|
+
telnyx/types/inbound_ip_param.py,sha256=efEmlS1-T2YpvABoRio71XugjNFZ-jS1wiCg-bZx9Dw,3855
|
|
619
|
+
telnyx/types/integration_secret.py,sha256=iod7QJKV0aqvMJHDjKJyAe4PYmQfAjCWGBTOutYjkfA,373
|
|
620
|
+
telnyx/types/integration_secret_create_params.py,sha256=DoWwA0bhSj6SIljRMN7iv3ZNmQN_npNO-JOf6q-ldgc,790
|
|
621
|
+
telnyx/types/integration_secret_create_response.py,sha256=-n6QbC8716Z-zGHnhFics9-Wd8KXNNfa5kKb_hn5vD8,296
|
|
622
|
+
telnyx/types/integration_secret_list_params.py,sha256=RjzFEJSO-MtQWgfaH1sTn21rZ2KbWlx5vwaFk8arjZ8,665
|
|
623
|
+
telnyx/types/integration_secret_list_response.py,sha256=bUDa9L-TFeGu54iLHznlPrqDxblU5-kvne_4FHTREfw,459
|
|
624
|
+
telnyx/types/interface.py,sha256=zGECkEt_NBe3ZcpikwnBkQ5dhQZstLTHS8sHnols8gE,536
|
|
625
|
+
telnyx/types/interface_status.py,sha256=vnWdgi1uHsb1BtzF0PXqjf4ZUTIWnf0lPR7MkTLHRMQ,259
|
|
626
|
+
telnyx/types/inventory_coverage_list_params.py,sha256=WiFTHcbOuVEcjorp7jNH8zAKO3OuxabnrcVeHhISEM0,1943
|
|
627
|
+
telnyx/types/inventory_coverage_list_response.py,sha256=w8ZNE4wLVnTa5yxODMOnq5cczPYr8iOdkw04Yqfaquc,1060
|
|
628
|
+
telnyx/types/invoice_list_params.py,sha256=9W6qbQvx5Yp_4KggyherbMP_yG2oFtaY6dybDa3Bq40,618
|
|
629
|
+
telnyx/types/invoice_list_response.py,sha256=tXaSP-2nm-7-133OPlMGH1pOTooXv9kSNVOYNHS0D1g,763
|
|
630
|
+
telnyx/types/invoice_retrieve_params.py,sha256=bfpM2eDVXM0T7FGt46Prd8TnaU7h8Ur18rkaEwBzapo,325
|
|
631
|
+
telnyx/types/invoice_retrieve_response.py,sha256=Shvm4JL41ccxAdnnmdz1nHY-pLcVgYz7bzYBcYaqBGc,646
|
|
632
|
+
telnyx/types/ip.py,sha256=RSwRfygR4d-_EgI-FgFEsW_b2BfZJ19R7mocu5Jjcbg,859
|
|
633
|
+
telnyx/types/ip_connection.py,sha256=TmHW6Zx3libvIs2H6cXm9s0uL3oQdvag0dfcSjdAHQs,3509
|
|
634
|
+
telnyx/types/ip_connection_create_params.py,sha256=jPo3QfNgOQbmzMI9r-r9LaExeERC3Vj-j8tUHrvP8yI,6048
|
|
635
|
+
telnyx/types/ip_connection_create_response.py,sha256=QUqCPTWkTH0Mb2wZGBn1MlX5Uf7AG5D8EVkhiyz5NNU,317
|
|
636
|
+
telnyx/types/ip_connection_delete_response.py,sha256=5PQmnKYa4l-cSFfWwRx_NnU4ZM7RE6CqcmI87xTKd_8,317
|
|
637
|
+
telnyx/types/ip_connection_list_params.py,sha256=rHxnQu0RyiAOnheVlGw9Z9s80ojquzS-R8gRnAzz0VI,2145
|
|
638
|
+
telnyx/types/ip_connection_list_response.py,sha256=4WHzuYlF1LZJ6i5GM_ma2tj3xfctXT6lH7HjXgo1Bn0,453
|
|
639
|
+
telnyx/types/ip_connection_retrieve_response.py,sha256=n-CUM-CzVIHyVPIerlCR7gK2Vyf5f2dpmzZx5gy9bPs,321
|
|
640
|
+
telnyx/types/ip_connection_update_params.py,sha256=PpyQ_Yo1eYGI9SBvhny6tf93Zo9Pyp7WQ4IwfS9BbPs,3157
|
|
641
|
+
telnyx/types/ip_connection_update_response.py,sha256=EN-GukpeJY9sZlP6tX1ZCaZNbifFeW44cbvAAdli_BA,317
|
|
642
|
+
telnyx/types/ip_create_params.py,sha256=1i8FqhZM-eQ0H41fL59wa4dtxNi7tExbPlDiQ4D-fag,493
|
|
643
|
+
telnyx/types/ip_create_response.py,sha256=Uckq1_DTTr1xE0naoQRFVqDYj3axzWEDETGOjrIt1bs,266
|
|
644
|
+
telnyx/types/ip_delete_response.py,sha256=EgmWr-xD1nYZYsLZTJOuFfDKqYpgL0j-Hc9dpqGMDcE,266
|
|
645
|
+
telnyx/types/ip_list_params.py,sha256=28znpwELsDbJDDem9rJSfzidx6oz0r566bDSSRfwbqk,939
|
|
646
|
+
telnyx/types/ip_list_response.py,sha256=VfLSL-D5oiHZehp-RLyUL0cM0vy9ts_lVgXqmq9LZ70,274
|
|
647
|
+
telnyx/types/ip_retrieve_response.py,sha256=nU6bXtxoSbIwhdA-F_evbzkY_tEBHELqswOM9FMWdiA,270
|
|
648
|
+
telnyx/types/ip_update_params.py,sha256=CF3ddXGC7qC64M-bILSbK5M2dn0EWjawjyfIFhcX1No,493
|
|
649
|
+
telnyx/types/ip_update_response.py,sha256=rBqbzwGDFgSeRV0S6nUSO1crx7094qtfeXnqM8fuUPM,266
|
|
650
|
+
telnyx/types/ledger_billing_group_report.py,sha256=ywIzPZsbG6XPg3JgFtrr4LYdS4YDWDQhiBbGEUVVvL0,1103
|
|
651
|
+
telnyx/types/ledger_billing_group_report_create_params.py,sha256=o_tg5q25ln0PQLatVN6o-7RoqY3oGzk_e0ziugR0cjE,416
|
|
652
|
+
telnyx/types/ledger_billing_group_report_create_response.py,sha256=tRb87tzw-7pVdmhhF0orQoKPiSMDexuqJLQe53-X6vY,379
|
|
653
|
+
telnyx/types/ledger_billing_group_report_retrieve_response.py,sha256=G3gZ6g4C705dcxi0qQGUfnql-B_3ova2-gBJUgakSrc,383
|
|
654
|
+
telnyx/types/list_buckets_response.py,sha256=EWUn2sweJ7AmJH3ZefcAJJF1h28yvpFuYLobJbkG8i8,567
|
|
655
|
+
telnyx/types/list_objects_response.py,sha256=3PdlRHiSkuYs5z0SKe-F3-tcLs0QOmhpAz_B29UqLUk,702
|
|
656
|
+
telnyx/types/list_retrieve_all_response.py,sha256=4NBVNSCVCdGu3vrg_vU55WVzaITLD15wMxcLsXXkSQo,673
|
|
657
|
+
telnyx/types/list_retrieve_by_zone_response.py,sha256=H7mqctugxuKTtaOGXZmDUjTcnhFE8hjIAOdeTy_23u4,679
|
|
658
|
+
telnyx/types/managed_account.py,sha256=VLHqyrra3HUOr4ZghPDBkk_bnWUefXBKszXIlO2y4QM,2067
|
|
659
|
+
telnyx/types/managed_account_balance.py,sha256=za-n6FpR9ikwgR0R9ptn3yy13fee1btIiK3uKUJR2qk,704
|
|
660
|
+
telnyx/types/managed_account_create_params.py,sha256=Ty55dT9o60TRbZwhy69j2oTe_JHPEnKPYbP3V3vFzUI,1770
|
|
661
|
+
telnyx/types/managed_account_create_response.py,sha256=rIzUaH3NXj5jOlqRL96WF3kegoEtT94oSuehoJWThF4,327
|
|
662
|
+
telnyx/types/managed_account_get_allocatable_global_outbound_channels_response.py,sha256=qsqhkKR8_FVjhCJIiKLhkwIddHaw3falaDqvBE81ikk,1473
|
|
663
|
+
telnyx/types/managed_account_list_params.py,sha256=R0OPiAZAOtDABOM8PqGNmpzlz-LwZBaWNGn0FZEOGQU,2393
|
|
664
|
+
telnyx/types/managed_account_list_response.py,sha256=xIj4B7LIyvLXhbP_IJls-5SjsS8ubg42dFsaYmPNxLI,2010
|
|
665
|
+
telnyx/types/managed_account_retrieve_response.py,sha256=6jJBmeZzhqRzdpJ5sFLkdAG1sH5F2nySAQu4HMsVHhI,331
|
|
666
|
+
telnyx/types/managed_account_update_global_channel_limit_params.py,sha256=TXdwH7qASkJtxnVGqNoroWun_k9nthmcnnY9i0OBwjk,618
|
|
667
|
+
telnyx/types/managed_account_update_global_channel_limit_response.py,sha256=yw6c18DyLx70jDg28QhVPMz6pqUVH2f2CwfjxOOTVyg,994
|
|
668
|
+
telnyx/types/managed_account_update_params.py,sha256=7S53YiXUCIFcIQ1n1cOBBOHCHuEDzqlFIHzLl2KZllo,636
|
|
669
|
+
telnyx/types/managed_account_update_response.py,sha256=V0hwiXhj3IwJ_bVXo0rS3p9pthUVK6aYIxnOgNzKwKo,327
|
|
670
|
+
telnyx/types/media_list_params.py,sha256=Y5Zrf_jr31uMO9Kcb2cgDH9lf2tZSUlU4ByJCjwQ2fg,516
|
|
671
|
+
telnyx/types/media_list_response.py,sha256=xlII4oP9nnLdewf_PCStHsfsBrSuNMCf0wGCw53zh_s,401
|
|
672
|
+
telnyx/types/media_resource.py,sha256=J8TFAIHrrk7EM1vlnGqA8lfdxJnOS-oGXJ7iTECUS6s,725
|
|
673
|
+
telnyx/types/media_retrieve_response.py,sha256=R70S76qDgbrCM0vacFsqAlzKVQHm6wgpsBvCYdYLCsI,310
|
|
674
|
+
telnyx/types/media_update_params.py,sha256=eB9KZJ7hCIuIoigT7mX2PxExKR6bWFS-g0dA6GH9a4o,599
|
|
675
|
+
telnyx/types/media_update_response.py,sha256=xgSNnPfA7XZMgO4Lu5NTLMzErfX92Ba0-YwvW2_AHTQ,306
|
|
676
|
+
telnyx/types/media_upload_params.py,sha256=tZtcDr8yKHxzDTxaUyUNFASpXhx1RT4GqR83bRgBFjg,683
|
|
677
|
+
telnyx/types/media_upload_response.py,sha256=zPcJCT1pR2MihfA6LKQj33Z0jGZeR3_C9eATOXpnhyY,306
|
|
678
|
+
telnyx/types/message_cancel_scheduled_response.py,sha256=yW-f1v_b5j7LBcnaEkgeoGiPb-gbyhez4lVb2n_X1-Y,5542
|
|
679
|
+
telnyx/types/message_retrieve_response.py,sha256=Hqi1sZb9_pMkTseo8T73n_olHp4YTnZC6LVa8zK8F7Q,6568
|
|
680
|
+
telnyx/types/message_schedule_params.py,sha256=jtSZsUWbFjwsB_GfE50bPRJ8U8nfZBwUz-h5IPsXasU,2175
|
|
681
|
+
telnyx/types/message_schedule_response.py,sha256=HSI2fpWK9PI7YN-S5gBJBjs559TfO4ioNh7X5a-0BQo,342
|
|
682
|
+
telnyx/types/message_send_group_mms_params.py,sha256=EI3BorJVkpQMjXm2LR8Ia07AXFF8vhRJ5PPEJHs8vto,1340
|
|
683
|
+
telnyx/types/message_send_group_mms_response.py,sha256=M8mg3UWUZwetaO70N8ZQTst3W4uwXRDrfwmXFGy5ZEM,350
|
|
684
|
+
telnyx/types/message_send_long_code_params.py,sha256=p9ELZFJN4Fu_Cvz7YJ7D64UgnayrVyzl06qDP_TdGn0,1659
|
|
685
|
+
telnyx/types/message_send_long_code_response.py,sha256=CPseOgGFF5XlwnATqm97uTxn-hlVxWu79P3KFu38kuI,350
|
|
686
|
+
telnyx/types/message_send_number_pool_params.py,sha256=jliSWfwsIoE2UxrPlYraXlQ6QRnua0SGNy6GiBuEcMk,1578
|
|
687
|
+
telnyx/types/message_send_number_pool_response.py,sha256=ODsjmL4YVLWXA2-v7JB15Va8-CaHBPpahueEsFsWEN0,354
|
|
688
|
+
telnyx/types/message_send_params.py,sha256=-B-V1Y3-zigaqPysfQjzjOYXhOve8Q1TJrIllKq1UdQ,2173
|
|
689
|
+
telnyx/types/message_send_response.py,sha256=VNa37bL5N0Qt3B20cRTALoHph6u1G3dCKoW22j-ml5k,334
|
|
690
|
+
telnyx/types/message_send_short_code_params.py,sha256=Z9CjSzDjkVxP6H6aeCyMc2JyqS6jltFBsEzs9VAG__k,1661
|
|
691
|
+
telnyx/types/message_send_short_code_response.py,sha256=0OXWKYMyPdTTOWoOy_Da9jCe6uxP8lTyF3BSHGSzmHU,352
|
|
692
|
+
telnyx/types/messaging_error.py,sha256=EeXUDByRpKqwPefeMwsqJVB4__yLLW9pm9fnB4NxnCo,575
|
|
693
|
+
telnyx/types/messaging_hosted_number_delete_response.py,sha256=CVOIUTUYoNAauR5_qR9Z5wHKZlC-Kd6dloNaEh10-pw,386
|
|
694
|
+
telnyx/types/messaging_hosted_number_order_check_eligibility_params.py,sha256=PLPxnk3SeSPWajDHQJj6XA7NHtqeBx7v3byKJbS0fTE,435
|
|
695
|
+
telnyx/types/messaging_hosted_number_order_check_eligibility_response.py,sha256=4H-sjzqm8_JfUf3TUfSB5BzHQqnpykg71qahr0JYpK8,1439
|
|
696
|
+
telnyx/types/messaging_hosted_number_order_create_params.py,sha256=Ay7kNOjJ2MdP01fHIKR8TvUDD341cQJP-52ySSSrqZM,548
|
|
697
|
+
telnyx/types/messaging_hosted_number_order_create_response.py,sha256=mUc-UMRn97djZdMZQmgnRA_9IWdb3NHFo1SvmuZVHbs,396
|
|
698
|
+
telnyx/types/messaging_hosted_number_order_create_verification_codes_params.py,sha256=ZrAF8aONdXbeGpuv-9W4kQ4k3n31PVgBQtGesTqRnpg,477
|
|
699
|
+
telnyx/types/messaging_hosted_number_order_create_verification_codes_response.py,sha256=3zHtH-TX1HcYKSuQijpiiCK_YEuUbv6gyp4L8w8d-fk,1085
|
|
700
|
+
telnyx/types/messaging_hosted_number_order_delete_response.py,sha256=BdbxdizK_SWxkQ6Wff_KpU2-EupgRI8OSzZXtDNgNFY,396
|
|
701
|
+
telnyx/types/messaging_hosted_number_order_list_params.py,sha256=LLNeISOHCaBAVyRU3XieFDKnZs77K5iU6eAjU_kchDg,547
|
|
702
|
+
telnyx/types/messaging_hosted_number_order_list_response.py,sha256=21cPhWjJ6oXk2bEy47B0vpoDGXk97oknuk7em0eVwY0,491
|
|
703
|
+
telnyx/types/messaging_hosted_number_order_retrieve_response.py,sha256=S_p6TlC3KNtYxW1xJlaXBit_PR1aFo-P-IOMZoTH0Ig,400
|
|
704
|
+
telnyx/types/messaging_hosted_number_order_validate_codes_params.py,sha256=bKs_pD6TKWx57yrJTtSUdbU1-xWbZNH440DwmyvcH3A,529
|
|
705
|
+
telnyx/types/messaging_hosted_number_order_validate_codes_response.py,sha256=aRGN-DpMdazJachszQq5xDkYurgp4i5gZsPQJF2E86o,590
|
|
706
|
+
telnyx/types/messaging_numbers_bulk_update_create_params.py,sha256=hzbJdHY8umINo5PCSX_BHiPVBGCd_Crg7bCt_hvKdRg,745
|
|
707
|
+
telnyx/types/messaging_numbers_bulk_update_create_response.py,sha256=t6z5Qz2gSeAT3VwzyyH0QIwX8V0m8mp_J9vxs3vhWdQ,844
|
|
708
|
+
telnyx/types/messaging_numbers_bulk_update_retrieve_response.py,sha256=hKxAXimCg3mgso6gXw7eoDk5f7oKfVyXAsMpRz_vCvo,848
|
|
709
|
+
telnyx/types/messaging_optout_list_params.py,sha256=cKZZaJSeg1NnE90jUqMZf_PkGUHauBeSjMEUXpYoSdg,1651
|
|
710
|
+
telnyx/types/messaging_optout_list_response.py,sha256=-iQf34X1cGMQquQMc7Gz_OAL3qE5C7-v4AsOOOOyApU,1038
|
|
711
|
+
telnyx/types/messaging_profile.py,sha256=GP751keUEwvqbCkB2G7DmSlrX55m2xB_cdWICx6HxJ4,3429
|
|
712
|
+
telnyx/types/messaging_profile_create_params.py,sha256=jR-zq5JDv-NGn_GSPED612U29WLN1Q8boG1Y-qwQX44,2825
|
|
713
|
+
telnyx/types/messaging_profile_create_response.py,sha256=lrKJ60WkmPNI7ZhE78eliZkMchXTntaHeELKKKw3jJE,337
|
|
714
|
+
telnyx/types/messaging_profile_delete_response.py,sha256=_-OL_u-nBz647c0vDDZSJlbwUZ7754TGKuqDXaRgYP8,337
|
|
715
|
+
telnyx/types/messaging_profile_list_params.py,sha256=0A5pYKasObvboNZK8MOVBSJ5OreYeX06B4RbC4yk4u4,721
|
|
716
|
+
telnyx/types/messaging_profile_list_phone_numbers_params.py,sha256=NcbSB4-Rzi_AmmnWvDuWbp03_Jg0GrQsIP02H2yILvk,551
|
|
717
|
+
telnyx/types/messaging_profile_list_phone_numbers_response.py,sha256=4pezg_ywlKr2ngUdGQCznSgx5wHoBttdTatq_KIk-Uw,514
|
|
718
|
+
telnyx/types/messaging_profile_list_response.py,sha256=QtWMM8qc8qM3UG5oL8RqjyrgDokuRUnqfQXaFRxDsI8,432
|
|
719
|
+
telnyx/types/messaging_profile_list_short_codes_params.py,sha256=QqCwh4H_jPttFNqBnXd1hzIPkO2GbV79MONU4x2BxGQ,547
|
|
720
|
+
telnyx/types/messaging_profile_list_short_codes_response.py,sha256=Tb1kixdj1k7poCXEgYZRooezv4-U2_Nb14cnft6sy3g,438
|
|
721
|
+
telnyx/types/messaging_profile_retrieve_response.py,sha256=F04p6wT0Dtsh_Aw0-rFTsDTlD6098nyQREwQ9u7ePpg,341
|
|
722
|
+
telnyx/types/messaging_profile_update_params.py,sha256=Atx974wjQfi7vYCTPMhtClfLzsP7weZd5-e-1QbuobI,2955
|
|
723
|
+
telnyx/types/messaging_profile_update_response.py,sha256=lWTHuMd6Vt2uoTCGvI88lTXjGWkSRnigPlvIYaFSfI4,337
|
|
724
|
+
telnyx/types/messaging_url_domain_list_params.py,sha256=gUE67OY2ccV9gTFIrUSWEiRa-iNa5zZaZ-8Um6sBusQ,531
|
|
725
|
+
telnyx/types/messaging_url_domain_list_response.py,sha256=TMtcw9meS1vJ4o8IQQ-d68DruhpW2kase1xbdX2V7Ao,551
|
|
726
|
+
telnyx/types/messsage_rcs_params.py,sha256=MTfNV0i2x6vlSI7cVnJhH_QKX5o9QQZcmMqibn-EE8U,1437
|
|
727
|
+
telnyx/types/messsage_rcs_response.py,sha256=8W5ZQHOEMzLDIYqA3XZD6g2E7-ngOMsBGYOXSsEyZx4,1245
|
|
728
|
+
telnyx/types/mobile_network_operator_list_params.py,sha256=GafRtCJ927VGDgXgPaQ2oNpTh6rU-Xa2bqiL4jMnbyg,1504
|
|
729
|
+
telnyx/types/mobile_network_operator_list_response.py,sha256=uZ2kMU3-zAjCFEPxLDwKiXFnakX9zcP8nGpYnyBezdo,1789
|
|
730
|
+
telnyx/types/mobile_push_credential_create_params.py,sha256=kMoVIaS7Ygz8pvgyv4p6RwmRpJyAugl24-3bgtANNIc,1267
|
|
731
|
+
telnyx/types/mobile_push_credential_list_params.py,sha256=ccE4Ofnu13LxnhYvkOorp7BjcCtBh0oTqXzYsttQ59E,866
|
|
732
|
+
telnyx/types/mobile_push_credential_list_response.py,sha256=KFf0Uz3G7fFUe5HF0uZB2wDh0MuFU4V53fxDQwEdnu8,434
|
|
733
|
+
telnyx/types/month_detail.py,sha256=6ayDmcHxHNDqVZIOZu5Av-NjzgTFCqA2wr9zX-V2aqQ,407
|
|
734
|
+
telnyx/types/network_coverage_list_params.py,sha256=7N9lcKtccEg6ZtCmqCWS_usGMFU9AU1npwNFwT8KBt4,2069
|
|
735
|
+
telnyx/types/network_coverage_list_response.py,sha256=Q6S5wAfhCqvFl57OzsDjibLap0IXNO4Fm2lVfgAUh04,1110
|
|
736
|
+
telnyx/types/network_create_params.py,sha256=XajE0tvPaG-e5i4_30VePKHGK6Xka_D1bktbYIiTwEg,334
|
|
737
|
+
telnyx/types/network_create_response.py,sha256=aYfNgKwusjp1IrpMj34Y3Bczmbr456QSzbXH3fDI5m8,498
|
|
738
|
+
telnyx/types/network_delete_response.py,sha256=2x2aRltq02aKQCEpjaQwonu_eoudgWnEPFG5FB4g5pI,498
|
|
739
|
+
telnyx/types/network_list_interfaces_params.py,sha256=eV3AM60VuCmgDIrHs_EB3h4vL0N_jJxZN2FXYTG4DLQ,839
|
|
740
|
+
telnyx/types/network_list_interfaces_response.py,sha256=sZC6zGIF-PHzIjEshn9K10JOwSSmzPxmW0jkB5M4-nc,1057
|
|
741
|
+
telnyx/types/network_list_params.py,sha256=NIL2YbADK9396SXYFNaNKb46MIK4P3JX_fxrnMbF39I,719
|
|
742
|
+
telnyx/types/network_list_response.py,sha256=z35IYf2M_PGqT9zmSketZ5gic9d0K3c7ubF1j6LLpmM,593
|
|
743
|
+
telnyx/types/network_retrieve_response.py,sha256=nX9xcoZ3qkFNe0BDTwB8_nlZOh89ZB0ty4nvjTj3UYg,502
|
|
744
|
+
telnyx/types/network_update_params.py,sha256=aDxMifKKJAj2vWZ2s7mctrRU0GHuJ4IqaLs8BtLQs-c,334
|
|
745
|
+
telnyx/types/network_update_response.py,sha256=z4GC4qLn4uW7rNOflBm1FGo-kelgHjfPDyJwuSOuHAs,498
|
|
746
|
+
telnyx/types/notification_channel.py,sha256=dQFfAsgWttObfTB6IaSXSXN7oadzOhhPIFZ2rQ3yFsI,912
|
|
747
|
+
telnyx/types/notification_channel_create_params.py,sha256=aAs1hOTb0JSHIscNrS8W5SeFNl27MT0ugsMmDb51Sxs,568
|
|
748
|
+
telnyx/types/notification_channel_create_response.py,sha256=HS-CttoRa5PkGieMmEGhmqsG8Ii2NPb06Zy-RqNW_Ko,385
|
|
749
|
+
telnyx/types/notification_channel_delete_response.py,sha256=yB1xXai-jrUX4CHz745fgPsQamei0AVRO7CfJfKqO6U,385
|
|
750
|
+
telnyx/types/notification_channel_list_params.py,sha256=MeavhhYGluRsd8qzSEtVVIVq5grUyjFdpqnJ1SiMGPg,2414
|
|
751
|
+
telnyx/types/notification_channel_list_response.py,sha256=1_fsQ4hTOgHYz-TXFYMeNXBES4w9fpLgOsVAVpurZXU,447
|
|
752
|
+
telnyx/types/notification_channel_retrieve_response.py,sha256=T1xJmculH0EOnc8vtZ-A8uyOYRTfq-jQoBwfS1qS_kg,389
|
|
753
|
+
telnyx/types/notification_channel_update_params.py,sha256=dgd-OumbHM8w_S2GWwGmjANhYERWYtAVufaPWnaVQa8,568
|
|
754
|
+
telnyx/types/notification_channel_update_response.py,sha256=8yNTIaOsCFa3YRzzQySXCrl2dWY8COFQhyTTL-72eWg,385
|
|
755
|
+
telnyx/types/notification_event_condition_list_params.py,sha256=C6ZtXouF2Bz5jp0pSM8EJ1m0_YiuvnkckokSKW0U3CM,2428
|
|
756
|
+
telnyx/types/notification_event_condition_list_response.py,sha256=IK1eHtzCWoGo88aBMJeCvvovv2wcDcru7wfnDms-HM0,1657
|
|
757
|
+
telnyx/types/notification_event_list_params.py,sha256=85iUeHYXVG_1rXarunnhEalrqkHJSfWtZshFTnsRcpU,529
|
|
758
|
+
telnyx/types/notification_event_list_response.py,sha256=dckImUqUmraSzdZHVrjM0yR1mz0rx2d03Or5U43_5vA,872
|
|
759
|
+
telnyx/types/notification_profile.py,sha256=8RDsMAgIqVP7DFuVASn7QJRhmt6RwOdggj9by0ixK_4,603
|
|
760
|
+
telnyx/types/notification_profile_create_params.py,sha256=CLf4x-TQoP0y4-jFPka8M5gUuxKwBwOoP7t69my6i8U,322
|
|
761
|
+
telnyx/types/notification_profile_create_response.py,sha256=0UtG2Y3xbdrNcUYge8pkj0oXBVAeOwnbpHlhrcRad2U,400
|
|
762
|
+
telnyx/types/notification_profile_delete_response.py,sha256=NpmDve7It7mz4WzVT1oGPy95a6NraIrFzEuyzpFYoSQ,400
|
|
763
|
+
telnyx/types/notification_profile_list_params.py,sha256=0JvLhWVnmlIYVMLOxNZ7q1SoI3E3rO0qLPo7m6QnKzE,533
|
|
764
|
+
telnyx/types/notification_profile_list_response.py,sha256=-VoVPtoGrMH4D54jRr4wdswA5kfHguH6v_cyjDiQDkM,447
|
|
765
|
+
telnyx/types/notification_profile_retrieve_response.py,sha256=bFe9FSbPS-9i2ZBQBEGg57VyDaXXZl9Efg3ecdacKlM,404
|
|
766
|
+
telnyx/types/notification_profile_update_params.py,sha256=6IyIxgqVidecKVjW2ZwxTgSfrWuNtGINE4OEuBTXbjg,322
|
|
767
|
+
telnyx/types/notification_profile_update_response.py,sha256=PZ-eQm02DKH3tuutEOy4UHLpToIeiqtwkAmPKxn90CQ,400
|
|
768
|
+
telnyx/types/notification_setting.py,sha256=awPy8EjxmvfC36f-658j45dA_FSDCc98fmYX6KHYCUs,1595
|
|
769
|
+
telnyx/types/notification_setting_create_params.py,sha256=U4kG__Df00fVjfNBuyhXusdvbHYEAIs3-p0J3Irx-Ug,744
|
|
770
|
+
telnyx/types/notification_setting_create_response.py,sha256=5TSpXC5NIkV5banHdUFEoGNoNWlGButMZm9Ry_ttOQ4,352
|
|
771
|
+
telnyx/types/notification_setting_delete_response.py,sha256=l9rkTCXzZzIoupp8maRyjvsY08XkV6K3pVJYIyHu_ow,352
|
|
772
|
+
telnyx/types/notification_setting_list_params.py,sha256=asm1og2Q6QUJBbdN41uOjF8Dncq8oa1otdsRuuJaJgM,2414
|
|
773
|
+
telnyx/types/notification_setting_list_response.py,sha256=ONXm7PgqHB6TeqF1oDVr0gP-DSqTZJOuAmKBU1-c15A,447
|
|
774
|
+
telnyx/types/notification_setting_retrieve_response.py,sha256=NFQkk94MAXF3ot0u4t3rXZAwudxhPqaYRVFq_dqheOI,356
|
|
775
|
+
telnyx/types/number_block_order.py,sha256=226tL1-5XZvPh2o9IyHt8TEyW9CZKcgPKcvVIK9Gs6A,1503
|
|
776
|
+
telnyx/types/number_block_order_create_params.py,sha256=6Vz9INkiBWcqKdpbTXK6pjfImU6V9c5woVW1IfUM9X0,727
|
|
777
|
+
telnyx/types/number_block_order_create_response.py,sha256=CXQge7fsbItHevOROpe5HHM5Wd2_hpTs7RZoYywPeao,338
|
|
778
|
+
telnyx/types/number_block_order_list_params.py,sha256=Q8uiFXJHhVJLFkDtMggmbUUV5gsMqQsjVV8-pap9AyE,1336
|
|
779
|
+
telnyx/types/number_block_order_list_response.py,sha256=gVg7hYp7oc_7MCwXnQDDY5h6V7AkXGH16tlLONSqCXA,433
|
|
780
|
+
telnyx/types/number_block_order_retrieve_response.py,sha256=z8GDxAW7nve4s8XwrLlK5-kYeWhtzU-UGs53YRpT4L4,342
|
|
781
|
+
telnyx/types/number_lookup_retrieve_params.py,sha256=X0GGsgHDd4OcRGuUKm0aYKdR9Cb2fUaWvb9qvIDJkms,380
|
|
782
|
+
telnyx/types/number_lookup_retrieve_response.py,sha256=pAnrc8p3s7iRGe2-dKJsCnX2APTcW3hu51gy4eW_Vww,3937
|
|
783
|
+
telnyx/types/number_order_create_params.py,sha256=T3od4tjkMPSGm4PfW6BkK06NF2IPnS3ZmmcIR2HzQYU,1024
|
|
784
|
+
telnyx/types/number_order_create_response.py,sha256=_zkBmnjlzzZicnfJyjzWVpXvxtyOaU2vIzMCsT6RN1A,363
|
|
785
|
+
telnyx/types/number_order_list_params.py,sha256=2H5_3PQvzgV3tUpvwOo0NCHrkahPFPwP4j_f6Z7TY5c,1391
|
|
786
|
+
telnyx/types/number_order_list_response.py,sha256=AXiLFow63ej-xw4B0HesMGEADB6_p5-Oh54nHruHDvw,1894
|
|
787
|
+
telnyx/types/number_order_phone_number.py,sha256=wpGRFkVuCg0yO3bIoo5Hv-iSuZJ9nbBksyQC9-BftKk,1632
|
|
788
|
+
telnyx/types/number_order_phone_number_list_params.py,sha256=JgFstLW4b5r0RTUlyVQJ9Ak1hvoV9_Z6SUDYgxExG3Y,521
|
|
789
|
+
telnyx/types/number_order_phone_number_list_response.py,sha256=SLqqmsdnx0t3lYSljw6sFmliMxRJxMIIcqflEP67F6Q,464
|
|
790
|
+
telnyx/types/number_order_phone_number_retrieve_response.py,sha256=9DmebUNX8ZLC6zWdWBLN0ukZpk9iU7Ve3zdngyCLUHs,373
|
|
791
|
+
telnyx/types/number_order_phone_number_update_requirement_group_params.py,sha256=o86glZWBwvbm2JpSRF70I07VcNXGmYTel8MUqFNOTEo,418
|
|
792
|
+
telnyx/types/number_order_phone_number_update_requirement_group_response.py,sha256=uFes84BD0aq_YRhxosQ2pFCE_A9aHqMEEdeFMsSq2T0,1264
|
|
793
|
+
telnyx/types/number_order_phone_number_update_requirements_params.py,sha256=6oZLLdQRiNMYv3VOaojY-UGMkkBunKzYfxi4S6t9J1c,488
|
|
794
|
+
telnyx/types/number_order_phone_number_update_requirements_response.py,sha256=gpBTWv98n_JccRd-mwaYkVUtNiWihdavKqHOaNylPZM,393
|
|
795
|
+
telnyx/types/number_order_retrieve_response.py,sha256=1WygTrroK2bSgUhhmjmCIEVsx-TCN6gpyLdtrdAHC3k,367
|
|
796
|
+
telnyx/types/number_order_update_params.py,sha256=yWf5rSyWr-POo7WNMqRI8I1f88lEy1yPRPjnAMBAFzY,532
|
|
797
|
+
telnyx/types/number_order_update_response.py,sha256=vOdtpv_CwkLei1nCn2u_-qN1YYrEqRxjbqf5BfWDkK0,363
|
|
798
|
+
telnyx/types/number_order_with_phone_numbers.py,sha256=mq6s2u4zP8BgkUKps5Eu63wM4_ENFPvOjoM9HCo5xrE,1579
|
|
799
|
+
telnyx/types/number_pool_settings.py,sha256=CcZYwwtrRYxlRlo6T5x0xf8rGXFc9wSVywZx0ggk3EI,2042
|
|
800
|
+
telnyx/types/number_pool_settings_param.py,sha256=SCrUVV3gOtW9PzrDuw7R4Ybs5eFbAQf08JWlwSlIoDQ,2086
|
|
801
|
+
telnyx/types/number_reservation.py,sha256=_1l8-ixrFpi3FotXyCboICXQ-6d0dfl8bwJAYOOJgOg,963
|
|
802
|
+
telnyx/types/number_reservation_create_params.py,sha256=5oZPExGxbANAy-2sdrqlrxauWtzaNf2JRamkI0Klysw,510
|
|
803
|
+
telnyx/types/number_reservation_create_response.py,sha256=1qUbizDelchE47cM7K3p6D246JDRplYms1a1DIwgKgs,342
|
|
804
|
+
telnyx/types/number_reservation_list_params.py,sha256=gT6Vib1kXeqpK3KRLx66a-HZDFr5ndOvnMQLRLIXLA0,1455
|
|
805
|
+
telnyx/types/number_reservation_list_response.py,sha256=BmCn63NV2cHRhO661HgQEsBfWQZ3kY51lHEO8jPC1HI,437
|
|
806
|
+
telnyx/types/number_reservation_retrieve_response.py,sha256=mNgKrwL_Qq0rVPeCZzhaTeubpca-uUE0YUx535U2_HU,346
|
|
807
|
+
telnyx/types/numbers_feature_create_params.py,sha256=2FA52HiGIPk5dYUc3I3_1Ak8Q9sFDwPITSgmx_cR1yY,338
|
|
808
|
+
telnyx/types/numbers_feature_create_response.py,sha256=4p7DBbd4HzNmumwal8ozpOjOPI0o9aaZvNZ3v63RW7Y,365
|
|
809
|
+
telnyx/types/ota_update_list_params.py,sha256=ZD8dqS8kn7nt3ltxPy-NzYTnMiImZBJeyJM-vMhz_y0,1016
|
|
810
|
+
telnyx/types/ota_update_list_response.py,sha256=sl7b11aO8Lh7zqbbowc9lxJ1QpTBifyipIZKJ6m4aGI,1145
|
|
811
|
+
telnyx/types/ota_update_retrieve_response.py,sha256=L3TXeJdR8lr3V9GUlLlYvZxqoL1iFaNlQDIj8nCkmHQ,2358
|
|
812
|
+
telnyx/types/outbound_call_recording.py,sha256=Oi7cpfC6_RSVeIt9cGMe16fv80wip8TeWWJ3PfTbGOM,1020
|
|
813
|
+
telnyx/types/outbound_call_recording_param.py,sha256=X5HTQSDC75DGMKMKVkvFqW0Ewpd7zVMst6dKxFxKcC8,979
|
|
814
|
+
telnyx/types/outbound_fqdn.py,sha256=RW1cscBSwJN4qyaTzZBRwxIDW5Ca70C6bStZSsNFbe4,3022
|
|
815
|
+
telnyx/types/outbound_fqdn_param.py,sha256=mobTVWB81k1DxKLByzd_WwwPqIgcUC8W18WWi2lcARw,2811
|
|
816
|
+
telnyx/types/outbound_ip.py,sha256=j1SaTTVU3p5TUyiK6-3yRcaAEobgMI3pAmZC_IP4cXE,2573
|
|
817
|
+
telnyx/types/outbound_ip_param.py,sha256=KyjUlQNEOHs4r9uUw4WRUgfrmM-91ed5IyICuxOFFM8,2402
|
|
818
|
+
telnyx/types/outbound_message_payload.py,sha256=NZqKQ6LlI9Iytn_NpVy_dFPdAchyoOkTI4171FYxnAM,5476
|
|
819
|
+
telnyx/types/outbound_voice_profile.py,sha256=pFYvaW838wJvuEEHxFj0F21bH-QgGfazo1rv-yr9vS8,2701
|
|
820
|
+
telnyx/types/outbound_voice_profile_create_params.py,sha256=V5ICKJvFVpc3Ol2KV7HSUTUGRRd3Jp0bDw67QAPLnr4,2123
|
|
821
|
+
telnyx/types/outbound_voice_profile_create_response.py,sha256=0nh5001-5Gj2vAv5Tp8Y84gz1Ako8SJrVrxHB_L5rp4,358
|
|
822
|
+
telnyx/types/outbound_voice_profile_delete_response.py,sha256=0z_bamv9ZIwA53u7aAVfEj7pX1UH40zLeRsRJu5K-54,358
|
|
823
|
+
telnyx/types/outbound_voice_profile_list_params.py,sha256=GAFzFtLpJvxEY39BOHdYtnUW4347mXJGBYD8e65sgg8,1697
|
|
824
|
+
telnyx/types/outbound_voice_profile_list_response.py,sha256=VG6cUGRlLsnDazOrcgyKI8812efr_mgqcWOk9goW3bg,453
|
|
825
|
+
telnyx/types/outbound_voice_profile_retrieve_response.py,sha256=G5wf7rorFkkMXAgaTEElW526zTd4D6_5zPK8VP-V1Ko,362
|
|
826
|
+
telnyx/types/outbound_voice_profile_update_params.py,sha256=ZFFeB2IgG8mSRYkM5m4E9p-lq86gCADtIl229kfpp9Y,2123
|
|
827
|
+
telnyx/types/outbound_voice_profile_update_response.py,sha256=0kERLKyY68RTrtppaNxtrocov2knttSff6a-R9jf-LI,358
|
|
828
|
+
telnyx/types/pagination_meta.py,sha256=DnXM2qToZRFfjgcvw7A4vC3EFAkHp_Yj0-zJhIxlkPU,368
|
|
829
|
+
telnyx/types/partner_campaign_list_params.py,sha256=bolV6Mb1r6Mc16qAieOHrUALgC8bSwkSHUzrVqESMiY,1071
|
|
830
|
+
telnyx/types/partner_campaign_list_response.py,sha256=LPX5oC1NpKPzapjI41-qWHcA7rTfhrcv9Zjcoawz7Kk,526
|
|
831
|
+
telnyx/types/partner_campaign_list_shared_by_me_params.py,sha256=EhOqECUFifOHMDMbqyQXDbNzuXX0nvhUUNgL7YH1PXI,608
|
|
832
|
+
telnyx/types/partner_campaign_list_shared_by_me_response.py,sha256=8TsyF0pZ5kdFGszbtC85sIa2MN9iapdkFy12KKtYzl8,1322
|
|
833
|
+
telnyx/types/partner_campaign_retrieve_sharing_status_response.py,sha256=_bnBxfNOoqKNCy4qX2VYc0YoQapuPi2cQudhNUrgjxA,363
|
|
834
|
+
telnyx/types/partner_campaign_update_params.py,sha256=wcp2TqqmlALt1mH3AaFDJUkIiog0iGw8PUO--ynvKZE,594
|
|
835
|
+
telnyx/types/phone_number.py,sha256=HTtwm2aXCCpHVoiAdUR9sXfMnAyorcfuSy-s7yhlyFQ,1549
|
|
836
|
+
telnyx/types/phone_number_assignment_by_profile_assign_params.py,sha256=HtZr64iOklTOOnGJB1_YuT4J8OmjUSZ5gVvcC224vlw,1107
|
|
837
|
+
telnyx/types/phone_number_assignment_by_profile_assign_response.py,sha256=o1boBDTLvDJQFW3X3M3MQn0lA-ZP7mqq09X6nEMQ__0,1508
|
|
838
|
+
telnyx/types/phone_number_assignment_by_profile_retrieve_phone_number_status_params.py,sha256=X2sIPT5cpdXlaEP59Bj6fOC2jpLIqJUr3fVuinNd-7g,471
|
|
839
|
+
telnyx/types/phone_number_assignment_by_profile_retrieve_phone_number_status_response.py,sha256=hMfuHKsujvkhRVk8I5a1Mt4SP3XmL-W61ww4qrF3Ph0,721
|
|
840
|
+
telnyx/types/phone_number_assignment_by_profile_retrieve_status_response.py,sha256=vhTIjgI-wuwy7G2i551xEJLYQ2bEwC3XzjmAR4eI2I0,700
|
|
841
|
+
telnyx/types/phone_number_campaign.py,sha256=nC6YMWfNjxU49elkIxofdkeeYebCImE2RRCIR9kW8uI,1713
|
|
842
|
+
telnyx/types/phone_number_campaign_create_params.py,sha256=zJ4NCI9mbcLWYRZ6TuDDyZ9wk4k_qrBhltdwe7usbHE,636
|
|
843
|
+
telnyx/types/phone_number_campaign_list_params.py,sha256=77A1YYCwj37a0S9lChI-xZl4D0ocIRRybqoC9cv7enY,1209
|
|
844
|
+
telnyx/types/phone_number_campaign_list_response.py,sha256=rEhkg2Ge9HUi79PRaF8SjebXZcwhArBvme7jkxO7aI0,451
|
|
845
|
+
telnyx/types/phone_number_campaign_update_params.py,sha256=UPFD0w1Tl7v_1otFvPA0oCgrQ0lEcQUvV40crvqW9qU,641
|
|
846
|
+
telnyx/types/phone_number_delete_response.py,sha256=sunjrC12GXt8aaMfPY_jXUnW9ZsngBbPtnKsFl47PxY,3741
|
|
847
|
+
telnyx/types/phone_number_detailed.py,sha256=UeQHN8WsOn-jLmgPvRpfqL5M9TIX9VHMsTWhi42DqEM,5103
|
|
848
|
+
telnyx/types/phone_number_list_params.py,sha256=HdEH7vARLUuAZpMinx-6MhMjRgO5k3yLXb7jJ1JCyiw,3882
|
|
849
|
+
telnyx/types/phone_number_list_response.py,sha256=1CpTovSXDGaY6fV2kydhlb7S0bkjvAMSWNq1SmxnC-Q,432
|
|
850
|
+
telnyx/types/phone_number_retrieve_response.py,sha256=4-PnbHooOOehtlvixbyN3BPg43mRfa4_46oDDqPt2Os,341
|
|
851
|
+
telnyx/types/phone_number_slim_list_params.py,sha256=wrvjBZIntYBqNKa77RRB7lwLKtvANeojFvbW-rEDl9M,4290
|
|
852
|
+
telnyx/types/phone_number_slim_list_response.py,sha256=jBgptkdSSjUK-EOIcptt-qNn0twAmxxeto5DjwiHHoU,4556
|
|
853
|
+
telnyx/types/phone_number_update_params.py,sha256=tX8hP6I-bQwOr5r5DJ0Ob2q07G9l5Al9wl7OSHJWmyw,1076
|
|
854
|
+
telnyx/types/phone_number_update_response.py,sha256=EAkMZOjG2ZS0YDIVNgjgv21Ih67wbktES2S7lm9tzgw,337
|
|
855
|
+
telnyx/types/phone_numbers_regulatory_requirement_retrieve_params.py,sha256=agABXgYQ-WVsTSxim_Po4fKGlBPvuJJTrzYu9P-gqFc,551
|
|
856
|
+
telnyx/types/phone_numbers_regulatory_requirement_retrieve_response.py,sha256=Dbhuyieyz_2LdvPinfGHyWK1ybZe3aE9XJIqqnofdMg,1490
|
|
857
|
+
telnyx/types/portability_check_run_params.py,sha256=WX6mHOZ0ronurwwq4FVVmG9L2qYdxTEqDr9ulTMLvRU,394
|
|
858
|
+
telnyx/types/portability_check_run_response.py,sha256=_y2ZkWfs0E32q6AbNdSw6NjEiqRgrwkPfhQSp6kpE24,869
|
|
859
|
+
telnyx/types/porting_list_uk_carriers_response.py,sha256=nmz5ttx9Vj2K41BLNyz_0oF0Vkf6RGhHaiC8KRsTT50,1052
|
|
860
|
+
telnyx/types/porting_order.py,sha256=3FV6apMlWBIBhhsVneCvpD4DV-LQzqwEDQj2n8Ag-oM,3643
|
|
861
|
+
telnyx/types/porting_order_activation_settings.py,sha256=hWNxerN8xlXdV_vDXyF8R4xqoIyu05RxNol3R9F4Gog,1087
|
|
862
|
+
telnyx/types/porting_order_create_params.py,sha256=G1DoUm5IL-wVoU_oNF80c7wXYjYaJLIkrUGUKLhCq-k,498
|
|
863
|
+
telnyx/types/porting_order_create_response.py,sha256=rHUZqnEylVSSs10cA4xufxzdw3HbgEbZ3Bc73ou10ek,329
|
|
864
|
+
telnyx/types/porting_order_documents.py,sha256=e7LNPWm6fVMGxkABWdkJbQG8VjIZ757wx9Td1D2eKcM,436
|
|
865
|
+
telnyx/types/porting_order_documents_param.py,sha256=F8pfn8vVOrjF_GcyHygI2Cd2-4z_5vu04p29K1xzAWA,440
|
|
866
|
+
telnyx/types/porting_order_end_user.py,sha256=Wby1t2cBzToDMy4lVaLvY_yXhaeQWR1PZwEG6vbT6xg,476
|
|
867
|
+
telnyx/types/porting_order_end_user_admin.py,sha256=6na8_NE5rG0mHgXDGKjO7bdiQSvxLQKFCT0hmctRcXo,1076
|
|
868
|
+
telnyx/types/porting_order_end_user_admin_param.py,sha256=tE_pu51AYgX6flLJuX7rHeWWsPHf5pv0DM305nAQKa0,995
|
|
869
|
+
telnyx/types/porting_order_end_user_location.py,sha256=hW-qGKm-AaXfVZDqhu-R4r0CiQO7CSVc_u1wutGwXIU,775
|
|
870
|
+
telnyx/types/porting_order_end_user_location_param.py,sha256=1ijg5ZggPEedL9kqSX_um9hoelwiUgJa7ckkYZG0YMg,711
|
|
871
|
+
telnyx/types/porting_order_end_user_param.py,sha256=92FdqH4jN4p4IZpIRm8ILNUIwKSYx1RGVSKT-NtDsMw,513
|
|
872
|
+
telnyx/types/porting_order_list_params.py,sha256=5V-QMBgffr-hVb0MEb8ZeazLivbflrKIApq12t-2HQ0,3735
|
|
873
|
+
telnyx/types/porting_order_list_response.py,sha256=-MKEyjCUC4zQEOhn2PMvg1FDakvAsA_ovd2JHs9hHfk,412
|
|
874
|
+
telnyx/types/porting_order_messaging.py,sha256=jkGGFmt4PzaFCHJ52MRKjE-uag6TYmReUbavR6YZZrI,974
|
|
875
|
+
telnyx/types/porting_order_misc.py,sha256=Eerfrhs5T65zrIgWLkTJkh2KSJJIrfI_sdBLkgiRfVA,1085
|
|
876
|
+
telnyx/types/porting_order_misc_param.py,sha256=0lDFlBob1uZWCVqDalcTtcGCC1jCN22nWB3XoGYRxYs,1044
|
|
877
|
+
telnyx/types/porting_order_phone_number_configuration.py,sha256=AvPu1eTbXTvtgKHbT5i9DUbvb9dAByAPraj1kfLOsW0,778
|
|
878
|
+
telnyx/types/porting_order_phone_number_configuration_param.py,sha256=McGfKCwYjaPxcreqd3-miROjUSErAxINJqQnAfyE0XI,749
|
|
879
|
+
telnyx/types/porting_order_requirement.py,sha256=43qV51DDSK05NhoDLelmFt6NY0d8OJoWxloVmabmAE8,684
|
|
880
|
+
telnyx/types/porting_order_retrieve_allowed_foc_windows_response.py,sha256=dQcQ8KbuyQYQDk7r82D54v0N44PaLXF8utkLZ1mcOX4,801
|
|
881
|
+
telnyx/types/porting_order_retrieve_exception_types_response.py,sha256=7IIjmipvdyBHfuid0fo_eLR0lorxynzYfZ15Uj9AdxA,412
|
|
882
|
+
telnyx/types/porting_order_retrieve_loa_template_params.py,sha256=_w_mKZ58KJLDbDryptJo-S1rAY5bxKIH_i4iTcuiYyE,463
|
|
883
|
+
telnyx/types/porting_order_retrieve_params.py,sha256=m_xHyUB2qzIh6KsQL6f5fh5c9H0aMlS3TixccgQF_Yg,364
|
|
884
|
+
telnyx/types/porting_order_retrieve_requirements_params.py,sha256=ma5kpg64h2CDiHmp2xkgpG0otMRe9K-hCPP8XwSxLXU,551
|
|
885
|
+
telnyx/types/porting_order_retrieve_requirements_response.py,sha256=bn8-lL-xao5MVIce8cOpVTlBHK89Q3ogQte7bTg4q9U,1565
|
|
886
|
+
telnyx/types/porting_order_retrieve_response.py,sha256=PLePbTzTmbAf3MYMrNI1pcrbD5uPk-lunurZMbEnHWQ,472
|
|
887
|
+
telnyx/types/porting_order_retrieve_sub_request_response.py,sha256=2Xo7jn0efyCcs8CZWOfnATM4N8o_xhuLiuD5hNsGcY8,553
|
|
888
|
+
telnyx/types/porting_order_type.py,sha256=s2TI5xjXtNPvClhyv_Ou1BhTLDMm5bkVr48ZVwg3Ems,226
|
|
889
|
+
telnyx/types/porting_order_update_params.py,sha256=hyj36QAuy-zgzi6NihM2OcUjmeBgFoIaUqtOKEO4MCU,2533
|
|
890
|
+
telnyx/types/porting_order_update_response.py,sha256=tb4S0gw_MtqcVIj2T8fvbbWsldLBsV_vt9n8OrUYejU,468
|
|
891
|
+
telnyx/types/porting_order_user_feedback.py,sha256=a5wKwLZfyI0v_pGIuFdg5v_VVxDdFUj32igWD8IKx-4,502
|
|
892
|
+
telnyx/types/porting_order_user_feedback_param.py,sha256=3ZijhNy-FT6aQ3BSmROtXxfGOJmp7_Zw9mjuOrqmS58,506
|
|
893
|
+
telnyx/types/porting_orders_activation_job.py,sha256=kjNYw559YdY_eQ6VdybjjzN1miqeXH5jAkmD2sdMhLI,1600
|
|
894
|
+
telnyx/types/porting_phone_number_list_params.py,sha256=f0bnOfAdDTIc61WftlLgI5grFJxQtVSdKEnLlH1lIuA,930
|
|
895
|
+
telnyx/types/porting_phone_number_list_response.py,sha256=qCp904HWLjtaxPkPiAphMRqIcwryoeqlCpjuWAQYAfY,2261
|
|
896
|
+
telnyx/types/portout_details.py,sha256=evFNmf5RM3tnHHje440-4K1w0aEC2LiaWXaLTjhFZVI,3005
|
|
897
|
+
telnyx/types/portout_list_params.py,sha256=Qyzi-LgqsGqeCE6Ppvy9AW4aqmWAX5OIVxTUNT-CKRo,2664
|
|
898
|
+
telnyx/types/portout_list_rejection_codes_params.py,sha256=alCdjt42fAR366PqmLfpJoPikvMzevuEQf2hXksGa9k,575
|
|
899
|
+
telnyx/types/portout_list_rejection_codes_response.py,sha256=pnMFoyfbB9b8I4MJV7CnwPdGKQpY0TbEyqFERPVu8a8,442
|
|
900
|
+
telnyx/types/portout_list_response.py,sha256=VnJN0Zo0yyqV0sm-6jdyrzxjE1irEsoZ5xzDZSRze_4,396
|
|
901
|
+
telnyx/types/portout_retrieve_response.py,sha256=2eB1f97wBhv7mABepS2XpN29Fh5hizhzqR_J2HAdKkA,317
|
|
902
|
+
telnyx/types/portout_update_status_params.py,sha256=OJNfUyMeFuxSUCVYG8zO3j3_gYNXSyoxXJQ-M_LLMMA,532
|
|
903
|
+
telnyx/types/portout_update_status_response.py,sha256=DZsc9v2sM5BbDuJ5qkYqBJoByE81z7Z3yfWPTvvALxo,325
|
|
904
|
+
telnyx/types/private_wireless_gateway.py,sha256=xZQOQyatxZbdnMQfKkd3gjUfPSIo6bUjgYfscEBmQ5k,1460
|
|
905
|
+
telnyx/types/private_wireless_gateway_create_params.py,sha256=ZCM5-sLUZNR2ClezXeTtj7oN_R_kayA5iLFQA06GxpA,636
|
|
906
|
+
telnyx/types/private_wireless_gateway_create_response.py,sha256=wV5oT2wU9NJY6GnK9fonprvvqY-q7K4tKDeQLdlH9rQ,368
|
|
907
|
+
telnyx/types/private_wireless_gateway_delete_response.py,sha256=HBJx6UOxwtU1Gm0nXwd6XoFCaxv5aUu90yQ5dPU8lKI,368
|
|
908
|
+
telnyx/types/private_wireless_gateway_list_params.py,sha256=Bz0HwTYZ-U8YBVIXcx-5y6R14Q39bcOvZrSF2lDr9ds,1232
|
|
909
|
+
telnyx/types/private_wireless_gateway_list_response.py,sha256=6DhSZTWhZynupFu1BiXopQ3iHKknSXRtuyf87s2-tj4,463
|
|
910
|
+
telnyx/types/private_wireless_gateway_retrieve_response.py,sha256=WPfQudjKp11jgTvXv1a5XBF9_gINSrsvDP7u1jSOOTg,372
|
|
911
|
+
telnyx/types/private_wireless_gateway_status.py,sha256=HbQG5ENyO6NkzPa03YJVfaG-zb1xZuvLKdVRmmWpB1k,1300
|
|
912
|
+
telnyx/types/public_internet_gateway_create_params.py,sha256=Yhi5ohTHdCZ7MexAQwYKR3qje6aFSO97HovY6tKJuMY,508
|
|
913
|
+
telnyx/types/public_internet_gateway_create_response.py,sha256=alpJbSWrTaqNulJOqtLFtrppxW7Nn-7LC1fZ6f6XcqI,986
|
|
914
|
+
telnyx/types/public_internet_gateway_delete_response.py,sha256=WD55u53UpVnl9H46zbrZzOA9DLyEzFe_vc0X6cHG_XE,986
|
|
915
|
+
telnyx/types/public_internet_gateway_list_params.py,sha256=-TIyTdSSoajjgcmDnMhzf2y51UbPUvBWQySmoRVTLMQ,778
|
|
916
|
+
telnyx/types/public_internet_gateway_list_response.py,sha256=Tbdmh7WLYwoB-hn9QgFF8Ulzn35nt6XhY3TRltTzmCI,1081
|
|
917
|
+
telnyx/types/public_internet_gateway_retrieve_response.py,sha256=3733lzdFXizwofbuP3XUb31SrHmzoHpUYaoC440exaI,990
|
|
918
|
+
telnyx/types/push_credential.py,sha256=ejpKbK6TOL2G39kbR-9VW2UKM2dzUJ30fi8H4wLObXM,1007
|
|
919
|
+
telnyx/types/push_credential_response.py,sha256=eF_oNe-T_TNVN8sO74izsQm9J3j6lgV1OI8F42CkCCk,315
|
|
920
|
+
telnyx/types/pwg_assigned_resources_summary.py,sha256=QN-xzgP13t_oDDxee2drpEWmAJdYhDg7wUgl-cyEXc0,476
|
|
921
|
+
telnyx/types/queue_retrieve_response.py,sha256=uJ_n6yx_R_bnLVr-kWIdYWfIHQLQvwjYKcIs5_Vx_gU,939
|
|
922
|
+
telnyx/types/rcs_agent.py,sha256=xGSpBzSMJR6Ikx2-pFsJHPaYL-_-0UYe6EwG6O4bVIk,992
|
|
923
|
+
telnyx/types/rcs_agent_message.py,sha256=CTRBUFaOY8jHRJky2LjgRELWhDL8YAtBu0YtyiUrD8E,2316
|
|
924
|
+
telnyx/types/rcs_agent_message_param.py,sha256=nM_V43AmH2SXnr8bQvTfrS_g3ej4IHmHF9lVXTiXRl8,2454
|
|
925
|
+
telnyx/types/rcs_agent_response.py,sha256=FMps5lovF2yOeQ2n7hQUJrIzq4eGXIig6UDf34In7wg,285
|
|
926
|
+
telnyx/types/rcs_card_content.py,sha256=MzixYD24kMKH1eAq7g7Plt3b5zXAuoHOcpK-5FE7xCI,1103
|
|
927
|
+
telnyx/types/rcs_card_content_param.py,sha256=Zi4LKdY2eBtXFfhbnp9MYL04YoeMijewXmBAloGoEeg,1082
|
|
928
|
+
telnyx/types/rcs_content_info.py,sha256=xgj6d_XukwXOTPmRb6y-S_dE7EeNy_PB45Ino2zy4_U,488
|
|
929
|
+
telnyx/types/rcs_content_info_param.py,sha256=9VcYd97o_9eNRbu6jlkiGIOSmnm87f9RHPjkRk_Qj9U,512
|
|
930
|
+
telnyx/types/rcs_suggestion.py,sha256=vO26VwewIixLfTV2I-iDtvT7_3NYwGXCll4_PKK_-zc,3646
|
|
931
|
+
telnyx/types/rcs_suggestion_param.py,sha256=npO5BVYMj_Ok5LDxxU2XX8C_snh3eWasEV32KHq5SMk,3657
|
|
932
|
+
telnyx/types/record.py,sha256=PZKiKpovPR_hGKNPmtJD4v5hp37mqTn88bXnHy8dve0,585
|
|
933
|
+
telnyx/types/record_param.py,sha256=e7mXDk3lSFS76D1AuKOEahlGzEnDr1hxMy-7GWwG3YU,244
|
|
934
|
+
telnyx/types/recording_delete_response.py,sha256=J4KEMuOCWhhA7hjADDYNfkt7o7OZlLVttd1gpC4HYN8,339
|
|
935
|
+
telnyx/types/recording_list_params.py,sha256=yJPZB__JJfioYMT3kv8L1q2ZVKTj2Ri7UkJnbwzXpPM,1904
|
|
936
|
+
telnyx/types/recording_list_response.py,sha256=c_H6mrGUhwUfVBMxkmWOg2J6h6pr0xrMXQIlnXA5MK8,434
|
|
937
|
+
telnyx/types/recording_response_data.py,sha256=oLOd031wHG5MNY3j2ZajgD92e-2_OVTkDW6OwtDbzdE,2330
|
|
938
|
+
telnyx/types/recording_retrieve_response.py,sha256=sy2bO-EiLx3a9_TDcjSMVrXgSqSG8x7opUsYIg3cgu0,343
|
|
939
|
+
telnyx/types/recording_transcription.py,sha256=k1zaabZB04H_Sc7qDb84cIyx7BGbsWPO7u09TgEVt1E,1157
|
|
940
|
+
telnyx/types/recording_transcription_delete_response.py,sha256=Kqxe7XpQzvj9bfjbWy3w4KvJgPT7_-ty3LY7FkCdtnM,367
|
|
941
|
+
telnyx/types/recording_transcription_list_response.py,sha256=-nvyVDWdWhNJxybgI0Trr5bKRTsS9l6LYgcGx4OHTUk,814
|
|
942
|
+
telnyx/types/recording_transcription_retrieve_response.py,sha256=VpWVOtEIt6x7RZu0m3031jGNPQ3e3yuAxySaDD_yjd0,371
|
|
943
|
+
telnyx/types/region_in.py,sha256=Bu83TsCKERBSavJbUZZwfCLoD3s4KTA36QWzsjHp5ss,297
|
|
944
|
+
telnyx/types/region_list_response.py,sha256=63xraL2UKHy65WEzP8NokxC5F1rL_dRkjAgXBQaMrnc,865
|
|
945
|
+
telnyx/types/regulatory_requirement_retrieve_params.py,sha256=eycU8B3_UIYh6ikdRLRpIclZv3HLhlVAmS63HvdjRYE,1045
|
|
946
|
+
telnyx/types/regulatory_requirement_retrieve_response.py,sha256=ML0a3Te_vhCA3TQU4ex5jZjAdvRkIJkwVUjMtZ7v9Bw,1328
|
|
947
|
+
telnyx/types/report_list_mdrs_params.py,sha256=7m_OXWSKQUijlTks53XcjvRNgYxsd-hKcZJNZC5paO4,831
|
|
948
|
+
telnyx/types/report_list_mdrs_response.py,sha256=Y1V0bvqzZck5Fsz4GCImda5UeEqO8dY_tcOAK8FgACI,1958
|
|
949
|
+
telnyx/types/report_list_wdrs_params.py,sha256=1F3HOTfNH_r3v2wnw7cPkeCnZbUNytYEBHBw5I7i8wk,1132
|
|
950
|
+
telnyx/types/report_list_wdrs_response.py,sha256=lB7ZRXPcEl5GWkBZ_IwApjlv2JFspPMwl69uVU2RXoA,2386
|
|
951
|
+
telnyx/types/requirement_group.py,sha256=DA5mSuhIrdViPX0LTQkh53F498bfdpEtYpvFzdGXSm8,1191
|
|
952
|
+
telnyx/types/requirement_group_create_params.py,sha256=g5Lzv9ZV_vKw3SbRFmDhPJRDXd9ndciu6CoTAi0mXFs,755
|
|
953
|
+
telnyx/types/requirement_group_list_params.py,sha256=IJwCYUZjKaUC9UrywQWpxhlwWFHei718uuG6Jt8bzhE,1091
|
|
954
|
+
telnyx/types/requirement_group_list_response.py,sha256=tnppNgANdLq-yXTOCwgoRl-BCUFuptBDGdBIny-xQlo,310
|
|
955
|
+
telnyx/types/requirement_group_update_params.py,sha256=EVh55HBnuKVbWTOYEesXSEhA3mm2e5dUZKoBNUah1kc,660
|
|
956
|
+
telnyx/types/requirement_list_params.py,sha256=8G4Q8xaN1wXMz8uW2jtFZh4cnqzMNLk1G6doHNOogkU,1574
|
|
957
|
+
telnyx/types/requirement_list_response.py,sha256=ipO1ARIT-MsN54uE782YB_4bEbTEk4LLktEHuGpwi4M,1731
|
|
958
|
+
telnyx/types/requirement_retrieve_response.py,sha256=EyXQ0D16uMFD2B5a-SbFd2QGGUsTeVXvwbTp5w8wzGc,1646
|
|
959
|
+
telnyx/types/requirement_type_list_params.py,sha256=jjS3jrTShEdEIX_7yrP13zusEq_yV66lyDSS9JGyN-I,871
|
|
960
|
+
telnyx/types/requirement_type_list_response.py,sha256=kkvmLiF-lPy5mQwd0jcwDqU0U6lFNls_zHnnQcSS06U,457
|
|
961
|
+
telnyx/types/requirement_type_retrieve_response.py,sha256=t9ormEevbwJnL5gslwDVKLJlhPQn5CAV0kVpNSIRJcQ,366
|
|
962
|
+
telnyx/types/reserved_phone_number.py,sha256=8z3w5Cw0Vd2afQVykbNtevHMezTgtZAllDq9zM65UOo,994
|
|
963
|
+
telnyx/types/reserved_phone_number_param.py,sha256=ewvRLAcec95e3RXIAq5eVJEIL6tFb6eIVusaJi46Bmo,283
|
|
964
|
+
telnyx/types/room.py,sha256=MdRDNPRU33OKxPLmN19QhqGQWX4HhYo07kRHPUQBqzE,1544
|
|
965
|
+
telnyx/types/room_composition.py,sha256=GElu3NghoRWCiQmEGwYlaOhky3M-k2ZeW60susrIxUk,2505
|
|
966
|
+
telnyx/types/room_composition_create_params.py,sha256=wm0hJ_65TcRkDXNonQ2Z6b33q3jTunUs5C-zUhy85y8,1426
|
|
967
|
+
telnyx/types/room_composition_create_response.py,sha256=GQZSymCSbN1d6d26W2G4K8M9Egzybwy9wNt0cTqENVM,332
|
|
968
|
+
telnyx/types/room_composition_list_params.py,sha256=iyDO-mL0tmmY-dC6rW6w4jeJrwtvGoLMSdBeXTQiEJQ,1684
|
|
969
|
+
telnyx/types/room_composition_list_response.py,sha256=CqjPnZM4N2Kb1pL9lyqD8OV-Tse1T8l1EbUXNgKctEk,427
|
|
970
|
+
telnyx/types/room_composition_retrieve_response.py,sha256=Fg4Uz5ZpDRey6z73AqVFRUSH6526yXbWpHTwCqB2k-k,336
|
|
971
|
+
telnyx/types/room_create_params.py,sha256=GzoZDwr8s0Yk-94CaS0Ivx5IY0qa-QTsbli84zytXdo,1121
|
|
972
|
+
telnyx/types/room_create_response.py,sha256=wQj61G_7OGfR8ykFqdXnDM-sdmytyTLlrB05A26HOlk,276
|
|
973
|
+
telnyx/types/room_list_params.py,sha256=Pfg34XK5buM24xbr_IPWuj-A57uQYzmaG5SdRER-IPo,2211
|
|
974
|
+
telnyx/types/room_list_response.py,sha256=RZofogRWImEwCVeCjKcQyEMRRyCzlpNuhAYwiU93pOw,371
|
|
975
|
+
telnyx/types/room_participant_list_params.py,sha256=7tY-UrulWo2q34TGhXaS01HjKATqmVUUB37bPeevbAQ,3022
|
|
976
|
+
telnyx/types/room_participant_list_response.py,sha256=OtWkUCzHyMn_jVWBBkCseU0hKE4IDBqmO0Js7ZLXgck,434
|
|
977
|
+
telnyx/types/room_participant_retrieve_response.py,sha256=aNJAk2FH1CFZRFl2TJ2py7KnhKrwNbZgvAh1Q0y0BGw,343
|
|
978
|
+
telnyx/types/room_recording_delete_bulk_params.py,sha256=8x4bj4e2QpkWNW8uBnynMrlpFrxmI9oRdaW_oLQ_rbA,2659
|
|
979
|
+
telnyx/types/room_recording_delete_bulk_response.py,sha256=g7O3r3lyda5ypaNxfNLKHLVFFPgfk2kbnaLJjL63IfA,399
|
|
980
|
+
telnyx/types/room_recording_list_params.py,sha256=68gPUVJoQKgRfajL1x9JBEOKyvCqpL5b9mi9dz7Z2O0,2647
|
|
981
|
+
telnyx/types/room_recording_list_response.py,sha256=4TLnpWbuK5maXugvBy-z1XLe4u_LpR2frxvnOnnbEJU,2013
|
|
982
|
+
telnyx/types/room_recording_retrieve_response.py,sha256=lSIHhj_xWI9X3JsMp0ejf_Za9RdP5jpCSLwx6B7SCsI,1922
|
|
983
|
+
telnyx/types/room_retrieve_params.py,sha256=xl4Z63xlHii9uOTsW9ZSUgwALk9RRSzfLyW02zbeuSY,349
|
|
984
|
+
telnyx/types/room_retrieve_response.py,sha256=C-Eg1ciyPiI2qZUANW6u-IYBF-FQWRpGnCcs84jFkfY,280
|
|
985
|
+
telnyx/types/room_session.py,sha256=7Z476C13L7hPm1aLc1wZ9C7al-9J8GDpD1KJ6CDKom4,970
|
|
986
|
+
telnyx/types/room_update_params.py,sha256=S02-tBrY1eaCUyW0FgTJRthxy2uo4cJYFd055Scq-FA,1121
|
|
987
|
+
telnyx/types/room_update_response.py,sha256=4xnpqff5b3iKfa1MaVu_9ndZT_1aMe47IUo6llHOHQM,276
|
|
988
|
+
telnyx/types/s3_configuration_data.py,sha256=Rb8pg2eG16NrCE55L1W5Ex6uYfuzkFGICCqPf0znLCs,570
|
|
989
|
+
telnyx/types/s3_configuration_data_param.py,sha256=sYjOi-bzPGgyymqlitk9kEirs_OUkVTMYvRpkP6xIUA,540
|
|
990
|
+
telnyx/types/service_plan.py,sha256=eiGngnNzNDcqroKgc3A1FunGJzeBGI1JYp3xJP5WuSw,207
|
|
991
|
+
telnyx/types/seti_retrieve_black_box_test_results_params.py,sha256=e_NCLA5lPwgfSX8XV2XmfwgUYOOn84F6tSie-nYzOOM,510
|
|
992
|
+
telnyx/types/seti_retrieve_black_box_test_results_response.py,sha256=rbb1Pp1Co-nSg4KoPN1pFyQuLXoJw7flWLFZupqYbUQ,813
|
|
993
|
+
telnyx/types/settings_param.py,sha256=clujK8UiVrcGv2aHgB6NrWXFs4bNk9Hxn-YcLee605U,752
|
|
994
|
+
telnyx/types/short_code_list_params.py,sha256=XvxruVWLmmCNDRKF2bu9glplaaBvfiZqat4v6zX1B1w,956
|
|
995
|
+
telnyx/types/short_code_list_response.py,sha256=AvvRr9Aigrx328b_MK4ANs1w-2R_xlvt6j8rlCc3yRs,404
|
|
996
|
+
telnyx/types/short_code_retrieve_response.py,sha256=r0VPeGPNPdX7T0Z172uk1UGf4F7LZPpH8gzItaPGxnM,313
|
|
997
|
+
telnyx/types/short_code_update_params.py,sha256=VBSQiPYagcMNJEuVI0jf3BMREMbNTX8u_5WfYkEPx6M,358
|
|
998
|
+
telnyx/types/short_code_update_response.py,sha256=_LdVQSz5Tll_i2rN0UlLa3jQs_EkzDR3B8so_1bGYao,309
|
|
999
|
+
telnyx/types/sim_card.py,sha256=o6mHi6UWRLw4-vUV7wjLnYkIt5DfOD6hyID50Hni8Gk,6042
|
|
1000
|
+
telnyx/types/sim_card_data_usage_notification.py,sha256=IygmPGmwjIWghUlizAiJtvnPoVFIqwlhF54mZQCNU-U,961
|
|
1001
|
+
telnyx/types/sim_card_data_usage_notification_create_params.py,sha256=mZwgfx6uI9DZxUchwKWykIRKCsCsKxbI1oo_MR-pTcs,617
|
|
1002
|
+
telnyx/types/sim_card_data_usage_notification_create_response.py,sha256=L_CGKuBjgAnFbvYW-PhL7-lkcV36OHBbdkE2UbWo4DU,471
|
|
1003
|
+
telnyx/types/sim_card_data_usage_notification_delete_response.py,sha256=Ibd1Sr9CrpNa1TYCDhdMrths-l7QbWdF4ryyDeZUU7U,471
|
|
1004
|
+
telnyx/types/sim_card_data_usage_notification_list_params.py,sha256=t2fJ5zx1_Kdg5giMaDhJ7doaSYNSAr6zSZE4_01-9bw,649
|
|
1005
|
+
telnyx/types/sim_card_data_usage_notification_list_response.py,sha256=RHR2_mWmbZkP2I3zlrqpD3NysNXplfpdKcWxMaMt9JM,495
|
|
1006
|
+
telnyx/types/sim_card_data_usage_notification_retrieve_response.py,sha256=1sAgwZxXFhrHcgniIgJ_z0YNCrok97w3N_7dNPYtlnI,475
|
|
1007
|
+
telnyx/types/sim_card_data_usage_notification_update_params.py,sha256=QXs36w2t_6Rcuaf8bHlVFCzfBo26LWhISAqd1hkE4Pg,587
|
|
1008
|
+
telnyx/types/sim_card_data_usage_notification_update_response.py,sha256=mgl0D1N32KWxp1BuN4w4LE7bNk30nZsGfXsjzbBU_b4,471
|
|
1009
|
+
telnyx/types/sim_card_delete_params.py,sha256=0hWXOphTIb1QEYG-cwxX-8SSZ-lDf2o880O6OreQi7s,428
|
|
1010
|
+
telnyx/types/sim_card_delete_response.py,sha256=kPkuTddeFz1CvYmrkbd5H9llUH5omPbD5tRzplUXLoI,292
|
|
1011
|
+
telnyx/types/sim_card_get_activation_code_response.py,sha256=34Hq4t2NpAtuL5JPI2YOt4DCqnsX7Cf_0HgGQbyVF3A,446
|
|
1012
|
+
telnyx/types/sim_card_get_device_details_response.py,sha256=GhP3kHfEt81QVr9DhxXwHXlc2Dflfrc7EWtDnjW_4PA,969
|
|
1013
|
+
telnyx/types/sim_card_get_public_ip_response.py,sha256=g4zrRFlBPETm_vi81GlQ036f3exPxFJz64SWLg6fcRc,920
|
|
1014
|
+
telnyx/types/sim_card_group.py,sha256=ieUeE3Pu0ovo_7cZmx20Hrh_0LC6oTezyQRuDvaWnS4,1513
|
|
1015
|
+
telnyx/types/sim_card_group_create_params.py,sha256=GLR3ayzGZIHLEzQqz91RAz3IZsBlEutvtmlYso9W3ms,550
|
|
1016
|
+
telnyx/types/sim_card_group_create_response.py,sha256=GVG3yPRKLYp69eVHripBXu9kQn_5DfDKZVqyPCUtO2g,318
|
|
1017
|
+
telnyx/types/sim_card_group_delete_response.py,sha256=rUjSDPZyN6T_QP3hxIoGmPnVGt2YZQPwuIjJKkAdiBQ,318
|
|
1018
|
+
telnyx/types/sim_card_group_list_params.py,sha256=iak9E-kpKeCnsNjqqTKOMQsKAmra4wMkMRl5YtG-ysY,957
|
|
1019
|
+
telnyx/types/sim_card_group_list_response.py,sha256=cETfCRrn8oNxb-nNBzh8e-yzvFAS9Y8Y_5w_PhSlVds,1816
|
|
1020
|
+
telnyx/types/sim_card_group_retrieve_params.py,sha256=8qnfDQYr3BlCp27kJDmLsb_tigz96PUgL5C5Z2AhMxQ,341
|
|
1021
|
+
telnyx/types/sim_card_group_retrieve_response.py,sha256=wLwOKDSYRs2UkobvM1y17IcihJgpfhejrq_VyXwIp-M,322
|
|
1022
|
+
telnyx/types/sim_card_group_update_params.py,sha256=EidWSmuxGISfcl_73ycjHcKnl0PimisMjWYAuUbuYV4,530
|
|
1023
|
+
telnyx/types/sim_card_group_update_response.py,sha256=LyzaW-mSPTmKlclDb3fs00RsTx6mlrelXZTS7lZN2ks,318
|
|
1024
|
+
telnyx/types/sim_card_list_params.py,sha256=Qe1b4Qj-43Us33ZR3iOGAT-IBWrzW7EDTkJbvA3TzUM,2191
|
|
1025
|
+
telnyx/types/sim_card_list_response.py,sha256=0bEtZ6PMqMtKb_9peXMF9HQmIKg3VA-twckPLEzHwrw,413
|
|
1026
|
+
telnyx/types/sim_card_list_wireless_connectivity_logs_params.py,sha256=YuHS18Y4Y0N5hFvyWwNgA02dDMViMimeQ74NTejL41o,541
|
|
1027
|
+
telnyx/types/sim_card_list_wireless_connectivity_logs_response.py,sha256=dV8QzAaZF4JMKGWwvHKSXVoLsI6E4m4lxXZyOIBh-ig,3727
|
|
1028
|
+
telnyx/types/sim_card_order.py,sha256=HMRVEcZZLtMDcwFSXn7-U9k7sPLyWQkFmZGG4KH-V94,3066
|
|
1029
|
+
telnyx/types/sim_card_order_create_params.py,sha256=5KAsNknANWAtO02f78EVgMzqliE-rkOp8lYA-rwvrXQ,431
|
|
1030
|
+
telnyx/types/sim_card_order_create_response.py,sha256=PeC0Lgw9gvzJoCg5-En-_4SGwkS9yQ9oh_6E3Mdv1b0,318
|
|
1031
|
+
telnyx/types/sim_card_order_list_params.py,sha256=RWVZZptVPfny5elx0kMqFnrSW5Zb2r4aLmlEjLoJJw8,2599
|
|
1032
|
+
telnyx/types/sim_card_order_list_response.py,sha256=0Lhoe5zeHrMh2m9Azvu5ydWwWhhZE8mTiisNdWkOfp4,413
|
|
1033
|
+
telnyx/types/sim_card_order_preview_preview_params.py,sha256=GLB9vJsYy-BUADgN_0twoq3f1vHIRG86f_Zt6JGTtac,511
|
|
1034
|
+
telnyx/types/sim_card_order_preview_preview_response.py,sha256=x2dhTdPLD6DWjfiPSJhHfjcYtP3r_lXEUPWNrEEblcs,1290
|
|
1035
|
+
telnyx/types/sim_card_order_retrieve_response.py,sha256=GYLCvb2lrz2VetUPGBNdK9iEWY0v2mSwu_VGHgqA3b0,322
|
|
1036
|
+
telnyx/types/sim_card_retrieve_params.py,sha256=msfn5KqDidUX18bAc0mFlQA70XECzWhdAl7ria3s9uk,616
|
|
1037
|
+
telnyx/types/sim_card_retrieve_response.py,sha256=1Gnx72wKn2QvDXii7elirdIUjVEl23ZXDrq2X5O_xTI,296
|
|
1038
|
+
telnyx/types/sim_card_update_params.py,sha256=kxJfagVnXmeFJa-O6fskJcbs0uVZk5ChGZd8qSYMbrY,903
|
|
1039
|
+
telnyx/types/sim_card_update_response.py,sha256=TQ8B1JYAhOFzzpywZ_0I5AFSd_UQzX1OhphcqbwnMW8,292
|
|
1040
|
+
telnyx/types/sip_header_param.py,sha256=VF4Dw9UcPG0qulCDCup7wm9BAVcSAO3kmYWIQyhuZRI,406
|
|
1041
|
+
telnyx/types/siprec_connector_create_params.py,sha256=8TjCI3DJzIG29H-nzntvyHvjEFRssJ8vI5-J8KUEqO4,612
|
|
1042
|
+
telnyx/types/siprec_connector_create_response.py,sha256=5IHpw07FODSscGqXSncsLfS8Qw_WdLf_ySg8-7lRZHU,854
|
|
1043
|
+
telnyx/types/siprec_connector_retrieve_response.py,sha256=OQRBDNKPhfmt0UpRB3sR1WQPPvBXbXAPA8eo9OgvpII,858
|
|
1044
|
+
telnyx/types/siprec_connector_update_params.py,sha256=H2XZbb53UZy__CytRodw82XDpLy1VC2B2KrOr6w155Y,612
|
|
1045
|
+
telnyx/types/siprec_connector_update_response.py,sha256=3XJlAD7OkMMx6bMxRVlTBf6IbLBdiO3tw_gNeoFfAyg,854
|
|
1046
|
+
telnyx/types/sound_modifications_param.py,sha256=vjaonlIrV7SanIqjlIR2WcKQWZ-gQAvjP9WYd6FAowE,715
|
|
1047
|
+
telnyx/types/stock_exchange.py,sha256=BmxOo0O-trPZ9NXynvfWaifk7yvKTmrieO5SE4Y26K0,488
|
|
1048
|
+
telnyx/types/storage_list_migration_source_coverage_response.py,sha256=scPDrxF0TeUHHjpZi7lQgmOCM2dF7Dwi2FGm6kSw2bo,700
|
|
1049
|
+
telnyx/types/stream_bidirectional_codec.py,sha256=nSsEHG1lk2cYqPKt_pKk-A-eE_7ZCCaCxPLkbI-da0Q,265
|
|
1050
|
+
telnyx/types/stream_bidirectional_mode.py,sha256=0q0fmRopWjaa4QQAbP0kWWEdsYjYV-4S2isZPBVuxLw,235
|
|
1051
|
+
telnyx/types/stream_bidirectional_target_legs.py,sha256=MbV-S4HB92iCT3dkYUPLgHkpV0Hu5aF-TZ2tiN6qAhY,261
|
|
1052
|
+
telnyx/types/stream_codec.py,sha256=NPnM2muBky-2Emq0ZP6YJzAxwvERCiqsq6VWLDE4qyA,224
|
|
1053
|
+
telnyx/types/sub_number_order.py,sha256=KzlLcQFuwm6YUWPuSWmKg5qEYCEHaVgpCwS6uAlqnbU,1585
|
|
1054
|
+
telnyx/types/sub_number_order_cancel_response.py,sha256=V2Rg3ImwNq9LFBeKrt-AQrtxo4B1H9yZcG81NYC_gjw,328
|
|
1055
|
+
telnyx/types/sub_number_order_list_params.py,sha256=6ZrP75ip2NTV0vwxkRxeoHCnyKjso5FDZ-auqKj4jUQ,886
|
|
1056
|
+
telnyx/types/sub_number_order_list_response.py,sha256=Mqyf62ir2TiH8asxnKQZmOfZ5aKQouzflc1L_bpAmNE,423
|
|
1057
|
+
telnyx/types/sub_number_order_regulatory_requirement.py,sha256=cJj1dw4CLHlJfh_lSEdvOG39h1vRqBwAujXGPMlZJD8,500
|
|
1058
|
+
telnyx/types/sub_number_order_retrieve_params.py,sha256=RNML0ojZSAYJ9Ak6Hu5cy-CHfhpqsyr0cF31gL6y9Oo,549
|
|
1059
|
+
telnyx/types/sub_number_order_retrieve_response.py,sha256=H8jhwUzIKHlXrXp7AEKnxfdnfAVnKTIK7NIhpmtFl8I,332
|
|
1060
|
+
telnyx/types/sub_number_order_update_params.py,sha256=bNDhrDCqnplffOEsu_g2lLr7Pg5cxwTTJ_O0wR24W5M,448
|
|
1061
|
+
telnyx/types/sub_number_order_update_requirement_group_params.py,sha256=DxoVR_s0VrM9c-6LeKn5XjzWBzJH5BnD55ojeOQFqIg,402
|
|
1062
|
+
telnyx/types/sub_number_order_update_requirement_group_response.py,sha256=9i9wpfyvL017r6jseM56VDidVCzcrhdm0NAZP1F1mDI,1987
|
|
1063
|
+
telnyx/types/sub_number_order_update_response.py,sha256=aPferhFy2l8vqph5zN8Tr_5W4_ZoYIQpitLpsfyEsiE,328
|
|
1064
|
+
telnyx/types/sub_number_orders_report_create_params.py,sha256=8ULbPKmQifLhXasaLO3p0fyfX582-xDHB8zMAd6Zyww,945
|
|
1065
|
+
telnyx/types/sub_number_orders_report_create_response.py,sha256=yijdkXCATSVSdPvIHTpsGcEK8SorIXOvAF_JgIbJRVI,1498
|
|
1066
|
+
telnyx/types/sub_number_orders_report_download_response.py,sha256=QZVXj_5IVAP-hE6-qew6iZ8zTnzrcKr4mTpNYQLdJVE,239
|
|
1067
|
+
telnyx/types/sub_number_orders_report_retrieve_response.py,sha256=uZqfbvP3YpaPJKls4gIcHfDbD70hWSI6Ap8yzEMCleQ,1502
|
|
1068
|
+
telnyx/types/task_status.py,sha256=inaFK0Mjsre1BAeB6wZdKqUFCVHJSaEaEJe0iqEqnlU,252
|
|
1069
|
+
telnyx/types/telephony_credential.py,sha256=YRSUL33R7HLWsgXgB2MjrhHp1edMdc4wD0Oq8cU44Tc,1132
|
|
1070
|
+
telnyx/types/telephony_credential_create_params.py,sha256=FPfn9GAGhg85nYAqtOpLEGnc6YQ9DZQQkpKVBEz1V7o,609
|
|
1071
|
+
telnyx/types/telephony_credential_create_response.py,sha256=aelSQZx2nTNu07vyGx3EgXVvaAfycR2LH1d2Su5dJl4,352
|
|
1072
|
+
telnyx/types/telephony_credential_create_token_response.py,sha256=vdHBV4OQ0dcWww7dWCXf1zKLqLCs3kRmiv7JX-iyngk,238
|
|
1073
|
+
telnyx/types/telephony_credential_delete_response.py,sha256=D3Ojo2pysYGcA4C9cHx12Hr4gWSUd1l1dQoZqI0MU30,352
|
|
1074
|
+
telnyx/types/telephony_credential_list_params.py,sha256=X6i36Uk_9iXqOnH_Goqgva_ubB37_Uj54le6EN3V0Vk,1005
|
|
1075
|
+
telnyx/types/telephony_credential_list_response.py,sha256=x7bHEW-LLVrAnFMvZ2VxTMmvUqJwjbk266Llaqdb2bg,447
|
|
1076
|
+
telnyx/types/telephony_credential_retrieve_response.py,sha256=ILXp0qHAs12wL4E5vVMDUa7fFrmsN8tWdtaU4czPhEI,356
|
|
1077
|
+
telnyx/types/telephony_credential_update_params.py,sha256=WjBH96BIA8jbqmss0M_MPY9x4cYmOGbSs4ys9MQneIU,589
|
|
1078
|
+
telnyx/types/telephony_credential_update_response.py,sha256=LFpp88SJWHUTvm2iSHBRUGh4cwhGp8hjtZoiH05wbgE,352
|
|
1079
|
+
telnyx/types/telnyx_brand.py,sha256=6rMruNlzxO-QaISHyjni8Asta1W4LPxpSPUfQb3eYBQ,5417
|
|
1080
|
+
telnyx/types/telnyx_campaign_csp.py,sha256=oZW5xx8Kjf7-zM4eiahwPJSyhZl09rJOV7l8zmVOAXg,8131
|
|
1081
|
+
telnyx/types/telnyx_downstream_campaign.py,sha256=BfuYv57KWESLO6WJW0th5ojATo_lWRSwchj-kCdjgdA,6071
|
|
1082
|
+
telnyx/types/texml_application.py,sha256=vKy3RGG90iOr3rTA_QSyKqwTX7ungjT4MBLO5aCoVTw,4208
|
|
1083
|
+
telnyx/types/texml_application_create_params.py,sha256=mOPP4B0lLnmUGf_zriLYG-KkNEJsaRItfyGc0jRp7HQ,3578
|
|
1084
|
+
telnyx/types/texml_application_create_response.py,sha256=3UQPNFJF97fFnyiGp5RIDZBbdkKWMEdsQpnMIeWtmgQ,337
|
|
1085
|
+
telnyx/types/texml_application_delete_response.py,sha256=PoZI3wfrCXq50MDVZrX7Qr1KRHUGgsoBOyKVK2UWbks,337
|
|
1086
|
+
telnyx/types/texml_application_list_params.py,sha256=1ev94OTDiN6Aqfh2t_bcP9lNNpmovQFKwi4HUt8nKpk,1719
|
|
1087
|
+
telnyx/types/texml_application_list_response.py,sha256=m6pLfgG93cZhhvpD7tw-yCZ4_agmCwp4unBQVU3Uxzw,566
|
|
1088
|
+
telnyx/types/texml_application_retrieve_response.py,sha256=Aq9H0TIZf4ULlGlz1_yoWusXP1Gh-sUfFB-iUbxn-Jc,341
|
|
1089
|
+
telnyx/types/texml_application_update_params.py,sha256=9obuxS4ndcGVGhAUzaSrMzteNM1NAmMMmfmmhVNmO3k,3578
|
|
1090
|
+
telnyx/types/texml_application_update_response.py,sha256=cGDbjSfxA_kdV3gDX9LSgB6QxcM5heJoBTct6R9OFsg,337
|
|
1091
|
+
telnyx/types/texml_secrets_params.py,sha256=Szn_zRWLU9iwNNhqFgjGGZLnY0GTXoP9uf1JzXr0_LU,523
|
|
1092
|
+
telnyx/types/texml_secrets_response.py,sha256=ylFPjOUsLefgleC1itNVHFGscKGkKbSsWq3a2rwW9_Y,408
|
|
1093
|
+
telnyx/types/text_to_speech_generate_speech_params.py,sha256=4t5XT6SYw2vkWyITJ08I6ASt0C10tId4v3G3TWEBrOI,703
|
|
1094
|
+
telnyx/types/text_to_speech_list_voices_params.py,sha256=csnzlAqf8BYDdk4x007Byv-PDrQnfowUak2dxBWIbSI,484
|
|
1095
|
+
telnyx/types/text_to_speech_list_voices_response.py,sha256=c1j4-VT3c_m4kJVEXfYSAoiFl8v4m9c1shHQMvnVDzU,592
|
|
1096
|
+
telnyx/types/traffic_type.py,sha256=A-AJm17wtfR_2Pw5Kv8UikoP1VO8HmdvBhcLArUMFZA,215
|
|
1097
|
+
telnyx/types/transport_protocol.py,sha256=Gyoe_0z2H4u4wCzPnhwT8ohBi_YCSkBOtanpOM5COtA,230
|
|
1098
|
+
telnyx/types/update_regulatory_requirement_param.py,sha256=QhOyVF_pzTxrYUQOBsYMfUAZ4P-rZPlEFFEHZTvYn0A,552
|
|
1099
|
+
telnyx/types/url_shortener_settings.py,sha256=qL9sQEPrx8nejnZ0-pPtve9ki39q9mSx8PQctGSisec,845
|
|
1100
|
+
telnyx/types/url_shortener_settings_param.py,sha256=Z3QI7_Ltgktz4mU2D7MA3YHpb0X4CzaA22k9lrpcYmM,852
|
|
1101
|
+
telnyx/types/usage_payment_method.py,sha256=vrC9TQxAft3KAEG4-djggbKTrg6XV2RiUyR2oNNIt1w,224
|
|
1102
|
+
telnyx/types/usage_report_get_options_params.py,sha256=h7u8CfNHK-nU3P-nkTlzPi9CT8mWAa_rEWGwPpQZI7A,503
|
|
1103
|
+
telnyx/types/usage_report_get_options_response.py,sha256=1zoSebNH-2IC983CpEblg-o6-JNylcEpHGbxA_qhy6k,977
|
|
1104
|
+
telnyx/types/usage_report_list_params.py,sha256=yIRrp-R-hKoLeRJRBDrGrCYFLY3ST89lc1I9cSkCf0Y,1710
|
|
1105
|
+
telnyx/types/usage_report_list_response.py,sha256=d_fmqbMSmL3THxhpqvTBhlcCbR_81d3Blam8ndQwAZs,649
|
|
1106
|
+
telnyx/types/user_address.py,sha256=YtjviQBN_Q8zuqFIyOVf3X3isHXct6AsDJLd8i9LMIM,2314
|
|
1107
|
+
telnyx/types/user_address_create_params.py,sha256=i2MzwYnifAEIy_X-1LI40mDDkCYOHUdrU83BZcn2bhg,2738
|
|
1108
|
+
telnyx/types/user_address_create_response.py,sha256=XheRImBaE4wHGyEn6x303hKRAzLY0tlROpY9bi4vXPI,312
|
|
1109
|
+
telnyx/types/user_address_list_params.py,sha256=EM2j_h6HU6i5vadiKZNEa8n_yDNz4hx6JCuyY_wv9E0,2560
|
|
1110
|
+
telnyx/types/user_address_list_response.py,sha256=3DhzZVONAZFTp5Os3R9iYRTIcCcLMCVLUtAn71ZdbvE,407
|
|
1111
|
+
telnyx/types/user_address_retrieve_response.py,sha256=q0sb1tJNnWg5GZx8hLOGa2BmPiES5e6D-9E3cJBXM6E,316
|
|
1112
|
+
telnyx/types/user_tag_list_params.py,sha256=K2a4Vr2hd0faOncocQE36DERjL0EWAGlV4IiaKhRFkk,471
|
|
1113
|
+
telnyx/types/user_tag_list_response.py,sha256=peplsopZlTAWLZnTF9qHOc1SnWV3gB-kHrYU6TgitUU,1053
|
|
1114
|
+
telnyx/types/verification.py,sha256=etIqQbjIWYn1cU8NFuEOK4sMXq6Neq4Jeme3Fnf3dJU,1309
|
|
1115
|
+
telnyx/types/verification_retrieve_response.py,sha256=1VDPKAqX8HPHo8YKNddOPX0hM653O1cUJU-NPOjYYtQ,274
|
|
1116
|
+
telnyx/types/verification_trigger_call_params.py,sha256=C_QJjb3C54Tdts7kmMKkwqOFnxOe8PLtkXuW8ZSlrq8,662
|
|
1117
|
+
telnyx/types/verification_trigger_flashcall_params.py,sha256=gtbnxXpCy-QbKrmj8gkgZPUcLmheZgBh7yCq0fYvjmE,551
|
|
1118
|
+
telnyx/types/verification_trigger_sms_params.py,sha256=3fLec5fpkUTdsmml2tLp-c6elbD5ZHm_xoux-QSMFYY,660
|
|
1119
|
+
telnyx/types/verified_number.py,sha256=A9j9l8Znwt3wXSOxtVvSpwBH4IsC7ydPzd4oPSPXwd8,445
|
|
1120
|
+
telnyx/types/verified_number_create_params.py,sha256=UbHdOGt_wcA-B9fyTdA1CvGTobAmneh2uJxzxuU7RWw,406
|
|
1121
|
+
telnyx/types/verified_number_create_response.py,sha256=k3kikVZDwy4UZ8szFrnfknJYdcZeBvYM5TpJOx_i-PM,327
|
|
1122
|
+
telnyx/types/verified_number_data_wrapper.py,sha256=O9UQYCkGMK4oScY6TppqTuPXkzJ93i3KGNjpX65HTzY,321
|
|
1123
|
+
telnyx/types/verified_number_list_params.py,sha256=S2iMCu-O2ztlcHyIkb1YsChOzFxhEQuGWZf34e3xVlI,515
|
|
1124
|
+
telnyx/types/verified_number_list_response.py,sha256=6-9_jeZNSTTJfqL6kFErVoC6sIqkRC8Z14Z7qJ9GjEc,522
|
|
1125
|
+
telnyx/types/verify_profile.py,sha256=9WksG8mqGRX0WUEsaCApvsQGtjAKwxtZWDjT1tF-K_M,4493
|
|
1126
|
+
telnyx/types/verify_profile_create_params.py,sha256=YKQcCwD8mPQQAXBOnA4oSA6UFNWuDc9L9jbYGIdikpg,3288
|
|
1127
|
+
telnyx/types/verify_profile_data.py,sha256=zuMcvo3F_6ugK6OJUEtmTey-WSMpUqkvJDfLruSViYM,302
|
|
1128
|
+
telnyx/types/verify_profile_list_params.py,sha256=LZr3l8Nsq-kXb3pWUvhBOuWc5QvLY9A9MxmpTbbw1UU,670
|
|
1129
|
+
telnyx/types/verify_profile_list_response.py,sha256=ntFBhR_57db0aAgOF09K2h20whmrRHG-haYdYBta_Ho,517
|
|
1130
|
+
telnyx/types/verify_profile_retrieve_templates_response.py,sha256=ZeFhBEIr0HLyDZz_Lbb6t679W-5esCvZxJrC0x5f7dc,382
|
|
1131
|
+
telnyx/types/verify_profile_update_params.py,sha256=DMDrSOiyu_szcNx5_VOzhoRXyt89B_SwEwJa3hD6Bbs,3258
|
|
1132
|
+
telnyx/types/vertical.py,sha256=iHaWXSXp1agwA2ORKJA3VwTJizZu9SFoEatEqcEMz60,494
|
|
1133
|
+
telnyx/types/video_region.py,sha256=zaMiWSVkAc0FbkWrK-g1uNPqW0QgBT9mH7kpjrpqzXw,1488
|
|
1134
|
+
telnyx/types/video_region_param.py,sha256=nT12RK9uSMlxWWRKID3B59CKF6hSj94acYN9wTz7Kys,1488
|
|
1135
|
+
telnyx/types/virtual_cross_connect_create_params.py,sha256=lH8vJlO__jXCuT2VOZr3VdmdJAQ0vrfWD3Sobv-n66E,3227
|
|
1136
|
+
telnyx/types/virtual_cross_connect_create_response.py,sha256=0fnH3XhujxhBzmlpPS90utp89FLqmDPF0sjQexRXGtI,4189
|
|
1137
|
+
telnyx/types/virtual_cross_connect_delete_response.py,sha256=GJLAxYlMLiPdmmbOs0yF4SSGfAFwlc4l4N-K2FNkYp8,4189
|
|
1138
|
+
telnyx/types/virtual_cross_connect_list_params.py,sha256=VegvH3kYUhN4Lk8S0eVscN4zlX6my2IaWJvI2HmqCRk,774
|
|
1139
|
+
telnyx/types/virtual_cross_connect_list_response.py,sha256=jQDVhKdB66acwc6w1afNkUhroZh_VLYozbMV00i5MYU,4284
|
|
1140
|
+
telnyx/types/virtual_cross_connect_retrieve_response.py,sha256=M7SPhYEBbnS9iz5EdFuYZgNzhdtwhFOl6dUrXmiVilc,4193
|
|
1141
|
+
telnyx/types/virtual_cross_connect_update_params.py,sha256=zjgxe6x5ERA45IXgZdoDSg4DYYS1k66iHnd2ar9mgTk,1302
|
|
1142
|
+
telnyx/types/virtual_cross_connect_update_response.py,sha256=NSx5BevIdONecR7txWk-ed7BPPaQTcH17HdvwUzdIjE,4189
|
|
1143
|
+
telnyx/types/virtual_cross_connects_coverage_list_params.py,sha256=2PAaHsJmUdA0uDvVWMwCfOil2lcRfqbROb5OAjOxQDk,2277
|
|
1144
|
+
telnyx/types/virtual_cross_connects_coverage_list_response.py,sha256=kWEV8TSTEErPEQsIFyCtsIkvb8UnacgLW5fulmS0h7o,1585
|
|
1145
|
+
telnyx/types/webhook_api_version.py,sha256=Z1OhRLRE2APWtQOvcvPZPs0gL4cLK44_2ar1gx8REaE,219
|
|
1146
|
+
telnyx/types/webhook_delivery_list_params.py,sha256=i8Ud2pwGvz5iKveZOdKDsap6nuzbKwRzAzv6bH_VkGQ,2451
|
|
1147
|
+
telnyx/types/webhook_delivery_list_response.py,sha256=EuXC75OpUzhtGUKdYEfhw8HMwRk4A9WxvGvxtTl7d7U,3251
|
|
1148
|
+
telnyx/types/webhook_delivery_retrieve_response.py,sha256=y9Otxv9LNvzYNiBfxyvV2Zhf9qq-TbzdX8EhfXv26kE,3083
|
|
1149
|
+
telnyx/types/wireguard_interface_create_params.py,sha256=v5hzXUge3M5qhsPn3JZL-fOLDeFkPjqNMUkkhM0DM_g,623
|
|
1150
|
+
telnyx/types/wireguard_interface_create_response.py,sha256=QdkMG6kIs4PC80sWN7XEFCxd5AL1zB-FE64ZA235FFo,1181
|
|
1151
|
+
telnyx/types/wireguard_interface_delete_response.py,sha256=CQca3bq7aQR7Vcb2YKG3rKiIqAfheKK0JBawUNtnovg,1181
|
|
1152
|
+
telnyx/types/wireguard_interface_list_params.py,sha256=QljJZVT6SgiyllQW6Oy3SdK3pLsTOYM64cs9G_DPKx4,772
|
|
1153
|
+
telnyx/types/wireguard_interface_list_response.py,sha256=9cR23C5vA0b-fKh0zIzPCYhCr-YgmH9zVViIJFNFSsk,1276
|
|
1154
|
+
telnyx/types/wireguard_interface_retrieve_response.py,sha256=YiVz2P4cIcgHvlIUBCiGLcwHpulShqNCNiWA4VMI3RM,1185
|
|
1155
|
+
telnyx/types/wireguard_peer_create_params.py,sha256=IvkydnUQI-XDV-NNqQySgVxV8yD6NHWTV1009Tvw12w,565
|
|
1156
|
+
telnyx/types/wireguard_peer_create_response.py,sha256=XHie9zm3OJx7-MJDg4afrevyHOAwnybWAXenzSl1eXU,1194
|
|
1157
|
+
telnyx/types/wireguard_peer_delete_response.py,sha256=DVJzxBB5Yo5-jiIEFYHBpqP5DoQSqs1Utan8U_af_BE,1194
|
|
1158
|
+
telnyx/types/wireguard_peer_list_params.py,sha256=q2w2uCRCnyG11YqQed4ub2l4EwrCetWjDPsyZinIFE0,805
|
|
1159
|
+
telnyx/types/wireguard_peer_list_response.py,sha256=PEUr0AxAzqnSAJJS6p6ILaGuchWOw81s2n7gI8YfN-w,1289
|
|
1160
|
+
telnyx/types/wireguard_peer_patch.py,sha256=Jehu7h2y3q5Th1mK8_pcnfeBucJrmlX9vAdrldFucuE,417
|
|
1161
|
+
telnyx/types/wireguard_peer_retrieve_config_response.py,sha256=adL1Wt2kiWfHo_NrpTyzskiqpeTqAqM77ktFfyci8CI,232
|
|
1162
|
+
telnyx/types/wireguard_peer_retrieve_response.py,sha256=xBy3oNRwWdLtjyxCp9X8ZrNTdgI7-qAZygnmsyWo7h0,1198
|
|
1163
|
+
telnyx/types/wireguard_peer_update_params.py,sha256=SK0gM6fvCVhJ6kMFpie-mD3Ud5TEJwAnI5zS2ye-icQ,442
|
|
1164
|
+
telnyx/types/wireguard_peer_update_response.py,sha256=d30H13JOxKSxsLAyXjD52yXc4gHAJJ8Y6b4TCgJXiTk,1194
|
|
1165
|
+
telnyx/types/wireless_blocklist.py,sha256=Nt4NIIMZA4XNnLqVp9BAY2VMyEFdVKLz7kvC4vwxL7k,910
|
|
1166
|
+
telnyx/types/wireless_blocklist_create_params.py,sha256=3MtG7_4OaC77yWI1UwHLIIQ1g5oDNZ2tmKsEPrP-N8I,601
|
|
1167
|
+
telnyx/types/wireless_blocklist_create_response.py,sha256=bF7gI5mJ0ix92wnVrcpf9_bEg3ixoHbHEQxlfr8VeiY,342
|
|
1168
|
+
telnyx/types/wireless_blocklist_delete_response.py,sha256=Ey8vaxbXdTuCVODONKSaVgjmGfV0IUCbeNZsjTSCBSQ,342
|
|
1169
|
+
telnyx/types/wireless_blocklist_list_params.py,sha256=Ams_BwvX73GfqUXccA6Xp_eM-S_zY1H7sPCPUNMEP20,875
|
|
1170
|
+
telnyx/types/wireless_blocklist_list_response.py,sha256=UMEauF56Z4N6ejxjvz00dcM2w6HrokmiMI_VaVqCakc,437
|
|
1171
|
+
telnyx/types/wireless_blocklist_retrieve_response.py,sha256=Ea7IxQV_i_G00dJnDpiInIsKNQRookEUZkljNH9uUbg,346
|
|
1172
|
+
telnyx/types/wireless_blocklist_update_params.py,sha256=SLcb6IjvxHyTc4CbOtm5GswH6zK9NMPgYtWb97M-lg4,561
|
|
1173
|
+
telnyx/types/wireless_blocklist_update_response.py,sha256=C5RmZkPXN76DOtNFAzkpfNTw-PNntRY7rcHF2QhzJdE,342
|
|
1174
|
+
telnyx/types/wireless_blocklist_value_list_params.py,sha256=e83Jq0z91nDQ4OqEFG_AJkMGyuVQkUCTZeaplC2cw1U,470
|
|
1175
|
+
telnyx/types/wireless_blocklist_value_list_response.py,sha256=7F-zPBkvgQjG4d9lOVfi9JlcqJRT9VnqGkfBNV8Seuk,880
|
|
1176
|
+
telnyx/types/wireless_retrieve_regions_params.py,sha256=lj2WCL_wkH33fTyYvywas_SudiqKUBq63WRjoyG66sg,421
|
|
1177
|
+
telnyx/types/wireless_retrieve_regions_response.py,sha256=3JzBDEWyQ6ZAhK7tmE1Mm-RU8pWWMe4u_4pmjNKIu-A,649
|
|
1178
|
+
telnyx/types/actions/__init__.py,sha256=o5FXTG_jn1gQK6IZa_tT73w8Y2GDRmB18k2mvN-bWqQ,459
|
|
1179
|
+
telnyx/types/actions/purchase_create_params.py,sha256=RDCiPGlRCNUMMWXhNkqLXMMPLhk0QiLu-tk2q0nTmeA,1131
|
|
1180
|
+
telnyx/types/actions/purchase_create_response.py,sha256=iSfWhLU6OXxLSgws_8pLZjhzsqxGJX62_sygDh17_NI,850
|
|
1181
|
+
telnyx/types/actions/register_create_params.py,sha256=CktYTrabPSYJmgc7kTxZ2gj01J8XNZhFTkgB2mKvXiM,733
|
|
1182
|
+
telnyx/types/actions/register_create_response.py,sha256=7Wgd-1zWLcFLafWd7SZVCOtgoi8N19nPKbvCUjJ_9cM,850
|
|
1183
|
+
telnyx/types/addresses/__init__.py,sha256=m-_aSxRiotRXrdHEqmV9NQlyot9383J7GhH7A9J7LjA,515
|
|
1184
|
+
telnyx/types/addresses/action_accept_suggestions_params.py,sha256=n8ifP4q6XNEaLrgkLalRt9f20S1oXQshCdhKnyLOQcY,405
|
|
1185
|
+
telnyx/types/addresses/action_accept_suggestions_response.py,sha256=PUK8ojT69lS3oSypV2FauV0MuxdHCmsoIKeufmHqsr0,579
|
|
1186
|
+
telnyx/types/addresses/action_validate_params.py,sha256=Q94O9NnGAxWADHZS4lFWDuypKVssnBeouGJ9-XDIj6w,993
|
|
1187
|
+
telnyx/types/addresses/action_validate_response.py,sha256=__rwAv6MIFkeEpzV6s7DnI9ZMvJnVlPyZsa2dc3h-5Q,1983
|
|
1188
|
+
telnyx/types/ai/__init__.py,sha256=P6cv6S45PZYyBLDtbjSg556jmgg8Ual0uuWZdutgmj4,6392
|
|
1189
|
+
telnyx/types/ai/assistant_chat_params.py,sha256=CC0HBoZ2dWKUlrqMMuiz7Uj_Fg_abaMltXOTQAkLNLA,557
|
|
1190
|
+
telnyx/types/ai/assistant_chat_response.py,sha256=EB-0npHYLL4g2EsRBpdDm-objtcDg5NYujSpc9483-0,301
|
|
1191
|
+
telnyx/types/ai/assistant_clone_response.py,sha256=_vY99mNwv1VphjuASE9ySPDfsrOq0vc4ZwoIEPjUNkA,3022
|
|
1192
|
+
telnyx/types/ai/assistant_create_params.py,sha256=cjcxqMWuNxef5C7jq9R5ktWld9TgORF5Wz6n0WqAELU,2852
|
|
1193
|
+
telnyx/types/ai/assistant_create_response.py,sha256=9rvGRN8uUxk6Twe6FVlMXKlHIQJi2hSRNQoW9iBKFlg,3024
|
|
1194
|
+
telnyx/types/ai/assistant_delete_response.py,sha256=Ds8GWenkIBgXRao6LDJX7gZb25y8V482zfbFoqvRzMw,251
|
|
1195
|
+
telnyx/types/ai/assistant_get_texml_response.py,sha256=sTvUF8AQOVOB0OGnkvpWoMqReDTuxSM4-eS7bHoiXSE,212
|
|
1196
|
+
telnyx/types/ai/assistant_import_params.py,sha256=ky2CJa42M63NzpBxoFWYU8NIwC2Y5guRQpNkHImAHoU,616
|
|
1197
|
+
telnyx/types/ai/assistant_param.py,sha256=JmTZBM5cvf9_FL2dfpSE4kgxT8cYlTi0jYrEW2qragg,3629
|
|
1198
|
+
telnyx/types/ai/assistant_retrieve_params.py,sha256=JZ7ojEWhYs2h3e0JBUXfKnaz5tdb01Nx0eP4ntHVTEw,447
|
|
1199
|
+
telnyx/types/ai/assistant_retrieve_response.py,sha256=g8c-z-jXzBYAuqaQMv_DnPzJZjyunhu2Gzl7KWiHRmk,3028
|
|
1200
|
+
telnyx/types/ai/assistant_tool.py,sha256=EDBdF-MtB5DVl8ey1FuoVt2Z71nNv-P2OE9iXq4TRI8,3461
|
|
1201
|
+
telnyx/types/ai/assistant_tool_param.py,sha256=SVCigf9OuXF31xNTLtR4pOfrGXNIfXZbY6FoWbjHP0s,3653
|
|
1202
|
+
telnyx/types/ai/assistant_update_params.py,sha256=Xiw9w8pVTTinim7jInrT01boGZFpoYY5IkWqF-ppHCA,2949
|
|
1203
|
+
telnyx/types/ai/assistants_list.py,sha256=EYMlIRblfrAnxSkTCx8SCDfFBEd89H7rlm4GrQgOaYs,3060
|
|
1204
|
+
telnyx/types/ai/audio_transcribe_params.py,sha256=E1QqgLbL27D1E9a_7B455aZPFR4N_NHeNft6KpaH69M,1576
|
|
1205
|
+
telnyx/types/ai/audio_transcribe_response.py,sha256=nwvEgMlNdOqlnlKOP2uzU0GkomsqD8utgeVPDOAGepQ,953
|
|
1206
|
+
telnyx/types/ai/background_task_status.py,sha256=qfGTzQ1GkZNXhjkOQkQS7_UGv8eDCwC6_S_b1xN-hQU,280
|
|
1207
|
+
telnyx/types/ai/chat_create_completion_params.py,sha256=_c8AGWevmhHLM53iThtu7snlQgFtaxO6PuL2T0XgFXM,5603
|
|
1208
|
+
telnyx/types/ai/cluster_compute_params.py,sha256=aktweOAfN1XfqMlWotaUq45COvvLCWWOVysF0GHXyWU,1089
|
|
1209
|
+
telnyx/types/ai/cluster_compute_response.py,sha256=Kx9xDbEQA4Res87VTT4ik-qemRb6V21uy8F0bKL4cjc,266
|
|
1210
|
+
telnyx/types/ai/cluster_fetch_graph_params.py,sha256=TIHEqph4oLSvlJFotWZc74yY2JF4g3NQYb_9RSF3Puc,279
|
|
1211
|
+
telnyx/types/ai/cluster_list_params.py,sha256=9TYvnBYBONcrRgm4f8RLKmVir64eu4a-XfEEBaVGwdA,444
|
|
1212
|
+
telnyx/types/ai/cluster_list_response.py,sha256=F9Q4tbZIVoqkp4SKksXMj3Mux-J1F9PAwF5Gs47Q1ik,577
|
|
1213
|
+
telnyx/types/ai/cluster_retrieve_params.py,sha256=7sU3B0n_ZE17uc5tw6LC0pcpE3X345BUxNTTkATCQdY,528
|
|
1214
|
+
telnyx/types/ai/cluster_retrieve_response.py,sha256=luYQrxjIMJFad5KO2-Vsm5eDUnDRmfnPXURwiXOfiKs,479
|
|
1215
|
+
telnyx/types/ai/conversation.py,sha256=SqbBhoeCf1cGEN434GwwzuLvw4kfGgmtaZz5kTYebY0,645
|
|
1216
|
+
telnyx/types/ai/conversation_create_params.py,sha256=0zYEDBNTQsRqiT0vbogywRNsRYKqXt4dCK5G5kWkaKI,382
|
|
1217
|
+
telnyx/types/ai/conversation_list_params.py,sha256=SQp7y1CVuc1SPxJ8mlLLgmakgxzGo-e97CsqEt4ARGQ,2175
|
|
1218
|
+
telnyx/types/ai/conversation_list_response.py,sha256=FJB7lMGBALYH5MdKxvBmxuO9rgjKiE7UUh-5qh8PdDI,298
|
|
1219
|
+
telnyx/types/ai/conversation_retrieve_conversations_insights_response.py,sha256=tcTPkU88Ije1Rq5vGhFpEZCEiqJInW9II7BeNKFpfx0,1176
|
|
1220
|
+
telnyx/types/ai/conversation_retrieve_response.py,sha256=-HiQ97xbprhBvoOGTRQQUp0DuF4qbWADKGbt6RZw9n4,321
|
|
1221
|
+
telnyx/types/ai/conversation_update_params.py,sha256=rGdl-wP9ZrLcWJpmsOgRFu4E_zgTCJYHOivaV289cKM,367
|
|
1222
|
+
telnyx/types/ai/conversation_update_response.py,sha256=ZfOM5FqVEatx__5nQJR_Cny8RRF-i-b3h5jL77Feff0,317
|
|
1223
|
+
telnyx/types/ai/embedding_create_params.py,sha256=A04mkYl0nFewkZkpnMv24JAadnB8fiqLw1rxzGx7_JI,633
|
|
1224
|
+
telnyx/types/ai/embedding_list_params.py,sha256=s5UnpwQN9BtElZbggxFXRL4-TsZ3v5FwgDJDR3SFg_I,368
|
|
1225
|
+
telnyx/types/ai/embedding_list_response.py,sha256=R5bmdbwKes5JwxzuLsWRdCLLukAxkDL_59YLRcc6tCk,608
|
|
1226
|
+
telnyx/types/ai/embedding_response.py,sha256=U5A74GBhFIzy1N2uzcJ9wiou03iIMVDm0gmd8mcMbAg,485
|
|
1227
|
+
telnyx/types/ai/embedding_retrieve_response.py,sha256=nsTaJBWo79hhzqEZmciwJJn6WRNI7pvA-WNNKQ1_0DE,580
|
|
1228
|
+
telnyx/types/ai/embedding_similarity_search_params.py,sha256=tdNDuBUeqCyJSpG7ghTY1Jbxk2wcHbOcNtQbW-3_knI,364
|
|
1229
|
+
telnyx/types/ai/embedding_similarity_search_response.py,sha256=6Z6psauqc7iXItMZygdkh2FrJSxxPDNNJFaD4NHvLag,610
|
|
1230
|
+
telnyx/types/ai/embedding_url_params.py,sha256=l6jZ8PWsqiX3vl0HrmF29Sd2jxpQoYYucq-mtVrzh9U,442
|
|
1231
|
+
telnyx/types/ai/enabled_features.py,sha256=1MCQLmyaHOR-pJGIwmANfs4XAC8UuhcliOgpXvOHrBU,231
|
|
1232
|
+
telnyx/types/ai/hangup_tool.py,sha256=LnEAZmGS0infVdmjBtleuayp-CyZU1zNO-v9CUfgG1E,323
|
|
1233
|
+
telnyx/types/ai/hangup_tool_param.py,sha256=SQvf6lFUgKV1HDeT2qNY__eu-qDx_FnAjlXQ2lReuDU,406
|
|
1234
|
+
telnyx/types/ai/hangup_tool_params.py,sha256=YT6_fzWANLp4meyP32-Rt0HO7FOhDTHEJ3StXH2VN2k,336
|
|
1235
|
+
telnyx/types/ai/hangup_tool_params_param.py,sha256=RZaWG9PfKesctTgGYRNB_OIvPZo0T9Ph6WathUZfnd8,356
|
|
1236
|
+
telnyx/types/ai/import_metadata.py,sha256=Q8S3K51yiAyxPqdaOcm1T9YamhwFWScFrFg1TY80X_A,465
|
|
1237
|
+
telnyx/types/ai/inference_embedding_bucket_ids.py,sha256=yeoZw3FXqgHxHh9t0D57Dwrn0__oK-q6CYAFeobWX4c,588
|
|
1238
|
+
telnyx/types/ai/inference_embedding_bucket_ids_param.py,sha256=1Mv3-z14Y8iLx37hVzK4-kMvC7NWOGh7a5Szhc_x3nU,646
|
|
1239
|
+
telnyx/types/ai/inference_embedding_transfer_tool_params.py,sha256=4dukEZt79j1dce0aW9h_YeCP-DYH2cACgxu6pkEv0s0,1246
|
|
1240
|
+
telnyx/types/ai/inference_embedding_transfer_tool_params_param.py,sha256=irlhSeQBdNA81Kw_hMuAmyveqaFYT3uGcW1-mFtpIE8,1393
|
|
1241
|
+
telnyx/types/ai/inference_embedding_webhook_tool_params.py,sha256=7hyyGPVMK2cvwU04S542qVw1wQ0T6CxqA1ijkfzFEl4,3395
|
|
1242
|
+
telnyx/types/ai/inference_embedding_webhook_tool_params_param.py,sha256=TX8lGlnjn3xuNESArq08BW3yBUMNWjKBzq7AaSrUvgI,3255
|
|
1243
|
+
telnyx/types/ai/insight_settings.py,sha256=4J4GFvMv-j697Stw6mOD0yU4glM7I6ji41JyL3BP3nA,402
|
|
1244
|
+
telnyx/types/ai/insight_settings_param.py,sha256=x-moBUrjK75NuMjXfMbdRyEXledn_U2bROcfGt_LVYc,422
|
|
1245
|
+
telnyx/types/ai/messaging_settings.py,sha256=3jewX-cEPO7JMdve0No3bufDGM2iCIn4nc2Yq1U7zWo,597
|
|
1246
|
+
telnyx/types/ai/messaging_settings_param.py,sha256=ScRsdJfGcVmGNhUOSx68yhnZ3ZN6CZKUpQXIS1Wgd8c,600
|
|
1247
|
+
telnyx/types/ai/privacy_settings.py,sha256=7gOhikBa0Xup442XUdeFIGsUrKTKg7VVgckiqiuezQI,724
|
|
1248
|
+
telnyx/types/ai/privacy_settings_param.py,sha256=TTv_YfsnwCPEEwPAQznIlerr9zl-TQKSZW9xUylno1k,744
|
|
1249
|
+
telnyx/types/ai/recursive_cluster.py,sha256=cwRoPyxxaAFIikaZPWNqTTWorWsMDfn5-mJE4T7SV1o,687
|
|
1250
|
+
telnyx/types/ai/retrieval_tool.py,sha256=845vYHE2MMEmVQ7NkoQ9515pr9gPPb7HPt50CGjNqmY,369
|
|
1251
|
+
telnyx/types/ai/retrieval_tool_param.py,sha256=FgkfpJWuWv2GtTEDPS_0WKP7DPsrkjprVJknFvxuwyw,452
|
|
1252
|
+
telnyx/types/ai/telephony_settings.py,sha256=MKR9FpDYqn-KMIZkpguGTM8_ryLnVK0y4xH9rrWctG4,706
|
|
1253
|
+
telnyx/types/ai/telephony_settings_param.py,sha256=J5UIeyk7iziAaV4t1wytYQZUBlTClsZiy2dYRK7vPLA,709
|
|
1254
|
+
telnyx/types/ai/transcription_settings.py,sha256=n-SjDwt88zMKz_CTFtNG3_JwrqOQddbzJxf24N6fy00,934
|
|
1255
|
+
telnyx/types/ai/transcription_settings_param.py,sha256=_OoVaUxjMv-2cBOCkzxfp9S3SYX3qaoO-cDeINtdWwY,937
|
|
1256
|
+
telnyx/types/ai/transfer_tool.py,sha256=xqKXllTFynurQui0ZyCVKKIjr327ImUo1Ir6let46QA,393
|
|
1257
|
+
telnyx/types/ai/transfer_tool_param.py,sha256=yGOHLSzsjhEvUk5STQ0nK6ogfIkaZdHSX5fWAQplLwo,476
|
|
1258
|
+
telnyx/types/ai/voice_settings.py,sha256=aF62sZSVF1AQdTQAiBMJxKSxDaG0X05fCsen8v-SKZo,1406
|
|
1259
|
+
telnyx/types/ai/voice_settings_param.py,sha256=usEnAa6umbtGsBj0ibeing4FyUyMMjwUTd6d6faz-pc,1429
|
|
1260
|
+
telnyx/types/ai/webhook_tool.py,sha256=S_RXQiWcyOokeXb7XOad2NRPmM5q77s1_x_z5hOl6gk,386
|
|
1261
|
+
telnyx/types/ai/webhook_tool_param.py,sha256=ANK9w6A-cmMLTJThOMcKXXYoVmILQmOdqtIzq4RlNfI,469
|
|
1262
|
+
telnyx/types/ai/assistants/__init__.py,sha256=-pnVFavZeoKOuqdSITPRlbySQVCQf_PMfBwLW1RmRuQ,2243
|
|
1263
|
+
telnyx/types/ai/assistants/assistant_test.py,sha256=jq6P64Ncm61lSR9UQU_akStuMVudL3KpgIspZIgzCLs,1491
|
|
1264
|
+
telnyx/types/ai/assistants/canary_deploy_create_params.py,sha256=Egkt9Aux40LRP6bG5HuutOEs-WxYxI_b55RZmZJiO68,447
|
|
1265
|
+
telnyx/types/ai/assistants/canary_deploy_response.py,sha256=DF0X3tYdDGXwWvk6aTJLipYaBFw0b2nDpj2QxXAhtt4,404
|
|
1266
|
+
telnyx/types/ai/assistants/canary_deploy_update_params.py,sha256=J6UAJ7A-UUqCm9BHFMWF_tIu8yu89LPhrxOxxcC20Lg,447
|
|
1267
|
+
telnyx/types/ai/assistants/conversation_channel_type.py,sha256=oJOfiBvNNSEIOg6fvakaS5jLfhIFrzxZe-xaBn_RbgY,247
|
|
1268
|
+
telnyx/types/ai/assistants/event_status.py,sha256=Xd1v5LwiL3JE4XWdAVUsumjCZ8GlfNG9saCMz-IYn4k,246
|
|
1269
|
+
telnyx/types/ai/assistants/scheduled_event_create_params.py,sha256=1tMmKKD_1Q9n8z68oAo6gVMwz1aT7reYg1R73ciCqSM,1240
|
|
1270
|
+
telnyx/types/ai/assistants/scheduled_event_list_params.py,sha256=FaBFRXtdS_N_Xt5N-5iVx9SN7Y17sF5_joZDRFGkmGU,833
|
|
1271
|
+
telnyx/types/ai/assistants/scheduled_event_list_response.py,sha256=CqPDQmuTUxPFknMbxeWyWxXrp-gxrtjIFGvx6JJ0W8Y,602
|
|
1272
|
+
telnyx/types/ai/assistants/scheduled_event_response.py,sha256=Wo2uAk4KfSp64JOHGtC6LeBDO1XU0gIFuad9ZryFvO4,443
|
|
1273
|
+
telnyx/types/ai/assistants/scheduled_phone_call_event_response.py,sha256=XYMhFE9hbk0cixpLIZcLOng4Xcomg81UtCSp2WriAb4,958
|
|
1274
|
+
telnyx/types/ai/assistants/scheduled_sms_event_response.py,sha256=KDZ7LqD4G5i_HaZATp-0qCblcGNiq80cVh6ZXTqwIBo,919
|
|
1275
|
+
telnyx/types/ai/assistants/telnyx_conversation_channel.py,sha256=UMHNJPUzQrqJoHQQz1KwFbeecWElPxAxufuK_r_YkW0,275
|
|
1276
|
+
telnyx/types/ai/assistants/test_create_params.py,sha256=Ag6l_OtV2tkdAc1RPDu6dVsra94EVLt8D24QYYc-SFI,2123
|
|
1277
|
+
telnyx/types/ai/assistants/test_list_params.py,sha256=39SS_YzvJqRUJ1PjqwHBNfsakFIbhKWcSH7QeINctRg,813
|
|
1278
|
+
telnyx/types/ai/assistants/test_list_response.py,sha256=EgI-sDw-f_Rt1ADZIcjPNnU6KpLOhwu8BlvgKRE4F8Y,505
|
|
1279
|
+
telnyx/types/ai/assistants/test_update_params.py,sha256=ltYPjsKzeiOIv31BUwIC23p6pJDvScGpVBusd9-IqW4,1402
|
|
1280
|
+
telnyx/types/ai/assistants/tool_test_params.py,sha256=7bPia0hKaaTPxBB9TewKx0TSgIguhdE3B5qUNGVsL3o,507
|
|
1281
|
+
telnyx/types/ai/assistants/tool_test_response.py,sha256=tCPIDiY8fksWXYaxUbAq9eRcr7DB-fjJ4OUuTHCeDd4,432
|
|
1282
|
+
telnyx/types/ai/assistants/version_config.py,sha256=BreLDwxDUjwrwgqI1k8Oiojqc0_Nm8HVozPTIhHe27M,357
|
|
1283
|
+
telnyx/types/ai/assistants/version_config_param.py,sha256=WmwXeth_e9xEcXwOg_lG-yk_54Yb3QQgQOF3wHFD4Hg,452
|
|
1284
|
+
telnyx/types/ai/assistants/version_promote_response.py,sha256=OH2_czCsc3x4_fGryjJXf_l2O7HyNZ7PpeeoO1zEDO0,3032
|
|
1285
|
+
telnyx/types/ai/assistants/version_retrieve_params.py,sha256=dHctLxr7izCYdLpfLWgWIto5zV6kbx-WaoPb927rFww,328
|
|
1286
|
+
telnyx/types/ai/assistants/version_retrieve_response.py,sha256=CWNILuNkWAHd9ckp5yWONwNpuZ_M2S9Y4eiVm8jt7XY,3034
|
|
1287
|
+
telnyx/types/ai/assistants/version_update_params.py,sha256=R-BvozbYsvYLuA7VyTZz8uDLEyHbrJbt3Pg6b74T-QU,2859
|
|
1288
|
+
telnyx/types/ai/assistants/version_update_response.py,sha256=zIgCTcssv5wCQUv7Uigf49UlV9RP-VbG7EJIszgNJv4,3030
|
|
1289
|
+
telnyx/types/ai/assistants/tests/__init__.py,sha256=-6Q4JrBMcugVh5N_i6_Kwp6u8eQgSAIkpBU1Q8YNz5g,453
|
|
1290
|
+
telnyx/types/ai/assistants/tests/run_list_params.py,sha256=LETIrcrJKcrmpkzVORDGqSMeDRGdMrpc4Goj0lw0SNs,652
|
|
1291
|
+
telnyx/types/ai/assistants/tests/run_trigger_params.py,sha256=p6hkzTH7GAFcrb5j2_ZJi7JLxfflom3z7A-B8rqqp_8,473
|
|
1292
|
+
telnyx/types/ai/assistants/tests/test_run_response.py,sha256=a5YgDp1d8g25YmaFJXyMAl4Q1DD5qS4DQjuwS6D84rY,2397
|
|
1293
|
+
telnyx/types/ai/assistants/tests/test_status.py,sha256=5VLhiLQhpWzRj30rsgBZKn9NEOLjhOQfhSj_uqPC-Hg,258
|
|
1294
|
+
telnyx/types/ai/assistants/tests/test_suite_list_response.py,sha256=BTXzD5tMw0HcZpMnTa-0GZwl31K81QsBPu1MmzdlJas,333
|
|
1295
|
+
telnyx/types/ai/assistants/tests/test_suites/__init__.py,sha256=kS6RYt5bjUb9XjDA3jNqKP-R3QyeJQ4R8LffYH98q84,440
|
|
1296
|
+
telnyx/types/ai/assistants/tests/test_suites/meta.py,sha256=7ZhoqvceZK5EyG8fxQOZ93zq2x9fyWftLeFpIunG0ro,255
|
|
1297
|
+
telnyx/types/ai/assistants/tests/test_suites/paginated_test_run_list.py,sha256=3Q-e1oUTSGHeVQXmhNaYo_WH9eNdv19HRTq_UjeNryM,478
|
|
1298
|
+
telnyx/types/ai/assistants/tests/test_suites/run_list_params.py,sha256=imqpdtqeMHwxtjAjyrsWZDERlxaaEncqJ4oAbGtoxSY,739
|
|
1299
|
+
telnyx/types/ai/assistants/tests/test_suites/run_trigger_params.py,sha256=YYqEVKG6u-UUJW3q6r-m7OP42QZrhZOO7iuGNwwWWp0,487
|
|
1300
|
+
telnyx/types/ai/assistants/tests/test_suites/run_trigger_response.py,sha256=_50TSPBaEUBELVm_Goky2gpDFn_kE5IDpb3m6IcqZII,289
|
|
1301
|
+
telnyx/types/ai/conversations/__init__.py,sha256=1pB1WZuBLG-C7OdXRn8_bNqNuRQB4y0d5B9MKmjAI-U,1431
|
|
1302
|
+
telnyx/types/ai/conversations/insight_create_params.py,sha256=KdTKG2pwKSzUdh8z3vRE-Wj5UULh0ifDGHqhrbo8G-s,462
|
|
1303
|
+
telnyx/types/ai/conversations/insight_group_insight_groups_params.py,sha256=_P9-MsE2-Kuvnf5OLc8QovkCAyUxTkhmbCBR0xx2liA,349
|
|
1304
|
+
telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_params.py,sha256=WL8bQ_bgmo8OHapip7SEFWj8p6lbhsRIuJksN0nZoR0,555
|
|
1305
|
+
telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_response.py,sha256=NDU1dU3akDsAf-befa7YANSr8qmpw5MXZczCzLNG9_4,428
|
|
1306
|
+
telnyx/types/ai/conversations/insight_group_update_params.py,sha256=wYMqbd9X18M3ywVxy76FbAYTx02rjhkmpKuY44Hcuro,315
|
|
1307
|
+
telnyx/types/ai/conversations/insight_list_params.py,sha256=uQPK4l4jJvlAWIumw8mFqrD44WFAFcC9sWuZoPXIVuk,511
|
|
1308
|
+
telnyx/types/ai/conversations/insight_list_response.py,sha256=6r8fwSxM_cqZfeQw2CUyNFyBrAjuRTg6SoyU--d2IWU,368
|
|
1309
|
+
telnyx/types/ai/conversations/insight_template.py,sha256=OQzpGmY6JpzbSLgB9Xm_5Sw8oM2FdBSlE891LyYVK1I,599
|
|
1310
|
+
telnyx/types/ai/conversations/insight_template_detail.py,sha256=B_e_xFmsf8Joejpy-LsUMWiYaratqGvJd-u1XCVL7H8,272
|
|
1311
|
+
telnyx/types/ai/conversations/insight_template_group.py,sha256=E5R9zPcq4-5-dsbL5nYQIn3hPFQfX4NFAH-UwIO07Ac,490
|
|
1312
|
+
telnyx/types/ai/conversations/insight_template_group_detail.py,sha256=qzph4UrqU6PuanWiNYVEY9t8mIuqHRbMFnAvccbsFgc,298
|
|
1313
|
+
telnyx/types/ai/conversations/insight_update_params.py,sha256=eOqWNcZ7ZP985lthVOngmaVjedmoqijiGcBiEwWp8Z8,368
|
|
1314
|
+
telnyx/types/ai/conversations/message_create_params.py,sha256=zWchoj1Is9rbMTXn64NjGlsB9cnqvPvrPd7kPYlPjiI,703
|
|
1315
|
+
telnyx/types/ai/conversations/message_list_response.py,sha256=8kXalX3zsdKMb__S0aC-k22tJMluyRpVE1A3zss8QLw,1493
|
|
1316
|
+
telnyx/types/ai/conversations/insight_groups/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1317
|
+
telnyx/types/ai/embeddings/__init__.py,sha256=hutZ3j-e0lQbtrV1-9s__J24fvN10927TMt7L0WTKlk,285
|
|
1318
|
+
telnyx/types/ai/embeddings/bucket_list_response.py,sha256=A6GVJqthwBm-b1zb69MdPwOkfjMiUm4KLdK0whSvTpU,290
|
|
1319
|
+
telnyx/types/ai/embeddings/bucket_retrieve_response.py,sha256=Vy1JkqAezyS23qL52TueYHqzENIabKvNky-0Hd9Vaw8,514
|
|
1320
|
+
telnyx/types/ai/fine_tuning/__init__.py,sha256=r6wGUnYvbrps2bx8ZB20k9dRQXjJn1zSSopSCa-IOGw,315
|
|
1321
|
+
telnyx/types/ai/fine_tuning/fine_tuning_job.py,sha256=rYdJIcocVVlE-VqJ9j3JjMPRwl0APnGNDdP7afQPl4w,1493
|
|
1322
|
+
telnyx/types/ai/fine_tuning/job_create_params.py,sha256=Ocf6xjZyy1aPROvRDGzSbzH8a8bsdTUpvPZsa9j9NBc,984
|
|
1323
|
+
telnyx/types/ai/fine_tuning/job_list_response.py,sha256=Ky9ARKOFp2vOI14rzty3yJd9okLIZALuev43F6HLAMU,286
|
|
1324
|
+
telnyx/types/brand/__init__.py,sha256=k1G1raS7KyZ2U6HDOp6y_4lKkJcjom9O3ZQi30xcuDE,435
|
|
1325
|
+
telnyx/types/brand/external_vetting_import_params.py,sha256=SRIu4cxfbLN6JOHomsMuj3rAhASZF6kO7VDbD4Gyw6o,825
|
|
1326
|
+
telnyx/types/brand/external_vetting_import_response.py,sha256=DvJIDmDIbZpRda0YPsXbNxZ6ld_GeBdMVVfUzEsZ5Mk,1553
|
|
1327
|
+
telnyx/types/brand/external_vetting_order_params.py,sha256=Y622TbGy7BjCcc_OHNDCeU9n_rLdrBnQPtGdHBSPbKk,572
|
|
1328
|
+
telnyx/types/bundle_pricing/__init__.py,sha256=ThmC4xNbhCRuqB4pq9MDkGenAoMmvyD4fVNdaGqDpIc,1582
|
|
1329
|
+
telnyx/types/bundle_pricing/billing_bundle_list_params.py,sha256=EfAhV-gdsy326ScAlBbXwAhNYp5GThki4MImdwFpsBo,1016
|
|
1330
|
+
telnyx/types/bundle_pricing/billing_bundle_list_response.py,sha256=4eYbrx7K2kHLmr-EJaxHA85MIGZWVrvt7U2KfATN_Z4,408
|
|
1331
|
+
telnyx/types/bundle_pricing/billing_bundle_retrieve_response.py,sha256=n-PZxK5qjvPrzdZZPa1XvaLJKuop1uk2_PLXa_8cX6E,1507
|
|
1332
|
+
telnyx/types/bundle_pricing/billing_bundle_summary.py,sha256=QaaDA1ArATnmBrIwaBjFE85JPuAmwl0t3Pp_2lHalSw,959
|
|
1333
|
+
telnyx/types/bundle_pricing/pagination_response.py,sha256=iX9J2AlWIDFhYj-C5VLi-xldLsrsAJrEfQAT8OTgOgk,451
|
|
1334
|
+
telnyx/types/bundle_pricing/user_bundle.py,sha256=h0-XL-y1L_H-nIWTyELH9QmgpYJ1JejxxN-Fb3SRQOc,807
|
|
1335
|
+
telnyx/types/bundle_pricing/user_bundle_create_params.py,sha256=bsIcRIaGiGUnHhplsqlSwIGVJzfijnpDv5wN8vbzxug,760
|
|
1336
|
+
telnyx/types/bundle_pricing/user_bundle_create_response.py,sha256=OsVS5GWZ1CpWHrzVBVFh7sBuwyrHtC2d-FBVl4WwCLk,293
|
|
1337
|
+
telnyx/types/bundle_pricing/user_bundle_deactivate_response.py,sha256=8ZQl4o5PCY8qOE0J44DGDfjSS_uJ6stEUoL1_49whxo,270
|
|
1338
|
+
telnyx/types/bundle_pricing/user_bundle_list_params.py,sha256=4ZbrT3UQYbDURw5JyhiobqlLNQMVXJmLirZInPqKm3Y,1010
|
|
1339
|
+
telnyx/types/bundle_pricing/user_bundle_list_resources_response.py,sha256=Us-ZdqjBmJjt-ywpMhmAI8bAjY5nRZh-KjR_upILeZE,332
|
|
1340
|
+
telnyx/types/bundle_pricing/user_bundle_list_response.py,sha256=bFtv-OTyt16v-GyuxGrRLjPVbKOK9e9eLt55rBDAVMA,371
|
|
1341
|
+
telnyx/types/bundle_pricing/user_bundle_list_unused_params.py,sha256=1TG2HxxVcJarDHZKeZV8L5Y56mF6OXTFV-rg1PIzxRc,757
|
|
1342
|
+
telnyx/types/bundle_pricing/user_bundle_list_unused_response.py,sha256=KHAF8VmY5HE5PqKV8be2gwi2kHpv9BfjMWTpmy1VOr4,474
|
|
1343
|
+
telnyx/types/bundle_pricing/user_bundle_resource.py,sha256=Oe99CUd5UuwiQE9BUX2o5s4e8Mk_hgHhO-7FVj4TvVY,587
|
|
1344
|
+
telnyx/types/bundle_pricing/user_bundle_retrieve_response.py,sha256=3ouYQWSxC5ypWOVDlGtk3oyf_q_-7pcNENSjI4_yBqw,266
|
|
1345
|
+
telnyx/types/calls/__init__.py,sha256=ZpfzG_l6J4PU8huKUMqMPQEGRC93LzP1Gxwphnw3uDQ,8240
|
|
1346
|
+
telnyx/types/calls/action_answer_params.py,sha256=4hclooIclxC_P5V-4GmABs0vYKYz__KBUXF_qz71wr8,5062
|
|
1347
|
+
telnyx/types/calls/action_answer_response.py,sha256=QXvXCTfUYai9afI8jwCBl8nVTeSXCFP4zHIlco7z3MI,478
|
|
1348
|
+
telnyx/types/calls/action_bridge_params.py,sha256=eBgJ5mmyovDSBil49sfMgrdWnVWVDrWcYUWITTKF8JM,4832
|
|
1349
|
+
telnyx/types/calls/action_bridge_response.py,sha256=VaSr4m4v_BQavB2AQUf0kUmMnoFtNgb03ygiN3irf4g,344
|
|
1350
|
+
telnyx/types/calls/action_enqueue_params.py,sha256=_YhSEKgsD49280EDZVOAdzOZMmWwambwKScNIWOXcJs,1009
|
|
1351
|
+
telnyx/types/calls/action_enqueue_response.py,sha256=yCMirKpUKRpbp-TzEGZ3gHNEJFnB97Uk5fu5mx6sJEc,346
|
|
1352
|
+
telnyx/types/calls/action_gather_params.py,sha256=OTzy8S6L_NIbKVGirx4YPVmK56TNiKjLVUK3raED-Ng,1494
|
|
1353
|
+
telnyx/types/calls/action_gather_response.py,sha256=juPTG7gUSY8I55pQL6PRBI4Bz2LADmieyp9FSgaDdDo,344
|
|
1354
|
+
telnyx/types/calls/action_gather_using_ai_params.py,sha256=Lxy_IwUZtfrSLh-f1E62ZWWTBRTMpGzA6OvXBaFQ_W0,5420
|
|
1355
|
+
telnyx/types/calls/action_gather_using_ai_response.py,sha256=hfA5-WZ6zEbbHy5dlf6uh4gw7PYX6Q6HoxnpbQffQeI,442
|
|
1356
|
+
telnyx/types/calls/action_gather_using_audio_params.py,sha256=kYtKDtVapvd4gBNJIFwb5dBVxNVZ8mRV3heyheMPgd8,2675
|
|
1357
|
+
telnyx/types/calls/action_gather_using_audio_response.py,sha256=Tfkhngpbudgw0kvmvg47iQaM0R718YgTc6t-bfagGxA,364
|
|
1358
|
+
telnyx/types/calls/action_gather_using_speak_params.py,sha256=5mNtC5ZMbNwLDYCo59uhN_OQKLrMPXx8A0ZvU2HKWbM,5017
|
|
1359
|
+
telnyx/types/calls/action_gather_using_speak_response.py,sha256=igpC9rxlIVsOyJozVINZB4_Q4FRSfam0ghBTPYbc84w,364
|
|
1360
|
+
telnyx/types/calls/action_hangup_params.py,sha256=Qbair2J50-ExGRNIXMOru2BqTfiMdjBlZQ5VpMiNad0,570
|
|
1361
|
+
telnyx/types/calls/action_hangup_response.py,sha256=J9bHtE1XFLj3PSp8G-xicgu5xoeqXXO4KUs_v9y0COc,344
|
|
1362
|
+
telnyx/types/calls/action_leave_queue_params.py,sha256=LGjuqrpKNRFKdoq33NgJgfZA3a6xBLoxVZDC8VxEt_k,578
|
|
1363
|
+
telnyx/types/calls/action_leave_queue_response.py,sha256=ejvYjga0UolWCgd6E8e6yR5Fvq02FkpL0QjSOuJI-fA,352
|
|
1364
|
+
telnyx/types/calls/action_pause_recording_params.py,sha256=v1GGFxhoEEdCgGJi2vGfuFhhfGf6J8T8et99H_CMSrQ,653
|
|
1365
|
+
telnyx/types/calls/action_pause_recording_response.py,sha256=YMCISbyTD5t_dOSPPN51QFKBtp9XEqrUkcADEAe9Sys,360
|
|
1366
|
+
telnyx/types/calls/action_refer_params.py,sha256=cnNiokLalYBLW6ZxP_vtNW9FdDb3XPPTZzz-ZhZYOBQ,1275
|
|
1367
|
+
telnyx/types/calls/action_refer_response.py,sha256=JOIGlOJdf3YStvzeOKf1CXqNoSRGIdlHaXG92yBSsHw,342
|
|
1368
|
+
telnyx/types/calls/action_reject_params.py,sha256=M-yjMetuzKxZa6gvYMWLQgnVBJ1cIMwVv5jLTlQqgys,685
|
|
1369
|
+
telnyx/types/calls/action_reject_response.py,sha256=dXfo2jULE6NIr_xaLShzcSPch2lgNyXTvCV9HILasOc,344
|
|
1370
|
+
telnyx/types/calls/action_resume_recording_params.py,sha256=IkN-B4iwm-KZ44J6J6fCmZL5r-JS2dvbZ3iPp8_UYTU,655
|
|
1371
|
+
telnyx/types/calls/action_resume_recording_response.py,sha256=B3MikSDMPtoFpV_FwKXNHbdjMV03TvnDjM9ROVP99t0,362
|
|
1372
|
+
telnyx/types/calls/action_send_dtmf_params.py,sha256=s1kNu-iUi439D2w_PAcURnh-yBf_QzBDWlGik4_Uk9U,901
|
|
1373
|
+
telnyx/types/calls/action_send_dtmf_response.py,sha256=c654KN_kxMl716mC8gIKCZaIrF1o9CopD3nsZUmyFxI,348
|
|
1374
|
+
telnyx/types/calls/action_send_sip_info_params.py,sha256=Ggz79jmdMCns-67RjIiUAWKTP1OzteJ3-NkbV19wsgI,791
|
|
1375
|
+
telnyx/types/calls/action_send_sip_info_response.py,sha256=svL40lbyCqBnEgoHBsjt07bo3-pXLMCSMBsNpvmQHNM,354
|
|
1376
|
+
telnyx/types/calls/action_speak_params.py,sha256=A59YzCO9o3-Q3GvuhpRXTyyxCXEVXmoyWCDqX5U3BTs,4178
|
|
1377
|
+
telnyx/types/calls/action_speak_response.py,sha256=Q_5iiIlT5NBqLpOe6L77oBXTa9624nIVrSxDuwOSAlc,342
|
|
1378
|
+
telnyx/types/calls/action_start_ai_assistant_params.py,sha256=Rxkfj-V5FsqgyNqGu48iSSRgrFHsad803flYTYBTDGs,3826
|
|
1379
|
+
telnyx/types/calls/action_start_ai_assistant_response.py,sha256=k45qcuh9KD5DuTjW4E9UjljQi_HV4CQJBsh1FyaUY7s,448
|
|
1380
|
+
telnyx/types/calls/action_start_forking_params.py,sha256=8ZO99YWIFrf1dU91i5SlmrHfOGTdrvyqs0Mi8w-3dew,1140
|
|
1381
|
+
telnyx/types/calls/action_start_forking_response.py,sha256=V1zscI--5rlGDHH335BFAHD36jn43gT0E6d3IHeHR_A,356
|
|
1382
|
+
telnyx/types/calls/action_start_noise_suppression_params.py,sha256=zGehlpnlFlMkZF0Oim7_XuCsTANGRJCeYX8chgjaR1s,884
|
|
1383
|
+
telnyx/types/calls/action_start_noise_suppression_response.py,sha256=_zf9dL4R7M6XDF12GO5MzgOoO7rH6dllbRefb09aVb4,374
|
|
1384
|
+
telnyx/types/calls/action_start_playback_params.py,sha256=LsVYhgDOjLbXMxGO1uc9AxXkSrVZaENZcC7OjHEk20Q,2542
|
|
1385
|
+
telnyx/types/calls/action_start_playback_response.py,sha256=2-qTkPflC5HMkrcSFKwEbreZKKqgG4xu4nE-E-YObe0,358
|
|
1386
|
+
telnyx/types/calls/action_start_recording_params.py,sha256=FA9D17UEJEx0hDMeLWwNMT6OYEYLMk-4LqTUcq4SgRE,5547
|
|
1387
|
+
telnyx/types/calls/action_start_recording_response.py,sha256=Lir1JuVgqBLIJUm5ekMxF2Q8eSls57PntReJo32Kaew,360
|
|
1388
|
+
telnyx/types/calls/action_start_siprec_params.py,sha256=t1H8_BDwS2Lukg42wTkyiEycib__gBDESyTf89Ro3sg,1368
|
|
1389
|
+
telnyx/types/calls/action_start_siprec_response.py,sha256=wYyiEf8nK5iDlSyhMUqjI5LGIuh47i0bllqfB3SA7oA,354
|
|
1390
|
+
telnyx/types/calls/action_start_streaming_params.py,sha256=wjHS4dp2x9fi3V7EZfz2F7_LyHyixrUDpcPWPjsHaG8,2048
|
|
1391
|
+
telnyx/types/calls/action_start_streaming_response.py,sha256=eGSo9KvyzBx-Q4MkunrOeKh9oF2RXMyQD_yM-F-Rbck,360
|
|
1392
|
+
telnyx/types/calls/action_start_transcription_params.py,sha256=Cn0QDFjlteFRRx2-80mmPojTMnVAExTxTio8hhSeBSE,1392
|
|
1393
|
+
telnyx/types/calls/action_start_transcription_response.py,sha256=YBz5cet2N0xXBQWVWqaGRnHT4mMYgq_zE1n1gWtJCZk,368
|
|
1394
|
+
telnyx/types/calls/action_stop_ai_assistant_params.py,sha256=dpiR3dGM3Fcz5PdqTDhq2s5Y9vmBFkJYIWhIJ1hv25Q,588
|
|
1395
|
+
telnyx/types/calls/action_stop_ai_assistant_response.py,sha256=dlDTKZd_L46ZZTuNSUUYds2iteLKVBpFhFvPZw9ERuI,362
|
|
1396
|
+
telnyx/types/calls/action_stop_forking_params.py,sha256=r3aA8bPa76rrHhoJ-I2pz__6uNDs_MtbbHwtnYf4138,796
|
|
1397
|
+
telnyx/types/calls/action_stop_forking_response.py,sha256=9oKWvYSKuvH3DBJt6hbbRxbTfld3gD34tAn3o9h-IMk,354
|
|
1398
|
+
telnyx/types/calls/action_stop_gather_params.py,sha256=VpFagpose1WBjdoQrXayWJDfUPewP0NyA0DG5J4YeBE,578
|
|
1399
|
+
telnyx/types/calls/action_stop_gather_response.py,sha256=CTjwM531IfHvKA7tZXkGGvX_YicXhiSDs44VFcFqSVY,352
|
|
1400
|
+
telnyx/types/calls/action_stop_noise_suppression_params.py,sha256=4CyrhdLjHDMx9smMiBgHUhUhE7PTPNZQZhgAMoSOVJo,598
|
|
1401
|
+
telnyx/types/calls/action_stop_noise_suppression_response.py,sha256=omqEtVoqwyYuencrw_V_TPIbqIR4BcZqVS3DzgRUA5k,372
|
|
1402
|
+
telnyx/types/calls/action_stop_playback_params.py,sha256=NTjvFI4jJz4207iwJaUJPW2odgrDOPcNI3qdh7K3f44,868
|
|
1403
|
+
telnyx/types/calls/action_stop_playback_response.py,sha256=eSK56-oOjUKhc6gZjheomBMMmkyT8gkkO65fa4N2r8s,356
|
|
1404
|
+
telnyx/types/calls/action_stop_recording_params.py,sha256=AMhWhYg9fJ_iKN8e4PRzH2hTg6Qk8hC7hYnEe1hFid8,651
|
|
1405
|
+
telnyx/types/calls/action_stop_recording_response.py,sha256=iRtn7MJV07geC-s-90I4DS2oP2KL3F97oUc6HzlupiA,358
|
|
1406
|
+
telnyx/types/calls/action_stop_siprec_params.py,sha256=OcqEXl_CJrI06PJksj8iXIW-7d_zHo-KN-9FE9fojB4,578
|
|
1407
|
+
telnyx/types/calls/action_stop_siprec_response.py,sha256=iaHpRXYVlOJQDGOA9kx-_oCeQO4hkdHZ4-Mw7rQADjE,352
|
|
1408
|
+
telnyx/types/calls/action_stop_streaming_params.py,sha256=SK1-Tkze9GPVDuUT8tKSg2MPGeBoSDvmIG-qmsOa1Xk,759
|
|
1409
|
+
telnyx/types/calls/action_stop_streaming_response.py,sha256=eNFFn2N0fb3Ex7JAUFlMN--vJM3G9C1_t-3EbptgOAM,358
|
|
1410
|
+
telnyx/types/calls/action_stop_transcription_params.py,sha256=YUb-a_KunUDsD6fbaug6G4V6BVm4OD_sB0KuwJC8bNs,592
|
|
1411
|
+
telnyx/types/calls/action_stop_transcription_response.py,sha256=hltLMgIxyJxj_PEeBuA3BPQ_33n1LvKSiDBV3EspYCY,366
|
|
1412
|
+
telnyx/types/calls/action_switch_supervisor_role_params.py,sha256=_oDT9Uae3ODWqltkCHnAyf1H3lRQZ_gmlBI4_EKr-4U,529
|
|
1413
|
+
telnyx/types/calls/action_switch_supervisor_role_response.py,sha256=0JlFJ7E6GGgtB9ZmyEB01RH0MmiEHjp_O3LEiIPCRWY,372
|
|
1414
|
+
telnyx/types/calls/action_transfer_params.py,sha256=hTZabsUSVcjotWHZeNQC_COSkpKkXwdIUVwenvBxXWA,7183
|
|
1415
|
+
telnyx/types/calls/action_transfer_response.py,sha256=HVyyXYhzue5F6EuZtm3DGxX52fopUO6lqRWz06nrqJw,348
|
|
1416
|
+
telnyx/types/calls/action_update_client_state_params.py,sha256=tXxzOKclY3R_ZIRgleAY9sfge7Kwi9Vk48yu6CqXVpk,433
|
|
1417
|
+
telnyx/types/calls/action_update_client_state_response.py,sha256=S560c0ysvnArlfz0YogaMLuLpGpDJIaVSnQ4tTIRvok,366
|
|
1418
|
+
telnyx/types/calls/aws_voice_settings_param.py,sha256=xJ74kESJjFBMWSwc4mwYYkD7Um9WMh4fJnqXMPc3kUc,243
|
|
1419
|
+
telnyx/types/calls/call_control_command_result.py,sha256=KDwZ0FCljEaUn-Yq5q0hHOUtyjrOqAFMtX8idbe-roA,267
|
|
1420
|
+
telnyx/types/calls/eleven_labs_voice_settings_param.py,sha256=gHD7fEYqxD2OyYzE9ETT-l6EGwPYuNB13dHadiXX-7M,592
|
|
1421
|
+
telnyx/types/calls/google_transcription_language.py,sha256=tDjPKZGELuC58nHl_Ea04h15dSDmvb1j2nc3_VJXRdg,1034
|
|
1422
|
+
telnyx/types/calls/interruption_settings_param.py,sha256=rHmZAs6dTs7UPmONAvYOfBqMYVdzi7aP_BsVv4XxHFs,356
|
|
1423
|
+
telnyx/types/calls/loopcount_param.py,sha256=snoWd5Kn2jbPeeplbITO2We4h3xKwkQRrDslcA3ZBWc,263
|
|
1424
|
+
telnyx/types/calls/telnyx_voice_settings_param.py,sha256=cKNxCHVAYAyub7djKQRrVhshbTcORKqIcXyS1GFLYCs,413
|
|
1425
|
+
telnyx/types/calls/transcription_config_param.py,sha256=Vs5N08QkJC_yjhLdm4msoejBgSN4MkNG8w29duTOyMo,652
|
|
1426
|
+
telnyx/types/calls/transcription_engine_a_config_param.py,sha256=_b_x6zeDI40PSB-zG9TZDH0XSada7s0_oTD1OKfKTVs,1759
|
|
1427
|
+
telnyx/types/calls/transcription_engine_b_config_param.py,sha256=7gWLXIHR2LF5jMO8Pq2Di9iYZIEiyIB8aOG-J08Bw6Q,2009
|
|
1428
|
+
telnyx/types/calls/transcription_start_request_param.py,sha256=XZc239pYzUUK24NAAGyiR0mQCBKKwXFg2sXlKYpsITI,1391
|
|
1429
|
+
telnyx/types/campaign/__init__.py,sha256=EiCQNPPvDeCHP-bO9yVxHoeoEvU_Ln529j81ptDzk2s,293
|
|
1430
|
+
telnyx/types/campaign/usecase_get_cost_params.py,sha256=IpXXEkkWs6BrDL2wqbac-GbN4UGrP3vVpU1cPNosUQE,290
|
|
1431
|
+
telnyx/types/campaign/usecase_get_cost_response.py,sha256=oOKguNRxUrMrTrPjGSho7OW5qwq9ZLb6fPqNk0_v3nU,440
|
|
1432
|
+
telnyx/types/campaign_builder/__init__.py,sha256=tOZW32f4DDwCmKo3h_jPtK3uK6PPBt0pFHqcv5tXJiI,233
|
|
1433
|
+
telnyx/types/campaign_builder/brand_qualify_by_usecase_response.py,sha256=hDW8jagEpo0cisTZ0vCQKGwwAlpoeTx5Dj7q1q6U4NE,1273
|
|
1434
|
+
telnyx/types/conferences/__init__.py,sha256=k2jxvCPwjx1XL-lCUXiwGctPopCycBc7dxdBiQKVb7g,2453
|
|
1435
|
+
telnyx/types/conferences/action_hold_params.py,sha256=GFRHKu32lQD79TLIxgigDc8pzAblVyHkPXnJejRTSbc,915
|
|
1436
|
+
telnyx/types/conferences/action_hold_response.py,sha256=cLjn1G9ThJ4sYw0xNd_xYU6VfwZ_iv52y40NL2NNUTo,336
|
|
1437
|
+
telnyx/types/conferences/action_join_params.py,sha256=dZ7JsvuPlmx61zC1IcSrIsDbWdHxbDVG83nIfIdMi7I,3609
|
|
1438
|
+
telnyx/types/conferences/action_join_response.py,sha256=E1fGwNwaIbe_oqlgoFiNoDoX5Mv1yyosLngp-Ckzx5c,336
|
|
1439
|
+
telnyx/types/conferences/action_leave_params.py,sha256=oVlLVHSX_YqgyJIXCJcikjvgDDf1oWQkL02i1zlICAk,800
|
|
1440
|
+
telnyx/types/conferences/action_leave_response.py,sha256=5B8MOC1sOZ7UISrDL1uj4my6tb4sod4AUcCtzkIqACE,338
|
|
1441
|
+
telnyx/types/conferences/action_mute_params.py,sha256=XPPKalCku-I_R3ckz3unuPp0Tao5mDwYIhLA063TV_Y,429
|
|
1442
|
+
telnyx/types/conferences/action_mute_response.py,sha256=3FlUQlzO9XtoAqi3dLGKdT85KJPhUeS7OOK1Q33iO_0,336
|
|
1443
|
+
telnyx/types/conferences/action_play_params.py,sha256=lcT-FIQPZCf_mQFx7-RNNEUQUYpFvdg-HriqjidXlTM,1179
|
|
1444
|
+
telnyx/types/conferences/action_play_response.py,sha256=XqktjnlJcxu7mwKaKJF_tAdF3FbkFHAgGz4UtmNILMg,336
|
|
1445
|
+
telnyx/types/conferences/action_record_pause_params.py,sha256=-RPhxyukqHA6Dl4Q2r9Ms9qnxE0UPNRzy71yWkaAFmU,514
|
|
1446
|
+
telnyx/types/conferences/action_record_pause_response.py,sha256=vLayzTJ44KOHbL-9PdZrp5SuhGt3RqSKNXWqmjv2knU,350
|
|
1447
|
+
telnyx/types/conferences/action_record_resume_params.py,sha256=WkOqgaZugs4M7mSY0fbCNd8IlKYFU2aEyHzVOOGDdDY,517
|
|
1448
|
+
telnyx/types/conferences/action_record_resume_response.py,sha256=51wRtSgDQ4Hfqm5jYCtNvWoFwxYaoXV2nDb3sEbDe14,352
|
|
1449
|
+
telnyx/types/conferences/action_record_start_params.py,sha256=1HGkqumTJO3RWh2X3C-TQz4JMsILIrzhN4_G4h1maRU,1045
|
|
1450
|
+
telnyx/types/conferences/action_record_start_response.py,sha256=OQcotw6Wt3pWm56HLIb5fFqnnZhl1BhrLyisRn9C9t0,350
|
|
1451
|
+
telnyx/types/conferences/action_record_stop_params.py,sha256=U5AdC9DNcy7GZBdMUB3KVfCRnJ8WVYrRhrjlUjHMe9U,645
|
|
1452
|
+
telnyx/types/conferences/action_record_stop_response.py,sha256=WgYXQtGvR4wzQAkPhViLrnOEfvq_WwtPil1xGBGjEV0,348
|
|
1453
|
+
telnyx/types/conferences/action_speak_params.py,sha256=AUWXhygrGbW3KlOhOB_zAgpZtaShyJbDi71rz97ycCk,3726
|
|
1454
|
+
telnyx/types/conferences/action_speak_response.py,sha256=quPsjqeOlnVW1243jr5Z30AXyNgsEpeHIxiyB4qQaHg,338
|
|
1455
|
+
telnyx/types/conferences/action_stop_params.py,sha256=-oY2F8wIWWxUmvcGkEGrqkZcbN2GOfJ1YZiMwZrATKk,481
|
|
1456
|
+
telnyx/types/conferences/action_stop_response.py,sha256=Z6jlJ_qU5KAmqUQ9S3wTKg3pUFeb8RXkZBi-MqhWM0g,336
|
|
1457
|
+
telnyx/types/conferences/action_unhold_params.py,sha256=zHwrMnnnphxyiCJgpRre8-h0xczBYuaS_ICrzeiXrPI,450
|
|
1458
|
+
telnyx/types/conferences/action_unhold_response.py,sha256=6B8rFFik618eoZanuwXCI7JgMpll3o_6Cm6U6cHKIdk,340
|
|
1459
|
+
telnyx/types/conferences/action_unmute_params.py,sha256=NeeZJ3iKVt0WTm5caU38SFwjrN_b3mXYwpa2cund3iA,480
|
|
1460
|
+
telnyx/types/conferences/action_unmute_response.py,sha256=5gfnXbXFnuUkB3kaA7nHW6PARPV8vYHtGtP7JNG25h4,340
|
|
1461
|
+
telnyx/types/conferences/action_update_params.py,sha256=vktP3B1Kfj48XN1EzICVWOHXZ5RtwEuVPmuGZ8wi9rs,1321
|
|
1462
|
+
telnyx/types/conferences/action_update_response.py,sha256=4KSvnb5_fdHegz2o73eV9lv4KT1gwsIUFnTnMctNoBw,340
|
|
1463
|
+
telnyx/types/conferences/conference_command_result.py,sha256=ELNqKO8V5N8Vwp3llLqrOiwwlqnU5VlfK97JK5huIDI,219
|
|
1464
|
+
telnyx/types/credential_connections/__init__.py,sha256=iv5LJoRk5Sw9iJ6mAGwzaumCAZFH_kvzo8RbC-Y55iQ,266
|
|
1465
|
+
telnyx/types/credential_connections/action_check_registration_status_response.py,sha256=TZyz6omf6dxlJvPPZ5C6Yw-aP_PxEggD97xv3w4KHjA,1192
|
|
1466
|
+
telnyx/types/external_connections/__init__.py,sha256=O7vrqPduYpRukfCOs-H2kNe0OQN0BnWwULsfAZjIkys,2359
|
|
1467
|
+
telnyx/types/external_connections/civic_address_list_params.py,sha256=4DnOWvWXknooCg6xM2VzLNUBqVm94LNNSLzY_yoYe-c,542
|
|
1468
|
+
telnyx/types/external_connections/civic_address_list_response.py,sha256=2-cMrwMYtv54RuLVG5TTowDu0Zc6VEfmCgmzMBKZdgk,1458
|
|
1469
|
+
telnyx/types/external_connections/civic_address_retrieve_response.py,sha256=6qlIdPqnF79zqvEGQf0ttR_iP0ZmGXX3sVx-ladYJlI,1460
|
|
1470
|
+
telnyx/types/external_connections/external_connection_phone_number.py,sha256=Ve74u0_Hzgq1rKc-BwI-vbJX61rkZw3TZ7zRI4TTqw4,1098
|
|
1471
|
+
telnyx/types/external_connections/log_message_dismiss_response.py,sha256=tEUrS6oyiz1dVVoVzeSNm4eKQJgT7RnRZEqxZaI2ab8,334
|
|
1472
|
+
telnyx/types/external_connections/log_message_list_params.py,sha256=S57q8J3bNZxiqM4FBgc58s67RVbZ2jvki2JZftXoKUg,1413
|
|
1473
|
+
telnyx/types/external_connections/log_message_list_response.py,sha256=q-YYoe_K3uUS6AhBScFMdppfHe9ojIdhJ7rknXnj65s,1219
|
|
1474
|
+
telnyx/types/external_connections/log_message_retrieve_response.py,sha256=1v2r7oS14BqbvxM6d4t9W80ta_nAOiSEqgSjTx1aAQ8,1061
|
|
1475
|
+
telnyx/types/external_connections/phone_number_list_params.py,sha256=5yG1fRmbMSCrLmzhGsMh3T5CpjjL7jAHTFURbJjmhRY,1348
|
|
1476
|
+
telnyx/types/external_connections/phone_number_list_response.py,sha256=LYDU6BhXD583cILpd36Q4Pl3bzmdOxAav9ff8EQXk6s,543
|
|
1477
|
+
telnyx/types/external_connections/phone_number_retrieve_response.py,sha256=-5IcbzXPkO8D9r7yHN_I55sX7WwiYn2fSnIN5SQU7wk,373
|
|
1478
|
+
telnyx/types/external_connections/phone_number_update_params.py,sha256=9ufRuQSV1r3_ks6fTpelW0F9tQa8YyQrrP3qGsJXvNQ,378
|
|
1479
|
+
telnyx/types/external_connections/phone_number_update_response.py,sha256=JPpz7pC8s5wyHNrWSq5uwW-tr4U-g71VLzjdhYcbnfU,369
|
|
1480
|
+
telnyx/types/external_connections/release_list_params.py,sha256=iBQ2xZvN3PC8N0idcVtiF_yFZLMKgaEqLRg1nNpR5Sc,1769
|
|
1481
|
+
telnyx/types/external_connections/release_list_response.py,sha256=rfgVkrTcsETl2dQRELwY8EMYGfRarOHVLo6aU2jvZnY,1346
|
|
1482
|
+
telnyx/types/external_connections/release_retrieve_response.py,sha256=QfceFyLfmf8yotG8CLraqiU4bqGQV8n2F2G3m0X8KAM,1182
|
|
1483
|
+
telnyx/types/external_connections/tn_upload_entry.py,sha256=WdTriRAbt7qWRxV55zDuNOGgZeyPOLZPlOhgESUWlaA,1749
|
|
1484
|
+
telnyx/types/external_connections/upload.py,sha256=3dGtXGQw2ZGVbAV5IjCfyPtSCtuA9Xc0b61EnRl36_g,1050
|
|
1485
|
+
telnyx/types/external_connections/upload_create_params.py,sha256=oWwX310jS3rm6Tnk0EKuAQ6Zz90cQSaS92saWAxR91U,814
|
|
1486
|
+
telnyx/types/external_connections/upload_create_response.py,sha256=Fa6mX1ZoOCkRlJr31uBFip5I_Gux2i19x77jiNofN0w,403
|
|
1487
|
+
telnyx/types/external_connections/upload_list_params.py,sha256=voJECmEzAn9ErUhFCRTkfthHD9-OT8Twphzp21Aevd0,1626
|
|
1488
|
+
telnyx/types/external_connections/upload_list_response.py,sha256=dPFQxVc7ZgeYQLEZoRojc8R7vx1slYce4t9KQLTn9ds,461
|
|
1489
|
+
telnyx/types/external_connections/upload_pending_count_response.py,sha256=reN2NR7lyvS-MToHX400lQLdCQeAmrHygv4V94EgxU4,590
|
|
1490
|
+
telnyx/types/external_connections/upload_refresh_status_response.py,sha256=5k4-cEu2KI_wentV_Kn6bAfMZ3ZDExlJ_15Bdv_24pQ,338
|
|
1491
|
+
telnyx/types/external_connections/upload_retrieve_response.py,sha256=XWc-iSRfcNNClTUYYktHPs6p7QbYpyes8Wyy4bnoaUM,291
|
|
1492
|
+
telnyx/types/external_connections/upload_retry_response.py,sha256=WoAkYMT_gf-6cIS-SYm7sIl02f8z-IdFsSiTM36Qb6g,285
|
|
1493
|
+
telnyx/types/faxes/__init__.py,sha256=8klMpMQCvfsBbuavxmmgN3rsfIdS2I4Ru3XclQKt_Sg,288
|
|
1494
|
+
telnyx/types/faxes/action_cancel_response.py,sha256=SHtVH_YQup1fLb_1SdMcp_nHUO5Zuq-uK19IPB1Yw-0,259
|
|
1495
|
+
telnyx/types/faxes/action_refresh_response.py,sha256=MrSWBscQBhz77OpzwSPn6f3nJABCJtWGAOQR2mqrQuE,261
|
|
1496
|
+
telnyx/types/managed_accounts/__init__.py,sha256=s53m4G7A5MA-7Plebq9kzzJSt4VoqqpfiAnyePk-2rM,363
|
|
1497
|
+
telnyx/types/managed_accounts/action_disable_response.py,sha256=EvZGazP3Ve4MkwX1Y6a8V_RuMQh33Ghtpk0fTTx_8qM,315
|
|
1498
|
+
telnyx/types/managed_accounts/action_enable_params.py,sha256=xbPShY1bj7XSTclowbA7-cDZnjssDCHTb3GQZsUqXbg,478
|
|
1499
|
+
telnyx/types/managed_accounts/action_enable_response.py,sha256=fj0HbGOB6wVSAn1q6qOCNwYpNc59ujYeqC-Zmt-Pd_c,313
|
|
1500
|
+
telnyx/types/messages/__init__.py,sha256=9LM3jFslit6WWh-W_bbLEbyGQgwYecJbrs5QSolxvbA,317
|
|
1501
|
+
telnyx/types/messages/rc_generate_deeplink_params.py,sha256=ffHwdqJULKIyCwBplwS-kvKkyqGItEfplduxFnAKqTA,398
|
|
1502
|
+
telnyx/types/messages/rc_generate_deeplink_response.py,sha256=cw11AeSzLTJ_MGL81iem52HByIKxgsrzqvk6T6bs3v8,307
|
|
1503
|
+
telnyx/types/messaging/__init__.py,sha256=YfXxon3b5-RZaErwb9iAK2HS6JHRJXESBUjp3Op0s4s,621
|
|
1504
|
+
telnyx/types/messaging/rc_invite_test_number_response.py,sha256=GgMzLoceJEqCzTBw6EZmw79H2dCvB3fNdrHtvu-QeKI,670
|
|
1505
|
+
telnyx/types/messaging/rc_list_bulk_capabilities_params.py,sha256=5goQaTtbZ8_h0po8D_5hrQV02_xHrAgIwaNjz9aAyqc,435
|
|
1506
|
+
telnyx/types/messaging/rc_list_bulk_capabilities_response.py,sha256=wPgIeeLKtM0Qe8kmrYXVtJzMZp33M4lmZXJD5KiJ-sM,347
|
|
1507
|
+
telnyx/types/messaging/rc_retrieve_capabilities_response.py,sha256=DDAjDG8jWaXaMB5BQHybyK61XL16Al8XVGUIiWi1kaI,335
|
|
1508
|
+
telnyx/types/messaging/rcs_capabilities.py,sha256=Rh2Ibrc_T32GOFKM4hzDTHcWlGI-P3EOYeiagzzUW-I,630
|
|
1509
|
+
telnyx/types/messaging/rcs/__init__.py,sha256=nsI6zmiulzCr5aHDhOmZcxanr54EksSQzo6nJx-YPEE,333
|
|
1510
|
+
telnyx/types/messaging/rcs/agent_list_params.py,sha256=AoVDtxK2mf6TBcWU5pOaVU6YQlPh74rhiD_cPOlsEuw,505
|
|
1511
|
+
telnyx/types/messaging/rcs/agent_list_response.py,sha256=09fypRa9LDHTIHN0VLohdDI4M6KR6lKofIp71t732qg,392
|
|
1512
|
+
telnyx/types/messaging/rcs/agent_update_params.py,sha256=TbOR5KPQQPSPdU6ZWFtctnBEVrH9jr9eSvVMoNSINB4,520
|
|
1513
|
+
telnyx/types/messaging_hosted_number_orders/__init__.py,sha256=dfyO3Tki3O2O7FceSyMoomhb39mchEhMS7JpdC1Hl7s,305
|
|
1514
|
+
telnyx/types/messaging_hosted_number_orders/action_upload_file_params.py,sha256=DVbFGxIBOKks-QSE7WtflCcod0Cgfklt0XG0YpQarcI,533
|
|
1515
|
+
telnyx/types/messaging_hosted_number_orders/action_upload_file_response.py,sha256=sljp0BqE0k039h506eC3_ipQCyeizfVBbtnWT8fGI24,366
|
|
1516
|
+
telnyx/types/messaging_profiles/__init__.py,sha256=RTEHA_Gn5qNUilWpmVHP4Hm5nElGcQ_HlWjUokQXLZc,668
|
|
1517
|
+
telnyx/types/messaging_profiles/auto_resp_config.py,sha256=cpknBd4iNbIxTAiCodLIn3EDE4lSi15zB8VOVNmQDFQ,479
|
|
1518
|
+
telnyx/types/messaging_profiles/auto_resp_config_response.py,sha256=OB82kX9x2tycIK1LYYrwj-Gtd-wDq2iWL3NV5kMQoUI,271
|
|
1519
|
+
telnyx/types/messaging_profiles/autoresp_config_create_params.py,sha256=GO60EVlop7qHLbWRM0QYAzszePRJDHwk79COjrdkrvs,447
|
|
1520
|
+
telnyx/types/messaging_profiles/autoresp_config_list_params.py,sha256=8jNayXBl9mKkmHPz6FyySukEmW3sP0Xi1CluzQ7UIm0,741
|
|
1521
|
+
telnyx/types/messaging_profiles/autoresp_config_list_response.py,sha256=qh2aso1yINXh8KCu8pJvDutMRG-1TUwta3RZNS6_BYE,381
|
|
1522
|
+
telnyx/types/messaging_profiles/autoresp_config_update_params.py,sha256=HtmxF0VngosWMMgHOXq9I4fNUU423aZpAP0NaEkwToY,478
|
|
1523
|
+
telnyx/types/messaging_tollfree/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1524
|
+
telnyx/types/messaging_tollfree/verification/__init__.py,sha256=uydes9s3dEq5GgID_v0J-jIy_7W5z6IomNyjSgeAzcU,1019
|
|
1525
|
+
telnyx/types/messaging_tollfree/verification/request_create_params.py,sha256=p4-oc4XIQdo0LtcWLQG1sMIJMU-G4uA8bUMfSSu8NBg,3810
|
|
1526
|
+
telnyx/types/messaging_tollfree/verification/request_list_params.py,sha256=du1u1sKD1su76I9pdJeIPKJVc-LWKyacqMOJkPLc3Us,862
|
|
1527
|
+
telnyx/types/messaging_tollfree/verification/request_list_response.py,sha256=YuKTQpt2LsvteiS9NTYXdMJ7zBLmENw5rNuU_DnE60Q,512
|
|
1528
|
+
telnyx/types/messaging_tollfree/verification/request_update_params.py,sha256=jSj7sl8wxZMOycgQD_c9WYwMNHcD9TLl5ELmiive8Ww,3810
|
|
1529
|
+
telnyx/types/messaging_tollfree/verification/tf_phone_number.py,sha256=1rDKVArKlW-ipG13ZwxU8zHrnLJWxqZAWOxoWWKs484,280
|
|
1530
|
+
telnyx/types/messaging_tollfree/verification/tf_phone_number_param.py,sha256=HKFsEA1RxqQYRNlTpfTmynoXJAA49n2DHJQkHAxfKCo,385
|
|
1531
|
+
telnyx/types/messaging_tollfree/verification/tf_verification_status.py,sha256=WXv7GzELh6X0nky743XYKZPujcj-g1piDbfSITavwsc,328
|
|
1532
|
+
telnyx/types/messaging_tollfree/verification/url.py,sha256=CbLrYJeilXZJO2rWGmLL_W_L60CMVIolRpBUO3zLx7U,177
|
|
1533
|
+
telnyx/types/messaging_tollfree/verification/url_param.py,sha256=dyPNCHkYbJQ7zHhpuLa8xTdJQS0H0fW0YIqWItTNCCY,262
|
|
1534
|
+
telnyx/types/messaging_tollfree/verification/use_case_categories.py,sha256=EM8ohix6mMTnMK6F4DwmRPxpcjdTUYobHfONdsFNleE,1227
|
|
1535
|
+
telnyx/types/messaging_tollfree/verification/verification_request_egress.py,sha256=NVz_QrQI6RrNJG5lPoVdCYYiUR33rRmvMCTL7nVriPA,2252
|
|
1536
|
+
telnyx/types/messaging_tollfree/verification/verification_request_status.py,sha256=VOBr4reafObW6L8gDkDtwxPC84gKghVuNCA7GFNLyPs,2377
|
|
1537
|
+
telnyx/types/messaging_tollfree/verification/volume.py,sha256=ocfY2EJG986TBTvLKK_aWPxwbdTKxPzsZoBv5SFdxXI,310
|
|
1538
|
+
telnyx/types/networks/__init__.py,sha256=QYtQzaWvF6EggvmdzyJwDGkakz9opa76cWVBvy7QF3I,547
|
|
1539
|
+
telnyx/types/networks/default_gateway_create_params.py,sha256=uh5oaOF16AMo3GiFU9cLUX7zy8l5us_HenVBAJiFf18,321
|
|
1540
|
+
telnyx/types/networks/default_gateway_create_response.py,sha256=s5FswP-lncv6s363XwccpnM9wkWaq-Y_FSw8Ad58dXI,818
|
|
1541
|
+
telnyx/types/networks/default_gateway_delete_response.py,sha256=fM4W5eo2Fqm8mcq0GzHD2tpJZ9PVGaAlNxIt8WVW8bw,818
|
|
1542
|
+
telnyx/types/networks/default_gateway_retrieve_response.py,sha256=UiSjZHvji_0G3kk3vLoUtWkD_6xuh0Z3SB2dn1Ce3v4,822
|
|
1543
|
+
telnyx/types/number_reservations/__init__.py,sha256=Ak9GBt1dBxRMynP02qb5y4U66T2oW9CM_ytKY5bwoDY,204
|
|
1544
|
+
telnyx/types/number_reservations/action_extend_response.py,sha256=SI3THhfcq0clZqYxSMh1vnMB0wEENNs9LN8tXAyF_O4,322
|
|
1545
|
+
telnyx/types/operator_connect/__init__.py,sha256=lWkacjA1L2d-w5yKe1v4vhmw66crhI4uresFLSX1aH4,207
|
|
1546
|
+
telnyx/types/operator_connect/action_refresh_response.py,sha256=x_oibdBf0MNxwHySvNoY4dvjQL9USCMHO1zLlVXLy9o,420
|
|
1547
|
+
telnyx/types/payment/__init__.py,sha256=0YwnCxSPUEwdzFThpel31djcLW6hgxi9nDZbRVRV15A,450
|
|
1548
|
+
telnyx/types/payment/auto_recharge_pref_list_response.py,sha256=XiHC3dzwNIGMsfms7wueynmzCQXk6lUMQCrKwC6I094,1078
|
|
1549
|
+
telnyx/types/payment/auto_recharge_pref_update_params.py,sha256=e4BFJmOyfQR1WrSMQVitjn6CvdRjprcufDU5XcqAEHE,764
|
|
1550
|
+
telnyx/types/payment/auto_recharge_pref_update_response.py,sha256=twKHzyDzDedX_wfne9IeQFaGuAfZRotf6y3vSlkS3H4,1082
|
|
1551
|
+
telnyx/types/phone_number_blocks/__init__.py,sha256=wC6oPhPwv-O30tJVpRes92sAX43Q7-v7RhJbJ0GSeM8,604
|
|
1552
|
+
telnyx/types/phone_number_blocks/job.py,sha256=_-npUJf9jzGz7ZX5QZbzUDsd58bNJzKhaOimNhEmcI4,2364
|
|
1553
|
+
telnyx/types/phone_number_blocks/job_delete_phone_number_block_params.py,sha256=ywAhRJklSizIkDUt_gj6UMdF-vdVzmrcgM_Pypnnj38,326
|
|
1554
|
+
telnyx/types/phone_number_blocks/job_delete_phone_number_block_response.py,sha256=KwMoWXP2PCDkOyRPgSfrnM6a-oLF9cA1qO9R7F6LIWY,304
|
|
1555
|
+
telnyx/types/phone_number_blocks/job_list_params.py,sha256=YQDWmblokCjozJfhgTkEw9g64G7s_oziuzly7l-AOy4,1075
|
|
1556
|
+
telnyx/types/phone_number_blocks/job_list_response.py,sha256=qRuAw6dP-SLBQG-QoKWyYOABaDoLSZOlsbJntzXoptQ,368
|
|
1557
|
+
telnyx/types/phone_number_blocks/job_retrieve_response.py,sha256=b_PRsZBBPKwn2BhbSq_EJf35rX6G1UALvaCUk1Bx3ig,276
|
|
1558
|
+
telnyx/types/phone_numbers/__init__.py,sha256=00vqbTkvfFGjDBuHToVzOXKLi2iy12kU2qGM6XaSO5U,4266
|
|
1559
|
+
telnyx/types/phone_numbers/action_change_bundle_status_params.py,sha256=NOjcax9mYJioC_kRwl_2AxUawd1JWZTEetRKtvvZcfE,689
|
|
1560
|
+
telnyx/types/phone_numbers/action_change_bundle_status_response.py,sha256=3ttzGGA_SJU-gbb8zcMWeLG5DCmSbi2QIH28xqTb17g,381
|
|
1561
|
+
telnyx/types/phone_numbers/action_enable_emergency_params.py,sha256=UwHCviQOrZMX5Z6P1inoOee3bkY_ZTWkZ-e6z0w3y1E,498
|
|
1562
|
+
telnyx/types/phone_numbers/action_enable_emergency_response.py,sha256=Rzo65Unj0S4kWL7geh99LZaP7vmUR0sdDS2oxD7i8lU,375
|
|
1563
|
+
telnyx/types/phone_numbers/action_verify_ownership_params.py,sha256=9-2JbtebTgv-h3E0rZMH1_pj31JPz94V_kbwouSuAgc,397
|
|
1564
|
+
telnyx/types/phone_numbers/action_verify_ownership_response.py,sha256=IrNPxy_YBDWTTIl_GPEheEXb55pEdeTj25evvecF24c,818
|
|
1565
|
+
telnyx/types/phone_numbers/call_forwarding.py,sha256=dBxLb3PqKYNUAJR3uAj1XIUlpQIkYKF6SXvEep8jVAo,928
|
|
1566
|
+
telnyx/types/phone_numbers/call_forwarding_param.py,sha256=Vb5TD7UEvqekCZRWlB6AHRHISQ01LQeRBMQj7zHPq7s,885
|
|
1567
|
+
telnyx/types/phone_numbers/call_recording.py,sha256=OzQ4uoCbjRCxo1arkvyh6ZhtHUYmikDxhklT0nfDHrM,749
|
|
1568
|
+
telnyx/types/phone_numbers/call_recording_param.py,sha256=DTl3_bMXxn1-czDrzdCWRQF0iWX_A3OnZKEv09DFVyI,706
|
|
1569
|
+
telnyx/types/phone_numbers/cnam_listing.py,sha256=UtyiazGBPzt6Ne3MJ9YAYPAMFSc-FDyfAu9S54xUACA,600
|
|
1570
|
+
telnyx/types/phone_numbers/cnam_listing_param.py,sha256=yY_HD0j-e6tjtn0EeBIRFT3rlLbfrkXspveCfPHb_RY,603
|
|
1571
|
+
telnyx/types/phone_numbers/csv_download.py,sha256=C1Z8WKf51VHSfwqayq-MM2hbh7OeWwBEUvbb6O95OPY,703
|
|
1572
|
+
telnyx/types/phone_numbers/csv_download_create_params.py,sha256=rL_YcRFMGioW3pB0Dlz93xbIbzDalK6AHMnkhmBRWT8,2890
|
|
1573
|
+
telnyx/types/phone_numbers/csv_download_create_response.py,sha256=9UTtuuX0Y8EGHugxoajrTMu9_g7ApFSIu3SVhJLvFek,325
|
|
1574
|
+
telnyx/types/phone_numbers/csv_download_list_params.py,sha256=xFPNKDMevVQi-6rnHMn5_KApMK-yGniINN1j5ODymeU,517
|
|
1575
|
+
telnyx/types/phone_numbers/csv_download_list_response.py,sha256=GGIAUhOL4voLshkU858DICtvp7Qv0P7Bm2W9ivj7gAc,409
|
|
1576
|
+
telnyx/types/phone_numbers/csv_download_retrieve_response.py,sha256=e9U1AjAsvkEynlsnlvpElP0u_RCpvcnwhT_POcokxbA,329
|
|
1577
|
+
telnyx/types/phone_numbers/job_delete_batch_params.py,sha256=wmRseoSFlWUHdYjI8YMo1XdNWTB16TWZTQ68KeNsPzQ,326
|
|
1578
|
+
telnyx/types/phone_numbers/job_delete_batch_response.py,sha256=pU7r3bHrQTfZilyKsAKrK8nvYghExdaEjeJALKLwdyc,320
|
|
1579
|
+
telnyx/types/phone_numbers/job_list_params.py,sha256=km-cMCdyzGVSb0bBQ4qeBzW0axf3UcRydiZs9G-CxCQ,972
|
|
1580
|
+
telnyx/types/phone_numbers/job_list_response.py,sha256=S77RROwO-b23jXNfsmP2c6XG6iQuQfm2T4YBYhLYZRk,406
|
|
1581
|
+
telnyx/types/phone_numbers/job_retrieve_response.py,sha256=3hSWls-xCpYJCz5iTY-LzapbPBp1cAl5IlJDL88ubHg,314
|
|
1582
|
+
telnyx/types/phone_numbers/job_update_batch_params.py,sha256=QookiAmVbnhpE3KAW25Sj9Jpz2bQbvUAuyLDIeLT_Fw,4263
|
|
1583
|
+
telnyx/types/phone_numbers/job_update_batch_response.py,sha256=lYeM8CZH5zHjvVrlfI2OE3Y5gZ0eUqzFMuOl2XGlY40,320
|
|
1584
|
+
telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py,sha256=RJlhBhN3eLnnQXFX-3NzZQKFdrYSj8CGWuUfk12MwT8,711
|
|
1585
|
+
telnyx/types/phone_numbers/job_update_emergency_settings_batch_response.py,sha256=iFRA6iIZ8Xi0NJ33v2hTLQyVNWsRNJTVFgSmD1dR7OI,354
|
|
1586
|
+
telnyx/types/phone_numbers/media_features.py,sha256=PEJJQiI8E2KDU18cMi7XyzuQfef_2oglb4NvZW74r4E,908
|
|
1587
|
+
telnyx/types/phone_numbers/media_features_param.py,sha256=1-dExw38nYYJLNoB1TjfMQ0j4iATSiCTPs89F-Pd8KM,894
|
|
1588
|
+
telnyx/types/phone_numbers/messaging_list_params.py,sha256=QLDcajv8z6fjgpQCNZHow7jriqLBRPc2xeKNSs8s0FU,513
|
|
1589
|
+
telnyx/types/phone_numbers/messaging_list_response.py,sha256=kN0qdte2A3C6U5BfpumOxrqovhkjs3-ULATLAoHRNB4,479
|
|
1590
|
+
telnyx/types/phone_numbers/messaging_retrieve_response.py,sha256=O44AEySuXUYkDLefeiA-7a7-HGFRqci6vjn3mXhdVYk,387
|
|
1591
|
+
telnyx/types/phone_numbers/messaging_update_params.py,sha256=3YKXNWMISyGb1jy3TUlzoU79v3pZYV7tYgrUiMS7t7Q,891
|
|
1592
|
+
telnyx/types/phone_numbers/messaging_update_response.py,sha256=UKxjFqA5wuYKJMHPy9SP6lOsnzr3EMEBdeRvBmxXawI,383
|
|
1593
|
+
telnyx/types/phone_numbers/phone_number_with_voice_settings.py,sha256=ik1WWz0ahNr-_LidnSYXICbM9gNJiHFggwAhQcK4ddw,3072
|
|
1594
|
+
telnyx/types/phone_numbers/phone_numbers_job.py,sha256=gEKj7pdH-AGvJs-YOiAJS80rfgclYKr9ZRnwwoVyqbQ,2964
|
|
1595
|
+
telnyx/types/phone_numbers/update_voice_settings_param.py,sha256=qdv4W-m-9ID6cvyY2WwjJWN1m-iSZLq___Bg9E43cPo,1937
|
|
1596
|
+
telnyx/types/phone_numbers/voice_list_params.py,sha256=U-Diy0LQac-C_WVo4vVmzflErfRFIKgKQwRxSmi45Zs,1760
|
|
1597
|
+
telnyx/types/phone_numbers/voice_list_response.py,sha256=A1qBczxHbiCSUkCLOdvgapv3JXi-_daNLzMsuLTEqA4,451
|
|
1598
|
+
telnyx/types/phone_numbers/voice_retrieve_response.py,sha256=DbG9wPdRqbAG9gkcl8ucRIeTwY3tcD1ZBspf-ZafLmw,359
|
|
1599
|
+
telnyx/types/phone_numbers/voice_update_params.py,sha256=8elnYq04XrP0CeeckAkceLXbF-7nLA7uO-ujigz5eGg,1923
|
|
1600
|
+
telnyx/types/phone_numbers/voice_update_response.py,sha256=wJhTbcfzAOB3ekuttjjsyf_xl9xrbQ_uLxvQGaPTfRM,355
|
|
1601
|
+
telnyx/types/phone_numbers/voicemail_create_params.py,sha256=rt6AEuk3-uNLfojmy8RQMhz80V_2qXMGpqZGDZlO6_4,364
|
|
1602
|
+
telnyx/types/phone_numbers/voicemail_create_response.py,sha256=m3AUqJdm81uxq3nVSgd7n2T6KwgUVdOg_jJ792wrBN8,340
|
|
1603
|
+
telnyx/types/phone_numbers/voicemail_pref_response.py,sha256=KatkOgOmu0aRBPWsMX-dK1FzQUZLLF_z6kb1chyHK-U,376
|
|
1604
|
+
telnyx/types/phone_numbers/voicemail_retrieve_response.py,sha256=mukmhXB3L7gPrUXr7hnA8YT0TIEZV1_3TaCr09UtJL8,344
|
|
1605
|
+
telnyx/types/phone_numbers/voicemail_update_params.py,sha256=ypC7f4zWItROJxe2LxiDnpB0kIXWYQMGV9ixor3wFsg,364
|
|
1606
|
+
telnyx/types/phone_numbers/voicemail_update_response.py,sha256=WkjIUhM8pfcJ2S6MpiIH9HnshIql2q2_MMjelv6u9ck,340
|
|
1607
|
+
telnyx/types/porting/__init__.py,sha256=tveeVKVFH8iSdE0rJq5qHzW84vzpBfah-POHet7FqCs,1993
|
|
1608
|
+
telnyx/types/porting/event_list_params.py,sha256=9Wsv7iM0Ybs3923g4R94L7CDaSCF94cYSu3lElwzaQk,1663
|
|
1609
|
+
telnyx/types/porting/event_list_response.py,sha256=f2kZtjgNOLkV_r2dFyMPBpJl6yBpFI-aiuh1EiI-Lds,7191
|
|
1610
|
+
telnyx/types/porting/event_retrieve_response.py,sha256=bI76TXQgNrNZzxn51lEvVHmjPNjUhyjmDEydqWq9fMI,7105
|
|
1611
|
+
telnyx/types/porting/export_porting_orders_csv_report.py,sha256=Cx7xLC22QThEpvhsS1V6Z5W6e8oL-liK7xwzKVp7fI0,1429
|
|
1612
|
+
telnyx/types/porting/export_porting_orders_csv_report_param.py,sha256=oSH7MEh_w1eYnu-ZP4gNIzHZwLuBR2mhLGa0erF9t7U,1526
|
|
1613
|
+
telnyx/types/porting/loa_configuration_create_params.py,sha256=sLgDBwtTbYbsivMymOlattu0Rchrq-Oe8ycYKyDziJA,1432
|
|
1614
|
+
telnyx/types/porting/loa_configuration_create_response.py,sha256=idFW9lRXOi0eoowWG26-OSVcI3Hp_fmfFStZ3krwG64,360
|
|
1615
|
+
telnyx/types/porting/loa_configuration_list_params.py,sha256=M2iuy3pEkM_zeYz4ZGv9zbyb7D6khePUWVhYZwW3pm4,527
|
|
1616
|
+
telnyx/types/porting/loa_configuration_list_response.py,sha256=4T7hlI2r4PKxY6-QruMPwsPASMmTJDzpviJOMZlgXaw,456
|
|
1617
|
+
telnyx/types/porting/loa_configuration_preview_0_params.py,sha256=w-T5cIgZG6GoCSksU8v0vOZuNyn95J4w7D9oOUoyfYc,1436
|
|
1618
|
+
telnyx/types/porting/loa_configuration_retrieve_response.py,sha256=jhmNZzh5AoN84csgD8z39VbY2Rgu0mB1bRUcLzR1--o,364
|
|
1619
|
+
telnyx/types/porting/loa_configuration_update_params.py,sha256=0jI5X6q0PgwHr1so6bDe4C7KIlnbQxeyW7OtFr-e694,1432
|
|
1620
|
+
telnyx/types/porting/loa_configuration_update_response.py,sha256=HlMzjUvmkkHaynvWd4iJrctknDKZjK_Rgj2sUiJOij4,360
|
|
1621
|
+
telnyx/types/porting/porting_loa_configuration.py,sha256=n1rOrKKMaRSYKPsOm6mojNCnEOuaw0nbbpZc1UoZ2WM,2146
|
|
1622
|
+
telnyx/types/porting/porting_report.py,sha256=wf2QFzAHR3TvO8zcsZkGv6G5YSug0hvXW8xWscjQFHg,1307
|
|
1623
|
+
telnyx/types/porting/report_create_params.py,sha256=JIIWG5ZSOIIN4GJI5meWcwS18bypDEEOX03XnX50e70,585
|
|
1624
|
+
telnyx/types/porting/report_create_response.py,sha256=BNT3KHwt1d3MioPeMxbA4sze-QbQNradK8VWUJChVSc,309
|
|
1625
|
+
telnyx/types/porting/report_list_params.py,sha256=OfkdQ2wuup3u5TFOe3HnPlnX4ghLGlaYBuBeQM4vPkg,893
|
|
1626
|
+
telnyx/types/porting/report_list_response.py,sha256=zpvOqmVr64-slJjIY1b_g-DGDI2XcRTsD8m5XMwqSEI,405
|
|
1627
|
+
telnyx/types/porting/report_retrieve_response.py,sha256=8OyIysbVNL7p2mcKrDaGKWZV3GIoMIeyUwJtJ1wdC_w,313
|
|
1628
|
+
telnyx/types/porting_orders/__init__.py,sha256=HJl65BJpcwiEeK6O0B0ByS_9PegKruRhu0xbJt9MlbM,5426
|
|
1629
|
+
telnyx/types/porting_orders/action_activate_response.py,sha256=yHEqDYp-dHYqPHME8zNY91Q2Cwa63kh0GKT0k7PQeao,355
|
|
1630
|
+
telnyx/types/porting_orders/action_cancel_response.py,sha256=t-CwDtKYFrEIUZxpM9H6eC1ItUT-ckT_bt0DcWOXRdY,458
|
|
1631
|
+
telnyx/types/porting_orders/action_confirm_response.py,sha256=8yaAwjsbtWY_PjmYLFkpLITIHZI7csntjQ_ZkmNzopA,460
|
|
1632
|
+
telnyx/types/porting_orders/action_requirement_initiate_params.py,sha256=B8asY-O22kt_WaJUFgmXt5Q0W3dMzxOEos2rNSVJ0g8,727
|
|
1633
|
+
telnyx/types/porting_orders/action_requirement_initiate_response.py,sha256=NYokr-_EHqC9-mWUjRNar5Ajm5Ri7--VrmDwoMR0kBE,1428
|
|
1634
|
+
telnyx/types/porting_orders/action_requirement_list_params.py,sha256=CLrw8ldKUPQfM0A743q_3o4N92tlRWsh8DwgGbj78Lw,1536
|
|
1635
|
+
telnyx/types/porting_orders/action_requirement_list_response.py,sha256=Pz7Gen2DstnU6g-lVFMAbfg8b_6R9yXcCQlZj3KdhAM,1520
|
|
1636
|
+
telnyx/types/porting_orders/action_share_params.py,sha256=Qc4xK47aS1JELeFF7raHxt5dhAwfJWhAmpv4NWC2JEs,480
|
|
1637
|
+
telnyx/types/porting_orders/action_share_response.py,sha256=ofTtHdeZMNe5ke9ZmezfLi8-vkxD81Cc6IVW5ZFilEc,1258
|
|
1638
|
+
telnyx/types/porting_orders/activation_job_list_params.py,sha256=zDoWD1LmyuRTs9bbPb_yk5SDcJ3lQ_DPmt1ouwWPYog,521
|
|
1639
|
+
telnyx/types/porting_orders/activation_job_list_response.py,sha256=VivJe08mZWXdoBHUsD3SYdIo_BxsNPnhW6Wt9oj05a0,461
|
|
1640
|
+
telnyx/types/porting_orders/activation_job_retrieve_response.py,sha256=_RxWJXWfNJBQD6nL7tQj0qq_VCuWVjbkMPagejvDAZY,369
|
|
1641
|
+
telnyx/types/porting_orders/activation_job_update_params.py,sha256=CiKMdENXjyDAmNDOrsat1UK_KEF6QhfN8nmMHyuE4OQ,597
|
|
1642
|
+
telnyx/types/porting_orders/activation_job_update_response.py,sha256=OMMgYL8Tn6jS4DyPlvXnL_RFqKCNpY8O4T270MhqhdE,365
|
|
1643
|
+
telnyx/types/porting_orders/additional_document_create_params.py,sha256=oQxoPSbNnUV89n6FHrNAVPBZ5sW1ibjVSVAw4LrIotI,606
|
|
1644
|
+
telnyx/types/porting_orders/additional_document_create_response.py,sha256=FLv5T8rDxs9djlzcNw13vq-NbaxBXoh1TpEDjV4nC7c,1289
|
|
1645
|
+
telnyx/types/porting_orders/additional_document_list_params.py,sha256=jdkNwX-4qzqNr8NfLxYqqgIyLs3iUZV9K_oQW3BPA98,1189
|
|
1646
|
+
telnyx/types/porting_orders/additional_document_list_response.py,sha256=qaApsutQD4WhtPhgaIykgvP6RSSuZSHzc79lARSN680,1373
|
|
1647
|
+
telnyx/types/porting_orders/associated_phone_number_create_params.py,sha256=s4_o5TmClTxj6ksA4hxX16wG_E6h-vk7a4JW9HXy-_o,771
|
|
1648
|
+
telnyx/types/porting_orders/associated_phone_number_create_response.py,sha256=WMS7UKwTJjq9oN5yi_3hc2fDQW8XP6bCGd14KmC9yAs,386
|
|
1649
|
+
telnyx/types/porting_orders/associated_phone_number_delete_response.py,sha256=HZ9wItzYJBv94d-BYjROiraQaSa_r9FQSNG6ANRQas4,386
|
|
1650
|
+
telnyx/types/porting_orders/associated_phone_number_list_params.py,sha256=6V-B52tWcYOCIwkCVgzj_rAlJb5bIfHNIq7BPs5F8Ls,1231
|
|
1651
|
+
telnyx/types/porting_orders/associated_phone_number_list_response.py,sha256=pibQUZm4s_O9w4Xl7kVUw2l4tplRra9tKw0F09J5YIw,482
|
|
1652
|
+
telnyx/types/porting_orders/comment_create_params.py,sha256=yQIBaea_5_j9g670Ox4vUX7o5-Jne-U-0ruhpf68oQQ,265
|
|
1653
|
+
telnyx/types/porting_orders/comment_create_response.py,sha256=3bkbI7QrdtPKSAAYTgxxBbd92pZRKctVkBAs36UUGXk,853
|
|
1654
|
+
telnyx/types/porting_orders/comment_list_params.py,sha256=cRy05V4qlq0jnrIKNTT0rTr4FpSBi873qDmVawv4dZA,509
|
|
1655
|
+
telnyx/types/porting_orders/comment_list_response.py,sha256=rpHUTgrstb51jdHpJoKl7L5YrZCMa-Z8XHaRvZlK4U8,949
|
|
1656
|
+
telnyx/types/porting_orders/phone_number_block_create_params.py,sha256=CHJt-YulkiyRbLEkP8XaZJnr_ALJQsJpLOw_r5ZRbk0,1315
|
|
1657
|
+
telnyx/types/porting_orders/phone_number_block_create_response.py,sha256=WjwIs8coYmDqRvm49nmJw_f7ehhTMDHgL85V3C_-6rw,361
|
|
1658
|
+
telnyx/types/porting_orders/phone_number_block_delete_response.py,sha256=DMWZYmf7J1EYvn2_BmUTcxy8fvvxwSlIXxKjmjxcSA8,361
|
|
1659
|
+
telnyx/types/porting_orders/phone_number_block_list_params.py,sha256=iOie7MlmaiQGAERGSxevDTL6lP0_KN1aBuH-YHFkgj4,2651
|
|
1660
|
+
telnyx/types/porting_orders/phone_number_block_list_response.py,sha256=FhkDk-GORVflJjCGbt9KOwenNEZGS-LlBp2jDrDMFF4,457
|
|
1661
|
+
telnyx/types/porting_orders/phone_number_configuration_create_params.py,sha256=7zusgczIv8YqlDc2lmrNL9IQZcEy39UpXw7hzSR7Szo,704
|
|
1662
|
+
telnyx/types/porting_orders/phone_number_configuration_create_response.py,sha256=jw5FJRrN4OMWFGsYedIQcalJJbBy1wUuRYrTIhxGEe4,982
|
|
1663
|
+
telnyx/types/porting_orders/phone_number_configuration_list_params.py,sha256=MFeCpWohBE5Haj9BdYWcdGxOPNyD6qVpTjuDvHrM8XU,1880
|
|
1664
|
+
telnyx/types/porting_orders/phone_number_configuration_list_response.py,sha256=ZLwF-ccYFoQAg46SpkZqKuDaavlz-wUzZOwkVmqIcsI,1066
|
|
1665
|
+
telnyx/types/porting_orders/phone_number_extension_create_params.py,sha256=F0nBFwH0o_CUSnb89oCGF3pqRqfOm9g9zhKtk-LUeCc,1485
|
|
1666
|
+
telnyx/types/porting_orders/phone_number_extension_create_response.py,sha256=yr4EwLHA5Eylae8icT26M2Km1kSufge8wqAY1Q7jMmE,381
|
|
1667
|
+
telnyx/types/porting_orders/phone_number_extension_delete_response.py,sha256=bfA8OGqvKT5jZM8OHjmAgXkirxFFQ2lFsQl70G4HN_0,381
|
|
1668
|
+
telnyx/types/porting_orders/phone_number_extension_list_params.py,sha256=kBvfAxKjPlg_wYQF2OKn_VV8fTjr4eqhutPxDzx1tIE,1130
|
|
1669
|
+
telnyx/types/porting_orders/phone_number_extension_list_response.py,sha256=aAVTLtBQkFibMpB014MBErDBXM-RPqRWz7wCUAU54o4,477
|
|
1670
|
+
telnyx/types/porting_orders/porting_associated_phone_number.py,sha256=PN1tjG8VxFOWRe2PiBj4Di0fyaXhu9wtdx-b4lE2hEE,1801
|
|
1671
|
+
telnyx/types/porting_orders/porting_phone_number_block.py,sha256=Xm_ZDjQMhHsNxg6V2wMh4X56JJ3f1wuUpySyPkAGSXU,2216
|
|
1672
|
+
telnyx/types/porting_orders/porting_phone_number_extension.py,sha256=XqGkZpZwvDSg7ZrVdCcWqJBxtiRZgv66fKNkGz0FF7E,1972
|
|
1673
|
+
telnyx/types/porting_orders/verification_code_list_params.py,sha256=Yod961uvJxU6eiRv3-OT2lpGzdEvMPfO_JWGzpLwTs0,1099
|
|
1674
|
+
telnyx/types/porting_orders/verification_code_list_response.py,sha256=ua7Y0qud-ehAMI_2403_MHT109ldSv-cuDweMvx6KTQ,1128
|
|
1675
|
+
telnyx/types/porting_orders/verification_code_send_params.py,sha256=Awwd6fTorWNwpAa9YQx1wCooBCLiXeQhnZzRNX26aeA,376
|
|
1676
|
+
telnyx/types/porting_orders/verification_code_verify_params.py,sha256=CVpbc5pnfHS0oDD0Ftf75U-VMad7BAz3xgkvxmDTkjA,455
|
|
1677
|
+
telnyx/types/porting_orders/verification_code_verify_response.py,sha256=svKh_ehqL6SAd5Vlms9HCm-edP9PEzqnk49DSJqqgXA,1044
|
|
1678
|
+
telnyx/types/portouts/__init__.py,sha256=grhw0ciMPFbCOuKlEW9rS8zChKHySSntgK-mf6GP55k,1571
|
|
1679
|
+
telnyx/types/portouts/comment_create_params.py,sha256=wg688BYJAsoOYDm1uc3WEB1HMMhL224vP1ZpqUq1IAA,315
|
|
1680
|
+
telnyx/types/portouts/comment_create_response.py,sha256=QxKy6pGlwylEHc2t8UP6scU4lWvIgYkz14uCwlIP7Ss,716
|
|
1681
|
+
telnyx/types/portouts/comment_list_response.py,sha256=4HOSywIjFQ3tdek0wpGkhpfAen2YVj2TNr5KjdlDm4Y,800
|
|
1682
|
+
telnyx/types/portouts/event_list_params.py,sha256=HkNTkA_aGmnpkcAPi7OWZ-X0GJEf_C9x3l7pi-XuzBY,1445
|
|
1683
|
+
telnyx/types/portouts/event_list_response.py,sha256=d4BkTXdPy9B65-JM4J5HjUxTdoY0j_ef-iVDjQUa0NA,3723
|
|
1684
|
+
telnyx/types/portouts/event_retrieve_response.py,sha256=JcRLrM4So2XD7vfqwiLY3_mOvyghel1kxHCNsFmbk7c,3637
|
|
1685
|
+
telnyx/types/portouts/export_portouts_csv_report.py,sha256=NH5YTBP77zpBPNRu0LBq_U8LlKfW7sQVNTC2VuhsHdE,1502
|
|
1686
|
+
telnyx/types/portouts/export_portouts_csv_report_param.py,sha256=JQNWpJ08kvBv0qEETCCPZ-OqKuYjrm9NGYHwjej4T7Y,1571
|
|
1687
|
+
telnyx/types/portouts/portout_report.py,sha256=HSOhs7YIDUWpNSEVH4un2S2vfGqPv0WP_I1jDLjrDO4,1280
|
|
1688
|
+
telnyx/types/portouts/report_create_params.py,sha256=CGysEL_ihcATHpNybcBufQ7oQ-2BMNUFPvhSj1j4-UI,558
|
|
1689
|
+
telnyx/types/portouts/report_create_response.py,sha256=Gf9QtOaycu71ixu-0FqvvQZKhNPWHKJCS7aThvZcAP0,309
|
|
1690
|
+
telnyx/types/portouts/report_list_params.py,sha256=XFJEh7Xml5IZSX8RlY5vV9goBD5t0kI8B3DS3vBftAA,887
|
|
1691
|
+
telnyx/types/portouts/report_list_response.py,sha256=zoBU-0Nnyd7YTSBm3TMmyVmAG963mifjoEZKFUXcLH0,405
|
|
1692
|
+
telnyx/types/portouts/report_retrieve_response.py,sha256=00HN_V2WBWS6JIxNKxmhFxihveDBez0t82juhcVg2Jk,313
|
|
1693
|
+
telnyx/types/portouts/supporting_document_create_params.py,sha256=dBtQ1FGA5DTrldkD564eBQZt-XOgMMYZPaQRfAWQ4X4,627
|
|
1694
|
+
telnyx/types/portouts/supporting_document_create_response.py,sha256=tigici7lnq_zj8BsldeJ7pCZms3CoOZQ8HCjgOlQJok,848
|
|
1695
|
+
telnyx/types/portouts/supporting_document_list_response.py,sha256=mhwtfvJjKurllrcovdukqm6jodHx1_YM1Xv4E8j1sb4,844
|
|
1696
|
+
telnyx/types/queues/__init__.py,sha256=rGSKKW6-MlkMnffiof0TR2Vr1e8-Cwtp_ex_3O1uJzg,336
|
|
1697
|
+
telnyx/types/queues/call_list_params.py,sha256=xjZWqMDlVSXPyjJK9CU_CTWI9R0aBIl2EKktFyWDcoA,721
|
|
1698
|
+
telnyx/types/queues/call_list_response.py,sha256=B3zKXOFLyFKIom-3IJ2vNzMZLiiComYzoorjLlpuK_Y,1586
|
|
1699
|
+
telnyx/types/queues/call_retrieve_response.py,sha256=byyNjHmcSEzntHhj74KmTZXCqvnTBNLn3vWL58zRJNg,1494
|
|
1700
|
+
telnyx/types/recordings/__init__.py,sha256=VqH0wJRWVFrnA6rgjI3ufNPQS_7Q_SliOtpyPTOelv0,198
|
|
1701
|
+
telnyx/types/recordings/action_delete_params.py,sha256=BbNeLzluWgEDX_i8ZY9bPM1KEfO1iybSptS0GnmZw2Q,360
|
|
1702
|
+
telnyx/types/reports/__init__.py,sha256=QIIseXBHBXfK8C6a0Xa3ZjLSsgbRUKdmAOTV1Ef0x8Q,1266
|
|
1703
|
+
telnyx/types/reports/cdr_usage_report_fetch_sync_params.py,sha256=ADYLC3lC0_k-vulNyxPBxCtdbpupFIOTrjbckXu9cuw,813
|
|
1704
|
+
telnyx/types/reports/cdr_usage_report_fetch_sync_response.py,sha256=227MbWIxADGD64C3mMc3qbSeY-08qTsJUuBoW8wL5uk,1124
|
|
1705
|
+
telnyx/types/reports/mdr_usage_report.py,sha256=FO83_SE63RJA32D7Clzc8f7baNLlZSGpWpJjlLnXfw8,1437
|
|
1706
|
+
telnyx/types/reports/mdr_usage_report_create_params.py,sha256=PCNtkq8fftLjalXvaL8I5_72xoOh-0h_wglFbXF_gVo,662
|
|
1707
|
+
telnyx/types/reports/mdr_usage_report_create_response.py,sha256=F1bTtvhfdDNJENBqxGOGdBAWqchnI9FthVnncmgPAwQ,329
|
|
1708
|
+
telnyx/types/reports/mdr_usage_report_delete_response.py,sha256=ALtBctlQ7Z9x0q2nWLl1XgGKa8J7TMGHIn_25OkKAZQ,329
|
|
1709
|
+
telnyx/types/reports/mdr_usage_report_fetch_sync_params.py,sha256=pP3dhQTVj6wT5WbcGWMgAbh1G_GnzyzK07qh0GAYC1U,660
|
|
1710
|
+
telnyx/types/reports/mdr_usage_report_fetch_sync_response.py,sha256=BGS6Nlv3UlAs18XNyxmkRo7uqA663LCNfKN5cxG2-KI,335
|
|
1711
|
+
telnyx/types/reports/mdr_usage_report_list_params.py,sha256=gRErjG0Dbpv4kxfHOmQsz880fNHa6XZ5eImZcsy0W8k,507
|
|
1712
|
+
telnyx/types/reports/mdr_usage_report_list_response.py,sha256=q61KmPB8aerzjxq8yYr7XCZcsCv9fE2b_oviGthZLd4,558
|
|
1713
|
+
telnyx/types/reports/mdr_usage_report_retrieve_response.py,sha256=dZwf4DZI0w7voOtSXV8MA73Xu-CN49PQQqjSMpLsUok,333
|
|
1714
|
+
telnyx/types/rooms/__init__.py,sha256=QMDi7DtWKTqiEtEGnoysz-8UP-wdQGxxDbZI11RLHn0,1384
|
|
1715
|
+
telnyx/types/rooms/action_generate_join_client_token_params.py,sha256=doGR8gnOb4Eixm-au280XDAhvQxq7oW-jh5tk__QwjU,653
|
|
1716
|
+
telnyx/types/rooms/action_generate_join_client_token_response.py,sha256=Nb9l0UXiCMdSw2UblVl9bVjZkAVxlp93EfQcKCIBP1w,648
|
|
1717
|
+
telnyx/types/rooms/action_refresh_client_token_params.py,sha256=43YHBJltGtnEwa99yIcvCAzyi0r1cqSAVQjt139Ww6k,492
|
|
1718
|
+
telnyx/types/rooms/action_refresh_client_token_response.py,sha256=W_i_MfCWJxGXp0GCOMH0odyO_1jpyj9kiQFvX_ZEi7w,479
|
|
1719
|
+
telnyx/types/rooms/session_list_0_params.py,sha256=vCGgX8_Z-z2b9Dw1BowuIrCXhGXnixHJiuwurSjHbUQ,3001
|
|
1720
|
+
telnyx/types/rooms/session_list_0_response.py,sha256=N7r-klKwgR9To3AFRMSVMa5mm2rRcg94aslX9Jdvo4w,404
|
|
1721
|
+
telnyx/types/rooms/session_list_1_params.py,sha256=6G_93DA2PXP0z-gD55SINs05YzsiB5ejK_rzIQHtqWo,2919
|
|
1722
|
+
telnyx/types/rooms/session_list_1_response.py,sha256=S7LlqK-XC3CDMKDTKGMcQg3bOwUlsx3gEXlKcMPLCng,404
|
|
1723
|
+
telnyx/types/rooms/session_retrieve_params.py,sha256=xXVXjR4gKhPP51FC1lPIZzgNHy9-K-x4fR6SYqjWr1w,363
|
|
1724
|
+
telnyx/types/rooms/session_retrieve_participants_params.py,sha256=WMAAH6UwCbT09Wk_tZUkx7MCQARNJ89o4ppJngmwyvE,2944
|
|
1725
|
+
telnyx/types/rooms/session_retrieve_participants_response.py,sha256=2_lNU-dDlgzyBXsY5MpSmbhGeW2Tuc3lSEAcMShUW6w,453
|
|
1726
|
+
telnyx/types/rooms/session_retrieve_response.py,sha256=TYRoLk_pVhHfsw12Ih4sh1hN0_ElOOP_kAtqGQQjz1U,310
|
|
1727
|
+
telnyx/types/rooms/sessions/__init__.py,sha256=gRGDmydoGVXKu4fc9X7-nVBq4Qalg-xz99mUP0fyz5Y,639
|
|
1728
|
+
telnyx/types/rooms/sessions/action_end_response.py,sha256=HyWTbaa-53ghSBNYmWTCqsYeXl3pldh3Xhs3y-yy6kw,319
|
|
1729
|
+
telnyx/types/rooms/sessions/action_kick_params.py,sha256=CCYRi0xQfMbRqp6Nf-n2AEMvMI4C5_kdwyH3pCoPoMA,566
|
|
1730
|
+
telnyx/types/rooms/sessions/action_kick_response.py,sha256=pKzWWzU8DpohL4a6sXRN7tWm5e2JpjUl2VT4hNeHYfI,321
|
|
1731
|
+
telnyx/types/rooms/sessions/action_mute_params.py,sha256=Nd5Y43y0RS_F-tSLlf0jcIztU3-AEvatwPd3xzdvOOI,566
|
|
1732
|
+
telnyx/types/rooms/sessions/action_mute_response.py,sha256=p_LSOgywJ9isRWIBUbgPbrw9ApwkjFo0AN2V7AAxXHg,321
|
|
1733
|
+
telnyx/types/rooms/sessions/action_unmute_params.py,sha256=QP74hA-wy7sfwsWk1_SuX_6nqZeHnTexdZmyIViMAGQ,570
|
|
1734
|
+
telnyx/types/rooms/sessions/action_unmute_response.py,sha256=x_8LTDbXFuMwTkKwmWWsWDNrGTwdbDWsXWNhCcxPuNo,325
|
|
1735
|
+
telnyx/types/shared/__init__.py,sha256=g0D3604-dM4M4ze6C5-0ixi_BFq5atFf1hOzp6rx1HE,1318
|
|
1736
|
+
telnyx/types/shared/connections_pagination_meta.py,sha256=p7kiAXOSJ_320-SBkhP5tPpij1kKms9zLnnPhRFkjOY,391
|
|
1737
|
+
telnyx/types/shared/doc_reqs_requirement_type.py,sha256=mMPA-dalQskntqa3kXGPzVDFKN2BmtcWF06H3xxFubw,1865
|
|
1738
|
+
telnyx/types/shared/hosted_number.py,sha256=eX8vQvhBv18c3kjixEV2XNKq7cKPfYEMqhWBm2fLHWw,915
|
|
1739
|
+
telnyx/types/shared/messaging_feature_set.py,sha256=MoVBAiOjb-67tLTrXdFl1WCp8FGanTMvdpcuPNvatQQ,486
|
|
1740
|
+
telnyx/types/shared/messaging_hosted_number_order.py,sha256=5if3osK-8DoVoFq_cxxqtRWU5Jr26Wz9Y-YNBkQ8Lv8,1140
|
|
1741
|
+
telnyx/types/shared/metadata.py,sha256=UjUJ4jqQ-Hfz7uF7a9P1g8jblKBLSVzV4t3XRGUPqZA,672
|
|
1742
|
+
telnyx/types/shared/number_health_metrics.py,sha256=4lMmkusIvA3fe1Y6O1z7ITNlF4SaR2-6ojfdjVpSbNQ,628
|
|
1743
|
+
telnyx/types/shared/phone_number_with_messaging_settings.py,sha256=-M7HZiHdcpDWwzbVgzhc015JPjO_dmCZD_oamvQuKzU,2428
|
|
1744
|
+
telnyx/types/shared/porting_order_status.py,sha256=DoCRE0HJM-V81miU8OYH-RQF4M91Zz4HDu_KaMtSN3Q,791
|
|
1745
|
+
telnyx/types/shared/porting_orders_exception_type.py,sha256=xr2cnU_xZjPPylOQQL6eN_oZX0wyPf84liMhocknzlE,1181
|
|
1746
|
+
telnyx/types/shared/room_participant.py,sha256=nmrO3YMZCIB2Rc5u8nAdNnIX7xWBmakr4OAWV_85bEA,909
|
|
1747
|
+
telnyx/types/shared/short_code.py,sha256=oMFf1RAYve3xzPRoLzWYUfDAoYPCTkha22BZtcNcVEs,965
|
|
1748
|
+
telnyx/types/shared/sim_card_status.py,sha256=XLSUX-M8kG643YOTwXkTGbWUwe5HRkEAxaguBajo014,1436
|
|
1749
|
+
telnyx/types/shared/simple_sim_card.py,sha256=jQX6CuYp5l-y2osYCBHwQHEXoiJpkM2GYSe-96ZnOfk,3011
|
|
1750
|
+
telnyx/types/shared/sub_number_order_regulatory_requirement_with_value.py,sha256=iEo0O4dFFovZJtvOjGOB2YLJfZ6o-jh3jE7uAGhIZr4,665
|
|
1751
|
+
telnyx/types/shared_params/__init__.py,sha256=VKGipl4SSoarenbMifwUglI4K7Orej5mnjIe21W2DK4,147
|
|
1752
|
+
telnyx/types/shared_params/sim_card_status.py,sha256=hDAOd5xAkl102wrndG1eKNdREdWTKPocJvZD4OuJQLo,248
|
|
1753
|
+
telnyx/types/sim_card_groups/__init__.py,sha256=Sx2YcYgxYZILbjIBD4mg6WsVrkngsExt7xUhs2erIIo,1279
|
|
1754
|
+
telnyx/types/sim_card_groups/action_list_params.py,sha256=eoFFNIZEUF0oPfOXKL-JjujevD-1Gs5AQCYzKIg743c,1125
|
|
1755
|
+
telnyx/types/sim_card_groups/action_list_response.py,sha256=URWiu8SIuoxEugc340qCnHue2zE_I-gpWcjAAEUkndQ,422
|
|
1756
|
+
telnyx/types/sim_card_groups/action_remove_private_wireless_gateway_response.py,sha256=vWZzb4TDKBZ7hITNvLb-JmbolMezmJnVAGk8crYKGrs,556
|
|
1757
|
+
telnyx/types/sim_card_groups/action_remove_wireless_blocklist_response.py,sha256=dRn6Jmyj9WyOklh_rijjWCQTEDeI3NlbyHIuXxTm9Pw,546
|
|
1758
|
+
telnyx/types/sim_card_groups/action_retrieve_response.py,sha256=E60lW52UCgvGzYLle84ZIDnbO81n1OyqFyT_RSrVL9A,516
|
|
1759
|
+
telnyx/types/sim_card_groups/action_set_private_wireless_gateway_params.py,sha256=zJ9D4unxfXF15TdChhnRJFmrrls2n3E4lHQA0tXrLN0,423
|
|
1760
|
+
telnyx/types/sim_card_groups/action_set_private_wireless_gateway_response.py,sha256=WPFGVBGPqMaiWWmaQdzdSzyxh1oGIefvmY3lX0TvQxc,550
|
|
1761
|
+
telnyx/types/sim_card_groups/action_set_wireless_blocklist_params.py,sha256=6NsbfesSWnkYx0EbQ0b2_tw-_4PHVuch5EamGD2N82o,401
|
|
1762
|
+
telnyx/types/sim_card_groups/action_set_wireless_blocklist_response.py,sha256=I1X5i7HLZDl9QmzE50waE76gFs1o_OIykAMmyRRk6Dc,540
|
|
1763
|
+
telnyx/types/sim_card_groups/sim_card_group_action.py,sha256=pOMm8NL0e7cnYezH48fcYthdobsp2WaPGE3QsuVIvB4,1332
|
|
1764
|
+
telnyx/types/sim_cards/__init__.py,sha256=MODlqcTD3wHvtPuHSJS4vt1Osii2yuKcaekDExk4Hag,1484
|
|
1765
|
+
telnyx/types/sim_cards/action_bulk_set_public_ips_params.py,sha256=uCthjXEMQ_BmBvZqj_ez96GbpRCnKs88xlOJLbLL8GA,341
|
|
1766
|
+
telnyx/types/sim_cards/action_bulk_set_public_ips_response.py,sha256=QcND2JCENc5r34xkphWUMofFYiWkAn542DXAbuPxKQA,1239
|
|
1767
|
+
telnyx/types/sim_cards/action_disable_response.py,sha256=-RBgx66OI5-gTOLEJirSEM3Ez91HU7Q10Os_9IFAM2Q,455
|
|
1768
|
+
telnyx/types/sim_cards/action_enable_response.py,sha256=jT6tTv5LICc8vt_4dRd6HN5SDPf10OxotigcEctLAOk,453
|
|
1769
|
+
telnyx/types/sim_cards/action_list_params.py,sha256=r06ad4TrDYKZvs8WFxb95ETVI1Buoy26Yb7GkS2zBps,1223
|
|
1770
|
+
telnyx/types/sim_cards/action_list_response.py,sha256=vCBHMW3e_3pzdZvrJasSn1CiyUa6MhUfFfzN1Zi82x0,406
|
|
1771
|
+
telnyx/types/sim_cards/action_remove_public_ip_response.py,sha256=t_zzhKrYvqMYFm09wdIH64SZ7TJM3jVvLuqnifj2ru4,469
|
|
1772
|
+
telnyx/types/sim_cards/action_retrieve_response.py,sha256=v83QJUtdDUqzagkuM-KaZ6ZENE_DYS_hx62U_RwZyUc,457
|
|
1773
|
+
telnyx/types/sim_cards/action_set_public_ip_params.py,sha256=tXt8FVOIGSNi0Qh-ZKZ3rMUsgnv1CkpejMaQRSvP-KE,428
|
|
1774
|
+
telnyx/types/sim_cards/action_set_public_ip_response.py,sha256=hDt0ImCL2lWxStqN0BvrNY3CT24Y7mf_G8KktyxMctg,463
|
|
1775
|
+
telnyx/types/sim_cards/action_set_standby_response.py,sha256=rL8T8BuffYWqJlp3OyEXuHgyrxyx7cmMOzNav4QFDmM,461
|
|
1776
|
+
telnyx/types/sim_cards/action_validate_registration_codes_params.py,sha256=5JIi2g-GkntZ5h1PvoPyC21sNvKIbYRNNDIck_LgAxY,345
|
|
1777
|
+
telnyx/types/sim_cards/action_validate_registration_codes_response.py,sha256=UpBtEM78R2lXhvam2ROfypH64VdLWdeolkPqBgWM2w4,653
|
|
1778
|
+
telnyx/types/sim_cards/sim_card_action.py,sha256=_mdYqKpyPGIffBi766aPtXANTEebG4CQbl89JCEQUvE,2005
|
|
1779
|
+
telnyx/types/storage/__init__.py,sha256=w1SKDPQWDjAO0Un8wRsHt-Ii6SmqciBZgdmMz31j0JY,1397
|
|
1780
|
+
telnyx/types/storage/bucket_create_presigned_url_params.py,sha256=V9vnxw7EUxyAylMl-gDRgq3fB4JYLhPLLMEZ5QP3Rr0,471
|
|
1781
|
+
telnyx/types/storage/bucket_create_presigned_url_response.py,sha256=re95uEOTe8MstoinrelpFIZMiMXcf6HLOt4SPshl2Og,594
|
|
1782
|
+
telnyx/types/storage/migration_create_params.py,sha256=dLx6EO4VPpguqJrFuw_p_xjDqwvloRwqLPCV_RblGKo,752
|
|
1783
|
+
telnyx/types/storage/migration_create_response.py,sha256=GVMuo06QhW7vOFsyUWHHyBXzyg3IMjFikK4cTesX3hk,321
|
|
1784
|
+
telnyx/types/storage/migration_list_response.py,sha256=m2jzjmr_LHE2fcEP624-GhHUfmeqpKP5JGyGn-_f65I,443
|
|
1785
|
+
telnyx/types/storage/migration_params.py,sha256=mSaZSx7_zu-LqdA5GWh0Ah1BWduC92vXLl-aHVPIUVs,1565
|
|
1786
|
+
telnyx/types/storage/migration_retrieve_response.py,sha256=H1i22wAV3gSR0xOn5WtkYK7H1kheln4EJOf4HOZFw4s,325
|
|
1787
|
+
telnyx/types/storage/migration_source_create_params.py,sha256=55dNcRRc9Z2tCVZsYd231JZJ76EP0hYBJoXxyOBK82c,1042
|
|
1788
|
+
telnyx/types/storage/migration_source_create_response.py,sha256=wH3fVKs50Nbw2ngyQfIFTszrhe6EwhfGLH2SY5ozSzo,352
|
|
1789
|
+
telnyx/types/storage/migration_source_delete_response.py,sha256=_71HV_BtjYW5MF6cF7iLVV2MgXKbQA0YdT1BAW6ss2w,352
|
|
1790
|
+
telnyx/types/storage/migration_source_list_response.py,sha256=C3uXRDrxvLQbnzkh-oUg2roPs0tuSlBnD3eRQGEXEG4,474
|
|
1791
|
+
telnyx/types/storage/migration_source_params.py,sha256=IosTjeSz9usEG_3MfMi9-CkcVGccmayKsnxMxJ10iwQ,1119
|
|
1792
|
+
telnyx/types/storage/migration_source_retrieve_response.py,sha256=CuefyYc5dFjHaKgS2KfooR8avDW7oLWr6TI2KooGYDI,356
|
|
1793
|
+
telnyx/types/storage/buckets/__init__.py,sha256=MQ7SZnQZHIRsjn_Ps36KkTyZnJkIGjqtY5M2hWE8YfQ,978
|
|
1794
|
+
telnyx/types/storage/buckets/pagination_meta_simple.py,sha256=jcGfUdVy_CSdr90UGMFzk4rZGSke2OcgQKKUrRxYvf0,382
|
|
1795
|
+
telnyx/types/storage/buckets/ssl_certificate.py,sha256=i3BvTdHdLTwnZ9JCd5kKBgnKdcJ8h8wTmbeeG1ATjFg,1392
|
|
1796
|
+
telnyx/types/storage/buckets/ssl_certificate_create_params.py,sha256=ptVyOvt6yfVkr-FYrrUcDujcI3njKMRzFZU22TGEEmI,420
|
|
1797
|
+
telnyx/types/storage/buckets/ssl_certificate_create_response.py,sha256=fUHneJ2_E-UqYv7KQ2-Cquv_uVK-pUc69s6iF5waJ1U,329
|
|
1798
|
+
telnyx/types/storage/buckets/ssl_certificate_delete_response.py,sha256=ZaLsybuMyHreZySZ-x7sE5OgPu1zPCLbBiztvqxL888,329
|
|
1799
|
+
telnyx/types/storage/buckets/ssl_certificate_retrieve_response.py,sha256=KlMkr9WozOwa6EHA9deq1t2Ug7bkG8m-K1KJX5MBz_0,333
|
|
1800
|
+
telnyx/types/storage/buckets/usage_get_api_usage_params.py,sha256=nwd7snlXudnODMvINUAgHky1xZvgla5N32w4dnhEJTc,913
|
|
1801
|
+
telnyx/types/storage/buckets/usage_get_api_usage_response.py,sha256=SfPvoWa_b2FxJkmYQb0i5X6SqaHZpgdj9Op64bRm2As,1665
|
|
1802
|
+
telnyx/types/storage/buckets/usage_get_bucket_usage_response.py,sha256=4Yu_ZvghbHxKV4UrNJC8ka4l-0_FuD05QHPEm8XrLbU,777
|
|
1803
|
+
telnyx/types/storage/migrations/__init__.py,sha256=tLBn8B5kHglM79HNqM3OKp1hK10IqeUzkGPfnOsvjmE,198
|
|
1804
|
+
telnyx/types/storage/migrations/action_stop_response.py,sha256=fy-vfnr6GsBQ2bh7sGlQLEKLOZC53tNMk8qNk-7sZrI,313
|
|
1805
|
+
telnyx/types/texml/__init__.py,sha256=pgDuYIN61-6SlCBWZDg-WPMIfQ6oEOSZk2tISHAjK8w,1251
|
|
1806
|
+
telnyx/types/texml/account_retrieve_recordings_json_params.py,sha256=TXZrrWw6NCsdDzroUCqA_YwCdyJXPg85asmwYDmbNto,1023
|
|
1807
|
+
telnyx/types/texml/account_retrieve_recordings_json_response.py,sha256=e_95pmxvvjTr6KyVnwLNpjTk1uZpPS8bDCd_iLhkVxM,1168
|
|
1808
|
+
telnyx/types/texml/account_retrieve_transcriptions_json_params.py,sha256=rtnyL6rKanil2yqndrCs1gXT_Blc1AsnzrtkPTL4lIo,575
|
|
1809
|
+
telnyx/types/texml/account_retrieve_transcriptions_json_response.py,sha256=9_T3tu4ie04FdXWHvY7ECE_VQr7960Q1Mc9SGE1XPzA,2098
|
|
1810
|
+
telnyx/types/texml/call_initiate_params.py,sha256=FGg0w5IztnC5kFaAOh5wpQ7pPoesxJ3I7HPXelg7YEU,6922
|
|
1811
|
+
telnyx/types/texml/call_initiate_response.py,sha256=eEECfW-ONB3kjOggFB8I_SpLFLzS4ipMCvm71MigIrM,461
|
|
1812
|
+
telnyx/types/texml/call_update_params.py,sha256=RT1cf5iwOcmXbgtyrRlji6DGspHNmBt3MOOh3yyhUhg,1540
|
|
1813
|
+
telnyx/types/texml/call_update_response.py,sha256=AGkaot7GE6ZCW04zkZGSZErHNYGq1HuLhzL_b2ZU1ZQ,351
|
|
1814
|
+
telnyx/types/texml/texml_get_call_recording_response_body.py,sha256=KoY6eG7_TI_4qyezqH9Y6MqKDc7mdIx4_HNwDcbI7uk,1557
|
|
1815
|
+
telnyx/types/texml/texml_recording_subresources_uris.py,sha256=4qX4UjregkbgPbMSSwIUCYJUZnb32236Yp9kiSpfix4,287
|
|
1816
|
+
telnyx/types/texml/accounts/__init__.py,sha256=hP_89dblkJTZqdHSemSUG7x8OQN_gpdA439kCzA_t2Q,1868
|
|
1817
|
+
telnyx/types/texml/accounts/call_calls_params.py,sha256=Fm558MJFiR5Mxk1VMmwLZwCBFVvbJ35upNKrHX7aiKY,7178
|
|
1818
|
+
telnyx/types/texml/accounts/call_calls_response.py,sha256=o_XmUxY5SFrNPvLoVRuuZm0m23pFJBscM1m6KUOsWXo,391
|
|
1819
|
+
telnyx/types/texml/accounts/call_retrieve_calls_params.py,sha256=lXADuV3aNL1y5Nx__TIm2_Gnl3lky3R4P8psnCRaIaM,1955
|
|
1820
|
+
telnyx/types/texml/accounts/call_retrieve_calls_response.py,sha256=zfhAdQPOWnlT1cyCTLyc4RGf7yAsEnuUOi_bv79S0uw,3034
|
|
1821
|
+
telnyx/types/texml/accounts/call_retrieve_response.py,sha256=F1RtkfOgZDOQHhheVM8MiqU0_AGhtBA_40vjuIqRcSY,2197
|
|
1822
|
+
telnyx/types/texml/accounts/call_siprec_json_params.py,sha256=tIpmy_29V93cT6J2x2jdSrha9_OmrCDDyTXXGW1cXso,2199
|
|
1823
|
+
telnyx/types/texml/accounts/call_siprec_json_response.py,sha256=RM-M0m-s0AFZZGIBogz9W3O1_QxPWwPeT28Hw88Waos,1231
|
|
1824
|
+
telnyx/types/texml/accounts/call_streams_json_params.py,sha256=MNM1Ybjm-PiRx04EE2JugBR0JwfD6d_e_ytaJ2FETLA,1450
|
|
1825
|
+
telnyx/types/texml/accounts/call_streams_json_response.py,sha256=mkjM-tcI-zrgLQnOjtFxjzoJu2Syz8TBcalrgGhq2io,743
|
|
1826
|
+
telnyx/types/texml/accounts/call_update_params.py,sha256=Yj71vXAJ8_eqBRViz4W3O1nD-NijwizkDc3JhslXA3I,1583
|
|
1827
|
+
telnyx/types/texml/accounts/call_update_response.py,sha256=Qp71H8IHL4qQHM7-SG9jPDR4u6_dhnAey8z7HQ4kb6s,2193
|
|
1828
|
+
telnyx/types/texml/accounts/conference_retrieve_conferences_params.py,sha256=COJ4mdRowyNBT4FB8Rw6lu-NsoAD5N_RHjwM0PuSKys,1494
|
|
1829
|
+
telnyx/types/texml/accounts/conference_retrieve_conferences_response.py,sha256=VlGogFRi2mXA9V8VCX51OHMoyWZQ_5yH2KJr-jF5IPE,2635
|
|
1830
|
+
telnyx/types/texml/accounts/conference_retrieve_recordings_json_response.py,sha256=vn3ILlKF_AS7mWEGuFVAxqUYvSfGr8ZvzBJTgsnQLEE,1176
|
|
1831
|
+
telnyx/types/texml/accounts/conference_retrieve_recordings_response.py,sha256=3sLpDPQwwHrTwTZkWrH9-x42Mlq1W2ot2sqQ0LWgAo4,2904
|
|
1832
|
+
telnyx/types/texml/accounts/conference_retrieve_response.py,sha256=anzj4u5TEM93g6aaTeJhNqGARJjpKLrL-_pEVbl4eAo,1750
|
|
1833
|
+
telnyx/types/texml/accounts/conference_update_params.py,sha256=m8jfH6Y9FfV11A181UE4D5fMPV8D8R5m5-x_ybv3BjI,1004
|
|
1834
|
+
telnyx/types/texml/accounts/conference_update_response.py,sha256=YX7oS6FUqTKMPPemdtGmL-R2lWK4Ys5Rxh4X6EEJLpc,1746
|
|
1835
|
+
telnyx/types/texml/accounts/calls/__init__.py,sha256=hADdyHV9beKUJAXeplzntAwB3AzouhR3Zy7rLBRTQhQ,1231
|
|
1836
|
+
telnyx/types/texml/accounts/calls/recording_recording_sid_json_params.py,sha256=xa45n_nW5QMLDrT0BfvqWVcRJ9U11C8ghbJZ060UEqY,501
|
|
1837
|
+
telnyx/types/texml/accounts/calls/recording_recording_sid_json_response.py,sha256=00NXJXOdaCDlp-v5YTSmrX4TIjAeeuf1tzmGKtiKMSk,1574
|
|
1838
|
+
telnyx/types/texml/accounts/calls/recordings_json_recordings_json_params.py,sha256=S2Zj5eXl49Qf_o56vkcQO0ucvRCZ3mbRkYyzzsflWKQ,1765
|
|
1839
|
+
telnyx/types/texml/accounts/calls/recordings_json_recordings_json_response.py,sha256=zOQd5eeFCjXVX3I1DSDI3E6DwohOXoV1l5yxsBKkmRQ,1580
|
|
1840
|
+
telnyx/types/texml/accounts/calls/recordings_json_retrieve_recordings_json_response.py,sha256=szOICmytRavNX7m-QqQKkez06HdgAgLEy4L-SbL-_pw,1186
|
|
1841
|
+
telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_params.py,sha256=IAsUZJgaqEXH3jvzsIZpbwy90SvAWl_4KCsyqHom5Jk,566
|
|
1842
|
+
telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_response.py,sha256=ME65hRFskaHigWdKe7kiCCC5v6EQuH7GkbGBrLjddUw,908
|
|
1843
|
+
telnyx/types/texml/accounts/calls/stream_streaming_sid_json_params.py,sha256=FfNQo4SK-2LEpiJTS_ZVWX5zmNZ5_lH7pPy6Ac9OsdY,525
|
|
1844
|
+
telnyx/types/texml/accounts/calls/stream_streaming_sid_json_response.py,sha256=XWAhiQHqIbt1tR2KESOImB2eYCBgtzyf6tiN1Z7nTac,677
|
|
1845
|
+
telnyx/types/texml/accounts/conferences/__init__.py,sha256=Bg0dRzgpbuEHe1SZVFyQ1rrJ131Ztghzr35Ab5calm0,781
|
|
1846
|
+
telnyx/types/texml/accounts/conferences/participant_participants_params.py,sha256=ArQxJckNc7coXyEns0Loo-y_6NLRDyCxtrwAhj2mTlc,10618
|
|
1847
|
+
telnyx/types/texml/accounts/conferences/participant_participants_response.py,sha256=RT67NwpP6mUMZcS2xnar8qqrtmPY3nOJgv-qF8F4IRY,1173
|
|
1848
|
+
telnyx/types/texml/accounts/conferences/participant_retrieve_participants_response.py,sha256=dCofb3Tsl1QGbUBGkLgVBnbg4qBbLK9fTuLK3eSOA-Y,2673
|
|
1849
|
+
telnyx/types/texml/accounts/conferences/participant_retrieve_response.py,sha256=GXZKPUAz4Qri8sYTQGnsLC61AsJ__gBsRwCdP02GH-k,1681
|
|
1850
|
+
telnyx/types/texml/accounts/conferences/participant_update_params.py,sha256=YQA990N9VLOJMDKWRClclUrnAkCl1cEOgSly1MkSDb4,2479
|
|
1851
|
+
telnyx/types/texml/accounts/conferences/participant_update_response.py,sha256=NNxsttT3VVUhqaazCgCyyhwMjfACmM1db7bz4AOzRJQ,1677
|
|
1852
|
+
telnyx/types/texml/accounts/recordings/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1853
|
+
telnyx/types/texml/accounts/transcriptions/__init__.py,sha256=wJIYpmO_s3VtBxFWO0oUJg3SJ45JoaHKkjWfgkO4krk,304
|
|
1854
|
+
telnyx/types/texml/accounts/transcriptions/json_retrieve_recording_transcription_sid_json_response.py,sha256=kcWmaETp4bQlG40IwTRm6NzpuD_FPvPxtCCqd17kftQ,1260
|
|
1855
|
+
telnyx/types/verifications/__init__.py,sha256=b6TyhcfPImlHjJDQLgkXio1TXR9zFBzC-50Fpm8DU4o,296
|
|
1856
|
+
telnyx/types/verifications/action_verify_params.py,sha256=sD5uyHHRgz5wHmlIzujMibOWoaiXwfz7hSWDiYrrxhQ,527
|
|
1857
|
+
telnyx/types/verifications/by_phone_number_list_response.py,sha256=RwK17i8EuYGerA4uzR0jXwcZR-ehjO-_6DnauvPj6Ec,515
|
|
1858
|
+
telnyx/types/verifications/by_phone_number/__init__.py,sha256=199aK3I-4qIxJ83Pgd08dHl68M0DWmUOU8JfCDCrhxI,310
|
|
1859
|
+
telnyx/types/verifications/by_phone_number/action_verify_params.py,sha256=aoaX6B3kkW6-9v6MJPcalXWTckR7NmrhTty0TeJPQ2g,442
|
|
1860
|
+
telnyx/types/verifications/by_phone_number/verify_verification_code_response.py,sha256=bVtf0KjwYjZLNvWTnBcBmAfEdh0EYsCX0L4AVzjbXTg,496
|
|
1861
|
+
telnyx/types/verified_numbers/__init__.py,sha256=RhHTIchxprQULl-gCrUFdWfrCa3e17Z6cyzJxtk5RxQ,257
|
|
1862
|
+
telnyx/types/verified_numbers/action_submit_verification_code_params.py,sha256=Hnd_RwIyU261OAMC9Tpf0_yAnxzQwE2dGNwn6CS-TNk,328
|
|
1863
|
+
telnyx/types/wireless/__init__.py,sha256=lkEHnID1izlqCgDWHfVNyAeYJBhivh3CkjZMsY_2lmA,911
|
|
1864
|
+
telnyx/types/wireless/detail_records_report_create_params.py,sha256=Is_MrEKjfDb3PZcI3_3uAXIvSyPHNwfms0yOgQlVmyA,444
|
|
1865
|
+
telnyx/types/wireless/detail_records_report_create_response.py,sha256=GQDXWz-6iYTZKBphZhH1Tx8J5VS7_0Xw6iv8VYZellc,323
|
|
1866
|
+
telnyx/types/wireless/detail_records_report_delete_response.py,sha256=NIw2VVvtx1qM03LRKnwCePkZtBeBAYjN5kR2xCYHLx4,323
|
|
1867
|
+
telnyx/types/wireless/detail_records_report_list_params.py,sha256=cfjsh4L_8mpDkg1olXhRH3HquwenRG9KDImaZoEruKY,518
|
|
1868
|
+
telnyx/types/wireless/detail_records_report_list_response.py,sha256=S_6nD0fm5EseRIZHnML-UN0-g8Q_0J1cXfg_eLNUev8,331
|
|
1869
|
+
telnyx/types/wireless/detail_records_report_retrieve_response.py,sha256=f0C8z8uo_QeCyi3nSDME4f4F3vqcy7o0MpinwDIqe_s,327
|
|
1870
|
+
telnyx/types/wireless/wdr_report.py,sha256=bxRr-dc_IW6D0E3i_PUHK-bbu9w114Qql1uoJ_znxEE,1068
|
|
1871
|
+
telnyx-3.0.0a0.dist-info/METADATA,sha256=WSdI8jI9SiBYy_H-Wm85k5LqVy8PQSPWDVPBTM1Bybo,14160
|
|
1872
|
+
telnyx-3.0.0a0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
1873
|
+
telnyx-3.0.0a0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
|
|
1874
|
+
telnyx-3.0.0a0.dist-info/RECORD,,
|