telnyx 4.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- telnyx/__init__.py +94 -0
- telnyx/_base_client.py +2124 -0
- telnyx/_client.py +6465 -0
- telnyx/_compat.py +219 -0
- telnyx/_constants.py +14 -0
- telnyx/_exceptions.py +112 -0
- telnyx/_files.py +123 -0
- telnyx/_models.py +872 -0
- telnyx/_oauth2.py +118 -0
- telnyx/_qs.py +150 -0
- telnyx/_resource.py +43 -0
- telnyx/_response.py +830 -0
- telnyx/_streaming.py +333 -0
- telnyx/_types.py +270 -0
- telnyx/_utils/__init__.py +64 -0
- telnyx/_utils/_compat.py +45 -0
- telnyx/_utils/_datetime_parse.py +136 -0
- telnyx/_utils/_logs.py +25 -0
- telnyx/_utils/_proxy.py +65 -0
- telnyx/_utils/_reflection.py +42 -0
- telnyx/_utils/_resources_proxy.py +24 -0
- telnyx/_utils/_streams.py +12 -0
- telnyx/_utils/_sync.py +58 -0
- telnyx/_utils/_transform.py +457 -0
- telnyx/_utils/_typing.py +156 -0
- telnyx/_utils/_utils.py +421 -0
- telnyx/_version.py +4 -0
- telnyx/lib/.keep +4 -0
- telnyx/pagination.py +478 -0
- telnyx/py.typed +0 -0
- telnyx/resources/__init__.py +2095 -0
- telnyx/resources/access_ip_address.py +452 -0
- telnyx/resources/access_ip_ranges.py +370 -0
- telnyx/resources/actions/__init__.py +47 -0
- telnyx/resources/actions/actions.py +134 -0
- telnyx/resources/actions/purchase.py +231 -0
- telnyx/resources/actions/register.py +207 -0
- telnyx/resources/addresses/__init__.py +33 -0
- telnyx/resources/addresses/actions.py +314 -0
- telnyx/resources/addresses/addresses.py +659 -0
- telnyx/resources/advanced_orders.py +463 -0
- telnyx/resources/ai/__init__.py +145 -0
- telnyx/resources/ai/ai.py +564 -0
- telnyx/resources/ai/assistants/__init__.py +89 -0
- telnyx/resources/ai/assistants/assistants.py +1469 -0
- telnyx/resources/ai/assistants/canary_deploys.py +448 -0
- telnyx/resources/ai/assistants/scheduled_events.py +541 -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 +305 -0
- telnyx/resources/ai/assistants/tests/test_suites/test_suites.py +173 -0
- telnyx/resources/ai/assistants/tests/tests.py +761 -0
- telnyx/resources/ai/assistants/tools.py +199 -0
- telnyx/resources/ai/assistants/versions.py +678 -0
- telnyx/resources/ai/audio.py +248 -0
- telnyx/resources/ai/chat.py +404 -0
- telnyx/resources/ai/clusters.py +618 -0
- telnyx/resources/ai/conversations/__init__.py +61 -0
- telnyx/resources/ai/conversations/conversations.py +949 -0
- telnyx/resources/ai/conversations/insight_groups/__init__.py +33 -0
- telnyx/resources/ai/conversations/insight_groups/insight_groups.py +587 -0
- telnyx/resources/ai/conversations/insight_groups/insights.py +272 -0
- telnyx/resources/ai/conversations/insights.py +565 -0
- telnyx/resources/ai/conversations/messages.py +165 -0
- telnyx/resources/ai/embeddings/__init__.py +33 -0
- telnyx/resources/ai/embeddings/buckets.py +298 -0
- telnyx/resources/ai/embeddings/embeddings.py +709 -0
- telnyx/resources/ai/fine_tuning/__init__.py +33 -0
- telnyx/resources/ai/fine_tuning/fine_tuning.py +102 -0
- telnyx/resources/ai/fine_tuning/jobs.py +408 -0
- telnyx/resources/ai/integrations/__init__.py +33 -0
- telnyx/resources/ai/integrations/connections.py +294 -0
- telnyx/resources/ai/integrations/integrations.py +246 -0
- telnyx/resources/ai/mcp_servers.py +576 -0
- telnyx/resources/audit_events.py +212 -0
- telnyx/resources/authentication_providers.py +667 -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 +512 -0
- telnyx/resources/bulk_sim_card_actions.py +291 -0
- telnyx/resources/bundle_pricing/__init__.py +47 -0
- telnyx/resources/bundle_pricing/billing_bundles.py +297 -0
- telnyx/resources/bundle_pricing/bundle_pricing.py +134 -0
- telnyx/resources/bundle_pricing/user_bundles.py +687 -0
- telnyx/resources/call_control_applications.py +873 -0
- telnyx/resources/call_events.py +214 -0
- telnyx/resources/calls/__init__.py +33 -0
- telnyx/resources/calls/actions.py +7093 -0
- telnyx/resources/calls/calls.py +888 -0
- telnyx/resources/channel_zones.py +293 -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 +2184 -0
- telnyx/resources/conferences/conferences.py +716 -0
- telnyx/resources/connections.py +432 -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 +1068 -0
- telnyx/resources/custom_storage_credentials.py +441 -0
- telnyx/resources/customer_service_records.py +487 -0
- telnyx/resources/detail_records.py +212 -0
- telnyx/resources/dialogflow_connections.py +514 -0
- telnyx/resources/document_links.py +198 -0
- telnyx/resources/documents.py +811 -0
- telnyx/resources/dynamic_emergency_addresses.py +483 -0
- telnyx/resources/dynamic_emergency_endpoints.py +453 -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 +929 -0
- telnyx/resources/external_connections/log_messages.py +356 -0
- telnyx/resources/external_connections/phone_numbers.py +388 -0
- telnyx/resources/external_connections/releases.py +293 -0
- telnyx/resources/external_connections/uploads.py +670 -0
- telnyx/resources/fax_applications.py +745 -0
- telnyx/resources/faxes/__init__.py +33 -0
- telnyx/resources/faxes/actions.py +244 -0
- telnyx/resources/faxes/faxes.py +659 -0
- telnyx/resources/fqdn_connections.py +994 -0
- telnyx/resources/fqdns.py +606 -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 +486 -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 +453 -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 +453 -0
- telnyx/resources/inbound_channels.py +240 -0
- telnyx/resources/inexplicit_number_orders.py +408 -0
- telnyx/resources/integration_secrets.py +401 -0
- telnyx/resources/inventory_coverage.py +185 -0
- telnyx/resources/invoices.py +289 -0
- telnyx/resources/ip_connections.py +972 -0
- telnyx/resources/ips.py +576 -0
- telnyx/resources/ledger_billing_group_reports.py +264 -0
- telnyx/resources/legacy/__init__.py +33 -0
- telnyx/resources/legacy/legacy.py +102 -0
- telnyx/resources/legacy/reporting/__init__.py +47 -0
- telnyx/resources/legacy/reporting/batch_detail_records/__init__.py +61 -0
- telnyx/resources/legacy/reporting/batch_detail_records/batch_detail_records.py +166 -0
- telnyx/resources/legacy/reporting/batch_detail_records/messaging.py +482 -0
- telnyx/resources/legacy/reporting/batch_detail_records/speech_to_text.py +399 -0
- telnyx/resources/legacy/reporting/batch_detail_records/voice.py +539 -0
- telnyx/resources/legacy/reporting/reporting.py +134 -0
- telnyx/resources/legacy/reporting/usage_reports/__init__.py +61 -0
- telnyx/resources/legacy/reporting/usage_reports/messaging.py +474 -0
- telnyx/resources/legacy/reporting/usage_reports/number_lookup.py +415 -0
- telnyx/resources/legacy/reporting/usage_reports/usage_reports.py +288 -0
- telnyx/resources/legacy/reporting/usage_reports/voice.py +496 -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 +774 -0
- telnyx/resources/media.py +678 -0
- telnyx/resources/messages/__init__.py +33 -0
- telnyx/resources/messages/messages.py +1545 -0
- telnyx/resources/messages/rcs.py +337 -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 +379 -0
- telnyx/resources/messaging/rcs/rcs.py +387 -0
- telnyx/resources/messaging_10dlc/__init__.py +103 -0
- telnyx/resources/messaging_10dlc/brand/__init__.py +33 -0
- telnyx/resources/messaging_10dlc/brand/brand.py +1691 -0
- telnyx/resources/messaging_10dlc/brand/external_vetting.py +391 -0
- telnyx/resources/messaging_10dlc/campaign/__init__.py +47 -0
- telnyx/resources/messaging_10dlc/campaign/campaign.py +1069 -0
- telnyx/resources/messaging_10dlc/campaign/osr.py +163 -0
- telnyx/resources/messaging_10dlc/campaign/usecase.py +169 -0
- telnyx/resources/messaging_10dlc/campaign_builder/__init__.py +33 -0
- telnyx/resources/messaging_10dlc/campaign_builder/brand.py +171 -0
- telnyx/resources/messaging_10dlc/campaign_builder/campaign_builder.py +513 -0
- telnyx/resources/messaging_10dlc/messaging_10dlc.py +410 -0
- telnyx/resources/messaging_10dlc/partner_campaigns.py +638 -0
- telnyx/resources/messaging_10dlc/phone_number_assignment_by_profile.py +514 -0
- telnyx/resources/messaging_10dlc/phone_number_campaigns.py +582 -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 +773 -0
- telnyx/resources/messaging_hosted_numbers.py +163 -0
- telnyx/resources/messaging_numbers_bulk_updates.py +276 -0
- telnyx/resources/messaging_optouts.py +218 -0
- telnyx/resources/messaging_profiles/__init__.py +33 -0
- telnyx/resources/messaging_profiles/autoresp_configs.py +598 -0
- telnyx/resources/messaging_profiles/messaging_profiles.py +1121 -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 +1154 -0
- telnyx/resources/messaging_tollfree/verification/verification.py +102 -0
- telnyx/resources/messaging_url_domains.py +186 -0
- telnyx/resources/mobile_network_operators.py +210 -0
- telnyx/resources/mobile_phone_numbers/__init__.py +33 -0
- telnyx/resources/mobile_phone_numbers/messaging.py +265 -0
- telnyx/resources/mobile_phone_numbers/mobile_phone_numbers.py +441 -0
- telnyx/resources/mobile_push_credentials.py +437 -0
- telnyx/resources/mobile_voice_connections.py +621 -0
- telnyx/resources/network_coverage.py +212 -0
- telnyx/resources/networks/__init__.py +33 -0
- telnyx/resources/networks/default_gateway.py +335 -0
- telnyx/resources/networks/networks.py +667 -0
- telnyx/resources/notification_channels.py +590 -0
- telnyx/resources/notification_event_conditions.py +204 -0
- telnyx/resources/notification_events.py +186 -0
- telnyx/resources/notification_profiles.py +524 -0
- telnyx/resources/notification_settings.py +473 -0
- telnyx/resources/number_block_orders.py +402 -0
- telnyx/resources/number_lookup.py +183 -0
- telnyx/resources/number_order_phone_numbers.py +461 -0
- telnyx/resources/number_orders.py +500 -0
- telnyx/resources/number_reservations/__init__.py +33 -0
- telnyx/resources/number_reservations/actions.py +167 -0
- telnyx/resources/number_reservations/number_reservations.py +411 -0
- telnyx/resources/numbers_features.py +167 -0
- telnyx/resources/oauth.py +855 -0
- telnyx/resources/oauth_clients.py +714 -0
- telnyx/resources/oauth_grants.py +352 -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/organizations/__init__.py +33 -0
- telnyx/resources/organizations/organizations.py +102 -0
- telnyx/resources/organizations/users/__init__.py +33 -0
- telnyx/resources/organizations/users/actions.py +163 -0
- telnyx/resources/organizations/users/users.py +444 -0
- telnyx/resources/ota_updates.py +277 -0
- telnyx/resources/outbound_voice_profiles.py +842 -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_blocks/__init__.py +33 -0
- telnyx/resources/phone_number_blocks/jobs.py +378 -0
- telnyx/resources/phone_number_blocks/phone_number_blocks.py +102 -0
- telnyx/resources/phone_numbers/__init__.py +103 -0
- telnyx/resources/phone_numbers/actions.py +383 -0
- telnyx/resources/phone_numbers/csv_downloads.py +384 -0
- telnyx/resources/phone_numbers/jobs.py +699 -0
- telnyx/resources/phone_numbers/messaging.py +390 -0
- telnyx/resources/phone_numbers/phone_numbers.py +872 -0
- telnyx/resources/phone_numbers/voice.py +469 -0
- telnyx/resources/phone_numbers/voicemail.py +375 -0
- telnyx/resources/phone_numbers_regulatory_requirements.py +185 -0
- telnyx/resources/portability_checks.py +171 -0
- telnyx/resources/porting/__init__.py +61 -0
- telnyx/resources/porting/events.py +357 -0
- telnyx/resources/porting/loa_configurations.py +824 -0
- telnyx/resources/porting/porting.py +231 -0
- telnyx/resources/porting/reports.py +379 -0
- telnyx/resources/porting_orders/__init__.py +159 -0
- telnyx/resources/porting_orders/action_requirements.py +309 -0
- telnyx/resources/porting_orders/actions.py +438 -0
- telnyx/resources/porting_orders/activation_jobs.py +377 -0
- telnyx/resources/porting_orders/additional_documents.py +393 -0
- telnyx/resources/porting_orders/associated_phone_numbers.py +412 -0
- telnyx/resources/porting_orders/comments.py +275 -0
- telnyx/resources/porting_orders/phone_number_blocks.py +406 -0
- telnyx/resources/porting_orders/phone_number_configurations.py +297 -0
- telnyx/resources/porting_orders/phone_number_extensions.py +414 -0
- telnyx/resources/porting_orders/porting_orders.py +1459 -0
- telnyx/resources/porting_orders/verification_codes.py +400 -0
- telnyx/resources/porting_phone_numbers.py +198 -0
- telnyx/resources/portouts/__init__.py +75 -0
- telnyx/resources/portouts/comments.py +252 -0
- telnyx/resources/portouts/events.py +359 -0
- telnyx/resources/portouts/portouts.py +625 -0
- telnyx/resources/portouts/reports.py +379 -0
- telnyx/resources/portouts/supporting_documents.py +258 -0
- telnyx/resources/private_wireless_gateways.py +505 -0
- telnyx/resources/public_internet_gateways.py +461 -0
- telnyx/resources/queues/__init__.py +33 -0
- telnyx/resources/queues/calls.py +463 -0
- telnyx/resources/queues/queues.py +195 -0
- telnyx/resources/recording_transcriptions.py +301 -0
- telnyx/resources/recordings/__init__.py +33 -0
- telnyx/resources/recordings/actions.py +168 -0
- telnyx/resources/recordings/recordings.py +392 -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 +570 -0
- telnyx/resources/reports/reports.py +505 -0
- telnyx/resources/requirement_groups.py +625 -0
- telnyx/resources/requirement_types.py +277 -0
- telnyx/resources/requirements.py +316 -0
- telnyx/resources/room_compositions.py +517 -0
- telnyx/resources/room_participants.py +289 -0
- telnyx/resources/room_recordings.py +482 -0
- telnyx/resources/rooms/__init__.py +47 -0
- telnyx/resources/rooms/actions.py +310 -0
- telnyx/resources/rooms/rooms.py +735 -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 +384 -0
- telnyx/resources/sim_card_data_usage_notifications.py +576 -0
- telnyx/resources/sim_card_groups/__init__.py +33 -0
- telnyx/resources/sim_card_groups/actions.py +693 -0
- telnyx/resources/sim_card_groups/sim_card_groups.py +635 -0
- telnyx/resources/sim_card_order_preview.py +187 -0
- telnyx/resources/sim_card_orders.py +382 -0
- telnyx/resources/sim_cards/__init__.py +33 -0
- telnyx/resources/sim_cards/actions.py +933 -0
- telnyx/resources/sim_cards/sim_cards.py +978 -0
- telnyx/resources/siprec_connectors.py +481 -0
- telnyx/resources/speech_to_text.py +248 -0
- telnyx/resources/storage/__init__.py +61 -0
- telnyx/resources/storage/buckets/__init__.py +47 -0
- telnyx/resources/storage/buckets/buckets.py +255 -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 +666 -0
- telnyx/resources/texml/__init__.py +47 -0
- telnyx/resources/texml/accounts/__init__.py +89 -0
- telnyx/resources/texml/accounts/accounts.py +485 -0
- telnyx/resources/texml/accounts/calls/__init__.py +75 -0
- telnyx/resources/texml/accounts/calls/calls.py +1455 -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 +1117 -0
- telnyx/resources/texml/accounts/queues.py +599 -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 +824 -0
- telnyx/resources/text_to_speech.py +327 -0
- telnyx/resources/usage_reports.py +389 -0
- telnyx/resources/user_addresses.py +540 -0
- telnyx/resources/user_tags.py +177 -0
- telnyx/resources/verifications/__init__.py +47 -0
- telnyx/resources/verifications/actions.py +195 -0
- telnyx/resources/verifications/by_phone_number/__init__.py +33 -0
- telnyx/resources/verifications/by_phone_number/actions.py +195 -0
- telnyx/resources/verifications/by_phone_number/by_phone_number.py +199 -0
- telnyx/resources/verifications/verifications.py +580 -0
- telnyx/resources/verified_numbers/__init__.py +33 -0
- telnyx/resources/verified_numbers/actions.py +179 -0
- telnyx/resources/verified_numbers/verified_numbers.py +500 -0
- telnyx/resources/verify_profiles.py +809 -0
- telnyx/resources/virtual_cross_connects.py +774 -0
- telnyx/resources/virtual_cross_connects_coverage.py +218 -0
- telnyx/resources/webhook_deliveries.py +283 -0
- telnyx/resources/webhooks.py +170 -0
- telnyx/resources/well_known.py +198 -0
- telnyx/resources/wireguard_interfaces.py +471 -0
- telnyx/resources/wireguard_peers.py +632 -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 +592 -0
- telnyx/types/__init__.py +1297 -0
- telnyx/types/access_ip_address_create_params.py +13 -0
- telnyx/types/access_ip_address_list_params.py +62 -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/actions/__init__.py +8 -0
- telnyx/types/actions/purchase_create_params.py +37 -0
- telnyx/types/actions/purchase_create_response.py +35 -0
- telnyx/types/actions/register_create_params.py +26 -0
- telnyx/types/actions/register_create_response.py +35 -0
- telnyx/types/address.py +102 -0
- telnyx/types/address_create_params.py +90 -0
- telnyx/types/address_create_response.py +12 -0
- telnyx/types/address_delete_response.py +12 -0
- telnyx/types/address_list_params.py +102 -0
- telnyx/types/address_retrieve_response.py +12 -0
- telnyx/types/addresses/__init__.py +8 -0
- telnyx/types/addresses/action_accept_suggestions_params.py +12 -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 +71 -0
- telnyx/types/advanced_order_create_params.py +27 -0
- telnyx/types/advanced_order_create_response.py +35 -0
- telnyx/types/advanced_order_list_response.py +39 -0
- telnyx/types/advanced_order_retrieve_response.py +35 -0
- telnyx/types/advanced_order_update_requirement_group_params.py +27 -0
- telnyx/types/advanced_order_update_requirement_group_response.py +35 -0
- telnyx/types/ai/__init__.py +100 -0
- telnyx/types/ai/assistant_chat_params.py +18 -0
- telnyx/types/ai/assistant_chat_response.py +10 -0
- telnyx/types/ai/assistant_create_params.py +133 -0
- telnyx/types/ai/assistant_delete_response.py +18 -0
- telnyx/types/ai/assistant_get_texml_response.py +7 -0
- telnyx/types/ai/assistant_imports_params.py +27 -0
- telnyx/types/ai/assistant_param.py +112 -0
- telnyx/types/ai/assistant_retrieve_params.py +19 -0
- telnyx/types/ai/assistant_send_sms_params.py +22 -0
- telnyx/types/ai/assistant_send_sms_response.py +11 -0
- telnyx/types/ai/assistant_tool.py +139 -0
- telnyx/types/ai/assistant_tool_param.py +138 -0
- telnyx/types/ai/assistant_update_params.py +139 -0
- telnyx/types/ai/assistants/__init__.py +26 -0
- telnyx/types/ai/assistants/assistant_test.py +59 -0
- telnyx/types/ai/assistants/canary_deploy_create_params.py +15 -0
- telnyx/types/ai/assistants/canary_deploy_response.py +21 -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 +24 -0
- telnyx/types/ai/assistants/scheduled_event_list_response.py +15 -0
- telnyx/types/ai/assistants/scheduled_event_response.py +15 -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 +24 -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 +18 -0
- telnyx/types/ai/assistants/tests/run_trigger_params.py +16 -0
- telnyx/types/ai/assistants/tests/test_run_response.py +81 -0
- telnyx/types/ai/assistants/tests/test_status.py +7 -0
- telnyx/types/ai/assistants/tests/test_suite_list_response.py +18 -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 +23 -0
- telnyx/types/ai/assistants/tests/test_suites/run_list_params.py +21 -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 +28 -0
- telnyx/types/ai/assistants/version_config.py +15 -0
- telnyx/types/ai/assistants/version_config_param.py +17 -0
- telnyx/types/ai/assistants/version_retrieve_params.py +13 -0
- telnyx/types/ai/assistants/version_update_params.py +135 -0
- telnyx/types/ai/assistants_list.py +12 -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/chat_create_completion_response.py +8 -0
- telnyx/types/ai/cluster_compute_params.py +38 -0
- telnyx/types/ai/cluster_compute_response.py +13 -0
- telnyx/types/ai/cluster_fetch_graph_params.py +11 -0
- telnyx/types/ai/cluster_list_params.py +15 -0
- telnyx/types/ai/cluster_list_response.py +24 -0
- telnyx/types/ai/cluster_retrieve_params.py +18 -0
- telnyx/types/ai/cluster_retrieve_response.py +25 -0
- telnyx/types/ai/conversation.py +27 -0
- telnyx/types/ai/conversation_add_message_params.py +30 -0
- telnyx/types/ai/conversation_create_params.py +15 -0
- telnyx/types/ai/conversation_list_params.py +62 -0
- telnyx/types/ai/conversation_list_response.py +12 -0
- telnyx/types/ai/conversation_retrieve_conversations_insights_response.py +41 -0
- telnyx/types/ai/conversation_retrieve_response.py +12 -0
- telnyx/types/ai/conversation_update_params.py +13 -0
- telnyx/types/ai/conversation_update_response.py +12 -0
- telnyx/types/ai/conversations/__init__.py +17 -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 +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 +15 -0
- telnyx/types/ai/conversations/insight_template.py +26 -0
- telnyx/types/ai/conversations/insight_template_detail.py +10 -0
- telnyx/types/ai/conversations/insight_template_group.py +23 -0
- telnyx/types/ai/conversations/insight_template_group_detail.py +10 -0
- telnyx/types/ai/conversations/insight_update_params.py +18 -0
- telnyx/types/ai/conversations/message_list_response.py +56 -0
- telnyx/types/ai/embedding_create_params.py +21 -0
- telnyx/types/ai/embedding_list_params.py +14 -0
- telnyx/types/ai/embedding_list_response.py +30 -0
- telnyx/types/ai/embedding_response.py +25 -0
- telnyx/types/ai/embedding_retrieve_response.py +25 -0
- telnyx/types/ai/embedding_similarity_search_params.py +15 -0
- telnyx/types/ai/embedding_similarity_search_response.py +49 -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 +57 -0
- telnyx/types/ai/fine_tuning/job_create_params.py +33 -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.py +140 -0
- telnyx/types/ai/inference_embedding_bucket_ids.py +19 -0
- telnyx/types/ai/inference_embedding_bucket_ids_param.py +21 -0
- telnyx/types/ai/inference_embedding_transfer_tool_params.py +49 -0
- telnyx/types/ai/inference_embedding_transfer_tool_params_param.py +56 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params.py +116 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +118 -0
- telnyx/types/ai/insight_settings.py +16 -0
- telnyx/types/ai/insight_settings_param.py +16 -0
- telnyx/types/ai/integration_list_response.py +28 -0
- telnyx/types/ai/integration_retrieve_response.py +24 -0
- telnyx/types/ai/integrations/__init__.py +6 -0
- telnyx/types/ai/integrations/connection_list_response.py +19 -0
- telnyx/types/ai/integrations/connection_retrieve_response.py +19 -0
- telnyx/types/ai/mcp_server_create_params.py +22 -0
- telnyx/types/ai/mcp_server_create_response.py +24 -0
- telnyx/types/ai/mcp_server_list_params.py +19 -0
- telnyx/types/ai/mcp_server_list_response.py +24 -0
- telnyx/types/ai/mcp_server_retrieve_response.py +24 -0
- telnyx/types/ai/mcp_server_update_params.py +28 -0
- telnyx/types/ai/mcp_server_update_response.py +24 -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 +56 -0
- telnyx/types/ai/telephony_settings_param.py +55 -0
- telnyx/types/ai/transcription_settings.py +45 -0
- telnyx/types/ai/transcription_settings_config.py +35 -0
- telnyx/types/ai/transcription_settings_config_param.py +35 -0
- telnyx/types/ai/transcription_settings_param.py +43 -0
- telnyx/types/ai/transfer_tool.py +14 -0
- telnyx/types/ai/transfer_tool_param.py +15 -0
- telnyx/types/ai/voice_settings.py +119 -0
- telnyx/types/ai/voice_settings_param.py +115 -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/anchorsite_override.py +18 -0
- telnyx/types/audit_event_list_params.py +39 -0
- telnyx/types/audit_event_list_response.py +70 -0
- telnyx/types/authentication_provider.py +73 -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 +43 -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 +35 -0
- telnyx/types/available_phone_number_block_list_response.py +54 -0
- telnyx/types/available_phone_number_list_params.py +99 -0
- telnyx/types/available_phone_number_list_response.py +65 -0
- telnyx/types/available_service.py +7 -0
- telnyx/types/azure_configuration_data.py +22 -0
- telnyx/types/azure_configuration_data_param.py +21 -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 +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/bulk_sim_card_action_list_params.py +20 -0
- telnyx/types/bulk_sim_card_action_list_response.py +40 -0
- telnyx/types/bulk_sim_card_action_retrieve_response.py +44 -0
- telnyx/types/bundle_pricing/__init__.py +18 -0
- telnyx/types/bundle_pricing/billing_bundle_list_params.py +39 -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 +39 -0
- telnyx/types/bundle_pricing/user_bundle_list_resources_response.py +12 -0
- telnyx/types/bundle_pricing/user_bundle_list_unused_params.py +34 -0
- telnyx/types/bundle_pricing/user_bundle_list_unused_response.py +19 -0
- telnyx/types/bundle_pricing/user_bundle_resource.py +25 -0
- telnyx/types/bundle_pricing/user_bundle_retrieve_response.py +10 -0
- telnyx/types/call_ai_gather_ended_webhook_event.py +78 -0
- telnyx/types/call_ai_gather_ended_webhook_event1.py +78 -0
- telnyx/types/call_ai_gather_message_history_updated_webhook_event.py +69 -0
- telnyx/types/call_ai_gather_message_history_updated_webhook_event1.py +69 -0
- telnyx/types/call_ai_gather_partial_results_webhook_event.py +75 -0
- telnyx/types/call_ai_gather_partial_results_webhook_event1.py +75 -0
- telnyx/types/call_answered_webhook_event.py +75 -0
- telnyx/types/call_answered_webhook_event1.py +75 -0
- telnyx/types/call_bridged_webhook_event.py +58 -0
- telnyx/types/call_bridged_webhook_event1.py +58 -0
- telnyx/types/call_control_application.py +99 -0
- telnyx/types/call_control_application_create_params.py +86 -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 +131 -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 +90 -0
- telnyx/types/call_control_application_update_response.py +12 -0
- telnyx/types/call_conversation_ended_webhook_event.py +84 -0
- telnyx/types/call_conversation_ended_webhook_event1.py +84 -0
- telnyx/types/call_conversation_insights_generated_webhook_event.py +67 -0
- telnyx/types/call_conversation_insights_generated_webhook_event1.py +67 -0
- telnyx/types/call_dial_params.py +453 -0
- telnyx/types/call_dial_response.py +56 -0
- telnyx/types/call_dtmf_received_webhook_event.py +61 -0
- telnyx/types/call_dtmf_received_webhook_event1.py +61 -0
- telnyx/types/call_enqueued_webhook_event.py +59 -0
- telnyx/types/call_enqueued_webhook_event1.py +59 -0
- telnyx/types/call_event_list_params.py +113 -0
- telnyx/types/call_event_list_response.py +36 -0
- telnyx/types/call_fork_started_webhook_event.py +53 -0
- telnyx/types/call_fork_started_webhook_event1.py +53 -0
- telnyx/types/call_fork_stopped_webhook_event.py +53 -0
- telnyx/types/call_fork_stopped_webhook_event1.py +53 -0
- telnyx/types/call_gather_ended_webhook_event.py +64 -0
- telnyx/types/call_gather_ended_webhook_event1.py +64 -0
- telnyx/types/call_hangup_webhook_event.py +160 -0
- telnyx/types/call_hangup_webhook_event1.py +160 -0
- telnyx/types/call_initiated_webhook_event.py +96 -0
- telnyx/types/call_initiated_webhook_event1.py +96 -0
- telnyx/types/call_left_queue_webhook_event.py +62 -0
- telnyx/types/call_left_queue_webhook_event1.py +62 -0
- telnyx/types/call_machine_detection_ended_webhook_event.py +61 -0
- telnyx/types/call_machine_detection_ended_webhook_event1.py +61 -0
- telnyx/types/call_machine_greeting_ended_webhook_event.py +61 -0
- telnyx/types/call_machine_greeting_ended_webhook_event1.py +61 -0
- telnyx/types/call_machine_premium_detection_ended_webhook_event.py +63 -0
- telnyx/types/call_machine_premium_detection_ended_webhook_event1.py +63 -0
- telnyx/types/call_machine_premium_greeting_ended_webhook_event.py +61 -0
- telnyx/types/call_machine_premium_greeting_ended_webhook_event1.py +61 -0
- telnyx/types/call_playback_ended_webhook_event.py +70 -0
- telnyx/types/call_playback_ended_webhook_event1.py +70 -0
- telnyx/types/call_playback_started_webhook_event.py +62 -0
- telnyx/types/call_playback_started_webhook_event1.py +62 -0
- telnyx/types/call_recording_error_webhook_event.py +60 -0
- telnyx/types/call_recording_error_webhook_event1.py +60 -0
- telnyx/types/call_recording_saved_webhook_event.py +104 -0
- telnyx/types/call_recording_saved_webhook_event1.py +104 -0
- telnyx/types/call_recording_transcription_saved_webhook_event.py +71 -0
- telnyx/types/call_recording_transcription_saved_webhook_event1.py +71 -0
- telnyx/types/call_refer_completed_webhook_event.py +61 -0
- telnyx/types/call_refer_completed_webhook_event1.py +61 -0
- telnyx/types/call_refer_failed_webhook_event.py +61 -0
- telnyx/types/call_refer_failed_webhook_event1.py +61 -0
- telnyx/types/call_refer_started_webhook_event.py +61 -0
- telnyx/types/call_refer_started_webhook_event1.py +61 -0
- telnyx/types/call_retrieve_status_response.py +50 -0
- telnyx/types/call_siprec_failed_webhook_event.py +53 -0
- telnyx/types/call_siprec_failed_webhook_event1.py +53 -0
- telnyx/types/call_siprec_started_webhook_event.py +50 -0
- telnyx/types/call_siprec_started_webhook_event1.py +50 -0
- telnyx/types/call_siprec_stopped_webhook_event.py +53 -0
- telnyx/types/call_siprec_stopped_webhook_event1.py +53 -0
- telnyx/types/call_speak_ended_webhook_event.py +53 -0
- telnyx/types/call_speak_ended_webhook_event1.py +53 -0
- telnyx/types/call_speak_started_webhook_event.py +50 -0
- telnyx/types/call_speak_started_webhook_event1.py +50 -0
- telnyx/types/call_streaming_failed.py +68 -0
- telnyx/types/call_streaming_failed_webhook_event.py +12 -0
- telnyx/types/call_streaming_failed_webhook_event1.py +12 -0
- telnyx/types/call_streaming_started.py +49 -0
- telnyx/types/call_streaming_started_webhook_event.py +12 -0
- telnyx/types/call_streaming_started_webhook_event1.py +12 -0
- telnyx/types/call_streaming_stopped.py +49 -0
- telnyx/types/call_streaming_stopped_webhook_event.py +12 -0
- telnyx/types/call_streaming_stopped_webhook_event1.py +12 -0
- telnyx/types/calls/__init__.py +105 -0
- telnyx/types/calls/action_answer_params.py +148 -0
- telnyx/types/calls/action_answer_response.py +21 -0
- telnyx/types/calls/action_bridge_params.py +170 -0
- telnyx/types/calls/action_bridge_response.py +12 -0
- telnyx/types/calls/action_enqueue_params.py +44 -0
- telnyx/types/calls/action_enqueue_response.py +12 -0
- telnyx/types/calls/action_gather_params.py +55 -0
- telnyx/types/calls/action_gather_response.py +12 -0
- telnyx/types/calls/action_gather_using_ai_params.py +135 -0
- telnyx/types/calls/action_gather_using_ai_response.py +18 -0
- telnyx/types/calls/action_gather_using_audio_params.py +87 -0
- telnyx/types/calls/action_gather_using_audio_response.py +12 -0
- telnyx/types/calls/action_gather_using_speak_params.py +157 -0
- telnyx/types/calls/action_gather_using_speak_response.py +12 -0
- telnyx/types/calls/action_hangup_params.py +22 -0
- telnyx/types/calls/action_hangup_response.py +12 -0
- telnyx/types/calls/action_leave_queue_params.py +22 -0
- telnyx/types/calls/action_leave_queue_response.py +12 -0
- telnyx/types/calls/action_pause_recording_params.py +25 -0
- telnyx/types/calls/action_pause_recording_response.py +12 -0
- telnyx/types/calls/action_refer_params.py +44 -0
- telnyx/types/calls/action_refer_response.py +12 -0
- telnyx/types/calls/action_reject_params.py +25 -0
- telnyx/types/calls/action_reject_response.py +12 -0
- telnyx/types/calls/action_resume_recording_params.py +25 -0
- telnyx/types/calls/action_resume_recording_response.py +12 -0
- telnyx/types/calls/action_send_dtmf_params.py +35 -0
- telnyx/types/calls/action_send_dtmf_response.py +12 -0
- telnyx/types/calls/action_send_sip_info_params.py +31 -0
- telnyx/types/calls/action_send_sip_info_response.py +12 -0
- telnyx/types/calls/action_speak_params.py +125 -0
- telnyx/types/calls/action_speak_response.py +12 -0
- telnyx/types/calls/action_start_ai_assistant_params.py +99 -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 +44 -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 +62 -0
- telnyx/types/calls/action_start_streaming_response.py +12 -0
- telnyx/types/calls/action_start_transcription_params.py +169 -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 +256 -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 +16 -0
- telnyx/types/calls/call_control_command_result.py +11 -0
- telnyx/types/calls/eleven_labs_voice_settings_param.py +20 -0
- telnyx/types/calls/google_transcription_language.py +88 -0
- telnyx/types/calls/interruption_settings_param.py +14 -0
- telnyx/types/calls/loopcount_param.py +10 -0
- telnyx/types/calls/telnyx_transcription_language.py +108 -0
- telnyx/types/calls/telnyx_voice_settings_param.py +18 -0
- telnyx/types/calls/transcription_config_param.py +24 -0
- telnyx/types/calls/transcription_engine_a_config_param.py +65 -0
- telnyx/types/calls/transcription_engine_azure_config_param.py +103 -0
- telnyx/types/calls/transcription_engine_b_config_param.py +20 -0
- telnyx/types/calls/transcription_engine_google_config_param.py +65 -0
- telnyx/types/calls/transcription_engine_telnyx_config_param.py +20 -0
- telnyx/types/calls/transcription_start_request_param.py +169 -0
- telnyx/types/campaign_status_update_webhook_event.py +46 -0
- telnyx/types/campaign_status_update_webhook_event1.py +46 -0
- telnyx/types/channel_zone_list_params.py +15 -0
- telnyx/types/channel_zone_list_response.py +30 -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/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 +28 -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 +58 -0
- telnyx/types/conference_create_params.py +78 -0
- telnyx/types/conference_create_response.py +12 -0
- telnyx/types/conference_created_webhook_event.py +53 -0
- telnyx/types/conference_created_webhook_event1.py +53 -0
- telnyx/types/conference_ended_webhook_event.py +56 -0
- telnyx/types/conference_ended_webhook_event1.py +56 -0
- telnyx/types/conference_floor_changed_webhook_event.py +45 -0
- telnyx/types/conference_floor_changed_webhook_event1.py +45 -0
- telnyx/types/conference_list_params.py +116 -0
- telnyx/types/conference_list_participants_params.py +42 -0
- telnyx/types/conference_list_participants_response.py +64 -0
- telnyx/types/conference_participant_joined_webhook_event.py +53 -0
- telnyx/types/conference_participant_joined_webhook_event1.py +53 -0
- telnyx/types/conference_participant_left_webhook_event.py +53 -0
- telnyx/types/conference_participant_left_webhook_event1.py +53 -0
- telnyx/types/conference_participant_playback_ended_webhook_event.py +65 -0
- telnyx/types/conference_participant_playback_ended_webhook_event1.py +65 -0
- telnyx/types/conference_participant_playback_started_webhook_event.py +65 -0
- telnyx/types/conference_participant_playback_started_webhook_event1.py +65 -0
- telnyx/types/conference_participant_speak_ended_webhook_event.py +56 -0
- telnyx/types/conference_participant_speak_ended_webhook_event1.py +56 -0
- telnyx/types/conference_participant_speak_started_webhook_event.py +56 -0
- telnyx/types/conference_participant_speak_started_webhook_event1.py +56 -0
- telnyx/types/conference_playback_ended_webhook_event.py +49 -0
- telnyx/types/conference_playback_ended_webhook_event1.py +49 -0
- telnyx/types/conference_playback_started_webhook_event.py +49 -0
- telnyx/types/conference_playback_started_webhook_event1.py +49 -0
- telnyx/types/conference_recording_saved_webhook_event.py +113 -0
- telnyx/types/conference_recording_saved_webhook_event1.py +113 -0
- telnyx/types/conference_retrieve_params.py +12 -0
- telnyx/types/conference_retrieve_response.py +12 -0
- telnyx/types/conference_speak_ended_webhook_event.py +40 -0
- telnyx/types/conference_speak_ended_webhook_event1.py +40 -0
- telnyx/types/conference_speak_started_webhook_event.py +40 -0
- telnyx/types/conference_speak_started_webhook_event1.py +40 -0
- telnyx/types/conferences/__init__.py +33 -0
- telnyx/types/conferences/action_hold_params.py +37 -0
- telnyx/types/conferences/action_hold_response.py +12 -0
- telnyx/types/conferences/action_join_params.py +107 -0
- telnyx/types/conferences/action_join_response.py +12 -0
- telnyx/types/conferences/action_leave_params.py +32 -0
- telnyx/types/conferences/action_leave_response.py +12 -0
- telnyx/types/conferences/action_mute_params.py +23 -0
- telnyx/types/conferences/action_mute_response.py +12 -0
- telnyx/types/conferences/action_play_params.py +45 -0
- telnyx/types/conferences/action_play_response.py +12 -0
- telnyx/types/conferences/action_record_pause_params.py +25 -0
- telnyx/types/conferences/action_record_pause_response.py +12 -0
- telnyx/types/conferences/action_record_resume_params.py +25 -0
- telnyx/types/conferences/action_record_resume_response.py +12 -0
- telnyx/types/conferences/action_record_start_params.py +43 -0
- telnyx/types/conferences/action_record_start_response.py +12 -0
- telnyx/types/conferences/action_record_stop_params.py +31 -0
- telnyx/types/conferences/action_record_stop_response.py +12 -0
- telnyx/types/conferences/action_speak_params.py +117 -0
- telnyx/types/conferences/action_speak_response.py +12 -0
- telnyx/types/conferences/action_stop_params.py +23 -0
- telnyx/types/conferences/action_stop_response.py +12 -0
- telnyx/types/conferences/action_unhold_params.py +23 -0
- telnyx/types/conferences/action_unhold_response.py +12 -0
- telnyx/types/conferences/action_unmute_params.py +24 -0
- telnyx/types/conferences/action_unmute_response.py +12 -0
- telnyx/types/conferences/action_update_params.py +44 -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 +15 -0
- telnyx/types/connection_list_active_calls_response.py +30 -0
- telnyx/types/connection_list_params.py +70 -0
- telnyx/types/connection_list_response.py +53 -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 +15 -0
- telnyx/types/country_coverage_retrieve_country_response.py +78 -0
- telnyx/types/country_coverage_retrieve_response.py +78 -0
- telnyx/types/create_verification_response.py +10 -0
- telnyx/types/credential_connection.py +176 -0
- telnyx/types/credential_connection_create_params.py +175 -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 +70 -0
- telnyx/types/credential_connection_retrieve_response.py +12 -0
- telnyx/types/credential_connection_update_params.py +171 -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 +63 -0
- telnyx/types/credential_inbound_param.py +64 -0
- telnyx/types/credential_outbound.py +66 -0
- telnyx/types/credential_outbound_param.py +64 -0
- telnyx/types/custom_sip_header.py +13 -0
- telnyx/types/custom_sip_header_param.py +15 -0
- telnyx/types/custom_storage_configuration.py +22 -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 +95 -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 +88 -0
- telnyx/types/customer_service_record_retrieve_response.py +12 -0
- telnyx/types/customer_service_record_verify_phone_number_coverage_params.py +14 -0
- telnyx/types/customer_service_record_verify_phone_number_coverage_response.py +50 -0
- telnyx/types/delivery_update_webhook_event.py +40 -0
- telnyx/types/delivery_update_webhook_event1.py +40 -0
- telnyx/types/detail_record_list_params.py +81 -0
- telnyx/types/detail_record_list_response.py +475 -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 +53 -0
- telnyx/types/document_delete_response.py +12 -0
- telnyx/types/document_generate_download_link_response.py +14 -0
- telnyx/types/document_link_list_params.py +34 -0
- telnyx/types/document_link_list_response.py +30 -0
- telnyx/types/document_list_params.py +71 -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_json_params.py +39 -0
- telnyx/types/document_upload_json_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 +34 -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 +34 -0
- telnyx/types/dynamic_emergency_endpoint_retrieve_response.py +12 -0
- telnyx/types/encrypted_media.py +8 -0
- telnyx/types/external_connection.py +75 -0
- telnyx/types/external_connection_create_params.py +62 -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 +78 -0
- telnyx/types/external_connection_retrieve_response.py +12 -0
- telnyx/types/external_connection_update_location_params.py +14 -0
- telnyx/types/external_connection_update_location_response.py +19 -0
- telnyx/types/external_connection_update_params.py +56 -0
- telnyx/types/external_connection_update_response.py +12 -0
- telnyx/types/external_connections/__init__.py +28 -0
- telnyx/types/external_connections/civic_address_list_params.py +27 -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 +57 -0
- telnyx/types/external_connections/log_message_list_response.py +35 -0
- telnyx/types/external_connections/log_message_retrieve_response.py +39 -0
- telnyx/types/external_connections/phone_number_list_params.py +53 -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 +77 -0
- telnyx/types/external_connections/release_list_response.py +36 -0
- telnyx/types/external_connections/release_retrieve_response.py +40 -0
- telnyx/types/external_connections/tn_upload_entry.py +58 -0
- telnyx/types/external_connections/upload.py +33 -0
- telnyx/types/external_connections/upload_create_params.py +28 -0
- telnyx/types/external_connections/upload_create_response.py +15 -0
- telnyx/types/external_connections/upload_list_params.py +68 -0
- telnyx/types/external_connections/upload_pending_count_response.py +22 -0
- telnyx/types/external_connections/upload_refresh_status_response.py +12 -0
- telnyx/types/external_connections/upload_retrieve_response.py +12 -0
- telnyx/types/external_connections/upload_retry_response.py +12 -0
- telnyx/types/external_voice_integrations_pagination_meta.py +17 -0
- telnyx/types/fax.py +108 -0
- telnyx/types/fax_application.py +94 -0
- telnyx/types/fax_application_create_params.py +84 -0
- telnyx/types/fax_application_create_response.py +12 -0
- telnyx/types/fax_application_delete_response.py +12 -0
- telnyx/types/fax_application_list_params.py +64 -0
- telnyx/types/fax_application_retrieve_response.py +12 -0
- telnyx/types/fax_application_update_params.py +90 -0
- telnyx/types/fax_application_update_response.py +12 -0
- telnyx/types/fax_create_params.py +87 -0
- telnyx/types/fax_create_response.py +12 -0
- telnyx/types/fax_delivered_webhook_event.py +69 -0
- telnyx/types/fax_delivered_webhook_event1.py +69 -0
- telnyx/types/fax_failed_webhook_event.py +66 -0
- telnyx/types/fax_failed_webhook_event1.py +66 -0
- telnyx/types/fax_list_params.py +87 -0
- telnyx/types/fax_media_processed_webhook_event.py +63 -0
- telnyx/types/fax_media_processed_webhook_event1.py +63 -0
- telnyx/types/fax_queued_webhook_event.py +63 -0
- telnyx/types/fax_queued_webhook_event1.py +63 -0
- telnyx/types/fax_retrieve_response.py +12 -0
- telnyx/types/fax_sending_started_webhook_event.py +63 -0
- telnyx/types/fax_sending_started_webhook_event1.py +63 -0
- telnyx/types/faxes/__init__.py +6 -0
- telnyx/types/faxes/action_cancel_response.py +11 -0
- telnyx/types/faxes/action_refresh_response.py +11 -0
- telnyx/types/fqdn.py +38 -0
- telnyx/types/fqdn_connection.py +202 -0
- telnyx/types/fqdn_connection_create_params.py +163 -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 +70 -0
- telnyx/types/fqdn_connection_retrieve_response.py +12 -0
- telnyx/types/fqdn_connection_update_params.py +157 -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 +41 -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 +22 -0
- telnyx/types/gcs_configuration_data_param.py +21 -0
- telnyx/types/global_ip_allowed_port_list_response.py +31 -0
- telnyx/types/global_ip_assignment.py +21 -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 +71 -0
- telnyx/types/global_ip_assignment_health_retrieve_response.py +66 -0
- telnyx/types/global_ip_assignment_list_params.py +15 -0
- telnyx/types/global_ip_assignment_param.py +11 -0
- telnyx/types/global_ip_assignment_retrieve_response.py +12 -0
- telnyx/types/global_ip_assignment_update_params.py +20 -0
- telnyx/types/global_ip_assignment_update_response.py +12 -0
- telnyx/types/global_ip_assignments_usage_retrieve_params.py +71 -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 +26 -0
- telnyx/types/global_ip_delete_response.py +26 -0
- telnyx/types/global_ip_health_check_create_params.py +19 -0
- telnyx/types/global_ip_health_check_create_response.py +23 -0
- telnyx/types/global_ip_health_check_delete_response.py +23 -0
- telnyx/types/global_ip_health_check_list_params.py +15 -0
- telnyx/types/global_ip_health_check_list_response.py +18 -0
- telnyx/types/global_ip_health_check_retrieve_response.py +23 -0
- telnyx/types/global_ip_health_check_type_list_response.py +22 -0
- telnyx/types/global_ip_latency_retrieve_params.py +44 -0
- telnyx/types/global_ip_latency_retrieve_response.py +143 -0
- telnyx/types/global_ip_list_params.py +15 -0
- telnyx/types/global_ip_list_response.py +21 -0
- telnyx/types/global_ip_protocol_list_response.py +22 -0
- telnyx/types/global_ip_retrieve_response.py +26 -0
- telnyx/types/global_ip_usage_retrieve_params.py +44 -0
- telnyx/types/global_ip_usage_retrieve_response.py +47 -0
- telnyx/types/inbound_channel_list_response.py +19 -0
- telnyx/types/inbound_channel_update_params.py +12 -0
- telnyx/types/inbound_channel_update_response.py +19 -0
- telnyx/types/inbound_fqdn.py +111 -0
- telnyx/types/inbound_fqdn_param.py +113 -0
- telnyx/types/inbound_ip.py +111 -0
- telnyx/types/inbound_ip_param.py +112 -0
- telnyx/types/inbound_message_webhook_event.py +30 -0
- telnyx/types/inbound_message_webhook_event1.py +30 -0
- telnyx/types/inexplicit_number_order_create_params.py +97 -0
- telnyx/types/inexplicit_number_order_create_response.py +12 -0
- telnyx/types/inexplicit_number_order_list_params.py +15 -0
- telnyx/types/inexplicit_number_order_response.py +103 -0
- telnyx/types/inexplicit_number_order_retrieve_response.py +12 -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 +24 -0
- telnyx/types/interface_status.py +7 -0
- telnyx/types/inventory_coverage_list_params.py +91 -0
- telnyx/types/inventory_coverage_list_response.py +41 -0
- telnyx/types/invoice_list_params.py +18 -0
- telnyx/types/invoice_list_response.py +22 -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 +160 -0
- telnyx/types/ip_connection_create_params.py +235 -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 +70 -0
- telnyx/types/ip_connection_retrieve_response.py +12 -0
- telnyx/types/ip_connection_update_params.py +154 -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 +37 -0
- telnyx/types/ip_retrieve_response.py +12 -0
- telnyx/types/ip_update_params.py +18 -0
- telnyx/types/ip_update_response.py +12 -0
- telnyx/types/ledger_billing_group_report.py +32 -0
- telnyx/types/ledger_billing_group_report_create_params.py +15 -0
- telnyx/types/ledger_billing_group_report_create_response.py +12 -0
- telnyx/types/ledger_billing_group_report_retrieve_response.py +12 -0
- telnyx/types/legacy/__init__.py +3 -0
- telnyx/types/legacy/reporting/__init__.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/__init__.py +24 -0
- telnyx/types/legacy/reporting/batch_detail_records/batch_csv_pagination_meta.py +17 -0
- telnyx/types/legacy/reporting/batch_detail_records/cdr_detailed_req_response.py +65 -0
- telnyx/types/legacy/reporting/batch_detail_records/mdr_detail_report_response.py +42 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_params.py +55 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_response.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_delete_response.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_list_response.py +15 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_retrieve_response.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_params.py +19 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_response.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_delete_response.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_list_response.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_retrieve_response.py +12 -0
- telnyx/types/legacy/reporting/batch_detail_records/stt_detail_report_response.py +27 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_params.py +57 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_response.py +13 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_delete_response.py +13 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_list_response.py +15 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_fields_response.py +25 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_response.py +13 -0
- telnyx/types/legacy/reporting/filter.py +36 -0
- telnyx/types/legacy/reporting/filter_param.py +35 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_params.py +17 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_response.py +11 -0
- telnyx/types/legacy/reporting/usage_reports/__init__.py +24 -0
- telnyx/types/legacy/reporting/usage_reports/cdr_usage_report_response_legacy.py +45 -0
- telnyx/types/legacy/reporting/usage_reports/mdr_usage_report_response_legacy.py +40 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_params.py +29 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_response.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_delete_response.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_retrieve_response.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_create_params.py +26 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_create_response.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_list_response.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_retrieve_response.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/standard_pagination_meta.py +17 -0
- telnyx/types/legacy/reporting/usage_reports/telco_data_aggregation.py +21 -0
- telnyx/types/legacy/reporting/usage_reports/telco_data_usage_record.py +19 -0
- telnyx/types/legacy/reporting/usage_reports/telco_data_usage_report_response.py +46 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_params.py +40 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_response.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/voice_delete_response.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/voice_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/voice_retrieve_response.py +13 -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 +83 -0
- telnyx/types/managed_account_list_response.py +52 -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 +27 -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 +230 -0
- telnyx/types/message_retrieve_response.py +19 -0
- telnyx/types/message_schedule_params.py +78 -0
- telnyx/types/message_schedule_response.py +12 -0
- telnyx/types/message_send_group_mms_params.py +43 -0
- telnyx/types/message_send_group_mms_response.py +12 -0
- telnyx/types/message_send_long_code_params.py +58 -0
- telnyx/types/message_send_long_code_response.py +12 -0
- telnyx/types/message_send_number_pool_params.py +57 -0
- telnyx/types/message_send_number_pool_response.py +12 -0
- telnyx/types/message_send_params.py +78 -0
- telnyx/types/message_send_response.py +12 -0
- telnyx/types/message_send_short_code_params.py +58 -0
- telnyx/types/message_send_short_code_response.py +12 -0
- telnyx/types/message_send_whatsapp_params.py +291 -0
- telnyx/types/message_send_whatsapp_response.py +345 -0
- telnyx/types/message_template.py +12 -0
- telnyx/types/messages/__init__.py +8 -0
- telnyx/types/messages/rc_generate_deeplink_params.py +15 -0
- telnyx/types/messages/rc_generate_deeplink_response.py +14 -0
- telnyx/types/messages/rc_send_params.py +67 -0
- telnyx/types/messages/rc_send_response.py +59 -0
- telnyx/types/messaging/__init__.py +9 -0
- telnyx/types/messaging/rc_invite_test_number_response.py +26 -0
- telnyx/types/messaging/rc_list_bulk_capabilities_params.py +17 -0
- telnyx/types/messaging/rc_list_bulk_capabilities_response.py +12 -0
- telnyx/types/messaging/rc_retrieve_capabilities_response.py +12 -0
- telnyx/types/messaging/rcs/__init__.py +6 -0
- telnyx/types/messaging/rcs/agent_list_params.py +15 -0
- telnyx/types/messaging/rcs/agent_update_params.py +19 -0
- telnyx/types/messaging/rcs_capabilities.py +25 -0
- telnyx/types/messaging_10dlc/__init__.py +75 -0
- telnyx/types/messaging_10dlc/alt_business_id_type.py +7 -0
- telnyx/types/messaging_10dlc/brand/__init__.py +9 -0
- telnyx/types/messaging_10dlc/brand/external_vetting_imports_params.py +23 -0
- telnyx/types/messaging_10dlc/brand/external_vetting_imports_response.py +43 -0
- telnyx/types/messaging_10dlc/brand/external_vetting_list_response.py +47 -0
- telnyx/types/messaging_10dlc/brand/external_vetting_order_params.py +17 -0
- telnyx/types/messaging_10dlc/brand/external_vetting_order_response.py +43 -0
- telnyx/types/messaging_10dlc/brand_create_params.py +92 -0
- telnyx/types/messaging_10dlc/brand_get_feedback_response.py +31 -0
- telnyx/types/messaging_10dlc/brand_identity_status.py +7 -0
- telnyx/types/messaging_10dlc/brand_list_params.py +51 -0
- telnyx/types/messaging_10dlc/brand_list_response.py +53 -0
- telnyx/types/messaging_10dlc/brand_retrieve_response.py +16 -0
- telnyx/types/messaging_10dlc/brand_retrieve_sms_otp_status_response.py +43 -0
- telnyx/types/messaging_10dlc/brand_trigger_sms_otp_params.py +20 -0
- telnyx/types/messaging_10dlc/brand_trigger_sms_otp_response.py +17 -0
- telnyx/types/messaging_10dlc/brand_update_params.py +97 -0
- telnyx/types/messaging_10dlc/brand_verify_sms_otp_params.py +14 -0
- telnyx/types/messaging_10dlc/campaign/__init__.py +7 -0
- telnyx/types/messaging_10dlc/campaign/osr_get_attributes_response.py +8 -0
- telnyx/types/messaging_10dlc/campaign/usecase_get_cost_params.py +11 -0
- telnyx/types/messaging_10dlc/campaign/usecase_get_cost_response.py +17 -0
- telnyx/types/messaging_10dlc/campaign_accept_sharing_response.py +8 -0
- telnyx/types/messaging_10dlc/campaign_builder/__init__.py +5 -0
- telnyx/types/messaging_10dlc/campaign_builder/brand_qualify_by_usecase_response.py +36 -0
- telnyx/types/messaging_10dlc/campaign_builder_submit_params.py +146 -0
- telnyx/types/messaging_10dlc/campaign_deactivate_response.py +15 -0
- telnyx/types/messaging_10dlc/campaign_get_mno_metadata_response.py +47 -0
- telnyx/types/messaging_10dlc/campaign_get_operation_status_response.py +8 -0
- telnyx/types/messaging_10dlc/campaign_get_sharing_status_response.py +16 -0
- telnyx/types/messaging_10dlc/campaign_list_params.py +39 -0
- telnyx/types/messaging_10dlc/campaign_list_response.py +217 -0
- telnyx/types/messaging_10dlc/campaign_sharing_status.py +21 -0
- telnyx/types/messaging_10dlc/campaign_submit_appeal_params.py +15 -0
- telnyx/types/messaging_10dlc/campaign_submit_appeal_response.py +13 -0
- telnyx/types/messaging_10dlc/campaign_update_params.py +47 -0
- telnyx/types/messaging_10dlc/entity_type.py +7 -0
- telnyx/types/messaging_10dlc/partner_campaign_list_params.py +39 -0
- telnyx/types/messaging_10dlc/partner_campaign_list_shared_by_me_params.py +20 -0
- telnyx/types/messaging_10dlc/partner_campaign_list_shared_by_me_response.py +41 -0
- telnyx/types/messaging_10dlc/partner_campaign_retrieve_sharing_status_response.py +10 -0
- telnyx/types/messaging_10dlc/partner_campaign_update_params.py +17 -0
- telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_assign_params.py +29 -0
- telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_assign_response.py +32 -0
- telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_list_phone_number_status_params.py +15 -0
- telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_list_phone_number_status_response.py +24 -0
- telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_retrieve_phone_number_status_params.py +15 -0
- telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_retrieve_phone_number_status_response.py +24 -0
- telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_retrieve_status_response.py +22 -0
- telnyx/types/messaging_10dlc/phone_number_campaign.py +48 -0
- telnyx/types/messaging_10dlc/phone_number_campaign_create_params.py +17 -0
- telnyx/types/messaging_10dlc/phone_number_campaign_list_params.py +47 -0
- telnyx/types/messaging_10dlc/phone_number_campaign_update_params.py +17 -0
- telnyx/types/messaging_10dlc/stock_exchange.py +33 -0
- telnyx/types/messaging_10dlc/task_status.py +7 -0
- telnyx/types/messaging_10dlc/telnyx_brand.py +144 -0
- telnyx/types/messaging_10dlc/telnyx_campaign_csp.py +218 -0
- telnyx/types/messaging_10dlc/telnyx_downstream_campaign.py +158 -0
- telnyx/types/messaging_10dlc/vertical.py +25 -0
- telnyx/types/messaging_10dlc_get_enum_response.py +23 -0
- telnyx/types/messaging_error.py +27 -0
- telnyx/types/messaging_hosted_number_delete_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_check_eligibility_params.py +14 -0
- telnyx/types/messaging_hosted_number_order_check_eligibility_response.py +42 -0
- telnyx/types/messaging_hosted_number_order_create_params.py +20 -0
- telnyx/types/messaging_hosted_number_order_create_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_create_verification_codes_params.py +15 -0
- telnyx/types/messaging_hosted_number_order_create_verification_codes_response.py +28 -0
- telnyx/types/messaging_hosted_number_order_delete_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_list_params.py +15 -0
- telnyx/types/messaging_hosted_number_order_retrieve_response.py +12 -0
- telnyx/types/messaging_hosted_number_order_validate_codes_params.py +18 -0
- telnyx/types/messaging_hosted_number_order_validate_codes_response.py +24 -0
- telnyx/types/messaging_hosted_number_orders/__init__.py +6 -0
- telnyx/types/messaging_hosted_number_orders/action_upload_file_params.py +20 -0
- telnyx/types/messaging_hosted_number_orders/action_upload_file_response.py +12 -0
- telnyx/types/messaging_numbers_bulk_update_create_params.py +23 -0
- telnyx/types/messaging_numbers_bulk_update_create_response.py +29 -0
- telnyx/types/messaging_numbers_bulk_update_retrieve_response.py +29 -0
- telnyx/types/messaging_optout_list_params.py +64 -0
- telnyx/types/messaging_optout_list_response.py +30 -0
- telnyx/types/messaging_profile.py +120 -0
- telnyx/types/messaging_profile_create_params.py +94 -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 +25 -0
- telnyx/types/messaging_profile_list_phone_numbers_params.py +15 -0
- telnyx/types/messaging_profile_list_short_codes_params.py +15 -0
- telnyx/types/messaging_profile_retrieve_response.py +12 -0
- telnyx/types/messaging_profile_update_params.py +99 -0
- telnyx/types/messaging_profile_update_response.py +12 -0
- telnyx/types/messaging_profiles/__init__.py +11 -0
- telnyx/types/messaging_profiles/auto_resp_config.py +25 -0
- telnyx/types/messaging_profiles/auto_resp_config_response.py +10 -0
- telnyx/types/messaging_profiles/autoresp_config_create_params.py +19 -0
- telnyx/types/messaging_profiles/autoresp_config_delete_response.py +7 -0
- telnyx/types/messaging_profiles/autoresp_config_list_params.py +45 -0
- telnyx/types/messaging_profiles/autoresp_config_list_response.py +17 -0
- telnyx/types/messaging_profiles/autoresp_config_update_params.py +21 -0
- telnyx/types/messaging_tollfree/__init__.py +3 -0
- telnyx/types/messaging_tollfree/verification/__init__.py +17 -0
- telnyx/types/messaging_tollfree/verification/request_create_params.py +150 -0
- telnyx/types/messaging_tollfree/verification/request_list_params.py +31 -0
- telnyx/types/messaging_tollfree/verification/request_update_params.py +150 -0
- telnyx/types/messaging_tollfree/verification/tf_phone_number.py +13 -0
- telnyx/types/messaging_tollfree/verification/tf_phone_number_param.py +15 -0
- telnyx/types/messaging_tollfree/verification/tf_verification_status.py +9 -0
- telnyx/types/messaging_tollfree/verification/toll_free_verification_entity_type.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 +101 -0
- telnyx/types/messaging_tollfree/verification/verification_request_status.py +106 -0
- telnyx/types/messaging_tollfree/verification/volume.py +9 -0
- telnyx/types/messaging_url_domain_list_params.py +15 -0
- telnyx/types/messaging_url_domain_list_response.py +17 -0
- telnyx/types/mobile_network_operator_list_params.py +61 -0
- telnyx/types/mobile_network_operator_list_response.py +50 -0
- telnyx/types/mobile_phone_number.py +110 -0
- telnyx/types/mobile_phone_number_list_params.py +17 -0
- telnyx/types/mobile_phone_number_retrieve_response.py +12 -0
- telnyx/types/mobile_phone_number_update_params.py +72 -0
- telnyx/types/mobile_phone_number_update_response.py +12 -0
- telnyx/types/mobile_phone_numbers/__init__.py +7 -0
- telnyx/types/mobile_phone_numbers/messaging_list_params.py +15 -0
- telnyx/types/mobile_phone_numbers/messaging_list_response.py +53 -0
- telnyx/types/mobile_phone_numbers/messaging_retrieve_response.py +57 -0
- telnyx/types/mobile_push_credential_create_params.py +51 -0
- telnyx/types/mobile_push_credential_list_params.py +34 -0
- telnyx/types/mobile_voice_connection.py +56 -0
- telnyx/types/mobile_voice_connection_create_params.py +40 -0
- telnyx/types/mobile_voice_connection_create_response.py +12 -0
- telnyx/types/mobile_voice_connection_delete_response.py +12 -0
- telnyx/types/mobile_voice_connection_list_params.py +26 -0
- telnyx/types/mobile_voice_connection_retrieve_response.py +12 -0
- telnyx/types/mobile_voice_connection_update_params.py +40 -0
- telnyx/types/mobile_voice_connection_update_response.py +12 -0
- telnyx/types/month_detail.py +18 -0
- telnyx/types/network_coverage_list_params.py +75 -0
- telnyx/types/network_coverage_list_response.py +35 -0
- telnyx/types/network_create_params.py +12 -0
- telnyx/types/network_create_response.py +17 -0
- telnyx/types/network_delete_response.py +17 -0
- telnyx/types/network_interface.py +19 -0
- telnyx/types/network_interface_region.py +12 -0
- telnyx/types/network_list_interfaces_params.py +34 -0
- telnyx/types/network_list_interfaces_response.py +33 -0
- telnyx/types/network_list_params.py +25 -0
- telnyx/types/network_list_response.py +12 -0
- telnyx/types/network_retrieve_response.py +17 -0
- telnyx/types/network_update_params.py +12 -0
- telnyx/types/network_update_response.py +17 -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 +27 -0
- telnyx/types/networks/default_gateway_delete_response.py +27 -0
- telnyx/types/networks/default_gateway_retrieve_response.py +27 -0
- telnyx/types/notification_channel.py +31 -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 +90 -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 +90 -0
- telnyx/types/notification_event_condition_list_response.py +52 -0
- telnyx/types/notification_event_list_params.py +15 -0
- telnyx/types/notification_event_list_response.py +28 -0
- telnyx/types/notification_profile.py +24 -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 +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 +90 -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 +48 -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 +54 -0
- telnyx/types/number_order_list_response.py +56 -0
- telnyx/types/number_order_phone_number.py +55 -0
- telnyx/types/number_order_phone_number_list_params.py +25 -0
- telnyx/types/number_order_phone_number_list_response.py +15 -0
- telnyx/types/number_order_phone_number_retrieve_response.py +12 -0
- telnyx/types/number_order_phone_number_update_requirement_group_params.py +12 -0
- telnyx/types/number_order_phone_number_update_requirement_group_response.py +54 -0
- telnyx/types/number_order_phone_number_update_requirements_params.py +14 -0
- telnyx/types/number_order_phone_number_update_requirements_response.py +12 -0
- telnyx/types/number_order_retrieve_response.py +12 -0
- telnyx/types/number_order_status_update_webhook_event.py +38 -0
- telnyx/types/number_order_status_update_webhook_event1.py +38 -0
- telnyx/types/number_order_update_params.py +17 -0
- telnyx/types/number_order_update_response.py +12 -0
- telnyx/types/number_order_with_phone_numbers.py +47 -0
- telnyx/types/number_pool_settings.py +59 -0
- telnyx/types/number_pool_settings_param.py +59 -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 +51 -0
- telnyx/types/number_reservation_retrieve_response.py +12 -0
- telnyx/types/number_reservations/__init__.py +5 -0
- telnyx/types/number_reservations/action_extend_response.py +12 -0
- telnyx/types/numbers_feature_create_params.py +13 -0
- telnyx/types/numbers_feature_create_response.py +17 -0
- telnyx/types/oauth_client.py +59 -0
- telnyx/types/oauth_client_create_params.py +39 -0
- telnyx/types/oauth_client_create_response.py +12 -0
- telnyx/types/oauth_client_list_params.py +38 -0
- telnyx/types/oauth_client_retrieve_response.py +12 -0
- telnyx/types/oauth_client_update_params.py +36 -0
- telnyx/types/oauth_client_update_response.py +12 -0
- telnyx/types/oauth_grant.py +29 -0
- telnyx/types/oauth_grant_delete_response.py +12 -0
- telnyx/types/oauth_grant_list_params.py +17 -0
- telnyx/types/oauth_grant_retrieve_response.py +12 -0
- telnyx/types/oauth_grants_params.py +15 -0
- telnyx/types/oauth_grants_response.py +10 -0
- telnyx/types/oauth_introspect_params.py +12 -0
- telnyx/types/oauth_introspect_response.py +30 -0
- telnyx/types/oauth_register_params.py +39 -0
- telnyx/types/oauth_register_response.py +45 -0
- telnyx/types/oauth_retrieve_authorize_params.py +30 -0
- telnyx/types/oauth_retrieve_jwks_response.py +25 -0
- telnyx/types/oauth_retrieve_response.py +47 -0
- telnyx/types/oauth_token_params.py +33 -0
- telnyx/types/oauth_token_response.py +25 -0
- telnyx/types/operator_connect/__init__.py +5 -0
- telnyx/types/operator_connect/action_refresh_response.py +15 -0
- telnyx/types/organizations/__init__.py +9 -0
- telnyx/types/organizations/user_get_groups_report_response.py +60 -0
- telnyx/types/organizations/user_list_params.py +30 -0
- telnyx/types/organizations/user_list_response.py +57 -0
- telnyx/types/organizations/user_retrieve_params.py +16 -0
- telnyx/types/organizations/user_retrieve_response.py +61 -0
- telnyx/types/organizations/users/__init__.py +5 -0
- telnyx/types/organizations/users/action_remove_response.py +61 -0
- telnyx/types/ota_update_list_params.py +37 -0
- telnyx/types/ota_update_list_response.py +37 -0
- telnyx/types/ota_update_retrieve_response.py +81 -0
- telnyx/types/outbound_call_recording.py +28 -0
- telnyx/types/outbound_call_recording_param.py +29 -0
- telnyx/types/outbound_fqdn.py +86 -0
- telnyx/types/outbound_fqdn_param.py +85 -0
- telnyx/types/outbound_ip.py +73 -0
- telnyx/types/outbound_ip_param.py +71 -0
- telnyx/types/outbound_message_payload.py +216 -0
- telnyx/types/outbound_voice_profile.py +114 -0
- telnyx/types/outbound_voice_profile_create_params.py +102 -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 +69 -0
- telnyx/types/outbound_voice_profile_retrieve_response.py +12 -0
- telnyx/types/outbound_voice_profile_update_params.py +102 -0
- telnyx/types/outbound_voice_profile_update_response.py +12 -0
- telnyx/types/pagination_meta.py +17 -0
- telnyx/types/pagination_meta_cloudflare_ip_list_sync.py +15 -0
- telnyx/types/pagination_meta_oauth.py +21 -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_blocks/__init__.py +12 -0
- telnyx/types/phone_number_blocks/job.py +60 -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_error.py +32 -0
- telnyx/types/phone_number_blocks/job_list_params.py +40 -0
- telnyx/types/phone_number_blocks/job_retrieve_response.py +12 -0
- telnyx/types/phone_number_delete_response.py +120 -0
- telnyx/types/phone_number_detailed.py +143 -0
- telnyx/types/phone_number_list_params.py +146 -0
- telnyx/types/phone_number_retrieve_response.py +12 -0
- telnyx/types/phone_number_slim_list_params.py +150 -0
- telnyx/types/phone_number_slim_list_response.py +118 -0
- telnyx/types/phone_number_update_params.py +34 -0
- telnyx/types/phone_number_update_response.py +12 -0
- telnyx/types/phone_numbers/__init__.py +52 -0
- telnyx/types/phone_numbers/action_change_bundle_status_params.py +18 -0
- telnyx/types/phone_numbers/action_change_bundle_status_response.py +12 -0
- telnyx/types/phone_numbers/action_enable_emergency_params.py +15 -0
- telnyx/types/phone_numbers/action_enable_emergency_response.py +12 -0
- telnyx/types/phone_numbers/action_verify_ownership_params.py +14 -0
- telnyx/types/phone_numbers/action_verify_ownership_response.py +30 -0
- telnyx/types/phone_numbers/call_forwarding.py +29 -0
- telnyx/types/phone_numbers/call_forwarding_param.py +28 -0
- telnyx/types/phone_numbers/call_recording.py +24 -0
- telnyx/types/phone_numbers/call_recording_param.py +23 -0
- telnyx/types/phone_numbers/cnam_listing.py +24 -0
- telnyx/types/phone_numbers/cnam_listing_param.py +24 -0
- telnyx/types/phone_numbers/csv_download.py +25 -0
- telnyx/types/phone_numbers/csv_download_create_params.py +103 -0
- telnyx/types/phone_numbers/csv_download_create_response.py +12 -0
- telnyx/types/phone_numbers/csv_download_list_params.py +15 -0
- telnyx/types/phone_numbers/csv_download_retrieve_response.py +12 -0
- telnyx/types/phone_numbers/job_delete_batch_params.py +13 -0
- telnyx/types/phone_numbers/job_delete_batch_response.py +12 -0
- telnyx/types/phone_numbers/job_list_params.py +31 -0
- telnyx/types/phone_numbers/job_retrieve_response.py +12 -0
- telnyx/types/phone_numbers/job_update_batch_params.py +144 -0
- telnyx/types/phone_numbers/job_update_batch_response.py +12 -0
- telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py +24 -0
- telnyx/types/phone_numbers/job_update_emergency_settings_batch_response.py +12 -0
- telnyx/types/phone_numbers/media_features.py +30 -0
- telnyx/types/phone_numbers/media_features_param.py +30 -0
- telnyx/types/phone_numbers/messaging_list_params.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 +86 -0
- telnyx/types/phone_numbers/phone_numbers_job.py +87 -0
- telnyx/types/phone_numbers/update_voice_settings_param.py +52 -0
- telnyx/types/phone_numbers/voice_list_params.py +60 -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 +25 -0
- telnyx/types/phone_numbers_regulatory_requirement_retrieve_response.py +62 -0
- telnyx/types/portability_check_run_params.py +14 -0
- telnyx/types/portability_check_run_response.py +31 -0
- telnyx/types/porting/__init__.py +24 -0
- telnyx/types/porting/event_list_params.py +58 -0
- telnyx/types/porting/event_list_response.py +407 -0
- telnyx/types/porting/event_retrieve_response.py +412 -0
- telnyx/types/porting/export_porting_orders_csv_report.py +47 -0
- telnyx/types/porting/export_porting_orders_csv_report_param.py +49 -0
- telnyx/types/porting/loa_configuration_create_params.py +63 -0
- telnyx/types/porting/loa_configuration_create_response.py +12 -0
- telnyx/types/porting/loa_configuration_list_params.py +15 -0
- telnyx/types/porting/loa_configuration_preview_0_params.py +63 -0
- telnyx/types/porting/loa_configuration_retrieve_response.py +12 -0
- telnyx/types/porting/loa_configuration_update_params.py +63 -0
- telnyx/types/porting/loa_configuration_update_response.py +12 -0
- telnyx/types/porting/porting_loa_configuration.py +83 -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 +34 -0
- telnyx/types/porting/report_retrieve_response.py +12 -0
- telnyx/types/porting_list_uk_carriers_response.py +38 -0
- telnyx/types/porting_order.py +101 -0
- telnyx/types/porting_order_activation_settings.py +39 -0
- telnyx/types/porting_order_create_params.py +21 -0
- telnyx/types/porting_order_create_response.py +12 -0
- telnyx/types/porting_order_documents.py +17 -0
- telnyx/types/porting_order_documents_param.py +18 -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 +34 -0
- telnyx/types/porting_order_end_user_location.py +27 -0
- telnyx/types/porting_order_end_user_location_param.py +28 -0
- telnyx/types/porting_order_end_user_param.py +16 -0
- telnyx/types/porting_order_list_params.py +138 -0
- telnyx/types/porting_order_messaging.py +30 -0
- telnyx/types/porting_order_misc.py +32 -0
- telnyx/types/porting_order_misc_param.py +33 -0
- telnyx/types/porting_order_phone_number_configuration.py +23 -0
- telnyx/types/porting_order_phone_number_configuration_param.py +26 -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 +15 -0
- telnyx/types/porting_order_retrieve_requirements_response.py +47 -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 +78 -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 +19 -0
- telnyx/types/porting_orders/__init__.py +67 -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 +29 -0
- telnyx/types/porting_orders/action_requirement_initiate_response.py +45 -0
- telnyx/types/porting_orders/action_requirement_list_params.py +55 -0
- telnyx/types/porting_orders/action_requirement_list_response.py +41 -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 +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 +45 -0
- telnyx/types/porting_orders/additional_document_list_response.py +38 -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 +47 -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 +15 -0
- telnyx/types/porting_orders/comment_list_response.py +27 -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_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 +69 -0
- telnyx/types/porting_orders/phone_number_configuration_list_response.py +28 -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 +44 -0
- telnyx/types/porting_orders/porting_associated_phone_number.py +51 -0
- telnyx/types/porting_orders/porting_phone_number_block.py +71 -0
- telnyx/types/porting_orders/porting_phone_number_extension.py +68 -0
- telnyx/types/porting_orders/verification_code_list_params.py +38 -0
- telnyx/types/porting_orders/verification_code_list_response.py +31 -0
- telnyx/types/porting_orders/verification_code_send_params.py +15 -0
- telnyx/types/porting_orders/verification_code_verify_params.py +18 -0
- telnyx/types/porting_orders/verification_code_verify_response.py +35 -0
- telnyx/types/porting_orders_activation_job.py +46 -0
- telnyx/types/porting_phone_number_list_params.py +33 -0
- telnyx/types/porting_phone_number_list_response.py +69 -0
- telnyx/types/portout_details.py +98 -0
- telnyx/types/portout_list_params.py +93 -0
- telnyx/types/portout_list_rejection_codes_params.py +26 -0
- telnyx/types/portout_list_rejection_codes_response.py +19 -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 +20 -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 +49 -0
- telnyx/types/portouts/event_list_response.py +172 -0
- telnyx/types/portouts/event_retrieve_response.py +175 -0
- telnyx/types/portouts/export_portouts_csv_report.py +42 -0
- telnyx/types/portouts/export_portouts_csv_report_param.py +44 -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 +34 -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_retrieve_response.py +12 -0
- telnyx/types/private_wireless_gateway_status.py +32 -0
- telnyx/types/public_internet_gateway_create_params.py +18 -0
- telnyx/types/public_internet_gateway_create_response.py +21 -0
- telnyx/types/public_internet_gateway_delete_response.py +21 -0
- telnyx/types/public_internet_gateway_list_params.py +31 -0
- telnyx/types/public_internet_gateway_list_response.py +16 -0
- telnyx/types/public_internet_gateway_retrieve_response.py +21 -0
- telnyx/types/push_credential.py +39 -0
- telnyx/types/push_credential_response.py +14 -0
- telnyx/types/pwg_assigned_resources_summary.py +19 -0
- telnyx/types/queue_retrieve_response.py +40 -0
- telnyx/types/queues/__init__.py +8 -0
- telnyx/types/queues/call_list_params.py +15 -0
- telnyx/types/queues/call_list_response.py +51 -0
- telnyx/types/queues/call_retrieve_response.py +55 -0
- telnyx/types/queues/call_update_params.py +14 -0
- telnyx/types/rcs_agent.py +37 -0
- telnyx/types/rcs_agent_message.py +83 -0
- telnyx/types/rcs_agent_message_param.py +85 -0
- telnyx/types/rcs_agent_response.py +12 -0
- telnyx/types/rcs_card_content.py +37 -0
- telnyx/types/rcs_card_content_param.py +38 -0
- telnyx/types/rcs_content_info.py +18 -0
- telnyx/types/rcs_content_info_param.py +18 -0
- telnyx/types/rcs_suggestion.py +138 -0
- telnyx/types/rcs_suggestion_param.py +140 -0
- telnyx/types/record.py +21 -0
- telnyx/types/recording_delete_response.py +12 -0
- telnyx/types/recording_list_params.py +79 -0
- telnyx/types/recording_response_data.py +74 -0
- telnyx/types/recording_retrieve_response.py +12 -0
- telnyx/types/recording_transcription.py +36 -0
- telnyx/types/recording_transcription_delete_response.py +12 -0
- telnyx/types/recording_transcription_list_response.py +32 -0
- telnyx/types/recording_transcription_retrieve_response.py +12 -0
- telnyx/types/recordings/__init__.py +5 -0
- telnyx/types/recordings/action_delete_params.py +14 -0
- telnyx/types/region_list_response.py +31 -0
- telnyx/types/regulatory_requirement_retrieve_params.py +38 -0
- telnyx/types/regulatory_requirement_retrieve_response.py +58 -0
- telnyx/types/replaced_link_click_webhook_event.py +32 -0
- telnyx/types/replaced_link_click_webhook_event1.py +32 -0
- telnyx/types/report_list_mdrs_params.py +36 -0
- telnyx/types/report_list_mdrs_response.py +65 -0
- telnyx/types/report_list_wdrs_params.py +52 -0
- telnyx/types/report_list_wdrs_response.py +83 -0
- telnyx/types/reports/__init__.py +15 -0
- telnyx/types/reports/cdr_usage_report_fetch_sync_params.py +23 -0
- telnyx/types/reports/cdr_usage_report_fetch_sync_response.py +42 -0
- telnyx/types/reports/mdr_usage_report.py +66 -0
- telnyx/types/reports/mdr_usage_report_create_params.py +21 -0
- telnyx/types/reports/mdr_usage_report_create_response.py +12 -0
- telnyx/types/reports/mdr_usage_report_delete_response.py +12 -0
- telnyx/types/reports/mdr_usage_report_fetch_sync_params.py +22 -0
- telnyx/types/reports/mdr_usage_report_fetch_sync_response.py +12 -0
- telnyx/types/reports/mdr_usage_report_list_params.py +15 -0
- telnyx/types/reports/mdr_usage_report_retrieve_response.py +12 -0
- telnyx/types/reports/pagination_meta_reporting.py +17 -0
- telnyx/types/requirement_group.py +47 -0
- telnyx/types/requirement_group_create_params.py +27 -0
- telnyx/types/requirement_group_list_params.py +38 -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 +58 -0
- telnyx/types/requirement_list_response.py +46 -0
- telnyx/types/requirement_retrieve_response.py +50 -0
- telnyx/types/requirement_type_list_params.py +36 -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 +50 -0
- telnyx/types/room_composition_retrieve_response.py +12 -0
- telnyx/types/room_create_params.py +37 -0
- telnyx/types/room_create_response.py +12 -0
- telnyx/types/room_list_params.py +64 -0
- telnyx/types/room_participant_list_params.py +84 -0
- telnyx/types/room_participant_retrieve_response.py +12 -0
- telnyx/types/room_recording_delete_bulk_params.py +78 -0
- telnyx/types/room_recording_delete_bulk_response.py +16 -0
- telnyx/types/room_recording_list_params.py +78 -0
- telnyx/types/room_recording_list_response.py +58 -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 +37 -0
- telnyx/types/room_update_response.py +12 -0
- telnyx/types/rooms/__init__.py +17 -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 +82 -0
- telnyx/types/rooms/session_list_1_params.py +79 -0
- telnyx/types/rooms/session_retrieve_params.py +12 -0
- telnyx/types/rooms/session_retrieve_participants_params.py +87 -0
- telnyx/types/rooms/session_retrieve_response.py +12 -0
- telnyx/types/rooms/sessions/__init__.py +11 -0
- telnyx/types/rooms/sessions/action_end_response.py +15 -0
- telnyx/types/rooms/sessions/action_kick_params.py +21 -0
- telnyx/types/rooms/sessions/action_kick_response.py +15 -0
- telnyx/types/rooms/sessions/action_mute_params.py +21 -0
- telnyx/types/rooms/sessions/action_mute_response.py +15 -0
- telnyx/types/rooms/sessions/action_unmute_params.py +21 -0
- telnyx/types/rooms/sessions/action_unmute_response.py +15 -0
- telnyx/types/s3_configuration_data.py +25 -0
- telnyx/types/s3_configuration_data_param.py +24 -0
- telnyx/types/service_plan.py +7 -0
- telnyx/types/seti_retrieve_black_box_test_results_params.py +19 -0
- telnyx/types/seti_retrieve_black_box_test_results_response.py +30 -0
- telnyx/types/settings_param.py +26 -0
- telnyx/types/shared/__init__.py +23 -0
- telnyx/types/shared/api_error.py +27 -0
- telnyx/types/shared/available_phone_numbers_metadata.py +13 -0
- telnyx/types/shared/connections_pagination_meta.py +17 -0
- telnyx/types/shared/doc_reqs_requirement_type.py +62 -0
- telnyx/types/shared/hosted_number.py +35 -0
- telnyx/types/shared/inbound_message_payload.py +213 -0
- telnyx/types/shared/messaging_feature_set.py +23 -0
- telnyx/types/shared/messaging_hosted_number_order.py +42 -0
- telnyx/types/shared/messaging_pagination_meta.py +15 -0
- telnyx/types/shared/metadata.py +24 -0
- telnyx/types/shared/number_health_metrics.py +23 -0
- telnyx/types/shared/phone_number_with_messaging_settings.py +67 -0
- telnyx/types/shared/porting_order_status.py +30 -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 +34 -0
- telnyx/types/shared/sim_card_status.py +40 -0
- telnyx/types/shared/simple_sim_card.py +104 -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 +36 -0
- telnyx/types/short_code_retrieve_response.py +12 -0
- telnyx/types/short_code_update_params.py +16 -0
- telnyx/types/short_code_update_response.py +12 -0
- telnyx/types/sim_card.py +203 -0
- telnyx/types/sim_card_data_usage_notification.py +37 -0
- telnyx/types/sim_card_data_usage_notification_create_params.py +23 -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_retrieve_response.py +13 -0
- telnyx/types/sim_card_data_usage_notification_update_params.py +23 -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 +51 -0
- telnyx/types/sim_card_group_create_params.py +23 -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 +54 -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 +23 -0
- telnyx/types/sim_card_group_update_response.py +12 -0
- telnyx/types/sim_card_groups/__init__.py +23 -0
- telnyx/types/sim_card_groups/action_list_params.py +34 -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 +51 -0
- telnyx/types/sim_card_list_params.py +61 -0
- telnyx/types/sim_card_list_wireless_connectivity_logs_params.py +17 -0
- telnyx/types/sim_card_list_wireless_connectivity_logs_response.py +103 -0
- telnyx/types/sim_card_order.py +95 -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 +82 -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 +39 -0
- telnyx/types/sim_card_update_response.py +12 -0
- telnyx/types/sim_cards/__init__.py +21 -0
- telnyx/types/sim_cards/action_bulk_set_public_ips_params.py +13 -0
- telnyx/types/sim_cards/action_bulk_set_public_ips_response.py +46 -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 +43 -0
- telnyx/types/sim_cards/action_remove_public_ip_response.py +16 -0
- telnyx/types/sim_cards/action_retrieve_response.py +16 -0
- telnyx/types/sim_cards/action_set_public_ip_params.py +15 -0
- telnyx/types/sim_cards/action_set_public_ip_response.py +16 -0
- telnyx/types/sim_cards/action_set_standby_response.py +16 -0
- telnyx/types/sim_cards/action_validate_registration_codes_params.py +13 -0
- telnyx/types/sim_cards/action_validate_registration_codes_response.py +24 -0
- telnyx/types/sim_cards/sim_card_action.py +58 -0
- telnyx/types/sip_header.py +15 -0
- telnyx/types/sip_header_param.py +15 -0
- telnyx/types/siprec_connector_create_params.py +23 -0
- telnyx/types/siprec_connector_create_response.py +33 -0
- telnyx/types/siprec_connector_retrieve_response.py +33 -0
- telnyx/types/siprec_connector_update_params.py +23 -0
- telnyx/types/siprec_connector_update_response.py +33 -0
- telnyx/types/sound_modifications_param.py +26 -0
- telnyx/types/speech_to_text_transcribe_params.py +38 -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 +32 -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_sampling_rate.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 +38 -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 +25 -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 +55 -0
- telnyx/types/sub_number_orders_report_download_response.py +7 -0
- telnyx/types/sub_number_orders_report_retrieve_response.py +55 -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 +44 -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/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 +37 -0
- telnyx/types/texml/accounts/call_calls_params.py +204 -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 +266 -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/queue_create_params.py +17 -0
- telnyx/types/texml/accounts/queue_create_response.py +36 -0
- telnyx/types/texml/accounts/queue_list_params.py +37 -0
- telnyx/types/texml/accounts/queue_list_response.py +36 -0
- telnyx/types/texml/accounts/queue_retrieve_response.py +36 -0
- telnyx/types/texml/accounts/queue_update_params.py +16 -0
- telnyx/types/texml/accounts/queue_update_response.py +36 -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 +13 -0
- telnyx/types/texml_application.py +128 -0
- telnyx/types/texml_application_create_params.py +117 -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 +56 -0
- telnyx/types/texml_application_retrieve_response.py +12 -0
- telnyx/types/texml_application_update_params.py +117 -0
- telnyx/types/texml_application_update_response.py +12 -0
- telnyx/types/texml_secrets_params.py +18 -0
- telnyx/types/texml_secrets_response.py +18 -0
- telnyx/types/text_to_speech_generate_speech_params.py +26 -0
- telnyx/types/text_to_speech_list_voices_params.py +15 -0
- telnyx/types/text_to_speech_list_voices_response.py +29 -0
- telnyx/types/traffic_type.py +7 -0
- telnyx/types/transcription_webhook_event.py +72 -0
- telnyx/types/transcription_webhook_event1.py +72 -0
- telnyx/types/transport_protocol.py +7 -0
- telnyx/types/unsafe_unwrap_webhook_event.py +130 -0
- telnyx/types/unwrap_webhook_event.py +130 -0
- telnyx/types/update_regulatory_requirement_param.py +19 -0
- telnyx/types/url_shortener_settings.py +40 -0
- telnyx/types/url_shortener_settings_param.py +40 -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 +49 -0
- telnyx/types/usage_report_list_params.py +64 -0
- telnyx/types/usage_report_list_response.py +8 -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 +93 -0
- telnyx/types/user_address_retrieve_response.py +12 -0
- telnyx/types/user_tag_list_params.py +25 -0
- telnyx/types/user_tag_list_response.py +31 -0
- telnyx/types/verification.py +42 -0
- telnyx/types/verification_retrieve_response.py +10 -0
- telnyx/types/verification_trigger_call_params.py +29 -0
- telnyx/types/verification_trigger_flashcall_params.py +18 -0
- telnyx/types/verification_trigger_sms_params.py +22 -0
- telnyx/types/verifications/__init__.py +7 -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 +15 -0
- telnyx/types/verifications/verify_meta.py +15 -0
- telnyx/types/verified_number.py +17 -0
- telnyx/types/verified_number_create_params.py +23 -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 +15 -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 +145 -0
- telnyx/types/verify_profile_create_params.py +116 -0
- telnyx/types/verify_profile_create_template_params.py +12 -0
- telnyx/types/verify_profile_data.py +12 -0
- telnyx/types/verify_profile_list_params.py +25 -0
- telnyx/types/verify_profile_message_template_response.py +13 -0
- telnyx/types/verify_profile_retrieve_templates_response.py +14 -0
- telnyx/types/verify_profile_update_params.py +116 -0
- telnyx/types/verify_profile_update_template_params.py +12 -0
- telnyx/types/video_region.py +53 -0
- telnyx/types/video_region_param.py +55 -0
- telnyx/types/virtual_cross_connect_create_params.py +95 -0
- telnyx/types/virtual_cross_connect_create_response.py +126 -0
- telnyx/types/virtual_cross_connect_delete_response.py +126 -0
- telnyx/types/virtual_cross_connect_list_params.py +31 -0
- telnyx/types/virtual_cross_connect_list_response.py +122 -0
- telnyx/types/virtual_cross_connect_retrieve_response.py +126 -0
- telnyx/types/virtual_cross_connect_update_params.py +41 -0
- telnyx/types/virtual_cross_connect_update_response.py +126 -0
- telnyx/types/virtual_cross_connects_coverage_list_params.py +81 -0
- telnyx/types/virtual_cross_connects_coverage_list_response.py +51 -0
- telnyx/types/webhook_api_version.py +7 -0
- telnyx/types/webhook_delivery_list_params.py +102 -0
- telnyx/types/webhook_delivery_list_response.py +114 -0
- telnyx/types/webhook_delivery_retrieve_response.py +120 -0
- telnyx/types/well_known_retrieve_authorization_server_metadata_response.py +42 -0
- telnyx/types/well_known_retrieve_protected_resource_metadata_response.py +15 -0
- telnyx/types/whatsapp_media.py +21 -0
- telnyx/types/whatsapp_media_param.py +21 -0
- telnyx/types/wireguard_interface_create_params.py +21 -0
- telnyx/types/wireguard_interface_create_response.py +40 -0
- telnyx/types/wireguard_interface_delete_response.py +40 -0
- telnyx/types/wireguard_interface_list_params.py +31 -0
- telnyx/types/wireguard_interface_list_response.py +36 -0
- telnyx/types/wireguard_interface_retrieve_response.py +40 -0
- telnyx/types/wireguard_peer_create_params.py +18 -0
- telnyx/types/wireguard_peer_create_response.py +30 -0
- telnyx/types/wireguard_peer_delete_response.py +30 -0
- telnyx/types/wireguard_peer_list_params.py +31 -0
- telnyx/types/wireguard_peer_list_response.py +25 -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 +30 -0
- telnyx/types/wireguard_peer_update_params.py +15 -0
- telnyx/types/wireguard_peer_update_response.py +30 -0
- telnyx/types/wireless/__init__.py +17 -0
- telnyx/types/wireless/detail_records_report_create_params.py +15 -0
- telnyx/types/wireless/detail_records_report_create_response.py +12 -0
- telnyx/types/wireless/detail_records_report_delete_response.py +12 -0
- telnyx/types/wireless/detail_records_report_list_params.py +17 -0
- telnyx/types/wireless/detail_records_report_list_response.py +12 -0
- telnyx/types/wireless/detail_records_report_retrieve_response.py +12 -0
- telnyx/types/wireless/wdr_report.py +33 -0
- telnyx/types/wireless_blocklist.py +30 -0
- telnyx/types/wireless_blocklist_create_params.py +20 -0
- telnyx/types/wireless_blocklist_create_response.py +12 -0
- telnyx/types/wireless_blocklist_delete_response.py +12 -0
- telnyx/types/wireless_blocklist_list_params.py +26 -0
- telnyx/types/wireless_blocklist_retrieve_response.py +12 -0
- telnyx/types/wireless_blocklist_update_params.py +20 -0
- telnyx/types/wireless_blocklist_update_response.py +12 -0
- telnyx/types/wireless_blocklist_value_list_params.py +15 -0
- telnyx/types/wireless_blocklist_value_list_response.py +38 -0
- telnyx/types/wireless_retrieve_regions_params.py +15 -0
- telnyx/types/wireless_retrieve_regions_response.py +26 -0
- telnyx-4.5.0.dist-info/METADATA +561 -0
- telnyx-4.5.0.dist-info/RECORD +2118 -0
- telnyx-4.5.0.dist-info/WHEEL +4 -0
- telnyx-4.5.0.dist-info/licenses/LICENSE +7 -0
|
@@ -0,0 +1,2118 @@
|
|
|
1
|
+
telnyx/__init__.py,sha256=8Oaoo-GIP7ZrRHTmGXjXOzx75x18QdsuDdeLrueG4C4,2688
|
|
2
|
+
telnyx/_base_client.py,sha256=eW1PnIIT5g978eoiee_gQCRshF7SLMgG4_GYQSK-GeE,73409
|
|
3
|
+
telnyx/_client.py,sha256=NeJe-76DxBi8SzSmu8bcAcBl8l7N6ZibtFCTkI9tUpc,283941
|
|
4
|
+
telnyx/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
|
+
telnyx/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
|
+
telnyx/_exceptions.py,sha256=SbhO_R6Bai0lSqs0McbW7wl1iAyoBX1uYNjvX77hwKk,3274
|
|
7
|
+
telnyx/_files.py,sha256=sDy00jrSguKZf-dx9WnJzRyQplNz_b-_zMIVL31CjIo,3619
|
|
8
|
+
telnyx/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
|
|
9
|
+
telnyx/_oauth2.py,sha256=s0souIAKq8caGatoNEXISgB7g8IVLOBMxN6HuUYNlZk,3900
|
|
10
|
+
telnyx/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
11
|
+
telnyx/_resource.py,sha256=B4Qg-uO2a34FQHHZskn89eVURqMuSvv1TdeBJH1z1rU,1100
|
|
12
|
+
telnyx/_response.py,sha256=4X24wr7uQn2hnM_b0xqQ92zSgxRFFfWG2lTg93-KzNo,28788
|
|
13
|
+
telnyx/_streaming.py,sha256=sa0RuC-YhnDk-_ApZvUrTMZic1aL_OLeA78rWExoGw8,10221
|
|
14
|
+
telnyx/_types.py,sha256=9AaNdj2_nqFEKqx_mkfS-uGbZOHOqC38XG34dzyPXTk,7594
|
|
15
|
+
telnyx/_version.py,sha256=cRf7wFc7ZU1c22VdyvJbjMQ8TL_lvHV1sI5YHLSdfD8,158
|
|
16
|
+
telnyx/pagination.py,sha256=kOezrrafLhmUQiaEzxzW6ahw56NhkNnJmoKj9E1VCVE,14995
|
|
17
|
+
telnyx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
telnyx/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
19
|
+
telnyx/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
20
|
+
telnyx/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
|
|
21
|
+
telnyx/_utils/_logs.py,sha256=0TK41m0v92Gj1abmzI7B2Ogm7Mcu_J9hiz8mkrF5cIQ,774
|
|
22
|
+
telnyx/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
23
|
+
telnyx/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
24
|
+
telnyx/_utils/_resources_proxy.py,sha256=4CCGhESs3yjs_0is3o1rPOg0T_k20lTYZpIFGAUZQCw,589
|
|
25
|
+
telnyx/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
26
|
+
telnyx/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
|
|
27
|
+
telnyx/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
28
|
+
telnyx/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
29
|
+
telnyx/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
|
|
30
|
+
telnyx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
31
|
+
telnyx/resources/__init__.py,sha256=F3a1iekZWvBKVdmDyzSB2VUEHpGUifQ20Nxo8TbBigo,85263
|
|
32
|
+
telnyx/resources/access_ip_address.py,sha256=k1fB5LXwKcBPaYrmpEP6IsofYsfzhz-OE9Tlw2cvpaw,17663
|
|
33
|
+
telnyx/resources/access_ip_ranges.py,sha256=Y1n6zlV2uZsbEFIjjJA-B-1YSjVn3xNo6ELDYkta3iQ,14300
|
|
34
|
+
telnyx/resources/advanced_orders.py,sha256=EOjP9VAgfe5bWVyzUpjMkmRoaXsOVOSOn1tQRQQ4q80,19457
|
|
35
|
+
telnyx/resources/audit_events.py,sha256=qa8ASWzlGFLO-k4H4wlUQF7SJJHzxSehC66j_B3x9Vc,8037
|
|
36
|
+
telnyx/resources/authentication_providers.py,sha256=eSa3Dix5wLFZpDXrvENMjZBPCXPTjqNKKC89PBRqgkQ,26916
|
|
37
|
+
telnyx/resources/available_phone_number_blocks.py,sha256=ijJZLzMq7rtiulhd2bNXvMwvdfyAFrIUZLQ1LsqJHn4,7599
|
|
38
|
+
telnyx/resources/available_phone_numbers.py,sha256=133qCkZQ_GizFnj97IRR-WfuHko1tOL_XARXaThtNIY,7782
|
|
39
|
+
telnyx/resources/balance.py,sha256=bwStGzjGLsKrgPzsQqucyp3bL75dcVoyvQSfS6k5K4I,4969
|
|
40
|
+
telnyx/resources/billing_groups.py,sha256=32sfd0LGhbs7u3hmQ6an9a98RfSbmAQU1qS4vKjekEY,19629
|
|
41
|
+
telnyx/resources/bulk_sim_card_actions.py,sha256=hgvdc75p630OjswcJsP9rR_yyq1pvO1sAC6csRPAHQI,11622
|
|
42
|
+
telnyx/resources/call_control_applications.py,sha256=E0DAFEKvhCTZSg5k67Y7KMK5nAzL_CjiWlzfmUt_yoc,38843
|
|
43
|
+
telnyx/resources/call_events.py,sha256=o8tg1e2Ldnx5EOiTtn3KhdCytxHmIa3V5b-HcPLCLEs,8474
|
|
44
|
+
telnyx/resources/channel_zones.py,sha256=hWs0Yz2YnDfA4CoAEHwU6ewHGhXKChN_Hr0jclnay7w,11754
|
|
45
|
+
telnyx/resources/charges_breakdown.py,sha256=SOb3JJVHxIq3hiAhVwjZbKZ8Zi5BngHLfQNM7kSRCMY,8414
|
|
46
|
+
telnyx/resources/charges_summary.py,sha256=QFdhiLvRNPsbvM7TQcUC2XZ1DR8XlF1MPp2rrf2HBTk,7782
|
|
47
|
+
telnyx/resources/comments.py,sha256=-e8ZUBleqh2GtuPruvfbj43ezVxkcKCfQ7lfHaNS4pU,16165
|
|
48
|
+
telnyx/resources/connections.py,sha256=0a6kKqmE8oGGiko1pPPpqeOpRwT2E6R9_uyOMRlYB2A,17501
|
|
49
|
+
telnyx/resources/country_coverage.py,sha256=t2Z5dLWi9ZyR6H5zQ1HQKs4Q3j-bdbZJrjBH-TjMPTg,8688
|
|
50
|
+
telnyx/resources/custom_storage_credentials.py,sha256=VqxghisZjF2RCObzmVAWOJUzw2dJ7aOnsDALzTEeRRk,18535
|
|
51
|
+
telnyx/resources/customer_service_records.py,sha256=-kA9sPb_kU4lfHPGfauOzBPeXeRPc_CfdU6IqsGNk5Q,20484
|
|
52
|
+
telnyx/resources/detail_records.py,sha256=oeTR8D2JL4HC55Xss1leAMFzqq1JZYJHQfNQQEfddOQ,8300
|
|
53
|
+
telnyx/resources/dialogflow_connections.py,sha256=D_mWEPQLwMnHbt288JauZW3IFFj4GBmFGCjh0WLYkGM,21486
|
|
54
|
+
telnyx/resources/document_links.py,sha256=ptMHVRWd1PLbbIigH7NwKJr6ev3nrDmtPVlD-txcUBY,7674
|
|
55
|
+
telnyx/resources/documents.py,sha256=EYl5zktGfHoMIhFSEY7cAkVWPQy6GOc7e3uQMg-xE08,32248
|
|
56
|
+
telnyx/resources/dynamic_emergency_addresses.py,sha256=C9BX7onFWVhkCnE_90vQ8ZtZjDb-P2Gd0AfbvDa67Uk,20111
|
|
57
|
+
telnyx/resources/dynamic_emergency_endpoints.py,sha256=jSmGGdytdtxKUqsBvcKeq0gde5jt3SKe61BoMlKFLas,18843
|
|
58
|
+
telnyx/resources/fax_applications.py,sha256=aDrd7TazWzwRZ2NP4zcxMJBJHdPnfK3bbiraOy4ffQE,31844
|
|
59
|
+
telnyx/resources/fqdn_connections.py,sha256=OZK6Hz7puAGaCQ1ohrdaIE2T0lk340ZdI2-5y3SikVM,46858
|
|
60
|
+
telnyx/resources/fqdns.py,sha256=5x7kuGCT75mhrkJu5J3tR_GqkXO33CoHeOrkxMHvk44,22668
|
|
61
|
+
telnyx/resources/global_ip_allowed_ports.py,sha256=RsEwITcIoawjcblxjOGGjllsci3CBxGgLUatARG3S-0,5544
|
|
62
|
+
telnyx/resources/global_ip_assignment_health.py,sha256=Gx0qunKqMcECfb2pUv7Dz50202Tn7jZjoY7I5newhQA,7580
|
|
63
|
+
telnyx/resources/global_ip_assignments.py,sha256=5tkmF7N3DAJeNh1_9pduP5CCoy80ewtX3jcFwZADU9g,19819
|
|
64
|
+
telnyx/resources/global_ip_assignments_usage.py,sha256=iU41UKONKHN-O6XvH_-48LfRXI5cVdCCSgrKoOXhD8A,7566
|
|
65
|
+
telnyx/resources/global_ip_health_check_types.py,sha256=GZUZ7gTOusYv8hASJEzdSF4PmeSzNxLriO5_ZTQoB_8,5751
|
|
66
|
+
telnyx/resources/global_ip_health_checks.py,sha256=BXYnTqNdZRo2BMj763kNjVWK67yyqxxs_tBl9mm3h6w,18087
|
|
67
|
+
telnyx/resources/global_ip_latency.py,sha256=x649cwVtRJTG3xrzMMaxJewjxFy0zavaMWqunC8D7PY,6949
|
|
68
|
+
telnyx/resources/global_ip_protocols.py,sha256=ddQzXj1wsTGsG8lEWSYS2UQN_fL1y10dhJ1Udm8_fQE,5385
|
|
69
|
+
telnyx/resources/global_ip_usage.py,sha256=zpw6M5JpOcovGtEZL3Uhg7Jh6TNGxROncnVxwsF7tGY,6805
|
|
70
|
+
telnyx/resources/global_ips.py,sha256=OdzWakSVXKjAdUU9aNcdLAkHEMWenytbO5plh4Oo0bI,16742
|
|
71
|
+
telnyx/resources/inbound_channels.py,sha256=NnyTJkXx7gCzUzlZ_v4BQtL6Q5yUw60ImsTcKVPkUDo,9817
|
|
72
|
+
telnyx/resources/inexplicit_number_orders.py,sha256=1NVtwz1lPkEz7adKiH3NZhreXu7VP_zPH2b4yl83gNA,16742
|
|
73
|
+
telnyx/resources/integration_secrets.py,sha256=LVYMieO5dQWl1wHb0qJSwGGLdkwjTM99YrHKUtQPcvY,15761
|
|
74
|
+
telnyx/resources/inventory_coverage.py,sha256=ucRQVQ3O5-9T91aca7nImiTrET-0vdDMsReWRNVLuNE,7505
|
|
75
|
+
telnyx/resources/invoices.py,sha256=or_Pz-ENJdANnQsj5X0uAtRlzmq6KKlsJVe5e9Mh0EE,10735
|
|
76
|
+
telnyx/resources/ip_connections.py,sha256=rJog3sjpkFwwyu_Zy3TvG6RinNSA2-WpnxV35ixmqLc,45583
|
|
77
|
+
telnyx/resources/ips.py,sha256=Ot80bM1nYs9Xs-1TWmrPd2OmakFk5d5164oWUmWJYIc,20789
|
|
78
|
+
telnyx/resources/ledger_billing_group_reports.py,sha256=UVvbGQ9DmhKbCNcDYo7ujIGCAIKoaIlHEYO5caW4x-8,10675
|
|
79
|
+
telnyx/resources/list.py,sha256=ZGu-umIZbbuatV5jRdjEqhJESYq7U4e--IdXVtIwrGc,8302
|
|
80
|
+
telnyx/resources/media.py,sha256=-mC535aCFJ00ZHr_S6rcmnHI8YMsELEDMZv6uAPAKpE,26494
|
|
81
|
+
telnyx/resources/messaging_hosted_numbers.py,sha256=6AoXdK1rvBbNz0juhpazF6Y4PbaB86JL7dLXJ0AgoJU,6529
|
|
82
|
+
telnyx/resources/messaging_numbers_bulk_updates.py,sha256=BuY1JmZBGS3liqYIrrgOyeuXHLrUMhh-4PfnTGAOE8M,11555
|
|
83
|
+
telnyx/resources/messaging_optouts.py,sha256=InVZFT0ynIok0OxivPdxj4OvW6ppvloaitAWCiJHovE,8698
|
|
84
|
+
telnyx/resources/messaging_url_domains.py,sha256=0lx-q4HOWtE_SEa4mkftGENcWAzKaAGx1REA464auQQ,7366
|
|
85
|
+
telnyx/resources/mobile_network_operators.py,sha256=1LV7r4Vkwb3DiJIku5sWI_dLXOdvMIj3HiT_paT6kkU,9194
|
|
86
|
+
telnyx/resources/mobile_push_credentials.py,sha256=i459r8-d0u4_3Vhg-KOJqXsR1NuX9oUgN1k1sRqzNj8,17898
|
|
87
|
+
telnyx/resources/mobile_voice_connections.py,sha256=48hmErjJC4aXS0lmgG1kDiKsoyHMzVaUi2vTTw7FbLk,25883
|
|
88
|
+
telnyx/resources/network_coverage.py,sha256=iPLZ-eEXSFRkntRZ7FDYOD-ELdBNVM4JHkZhiIPz5Z8,8386
|
|
89
|
+
telnyx/resources/notification_channels.py,sha256=PWSB-Uy5M_kil3rsrOsQSxhqevzqbPjWMqXESiZplas,23977
|
|
90
|
+
telnyx/resources/notification_event_conditions.py,sha256=5GI4ZTOgv5jImcKCtEdlt0f6OJdi0BFJhB4e_Kd2HYE,8770
|
|
91
|
+
telnyx/resources/notification_events.py,sha256=jWyr0DNduURT7NNGrShO8lyEg-puDcevYeP-Rpk1QyA,7328
|
|
92
|
+
telnyx/resources/notification_profiles.py,sha256=I4CgansePD8lC37wYfVLnuInpH8sNjqzXXbuMz4KwCs,20832
|
|
93
|
+
telnyx/resources/notification_settings.py,sha256=mZh7Rhn_oBiaKKbJvVss6bygm_1KwqK9HmPEW94If0w,19423
|
|
94
|
+
telnyx/resources/number_block_orders.py,sha256=hSYJu8-ib5BbJZ-tJNX1CpT1NWS-JnBLU8psBQnTyVo,16091
|
|
95
|
+
telnyx/resources/number_lookup.py,sha256=_rfXpdsRgZUr65KM3SXoVFXyTeA3p2yH9DfxFCPs8ic,7041
|
|
96
|
+
telnyx/resources/number_order_phone_numbers.py,sha256=7FxHZqE1yz02zQYPe7w0n9NyDIbRLx2S4NtVqz0uAEw,19830
|
|
97
|
+
telnyx/resources/number_orders.py,sha256=Y2i2QC2V9F2F8olmrf2MBS3gdo2USkazQb-_t1bNTck,20184
|
|
98
|
+
telnyx/resources/numbers_features.py,sha256=1B0kqD2voGe1BlAuKHW0nakQIW7jkhdlZZufgsGpBL4,6496
|
|
99
|
+
telnyx/resources/oauth.py,sha256=DzCOW41yY8qybq6dMXtKnnp23bMwBBPf2K04pX10W68,32545
|
|
100
|
+
telnyx/resources/oauth_clients.py,sha256=TsyvYhRMHyiCKLunB9DY7Wgn2v1z3GPX_hJcM0kxoUs,27515
|
|
101
|
+
telnyx/resources/oauth_grants.py,sha256=nXKJrAglgudhdi42XNmi34vdLgvBISXgAgR5g-tTsW4,13136
|
|
102
|
+
telnyx/resources/ota_updates.py,sha256=GT4ztuOmI19sh5iymt1WH3EVegljw0QMYga7kelPu1A,10511
|
|
103
|
+
telnyx/resources/outbound_voice_profiles.py,sha256=XiaVv6bJYvGEcflhsEYslptTph1hxcztfHiIoT2WZi4,36034
|
|
104
|
+
telnyx/resources/phone_numbers_regulatory_requirements.py,sha256=YVTS_W0SGEVGyBTjEXHx-j_1nPYeNRPptdqIjlatTgY,8042
|
|
105
|
+
telnyx/resources/portability_checks.py,sha256=SNMtbheXGQanlQAZyDkYHsfmz0C66CHrMchS5hbnl80,6793
|
|
106
|
+
telnyx/resources/porting_phone_numbers.py,sha256=Dqdhovs_KCMdOIV4iX7DLJ8sHhPGO2nyliOLKu6noRo,7906
|
|
107
|
+
telnyx/resources/private_wireless_gateways.py,sha256=JhpZbpq2YBx8TW1_XiQii276Pb9cNZsAzFkEDbzK_30,20843
|
|
108
|
+
telnyx/resources/public_internet_gateways.py,sha256=jTylHgrNaPK3OKvPBtTi1Hpz4EnWxzm0BJ3rLmMyxPE,18554
|
|
109
|
+
telnyx/resources/recording_transcriptions.py,sha256=YF16HMQwLB9O3Pjd69t-6KD6rH87I-EPBDgqPi3Ucps,12724
|
|
110
|
+
telnyx/resources/regions.py,sha256=Wan4QiVvyq9ecWyr2O8-Dl022zYTw6S0U3zHmAPHf48,4963
|
|
111
|
+
telnyx/resources/regulatory_requirements.py,sha256=Ha3huc4u1Napee_4LLJ_04v9pZ-V7RiY8zsKr_2SKrQ,7493
|
|
112
|
+
telnyx/resources/requirement_groups.py,sha256=1mctlV_YF0BVfYJMiWxQBeNqdw4WdDwv0LqjoMzkKKE,24714
|
|
113
|
+
telnyx/resources/requirement_types.py,sha256=vpVwQ956ttN4VjUsLhZoC7pb9q7KO_aUF80q_fDEaF8,10797
|
|
114
|
+
telnyx/resources/requirements.py,sha256=r58-LRKGtPanzeehyApNRmAZKZHOfbnxDPWrEOcH3rI,11783
|
|
115
|
+
telnyx/resources/room_compositions.py,sha256=-465_S56JkT58ALT6ff6qmdji99wXo0E9d85qOiuimU,21088
|
|
116
|
+
telnyx/resources/room_participants.py,sha256=_2lbd3oOXvQA1Kf1ALmbekiiefV4cJLEnFRULfMW1k0,11556
|
|
117
|
+
telnyx/resources/room_recordings.py,sha256=KidAHR9JQ6wDeyHoMHbtg-6DxQ3Dz65qz45069tohvc,19555
|
|
118
|
+
telnyx/resources/seti.py,sha256=XnS9rB8EVKjJ2sBVB7LYoMym7YFWhEn3jl2J1tc8vlg,6905
|
|
119
|
+
telnyx/resources/short_codes.py,sha256=cMRJc6iTFoKGbtCSJVvBYAhZrX63nRAhG9uHsgbYZjE,14564
|
|
120
|
+
telnyx/resources/sim_card_data_usage_notifications.py,sha256=NR5dlkpJ_8ZKosrMlskIQHi9MIsn8tWTDXWIAzFea8Y,24296
|
|
121
|
+
telnyx/resources/sim_card_order_preview.py,sha256=wxUQ8qPSDUhqLWrbj7n3pE5_d_ZXyt4aTF_ToMaQpBE,7302
|
|
122
|
+
telnyx/resources/sim_card_orders.py,sha256=0b2l3iNeMextrnWdgEGMcU6--xoeQ5alvNHybvHzkYc,14949
|
|
123
|
+
telnyx/resources/siprec_connectors.py,sha256=m5bvbOtlS_DtIrLaZXCOPMT6_cCxI-juslG3vl9ka1Q,18573
|
|
124
|
+
telnyx/resources/speech_to_text.py,sha256=9x8bb-tWhUaKxqFmb7F0tZVHf4vpLie-j5ylSNuX_1o,9173
|
|
125
|
+
telnyx/resources/sub_number_orders.py,sha256=ONRowPczElMqNYkXynDTy5tZK2Wud44h66oWaVdrKvM,22839
|
|
126
|
+
telnyx/resources/sub_number_orders_report.py,sha256=ZzYP21kwHJYmgrlgnAqfXgvFMUSdJ8H6tpO7yI6XO44,15726
|
|
127
|
+
telnyx/resources/telephony_credentials.py,sha256=8h6sAU8D6PdS60C1bB3iJGQwOwOVklt1L_4DSeVy5V0,26492
|
|
128
|
+
telnyx/resources/texml_applications.py,sha256=MU5yMvB6zfUd-jVE8WcPzLC6JWbVr8W3DSjgcu4La4I,35539
|
|
129
|
+
telnyx/resources/text_to_speech.py,sha256=Y_pQl37dp07mkst_4qknNdIxYQVvABw6VYBtQZVQvcE,12476
|
|
130
|
+
telnyx/resources/usage_reports.py,sha256=rEt3Xtj8IvepLyHuoWXSgf_qsF_3eznac51xaCObvUg,15768
|
|
131
|
+
telnyx/resources/user_addresses.py,sha256=duSGBw__f-68OsMgPyv5lUPKl6ONibDRuIV1Q-gHHc0,22880
|
|
132
|
+
telnyx/resources/user_tags.py,sha256=pCY1ykwgtc78yqj28Q04bGarABk_eDHe4lVZacxB1SM,6365
|
|
133
|
+
telnyx/resources/verify_profiles.py,sha256=DUV9uoDHpS_bvMYbBtaTvgGEjw8Szl3hZrBFcA96_N0,32267
|
|
134
|
+
telnyx/resources/virtual_cross_connects.py,sha256=LyJiINvt_0ulYT22iLuL7cU169lT-g6lqVkRJ06Glzo,35111
|
|
135
|
+
telnyx/resources/virtual_cross_connects_coverage.py,sha256=2cFfMv8YwUw3ag8fpStkcPtVpBWnKFQgN0AIdTcWuok,9574
|
|
136
|
+
telnyx/resources/webhook_deliveries.py,sha256=K3YdYLBmoJ706J0ECMpiRn77fHe54_xNKR5jrZU7VvY,11405
|
|
137
|
+
telnyx/resources/webhooks.py,sha256=AfrJvD5K4EoJTbK3TBdBwYQXB_nvjTMD3CjPhEr0tU0,6106
|
|
138
|
+
telnyx/resources/well_known.py,sha256=3Nm9gDqj9nDawaMoSj-yy3z_3dhDdBjK0NqOR0NJg4I,8881
|
|
139
|
+
telnyx/resources/wireguard_interfaces.py,sha256=qRIDj0u8SxVEu7no5b92TLjVEtEzC21G0mc0usEuUc4,18699
|
|
140
|
+
telnyx/resources/wireguard_peers.py,sha256=S6MEKhK24r6Heb7H1BQtUgNlDKKe50T4KbnkpKySZwQ,24867
|
|
141
|
+
telnyx/resources/wireless_blocklist_values.py,sha256=uT-_XtdN7WLWGnB6woQp7OWqVNsS7S_KjQp2Yy5J3E0,7287
|
|
142
|
+
telnyx/resources/wireless_blocklists.py,sha256=KmhlFIwBE2MsF8wmmtO2Kn9pBotAAYdXtCtgPoF4x40,22982
|
|
143
|
+
telnyx/resources/actions/__init__.py,sha256=VN20oGg2PPDqNzueSMHE9Naa3YRB2FmdkXAAN_4bFIg,1517
|
|
144
|
+
telnyx/resources/actions/actions.py,sha256=vwopKPMSsjSTDKeSP0xEjAvI8pinCNbmKcUPKOBRqOQ,4828
|
|
145
|
+
telnyx/resources/actions/purchase.py,sha256=iaRrU3gGNod4JOsRIckHN8YrdvcSIyKtuZngzU5WFLM,9215
|
|
146
|
+
telnyx/resources/actions/register.py,sha256=CO2XVKneKsPPRH_W7d0BRHyg8XyMybgG6q2qhX9V3HY,8171
|
|
147
|
+
telnyx/resources/addresses/__init__.py,sha256=WzZO1-fZmX_-MJHYGQWkSL0Y-UdfQAOL2AHNC5a5Vdc,1054
|
|
148
|
+
telnyx/resources/addresses/actions.py,sha256=IVwl_nfGZqzDgesx9yLtyVrv7udRQJbGNw5P2SpVLDY,12500
|
|
149
|
+
telnyx/resources/addresses/addresses.py,sha256=4tX2nUnq4ZvexpR6okPSgHXtAvZ_wnZpklb3fcy2fvo,26539
|
|
150
|
+
telnyx/resources/ai/__init__.py,sha256=A44wVKNTZmyogbq972uYwsj-R2SPpqsys4g8FuVMHL0,4916
|
|
151
|
+
telnyx/resources/ai/ai.py,sha256=Wu0jxhfN4GzMrGs8eAkZLxCJVZEm25NOWnSXaOzNbX4,20429
|
|
152
|
+
telnyx/resources/ai/audio.py,sha256=4s-xiVp_wFBLDOfN5ZAxsnQbBdKgRhqjZHhfmN9YkCo,10485
|
|
153
|
+
telnyx/resources/ai/chat.py,sha256=mojBG4jdqTG37uCtcBfRpUWhGAaF6t0tduKns8e_ftk,18055
|
|
154
|
+
telnyx/resources/ai/clusters.py,sha256=bBOAY0WHbnw_xS1uLENA1L9CJNkUe7TQEUL08z0-IYA,24251
|
|
155
|
+
telnyx/resources/ai/mcp_servers.py,sha256=l08yREmyJfXwnrF49lOfB0XvdR5szrD1HG5hJdyqQ2E,22131
|
|
156
|
+
telnyx/resources/ai/assistants/__init__.py,sha256=JswsU3VzDvDn-4-0IVH0BGY9ji3RY_pYl-Aib09q0ks,3064
|
|
157
|
+
telnyx/resources/ai/assistants/assistants.py,sha256=6QB7y1itgwbszGRqnNphmlORoqTXDxk2cewA2DqBeIA,62569
|
|
158
|
+
telnyx/resources/ai/assistants/canary_deploys.py,sha256=4QRGhoMa50uTmHtRzY_xZ1sGNML6MTezTZenM5nijEc,18193
|
|
159
|
+
telnyx/resources/ai/assistants/scheduled_events.py,sha256=f8m4ooCDucFXoJOh4tNvfQ3dmN5YoO4jumC97xCKFQk,22874
|
|
160
|
+
telnyx/resources/ai/assistants/tools.py,sha256=NigYe9zQwwlB9mL9oryBPUnerc2ur03z3em8Tvo9ByY,7367
|
|
161
|
+
telnyx/resources/ai/assistants/versions.py,sha256=qy-5CChDYh3vEVBii50SThn9ZyY-gr-Q5Q1w1JuLZ_8,29166
|
|
162
|
+
telnyx/resources/ai/assistants/tests/__init__.py,sha256=wOXvaXKdQlfkKkZtgZg11ySS8bzss5842gqBhGKmpVI,1466
|
|
163
|
+
telnyx/resources/ai/assistants/tests/runs.py,sha256=LGoictR7uVbXLgwxNyXGkHPWuLSECHyA1o1RH-Bo7zI,14748
|
|
164
|
+
telnyx/resources/ai/assistants/tests/tests.py,sha256=QGBWZmlRDuKZ9YQiUdLxlay_jVTHDfrq3EoJs3kZFl0,30012
|
|
165
|
+
telnyx/resources/ai/assistants/tests/test_suites/__init__.py,sha256=wTdI7qo8_d2SnlfmHLKyHgFyh7-OfkBfgVXt2FpT57Q,1029
|
|
166
|
+
telnyx/resources/ai/assistants/tests/test_suites/runs.py,sha256=QbsKI4eOVxESFAm1BDkrKvm7kJwuSNHwXxPibAbk2MA,12067
|
|
167
|
+
telnyx/resources/ai/assistants/tests/test_suites/test_suites.py,sha256=Vj56vUukvEd6sV9j78d6N24MaeL4KaQAnqPXj4KjtUs,6341
|
|
168
|
+
telnyx/resources/ai/conversations/__init__.py,sha256=E0T0_VEZjLTBGAbDf9LZGPaAZCns8GrSTW6oXkPA_d4,2137
|
|
169
|
+
telnyx/resources/ai/conversations/conversations.py,sha256=fbEUeTSHUru3bbHbVGYDCi2VuyBLSmQYF9TWWpQCEq0,39015
|
|
170
|
+
telnyx/resources/ai/conversations/insights.py,sha256=oqSnmF0lCBPAZrb3ZcxmsZkKl95PrC1-Jnbx65Zt6Vs,21115
|
|
171
|
+
telnyx/resources/ai/conversations/messages.py,sha256=6ca-yu30N_DWsaaQrVuhglmWI59kN4vqZG5ZAP-mFAQ,6162
|
|
172
|
+
telnyx/resources/ai/conversations/insight_groups/__init__.py,sha256=BECCfROCjeQXyebDMpckN8GnyXA8uwQfzBiZXMVgqjA,1120
|
|
173
|
+
telnyx/resources/ai/conversations/insight_groups/insight_groups.py,sha256=bajok_VBoL4UicGcG9_XIAl0azIhrUJTNwXGZIMULbQ,22649
|
|
174
|
+
telnyx/resources/ai/conversations/insight_groups/insights.py,sha256=AfGhoOTf-En3bPlVw73pgESv70uQI7c-jwPifH4NUpw,10310
|
|
175
|
+
telnyx/resources/ai/embeddings/__init__.py,sha256=PSS3P26wVVgM4MjdKqw87xocgC3_jV1ohpUVQ2xeixM,1067
|
|
176
|
+
telnyx/resources/ai/embeddings/buckets.py,sha256=ww4lcCrYZHdSqyuFF3lBUZ9C6gjxlYoEb36CexGRWUs,11519
|
|
177
|
+
telnyx/resources/ai/embeddings/embeddings.py,sha256=4eN0pLaM_GSGxUzfT_zxiMmuMuDjXoLuvNlUpVgBn7Q,29171
|
|
178
|
+
telnyx/resources/ai/fine_tuning/__init__.py,sha256=kpo9Jeem0KeFxdH3eUY238GNNk_4jqUsUDUi02rTbC4,1029
|
|
179
|
+
telnyx/resources/ai/fine_tuning/fine_tuning.py,sha256=eWYzKDMmaQeFHdfzgSw_DNeoRcx66nOlXonnVuPHHhU,3707
|
|
180
|
+
telnyx/resources/ai/fine_tuning/jobs.py,sha256=Fq1l0y5iqZ2BpQC9x03p6E4CBKivIHKSQUw6Yp_t3Jw,15140
|
|
181
|
+
telnyx/resources/ai/integrations/__init__.py,sha256=AMjb0chMmW2izoEJ5AjMe7n3SfrrYIIVvY6Dxw6vXNQ,1145
|
|
182
|
+
telnyx/resources/ai/integrations/connections.py,sha256=w0HY9YOHKCZIeAfaFuxQuXZocvwozmjWJTWOt1OrCu8,11619
|
|
183
|
+
telnyx/resources/ai/integrations/integrations.py,sha256=przkGAhyJuE64Dw84Dz-7_P25Bx8hjAUTfq2PzkhJyY,9575
|
|
184
|
+
telnyx/resources/bundle_pricing/__init__.py,sha256=Rfq97xRuf9wsjsRAyhqUjYqFNvNmuWtn_HjpEFlUHl0,1715
|
|
185
|
+
telnyx/resources/bundle_pricing/billing_bundles.py,sha256=k-k8WR1Fq8DhIPjfbUynLRr0Y75S3l4f0BxPlA4PiR4,12159
|
|
186
|
+
telnyx/resources/bundle_pricing/bundle_pricing.py,sha256=d3L80tHqOCfcTxVQ7c6DDLfO-5FkG7HMlOfTLVz52-A,5371
|
|
187
|
+
telnyx/resources/bundle_pricing/user_bundles.py,sha256=YidiKnYt9Y_JIsiTecIcLDjtlxJ4mqipRG6isCWzrTA,28854
|
|
188
|
+
telnyx/resources/calls/__init__.py,sha256=zQUq3YFSSLeXKg5bb5oG2Hh7VJsNmm_Z5nm68sU98LY,1002
|
|
189
|
+
telnyx/resources/calls/actions.py,sha256=Hao5vdLQF8OtiYSxS91gscDz-YnxTe4O49pZW9vkSvM,311193
|
|
190
|
+
telnyx/resources/calls/calls.py,sha256=TQ-4DQCvh9afTbNHkMOpHzpSBrNYQlJWeP1ZkIIaZLk,44976
|
|
191
|
+
telnyx/resources/conferences/__init__.py,sha256=omYb2ssvce-OpSlKNGbIkXBaQFaE0PYSMV7Q-g9JRHg,1080
|
|
192
|
+
telnyx/resources/conferences/actions.py,sha256=aDXj7oFzEAOxD3sX702HosEV7jGzpL8EmP-1hdGk5N0,93341
|
|
193
|
+
telnyx/resources/conferences/conferences.py,sha256=Doq9pIahNzTMCIoiLFkG9ZZ4mOJj7ngGax_SRclE7uY,30045
|
|
194
|
+
telnyx/resources/credential_connections/__init__.py,sha256=81iT_jEVYsPVEtnMBmM75XlgI5D6u4-1p1a3Gl2j7D0,1211
|
|
195
|
+
telnyx/resources/credential_connections/actions.py,sha256=kPIMpcPp8y5SpdBZ2bxjuT0QHXenvVds5qdtMqpWi1c,6583
|
|
196
|
+
telnyx/resources/credential_connections/credential_connections.py,sha256=H4tkKl3G0pjoARQ269NauscNCcyg3QRp43o-w7MFf5s,51492
|
|
197
|
+
telnyx/resources/external_connections/__init__.py,sha256=Wh4TgdigAO9vIeadftwG3-pWOm4llfA1cDPdFBsb7mc,3261
|
|
198
|
+
telnyx/resources/external_connections/civic_addresses.py,sha256=lo1MmrRf466MloDpJpeox3BDXofp0vJ3ZvamCMu-lds,10745
|
|
199
|
+
telnyx/resources/external_connections/external_connections.py,sha256=hOeXd_IsNwwIarHT0PfTNj-yr899ThhlM5ItBKb0VMs,39231
|
|
200
|
+
telnyx/resources/external_connections/log_messages.py,sha256=MVh35zdi2ijAIuZmJ9oJUGYR17pdysUiwMUNvz7goaU,14207
|
|
201
|
+
telnyx/resources/external_connections/phone_numbers.py,sha256=w4uFCXBimQx76RwP3gRRAtqiFt9FHj2mHmigXCmeHzs,15952
|
|
202
|
+
telnyx/resources/external_connections/releases.py,sha256=pir_faUekPYZEZlnjccWwaBRbDSxi9i3AzSo1i5E34U,11519
|
|
203
|
+
telnyx/resources/external_connections/uploads.py,sha256=5r5YR-WGerx5nVr_ouCQ4RAiILdpbmF1AVGXGMMCSk8,27281
|
|
204
|
+
telnyx/resources/faxes/__init__.py,sha256=De06LWWuy8Yzbul2Z-FrFA_cSwHPu1eaO-yU8OtefJ0,1002
|
|
205
|
+
telnyx/resources/faxes/actions.py,sha256=4737CAhiFs6sR04p2nnwpM6chGz-jpBD9fB_gn1jt10,9122
|
|
206
|
+
telnyx/resources/faxes/faxes.py,sha256=gA6gGrGvtO5-4rN9FLVzkIaZ0QXsq_k6SeI5fXh8k84,25938
|
|
207
|
+
telnyx/resources/legacy/__init__.py,sha256=JqqLfwajUMA5QV052mWmK5FaJF4SiDtWtlNmmQ7e-Xo,1041
|
|
208
|
+
telnyx/resources/legacy/legacy.py,sha256=Ftl-qt6PbB-dl7uH5EiVcceozamNzt2zfQtkN-srCgg,3700
|
|
209
|
+
telnyx/resources/legacy/reporting/__init__.py,sha256=3ee4QRN4sCN9G3M4smL1lziUVChYh5PTg5QH52vMp5w,1728
|
|
210
|
+
telnyx/resources/legacy/reporting/reporting.py,sha256=2L7BBLbb3dJtDN4usZ8LhLrviquXZAwE9MTkydRi6i4,5384
|
|
211
|
+
telnyx/resources/legacy/reporting/batch_detail_records/__init__.py,sha256=OGLf0AUUsy5xEm78cVs--KiF3TTNvSaFWQQkfk0MSxk,2166
|
|
212
|
+
telnyx/resources/legacy/reporting/batch_detail_records/batch_detail_records.py,sha256=eJ5S3WUt4t8wB6iObJYnZOMqKluzdUhCMoNGtxkYsko,6575
|
|
213
|
+
telnyx/resources/legacy/reporting/batch_detail_records/messaging.py,sha256=SoVX7UBdKqGnZB40VKjKVKZ-cWHefw8KSvNteVdXqug,19355
|
|
214
|
+
telnyx/resources/legacy/reporting/batch_detail_records/speech_to_text.py,sha256=RGppjIeU-DoDBjOCH42aluJvTFlA6izEEQrKfqJLDF0,16070
|
|
215
|
+
telnyx/resources/legacy/reporting/batch_detail_records/voice.py,sha256=SBW0SRJiJYAaLHz-fmbLHiEPuuL-jJTdLGJT6rIGSXg,21311
|
|
216
|
+
telnyx/resources/legacy/reporting/usage_reports/__init__.py,sha256=C55MHwuoFklSPKV3Wlqrqv7SNksnZG_KE6gYy68D4A8,2086
|
|
217
|
+
telnyx/resources/legacy/reporting/usage_reports/messaging.py,sha256=360s5UTmm0nUg7NDOGG1rkenG263LK4nfYkgzjDTLcs,18518
|
|
218
|
+
telnyx/resources/legacy/reporting/usage_reports/number_lookup.py,sha256=ErjJOaGKJRo88stoufu3h--5som2eWOnQ9PjieX1A0k,16520
|
|
219
|
+
telnyx/resources/legacy/reporting/usage_reports/usage_reports.py,sha256=Ql4HG87JBMSq65ZD8OA84IRYAKw09LSQ9fq-4AG9xxI,11122
|
|
220
|
+
telnyx/resources/legacy/reporting/usage_reports/voice.py,sha256=2drbXM7BbUZx7GOA9jsWUrG5umInO4iuSz0epBCDqFY,19028
|
|
221
|
+
telnyx/resources/managed_accounts/__init__.py,sha256=EoKq6ptLTh1aE0YVPAo39ZAUsU3lBxce13N1p3nmE8c,1133
|
|
222
|
+
telnyx/resources/managed_accounts/actions.py,sha256=0KVsfep-eYUlGkuVnjcQShOjkosvZuI5bjdr9R6iJ1Q,10582
|
|
223
|
+
telnyx/resources/managed_accounts/managed_accounts.py,sha256=fJj6Po3RnndwwCO4fPATo38YsEg-TyyA71XeZ_8t8EY,34174
|
|
224
|
+
telnyx/resources/messages/__init__.py,sha256=MIdmEB4u5Q1BCJBI1SkBqDqOruL7it4EOhs49-mHXH8,989
|
|
225
|
+
telnyx/resources/messages/messages.py,sha256=K-aFP7jEYda_MdM5FgGQ7wyuDLRs5Q04b8NgJeO-2Uo,61506
|
|
226
|
+
telnyx/resources/messages/rcs.py,sha256=xSLPtwukvDgNPCvIOn9rg7TLf4gY5UO95GbwNaApMMs,12229
|
|
227
|
+
telnyx/resources/messaging/__init__.py,sha256=LNf5b86iirmOWWMl2D7McVcCly7IIs0zumVmwgYXBvY,1002
|
|
228
|
+
telnyx/resources/messaging/messaging.py,sha256=G-4gKvfg60A-R1KjY5rPlqq702ZA7B0li_jDVEf6l3o,3628
|
|
229
|
+
telnyx/resources/messaging/rcs/__init__.py,sha256=cl0dbvKZcV2q5we4U_qKw7GbWl0JrlppiiafBusl5Yc,963
|
|
230
|
+
telnyx/resources/messaging/rcs/agents.py,sha256=I_ZR91b9I4__SMMc--tXOUVHgpr7QNIpqrZ0qWkvKOw,13847
|
|
231
|
+
telnyx/resources/messaging/rcs/rcs.py,sha256=GH91ci_cmXNZBvGNwJtZCsG38fePPxflZlHGcsEQIwI,14956
|
|
232
|
+
telnyx/resources/messaging_10dlc/__init__.py,sha256=WXA9pUQ-XAYPU5Uq9KiKnpHPPZExjs2vC0ZKSZeiUC0,4119
|
|
233
|
+
telnyx/resources/messaging_10dlc/messaging_10dlc.py,sha256=A1zQaxFG_GAdxnrbofVJ8HI5D3vMgVA-FGMZ0PHEUWw,16179
|
|
234
|
+
telnyx/resources/messaging_10dlc/partner_campaigns.py,sha256=kVZbgsvKaXm1nJcDMNfg-0YEovRw2W-xs1Wk47JB_Hk,25676
|
|
235
|
+
telnyx/resources/messaging_10dlc/phone_number_assignment_by_profile.py,sha256=kp-_j3icBTit2IdvYMUxy7hpLOcH3s9vTEXqNXgMaJ0,23573
|
|
236
|
+
telnyx/resources/messaging_10dlc/phone_number_campaigns.py,sha256=fzPoYVhAx-03cNJaX2WJh6jynbl_hvQUtK1V-gR2rus,23268
|
|
237
|
+
telnyx/resources/messaging_10dlc/brand/__init__.py,sha256=eroGmcDdAyDxyGLR8DsFe_yCAxgH9bJSbUtSLZ8UiN8,1107
|
|
238
|
+
telnyx/resources/messaging_10dlc/brand/brand.py,sha256=24C4Y41ae2oWKPnvwugs9EJTfOJRoSEsQjC-WAjgZTE,65722
|
|
239
|
+
telnyx/resources/messaging_10dlc/brand/external_vetting.py,sha256=PE2vPs1hZnNZN_GQ6LtX0Ebb2v8h5E7wumN5ItGSGaU,15693
|
|
240
|
+
telnyx/resources/messaging_10dlc/campaign/__init__.py,sha256=MGF-U4sQL_jE6xQKvsDXhucn5snUbtl1naBlZDaujPk,1452
|
|
241
|
+
telnyx/resources/messaging_10dlc/campaign/campaign.py,sha256=WfSQfngOvZrcR58lwbRV9Ql2FHhADAdNbBVCUaNl-qw,42409
|
|
242
|
+
telnyx/resources/messaging_10dlc/campaign/osr.py,sha256=SkiCFJ_FMTDwc2gP0Plmd-9TsBaYt-0rJaMryl020vQ,5947
|
|
243
|
+
telnyx/resources/messaging_10dlc/campaign/usecase.py,sha256=AzWC6WUINLnFPJ4QIVHHopxvWE9XuAyPbZ7btjzsfpA,6144
|
|
244
|
+
telnyx/resources/messaging_10dlc/campaign_builder/__init__.py,sha256=mXUQxXn8C_VC9EfazTXR2Uby4-ZazQS7S4nhuNjWJ0Y,1107
|
|
245
|
+
telnyx/resources/messaging_10dlc/campaign_builder/brand.py,sha256=-tacvIas3xNBfYeDT1ZjjEPrQDj2ydYUnkqO8RuhIpY,6578
|
|
246
|
+
telnyx/resources/messaging_10dlc/campaign_builder/campaign_builder.py,sha256=sxxaxsc6wDqzr1rWqayf5GThr7dxLis6fN5kItsAkKs,21859
|
|
247
|
+
telnyx/resources/messaging_hosted_number_orders/__init__.py,sha256=KLUjxUfCFX2X4WQEZxydkTrmT_pOZWr4ViXnv_L4kAI,1291
|
|
248
|
+
telnyx/resources/messaging_hosted_number_orders/actions.py,sha256=tJGfpqRQ9n7rlu0BfwCHj9mT7nQDCGj_t3r9ZY2-8TQ,8090
|
|
249
|
+
telnyx/resources/messaging_hosted_number_orders/messaging_hosted_number_orders.py,sha256=Y4A6KdvtbZqUKK6OuIoEpFQH3dk-POplDMnCy6DMCU8,33010
|
|
250
|
+
telnyx/resources/messaging_profiles/__init__.py,sha256=CpwlRx3PwlBRN-OVbt2ecEP0yVhdYVQv4EeEnKjLysw,1264
|
|
251
|
+
telnyx/resources/messaging_profiles/autoresp_configs.py,sha256=iv6almoD8JmuBQe5v1YUFwnQgXKiZTHKBmsufB45KSs,23747
|
|
252
|
+
telnyx/resources/messaging_profiles/messaging_profiles.py,sha256=FjjAF_QUfkcIQBbPvS65fePallMM-J2I6fGP_u0-jY4,49371
|
|
253
|
+
telnyx/resources/messaging_tollfree/__init__.py,sha256=xS6W3IHhxe9zW0nTAz695v-OJDsLHTsfhSx6J_4NU10,1224
|
|
254
|
+
telnyx/resources/messaging_tollfree/messaging_tollfree.py,sha256=6bIyhm1Q9YMWEqVCFQSbn6y_8WW1PAbhpB10l59j-Fw,4202
|
|
255
|
+
telnyx/resources/messaging_tollfree/verification/__init__.py,sha256=Sic6oOAjxw7WlvG0PaCb7B0jUmdjDSO8aM2DlSny06Y,1106
|
|
256
|
+
telnyx/resources/messaging_tollfree/verification/requests.py,sha256=Tc2Df1SNDWXT1grkiaiHOpcxS5jqoKietB1HomuHFQY,50779
|
|
257
|
+
telnyx/resources/messaging_tollfree/verification/verification.py,sha256=2WeDAR3Cwf7uGz3veAPzRwFpIymZ7rle3_UT-llSXIo,3879
|
|
258
|
+
telnyx/resources/mobile_phone_numbers/__init__.py,sha256=WTfB0GFIsfbMJU3eyK8jOYjEeha2WqfwAsdEv419S9g,1199
|
|
259
|
+
telnyx/resources/mobile_phone_numbers/messaging.py,sha256=gGcXDUjKBSbuc6S6yEasmZktTN4Chl1rFms5XHUNMrw,10091
|
|
260
|
+
telnyx/resources/mobile_phone_numbers/mobile_phone_numbers.py,sha256=MO4g9mw2YMXx5s55wB9o7kfdMA7kYhExGmuTlno32CQ,18066
|
|
261
|
+
telnyx/resources/networks/__init__.py,sha256=QM1zWhOYa2xtzTmSYs1mdrvGrUR9aB9OWUOs0EDXGOY,1133
|
|
262
|
+
telnyx/resources/networks/default_gateway.py,sha256=wmqjJUO8pzjnEQQCyL-80UvGXnAYo67y0B0vVZBlEEg,13190
|
|
263
|
+
telnyx/resources/networks/networks.py,sha256=102mcDzNZG8s6qLjA9kgZRl3zJFWFK7W-coWto_StpE,25651
|
|
264
|
+
telnyx/resources/number_reservations/__init__.py,sha256=2vUeYMc_LL6lIzkZu1Mc_iYTP5c1J3lRsuDa0fpVIGc,1172
|
|
265
|
+
telnyx/resources/number_reservations/actions.py,sha256=ztBYKHeGvs_fgzS3PqHCoi_kZuU3bNmnnZ1nQ3XeJHg,6199
|
|
266
|
+
telnyx/resources/number_reservations/number_reservations.py,sha256=w2urI9DdNJkMiN5ixPer6j9SN0gkT7jyDHaPjOfD62Q,16461
|
|
267
|
+
telnyx/resources/operator_connect/__init__.py,sha256=9JOS3qWSGx9l6uK1HtSrE7JU9fflOJjffilejGcMMQk,1133
|
|
268
|
+
telnyx/resources/operator_connect/actions.py,sha256=Avd_oVNnGdtlN_X65OX5TvPjnjD3YfNQPEpjGeh-wzM,5808
|
|
269
|
+
telnyx/resources/operator_connect/operator_connect.py,sha256=EwCfCwVYecjzHmlSS7JdVJKgPwYg7T6I7bFJUnDmdrs,3972
|
|
270
|
+
telnyx/resources/organizations/__init__.py,sha256=QgSyF_5bvFJn_2PP0QbLHkOXljcZCPM5DZX0gexx4AI,1080
|
|
271
|
+
telnyx/resources/organizations/organizations.py,sha256=mC9TYrb5kqsyLRy3Xx0TfkUXemT6-T43Y4zYmFST5H0,3832
|
|
272
|
+
telnyx/resources/organizations/users/__init__.py,sha256=8XbO-MxSTXlkV5WA9-JmRXK8De4htnTJfqxjjZ1UI44,1002
|
|
273
|
+
telnyx/resources/organizations/users/actions.py,sha256=sHMxBQx1JRkxoa5IJZfCZL2Bu6B-qDPZNRxnnLGUq_Q,5921
|
|
274
|
+
telnyx/resources/organizations/users/users.py,sha256=8Vc4iv8dUwIpwXWcXIW7x--WRWjKjORXq4OMH3R3rx4,17303
|
|
275
|
+
telnyx/resources/payment/__init__.py,sha256=EzDOQYO-nGszQg5suN7-sNGiFFU95rgtsLlqBiQTVhw,1160
|
|
276
|
+
telnyx/resources/payment/auto_recharge_prefs.py,sha256=Ve-AExpcofe14vwCQNO5FQUsUlIrc0TBf4AzsurlfKE,10638
|
|
277
|
+
telnyx/resources/payment/payment.py,sha256=jMVwQHMApiaMhg9mFfPjwCw-ISvR3stmomo3v_z7oS0,3980
|
|
278
|
+
telnyx/resources/phone_number_blocks/__init__.py,sha256=gX2I3LXif9roUAq8XFBNgSlHFv_Isko3yN5BN_TI5RY,1121
|
|
279
|
+
telnyx/resources/phone_number_blocks/jobs.py,sha256=-98NU_-6rNYNcvNnd0ODBVBc5pKsQ90PhIyfzEzO6aE,14786
|
|
280
|
+
telnyx/resources/phone_number_blocks/phone_number_blocks.py,sha256=qzcim3BsiBxAmlwBlw0euA7Rrtsa9nwfQqbt6Ch8AMA,3973
|
|
281
|
+
telnyx/resources/phone_numbers/__init__.py,sha256=EH9BdCk9pCSj-YAo3QzC4jZypbYDy2Rq3P2ubQ0btD0,3462
|
|
282
|
+
telnyx/resources/phone_numbers/actions.py,sha256=OMEbIjrHsTnWzqjB2IoCx8FTDUv2I0hOqJkj6buwmNw,15761
|
|
283
|
+
telnyx/resources/phone_numbers/csv_downloads.py,sha256=tKopoHClu37fuJ0RYCwcqYzDbfSQRXtBPdL4Q4QsspY,14837
|
|
284
|
+
telnyx/resources/phone_numbers/jobs.py,sha256=suzyJ8ZgrVwJtLB7dIYYbVNFlleVtHY-ftT4OhvP6rA,30069
|
|
285
|
+
telnyx/resources/phone_numbers/messaging.py,sha256=x-EytGKv62d-in9JLfnxn1UXYElHig4U7i7WKpIhj1w,15427
|
|
286
|
+
telnyx/resources/phone_numbers/phone_numbers.py,sha256=2BC2JLVBzAM9vjaGTbCEoV-eIw3pu7Yn9GTyoH0VUY0,35770
|
|
287
|
+
telnyx/resources/phone_numbers/voice.py,sha256=hgsObbhMVopQgsg77TSBG8WV7phgoaJpH20zUkgXM4U,19510
|
|
288
|
+
telnyx/resources/phone_numbers/voicemail.py,sha256=ywvdYgUW2frcUfO2SX6YyPe-8U093jJw_I_RbhQkyHM,14268
|
|
289
|
+
telnyx/resources/porting/__init__.py,sha256=RU_ehBaIwEgNLAD_M-atJPrJRuqlL2CeCoRozROpLTc,2072
|
|
290
|
+
telnyx/resources/porting/events.py,sha256=SOSLdo6TDWS3sD9ZiOtNtWKnOqNC-cTajb_tyPSNiGs,13524
|
|
291
|
+
telnyx/resources/porting/loa_configurations.py,sha256=KxTMnBaeHlp7u-1e4I8gBUXvG8r7St8xd3DJ2Lk4jfQ,31577
|
|
292
|
+
telnyx/resources/porting/porting.py,sha256=8MQKOoCLQjbInsVkSJCl884Vbip3Uzu0iSlPy0ryT9U,8715
|
|
293
|
+
telnyx/resources/porting/reports.py,sha256=_GSALlfLd04QKTXH6bRC0s9-IMjYF7xZRfmRM7TvMHk,14157
|
|
294
|
+
telnyx/resources/porting_orders/__init__.py,sha256=GrrSKuKtG_bWUoIUjT3WCt2p_JeAIegF59K7f372eAU,6560
|
|
295
|
+
telnyx/resources/porting_orders/action_requirements.py,sha256=GOXecPlAGBrcaaFo4jpOSWygi0ZbENzr4ieYXvTyIgs,13191
|
|
296
|
+
telnyx/resources/porting_orders/actions.py,sha256=ccqeqBiOr0nCzYZUV4j4TNjuMvgInUJFCD_i1xBf5ts,16632
|
|
297
|
+
telnyx/resources/porting_orders/activation_jobs.py,sha256=R1zvnkOKZEL-T4tTsiHr6QZzqC_SMIy89AzNdt58GxI,15340
|
|
298
|
+
telnyx/resources/porting_orders/additional_documents.py,sha256=dB6lc5YwAq8hhVWhd0ZERX9u6PXNv5aObYjfTR55Agc,16199
|
|
299
|
+
telnyx/resources/porting_orders/associated_phone_numbers.py,sha256=2GGP06aFTuMJlrfZnyBBD-9djVBl3Yd8-1OSUzyV8d4,17636
|
|
300
|
+
telnyx/resources/porting_orders/comments.py,sha256=M4E3xHchE4X2Em1E-q_DFcciXpvLhCfb6ejnYgbsJbc,10485
|
|
301
|
+
telnyx/resources/porting_orders/phone_number_blocks.py,sha256=7sD10hj9oBNhAaA9vqWZYu6dYFdr_wvul4rNiRmpbpM,17191
|
|
302
|
+
telnyx/resources/porting_orders/phone_number_configurations.py,sha256=kh65j4GvdpcW6riihahDTdzHIUSljjWpTsSPrHo4PDk,12739
|
|
303
|
+
telnyx/resources/porting_orders/phone_number_extensions.py,sha256=sc60lCHu2IBLmMiwewQn9xu94xIjO5FTd6RopMO71aA,17821
|
|
304
|
+
telnyx/resources/porting_orders/porting_orders.py,sha256=BTOsX3NOD4G3F8ko_e1g7YJiTG8kvFgli3bsMmXYHlw,62819
|
|
305
|
+
telnyx/resources/porting_orders/verification_codes.py,sha256=W6lhBWG-mtk1id7U_6WAm8MmbPx_w5Y_KXAMIOVUaIo,16325
|
|
306
|
+
telnyx/resources/portouts/__init__.py,sha256=mX6do8iVPgKT6DoJ2fZRgCX1q4ENrqf1L3MFYGzGlW8,2587
|
|
307
|
+
telnyx/resources/portouts/comments.py,sha256=7mWCjK7U5mjP47E6UC7Tc_7xknZCrSWZ65HvAVLjep0,9429
|
|
308
|
+
telnyx/resources/portouts/events.py,sha256=52vmsE-IlnEKHqu-A41oKSqhmzTJNJHsq1rmn0_peBQ,13507
|
|
309
|
+
telnyx/resources/portouts/portouts.py,sha256=X4E2vyFujYmKE76ku35YpDIvrpfvUNR-V4IyMOlC1kE,24455
|
|
310
|
+
telnyx/resources/portouts/reports.py,sha256=IBc1JowxCwfh5qsW6aATQK3Pgy1J3WTs1un6SRErOIY,14129
|
|
311
|
+
telnyx/resources/portouts/supporting_documents.py,sha256=PLqlETSjM1W-4PvUV54sg8h8nZdcwtYODXWwcmVUBxs,10408
|
|
312
|
+
telnyx/resources/queues/__init__.py,sha256=imHzIAoSCvwhKbR_NdPVytFiu9a8xmjGKTDzvj78c6o,989
|
|
313
|
+
telnyx/resources/queues/calls.py,sha256=mbt70h45YYtz4UeU2h_VdzID2LHJ8NdbivP-h0qjTuo,18218
|
|
314
|
+
telnyx/resources/queues/queues.py,sha256=zm_7gMojxayn6OiHYGezvrkBs_MYv3CPtWycG62QvwQ,6937
|
|
315
|
+
telnyx/resources/recordings/__init__.py,sha256=QKXCeJ_NDUEkDXQtFJigJNZ58I1T-VHo0vj_CwuOQXg,1067
|
|
316
|
+
telnyx/resources/recordings/actions.py,sha256=RuRlHxaoDeZqH5efWFE8t-74abCMGdixbcEwEKpURIo,6154
|
|
317
|
+
telnyx/resources/recordings/recordings.py,sha256=-y1ZwVsj1rEZSLmvAnJnV0GpcGPaWjsP87EJMcA3_A4,15151
|
|
318
|
+
telnyx/resources/reports/__init__.py,sha256=qk_1dlPxez7lw7AgoInNUZJ7Ri9eGaZSN3_x_2uhBpE,1703
|
|
319
|
+
telnyx/resources/reports/cdr_usage_reports.py,sha256=n8f0FGM2yUJkuE1AlUzRKQ89kgtilyqrMoxUsElqVfo,8471
|
|
320
|
+
telnyx/resources/reports/mdr_usage_reports.py,sha256=tQCcAup6AnLj-wTzZxO6qaE-mihavPCXr_RmbT608TU,22614
|
|
321
|
+
telnyx/resources/reports/reports.py,sha256=JWrAeAto6sjPnNJ7jIzRpNBhV2R8vqOTctp4yxhxARQ,18116
|
|
322
|
+
telnyx/resources/rooms/__init__.py,sha256=pL7YR_3rov5JGbgBFxD31YLNVy5zakXtiiPLjWi5etQ,1478
|
|
323
|
+
telnyx/resources/rooms/actions.py,sha256=ySpBg1sCH5CqV9G9BuyZo2lRNrrSxE7_CeR3Ci50N5o,13062
|
|
324
|
+
telnyx/resources/rooms/rooms.py,sha256=NnhMfuqRx5mc7oaDnCtg1S6caGf06im7cIDL8NKPPsk,29025
|
|
325
|
+
telnyx/resources/rooms/sessions/__init__.py,sha256=InwPlCDvPCZdMFhpTN9kX7mJ9lfci6uhAFvoh7OQOdE,1041
|
|
326
|
+
telnyx/resources/rooms/sessions/actions.py,sha256=7OgJYM_4z-w5_ix_A3dxano3PP2MuxTuElMa8E8WFng,19323
|
|
327
|
+
telnyx/resources/rooms/sessions/sessions.py,sha256=RMvoQFDUq07iOdZHMSY33FS1zU5MEv494a3ImwdzSqc,24299
|
|
328
|
+
telnyx/resources/sim_card_groups/__init__.py,sha256=U-6zFEn3_YN1Q6dqpD4qcAPsf55AEGrBsf_iMuPrQMo,1108
|
|
329
|
+
telnyx/resources/sim_card_groups/actions.py,sha256=9hdkwNrcecVHkHQEX02z72PsK2YKnXK-G5Zig0BIi98,29082
|
|
330
|
+
telnyx/resources/sim_card_groups/sim_card_groups.py,sha256=bCU8KR9uIZQuWOvlLbFTq9wnBphGZ50kZiqd0ZmuKwI,24639
|
|
331
|
+
telnyx/resources/sim_cards/__init__.py,sha256=Xfca4rp_xtgCzQpLNZu_xzEEV4IPJTxG_GvTAtxRn8M,1042
|
|
332
|
+
telnyx/resources/sim_cards/actions.py,sha256=bRxAqeJSovJ0C1zc1jxnGaTqYjTIthFTMTBMy3cwnak,39459
|
|
333
|
+
telnyx/resources/sim_cards/sim_cards.py,sha256=J3x2lWo1hiB5WSqLk6_Q_BNjD4wGucXzwohajV-9A2s,39943
|
|
334
|
+
telnyx/resources/storage/__init__.py,sha256=wkopaiZqFsN-F1_kANWv2yCXu5cyy34wWvpffOmWMKU,2111
|
|
335
|
+
telnyx/resources/storage/migration_sources.py,sha256=89zPfiIU_UpBl7SZseSJA81L0NeOOyrTLM6YDmnqhCk,16388
|
|
336
|
+
telnyx/resources/storage/storage.py,sha256=hD0xYJ0c-CYQaPeJshX6yZTcjEcYnxInWMbDbWOBvLE,9060
|
|
337
|
+
telnyx/resources/storage/buckets/__init__.py,sha256=1st_6HXl1iC6YNXbGA5epZGQVzxmpcldZPXC_xnqURY,1557
|
|
338
|
+
telnyx/resources/storage/buckets/buckets.py,sha256=M7ngMzpj2KDsruxKqX0xwS9MDUc-ry9JcmI2VbQQ6vA,10258
|
|
339
|
+
telnyx/resources/storage/buckets/ssl_certificate.py,sha256=NAvSkSQwpecS5V8nBvxkjJOKVOcoJc0l3K1aZDFiarg,14962
|
|
340
|
+
telnyx/resources/storage/buckets/usage.py,sha256=9NZrSA22oYRK-mcatVQEjnpKEQzW2fouLhwpgvP8XQQ,10378
|
|
341
|
+
telnyx/resources/storage/migrations/__init__.py,sha256=MmnevL7UJev8foZQT6wPWRXxoCWO0PvV5cvQCmN0ysY,1067
|
|
342
|
+
telnyx/resources/storage/migrations/actions.py,sha256=LxgP4DEdRzb6Q9sDdVCU68F8vBgfPs_r6fpzZYD2tG0,5842
|
|
343
|
+
telnyx/resources/storage/migrations/migrations.py,sha256=OgsyXLFApzFePnvMWdqY3F6oM-9YbjPRdEMY7cSNW5E,14081
|
|
344
|
+
telnyx/resources/texml/__init__.py,sha256=W52xEhzyxU1VKNSUgiobUcQo_525qK01WZIXFPHBAcM,1452
|
|
345
|
+
telnyx/resources/texml/calls.py,sha256=GRfZS7ERL7fa3HngUmB156_RY423-GviuErjPYaYoTk,29616
|
|
346
|
+
telnyx/resources/texml/texml.py,sha256=eZHlVwp_OhBEkfjFiMFOANoTPdmAPskWB30_5E2Svek,9406
|
|
347
|
+
telnyx/resources/texml/accounts/__init__.py,sha256=5m-dkdZmuGkzDRAFh-iyayQuc8Kt0b-kveVWQWDr-Hc,3036
|
|
348
|
+
telnyx/resources/texml/accounts/accounts.py,sha256=KRtOcuJObTv5_lDmdt-IjSnPmPSdd-_cGf9P2WXTCPY,19131
|
|
349
|
+
telnyx/resources/texml/accounts/queues.py,sha256=y91-7aPfwwTOi4xVjkmqudnwmmuXqKA76SNHaRsclx0,23558
|
|
350
|
+
telnyx/resources/texml/accounts/calls/__init__.py,sha256=FpRE5jgR93GXx5Cre-KG_9jxVVOjT9cJPGSBYJJKVh8,2509
|
|
351
|
+
telnyx/resources/texml/accounts/calls/calls.py,sha256=d6feR7KqcuCSIYpDOM1ve6oaiqPwOkHmwX93dbMm4N0,64447
|
|
352
|
+
telnyx/resources/texml/accounts/calls/recordings.py,sha256=s9TRukza9V806PammrVaObX4_2jRRKoDld8naaVA7iM,7704
|
|
353
|
+
telnyx/resources/texml/accounts/calls/recordings_json.py,sha256=3aBtZ0RXMK1HDVohENT1eHvTcur-AdHHUa0wc0bbaVE,14866
|
|
354
|
+
telnyx/resources/texml/accounts/calls/siprec.py,sha256=FdurAu5lf_by5SN6fzIXNva8tthx6CpGAaU2RIxbUSM,7578
|
|
355
|
+
telnyx/resources/texml/accounts/calls/streams.py,sha256=l_YnG40UlRhVcuW6l29gehTSfbxcKymkdB-CDYbC0_Y,7605
|
|
356
|
+
telnyx/resources/texml/accounts/conferences/__init__.py,sha256=Wgnoin0h5qEE7gcyi5IG6fg1_vpPNUgqHkRTALFE4Zs,1145
|
|
357
|
+
telnyx/resources/texml/accounts/conferences/conferences.py,sha256=aGPqDEeRRP4HIEzO3fLxg23RhnrEZrXbL0FhoRAktWY,27769
|
|
358
|
+
telnyx/resources/texml/accounts/conferences/participants.py,sha256=jsVbI9mjAENDaZbg7TA3T9zA5ItfIlnji5b0i4P7GFg,55269
|
|
359
|
+
telnyx/resources/texml/accounts/recordings/__init__.py,sha256=SVRbp2bcFKD_5pDdLHpTMG0ev_OhDRaSjY0htH29bTI,1028
|
|
360
|
+
telnyx/resources/texml/accounts/recordings/json.py,sha256=bU4ZTKSDGbg0H9vRNL2nCplC8h629laiEcd56jp2FYg,10306
|
|
361
|
+
telnyx/resources/texml/accounts/recordings/recordings.py,sha256=U4KNMl6dWg9TMq2MVZwFX-u93j54fTGJBVHhMkwL47s,3693
|
|
362
|
+
telnyx/resources/texml/accounts/transcriptions/__init__.py,sha256=kK93xbvNfgmvFbNBx8hFhBUaN8MjMV_lqXwwSxkFFyw,1080
|
|
363
|
+
telnyx/resources/texml/accounts/transcriptions/json.py,sha256=aNZ8Xs2DL4eOkY_SbmXWv9bR9sCoYofIFyy9jp2deBY,11140
|
|
364
|
+
telnyx/resources/texml/accounts/transcriptions/transcriptions.py,sha256=f-muckAP2-ICXQca61pLidbAClp50Ib6wlSy_LmTB0I,3837
|
|
365
|
+
telnyx/resources/verifications/__init__.py,sha256=0d5jEBzFbPYP_BkSJYXPUq4e49Qs8gANqMwl3lbzLKk,1649
|
|
366
|
+
telnyx/resources/verifications/actions.py,sha256=_D0F6ED2ttzU6T68ySJ9OOcrNcUn3WE52xLYaSwbrk0,7354
|
|
367
|
+
telnyx/resources/verifications/verifications.py,sha256=IG7g3RIpZuv0w0Gshtkt29cmRC3e0rk1XWCQ-TYsdQw,22523
|
|
368
|
+
telnyx/resources/verifications/by_phone_number/__init__.py,sha256=XBZbrhLQcba0yXsna85uuKsyUktgarFS8J0NZo8wwjY,1108
|
|
369
|
+
telnyx/resources/verifications/by_phone_number/actions.py,sha256=JjjT0W5JweJ_apG7dpUHNPc6RBawK0OEOk0snphoRL4,7249
|
|
370
|
+
telnyx/resources/verifications/by_phone_number/by_phone_number.py,sha256=dBdozSkMvC5R2eVSPDi29gInS_6_weAazZL_d7uKKx8,7503
|
|
371
|
+
telnyx/resources/verified_numbers/__init__.py,sha256=wv46Dyovmqk8vDqAw5gP_W5KTLZTzTv7tRJhr0rD42M,1133
|
|
372
|
+
telnyx/resources/verified_numbers/actions.py,sha256=spwbZ3MpLRCfBYL9Iqs96_vxUWkeVk1J6Tqtd3c5EmI,6896
|
|
373
|
+
telnyx/resources/verified_numbers/verified_numbers.py,sha256=wnQgZfow7J-qNclTb-Z-TMBQJKx-NJ0yVGeW2pXsazw,19624
|
|
374
|
+
telnyx/resources/wireless/__init__.py,sha256=fEZwFm-3jI908Ui2_pT-S-3Titgg1vs7uFjzK4p406M,1212
|
|
375
|
+
telnyx/resources/wireless/detail_records_reports.py,sha256=y6UEeAZVH4Wx8ddjiLNtWWQmxZ4XC25t9U8a8oX4o4M,17922
|
|
376
|
+
telnyx/resources/wireless/wireless.py,sha256=YFhowq4mQXRL0dPhHoMWIit_zZTaXWkh1uje13Zpng0,8176
|
|
377
|
+
telnyx/types/__init__.py,sha256=AhG1rjTUgxhGcWcHgbA3Zxxq0o2f4IERfMm62nyTOEI,92793
|
|
378
|
+
telnyx/types/access_ip_address_create_params.py,sha256=qd_T7W_K4XiVIdsJLbsS5U9Qlf3_m0DT677n5Tqdvm8,329
|
|
379
|
+
telnyx/types/access_ip_address_list_params.py,sha256=-xTcebH5vrXYdCEcjZ8f1PenXqWCf1oXR2nwtMJGVcQ,2050
|
|
380
|
+
telnyx/types/access_ip_address_response.py,sha256=hbO8ftAMQrRQSgZnZypafa14lzeD_NGkrEyHrTe-pHo,571
|
|
381
|
+
telnyx/types/access_ip_range.py,sha256=euEtQEzv_1X1gmbUJ2HEj6gCNfRRsYZNiz6-AwwCnFM,534
|
|
382
|
+
telnyx/types/access_ip_range_create_params.py,sha256=zQizIleZucq1wKNAtuy7AxjglfBQmEywUACg9t0Cl9Q,325
|
|
383
|
+
telnyx/types/access_ip_range_list_params.py,sha256=E9Msb3oZjgE08BfDQJjvFdIbvEjqsiEyPkYyLt7sj-M,2704
|
|
384
|
+
telnyx/types/address.py,sha256=hv48rfJl9lstPsiBfPfsRCgEg1gwrqKW_lVzHUUMDFg,3144
|
|
385
|
+
telnyx/types/address_create_params.py,sha256=2lGqy3wSFiMu-HNZLLI2Xw8Nn-gmzcbzddwvAa7NLoE,2624
|
|
386
|
+
telnyx/types/address_create_response.py,sha256=j2e-N0vYqiWOCpXtPQl2VN1dzV5aRND7Y4Yi07o2mnI,291
|
|
387
|
+
telnyx/types/address_delete_response.py,sha256=P41ZTsQjt6I5qtukCM4tfJAPr2hPq6t2BWkHRD0u8t0,291
|
|
388
|
+
telnyx/types/address_list_params.py,sha256=De7v8cxDFXf_zwdMsyO0fgk69yd2GEoQEAVvKyS6dZo,3254
|
|
389
|
+
telnyx/types/address_retrieve_response.py,sha256=L8QmmvrgJ8uGJ166A6jinLm5E_9wgDqAlxdnS8U1OFc,295
|
|
390
|
+
telnyx/types/advanced_order_create_params.py,sha256=LcVZ5xb_9NPQqmYbvO9njodkBNEDhMG8oonmM401io4,691
|
|
391
|
+
telnyx/types/advanced_order_create_response.py,sha256=ojy3MGmW7J_iGx_oRZugInVPf6k_7zuY621bIPE-Coo,982
|
|
392
|
+
telnyx/types/advanced_order_list_response.py,sha256=aFEArrn82zOQmuBCtmPlHGQoEN7Dl0qGdooPDzBIj84,1049
|
|
393
|
+
telnyx/types/advanced_order_retrieve_response.py,sha256=bd0W9fhiZCJ47p4fyuj5NiSAi-LFexXrZptNLVAzybg,986
|
|
394
|
+
telnyx/types/advanced_order_update_requirement_group_params.py,sha256=MZqqzgGGRfJywB7pQetjOvgFhlYKNe0LZgQgALUjlHQ,723
|
|
395
|
+
telnyx/types/advanced_order_update_requirement_group_response.py,sha256=MAhX6TOQhZywPqilJAdgG10xlJmaptGvcVI8ZcVykjk,1014
|
|
396
|
+
telnyx/types/ai_retrieve_models_response.py,sha256=DWcRuYkI0gXpCXME5KegvYkrFXZLmxHLWkh1MAtLXB4,410
|
|
397
|
+
telnyx/types/ai_summarize_params.py,sha256=rMVpD3Ocy_DmFVUYka9K-Mjspetf150V3CFXgL436hY,518
|
|
398
|
+
telnyx/types/ai_summarize_response.py,sha256=A9umRVyHGNxD1rFdEV0bMRRuJn7dSJFzBxhjYoAJnU4,259
|
|
399
|
+
telnyx/types/anchorsite_override.py,sha256=82y2l3Di-2RNQh0O0nebFA_pPgDHqy7rYwzz6lJ9aUM,434
|
|
400
|
+
telnyx/types/audit_event_list_params.py,sha256=biITPhsMIAj14CXldJ9QwdchGGeDS2TprTyHXzutB3g,1217
|
|
401
|
+
telnyx/types/audit_event_list_response.py,sha256=QiMJm4FSgev3o7VHGjqSreD-FrQvWANxlVk-kvLW3eo,2434
|
|
402
|
+
telnyx/types/authentication_provider.py,sha256=Enq8JpTMtoS1RH_WdH-QbzRdaeaAurA1QBaNz7-j__E,2462
|
|
403
|
+
telnyx/types/authentication_provider_create_params.py,sha256=EmyOmCQ7dYovb1y9-tXrYpYzv8KsRJlSPGd8v0BfQRw,999
|
|
404
|
+
telnyx/types/authentication_provider_create_response.py,sha256=gi0mytiD-LCpvqTi3cBKnJPmDXD068TZm55TLIsXoog,367
|
|
405
|
+
telnyx/types/authentication_provider_delete_response.py,sha256=o-UaL3YCARP1T5r5ovyFL454adbMXMyygSwQ0BwzLs4,367
|
|
406
|
+
telnyx/types/authentication_provider_list_params.py,sha256=9Ev0Yh3ByIxUcHVvmSOLlkA9sRw3Bj8S1fzKFz1cxp8,1253
|
|
407
|
+
telnyx/types/authentication_provider_retrieve_response.py,sha256=U-Ut2ckF-FQMJs2ntbciPN2RN_9t-wqAe4sLloX4Myw,371
|
|
408
|
+
telnyx/types/authentication_provider_update_params.py,sha256=59gE3ZuTZEZkT7sVm9ooHQgnLKvRty-VW2cEi-YWO3U,959
|
|
409
|
+
telnyx/types/authentication_provider_update_response.py,sha256=gw2fMQcROsntcmK8Sq4E28Ezw3E9kcP-DmTl_hX-7-Y,367
|
|
410
|
+
telnyx/types/available_phone_number_block_list_params.py,sha256=AU9WcqQ6tNJXHxxZqKuDcfFEXMJyD69n9Pnk6uKUUz0,1095
|
|
411
|
+
telnyx/types/available_phone_number_block_list_response.py,sha256=7TF23C4eeqxXdsE_iiUdWU4edMCy4B7c7vxG1vUWM98,1370
|
|
412
|
+
telnyx/types/available_phone_number_list_params.py,sha256=tVABbL3wF-MLQF1KT2XCSKxm-wcSu8z3RItjf3pOoqI,3187
|
|
413
|
+
telnyx/types/available_phone_number_list_response.py,sha256=vqS9EX6GNAVTQhXMGRk76CkPUVjdlCGn5lWKZcFnv3s,1826
|
|
414
|
+
telnyx/types/available_service.py,sha256=F8V_xVN6nDbIjsXvZWxgS1rvwTNG-84HTmcPCsxK10I,273
|
|
415
|
+
telnyx/types/azure_configuration_data.py,sha256=PMD-4J7lUYK0RqbT9jlEh-RSGPVCbBLFDXIKU3Hc-Lg,592
|
|
416
|
+
telnyx/types/azure_configuration_data_param.py,sha256=2ZPe8uNjhbVNdO_Sp7QakjPUj7-tdJP_wRCgMMh8olQ,570
|
|
417
|
+
telnyx/types/balance_retrieve_response.py,sha256=NSu7aPQU37lNpZ9GHKFcuHczBHVLKTuR3GNz77eldvU,850
|
|
418
|
+
telnyx/types/billing_group.py,sha256=iP_aY1OTKLOSaWOY8GARg8d8E4FLBUYRfGnB_2YMm8Q,1004
|
|
419
|
+
telnyx/types/billing_group_create_params.py,sha256=2Dl4Ju1uklDSjKz8HtqY7J9M-FH2TlPBu4Zj7awdptI,314
|
|
420
|
+
telnyx/types/billing_group_create_response.py,sha256=HK__HhgrqFIADFGPDpzPzNyJZCNtCyHDILmpzEcwjgs,317
|
|
421
|
+
telnyx/types/billing_group_delete_response.py,sha256=23YV5MVDacwmCXxvPgRYXfvaTtTDNzDfjqCzguT57yU,317
|
|
422
|
+
telnyx/types/billing_group_list_params.py,sha256=vN-rhxkdQmzlPR4twLrF3bq22_SuyLtDN1sxsWGEBmI,436
|
|
423
|
+
telnyx/types/billing_group_retrieve_response.py,sha256=HaXCcoR5QIuXgl4zFK3geYlNJhTsAK-sBWleiKBtcDI,321
|
|
424
|
+
telnyx/types/billing_group_update_params.py,sha256=QkS9t4E6pcVL2GnyGoUT8m3U7JzsXO2MWYqaqzcvniI,314
|
|
425
|
+
telnyx/types/billing_group_update_response.py,sha256=4OfROFr2jKjcAMIG2_MJ-jAKGCBEhCgkUYuhJZ3mDMY,317
|
|
426
|
+
telnyx/types/bulk_sim_card_action_list_params.py,sha256=Cb3jfVsOS9fNgAn_Ux-uvNJudDEdotVSvPEK6zo7fAY,665
|
|
427
|
+
telnyx/types/bulk_sim_card_action_list_response.py,sha256=lKZtvf7zDddJVnfibVhpIpjmTCuAIcIqfgZp3GRwvGk,1269
|
|
428
|
+
telnyx/types/bulk_sim_card_action_retrieve_response.py,sha256=wVA0TamPwKC5F3WRCKyPDlbnaGIGhvGDGWCBFExLToE,1354
|
|
429
|
+
telnyx/types/call_ai_gather_ended_webhook_event.py,sha256=W5ZMp9wUp6gjzvt5-j4KcAYYcou0Go9DgZZ1577wZHo,2439
|
|
430
|
+
telnyx/types/call_ai_gather_ended_webhook_event1.py,sha256=W5ZMp9wUp6gjzvt5-j4KcAYYcou0Go9DgZZ1577wZHo,2439
|
|
431
|
+
telnyx/types/call_ai_gather_message_history_updated_webhook_event.py,sha256=cPP2bu36quGxPI8DSgKlw8JJ7_7Q3RyqkVBvg9DhTLA,2225
|
|
432
|
+
telnyx/types/call_ai_gather_message_history_updated_webhook_event1.py,sha256=cPP2bu36quGxPI8DSgKlw8JJ7_7Q3RyqkVBvg9DhTLA,2225
|
|
433
|
+
telnyx/types/call_ai_gather_partial_results_webhook_event.py,sha256=hhwf5pnG626B70rvS9J7YDvddtXMpLxy0BPkuc1-j_Q,2388
|
|
434
|
+
telnyx/types/call_ai_gather_partial_results_webhook_event1.py,sha256=hhwf5pnG626B70rvS9J7YDvddtXMpLxy0BPkuc1-j_Q,2388
|
|
435
|
+
telnyx/types/call_answered_webhook_event.py,sha256=pUODJBEHV4RDDhIMLoUyEwF11hHgcocQWOIvPZafqGs,2377
|
|
436
|
+
telnyx/types/call_answered_webhook_event1.py,sha256=pUODJBEHV4RDDhIMLoUyEwF11hHgcocQWOIvPZafqGs,2377
|
|
437
|
+
telnyx/types/call_bridged_webhook_event.py,sha256=CR9hi9uUXclE4b9eniAk8CC6xxUQz_cwMm16i-BVNr8,1796
|
|
438
|
+
telnyx/types/call_bridged_webhook_event1.py,sha256=CR9hi9uUXclE4b9eniAk8CC6xxUQz_cwMm16i-BVNr8,1796
|
|
439
|
+
telnyx/types/call_control_application.py,sha256=VP_lVmqS5CufkbJi3M69dPRMzZ6wdpL2SrCgAMOzNgs,3257
|
|
440
|
+
telnyx/types/call_control_application_create_params.py,sha256=zwNgYXl2vhzdEUjYixCc-VF2nBWdHgaJl7MtveG4MK4,2756
|
|
441
|
+
telnyx/types/call_control_application_create_response.py,sha256=bPZ_zRz836mp7wy9tbzzBEWH2eml2WC5Y3uZBcGZVC4,368
|
|
442
|
+
telnyx/types/call_control_application_delete_response.py,sha256=CV9paX16x7L6fUtms-7bejacGZRZyMlrhzAUQpzR5A8,368
|
|
443
|
+
telnyx/types/call_control_application_inbound.py,sha256=LTXW1JT65ayV3yeynUK-Argn-vFUreS_JMAHYHcFOoo,1398
|
|
444
|
+
telnyx/types/call_control_application_inbound_param.py,sha256=G4UCz3Rm1TJuxulQSqj5PHO-xBU-yPZzamkiuANdj2M,1339
|
|
445
|
+
telnyx/types/call_control_application_list_params.py,sha256=8QOF8VkAZ92zW9_9JRuycVZqlXDivELT3fU1ZOuCs-s,3957
|
|
446
|
+
telnyx/types/call_control_application_outbound.py,sha256=PPW35t8bB8zke8sxebSFQ3sjD5PrP3ctHXEml4d_eg4,533
|
|
447
|
+
telnyx/types/call_control_application_outbound_param.py,sha256=aFlCWDtRvjHmF-cu92F7GPPlc5YNdaV3HGG-31gZA_4,537
|
|
448
|
+
telnyx/types/call_control_application_retrieve_response.py,sha256=LZNhV1G4eL-y9FGl2lSmWOJPjoIPrm9SHgy5y9kPpsY,372
|
|
449
|
+
telnyx/types/call_control_application_update_params.py,sha256=rYF8PAupzNEd-MkjGAkejTL89VAZgN6i3PjRr7F3Hxw,2880
|
|
450
|
+
telnyx/types/call_control_application_update_response.py,sha256=_JR2YLtITudbuYGVqmaGud1B8StTlAanVmFNtIN_XV4,368
|
|
451
|
+
telnyx/types/call_conversation_ended_webhook_event.py,sha256=xkOxhj7h2duW6U0O7PJvcb9YWWhq8HFRKcuGpeZ0dKI,2621
|
|
452
|
+
telnyx/types/call_conversation_ended_webhook_event1.py,sha256=xkOxhj7h2duW6U0O7PJvcb9YWWhq8HFRKcuGpeZ0dKI,2621
|
|
453
|
+
telnyx/types/call_conversation_insights_generated_webhook_event.py,sha256=pwxJeCghLDU8Qlq-bEhwwAHNXOQtyC0MqFlW8ST9T_E,2272
|
|
454
|
+
telnyx/types/call_conversation_insights_generated_webhook_event1.py,sha256=pwxJeCghLDU8Qlq-bEhwwAHNXOQtyC0MqFlW8ST9T_E,2272
|
|
455
|
+
telnyx/types/call_dial_params.py,sha256=1aaApNw45libAgyLj91vrPV1OZxGJ9-MqCLOjS_jF0I,16531
|
|
456
|
+
telnyx/types/call_dial_response.py,sha256=qV7fNdy_vNuhBte6B_jxhSqvNQMht8tyq3DZ3-YHQAM,1575
|
|
457
|
+
telnyx/types/call_dtmf_received_webhook_event.py,sha256=By7pJP_IGMHOjf5rbqBrkGo3V_SEjpZbug5Qpo4R5fc,1853
|
|
458
|
+
telnyx/types/call_dtmf_received_webhook_event1.py,sha256=By7pJP_IGMHOjf5rbqBrkGo3V_SEjpZbug5Qpo4R5fc,1853
|
|
459
|
+
telnyx/types/call_enqueued_webhook_event.py,sha256=kDv3EZKutPehui2ny4kUnmIBtMpGX3NL7OCLF3K0q3Y,1837
|
|
460
|
+
telnyx/types/call_enqueued_webhook_event1.py,sha256=kDv3EZKutPehui2ny4kUnmIBtMpGX3NL7OCLF3K0q3Y,1837
|
|
461
|
+
telnyx/types/call_event_list_params.py,sha256=e8kzyGUoP0sGsx_rfzsLgwrypA2fLQOW3GtOPAUjeEQ,3264
|
|
462
|
+
telnyx/types/call_event_list_response.py,sha256=CC2kTthuCk2QtLpijJ3xx890c-pfRUUWuCdO5-JrAWQ,807
|
|
463
|
+
telnyx/types/call_fork_started_webhook_event.py,sha256=jC0SZVe7ZPi7XZALqUPYWJesnHVdZemdCnNKonfjUU4,1685
|
|
464
|
+
telnyx/types/call_fork_started_webhook_event1.py,sha256=jC0SZVe7ZPi7XZALqUPYWJesnHVdZemdCnNKonfjUU4,1685
|
|
465
|
+
telnyx/types/call_fork_stopped_webhook_event.py,sha256=sOjkm2sh9rqI043RBrWm3HrXLqMfnTVddG4ZRe5d4ys,1685
|
|
466
|
+
telnyx/types/call_fork_stopped_webhook_event1.py,sha256=sOjkm2sh9rqI043RBrWm3HrXLqMfnTVddG4ZRe5d4ys,1685
|
|
467
|
+
telnyx/types/call_gather_ended_webhook_event.py,sha256=-BhUNj_ZE-v-imZ_iESnpYgZHQclkTi3uIDJ1TSFqnE,2040
|
|
468
|
+
telnyx/types/call_gather_ended_webhook_event1.py,sha256=-BhUNj_ZE-v-imZ_iESnpYgZHQclkTi3uIDJ1TSFqnE,2040
|
|
469
|
+
telnyx/types/call_hangup_webhook_event.py,sha256=_TJUKtUXcAWdZqVtqKHJQOrihKZD3sYdofm35YUTaZg,5027
|
|
470
|
+
telnyx/types/call_hangup_webhook_event1.py,sha256=_TJUKtUXcAWdZqVtqKHJQOrihKZD3sYdofm35YUTaZg,5027
|
|
471
|
+
telnyx/types/call_initiated_webhook_event.py,sha256=HgAR9kZ7mDtqyMGd-RlxbiF3-QCzSJZAT-HFzooGhJk,3081
|
|
472
|
+
telnyx/types/call_initiated_webhook_event1.py,sha256=HgAR9kZ7mDtqyMGd-RlxbiF3-QCzSJZAT-HFzooGhJk,3081
|
|
473
|
+
telnyx/types/call_left_queue_webhook_event.py,sha256=jMoc-4jBhAS5Vmcd-2XDZWU6vKMwd4PXhpqAt1NVJ9E,1960
|
|
474
|
+
telnyx/types/call_left_queue_webhook_event1.py,sha256=jMoc-4jBhAS5Vmcd-2XDZWU6vKMwd4PXhpqAt1NVJ9E,1960
|
|
475
|
+
telnyx/types/call_machine_detection_ended_webhook_event.py,sha256=PDpDSgnzGz6w5jo9fYtGYSM007AT3TxDyCH6R1ppIH0,1956
|
|
476
|
+
telnyx/types/call_machine_detection_ended_webhook_event1.py,sha256=PDpDSgnzGz6w5jo9fYtGYSM007AT3TxDyCH6R1ppIH0,1956
|
|
477
|
+
telnyx/types/call_machine_greeting_ended_webhook_event.py,sha256=ifdS_ikxTTPrZ5Meo1MpoVS4ZZf0mse6oSY1Xj77I9Q,1964
|
|
478
|
+
telnyx/types/call_machine_greeting_ended_webhook_event1.py,sha256=ifdS_ikxTTPrZ5Meo1MpoVS4ZZf0mse6oSY1Xj77I9Q,1964
|
|
479
|
+
telnyx/types/call_machine_premium_detection_ended_webhook_event.py,sha256=o2VZb5RDj6cWfMeS9YcsSNkATwyGGaXQ_Hzv82eqrRw,2057
|
|
480
|
+
telnyx/types/call_machine_premium_detection_ended_webhook_event1.py,sha256=o2VZb5RDj6cWfMeS9YcsSNkATwyGGaXQ_Hzv82eqrRw,2057
|
|
481
|
+
telnyx/types/call_machine_premium_greeting_ended_webhook_event.py,sha256=rh05sMBtagpVxJbzNEnlQqPwkKHVwVWcOB-J196Hlo0,1993
|
|
482
|
+
telnyx/types/call_machine_premium_greeting_ended_webhook_event1.py,sha256=rh05sMBtagpVxJbzNEnlQqPwkKHVwVWcOB-J196Hlo0,1993
|
|
483
|
+
telnyx/types/call_playback_ended_webhook_event.py,sha256=s35ZHJKOYt_5FsSrJAKyhhCvfJibo8iosB6Xv5-ptjc,2223
|
|
484
|
+
telnyx/types/call_playback_ended_webhook_event1.py,sha256=s35ZHJKOYt_5FsSrJAKyhhCvfJibo8iosB6Xv5-ptjc,2223
|
|
485
|
+
telnyx/types/call_playback_started_webhook_event.py,sha256=HwEqioJqa7n84Ik333KwwaWbng3EtN_i_fZv6WpC3uQ,1964
|
|
486
|
+
telnyx/types/call_playback_started_webhook_event1.py,sha256=HwEqioJqa7n84Ik333KwwaWbng3EtN_i_fZv6WpC3uQ,1964
|
|
487
|
+
telnyx/types/call_recording_error_webhook_event.py,sha256=3gV0MaHe16UWdeKN0eSNV7Hvq3UVqZlaKcWzGiPqsU8,1896
|
|
488
|
+
telnyx/types/call_recording_error_webhook_event1.py,sha256=3gV0MaHe16UWdeKN0eSNV7Hvq3UVqZlaKcWzGiPqsU8,1896
|
|
489
|
+
telnyx/types/call_recording_saved_webhook_event.py,sha256=9qXhT-mksuAoayJau_tStBbbXJm609wk1dhYfgqESXo,3489
|
|
490
|
+
telnyx/types/call_recording_saved_webhook_event1.py,sha256=9qXhT-mksuAoayJau_tStBbbXJm609wk1dhYfgqESXo,3489
|
|
491
|
+
telnyx/types/call_recording_transcription_saved_webhook_event.py,sha256=kvFkrwe6o-rb_1ss_Uw1nI2PoYp5XpzrWUcTxASErdY,2221
|
|
492
|
+
telnyx/types/call_recording_transcription_saved_webhook_event1.py,sha256=kvFkrwe6o-rb_1ss_Uw1nI2PoYp5XpzrWUcTxASErdY,2221
|
|
493
|
+
telnyx/types/call_refer_completed_webhook_event.py,sha256=wP8sHPMffsEgj1xbqfBcXMO8pqa44PS7ThLUD8KCjtw,1914
|
|
494
|
+
telnyx/types/call_refer_completed_webhook_event1.py,sha256=wP8sHPMffsEgj1xbqfBcXMO8pqa44PS7ThLUD8KCjtw,1914
|
|
495
|
+
telnyx/types/call_refer_failed_webhook_event.py,sha256=VAbP0WVV0T-aAKHTeaUawDXZdgaKdq45JdFUIQyLJMY,1905
|
|
496
|
+
telnyx/types/call_refer_failed_webhook_event1.py,sha256=VAbP0WVV0T-aAKHTeaUawDXZdgaKdq45JdFUIQyLJMY,1905
|
|
497
|
+
telnyx/types/call_refer_started_webhook_event.py,sha256=bqICdgtiC4cTQwnjvy_UUchltGjRMWGZxTUSTFF3yHU,1908
|
|
498
|
+
telnyx/types/call_refer_started_webhook_event1.py,sha256=bqICdgtiC4cTQwnjvy_UUchltGjRMWGZxTUSTFF3yHU,1908
|
|
499
|
+
telnyx/types/call_retrieve_status_response.py,sha256=RX8VzV4aOrjerr8iBhl8ilCBurIIy7-n4MYhrAFSaJg,1441
|
|
500
|
+
telnyx/types/call_siprec_failed_webhook_event.py,sha256=-WaaWZb0ag92LZ8BkOOBVWXgW_rIFonNtNtqmI10kjU,1649
|
|
501
|
+
telnyx/types/call_siprec_failed_webhook_event1.py,sha256=-WaaWZb0ag92LZ8BkOOBVWXgW_rIFonNtNtqmI10kjU,1649
|
|
502
|
+
telnyx/types/call_siprec_started_webhook_event.py,sha256=TSZ3qzmk84YLKVDiq3j6FGvrt8iDRhkAz5QFBjYFPtY,1574
|
|
503
|
+
telnyx/types/call_siprec_started_webhook_event1.py,sha256=TSZ3qzmk84YLKVDiq3j6FGvrt8iDRhkAz5QFBjYFPtY,1574
|
|
504
|
+
telnyx/types/call_siprec_stopped_webhook_event.py,sha256=rUA8ouoK5YN4RrQkeaUWD3I8O-CB7d92oo-nidHb150,1672
|
|
505
|
+
telnyx/types/call_siprec_stopped_webhook_event1.py,sha256=rUA8ouoK5YN4RrQkeaUWD3I8O-CB7d92oo-nidHb150,1672
|
|
506
|
+
telnyx/types/call_speak_ended_webhook_event.py,sha256=eQlrLgqLQGe_NOLoyWQ2QeE_WEI5XpoqUbKj6EqiMw4,1695
|
|
507
|
+
telnyx/types/call_speak_ended_webhook_event1.py,sha256=eQlrLgqLQGe_NOLoyWQ2QeE_WEI5XpoqUbKj6EqiMw4,1695
|
|
508
|
+
telnyx/types/call_speak_started_webhook_event.py,sha256=KV-PmcBXfjpgN2dipo7bw3WYlUE73Y4mr-TVFG5B6Ok,1576
|
|
509
|
+
telnyx/types/call_speak_started_webhook_event1.py,sha256=KV-PmcBXfjpgN2dipo7bw3WYlUE73Y4mr-TVFG5B6Ok,1576
|
|
510
|
+
telnyx/types/call_streaming_failed.py,sha256=tj6fkaGAK_Cm_-XCJ25Xos8dAaRufG7MlCPanzbaRZM,2346
|
|
511
|
+
telnyx/types/call_streaming_failed_webhook_event.py,sha256=zRqW4WYhQ7hBW3h3shTkTPMByJBZADL2HZN9pbzzBxA,349
|
|
512
|
+
telnyx/types/call_streaming_failed_webhook_event1.py,sha256=zRqW4WYhQ7hBW3h3shTkTPMByJBZADL2HZN9pbzzBxA,349
|
|
513
|
+
telnyx/types/call_streaming_started.py,sha256=WJjSsY7T6G7ytJwQVMkNORVURxq2xJFDp9zmuwiJsCo,1603
|
|
514
|
+
telnyx/types/call_streaming_started_webhook_event.py,sha256=pay6Wd3OvNChbrByhm7WlMLUT1EQHsJxAh5S-u63lQU,354
|
|
515
|
+
telnyx/types/call_streaming_started_webhook_event1.py,sha256=pay6Wd3OvNChbrByhm7WlMLUT1EQHsJxAh5S-u63lQU,354
|
|
516
|
+
telnyx/types/call_streaming_stopped.py,sha256=nUYrPfHgO1EpxASETvYN4NG3PoAACRNFbBTM7nFkijc,1603
|
|
517
|
+
telnyx/types/call_streaming_stopped_webhook_event.py,sha256=6PaqfknpyLsnOeOJCT55VH5Z_EK4BBsHgbqk4KwHW6E,354
|
|
518
|
+
telnyx/types/call_streaming_stopped_webhook_event1.py,sha256=6PaqfknpyLsnOeOJCT55VH5Z_EK4BBsHgbqk4KwHW6E,354
|
|
519
|
+
telnyx/types/campaign_status_update_webhook_event.py,sha256=ep_6y_Z17gOpC89-g-YYTG3AmP8PUC09Edx9dZA0w1Q,1511
|
|
520
|
+
telnyx/types/campaign_status_update_webhook_event1.py,sha256=ep_6y_Z17gOpC89-g-YYTG3AmP8PUC09Edx9dZA0w1Q,1511
|
|
521
|
+
telnyx/types/channel_zone_list_params.py,sha256=PYNFmR7qb75VpkAGwRrtPUjSzgLLNYGM2AYW3AXXOAM,434
|
|
522
|
+
telnyx/types/channel_zone_list_response.py,sha256=BwB8YIgzz4pjMBM_sXOSEieaZ7gHPkR9Wq1WsjdOKNw,714
|
|
523
|
+
telnyx/types/channel_zone_update_params.py,sha256=uPKqhtwEzT1WeFnqSQtI-DznHVqejp0Tm6Z8C_u7i60,339
|
|
524
|
+
telnyx/types/channel_zone_update_response.py,sha256=OkOKQDB74JL69xTqveOJ7Pp55YNnQCVamm2WNsJzfrU,718
|
|
525
|
+
telnyx/types/charges_breakdown_retrieve_params.py,sha256=Wzl5y_dvgGe6BGP0eQx4pzGwiRWFpOpX5gPuD8iEI7M,989
|
|
526
|
+
telnyx/types/charges_breakdown_retrieve_response.py,sha256=S4oxr4VW4jwfFRfqxfyw_giXcG3UmlL4S_DxuRJH_I8,1256
|
|
527
|
+
telnyx/types/charges_summary_retrieve_params.py,sha256=WlMwdrN0XTAG9UHYY8IyUvv5H57canI3PRP9zXehB3Q,865
|
|
528
|
+
telnyx/types/charges_summary_retrieve_response.py,sha256=EUbsepVd5Zl64aTj0bHkRnHXaj45jX3UNHebEbNeYl4,2514
|
|
529
|
+
telnyx/types/cloudflare_sync_status.py,sha256=vqYPyc4mM0BjtJrfKjZpy7q9xzC67AECSmgGiCQTzZw,235
|
|
530
|
+
telnyx/types/comment_create_params.py,sha256=S1nzHTZIs3RDAsgmFufE-UNfM6dJnmOWejAELoy94ek,377
|
|
531
|
+
telnyx/types/comment_create_response.py,sha256=kJ_kF8XjC4cJjRqGYgyRPPEdLUbfrsJqQeF7TSPvXSo,1002
|
|
532
|
+
telnyx/types/comment_list_params.py,sha256=qC5dSOBaDNcObTERsbm0YvMMOio8hFAR1VITqjlT5F0,802
|
|
533
|
+
telnyx/types/comment_list_response.py,sha256=V_N4HHQM1KGUTsIyoE6Fliaioz1GbLol3yK7NWR_LoQ,1097
|
|
534
|
+
telnyx/types/comment_mark_as_read_response.py,sha256=nnm4anoLgz_uDxnE85M6ffvZWBtBGaH4M09Eupor-hU,1010
|
|
535
|
+
telnyx/types/comment_retrieve_response.py,sha256=0FuiTWpTwFo9DbrWrtW4ISatAIg9PaBblfOsDqEJ0JU,1006
|
|
536
|
+
telnyx/types/conference.py,sha256=xDTJHT2v0fPfxrHBQglHJ7Jz01fAeZYycWaDJQ30sHA,1625
|
|
537
|
+
telnyx/types/conference_create_params.py,sha256=7kNbNoSicR5JAZ717jNt1eh9KrWrKgj3QlesykRzD5E,2547
|
|
538
|
+
telnyx/types/conference_create_response.py,sha256=ggiB8W7e31On8Y7spzEEjj890FsF673A-i8d8hveVgs,306
|
|
539
|
+
telnyx/types/conference_created_webhook_event.py,sha256=fCXR9FcME6nCdyQDmGy5i0KU5YttyylDBfzZQLIDcac,1672
|
|
540
|
+
telnyx/types/conference_created_webhook_event1.py,sha256=fCXR9FcME6nCdyQDmGy5i0KU5YttyylDBfzZQLIDcac,1672
|
|
541
|
+
telnyx/types/conference_ended_webhook_event.py,sha256=jMIyyQvVy5-ynEnfvXLozmG22taQyfbFtGMq34-Sm3Y,1785
|
|
542
|
+
telnyx/types/conference_ended_webhook_event1.py,sha256=jMIyyQvVy5-ynEnfvXLozmG22taQyfbFtGMq34-Sm3Y,1785
|
|
543
|
+
telnyx/types/conference_floor_changed_webhook_event.py,sha256=ANB74dYstoWOZYXISMbNL4H4wGgX8PF6Ac-9b_bfTC0,1343
|
|
544
|
+
telnyx/types/conference_floor_changed_webhook_event1.py,sha256=ANB74dYstoWOZYXISMbNL4H4wGgX8PF6Ac-9b_bfTC0,1343
|
|
545
|
+
telnyx/types/conference_list_params.py,sha256=oaYaMKgcR-PzN1kzgwfM5IwAvJPxBfJ5mhtt1knRxUw,3385
|
|
546
|
+
telnyx/types/conference_list_participants_params.py,sha256=Y0armgd6-RfwU8K7IPMmGJ-9y9kEEgIzusHdXMUZzJM,1251
|
|
547
|
+
telnyx/types/conference_list_participants_response.py,sha256=PL0hdWN58gfV4Aqbkc6poJ3M4hF7cZn_T5BpBuVCZVw,1826
|
|
548
|
+
telnyx/types/conference_participant_joined_webhook_event.py,sha256=wV4t8RuPy_jyoRJ1g0XBlovYLRfRMq4jIoAB3tYHByU,1703
|
|
549
|
+
telnyx/types/conference_participant_joined_webhook_event1.py,sha256=wV4t8RuPy_jyoRJ1g0XBlovYLRfRMq4jIoAB3tYHByU,1703
|
|
550
|
+
telnyx/types/conference_participant_left_webhook_event.py,sha256=GJJgA2iKtYqHQOEpuvyNRnhmA_2LtxiU7mS4UxUWaoA,1697
|
|
551
|
+
telnyx/types/conference_participant_left_webhook_event1.py,sha256=GJJgA2iKtYqHQOEpuvyNRnhmA_2LtxiU7mS4UxUWaoA,1697
|
|
552
|
+
telnyx/types/conference_participant_playback_ended_webhook_event.py,sha256=ONsKLwHtJzANFPTCxfTe0IWDEIOlzYf1Ep-HSjqzCKk,2138
|
|
553
|
+
telnyx/types/conference_participant_playback_ended_webhook_event1.py,sha256=ONsKLwHtJzANFPTCxfTe0IWDEIOlzYf1Ep-HSjqzCKk,2138
|
|
554
|
+
telnyx/types/conference_participant_playback_started_webhook_event.py,sha256=JwElP7hJB7Kps9QL-ZU2xnpWVIPFnF_-yuURUUMKe9A,2144
|
|
555
|
+
telnyx/types/conference_participant_playback_started_webhook_event1.py,sha256=JwElP7hJB7Kps9QL-ZU2xnpWVIPFnF_-yuURUUMKe9A,2144
|
|
556
|
+
telnyx/types/conference_participant_speak_ended_webhook_event.py,sha256=0Jztdxvj_BXGSk1kRIoqh4BaCdv06qFnA4M1etx76Mo,1860
|
|
557
|
+
telnyx/types/conference_participant_speak_ended_webhook_event1.py,sha256=0Jztdxvj_BXGSk1kRIoqh4BaCdv06qFnA4M1etx76Mo,1860
|
|
558
|
+
telnyx/types/conference_participant_speak_started_webhook_event.py,sha256=Pkhl3awfg7s9txLYF9_Cnysa_DRZAZc5qIFUNDkCXvw,1866
|
|
559
|
+
telnyx/types/conference_participant_speak_started_webhook_event1.py,sha256=Pkhl3awfg7s9txLYF9_Cnysa_DRZAZc5qIFUNDkCXvw,1866
|
|
560
|
+
telnyx/types/conference_playback_ended_webhook_event.py,sha256=NdYEK5WjezBqJiRNfi03jm73P23LBJYETgvNwHYkQi8,1478
|
|
561
|
+
telnyx/types/conference_playback_ended_webhook_event1.py,sha256=NdYEK5WjezBqJiRNfi03jm73P23LBJYETgvNwHYkQi8,1478
|
|
562
|
+
telnyx/types/conference_playback_started_webhook_event.py,sha256=-0V4JlCQKNpEtk-aoL4ay1PafalZW0FM0zYFjcgvOII,1484
|
|
563
|
+
telnyx/types/conference_playback_started_webhook_event1.py,sha256=-0V4JlCQKNpEtk-aoL4ay1PafalZW0FM0zYFjcgvOII,1484
|
|
564
|
+
telnyx/types/conference_recording_saved_webhook_event.py,sha256=dAtbb7EN8gPX9DOO8kBNvA8RBWVqXJEqZrG48337aHo,3743
|
|
565
|
+
telnyx/types/conference_recording_saved_webhook_event1.py,sha256=dAtbb7EN8gPX9DOO8kBNvA8RBWVqXJEqZrG48337aHo,3743
|
|
566
|
+
telnyx/types/conference_retrieve_params.py,sha256=Q95cmOJ8Rzr8x_Ej6TSAVZ2VylU9tvSQNRPJc7p3rCs,388
|
|
567
|
+
telnyx/types/conference_retrieve_response.py,sha256=EsRuiQaIETAO_Z9_ri26w4Y5HbA_ZbuE0AWap4kRodU,310
|
|
568
|
+
telnyx/types/conference_speak_ended_webhook_event.py,sha256=VqWDweNl2yitluDHunosk2dfaTFYi2ZNu-LeGzqR-2w,1200
|
|
569
|
+
telnyx/types/conference_speak_ended_webhook_event1.py,sha256=VqWDweNl2yitluDHunosk2dfaTFYi2ZNu-LeGzqR-2w,1200
|
|
570
|
+
telnyx/types/conference_speak_started_webhook_event.py,sha256=7942onAJINYvycip9O2ofoEp4FKlg2bRKqIoGYp-fVM,1206
|
|
571
|
+
telnyx/types/conference_speak_started_webhook_event1.py,sha256=7942onAJINYvycip9O2ofoEp4FKlg2bRKqIoGYp-fVM,1206
|
|
572
|
+
telnyx/types/connection_list_active_calls_params.py,sha256=ZK2wFotlaQUS1cffkRpn5s-cIfQpv1wnIUl9_PD4uLQ,454
|
|
573
|
+
telnyx/types/connection_list_active_calls_response.py,sha256=yNFial8BmEMD9u2pwtcyOe2gc1cQ69YZ5gmfadjCPVg,917
|
|
574
|
+
telnyx/types/connection_list_params.py,sha256=18XUWeZNIrlCnsHWItdHmuHvgUY0dsykItViGLHyITE,2319
|
|
575
|
+
telnyx/types/connection_list_response.py,sha256=5az3B_cx1qbL1e7j5hBzFyyMZlryZWtJbS0zBMrKyR8,1781
|
|
576
|
+
telnyx/types/connection_retrieve_response.py,sha256=n2shA0X93eXNR0gJZibcWAxD5WwwsBDi2is29MonYTM,1854
|
|
577
|
+
telnyx/types/connection_rtcp_settings.py,sha256=i-DvbUBvc3o2JmHTbI2hBwLOTTPQNjpzyBf3TH-04RE,786
|
|
578
|
+
telnyx/types/connection_rtcp_settings_param.py,sha256=x5Q7HBMQmzmTE3OTm7GzYsAYZsJf6Ar8jUSLck-mp3E,744
|
|
579
|
+
telnyx/types/consumed_data.py,sha256=0q00VOceiAOOGneokBxag-46F6jsvLPgP_ln6dSoj4Y,325
|
|
580
|
+
telnyx/types/country_coverage_retrieve_country_response.py,sha256=qCWG6EaAn1dGoXbFIWVac-vVhXa5CSYlB5psv3Jndfk,1841
|
|
581
|
+
telnyx/types/country_coverage_retrieve_response.py,sha256=HhIS6tSQPWHK1ndY_2KlB1Z9BAMOx5Xo-r7bzXvtEH8,1838
|
|
582
|
+
telnyx/types/create_verification_response.py,sha256=rX9zZedL3IEWPprSVtUIH9x46WtrWr15NHzVf0HjP0Y,270
|
|
583
|
+
telnyx/types/credential_connection.py,sha256=ziY_-b9fFe3AxcfiGgX_2Fwtb7bsbUstLo5NAMk36jE,6517
|
|
584
|
+
telnyx/types/credential_connection_create_params.py,sha256=6qQXIk4cQHkSZUpdkIhq0oj8hr6csndzzoic_cfwwvM,6242
|
|
585
|
+
telnyx/types/credential_connection_create_response.py,sha256=HaLQCfoH9S_SWp4CN3a7iWH5qzpvsTVSlmWI4u1uJtY,357
|
|
586
|
+
telnyx/types/credential_connection_delete_response.py,sha256=2Xje5fhwim_w38O4CoUcW8XQ9nGMZ1UQwkRJURRZieQ,357
|
|
587
|
+
telnyx/types/credential_connection_list_params.py,sha256=R8kXKllExhwjeSsLQiw6tTdw_s0WY3R9k4v4QIBbpV8,2339
|
|
588
|
+
telnyx/types/credential_connection_retrieve_response.py,sha256=F8tZfuw3NpA4LZmeukQJxUs7qiqYhVosPRfriwbUB1E,361
|
|
589
|
+
telnyx/types/credential_connection_update_params.py,sha256=qrwToKox8pik0RZTXGYStlIa1KcSXP0N-74JjalYp0Y,6058
|
|
590
|
+
telnyx/types/credential_connection_update_response.py,sha256=_qvEDRgAq0SAV6bqe7UmRJ1POkfKpuTzy73FIx7wHRs,357
|
|
591
|
+
telnyx/types/credential_inbound.py,sha256=WtW7hw5PrugflRU7v4pqoA8CrrgabZQDQv1S11acG8o,2316
|
|
592
|
+
telnyx/types/credential_inbound_param.py,sha256=5rsSZv0clkYr4AanKOv6VcmM3HHL2c0-f3gySvNq6GI,2162
|
|
593
|
+
telnyx/types/credential_outbound.py,sha256=mC46QkajdRoTsmx_cwL8mMK0A68D2MahguaTutvDRTQ,2352
|
|
594
|
+
telnyx/types/credential_outbound_param.py,sha256=_IFnpqeGKijVZIWO2xcqiyvhJiMOVRUrRJ0uWlcTeEI,2232
|
|
595
|
+
telnyx/types/custom_sip_header.py,sha256=ajrLT111FDNiJFWAt5InCCa9SxSiIla1JQUZlxYzVTQ,292
|
|
596
|
+
telnyx/types/custom_sip_header_param.py,sha256=k42em8N3RkXfMkNWEtyv7qsW9Mqw12Z-TwUuYdT5WXI,389
|
|
597
|
+
telnyx/types/custom_storage_configuration.py,sha256=8HP7lZDJLT8oJoq06GHo3ox24eX8tMlmDrYu7KGa_Uc,752
|
|
598
|
+
telnyx/types/custom_storage_credential_create_params.py,sha256=JzqQTnrIFKXBZ8kX1b-ZP-lkLTOFTQk9U3ZRzHZu8Fc,776
|
|
599
|
+
telnyx/types/custom_storage_credential_create_response.py,sha256=--P1xP5rAs8TbAE9R1NirvaF41XBopGY_N6RedUbY5U,604
|
|
600
|
+
telnyx/types/custom_storage_credential_retrieve_response.py,sha256=U8WKFViY8-A1lGGsQ_MoJ90bUp7dlWkLjveddA3YEmY,608
|
|
601
|
+
telnyx/types/custom_storage_credential_update_params.py,sha256=C60LlfFoszWIhOoraINj6hY7yjkdBlAEVrfT4tH60Pg,776
|
|
602
|
+
telnyx/types/custom_storage_credential_update_response.py,sha256=MWUXGCiAJR9XoXu3-faMiv48pPw9E1sgaCvZrUW2Fuw,604
|
|
603
|
+
telnyx/types/customer_service_record.py,sha256=Oa05wF6dgyakg8A_CQDizKTE7-YGsLoLimVqbVP7Vns,2845
|
|
604
|
+
telnyx/types/customer_service_record_create_params.py,sha256=u1GLJ-FMsG9gU4MtHD-dGuEosUD_P4snYZYrg2LSajQ,1330
|
|
605
|
+
telnyx/types/customer_service_record_create_response.py,sha256=evFtX8yJ_FXEjEo0DMtp2ptVrU_5yjZ0ArgvtT1p3Tg,363
|
|
606
|
+
telnyx/types/customer_service_record_list_params.py,sha256=EyiY0nn8JMdplxuBWmFpd1bNFV6-Rxjp8hrohi2HTy4,2627
|
|
607
|
+
telnyx/types/customer_service_record_retrieve_response.py,sha256=07_PV2iPF3H8LLaOfDJ8MugnJ9vKcj7jrnlShE4_er0,367
|
|
608
|
+
telnyx/types/customer_service_record_verify_phone_number_coverage_params.py,sha256=BjQhJJYzvef09G8vJEbEzwVVDjFfOXf3eWLguZ18ktM,462
|
|
609
|
+
telnyx/types/customer_service_record_verify_phone_number_coverage_response.py,sha256=jQirZgkVJG40Rm6pmbAcef7aq0QYVTwZov3Q-CDulaM,1388
|
|
610
|
+
telnyx/types/delivery_update_webhook_event.py,sha256=s5ull5rIhYLD58VD6sDVGnORFYY2K23acxDslvg-FeA,1153
|
|
611
|
+
telnyx/types/delivery_update_webhook_event1.py,sha256=s5ull5rIhYLD58VD6sDVGnORFYY2K23acxDslvg-FeA,1153
|
|
612
|
+
telnyx/types/detail_record_list_params.py,sha256=nMcWU_UCgUXogeuAwazd6HMgMaaiqLkOQZ6lWUCnjbA,2170
|
|
613
|
+
telnyx/types/detail_record_list_response.py,sha256=A8UvAyfqKZiuaGohnfkXKVR0U6V35OBR0i1jG8Vm-w4,13439
|
|
614
|
+
telnyx/types/dialogflow_config_param.py,sha256=_b-DntBBdjqtmojDCUsFdsZkUpSC8fk7GHjf7vAi_SA,441
|
|
615
|
+
telnyx/types/dialogflow_connection_create_params.py,sha256=QByCPUPRM1qxN2Ax6vWwW-KDDqzNP40wXfWkCENlfjo,880
|
|
616
|
+
telnyx/types/dialogflow_connection_create_response.py,sha256=5WpqTfJfSKzYgT0ttRX63OFHkVJ3jZD4rnvKx8I3sZ4,834
|
|
617
|
+
telnyx/types/dialogflow_connection_retrieve_response.py,sha256=7zkhtGXS_T2nJxXhPWfkxO-7svptLc1AMX0PLdqLiSs,838
|
|
618
|
+
telnyx/types/dialogflow_connection_update_params.py,sha256=sYD7qggWOuuEc8ajJJbaO_mNs2N1DSu-zdx-ioApaXk,880
|
|
619
|
+
telnyx/types/dialogflow_connection_update_response.py,sha256=iH8x461sDBP4GTzwdVoOHG2iYqedYLCKD0sVkHqO1iI,834
|
|
620
|
+
telnyx/types/doc_service_document.py,sha256=-b2RLqDHbjTRHzVCKs9kGjFh0r8kF1ib3OsVs73qrcQ,1585
|
|
621
|
+
telnyx/types/document_delete_response.py,sha256=kKs1qRGn8G_X5i-i8ktv1zZkWk44BSFm9gOJTO5uAlw,328
|
|
622
|
+
telnyx/types/document_generate_download_link_response.py,sha256=tAX-ZsAO8p5Xgs7Pq3rRYQ_bdTbYCyb0U7MB1w6TjOM,353
|
|
623
|
+
telnyx/types/document_link_list_params.py,sha256=VIrEt6OcW-T7yiNbGegbtOXbTnI-MPT_c02MSJBatYU,1002
|
|
624
|
+
telnyx/types/document_link_list_response.py,sha256=TfM-e3P8DMUT0fDP-p6hfKXTmWei54wus2BuCGKjJQc,885
|
|
625
|
+
telnyx/types/document_list_params.py,sha256=l4UR3Ls2XPCx3fijTHzyJjOZ8fge1nKC-gsyRlkRdFQ,2221
|
|
626
|
+
telnyx/types/document_retrieve_response.py,sha256=22mTiLGxPa_ClgA0K0wQ_utozd_FffrM3m1XJtNkGcM,332
|
|
627
|
+
telnyx/types/document_update_params.py,sha256=-pdFL8Ra8mn8accOvApZTnu5bVky0hZJlsBIQs4JMK8,399
|
|
628
|
+
telnyx/types/document_update_response.py,sha256=K4eMjEPsMpJ4daDpu08PgZqNuwEzzt3JPOUjBySBfjY,328
|
|
629
|
+
telnyx/types/document_upload_json_params.py,sha256=rPdsTbtVgRrmhczs_gUF2p0vNFKI4Wf3rQSRSVZKMdE,1086
|
|
630
|
+
telnyx/types/document_upload_json_response.py,sha256=2uLgMh6y07-rHOnK00J95CbFxIzNBDN9tdwaIE81qY0,336
|
|
631
|
+
telnyx/types/document_upload_params.py,sha256=0R12WA_psKG1UD3zALHczkQr8tt07OYjLZTMSb4OMvM,1078
|
|
632
|
+
telnyx/types/document_upload_response.py,sha256=81z3z6mwwWMdIX2JGds3q4baK0x8WAMiyHeCYL_4EHo,328
|
|
633
|
+
telnyx/types/dtmf_type.py,sha256=lPGsm0CFOe0KBJR7pxOnxNr7XlB3TKa81JuAH5oCS8I,225
|
|
634
|
+
telnyx/types/dynamic_emergency_address.py,sha256=JumydEPH87-jK1JnYQ308GfbxaMBKR4yEMzjZifM6h8,1261
|
|
635
|
+
telnyx/types/dynamic_emergency_address_create_params.py,sha256=hA-D-6MGiSRBuQ_r4AmRobaxA2DHDj1i8LbONNAcse8,663
|
|
636
|
+
telnyx/types/dynamic_emergency_address_create_response.py,sha256=tVMLfl7ZBeD2R8WbFpQ6GrDgG_UpIdurLyLkF7lXhCI,373
|
|
637
|
+
telnyx/types/dynamic_emergency_address_delete_response.py,sha256=4hJZd6WD7Ed85pcM8T6NfMVl5FkDjKFBIOc0dpw4IE8,373
|
|
638
|
+
telnyx/types/dynamic_emergency_address_list_params.py,sha256=ganuii0ajCExwURSpkodVOmI0RV6zISc0rSnNQ2BRmQ,917
|
|
639
|
+
telnyx/types/dynamic_emergency_address_retrieve_response.py,sha256=beh6mwnDhSinFiD48lE1axbzU6Dvejz_Ft2atuI2LKU,377
|
|
640
|
+
telnyx/types/dynamic_emergency_endpoint.py,sha256=SoxUXlRVSplCD18fnMaUG6RAjqgC7sG3GSvXyUCaSsM,913
|
|
641
|
+
telnyx/types/dynamic_emergency_endpoint_create_params.py,sha256=E-K_qz1aEYOwQL3n47zLsijfnyxDMGidJngL51tF1Zc,477
|
|
642
|
+
telnyx/types/dynamic_emergency_endpoint_create_response.py,sha256=4vu1i4KEWs8kzFKMpzkvmaPYKcvNuDOCJY_QKVfsjU0,378
|
|
643
|
+
telnyx/types/dynamic_emergency_endpoint_delete_response.py,sha256=fENqtFNChOE3hTiva1J6U7yJh9h2rDTmQIrH7j8kWAU,378
|
|
644
|
+
telnyx/types/dynamic_emergency_endpoint_list_params.py,sha256=aUPxe8zMyLNfPEst5k_syYKpQ8mtsrVuAttRbs-KARM,919
|
|
645
|
+
telnyx/types/dynamic_emergency_endpoint_retrieve_response.py,sha256=UjgWjbsBHC8Krwt_gcpq2Q4GLw9rokjvMQAUl7pZtbI,382
|
|
646
|
+
telnyx/types/encrypted_media.py,sha256=gep-8QZ1MEwmJ_aDd9Ym-OVKEcIXHZlM_jvWkT7ldJY,249
|
|
647
|
+
telnyx/types/external_connection.py,sha256=HJ6xD76XN4sROHafTteQtTIwy41mEb0d_HMvzDR-908,2375
|
|
648
|
+
telnyx/types/external_connection_create_params.py,sha256=5Usdh8btlE4cdt8vQh9qznKRTMWGbqOR5Ed09LQOuvE,1815
|
|
649
|
+
telnyx/types/external_connection_create_response.py,sha256=lFrIZXYzVmlcXuHraptL6k7NweJ_Asc2X3frkd8d5cc,347
|
|
650
|
+
telnyx/types/external_connection_delete_response.py,sha256=NIwCN0v4HN8HSvuXX8cz0Q2ivZToytjkIFJJkR4DtUo,347
|
|
651
|
+
telnyx/types/external_connection_list_params.py,sha256=HDkHBvUVG6F94aCRn-I193y5mgsR8ExIsMpJakXsE50,2300
|
|
652
|
+
telnyx/types/external_connection_retrieve_response.py,sha256=3HPHLm-6jYFjuUXBMh2EHOHsw9l6IOBx9M6zYzdmA0k,351
|
|
653
|
+
telnyx/types/external_connection_update_location_params.py,sha256=8O3ON2HU6YwIDjPVh2CDKeY57sZigslt--9qlgOiT5o,441
|
|
654
|
+
telnyx/types/external_connection_update_location_response.py,sha256=4cGAnY_WFqai4nRUocd3Pxj_UEE_zxhxIYi5IiUYchE,480
|
|
655
|
+
telnyx/types/external_connection_update_params.py,sha256=Ok1Oe9c2rEqpMvxIn11KxsWrdP30ljJXy-mNKiMOY2Y,1579
|
|
656
|
+
telnyx/types/external_connection_update_response.py,sha256=2p8qkkiRVv2SLPVPEI89kj8SVM0EZkrhbvkWGIyLcqc,347
|
|
657
|
+
telnyx/types/external_voice_integrations_pagination_meta.py,sha256=zi1ZxAuKPrUfNeL2QS5h3BrW0ohtsHhgZxdFAlkAdlQ,384
|
|
658
|
+
telnyx/types/fax.py,sha256=7ETX6rzk1-OI6EDY46etLm2-0NgIx5ygGenEHWSVMVA,3220
|
|
659
|
+
telnyx/types/fax_application.py,sha256=8Pw6o5WK0n-7DyvWcdbJhxWSwvtcnjNb1gILk6A7FIA,3239
|
|
660
|
+
telnyx/types/fax_application_create_params.py,sha256=ZFae8rRfxxy60Yp9JFImvs1azGmB6Dv4lM-A5E9Q0cA,2781
|
|
661
|
+
telnyx/types/fax_application_create_response.py,sha256=CxbkkI6uYzWW_aCz35u5AcB7TF4Nbi6aFdItA_1ERnc,327
|
|
662
|
+
telnyx/types/fax_application_delete_response.py,sha256=Ev09kcStaWFde1CodwFyiVUCvqBzpUriMvnp-fOishc,327
|
|
663
|
+
telnyx/types/fax_application_list_params.py,sha256=XcawBtLeByyJUsM7jqShGA46NLKdgH0pWalLskXfNPY,2036
|
|
664
|
+
telnyx/types/fax_application_retrieve_response.py,sha256=lr7XQMsYEB6TVZiStkztnmjTP6I3YCRE4KT_PP9xlUw,331
|
|
665
|
+
telnyx/types/fax_application_update_params.py,sha256=UsOhYCf2WQl4395xro9fihRuJvDaftYt0jnFAfTadSk,2959
|
|
666
|
+
telnyx/types/fax_application_update_response.py,sha256=g4jaE6eD4PVDapMuFXEYRVAx-Il1shPKWXG9Y5AONEA,327
|
|
667
|
+
telnyx/types/fax_create_params.py,sha256=NduViuHO2glaYczhqC8UOaxSwnTypRDNIDyBO8udMLE,2743
|
|
668
|
+
telnyx/types/fax_create_response.py,sha256=0LiA8SFITw3My107KPfJEJ5wjgvcy1PIsw9Wi2vXmRQ,271
|
|
669
|
+
telnyx/types/fax_delivered_webhook_event.py,sha256=OUk6LXd36jA3wkVPoTa0OEHQJzAgQrBGa7tsir6IJaA,2033
|
|
670
|
+
telnyx/types/fax_delivered_webhook_event1.py,sha256=OUk6LXd36jA3wkVPoTa0OEHQJzAgQrBGa7tsir6IJaA,2033
|
|
671
|
+
telnyx/types/fax_failed_webhook_event.py,sha256=LAmPopendd-_to3wSEzbJTczMnW3LfPRahC76q3wP9Y,1949
|
|
672
|
+
telnyx/types/fax_failed_webhook_event1.py,sha256=LAmPopendd-_to3wSEzbJTczMnW3LfPRahC76q3wP9Y,1949
|
|
673
|
+
telnyx/types/fax_list_params.py,sha256=B3QU5HjHrfZphlKzD_ZfvNLpxljcnnqb9UBgRcutHDQ,2761
|
|
674
|
+
telnyx/types/fax_media_processed_webhook_event.py,sha256=aJSpumXg7R_4vBBIb3lS7X9F-wvJVcCgOUHr-letHAM,1886
|
|
675
|
+
telnyx/types/fax_media_processed_webhook_event1.py,sha256=aJSpumXg7R_4vBBIb3lS7X9F-wvJVcCgOUHr-letHAM,1886
|
|
676
|
+
telnyx/types/fax_queued_webhook_event.py,sha256=KeZeQuBlM-b7zk9vL7kz5EIvBKRuQdR_V6mNeqk4uTU,1852
|
|
677
|
+
telnyx/types/fax_queued_webhook_event1.py,sha256=KeZeQuBlM-b7zk9vL7kz5EIvBKRuQdR_V6mNeqk4uTU,1852
|
|
678
|
+
telnyx/types/fax_retrieve_response.py,sha256=HNHPttDOk7sI5qRTJki653d_c_-CqrD_5Szeih4PLaE,275
|
|
679
|
+
telnyx/types/fax_sending_started_webhook_event.py,sha256=p9xk7UnQxxuzxfIA9W80r5sQbhHK9zEdb1YPohMB49Q,1878
|
|
680
|
+
telnyx/types/fax_sending_started_webhook_event1.py,sha256=p9xk7UnQxxuzxfIA9W80r5sQbhHK9zEdb1YPohMB49Q,1878
|
|
681
|
+
telnyx/types/fqdn.py,sha256=UG2PjoDPWpQw6sVEIPo5wWxa8eLjyHeSr1TZsJtwssk,1158
|
|
682
|
+
telnyx/types/fqdn_connection.py,sha256=FMzwhE9R2KRjadxk1jahw6dnMcM8RnZAdutU-yPbKbc,7364
|
|
683
|
+
telnyx/types/fqdn_connection_create_params.py,sha256=o4wMl8DIxQNYjlV46ESzg3-z1kWdxOZ8guFQUXPJaEg,5757
|
|
684
|
+
telnyx/types/fqdn_connection_create_response.py,sha256=jBQQSBgHiebHAM-88QRkQ6MRxKoZzCOfZ4MzmYIqM4g,327
|
|
685
|
+
telnyx/types/fqdn_connection_delete_response.py,sha256=1Ob9iRfPP_y6M-yIqyTL9p9Y8Zq48tPZiOPs_3ekGt0,327
|
|
686
|
+
telnyx/types/fqdn_connection_list_params.py,sha256=8CLbSL8J3ej1zYiSjWESaR02z1ox8QXIqX9Mhwa2fy4,2327
|
|
687
|
+
telnyx/types/fqdn_connection_retrieve_response.py,sha256=Q0a_AMV86r7sjBDniH_Pzcs8TYrovJ1I0MsF9YX7U20,331
|
|
688
|
+
telnyx/types/fqdn_connection_update_params.py,sha256=tOHWWtTeV3vAgotthk2-TSQd4PpFkCdhbr4iOxTHcYc,5529
|
|
689
|
+
telnyx/types/fqdn_connection_update_response.py,sha256=qkWV8k2V94-3h-pvpExAFfKm5z2mS0CzzsJDsBy5qGs,327
|
|
690
|
+
telnyx/types/fqdn_create_params.py,sha256=XlsZOd3vpMA2g8_9KCEfirxoVeE6yzZS3obXWXpWNec,846
|
|
691
|
+
telnyx/types/fqdn_create_response.py,sha256=iYpL_OO1SHpy-kptK_UU-obsFXaMKZ2JI5dSaJDFVo0,276
|
|
692
|
+
telnyx/types/fqdn_delete_response.py,sha256=ejbmu4Qu0OyvG5pSXWp9kCRy8N4TufysmAiU31StIrU,276
|
|
693
|
+
telnyx/types/fqdn_list_params.py,sha256=Ajz370eVK6Ylhe47hzJacIQw1d0UXI7xmf9oVbAwxWM,1090
|
|
694
|
+
telnyx/types/fqdn_retrieve_response.py,sha256=hV3nxN_gn9dEMJOeB_Djr2jvru1ki_Fu3U6gRgFe3ik,280
|
|
695
|
+
telnyx/types/fqdn_update_params.py,sha256=ZxytN1IGdK7AazO0adj2keaYcLQcrbg0FZSVDo9GzRY,806
|
|
696
|
+
telnyx/types/fqdn_update_response.py,sha256=4-MH10Fql-YEbJUv7PAg7Fy_zW9jT_ADMvmtFsv3Uyc,276
|
|
697
|
+
telnyx/types/gcs_configuration_data.py,sha256=0fPfH5qqAN9BQF-qFiX54RSk4ASiUHWpqAcMJCtEVoY,567
|
|
698
|
+
telnyx/types/gcs_configuration_data_param.py,sha256=C8IgFUwIRcQvoK-UY_b3weHwdIpRVmLW69c9YoHbxXA,562
|
|
699
|
+
telnyx/types/global_ip_allowed_port_list_response.py,sha256=H4-7w8b2CS64so_sNuYaFL3rx02LCFiAV-dvIFHhkmU,774
|
|
700
|
+
telnyx/types/global_ip_assignment.py,sha256=_aODP7itEjsZrx8eksir4DglePBt41eVqBjLtHeyWq8,609
|
|
701
|
+
telnyx/types/global_ip_assignment_create_response.py,sha256=3Nk2qDHmXHnn6Mk34iBu6dTJiVDQbgKRBH8cVrNtan8,348
|
|
702
|
+
telnyx/types/global_ip_assignment_delete_response.py,sha256=vI-3WS5HN8mjsw75lbOKLNG_DR0UrU6Rkg9wVNnV2Xg,348
|
|
703
|
+
telnyx/types/global_ip_assignment_health_retrieve_params.py,sha256=eZPWtHbWEfR1Tvg4At_m6jNkAJ7SiXr5P3QJzFS0qjE,1708
|
|
704
|
+
telnyx/types/global_ip_assignment_health_retrieve_response.py,sha256=5rYTeysqPol_BEvQ6CKmLzpmXgVcFjP74kP1XC42RjY,1628
|
|
705
|
+
telnyx/types/global_ip_assignment_list_params.py,sha256=hczxRznopvl6CG9g07K22LCM9pyUhyIATR9IlpinH8Q,448
|
|
706
|
+
telnyx/types/global_ip_assignment_param.py,sha256=RM74DHBtsMsROaJG0CyP-OMKueoJ3kG31D3VLAcV9vU,268
|
|
707
|
+
telnyx/types/global_ip_assignment_retrieve_response.py,sha256=gHXHPwjLpqHLepGeQk_YTgp1OLwrvKIkQSKZnIS3XTg,352
|
|
708
|
+
telnyx/types/global_ip_assignment_update_params.py,sha256=814oASgF1ehpD_02tkpbUbuQmmXx9fJPRWt9OUTXXXs,679
|
|
709
|
+
telnyx/types/global_ip_assignment_update_response.py,sha256=WO68c_jECZdL2cUMuWs2FKusk_wpZAsJVYuG0vs1vus,348
|
|
710
|
+
telnyx/types/global_ip_assignments_usage_retrieve_params.py,sha256=GGYhMV6KKtEYWa78EkDJCz12ybFDCnk68haxstyMAZk,1708
|
|
711
|
+
telnyx/types/global_ip_assignments_usage_retrieve_response.py,sha256=17kQvuX8DiY_Tm3yaLwlP3VziKf5Joo10OeYLMumt-c,1828
|
|
712
|
+
telnyx/types/global_ip_create_params.py,sha256=e242eIxYSsKbQN5qTEUjIczP4dT4Ofb9q02jfKJZPB4,502
|
|
713
|
+
telnyx/types/global_ip_create_response.py,sha256=dCfUv1MXYwK8D9g4Rp_VJGoHOY4H-WH6jM3PqAn_kHI,671
|
|
714
|
+
telnyx/types/global_ip_delete_response.py,sha256=olpXrPW0p5HcD47hPvJcuCKew4nZyrFWYxZPl2SvLyk,671
|
|
715
|
+
telnyx/types/global_ip_health_check_create_params.py,sha256=ZVRIPypvozFKA-XvaklVI_f3Aawepqb4J_MuQnK_GEE,503
|
|
716
|
+
telnyx/types/global_ip_health_check_create_response.py,sha256=J2fRLGPHAG7fz2pSrJbN_Dxv_CLtFWoSm36MNBBsvoU,601
|
|
717
|
+
telnyx/types/global_ip_health_check_delete_response.py,sha256=hbBOD4MeF_KPjH3k4UIKYhYZXsXegumHMDkMK2ifnb0,601
|
|
718
|
+
telnyx/types/global_ip_health_check_list_params.py,sha256=kwwXPGvg5T9U28Ro6tu3lGNHS9Kfdv7b2c0qHURjy14,450
|
|
719
|
+
telnyx/types/global_ip_health_check_list_response.py,sha256=qGNPOnymIk0j7kIkHHHU0eiEAWm7esYZrSIYwjNt7vM,500
|
|
720
|
+
telnyx/types/global_ip_health_check_retrieve_response.py,sha256=oj5cU7J-P_7nzCCZPHy9R9ZE9ptf5uJ9mrJJfU4nLJo,605
|
|
721
|
+
telnyx/types/global_ip_health_check_type_list_response.py,sha256=8FYPCA-KZic37D9197aQn0tTCX2qN2wZ_7_zyK8ygRo,609
|
|
722
|
+
telnyx/types/global_ip_latency_retrieve_params.py,sha256=QZMRhYjLpH8LxH2-xmJGBjseeeJajG4KL4QP9gCl5RI,1034
|
|
723
|
+
telnyx/types/global_ip_latency_retrieve_response.py,sha256=oXCzlK9cIHGno5YAQGbSiQzrZWfRTUZb6-zHXTPYwnk,3180
|
|
724
|
+
telnyx/types/global_ip_list_params.py,sha256=4CzWIB32N1QSivDUP4YP1UqEGl2YD0t7yEY0Q47uEQI,428
|
|
725
|
+
telnyx/types/global_ip_list_response.py,sha256=Stmhwt1w4UfEwWN-vwQGIalr57YSvD727jLEFS1wa6I,570
|
|
726
|
+
telnyx/types/global_ip_protocol_list_response.py,sha256=rc1nYUw5WRbn5lcE_nMy-WjeG4JAyicaeiBCN3QVzZE,547
|
|
727
|
+
telnyx/types/global_ip_retrieve_response.py,sha256=4aOSDMk03qEMg7xE8X-RXq-Gl3bUQ-vPMrCAOTuIQr0,675
|
|
728
|
+
telnyx/types/global_ip_usage_retrieve_params.py,sha256=rNESKuhnd7SV2cO9a3teBKXNPpY4WOyRt9HhNRQ4B3M,1030
|
|
729
|
+
telnyx/types/global_ip_usage_retrieve_response.py,sha256=W9Q5wX7pIOrDoyKNR5-HcFhtEe48TQzOY_S0cvjZtCU,1169
|
|
730
|
+
telnyx/types/inbound_channel_list_response.py,sha256=NK3YJPL41tz9KbklLQVElsPkhO6qYqjwHm0x58W0wo0,494
|
|
731
|
+
telnyx/types/inbound_channel_update_params.py,sha256=H4tTrypo5U5VNFBVcUd0HQUzoDhXiu3pm4sXvn767OI,367
|
|
732
|
+
telnyx/types/inbound_channel_update_response.py,sha256=7yNLrDclWAmzICqurOzKVeu20Du8kLvRl_R1NmzFCsI,479
|
|
733
|
+
telnyx/types/inbound_fqdn.py,sha256=gRTjhor3JBPGjVB9JDRD8ulsTn3v5Z-UydzmR9fuvoI,4078
|
|
734
|
+
telnyx/types/inbound_fqdn_param.py,sha256=gLRAwVYISGgI1vE6RhyJomKFwUfnuOMnAQNpw9QWnoc,3910
|
|
735
|
+
telnyx/types/inbound_ip.py,sha256=GOJSmMdUMrBddHa1TSlhJvAK_XR0uYOPVYlkaU6MnFA,4134
|
|
736
|
+
telnyx/types/inbound_ip_param.py,sha256=KNam6F3fJX_b7sOUlQiEA7NVRQtVmHSBjkzFyJ3zt4o,3878
|
|
737
|
+
telnyx/types/inbound_message_webhook_event.py,sha256=tN7mZbc_W0-7kMY-bGQhvYis0uONiEQodBdSxnfUqEE,887
|
|
738
|
+
telnyx/types/inbound_message_webhook_event1.py,sha256=tN7mZbc_W0-7kMY-bGQhvYis0uONiEQodBdSxnfUqEE,887
|
|
739
|
+
telnyx/types/inexplicit_number_order_create_params.py,sha256=1B3ZUNMtDcMo903erBxF3xY0D_MQIdeADTg841yX01k,2919
|
|
740
|
+
telnyx/types/inexplicit_number_order_create_response.py,sha256=r-ZZZCShtUYNJCNMiSbPbFRXwmva4hUyVUncHtY7ugg,388
|
|
741
|
+
telnyx/types/inexplicit_number_order_list_params.py,sha256=H1idCCrLy1pRVEDDomRFw2O4ZJ_LWWIzKzMtLAV0WL8,381
|
|
742
|
+
telnyx/types/inexplicit_number_order_response.py,sha256=3SkcV5RkMrwOe4zjlK8ZQsXEylsLW0jCabQBP4R8I4g,3501
|
|
743
|
+
telnyx/types/inexplicit_number_order_retrieve_response.py,sha256=m9fRU4ihcb6BfjlqZ_U6LabNgQy42wPcqpRg773uEzc,392
|
|
744
|
+
telnyx/types/integration_secret.py,sha256=iod7QJKV0aqvMJHDjKJyAe4PYmQfAjCWGBTOutYjkfA,373
|
|
745
|
+
telnyx/types/integration_secret_create_params.py,sha256=DoWwA0bhSj6SIljRMN7iv3ZNmQN_npNO-JOf6q-ldgc,790
|
|
746
|
+
telnyx/types/integration_secret_create_response.py,sha256=-n6QbC8716Z-zGHnhFics9-Wd8KXNNfa5kKb_hn5vD8,296
|
|
747
|
+
telnyx/types/integration_secret_list_params.py,sha256=BmDvk4JoKj3357R0uNGF0F5-KdO7tHK48a6GQJB3pMk,733
|
|
748
|
+
telnyx/types/interface_status.py,sha256=vnWdgi1uHsb1BtzF0PXqjf4ZUTIWnf0lPR7MkTLHRMQ,259
|
|
749
|
+
telnyx/types/inventory_coverage_list_params.py,sha256=ageM6YHuzGzXX0l5SLBGr6IZmiEJCiGIE8G2ftYup14,2179
|
|
750
|
+
telnyx/types/inventory_coverage_list_response.py,sha256=w8ZNE4wLVnTa5yxODMOnq5cczPYr8iOdkw04Yqfaquc,1060
|
|
751
|
+
telnyx/types/invoice_list_params.py,sha256=dbrSeJtjEHRzVDQK6zfai4v8yAC6kK5kubt20C7DRWc,535
|
|
752
|
+
telnyx/types/invoice_list_response.py,sha256=2uHOm_K_FB-_5gdBnyeRurlcU3xJ9YOv4arVqG6RyXo,465
|
|
753
|
+
telnyx/types/invoice_retrieve_params.py,sha256=bfpM2eDVXM0T7FGt46Prd8TnaU7h8Ur18rkaEwBzapo,325
|
|
754
|
+
telnyx/types/invoice_retrieve_response.py,sha256=Shvm4JL41ccxAdnnmdz1nHY-pLcVgYz7bzYBcYaqBGc,646
|
|
755
|
+
telnyx/types/ip.py,sha256=RSwRfygR4d-_EgI-FgFEsW_b2BfZJ19R7mocu5Jjcbg,859
|
|
756
|
+
telnyx/types/ip_connection.py,sha256=v1amoEoLIJlbuhy29uX0KjcSlFR_GexfY_p7TwYX8Y8,5786
|
|
757
|
+
telnyx/types/ip_connection_create_params.py,sha256=-Bb_n_TCEgSoyEcS5WSu6nzWFjClSpzTm0qj5exTEbg,8257
|
|
758
|
+
telnyx/types/ip_connection_create_response.py,sha256=QUqCPTWkTH0Mb2wZGBn1MlX5Uf7AG5D8EVkhiyz5NNU,317
|
|
759
|
+
telnyx/types/ip_connection_delete_response.py,sha256=5PQmnKYa4l-cSFfWwRx_NnU4ZM7RE6CqcmI87xTKd_8,317
|
|
760
|
+
telnyx/types/ip_connection_list_params.py,sha256=oEc0PsLzKeV9DpCaPD2oAiJod0MS7e9NQnlyrPLBR8o,2323
|
|
761
|
+
telnyx/types/ip_connection_retrieve_response.py,sha256=n-CUM-CzVIHyVPIerlCR7gK2Vyf5f2dpmzZx5gy9bPs,321
|
|
762
|
+
telnyx/types/ip_connection_update_params.py,sha256=leryw72VFKaY1mvVnopfVgoKUPKv84jrEsXyTC5mA9c,5356
|
|
763
|
+
telnyx/types/ip_connection_update_response.py,sha256=EN-GukpeJY9sZlP6tX1ZCaZNbifFeW44cbvAAdli_BA,317
|
|
764
|
+
telnyx/types/ip_create_params.py,sha256=1i8FqhZM-eQ0H41fL59wa4dtxNi7tExbPlDiQ4D-fag,493
|
|
765
|
+
telnyx/types/ip_create_response.py,sha256=Uckq1_DTTr1xE0naoQRFVqDYj3axzWEDETGOjrIt1bs,266
|
|
766
|
+
telnyx/types/ip_delete_response.py,sha256=EgmWr-xD1nYZYsLZTJOuFfDKqYpgL0j-Hc9dpqGMDcE,266
|
|
767
|
+
telnyx/types/ip_list_params.py,sha256=X_qQz6nRJp8RCwbR2h6v01-cArggskNAbVkJ34h8psk,995
|
|
768
|
+
telnyx/types/ip_retrieve_response.py,sha256=nU6bXtxoSbIwhdA-F_evbzkY_tEBHELqswOM9FMWdiA,270
|
|
769
|
+
telnyx/types/ip_update_params.py,sha256=CF3ddXGC7qC64M-bILSbK5M2dn0EWjawjyfIFhcX1No,493
|
|
770
|
+
telnyx/types/ip_update_response.py,sha256=rBqbzwGDFgSeRV0S6nUSO1crx7094qtfeXnqM8fuUPM,266
|
|
771
|
+
telnyx/types/ledger_billing_group_report.py,sha256=ywIzPZsbG6XPg3JgFtrr4LYdS4YDWDQhiBbGEUVVvL0,1103
|
|
772
|
+
telnyx/types/ledger_billing_group_report_create_params.py,sha256=o_tg5q25ln0PQLatVN6o-7RoqY3oGzk_e0ziugR0cjE,416
|
|
773
|
+
telnyx/types/ledger_billing_group_report_create_response.py,sha256=tRb87tzw-7pVdmhhF0orQoKPiSMDexuqJLQe53-X6vY,379
|
|
774
|
+
telnyx/types/ledger_billing_group_report_retrieve_response.py,sha256=G3gZ6g4C705dcxi0qQGUfnql-B_3ova2-gBJUgakSrc,383
|
|
775
|
+
telnyx/types/list_retrieve_all_response.py,sha256=4NBVNSCVCdGu3vrg_vU55WVzaITLD15wMxcLsXXkSQo,673
|
|
776
|
+
telnyx/types/list_retrieve_by_zone_response.py,sha256=H7mqctugxuKTtaOGXZmDUjTcnhFE8hjIAOdeTy_23u4,679
|
|
777
|
+
telnyx/types/managed_account.py,sha256=VLHqyrra3HUOr4ZghPDBkk_bnWUefXBKszXIlO2y4QM,2067
|
|
778
|
+
telnyx/types/managed_account_balance.py,sha256=za-n6FpR9ikwgR0R9ptn3yy13fee1btIiK3uKUJR2qk,704
|
|
779
|
+
telnyx/types/managed_account_create_params.py,sha256=Ty55dT9o60TRbZwhy69j2oTe_JHPEnKPYbP3V3vFzUI,1770
|
|
780
|
+
telnyx/types/managed_account_create_response.py,sha256=rIzUaH3NXj5jOlqRL96WF3kegoEtT94oSuehoJWThF4,327
|
|
781
|
+
telnyx/types/managed_account_get_allocatable_global_outbound_channels_response.py,sha256=qsqhkKR8_FVjhCJIiKLhkwIddHaw3falaDqvBE81ikk,1473
|
|
782
|
+
telnyx/types/managed_account_list_params.py,sha256=0mRxAII_a_I5Jj6M8IVk7qDjQyvYx-xc2DngoB_zs80,2504
|
|
783
|
+
telnyx/types/managed_account_list_response.py,sha256=WuaZ97uSbJjtv5zE6oPvVb3zqM4zLjrhWwaYfdmK6qE,1846
|
|
784
|
+
telnyx/types/managed_account_retrieve_response.py,sha256=6jJBmeZzhqRzdpJ5sFLkdAG1sH5F2nySAQu4HMsVHhI,331
|
|
785
|
+
telnyx/types/managed_account_update_global_channel_limit_params.py,sha256=TXdwH7qASkJtxnVGqNoroWun_k9nthmcnnY9i0OBwjk,618
|
|
786
|
+
telnyx/types/managed_account_update_global_channel_limit_response.py,sha256=yw6c18DyLx70jDg28QhVPMz6pqUVH2f2CwfjxOOTVyg,994
|
|
787
|
+
telnyx/types/managed_account_update_params.py,sha256=7S53YiXUCIFcIQ1n1cOBBOHCHuEDzqlFIHzLl2KZllo,636
|
|
788
|
+
telnyx/types/managed_account_update_response.py,sha256=V0hwiXhj3IwJ_bVXo0rS3p9pthUVK6aYIxnOgNzKwKo,327
|
|
789
|
+
telnyx/types/media_list_params.py,sha256=4YsqZHmE4vIlA8_Ime77uo4f0EdjZO5IWQKqgpTnBGU,645
|
|
790
|
+
telnyx/types/media_list_response.py,sha256=xlII4oP9nnLdewf_PCStHsfsBrSuNMCf0wGCw53zh_s,401
|
|
791
|
+
telnyx/types/media_resource.py,sha256=J8TFAIHrrk7EM1vlnGqA8lfdxJnOS-oGXJ7iTECUS6s,725
|
|
792
|
+
telnyx/types/media_retrieve_response.py,sha256=R70S76qDgbrCM0vacFsqAlzKVQHm6wgpsBvCYdYLCsI,310
|
|
793
|
+
telnyx/types/media_update_params.py,sha256=eB9KZJ7hCIuIoigT7mX2PxExKR6bWFS-g0dA6GH9a4o,599
|
|
794
|
+
telnyx/types/media_update_response.py,sha256=xgSNnPfA7XZMgO4Lu5NTLMzErfX92Ba0-YwvW2_AHTQ,306
|
|
795
|
+
telnyx/types/media_upload_params.py,sha256=tZtcDr8yKHxzDTxaUyUNFASpXhx1RT4GqR83bRgBFjg,683
|
|
796
|
+
telnyx/types/media_upload_response.py,sha256=zPcJCT1pR2MihfA6LKQj33Z0jGZeR3_C9eATOXpnhyY,306
|
|
797
|
+
telnyx/types/message_cancel_scheduled_response.py,sha256=0wo2CL-CJLrXo-tqkwRLAw7khbJxZ4WlX9FOeT9Npq0,6378
|
|
798
|
+
telnyx/types/message_retrieve_response.py,sha256=4z060qNrCUmI59rG1dfGqRosqPkJlrrRl77_HuLGykI,620
|
|
799
|
+
telnyx/types/message_schedule_params.py,sha256=3cohq9Oq5CU2SeH9zVsDZjsxrKVaMJxN74c8Ig8zoHM,2215
|
|
800
|
+
telnyx/types/message_schedule_response.py,sha256=HSI2fpWK9PI7YN-S5gBJBjs559TfO4ioNh7X5a-0BQo,342
|
|
801
|
+
telnyx/types/message_send_group_mms_params.py,sha256=gmkfCITBzjZdDQQJpvqdN6SvdvnjVvH2BdfBg-XWdpU,1372
|
|
802
|
+
telnyx/types/message_send_group_mms_response.py,sha256=M8mg3UWUZwetaO70N8ZQTst3W4uwXRDrfwmXFGy5ZEM,350
|
|
803
|
+
telnyx/types/message_send_long_code_params.py,sha256=4cf7PK_jvbVig3fwn5-hmDNOEIz2tTphFTjRRWEjXfo,1681
|
|
804
|
+
telnyx/types/message_send_long_code_response.py,sha256=CPseOgGFF5XlwnATqm97uTxn-hlVxWu79P3KFu38kuI,350
|
|
805
|
+
telnyx/types/message_send_number_pool_params.py,sha256=gG_AnE4b8-44VqvOpT9EOewcNKYJqaGv09ZhYEFAkzs,1601
|
|
806
|
+
telnyx/types/message_send_number_pool_response.py,sha256=ODsjmL4YVLWXA2-v7JB15Va8-CaHBPpahueEsFsWEN0,354
|
|
807
|
+
telnyx/types/message_send_params.py,sha256=6Pwx0Eco0MDZ4ypedLUFMpBkMmmVzJiUVuleS7ww5UU,2213
|
|
808
|
+
telnyx/types/message_send_response.py,sha256=VNa37bL5N0Qt3B20cRTALoHph6u1G3dCKoW22j-ml5k,334
|
|
809
|
+
telnyx/types/message_send_short_code_params.py,sha256=BuoMtCtyl2wXGEZRlhZYMaQaXtKGvcykmPnsbdu4EmE,1683
|
|
810
|
+
telnyx/types/message_send_short_code_response.py,sha256=0OXWKYMyPdTTOWoOy_Da9jCe6uxP8lTyF3BSHGSzmHU,352
|
|
811
|
+
telnyx/types/message_send_whatsapp_params.py,sha256=QSmIn9_nDMA0SkdJgOuCSzebteDJiG0k0--6RxPC2-8,6897
|
|
812
|
+
telnyx/types/message_send_whatsapp_response.py,sha256=5f2qXf9VdjcjBM81ZRQC_820ylBTsZbmHLZ-Za9e2mI,8362
|
|
813
|
+
telnyx/types/message_template.py,sha256=TY7lYyWA0NMQZEUD_LB4p33ymKVsTCg4d8OKR3KFzYk,370
|
|
814
|
+
telnyx/types/messaging_10dlc_get_enum_response.py,sha256=XIcTMSE-gy37GaijWWqRPVQDzp5mYteg-hQYPByf9FQ,614
|
|
815
|
+
telnyx/types/messaging_error.py,sha256=_ThRyO0Idi0moMjJwhVzxUpNEWPhIMVFhNb1jtEaOHg,592
|
|
816
|
+
telnyx/types/messaging_hosted_number_delete_response.py,sha256=CVOIUTUYoNAauR5_qR9Z5wHKZlC-Kd6dloNaEh10-pw,386
|
|
817
|
+
telnyx/types/messaging_hosted_number_order_check_eligibility_params.py,sha256=fo_oC19th-_0hpglEeu0IsFLzNIeL7PnlSNyFkwLIPo,458
|
|
818
|
+
telnyx/types/messaging_hosted_number_order_check_eligibility_response.py,sha256=4H-sjzqm8_JfUf3TUfSB5BzHQqnpykg71qahr0JYpK8,1439
|
|
819
|
+
telnyx/types/messaging_hosted_number_order_create_params.py,sha256=soUDXTlGPMnwyZZ2TXHxI-hCvHCEau9M6Czfe_Zls3Q,571
|
|
820
|
+
telnyx/types/messaging_hosted_number_order_create_response.py,sha256=mUc-UMRn97djZdMZQmgnRA_9IWdb3NHFo1SvmuZVHbs,396
|
|
821
|
+
telnyx/types/messaging_hosted_number_order_create_verification_codes_params.py,sha256=UbfVaLDg2JHefWOpUEqYVsBngcNUuKNmQE3GQtgGLhs,500
|
|
822
|
+
telnyx/types/messaging_hosted_number_order_create_verification_codes_response.py,sha256=efDLpsEx3FzVMq9ZZDEJMCvcvZfdHur2iYs3zg7n-oM,850
|
|
823
|
+
telnyx/types/messaging_hosted_number_order_delete_response.py,sha256=BdbxdizK_SWxkQ6Wff_KpU2-EupgRI8OSzZXtDNgNFY,396
|
|
824
|
+
telnyx/types/messaging_hosted_number_order_list_params.py,sha256=wUFQZi6uU9N5OJ-YXt8JkaJDaIzwHUy2GLHw451iUig,464
|
|
825
|
+
telnyx/types/messaging_hosted_number_order_retrieve_response.py,sha256=S_p6TlC3KNtYxW1xJlaXBit_PR1aFo-P-IOMZoTH0Ig,400
|
|
826
|
+
telnyx/types/messaging_hosted_number_order_validate_codes_params.py,sha256=bKs_pD6TKWx57yrJTtSUdbU1-xWbZNH440DwmyvcH3A,529
|
|
827
|
+
telnyx/types/messaging_hosted_number_order_validate_codes_response.py,sha256=aRGN-DpMdazJachszQq5xDkYurgp4i5gZsPQJF2E86o,590
|
|
828
|
+
telnyx/types/messaging_numbers_bulk_update_create_params.py,sha256=w4OkuLRh7oh71yd9O7EjBtlUe1MltMwEIbyfpJeEsoo,768
|
|
829
|
+
telnyx/types/messaging_numbers_bulk_update_create_response.py,sha256=t6z5Qz2gSeAT3VwzyyH0QIwX8V0m8mp_J9vxs3vhWdQ,844
|
|
830
|
+
telnyx/types/messaging_numbers_bulk_update_retrieve_response.py,sha256=hKxAXimCg3mgso6gXw7eoDk5f7oKfVyXAsMpRz_vCvo,848
|
|
831
|
+
telnyx/types/messaging_optout_list_params.py,sha256=ta4P10lMwe99HtCOs1sP5xc3kzIApuegXwiyX5rDfLo,1768
|
|
832
|
+
telnyx/types/messaging_optout_list_response.py,sha256=gnW-mlsgPBXvAlFIfbyMuWK1De6_PHFhuKVA89oMYZ0,874
|
|
833
|
+
telnyx/types/messaging_profile.py,sha256=ndYdzH1DNjMUciYdd66yVm5J3jT0DTeq5O6UEq4qhsk,4218
|
|
834
|
+
telnyx/types/messaging_profile_create_params.py,sha256=FVT_e4JSJrYw59RRFvNgDAUCA9Y-jrLCUtfNPIgFqAE,3230
|
|
835
|
+
telnyx/types/messaging_profile_create_response.py,sha256=lrKJ60WkmPNI7ZhE78eliZkMchXTntaHeELKKKw3jJE,337
|
|
836
|
+
telnyx/types/messaging_profile_delete_response.py,sha256=_-OL_u-nBz647c0vDDZSJlbwUZ7754TGKuqDXaRgYP8,337
|
|
837
|
+
telnyx/types/messaging_profile_list_params.py,sha256=5DjXXxI6IwOcJhBQfi6gZ_k5tNFkA4OpKLMzHh4K28U,724
|
|
838
|
+
telnyx/types/messaging_profile_list_phone_numbers_params.py,sha256=f_PlHlijSdgsi4RYIuJj87YIdWM73k85y8LJlS-rIO8,468
|
|
839
|
+
telnyx/types/messaging_profile_list_short_codes_params.py,sha256=_E9Nc8VEMS7NUJ6cMUy0vwtgwoV9pmLzUWOiiNGvVPM,464
|
|
840
|
+
telnyx/types/messaging_profile_retrieve_response.py,sha256=F04p6wT0Dtsh_Aw0-rFTsDTlD6098nyQREwQ9u7ePpg,341
|
|
841
|
+
telnyx/types/messaging_profile_update_params.py,sha256=y_zSGlIZVoqisln2l154G1CZ0wgjpx1PeUNlwSaVSTU,3360
|
|
842
|
+
telnyx/types/messaging_profile_update_response.py,sha256=lWTHuMd6Vt2uoTCGvI88lTXjGWkSRnigPlvIYaFSfI4,337
|
|
843
|
+
telnyx/types/messaging_url_domain_list_params.py,sha256=PeI_5UTUEth8AiAw4hV4M5d1HiawjZ1a0qZKI6fvMUI,448
|
|
844
|
+
telnyx/types/messaging_url_domain_list_response.py,sha256=HyLJkU-P_b1HbXXt3HbiTHfe3uLGdIGv8KeqD47xM2o,387
|
|
845
|
+
telnyx/types/mobile_network_operator_list_params.py,sha256=zSkv9mgX3O7VwTSr2_zabGOdZd3KKAt-QdXauoUkZPg,1746
|
|
846
|
+
telnyx/types/mobile_network_operator_list_response.py,sha256=EO4iNA-XgOF5FVOZW-d_VVvW4F1ginJrjNVEKm8U3bg,1625
|
|
847
|
+
telnyx/types/mobile_phone_number.py,sha256=zDF9HlbjTr_bzGamIY-6-EhlUHWFO5mwh5oPBq6KpV4,3355
|
|
848
|
+
telnyx/types/mobile_phone_number_list_params.py,sha256=LZ8_QQX_gGxRGDGxvUSDXrmk8TnO4auyv3NTvf53i48,511
|
|
849
|
+
telnyx/types/mobile_phone_number_retrieve_response.py,sha256=TXIu_VoRJseiBVJCQn7D--9bAgH9SOizGgb-vRtDMkI,347
|
|
850
|
+
telnyx/types/mobile_phone_number_update_params.py,sha256=3vDO80U4iRkLZ2D72PaGc7up9llo9HxB1WQV-rGVnWk,1691
|
|
851
|
+
telnyx/types/mobile_phone_number_update_response.py,sha256=-hrFngLT1i8wOg0iKpRsjlDPHBVDlqRLI5HnfwmLG2U,343
|
|
852
|
+
telnyx/types/mobile_push_credential_create_params.py,sha256=QMyIz63K7Djw8uDuI70Uk4eGyqrggAFSW4IbmUXLbQg,1647
|
|
853
|
+
telnyx/types/mobile_push_credential_list_params.py,sha256=BjLEFOztoSQi02iWSqGQqzgTD324g3hSp9denJcBkbA,892
|
|
854
|
+
telnyx/types/mobile_voice_connection.py,sha256=5WTp7rNmGPqmCH0DLwaf2cYxy_m8g2oqH2vMpKuShp4,1511
|
|
855
|
+
telnyx/types/mobile_voice_connection_create_params.py,sha256=b3-4B6hmAuweH9kiT2D8sKdZu66HNXV2PGz_JRP5T-M,831
|
|
856
|
+
telnyx/types/mobile_voice_connection_create_response.py,sha256=F9HqNTnbTo31DyGWTYi2tXTY_CEOz712l7_ci_XYQ8I,363
|
|
857
|
+
telnyx/types/mobile_voice_connection_delete_response.py,sha256=cjIs68jAdie-94PYrK5lo8rxegaEOAHKzix3cMFI0jU,363
|
|
858
|
+
telnyx/types/mobile_voice_connection_list_params.py,sha256=x8afJcqnbIpDQWEh56meFhZ7V_VnFRbR5oiO5xFBTO8,823
|
|
859
|
+
telnyx/types/mobile_voice_connection_retrieve_response.py,sha256=hVvf_lFJJD871G7KylZY27jjQ3CcB3wBdkx36H2x_Ek,367
|
|
860
|
+
telnyx/types/mobile_voice_connection_update_params.py,sha256=_H6Y9KhO6qZvKClQqAosZG4ah2qW3kGQQIbg6FpCkN4,821
|
|
861
|
+
telnyx/types/mobile_voice_connection_update_response.py,sha256=1DQUnT3FlEXacg3KKcZo8AYL9W74QclBCvuRIK28c_0,363
|
|
862
|
+
telnyx/types/month_detail.py,sha256=6ayDmcHxHNDqVZIOZu5Av-NjzgTFCqA2wr9zX-V2aqQ,407
|
|
863
|
+
telnyx/types/network_coverage_list_params.py,sha256=-myRIr1dBNUPvkfUh1izrgZcrKq3qIQPcupF1MzeIt4,2283
|
|
864
|
+
telnyx/types/network_coverage_list_response.py,sha256=CIGgyIpUny9Tbtj23SmxNIMjFd4w3Ddzzzw36_vUiOg,940
|
|
865
|
+
telnyx/types/network_create_params.py,sha256=XajE0tvPaG-e5i4_30VePKHGK6Xka_D1bktbYIiTwEg,334
|
|
866
|
+
telnyx/types/network_create_response.py,sha256=hPu6z4UtLoUoytfzvH8ZNj3bHB1i3GXRHeAFEpk_1Co,396
|
|
867
|
+
telnyx/types/network_delete_response.py,sha256=KEyUD0n-A6fqALjCSGeA5V6lOpi_XWD34iuPxZFOlqs,396
|
|
868
|
+
telnyx/types/network_interface.py,sha256=VZd43PEpGq470dLLhG1lS4LawbsJHmOGV97vNyLdAVY,550
|
|
869
|
+
telnyx/types/network_interface_region.py,sha256=9byJJy0GDhF0ZkEO87Mk5O2rYUVRybu9Ua34o6BbmBU,325
|
|
870
|
+
telnyx/types/network_list_interfaces_params.py,sha256=YD3J0A-wFxM8PkOdiRh-XxfWhUx9j4SVx16T-GgYNWk,882
|
|
871
|
+
telnyx/types/network_list_interfaces_response.py,sha256=w838V351H2CVBDNMUOgOycW0Tjidy2Ze8mvJOV43EbU,990
|
|
872
|
+
telnyx/types/network_list_params.py,sha256=7_aat8ey89DWZXH6TeXUq84jpaZGjPTm1zCfWdKxrCs,722
|
|
873
|
+
telnyx/types/network_list_response.py,sha256=ITgf6uYjiLylh1vcHrcXfhq9K67Mep_GW5UI3z46V7A,295
|
|
874
|
+
telnyx/types/network_retrieve_response.py,sha256=zvvF1oCcC7mHoOBjF7FVEpiNpi-9wWmPm9nsV0m4yd8,400
|
|
875
|
+
telnyx/types/network_update_params.py,sha256=aDxMifKKJAj2vWZ2s7mctrRU0GHuJ4IqaLs8BtLQs-c,334
|
|
876
|
+
telnyx/types/network_update_response.py,sha256=SAxm46-blaTRlP_7FpHXRwIpFQm8aQrT5DYa1OqEjjQ,396
|
|
877
|
+
telnyx/types/notification_channel.py,sha256=USpvVXqV8-lxUcnkNI0Abg1YeCysZvrwLxSSbB0oo2M,946
|
|
878
|
+
telnyx/types/notification_channel_create_params.py,sha256=aAs1hOTb0JSHIscNrS8W5SeFNl27MT0ugsMmDb51Sxs,568
|
|
879
|
+
telnyx/types/notification_channel_create_response.py,sha256=HS-CttoRa5PkGieMmEGhmqsG8Ii2NPb06Zy-RqNW_Ko,385
|
|
880
|
+
telnyx/types/notification_channel_delete_response.py,sha256=yB1xXai-jrUX4CHz745fgPsQamei0AVRO7CfJfKqO6U,385
|
|
881
|
+
telnyx/types/notification_channel_list_params.py,sha256=4_2xqTMAH68t846JzttncGNHmH4DiOF1TH-cHT2CV4Q,2610
|
|
882
|
+
telnyx/types/notification_channel_retrieve_response.py,sha256=T1xJmculH0EOnc8vtZ-A8uyOYRTfq-jQoBwfS1qS_kg,389
|
|
883
|
+
telnyx/types/notification_channel_update_params.py,sha256=dgd-OumbHM8w_S2GWwGmjANhYERWYtAVufaPWnaVQa8,568
|
|
884
|
+
telnyx/types/notification_channel_update_response.py,sha256=8yNTIaOsCFa3YRzzQySXCrl2dWY8COFQhyTTL-72eWg,385
|
|
885
|
+
telnyx/types/notification_event_condition_list_params.py,sha256=7xB20iEjUy2QuEWfaVF72yzMjKcNjo1d9VLng2lsljo,2624
|
|
886
|
+
telnyx/types/notification_event_condition_list_response.py,sha256=0IkGOkm5uIr_1JlHmgg-nXlxZup-HHnE_f0JWHT6AZ4,1487
|
|
887
|
+
telnyx/types/notification_event_list_params.py,sha256=j-E9bj_l61aWBCi79DawCLLG96UMZILNO29iC5ACfo0,446
|
|
888
|
+
telnyx/types/notification_event_list_response.py,sha256=AjuOGty5vaUwiUGmHjfRLof5LHWcRL94KeYFI9I3KjM,771
|
|
889
|
+
telnyx/types/notification_profile.py,sha256=cPCiDkih7xSzNwdidO3b6OzOKMVVbCzKphdvjqBs610,652
|
|
890
|
+
telnyx/types/notification_profile_create_params.py,sha256=CLf4x-TQoP0y4-jFPka8M5gUuxKwBwOoP7t69my6i8U,322
|
|
891
|
+
telnyx/types/notification_profile_create_response.py,sha256=0UtG2Y3xbdrNcUYge8pkj0oXBVAeOwnbpHlhrcRad2U,400
|
|
892
|
+
telnyx/types/notification_profile_delete_response.py,sha256=NpmDve7It7mz4WzVT1oGPy95a6NraIrFzEuyzpFYoSQ,400
|
|
893
|
+
telnyx/types/notification_profile_list_params.py,sha256=L41T0mVTs2K9lwxIBq_YDWvIyLIfzbtUbKSc_CdCW1U,450
|
|
894
|
+
telnyx/types/notification_profile_retrieve_response.py,sha256=bFe9FSbPS-9i2ZBQBEGg57VyDaXXZl9Efg3ecdacKlM,404
|
|
895
|
+
telnyx/types/notification_profile_update_params.py,sha256=6IyIxgqVidecKVjW2ZwxTgSfrWuNtGINE4OEuBTXbjg,322
|
|
896
|
+
telnyx/types/notification_profile_update_response.py,sha256=PZ-eQm02DKH3tuutEOy4UHLpToIeiqtwkAmPKxn90CQ,400
|
|
897
|
+
telnyx/types/notification_setting.py,sha256=awPy8EjxmvfC36f-658j45dA_FSDCc98fmYX6KHYCUs,1595
|
|
898
|
+
telnyx/types/notification_setting_create_params.py,sha256=U4kG__Df00fVjfNBuyhXusdvbHYEAIs3-p0J3Irx-Ug,744
|
|
899
|
+
telnyx/types/notification_setting_create_response.py,sha256=5TSpXC5NIkV5banHdUFEoGNoNWlGButMZm9Ry_ttOQ4,352
|
|
900
|
+
telnyx/types/notification_setting_delete_response.py,sha256=l9rkTCXzZzIoupp8maRyjvsY08XkV6K3pVJYIyHu_ow,352
|
|
901
|
+
telnyx/types/notification_setting_list_params.py,sha256=pZnAI6CnZNS2WvxLxl4_9F3W2ARpP5YOT6BmQcII9Jw,2610
|
|
902
|
+
telnyx/types/notification_setting_retrieve_response.py,sha256=NFQkk94MAXF3ot0u4t3rXZAwudxhPqaYRVFq_dqheOI,356
|
|
903
|
+
telnyx/types/number_block_order.py,sha256=226tL1-5XZvPh2o9IyHt8TEyW9CZKcgPKcvVIK9Gs6A,1503
|
|
904
|
+
telnyx/types/number_block_order_create_params.py,sha256=6Vz9INkiBWcqKdpbTXK6pjfImU6V9c5woVW1IfUM9X0,727
|
|
905
|
+
telnyx/types/number_block_order_create_response.py,sha256=CXQge7fsbItHevOROpe5HHM5Wd2_hpTs7RZoYywPeao,338
|
|
906
|
+
telnyx/types/number_block_order_list_params.py,sha256=C6LTwQ4o-0Z3FEJZ3SU32PbHSkxXS3tRa2MQNIQz7z4,1417
|
|
907
|
+
telnyx/types/number_block_order_retrieve_response.py,sha256=z8GDxAW7nve4s8XwrLlK5-kYeWhtzU-UGs53YRpT4L4,342
|
|
908
|
+
telnyx/types/number_lookup_retrieve_params.py,sha256=X0GGsgHDd4OcRGuUKm0aYKdR9Cb2fUaWvb9qvIDJkms,380
|
|
909
|
+
telnyx/types/number_lookup_retrieve_response.py,sha256=pAnrc8p3s7iRGe2-dKJsCnX2APTcW3hu51gy4eW_Vww,3937
|
|
910
|
+
telnyx/types/number_order_create_params.py,sha256=T3od4tjkMPSGm4PfW6BkK06NF2IPnS3ZmmcIR2HzQYU,1024
|
|
911
|
+
telnyx/types/number_order_create_response.py,sha256=_zkBmnjlzzZicnfJyjzWVpXvxtyOaU2vIzMCsT6RN1A,363
|
|
912
|
+
telnyx/types/number_order_list_params.py,sha256=r7F5XOwADdVH0t3mfp1TuQr8PKJZl1gsSfIaL1DUl4Y,1556
|
|
913
|
+
telnyx/types/number_order_list_response.py,sha256=ec5nNqgLESrT8hs3DfDxROxvRwGicpuvepOSxCtT2Iw,1800
|
|
914
|
+
telnyx/types/number_order_phone_number.py,sha256=wpGRFkVuCg0yO3bIoo5Hv-iSuZJ9nbBksyQC9-BftKk,1632
|
|
915
|
+
telnyx/types/number_order_phone_number_list_params.py,sha256=T7a5IVZJxs72PBPDnsIgYf51lN-qNbUjd6PQulGXv7c,625
|
|
916
|
+
telnyx/types/number_order_phone_number_list_response.py,sha256=SLqqmsdnx0t3lYSljw6sFmliMxRJxMIIcqflEP67F6Q,464
|
|
917
|
+
telnyx/types/number_order_phone_number_retrieve_response.py,sha256=9DmebUNX8ZLC6zWdWBLN0ukZpk9iU7Ve3zdngyCLUHs,373
|
|
918
|
+
telnyx/types/number_order_phone_number_update_requirement_group_params.py,sha256=o86glZWBwvbm2JpSRF70I07VcNXGmYTel8MUqFNOTEo,418
|
|
919
|
+
telnyx/types/number_order_phone_number_update_requirement_group_response.py,sha256=uFes84BD0aq_YRhxosQ2pFCE_A9aHqMEEdeFMsSq2T0,1264
|
|
920
|
+
telnyx/types/number_order_phone_number_update_requirements_params.py,sha256=6oZLLdQRiNMYv3VOaojY-UGMkkBunKzYfxi4S6t9J1c,488
|
|
921
|
+
telnyx/types/number_order_phone_number_update_requirements_response.py,sha256=gpBTWv98n_JccRd-mwaYkVUtNiWihdavKqHOaNylPZM,393
|
|
922
|
+
telnyx/types/number_order_retrieve_response.py,sha256=1WygTrroK2bSgUhhmjmCIEVsx-TCN6gpyLdtrdAHC3k,367
|
|
923
|
+
telnyx/types/number_order_status_update_webhook_event.py,sha256=I1ooLnocUA1jxrMnJU_ep0alxtzEmf05TtEmqqsji3c,841
|
|
924
|
+
telnyx/types/number_order_status_update_webhook_event1.py,sha256=I1ooLnocUA1jxrMnJU_ep0alxtzEmf05TtEmqqsji3c,841
|
|
925
|
+
telnyx/types/number_order_update_params.py,sha256=yWf5rSyWr-POo7WNMqRI8I1f88lEy1yPRPjnAMBAFzY,532
|
|
926
|
+
telnyx/types/number_order_update_response.py,sha256=vOdtpv_CwkLei1nCn2u_-qN1YYrEqRxjbqf5BfWDkK0,363
|
|
927
|
+
telnyx/types/number_order_with_phone_numbers.py,sha256=mq6s2u4zP8BgkUKps5Eu63wM4_ENFPvOjoM9HCo5xrE,1579
|
|
928
|
+
telnyx/types/number_pool_settings.py,sha256=lyh_LZiEIHmN6KYGL-GOPQB7AGwpmDtyyo-gu9lnPGE,2344
|
|
929
|
+
telnyx/types/number_pool_settings_param.py,sha256=r9ZmVttHEcFwYdC0f_0__6gs_lAAkiyMGwGdN6yeato,2388
|
|
930
|
+
telnyx/types/number_reservation.py,sha256=_1l8-ixrFpi3FotXyCboICXQ-6d0dfl8bwJAYOOJgOg,963
|
|
931
|
+
telnyx/types/number_reservation_create_params.py,sha256=5oZPExGxbANAy-2sdrqlrxauWtzaNf2JRamkI0Klysw,510
|
|
932
|
+
telnyx/types/number_reservation_create_response.py,sha256=1qUbizDelchE47cM7K3p6D246JDRplYms1a1DIwgKgs,342
|
|
933
|
+
telnyx/types/number_reservation_list_params.py,sha256=5-z8tIoiccAUxxRIIidslJw39ypdJIaLLmfBn2s1muk,1561
|
|
934
|
+
telnyx/types/number_reservation_retrieve_response.py,sha256=mNgKrwL_Qq0rVPeCZzhaTeubpca-uUE0YUx535U2_HU,346
|
|
935
|
+
telnyx/types/numbers_feature_create_params.py,sha256=ArXiQW5-MhR81YaUNJOjR41aVgXICMajYK4D0CfU9Mk,361
|
|
936
|
+
telnyx/types/numbers_feature_create_response.py,sha256=4p7DBbd4HzNmumwal8ozpOjOPI0o9aaZvNZ3v63RW7Y,365
|
|
937
|
+
telnyx/types/oauth_client.py,sha256=qtjED8m2pQHAyDquum3u39y4Md7IDry0b8VnGdqpoLI,1643
|
|
938
|
+
telnyx/types/oauth_client_create_params.py,sha256=n_nJTEQzHC7zATP7mCRx5F_ELQeU9rqGob47-avi1oY,1136
|
|
939
|
+
telnyx/types/oauth_client_create_response.py,sha256=Z9qxhRbxV7aLm8EYX9K9ZogVbbiJ_K1ftvh8KGLsfBg,312
|
|
940
|
+
telnyx/types/oauth_client_list_params.py,sha256=tLcLmTdYbfWlBxHHp4_sV9UWGIZWzRxHWGnwaVnNRtk,1362
|
|
941
|
+
telnyx/types/oauth_client_retrieve_response.py,sha256=OIrIEbNSxfo19ZgCdxswV9jY4NM5diQ7q6HJJrYZaVI,316
|
|
942
|
+
telnyx/types/oauth_client_update_params.py,sha256=mqqIUwlZbxUvLBA0RPwZVC7g6hmG3UJ_2Q-TA8EHvaE,967
|
|
943
|
+
telnyx/types/oauth_client_update_response.py,sha256=Jq-ft1nb1BYx5VSm0V1-HWyjkuooqd4JLzC1IJZn-q0,312
|
|
944
|
+
telnyx/types/oauth_grant.py,sha256=yRnGPcPxO9X53-gzQuIKrPpWDONNMKngB4esLZQ-SlU,696
|
|
945
|
+
telnyx/types/oauth_grant_delete_response.py,sha256=94_Sxy8j7DZqM8d1xBqvZU1gXcrgoFI8fSVG-v1oi_8,307
|
|
946
|
+
telnyx/types/oauth_grant_list_params.py,sha256=QUqXr2j_47an8zFXwf_iaRR_FgkBvcyXK06RE_Ik36o,491
|
|
947
|
+
telnyx/types/oauth_grant_retrieve_response.py,sha256=36LrQTmeQXG093wWn1d7eHLPqumphdDNbCnOXAcISH8,311
|
|
948
|
+
telnyx/types/oauth_grants_params.py,sha256=MOrGxhdb5bhZN2_PabKauyxM4ZVETJeS6OqX5Or1eKc,382
|
|
949
|
+
telnyx/types/oauth_grants_response.py,sha256=wcnrD0xsNzu8WE-GP9VkKK3dC8SzmqR-5Oq0vqBBocY,272
|
|
950
|
+
telnyx/types/oauth_introspect_params.py,sha256=nHbOQwFmGqgNPJqo8uxZxoWon9qvCWp58couMDDbfhI,324
|
|
951
|
+
telnyx/types/oauth_introspect_response.py,sha256=WJ8AnOb8sahZ_sdV_6lkq_LgQ6Qo_FcubqWp-NOd6q4,646
|
|
952
|
+
telnyx/types/oauth_register_params.py,sha256=-D5UYJ9fw-CQ8LI3XdIh_XMsDfapf28JGEGgx3PxoOg,1246
|
|
953
|
+
telnyx/types/oauth_register_response.py,sha256=Re7lBj-6ERpSHsNgtmVXxw9RwQiM-pcfOWZd-Y3akIA,1212
|
|
954
|
+
telnyx/types/oauth_retrieve_authorize_params.py,sha256=gSkyND3nyrftBmZ3iRbzIxHWhlpPxHG56YMmHIcwrFc,757
|
|
955
|
+
telnyx/types/oauth_retrieve_jwks_response.py,sha256=GrU7DBFErxw7geN_drUpqQviNb_pk68uPaTR4GfwQoA,506
|
|
956
|
+
telnyx/types/oauth_retrieve_response.py,sha256=1jt--M4Q46tAaW3jzKCPhex65p-kKXRIFE0nd6uYbsY,1104
|
|
957
|
+
telnyx/types/oauth_token_params.py,sha256=-P-q36iCjKnhY-2Yq1d3wzbZ-Bs7Sgm2u9S0YAtO11s,950
|
|
958
|
+
telnyx/types/oauth_token_response.py,sha256=6VsE8v0j9D_NUkpCpu2K4KTh1sdNE_ypT-b_6LjYwg4,584
|
|
959
|
+
telnyx/types/ota_update_list_params.py,sha256=jAfJvu5Ez6k-bYX_T9AAVVh3NLYhe77BKiz_YAOMN00,1074
|
|
960
|
+
telnyx/types/ota_update_list_response.py,sha256=uv2UQNjMag39KWd3JatbMmeXa7xdGHtEubf1aldXlKM,1173
|
|
961
|
+
telnyx/types/ota_update_retrieve_response.py,sha256=wTIPwETH7InQjslDKip-C5-R0yOZEivF7ph-lUZKtv4,2702
|
|
962
|
+
telnyx/types/outbound_call_recording.py,sha256=Oi7cpfC6_RSVeIt9cGMe16fv80wip8TeWWJ3PfTbGOM,1020
|
|
963
|
+
telnyx/types/outbound_call_recording_param.py,sha256=WHjGLWQ6yGOnzwwMRCF8LbaxnCaYwxgfMN9JrhYsdYQ,1002
|
|
964
|
+
telnyx/types/outbound_fqdn.py,sha256=RW1cscBSwJN4qyaTzZBRwxIDW5Ca70C6bStZSsNFbe4,3022
|
|
965
|
+
telnyx/types/outbound_fqdn_param.py,sha256=mobTVWB81k1DxKLByzd_WwwPqIgcUC8W18WWi2lcARw,2811
|
|
966
|
+
telnyx/types/outbound_ip.py,sha256=j1SaTTVU3p5TUyiK6-3yRcaAEobgMI3pAmZC_IP4cXE,2573
|
|
967
|
+
telnyx/types/outbound_ip_param.py,sha256=KyjUlQNEOHs4r9uUw4WRUgfrmM-91ed5IyICuxOFFM8,2402
|
|
968
|
+
telnyx/types/outbound_message_payload.py,sha256=ws86mgr-Ky-_MF1OOX2Wu79TwYUHjSlj8iK-o9yHsdc,6098
|
|
969
|
+
telnyx/types/outbound_voice_profile.py,sha256=YS1z15HIUrmUxzx4KkColuqqRHHqGqEPvTHL7bzJ2hg,3675
|
|
970
|
+
telnyx/types/outbound_voice_profile_create_params.py,sha256=ees5P1V_YWlrdpX3JCWZ_rcebEX86h-APvzwJtzDN-Q,3092
|
|
971
|
+
telnyx/types/outbound_voice_profile_create_response.py,sha256=0nh5001-5Gj2vAv5Tp8Y84gz1Ako8SJrVrxHB_L5rp4,358
|
|
972
|
+
telnyx/types/outbound_voice_profile_delete_response.py,sha256=0z_bamv9ZIwA53u7aAVfEj7pX1UH40zLeRsRJu5K-54,358
|
|
973
|
+
telnyx/types/outbound_voice_profile_list_params.py,sha256=KYX09bppQ2GxyATDOPvTRL5bAF8tnCdb2ToTEj6AVy8,1755
|
|
974
|
+
telnyx/types/outbound_voice_profile_retrieve_response.py,sha256=G5wf7rorFkkMXAgaTEElW526zTd4D6_5zPK8VP-V1Ko,362
|
|
975
|
+
telnyx/types/outbound_voice_profile_update_params.py,sha256=Y5nclKc5n9hILubTFaYddIGhZHReki54wcxlAzvhy1A,2990
|
|
976
|
+
telnyx/types/outbound_voice_profile_update_response.py,sha256=0kERLKyY68RTrtppaNxtrocov2knttSff6a-R9jf-LI,358
|
|
977
|
+
telnyx/types/pagination_meta.py,sha256=Qebxij8jxIdME1XFs4XylanVFN5TDSCkzBy5_Q88naQ,334
|
|
978
|
+
telnyx/types/pagination_meta_cloudflare_ip_list_sync.py,sha256=MihC2eavedAnkGzPcF3pdr3TIqeyYT3bGVqPG9oXaaw,311
|
|
979
|
+
telnyx/types/pagination_meta_oauth.py,sha256=M5QdHiPTTTszN_3gVuCotyq6M3v3vhI9g_cv0--Qar4,475
|
|
980
|
+
telnyx/types/phone_number.py,sha256=HTtwm2aXCCpHVoiAdUR9sXfMnAyorcfuSy-s7yhlyFQ,1549
|
|
981
|
+
telnyx/types/phone_number_delete_response.py,sha256=VMz5Zvyo3nyJxAVaDyc-nvj9deLPAkDSZJF9ItuKvzE,3969
|
|
982
|
+
telnyx/types/phone_number_detailed.py,sha256=48Ji-astKjMEL56qJzkHhGa_Ju3pibSvgNuJnS0gXPA,5104
|
|
983
|
+
telnyx/types/phone_number_list_params.py,sha256=nLr_9TzTYS6Lsx8Mg3eBmnD-rfHMYNnl2YU99ufJAYY,4982
|
|
984
|
+
telnyx/types/phone_number_retrieve_response.py,sha256=4-PnbHooOOehtlvixbyN3BPg43mRfa4_46oDDqPt2Os,341
|
|
985
|
+
telnyx/types/phone_number_slim_list_params.py,sha256=1sIG21htAaUhn5BqTJZKrmNtLHGfPN8MQIkWxauau9k,4734
|
|
986
|
+
telnyx/types/phone_number_slim_list_response.py,sha256=N53CJF5J7-QmlqCWGCvSnbPEz62kKHmnolUb2Zn7mNA,4392
|
|
987
|
+
telnyx/types/phone_number_update_params.py,sha256=R5Pg2M8Nb8kGMJNATJSEWgCVEg8-z2UQC6wyN5xOWCI,1099
|
|
988
|
+
telnyx/types/phone_number_update_response.py,sha256=EAkMZOjG2ZS0YDIVNgjgv21Ih67wbktES2S7lm9tzgw,337
|
|
989
|
+
telnyx/types/phone_numbers_regulatory_requirement_retrieve_params.py,sha256=NNgs-qyoUg_ca9Lg4wFKF5Q5IXgiworfPzxl2S0PMoI,655
|
|
990
|
+
telnyx/types/phone_numbers_regulatory_requirement_retrieve_response.py,sha256=Dbhuyieyz_2LdvPinfGHyWK1ybZe3aE9XJIqqnofdMg,1490
|
|
991
|
+
telnyx/types/portability_check_run_params.py,sha256=0mGHrFlvbcbhQR4tjos08kX6e7EgewMBcJFwHjqgkYc,417
|
|
992
|
+
telnyx/types/portability_check_run_response.py,sha256=_y2ZkWfs0E32q6AbNdSw6NjEiqRgrwkPfhQSp6kpE24,869
|
|
993
|
+
telnyx/types/porting_list_uk_carriers_response.py,sha256=nmz5ttx9Vj2K41BLNyz_0oF0Vkf6RGhHaiC8KRsTT50,1052
|
|
994
|
+
telnyx/types/porting_order.py,sha256=PBAWUxR7XMWsxda5865jmbky6r6bOoLyezsdotHHavQ,3776
|
|
995
|
+
telnyx/types/porting_order_activation_settings.py,sha256=hWNxerN8xlXdV_vDXyF8R4xqoIyu05RxNol3R9F4Gog,1087
|
|
996
|
+
telnyx/types/porting_order_create_params.py,sha256=2e0XmuefN6LodCg-Az-J-eBPsihCKXaSxgNUcfN8LeE,675
|
|
997
|
+
telnyx/types/porting_order_create_response.py,sha256=rHUZqnEylVSSs10cA4xufxzdw3HbgEbZ3Bc73ou10ek,329
|
|
998
|
+
telnyx/types/porting_order_documents.py,sha256=0F84Kwsv8gMcFaxb6SElO-aJe0wSJ51Lapyq8vdFc0o,518
|
|
999
|
+
telnyx/types/porting_order_documents_param.py,sha256=tzHv3qa04p1PpQOc5mohsIJG8a5IfzjSXcLAwLERWGQ,570
|
|
1000
|
+
telnyx/types/porting_order_end_user.py,sha256=Wby1t2cBzToDMy4lVaLvY_yXhaeQWR1PZwEG6vbT6xg,476
|
|
1001
|
+
telnyx/types/porting_order_end_user_admin.py,sha256=6na8_NE5rG0mHgXDGKjO7bdiQSvxLQKFCT0hmctRcXo,1076
|
|
1002
|
+
telnyx/types/porting_order_end_user_admin_param.py,sha256=yWjw7GUniIGGoBjVsd2phXUtlUAXf8ybgZiUcjDdYn0,1093
|
|
1003
|
+
telnyx/types/porting_order_end_user_location.py,sha256=hW-qGKm-AaXfVZDqhu-R4r0CiQO7CSVc_u1wutGwXIU,775
|
|
1004
|
+
telnyx/types/porting_order_end_user_location_param.py,sha256=dWSoXHV9r49AmsqKReSOq-tit51M2TUYkXPawmZf8Ag,799
|
|
1005
|
+
telnyx/types/porting_order_end_user_param.py,sha256=92FdqH4jN4p4IZpIRm8ILNUIwKSYx1RGVSKT-NtDsMw,513
|
|
1006
|
+
telnyx/types/porting_order_list_params.py,sha256=U5Bp0hfa-jgNDWXkrgsXnhoIOGuNsblwrs_nGEypdfM,4345
|
|
1007
|
+
telnyx/types/porting_order_messaging.py,sha256=0XVdUHyzgItkqvWP2CI8uUXdFAmlkXorACiKFOP4F9Q,1030
|
|
1008
|
+
telnyx/types/porting_order_misc.py,sha256=Eerfrhs5T65zrIgWLkTJkh2KSJJIrfI_sdBLkgiRfVA,1085
|
|
1009
|
+
telnyx/types/porting_order_misc_param.py,sha256=TbkPfVOqZXAGrMzroMJxdyQz8J3FscegNkA_l6iEY8U,1092
|
|
1010
|
+
telnyx/types/porting_order_phone_number_configuration.py,sha256=AvPu1eTbXTvtgKHbT5i9DUbvb9dAByAPraj1kfLOsW0,778
|
|
1011
|
+
telnyx/types/porting_order_phone_number_configuration_param.py,sha256=YNqSuFHZSZ7gO2gy4r_3JT721VL0EkT2J9P2SGas-cI,840
|
|
1012
|
+
telnyx/types/porting_order_requirement.py,sha256=43qV51DDSK05NhoDLelmFt6NY0d8OJoWxloVmabmAE8,684
|
|
1013
|
+
telnyx/types/porting_order_retrieve_allowed_foc_windows_response.py,sha256=dQcQ8KbuyQYQDk7r82D54v0N44PaLXF8utkLZ1mcOX4,801
|
|
1014
|
+
telnyx/types/porting_order_retrieve_exception_types_response.py,sha256=7IIjmipvdyBHfuid0fo_eLR0lorxynzYfZ15Uj9AdxA,412
|
|
1015
|
+
telnyx/types/porting_order_retrieve_loa_template_params.py,sha256=_w_mKZ58KJLDbDryptJo-S1rAY5bxKIH_i4iTcuiYyE,463
|
|
1016
|
+
telnyx/types/porting_order_retrieve_params.py,sha256=m_xHyUB2qzIh6KsQL6f5fh5c9H0aMlS3TixccgQF_Yg,364
|
|
1017
|
+
telnyx/types/porting_order_retrieve_requirements_params.py,sha256=T62sWMdW-SAjOfcHp5Ayu-TM-3InK2Po7w5IamG_8OI,468
|
|
1018
|
+
telnyx/types/porting_order_retrieve_requirements_response.py,sha256=zth6ZdhasMnVMpO2ITtqIicFrBcunVyR2D5p9tMPpdM,1460
|
|
1019
|
+
telnyx/types/porting_order_retrieve_response.py,sha256=PLePbTzTmbAf3MYMrNI1pcrbD5uPk-lunurZMbEnHWQ,472
|
|
1020
|
+
telnyx/types/porting_order_retrieve_sub_request_response.py,sha256=2Xo7jn0efyCcs8CZWOfnATM4N8o_xhuLiuD5hNsGcY8,553
|
|
1021
|
+
telnyx/types/porting_order_type.py,sha256=s2TI5xjXtNPvClhyv_Ou1BhTLDMm5bkVr48ZVwg3Ems,226
|
|
1022
|
+
telnyx/types/porting_order_update_params.py,sha256=RkTm-5yLNFb6RaVfvXKBVoTDRKCeXUm3wkL7qEG6vLI,2657
|
|
1023
|
+
telnyx/types/porting_order_update_response.py,sha256=tb4S0gw_MtqcVIj2T8fvbbWsldLBsV_vt9n8OrUYejU,468
|
|
1024
|
+
telnyx/types/porting_order_user_feedback.py,sha256=a5wKwLZfyI0v_pGIuFdg5v_VVxDdFUj32igWD8IKx-4,502
|
|
1025
|
+
telnyx/types/porting_order_user_feedback_param.py,sha256=ckHKbc1q7DeTS_2dtH-4eTUGalndmc4CV0p4IzgRzbI,554
|
|
1026
|
+
telnyx/types/porting_orders_activation_job.py,sha256=kjNYw559YdY_eQ6VdybjjzN1miqeXH5jAkmD2sdMhLI,1600
|
|
1027
|
+
telnyx/types/porting_phone_number_list_params.py,sha256=tcHhg47427WPpziZfTXQolwq5XCTg-QmF5aSpcYMx4c,959
|
|
1028
|
+
telnyx/types/porting_phone_number_list_response.py,sha256=PFN5YBVuz_xdh_iKT6PAycZ2TnHmCY3xK4t_oYOrAJI,2097
|
|
1029
|
+
telnyx/types/portout_details.py,sha256=evFNmf5RM3tnHHje440-4K1w0aEC2LiaWXaLTjhFZVI,3005
|
|
1030
|
+
telnyx/types/portout_list_params.py,sha256=2V1eIx4OgLuA6QIfXj_H8Ms_jUxHinH6PetKHsSa4pA,3238
|
|
1031
|
+
telnyx/types/portout_list_rejection_codes_params.py,sha256=-n0IWZidz-kX--voLX3DJOnLUYaPg2eLnKEgdt4c3WQ,689
|
|
1032
|
+
telnyx/types/portout_list_rejection_codes_response.py,sha256=pnMFoyfbB9b8I4MJV7CnwPdGKQpY0TbEyqFERPVu8a8,442
|
|
1033
|
+
telnyx/types/portout_retrieve_response.py,sha256=2eB1f97wBhv7mABepS2XpN29Fh5hizhzqR_J2HAdKkA,317
|
|
1034
|
+
telnyx/types/portout_update_status_params.py,sha256=OJNfUyMeFuxSUCVYG8zO3j3_gYNXSyoxXJQ-M_LLMMA,532
|
|
1035
|
+
telnyx/types/portout_update_status_response.py,sha256=DZsc9v2sM5BbDuJ5qkYqBJoByE81z7Z3yfWPTvvALxo,325
|
|
1036
|
+
telnyx/types/private_wireless_gateway.py,sha256=xZQOQyatxZbdnMQfKkd3gjUfPSIo6bUjgYfscEBmQ5k,1460
|
|
1037
|
+
telnyx/types/private_wireless_gateway_create_params.py,sha256=ZCM5-sLUZNR2ClezXeTtj7oN_R_kayA5iLFQA06GxpA,636
|
|
1038
|
+
telnyx/types/private_wireless_gateway_create_response.py,sha256=wV5oT2wU9NJY6GnK9fonprvvqY-q7K4tKDeQLdlH9rQ,368
|
|
1039
|
+
telnyx/types/private_wireless_gateway_delete_response.py,sha256=HBJx6UOxwtU1Gm0nXwd6XoFCaxv5aUu90yQ5dPU8lKI,368
|
|
1040
|
+
telnyx/types/private_wireless_gateway_list_params.py,sha256=Bz0HwTYZ-U8YBVIXcx-5y6R14Q39bcOvZrSF2lDr9ds,1232
|
|
1041
|
+
telnyx/types/private_wireless_gateway_retrieve_response.py,sha256=WPfQudjKp11jgTvXv1a5XBF9_gINSrsvDP7u1jSOOTg,372
|
|
1042
|
+
telnyx/types/private_wireless_gateway_status.py,sha256=sBOhO0GRa02K8N2AzgMYy2a87bQTG6hOQC7pm0Xx3po,1382
|
|
1043
|
+
telnyx/types/public_internet_gateway_create_params.py,sha256=SOl6BLYPCZTG8F4qIUzj9DDcUrp2U8NjXP_eTWizbU8,497
|
|
1044
|
+
telnyx/types/public_internet_gateway_create_response.py,sha256=bkyNngbnjBhibqRrBeBOO-eghxr4qHc0T1IpwZAyd6o,591
|
|
1045
|
+
telnyx/types/public_internet_gateway_delete_response.py,sha256=2SRmFPTvshaCZdVoe1xi5f5708oTG69ht3tPTsTz9Do,591
|
|
1046
|
+
telnyx/types/public_internet_gateway_list_params.py,sha256=bTw36Jq7_GSPZX_DaeZC4Ye3yj-plrbEgY9Js5pyUPI,797
|
|
1047
|
+
telnyx/types/public_internet_gateway_list_response.py,sha256=RQYgMX-FnZIg-5SQ8GRP__7OUyX11dCGBuFlctlL8S8,490
|
|
1048
|
+
telnyx/types/public_internet_gateway_retrieve_response.py,sha256=MyNbsfTRLNOknK9Z7GLULM1hAWjxa2O6jtjqoCM7fy4,595
|
|
1049
|
+
telnyx/types/push_credential.py,sha256=ejpKbK6TOL2G39kbR-9VW2UKM2dzUJ30fi8H4wLObXM,1007
|
|
1050
|
+
telnyx/types/push_credential_response.py,sha256=pvzMdlhC7cuVJBnk9_Eqdyl54bSRn95TNqaCSfU-7Po,380
|
|
1051
|
+
telnyx/types/pwg_assigned_resources_summary.py,sha256=mp9Z1nIzP68vsyjSp2Yc-qVHCZyqczqrEDTFS2WIwLM,582
|
|
1052
|
+
telnyx/types/queue_retrieve_response.py,sha256=uJ_n6yx_R_bnLVr-kWIdYWfIHQLQvwjYKcIs5_Vx_gU,939
|
|
1053
|
+
telnyx/types/rcs_agent.py,sha256=xGSpBzSMJR6Ikx2-pFsJHPaYL-_-0UYe6EwG6O4bVIk,992
|
|
1054
|
+
telnyx/types/rcs_agent_message.py,sha256=SOXemBwdo5aLjB7RxQ32Kqrgq8C_iFkgw1OkVAHvpLQ,2419
|
|
1055
|
+
telnyx/types/rcs_agent_message_param.py,sha256=0KL6Fa75GD4tnb5LhIY_eff2zFpCi4ufPSdCEKYdO4w,2557
|
|
1056
|
+
telnyx/types/rcs_agent_response.py,sha256=FMps5lovF2yOeQ2n7hQUJrIzq4eGXIig6UDf34In7wg,285
|
|
1057
|
+
telnyx/types/rcs_card_content.py,sha256=lsy_jV-g8Mxynx7XJw9bP22I99FRDPgBkiW-f8iqRZ0,1147
|
|
1058
|
+
telnyx/types/rcs_card_content_param.py,sha256=slLh97L9DVncTZyzOkui_iH63uK2enr5DD4heWtWDIY,1126
|
|
1059
|
+
telnyx/types/rcs_content_info.py,sha256=xgj6d_XukwXOTPmRb6y-S_dE7EeNy_PB45Ino2zy4_U,488
|
|
1060
|
+
telnyx/types/rcs_content_info_param.py,sha256=9VcYd97o_9eNRbu6jlkiGIOSmnm87f9RHPjkRk_Qj9U,512
|
|
1061
|
+
telnyx/types/rcs_suggestion.py,sha256=HKMg8mYyTo2Npt-1VSNPwjdM7X2m2BW97poVKtdHvM4,4156
|
|
1062
|
+
telnyx/types/rcs_suggestion_param.py,sha256=FtdHVg6uuTZZpuoo2PyLj17L5vq4wp1mjz9oVekGjmA,4167
|
|
1063
|
+
telnyx/types/record.py,sha256=PZKiKpovPR_hGKNPmtJD4v5hp37mqTn88bXnHy8dve0,585
|
|
1064
|
+
telnyx/types/recording_delete_response.py,sha256=J4KEMuOCWhhA7hjADDYNfkt7o7OZlLVttd1gpC4HYN8,339
|
|
1065
|
+
telnyx/types/recording_list_params.py,sha256=qy7oXrjEIbNo8DRLY2PtwJe6vFklBiDYRCiZeXDcYEQ,2274
|
|
1066
|
+
telnyx/types/recording_response_data.py,sha256=3Isd-l_rEoNPLMyyblrMpzNZ4Veh0GCk-WYRcBAU8z4,2380
|
|
1067
|
+
telnyx/types/recording_retrieve_response.py,sha256=sy2bO-EiLx3a9_TDcjSMVrXgSqSG8x7opUsYIg3cgu0,343
|
|
1068
|
+
telnyx/types/recording_transcription.py,sha256=k1zaabZB04H_Sc7qDb84cIyx7BGbsWPO7u09TgEVt1E,1157
|
|
1069
|
+
telnyx/types/recording_transcription_delete_response.py,sha256=Kqxe7XpQzvj9bfjbWy3w4KvJgPT7_-ty3LY7FkCdtnM,367
|
|
1070
|
+
telnyx/types/recording_transcription_list_response.py,sha256=-nvyVDWdWhNJxybgI0Trr5bKRTsS9l6LYgcGx4OHTUk,814
|
|
1071
|
+
telnyx/types/recording_transcription_retrieve_response.py,sha256=VpWVOtEIt6x7RZu0m3031jGNPQ3e3yuAxySaDD_yjd0,371
|
|
1072
|
+
telnyx/types/region_list_response.py,sha256=63xraL2UKHy65WEzP8NokxC5F1rL_dRkjAgXBQaMrnc,865
|
|
1073
|
+
telnyx/types/regulatory_requirement_retrieve_params.py,sha256=fex1dxJ3E3yJa43mwO6juuUsOHNfthCsE__HOgdQbj0,1244
|
|
1074
|
+
telnyx/types/regulatory_requirement_retrieve_response.py,sha256=ML0a3Te_vhCA3TQU4ex5jZjAdvRkIJkwVUjMtZ7v9Bw,1328
|
|
1075
|
+
telnyx/types/replaced_link_click_webhook_event.py,sha256=uNNc00sp7pIZ9iNcYJpIlvSNOOES3L50AszXGJvc81U,880
|
|
1076
|
+
telnyx/types/replaced_link_click_webhook_event1.py,sha256=uNNc00sp7pIZ9iNcYJpIlvSNOOES3L50AszXGJvc81U,880
|
|
1077
|
+
telnyx/types/report_list_mdrs_params.py,sha256=7m_OXWSKQUijlTks53XcjvRNgYxsd-hKcZJNZC5paO4,831
|
|
1078
|
+
telnyx/types/report_list_mdrs_response.py,sha256=P3lqnwXACpqj0M4fI1dNy9ItxrzKOkIRnzTqs1hDZ8Q,1860
|
|
1079
|
+
telnyx/types/report_list_wdrs_params.py,sha256=HCKoCIlPkMFraR-ZPT-1sBaj9kxcTQkYknUQuITe6As,1087
|
|
1080
|
+
telnyx/types/report_list_wdrs_response.py,sha256=RsCVcSrh9YY-gZGUGgNGuoCPfO1e0sGD1BkCo0B17Xk,2040
|
|
1081
|
+
telnyx/types/requirement_group.py,sha256=YK8bRmW5AMMjnub0ic-xU8cacrR9HU_pNDvg4Z903h0,1213
|
|
1082
|
+
telnyx/types/requirement_group_create_params.py,sha256=g5Lzv9ZV_vKw3SbRFmDhPJRDXd9ndciu6CoTAi0mXFs,755
|
|
1083
|
+
telnyx/types/requirement_group_list_params.py,sha256=fdm0Qo1VB0yuApaF7AtPuCXfr1KZaJXa5ek1RDg7mSs,1293
|
|
1084
|
+
telnyx/types/requirement_group_list_response.py,sha256=tnppNgANdLq-yXTOCwgoRl-BCUFuptBDGdBIny-xQlo,310
|
|
1085
|
+
telnyx/types/requirement_group_update_params.py,sha256=EVh55HBnuKVbWTOYEesXSEhA3mm2e5dUZKoBNUah1kc,660
|
|
1086
|
+
telnyx/types/requirement_list_params.py,sha256=B60RxFf5BH71pRK3Hb5uHrwIsvj613T-RD4HYqUuaZo,1655
|
|
1087
|
+
telnyx/types/requirement_list_response.py,sha256=tZAVD7rXE1q4RxZR5WumNI2vDnnJ2sEtviYd8dR-8As,1573
|
|
1088
|
+
telnyx/types/requirement_retrieve_response.py,sha256=EyXQ0D16uMFD2B5a-SbFd2QGGUsTeVXvwbTp5w8wzGc,1646
|
|
1089
|
+
telnyx/types/requirement_type_list_params.py,sha256=TA2P16i1uZgzr92ta9OfUadD66LHaZoXS_x7AFlxwXU,989
|
|
1090
|
+
telnyx/types/requirement_type_list_response.py,sha256=kkvmLiF-lPy5mQwd0jcwDqU0U6lFNls_zHnnQcSS06U,457
|
|
1091
|
+
telnyx/types/requirement_type_retrieve_response.py,sha256=t9ormEevbwJnL5gslwDVKLJlhPQn5CAV0kVpNSIRJcQ,366
|
|
1092
|
+
telnyx/types/reserved_phone_number.py,sha256=8z3w5Cw0Vd2afQVykbNtevHMezTgtZAllDq9zM65UOo,994
|
|
1093
|
+
telnyx/types/reserved_phone_number_param.py,sha256=ewvRLAcec95e3RXIAq5eVJEIL6tFb6eIVusaJi46Bmo,283
|
|
1094
|
+
telnyx/types/room.py,sha256=MdRDNPRU33OKxPLmN19QhqGQWX4HhYo07kRHPUQBqzE,1544
|
|
1095
|
+
telnyx/types/room_composition.py,sha256=GElu3NghoRWCiQmEGwYlaOhky3M-k2ZeW60susrIxUk,2505
|
|
1096
|
+
telnyx/types/room_composition_create_params.py,sha256=zZcoL0EK5mS8pSyRCdcQqpFs1CWM1gMf3bavNsH_x28,1366
|
|
1097
|
+
telnyx/types/room_composition_create_response.py,sha256=GQZSymCSbN1d6d26W2G4K8M9Egzybwy9wNt0cTqENVM,332
|
|
1098
|
+
telnyx/types/room_composition_list_params.py,sha256=fZAq_aL-R5oVGrDREwW6jbhZSivSXCp5if2zBQnMgMU,1760
|
|
1099
|
+
telnyx/types/room_composition_retrieve_response.py,sha256=Fg4Uz5ZpDRey6z73AqVFRUSH6526yXbWpHTwCqB2k-k,336
|
|
1100
|
+
telnyx/types/room_create_params.py,sha256=Z3LIBrWYYovM5PLbIzRug8wYPx9mS3G2KgV6hSYFBUQ,1073
|
|
1101
|
+
telnyx/types/room_create_response.py,sha256=wQj61G_7OGfR8ykFqdXnDM-sdmytyTLlrB05A26HOlk,276
|
|
1102
|
+
telnyx/types/room_list_params.py,sha256=bnixauL7AXhKaPopaQYHWa6cOUlQLrQ1fYXcsUzGcIc,2361
|
|
1103
|
+
telnyx/types/room_participant_list_params.py,sha256=6qWpOb9SgmSRdMp14-6mhVboAKte9i4ad-l2Ms4Yvvg,3238
|
|
1104
|
+
telnyx/types/room_participant_retrieve_response.py,sha256=aNJAk2FH1CFZRFl2TJ2py7KnhKrwNbZgvAh1Q0y0BGw,343
|
|
1105
|
+
telnyx/types/room_recording_delete_bulk_params.py,sha256=F7PcBN_kIosu8mhh8OiXiR2TY29v1StnT15g2bSbyjA,2896
|
|
1106
|
+
telnyx/types/room_recording_delete_bulk_response.py,sha256=g7O3r3lyda5ypaNxfNLKHLVFFPgfk2kbnaLJjL63IfA,399
|
|
1107
|
+
telnyx/types/room_recording_list_params.py,sha256=evvQIIk_i9ATbmiLzkTVk-QhffupGIZtlJ79mTXjogw,2884
|
|
1108
|
+
telnyx/types/room_recording_list_response.py,sha256=FivIy3olOym9DH9zjn3rsSuDLu3eASLkeEuru4dy_5A,1849
|
|
1109
|
+
telnyx/types/room_recording_retrieve_response.py,sha256=lSIHhj_xWI9X3JsMp0ejf_Za9RdP5jpCSLwx6B7SCsI,1922
|
|
1110
|
+
telnyx/types/room_retrieve_params.py,sha256=xl4Z63xlHii9uOTsW9ZSUgwALk9RRSzfLyW02zbeuSY,349
|
|
1111
|
+
telnyx/types/room_retrieve_response.py,sha256=C-Eg1ciyPiI2qZUANW6u-IYBF-FQWRpGnCcs84jFkfY,280
|
|
1112
|
+
telnyx/types/room_session.py,sha256=7Z476C13L7hPm1aLc1wZ9C7al-9J8GDpD1KJ6CDKom4,970
|
|
1113
|
+
telnyx/types/room_update_params.py,sha256=fFVeh0SaDzTH-l9W5t_m1Li-pnlR2pGBhN60-OM1siU,1073
|
|
1114
|
+
telnyx/types/room_update_response.py,sha256=4xnpqff5b3iKfa1MaVu_9ndZT_1aMe47IUo6llHOHQM,276
|
|
1115
|
+
telnyx/types/s3_configuration_data.py,sha256=uzSKWfuKNtAALN1fj8Odqce1EevB7ImPmX22skVzD6Q,667
|
|
1116
|
+
telnyx/types/s3_configuration_data_param.py,sha256=CLYNOJVZN3caNHugbg7C1XCY7LKSTm3c2OuO-ToUO2s,628
|
|
1117
|
+
telnyx/types/service_plan.py,sha256=eiGngnNzNDcqroKgc3A1FunGJzeBGI1JYp3xJP5WuSw,207
|
|
1118
|
+
telnyx/types/seti_retrieve_black_box_test_results_params.py,sha256=kRoeTxq6yEUr28SEyo-h5gw_JItrLN8dIVgw7CjA3dI,599
|
|
1119
|
+
telnyx/types/seti_retrieve_black_box_test_results_response.py,sha256=rbb1Pp1Co-nSg4KoPN1pFyQuLXoJw7flWLFZupqYbUQ,813
|
|
1120
|
+
telnyx/types/settings_param.py,sha256=o53wiasVHvLsmbMsyGxvQTP8q7YnjZet5FAx-lo51c4,821
|
|
1121
|
+
telnyx/types/short_code_list_params.py,sha256=Y8wITyIDqv7ZF6Qd9H4zRlBSZC4emMrMGvm4aY-D4rc,985
|
|
1122
|
+
telnyx/types/short_code_retrieve_response.py,sha256=r0VPeGPNPdX7T0Z172uk1UGf4F7LZPpH8gzItaPGxnM,313
|
|
1123
|
+
telnyx/types/short_code_update_params.py,sha256=9Z5pAC87yBOAWw7ToUNgiZ8OWcFTbqvsfUdDD23qXbg,426
|
|
1124
|
+
telnyx/types/short_code_update_response.py,sha256=_LdVQSz5Tll_i2rN0UlLa3jQs_EkzDR3B8so_1bGYao,309
|
|
1125
|
+
telnyx/types/sim_card.py,sha256=ryOT5KcVrt3AWp77Sn2v_Tvr4-TyTzZe2SQFBNP9yI4,6874
|
|
1126
|
+
telnyx/types/sim_card_data_usage_notification.py,sha256=uBiKT6_MCuLl-LJ73u71ZpjIsJmwP5AJPcogkFJeanw,1101
|
|
1127
|
+
telnyx/types/sim_card_data_usage_notification_create_params.py,sha256=KgbFD23TqfZ_SuKnGsywtiBrT5yyis64cGmEjKut3rI,685
|
|
1128
|
+
telnyx/types/sim_card_data_usage_notification_create_response.py,sha256=L_CGKuBjgAnFbvYW-PhL7-lkcV36OHBbdkE2UbWo4DU,471
|
|
1129
|
+
telnyx/types/sim_card_data_usage_notification_delete_response.py,sha256=Ibd1Sr9CrpNa1TYCDhdMrths-l7QbWdF4ryyDeZUU7U,471
|
|
1130
|
+
telnyx/types/sim_card_data_usage_notification_list_params.py,sha256=t2fJ5zx1_Kdg5giMaDhJ7doaSYNSAr6zSZE4_01-9bw,649
|
|
1131
|
+
telnyx/types/sim_card_data_usage_notification_retrieve_response.py,sha256=1sAgwZxXFhrHcgniIgJ_z0YNCrok97w3N_7dNPYtlnI,475
|
|
1132
|
+
telnyx/types/sim_card_data_usage_notification_update_params.py,sha256=4CDUlH0qNrCK5-jdiso7AdM0PoDpnL1TK3QjuAgjHTA,655
|
|
1133
|
+
telnyx/types/sim_card_data_usage_notification_update_response.py,sha256=mgl0D1N32KWxp1BuN4w4LE7bNk30nZsGfXsjzbBU_b4,471
|
|
1134
|
+
telnyx/types/sim_card_delete_params.py,sha256=0hWXOphTIb1QEYG-cwxX-8SSZ-lDf2o880O6OreQi7s,428
|
|
1135
|
+
telnyx/types/sim_card_delete_response.py,sha256=kPkuTddeFz1CvYmrkbd5H9llUH5omPbD5tRzplUXLoI,292
|
|
1136
|
+
telnyx/types/sim_card_get_activation_code_response.py,sha256=34Hq4t2NpAtuL5JPI2YOt4DCqnsX7Cf_0HgGQbyVF3A,446
|
|
1137
|
+
telnyx/types/sim_card_get_device_details_response.py,sha256=T4v9x2XnW6qp_Kxkx8MzCR-PtrGdtp1xyy25h5Skb_Q,972
|
|
1138
|
+
telnyx/types/sim_card_get_public_ip_response.py,sha256=g4zrRFlBPETm_vi81GlQ036f3exPxFJz64SWLg6fcRc,920
|
|
1139
|
+
telnyx/types/sim_card_group.py,sha256=tgAwS2pi70MncgrCqfCgB5B5P_MQlmZKNfY2DAzMapo,1600
|
|
1140
|
+
telnyx/types/sim_card_group_create_params.py,sha256=8L4pNAEaEGj-_NC61eIU_P3CwxQZn4lz22YgfdhUQpE,637
|
|
1141
|
+
telnyx/types/sim_card_group_create_response.py,sha256=GVG3yPRKLYp69eVHripBXu9kQn_5DfDKZVqyPCUtO2g,318
|
|
1142
|
+
telnyx/types/sim_card_group_delete_response.py,sha256=rUjSDPZyN6T_QP3hxIoGmPnVGt2YZQPwuIjJKkAdiBQ,318
|
|
1143
|
+
telnyx/types/sim_card_group_list_params.py,sha256=iak9E-kpKeCnsNjqqTKOMQsKAmra4wMkMRl5YtG-ysY,957
|
|
1144
|
+
telnyx/types/sim_card_group_list_response.py,sha256=TYPE3t9qzXtE2iWaG6AhPQ-T0NfKVK6U0R-hvhYwpSo,1727
|
|
1145
|
+
telnyx/types/sim_card_group_retrieve_params.py,sha256=8qnfDQYr3BlCp27kJDmLsb_tigz96PUgL5C5Z2AhMxQ,341
|
|
1146
|
+
telnyx/types/sim_card_group_retrieve_response.py,sha256=wLwOKDSYRs2UkobvM1y17IcihJgpfhejrq_VyXwIp-M,322
|
|
1147
|
+
telnyx/types/sim_card_group_update_params.py,sha256=wzfV-9KoH_Ku9CsGsafKkClY-jevt-x9i3pEFKDJyOU,617
|
|
1148
|
+
telnyx/types/sim_card_group_update_response.py,sha256=LyzaW-mSPTmKlclDb3fs00RsTx6mlrelXZTS7lZN2ks,318
|
|
1149
|
+
telnyx/types/sim_card_list_params.py,sha256=hNavFpL5rwrX6HvqyeCA1-zPM5cKc2nItHJTDhf_ILk,2289
|
|
1150
|
+
telnyx/types/sim_card_list_wireless_connectivity_logs_params.py,sha256=YuHS18Y4Y0N5hFvyWwNgA02dDMViMimeQ74NTejL41o,541
|
|
1151
|
+
telnyx/types/sim_card_list_wireless_connectivity_logs_response.py,sha256=l1KlNQxoSq7EQwJssEL2rvtKlsUi_YfVGQpQP-IGt5o,3764
|
|
1152
|
+
telnyx/types/sim_card_order.py,sha256=kcBT3ytEHqZ2GsO0xJ7oBtGfdEn0fs5-uzU_kAu7XEc,3232
|
|
1153
|
+
telnyx/types/sim_card_order_create_params.py,sha256=5KAsNknANWAtO02f78EVgMzqliE-rkOp8lYA-rwvrXQ,431
|
|
1154
|
+
telnyx/types/sim_card_order_create_response.py,sha256=PeC0Lgw9gvzJoCg5-En-_4SGwkS9yQ9oh_6E3Mdv1b0,318
|
|
1155
|
+
telnyx/types/sim_card_order_list_params.py,sha256=Tf9v85ipYo6eB_5Eh889NUAbp22d5Ulf1hcrJ4MVjVQ,3247
|
|
1156
|
+
telnyx/types/sim_card_order_preview_preview_params.py,sha256=GLB9vJsYy-BUADgN_0twoq3f1vHIRG86f_Zt6JGTtac,511
|
|
1157
|
+
telnyx/types/sim_card_order_preview_preview_response.py,sha256=x2dhTdPLD6DWjfiPSJhHfjcYtP3r_lXEUPWNrEEblcs,1290
|
|
1158
|
+
telnyx/types/sim_card_order_retrieve_response.py,sha256=GYLCvb2lrz2VetUPGBNdK9iEWY0v2mSwu_VGHgqA3b0,322
|
|
1159
|
+
telnyx/types/sim_card_retrieve_params.py,sha256=msfn5KqDidUX18bAc0mFlQA70XECzWhdAl7ria3s9uk,616
|
|
1160
|
+
telnyx/types/sim_card_retrieve_response.py,sha256=1Gnx72wKn2QvDXii7elirdIUjVEl23ZXDrq2X5O_xTI,296
|
|
1161
|
+
telnyx/types/sim_card_update_params.py,sha256=28EFLuwYK_tShzb5l_KlVtcu80b7Vr-i5CPuOdSq8fI,1034
|
|
1162
|
+
telnyx/types/sim_card_update_response.py,sha256=TQ8B1JYAhOFzzpywZ_0I5AFSd_UQzX1OhphcqbwnMW8,292
|
|
1163
|
+
telnyx/types/sip_header.py,sha256=SBBvBzGKngaba4k0-vKQZYuwdLwCtoPglPt2C_GTzjg,339
|
|
1164
|
+
telnyx/types/sip_header_param.py,sha256=VF4Dw9UcPG0qulCDCup7wm9BAVcSAO3kmYWIQyhuZRI,406
|
|
1165
|
+
telnyx/types/siprec_connector_create_params.py,sha256=8TjCI3DJzIG29H-nzntvyHvjEFRssJ8vI5-J8KUEqO4,612
|
|
1166
|
+
telnyx/types/siprec_connector_create_response.py,sha256=5IHpw07FODSscGqXSncsLfS8Qw_WdLf_ySg8-7lRZHU,854
|
|
1167
|
+
telnyx/types/siprec_connector_retrieve_response.py,sha256=OQRBDNKPhfmt0UpRB3sR1WQPPvBXbXAPA8eo9OgvpII,858
|
|
1168
|
+
telnyx/types/siprec_connector_update_params.py,sha256=H2XZbb53UZy__CytRodw82XDpLy1VC2B2KrOr6w155Y,612
|
|
1169
|
+
telnyx/types/siprec_connector_update_response.py,sha256=3XJlAD7OkMMx6bMxRVlTBf6IbLBdiO3tw_gNeoFfAyg,854
|
|
1170
|
+
telnyx/types/sound_modifications_param.py,sha256=55Fb5uK1UPzC56zFcAggtKnE5l8a-wc_mX-Gp11Z0BI,796
|
|
1171
|
+
telnyx/types/speech_to_text_transcribe_params.py,sha256=2UBykFl7LVcXpOeG_DM3uDUI5q5Dpkh4l4Dts5Vspt8,1143
|
|
1172
|
+
telnyx/types/storage_list_migration_source_coverage_response.py,sha256=scPDrxF0TeUHHjpZi7lQgmOCM2dF7Dwi2FGm6kSw2bo,700
|
|
1173
|
+
telnyx/types/stream_bidirectional_codec.py,sha256=5vpEFf39xHjdEheIlioJQA5tTXj5dHlXwZXrTfs3egQ,272
|
|
1174
|
+
telnyx/types/stream_bidirectional_mode.py,sha256=0q0fmRopWjaa4QQAbP0kWWEdsYjYV-4S2isZPBVuxLw,235
|
|
1175
|
+
telnyx/types/stream_bidirectional_sampling_rate.py,sha256=T2WEMVE7_AeX1AXkXcSkXXab8zT-jxMySKCR7PRaLVA,271
|
|
1176
|
+
telnyx/types/stream_bidirectional_target_legs.py,sha256=MbV-S4HB92iCT3dkYUPLgHkpV0Hu5aF-TZ2tiN6qAhY,261
|
|
1177
|
+
telnyx/types/stream_codec.py,sha256=EAxerZRD_V3kaQckzKBWhRNZBJilq5Wbd65X4Ydntx8,257
|
|
1178
|
+
telnyx/types/sub_number_order.py,sha256=KzlLcQFuwm6YUWPuSWmKg5qEYCEHaVgpCwS6uAlqnbU,1585
|
|
1179
|
+
telnyx/types/sub_number_order_cancel_response.py,sha256=V2Rg3ImwNq9LFBeKrt-AQrtxo4B1H9yZcG81NYC_gjw,328
|
|
1180
|
+
telnyx/types/sub_number_order_list_params.py,sha256=U2AfIZbGFRA1jpS7qUnKoDGeiSlXPnLwtBELcwEgjFg,1088
|
|
1181
|
+
telnyx/types/sub_number_order_list_response.py,sha256=Mqyf62ir2TiH8asxnKQZmOfZ5aKQouzflc1L_bpAmNE,423
|
|
1182
|
+
telnyx/types/sub_number_order_regulatory_requirement.py,sha256=cJj1dw4CLHlJfh_lSEdvOG39h1vRqBwAujXGPMlZJD8,500
|
|
1183
|
+
telnyx/types/sub_number_order_retrieve_params.py,sha256=_HXxuNDcKUou2mFFRt56cLSn9BQNaduZDEYJIQWI8js,662
|
|
1184
|
+
telnyx/types/sub_number_order_retrieve_response.py,sha256=H8jhwUzIKHlXrXp7AEKnxfdnfAVnKTIK7NIhpmtFl8I,332
|
|
1185
|
+
telnyx/types/sub_number_order_update_params.py,sha256=bNDhrDCqnplffOEsu_g2lLr7Pg5cxwTTJ_O0wR24W5M,448
|
|
1186
|
+
telnyx/types/sub_number_order_update_requirement_group_params.py,sha256=DxoVR_s0VrM9c-6LeKn5XjzWBzJH5BnD55ojeOQFqIg,402
|
|
1187
|
+
telnyx/types/sub_number_order_update_requirement_group_response.py,sha256=9i9wpfyvL017r6jseM56VDidVCzcrhdm0NAZP1F1mDI,1987
|
|
1188
|
+
telnyx/types/sub_number_order_update_response.py,sha256=aPferhFy2l8vqph5zN8Tr_5W4_ZoYIQpitLpsfyEsiE,328
|
|
1189
|
+
telnyx/types/sub_number_orders_report_create_params.py,sha256=8ULbPKmQifLhXasaLO3p0fyfX582-xDHB8zMAd6Zyww,945
|
|
1190
|
+
telnyx/types/sub_number_orders_report_create_response.py,sha256=1fwveQFbFIIYmDF13j3o6IXeSey7J4BN654ZiDIrEHk,1563
|
|
1191
|
+
telnyx/types/sub_number_orders_report_download_response.py,sha256=QZVXj_5IVAP-hE6-qew6iZ8zTnzrcKr4mTpNYQLdJVE,239
|
|
1192
|
+
telnyx/types/sub_number_orders_report_retrieve_response.py,sha256=oUPry7rFV2RuUy_P1waKvx-TnU_BDSKc4ozoFP9We9I,1567
|
|
1193
|
+
telnyx/types/telephony_credential.py,sha256=YRSUL33R7HLWsgXgB2MjrhHp1edMdc4wD0Oq8cU44Tc,1132
|
|
1194
|
+
telnyx/types/telephony_credential_create_params.py,sha256=FPfn9GAGhg85nYAqtOpLEGnc6YQ9DZQQkpKVBEz1V7o,609
|
|
1195
|
+
telnyx/types/telephony_credential_create_response.py,sha256=aelSQZx2nTNu07vyGx3EgXVvaAfycR2LH1d2Su5dJl4,352
|
|
1196
|
+
telnyx/types/telephony_credential_create_token_response.py,sha256=vdHBV4OQ0dcWww7dWCXf1zKLqLCs3kRmiv7JX-iyngk,238
|
|
1197
|
+
telnyx/types/telephony_credential_delete_response.py,sha256=D3Ojo2pysYGcA4C9cHx12Hr4gWSUd1l1dQoZqI0MU30,352
|
|
1198
|
+
telnyx/types/telephony_credential_list_params.py,sha256=FM6gVJLoW7rhdpmbJ8ZDxV7JDxFKROvDREePXW0Qm18,1090
|
|
1199
|
+
telnyx/types/telephony_credential_retrieve_response.py,sha256=ILXp0qHAs12wL4E5vVMDUa7fFrmsN8tWdtaU4czPhEI,356
|
|
1200
|
+
telnyx/types/telephony_credential_update_params.py,sha256=WjBH96BIA8jbqmss0M_MPY9x4cYmOGbSs4ys9MQneIU,589
|
|
1201
|
+
telnyx/types/telephony_credential_update_response.py,sha256=LFpp88SJWHUTvm2iSHBRUGh4cwhGp8hjtZoiH05wbgE,352
|
|
1202
|
+
telnyx/types/texml_application.py,sha256=MwCkyB1CQ9e8xYTO54j3PUuZq2T7kM03mmfb5emnz6E,4343
|
|
1203
|
+
telnyx/types/texml_application_create_params.py,sha256=hG8kSIcRYYFMEWNvZvZvyYIx1nbDoD_QJRjSJP9SWJM,3718
|
|
1204
|
+
telnyx/types/texml_application_create_response.py,sha256=3UQPNFJF97fFnyiGp5RIDZBbdkKWMEdsQpnMIeWtmgQ,337
|
|
1205
|
+
telnyx/types/texml_application_delete_response.py,sha256=PoZI3wfrCXq50MDVZrX7Qr1KRHUGgsoBOyKVK2UWbks,337
|
|
1206
|
+
telnyx/types/texml_application_list_params.py,sha256=cqbPrcNwld-YkzdwqfAeeO9agiqzjoPF_gEtgq2-mfs,1776
|
|
1207
|
+
telnyx/types/texml_application_retrieve_response.py,sha256=Aq9H0TIZf4ULlGlz1_yoWusXP1Gh-sUfFB-iUbxn-Jc,341
|
|
1208
|
+
telnyx/types/texml_application_update_params.py,sha256=_p1M6ZDbhe59tyoxj0ddrQAn9jVTthgI3RSDGpW-3Ds,3718
|
|
1209
|
+
telnyx/types/texml_application_update_response.py,sha256=cGDbjSfxA_kdV3gDX9LSgB6QxcM5heJoBTct6R9OFsg,337
|
|
1210
|
+
telnyx/types/texml_secrets_params.py,sha256=Szn_zRWLU9iwNNhqFgjGGZLnY0GTXoP9uf1JzXr0_LU,523
|
|
1211
|
+
telnyx/types/texml_secrets_response.py,sha256=ylFPjOUsLefgleC1itNVHFGscKGkKbSsWq3a2rwW9_Y,408
|
|
1212
|
+
telnyx/types/text_to_speech_generate_speech_params.py,sha256=4t5XT6SYw2vkWyITJ08I6ASt0C10tId4v3G3TWEBrOI,703
|
|
1213
|
+
telnyx/types/text_to_speech_list_voices_params.py,sha256=csnzlAqf8BYDdk4x007Byv-PDrQnfowUak2dxBWIbSI,484
|
|
1214
|
+
telnyx/types/text_to_speech_list_voices_response.py,sha256=c1j4-VT3c_m4kJVEXfYSAoiFl8v4m9c1shHQMvnVDzU,592
|
|
1215
|
+
telnyx/types/traffic_type.py,sha256=A-AJm17wtfR_2Pw5Kv8UikoP1VO8HmdvBhcLArUMFZA,215
|
|
1216
|
+
telnyx/types/transcription_webhook_event.py,sha256=vcg1hLd5IFuOJHiVi1-TLYkf5ybw_18MfHueHPSmMZU,2267
|
|
1217
|
+
telnyx/types/transcription_webhook_event1.py,sha256=vcg1hLd5IFuOJHiVi1-TLYkf5ybw_18MfHueHPSmMZU,2267
|
|
1218
|
+
telnyx/types/transport_protocol.py,sha256=Gyoe_0z2H4u4wCzPnhwT8ohBi_YCSkBOtanpOM5COtA,230
|
|
1219
|
+
telnyx/types/unsafe_unwrap_webhook_event.py,sha256=ajGmJjOSCdsHlIXCyDJxoYysVwAIXxpU2KtDzdDxBpU,7458
|
|
1220
|
+
telnyx/types/unwrap_webhook_event.py,sha256=SpNyY6WeXpm45NmNpJa4_8TQVMeylPQk0yBH3KZnMrE,7446
|
|
1221
|
+
telnyx/types/update_regulatory_requirement_param.py,sha256=QhOyVF_pzTxrYUQOBsYMfUAZ4P-rZPlEFFEHZTvYn0A,552
|
|
1222
|
+
telnyx/types/url_shortener_settings.py,sha256=A1dBF1YhPWagHzaSZ8c9op3ZBvHmC8Ihyjy7OSHZRjc,1309
|
|
1223
|
+
telnyx/types/url_shortener_settings_param.py,sha256=hLOYV6UpD26RmmgsuT10ogFb4ZcTt47VjXpps_weJb0,1316
|
|
1224
|
+
telnyx/types/usage_payment_method.py,sha256=vrC9TQxAft3KAEG4-djggbKTrg6XV2RiUyR2oNNIt1w,224
|
|
1225
|
+
telnyx/types/usage_report_get_options_params.py,sha256=h7u8CfNHK-nU3P-nkTlzPi9CT8mWAa_rEWGwPpQZI7A,503
|
|
1226
|
+
telnyx/types/usage_report_get_options_response.py,sha256=QMfH1j3IEKSOYER8NhkMsGvG42A_hgmhcMAWAHgaLJg,1367
|
|
1227
|
+
telnyx/types/usage_report_list_params.py,sha256=0sGQpH-i1NjaMqdrg_H7Wxf8W5WphWlg_vg3eAU1_e4,1734
|
|
1228
|
+
telnyx/types/usage_report_list_response.py,sha256=i6XWG9_l4jzcrzYFuVIblvd2MFyxUAbH9AccCZA0VoM,246
|
|
1229
|
+
telnyx/types/user_address.py,sha256=YtjviQBN_Q8zuqFIyOVf3X3isHXct6AsDJLd8i9LMIM,2314
|
|
1230
|
+
telnyx/types/user_address_create_params.py,sha256=frCyjEztSlw0QcSQD2Vw3mZ55f718-ng8J3JhHDKtpg,2739
|
|
1231
|
+
telnyx/types/user_address_create_response.py,sha256=XheRImBaE4wHGyEn6x303hKRAzLY0tlROpY9bi4vXPI,312
|
|
1232
|
+
telnyx/types/user_address_list_params.py,sha256=DPYvRi5oDXYUIB8iwb7lddE6nng2F8SLy22M4_YFcJo,2966
|
|
1233
|
+
telnyx/types/user_address_retrieve_response.py,sha256=q0sb1tJNnWg5GZx8hLOGa2BmPiES5e6D-9E3cJBXM6E,316
|
|
1234
|
+
telnyx/types/user_tag_list_params.py,sha256=NkdpQOqBB_fXepN7tLbcOA69J_YsR8RtF40ZwY6Tk_Q,574
|
|
1235
|
+
telnyx/types/user_tag_list_response.py,sha256=peplsopZlTAWLZnTF9qHOc1SnWV3gB-kHrYU6TgitUU,1053
|
|
1236
|
+
telnyx/types/verification.py,sha256=etIqQbjIWYn1cU8NFuEOK4sMXq6Neq4Jeme3Fnf3dJU,1309
|
|
1237
|
+
telnyx/types/verification_retrieve_response.py,sha256=1VDPKAqX8HPHo8YKNddOPX0hM653O1cUJU-NPOjYYtQ,274
|
|
1238
|
+
telnyx/types/verification_trigger_call_params.py,sha256=vJsgP7Tjum_Zf_JVzaBMSdHtG0Fn75K04e-nZasNH5s,872
|
|
1239
|
+
telnyx/types/verification_trigger_flashcall_params.py,sha256=gtbnxXpCy-QbKrmj8gkgZPUcLmheZgBh7yCq0fYvjmE,551
|
|
1240
|
+
telnyx/types/verification_trigger_sms_params.py,sha256=3fLec5fpkUTdsmml2tLp-c6elbD5ZHm_xoux-QSMFYY,660
|
|
1241
|
+
telnyx/types/verified_number.py,sha256=A9j9l8Znwt3wXSOxtVvSpwBH4IsC7ydPzd4oPSPXwd8,445
|
|
1242
|
+
telnyx/types/verified_number_create_params.py,sha256=I-09tpKIkMhTdjReJzLA0K0d8VY3kjbskhayGCaYBEM,819
|
|
1243
|
+
telnyx/types/verified_number_create_response.py,sha256=k3kikVZDwy4UZ8szFrnfknJYdcZeBvYM5TpJOx_i-PM,327
|
|
1244
|
+
telnyx/types/verified_number_data_wrapper.py,sha256=O9UQYCkGMK4oScY6TppqTuPXkzJ93i3KGNjpX65HTzY,321
|
|
1245
|
+
telnyx/types/verified_number_list_params.py,sha256=U4goB2grHOIKPVCAbu3JLE7sLJA9F8F1WTgQyo8_wyw,440
|
|
1246
|
+
telnyx/types/verify_profile.py,sha256=jLAoLw6jSpcHzf523blICOqbdUn8tie9v0CNbJCSHN4,5174
|
|
1247
|
+
telnyx/types/verify_profile_create_params.py,sha256=6mMmInWqwlLcOeB98iOO2AG8kfttOedMwHq25iwQ10k,3349
|
|
1248
|
+
telnyx/types/verify_profile_create_template_params.py,sha256=INfbxm21Yp6SPWPu-j-r6VF0UKHZV1IcyUau2hLpQ7I,365
|
|
1249
|
+
telnyx/types/verify_profile_data.py,sha256=zuMcvo3F_6ugK6OJUEtmTey-WSMpUqkvJDfLruSViYM,302
|
|
1250
|
+
telnyx/types/verify_profile_list_params.py,sha256=ps9RD8ccxm0SBJsf7xnbzHCtz0D_8xp2zSKtiVlv178,738
|
|
1251
|
+
telnyx/types/verify_profile_message_template_response.py,sha256=rrKwb76NrJSljpk3SOFr-SN0KxFW1IqLoYunLiFtX3o,318
|
|
1252
|
+
telnyx/types/verify_profile_retrieve_templates_response.py,sha256=nJUltl6VSECpBdnKxQJhdWxwKCzlWYWLd2-bizfuJ0s,455
|
|
1253
|
+
telnyx/types/verify_profile_update_params.py,sha256=3vUMeRqKFjorZQjvvok0AcEOz-HYHggEvH9fUSjMFU0,3319
|
|
1254
|
+
telnyx/types/verify_profile_update_template_params.py,sha256=a3PseCd91Jmz-jN3Zl7-mmFsbo0vO-tE2zLLRzhzaFc,365
|
|
1255
|
+
telnyx/types/video_region.py,sha256=zaMiWSVkAc0FbkWrK-g1uNPqW0QgBT9mH7kpjrpqzXw,1488
|
|
1256
|
+
telnyx/types/video_region_param.py,sha256=WF2Zqu_6U7RKDf80L-x7sLgNK0oPiHYqTb5leWLgMAM,1431
|
|
1257
|
+
telnyx/types/virtual_cross_connect_create_params.py,sha256=MlKQ1wUOlCxAlD9YN5M3vE2vpO6TSjwQ_Zw0P9IqkDs,3177
|
|
1258
|
+
telnyx/types/virtual_cross_connect_create_response.py,sha256=Ir9qDgqVRv1W3xUzr5aFTX7W_7xnTVz56OrMI7EUC04,4237
|
|
1259
|
+
telnyx/types/virtual_cross_connect_delete_response.py,sha256=u1NodSFVrAIiOFva1jcxKmBCzWvVaY5_J2tmnASobls,4237
|
|
1260
|
+
telnyx/types/virtual_cross_connect_list_params.py,sha256=9wKx9QQuVSp_3MIEZB3prCL3lV0zdXXplxcWqi3zjzU,793
|
|
1261
|
+
telnyx/types/virtual_cross_connect_list_response.py,sha256=4vrQmO6bQgcwtska2Affy7_QgA7hwm2QqvQGkw1_Pqg,4249
|
|
1262
|
+
telnyx/types/virtual_cross_connect_retrieve_response.py,sha256=wcQ5GgId0L1QFRmkHy_1IXAdKdXgB9I2I-raYHE2juw,4241
|
|
1263
|
+
telnyx/types/virtual_cross_connect_update_params.py,sha256=zjgxe6x5ERA45IXgZdoDSg4DYYS1k66iHnd2ar9mgTk,1302
|
|
1264
|
+
telnyx/types/virtual_cross_connect_update_response.py,sha256=_p8hP5V8mETCGWr4g1RNyn2JAmemIIs7DcG_WgTRCUI,4237
|
|
1265
|
+
telnyx/types/virtual_cross_connects_coverage_list_params.py,sha256=2EoYDwN1pUhBIRec9pOETwws8mOmUGo8NyDZ0aK2yaE,2549
|
|
1266
|
+
telnyx/types/virtual_cross_connects_coverage_list_response.py,sha256=8FqjTbvr6xjcCcLz9XzQMRisqLeLr6Yn1us5BBs8qyo,1415
|
|
1267
|
+
telnyx/types/webhook_api_version.py,sha256=Z1OhRLRE2APWtQOvcvPZPs0gL4cLK44_2ar1gx8REaE,219
|
|
1268
|
+
telnyx/types/webhook_delivery_list_params.py,sha256=oXqgh-AlaYWwhJ4-IJf_cRWHfi1BwQLm2cLmU1Ln7ro,2643
|
|
1269
|
+
telnyx/types/webhook_delivery_list_response.py,sha256=zyQB-c5mhIUljLo5ExUwHvi0Zyoe_yxtVRDR8W6m5Sc,3210
|
|
1270
|
+
telnyx/types/webhook_delivery_retrieve_response.py,sha256=zsFSthqnoxYgxYONSVTOy9xqVMZR5ixFA14xnzIiDwU,3402
|
|
1271
|
+
telnyx/types/well_known_retrieve_authorization_server_metadata_response.py,sha256=QsEQteFc_83NN-GkmRKkGN8Ewe-whM3oUEkcPxLhqls,1294
|
|
1272
|
+
telnyx/types/well_known_retrieve_protected_resource_metadata_response.py,sha256=Ldjp4M2JSMza74xuc5kLfl2Lny57-QZls6TmVQTxV38,458
|
|
1273
|
+
telnyx/types/whatsapp_media.py,sha256=5FK57B-QnluHpREaaFJq99E1j_xtgJO16m9U6iiQ1CM,458
|
|
1274
|
+
telnyx/types/whatsapp_media_param.py,sha256=rADmhd-l2bfZsfn_Pex4BRZqfRZhgBZdo_LWH5caqgE,428
|
|
1275
|
+
telnyx/types/wireguard_interface_create_params.py,sha256=OApli3Sxy5g7alPTBuOC7Xp0afpBFC0NWF9xNmaWrjU,613
|
|
1276
|
+
telnyx/types/wireguard_interface_create_response.py,sha256=dB07_jbuUUypqBclhzUuNjMoqGvA2ZvrMngrz0dviO8,1101
|
|
1277
|
+
telnyx/types/wireguard_interface_delete_response.py,sha256=k6NlAFH8K58WZNEXKh5haouWwNjoPDXFvoXirEX4Mvk,1101
|
|
1278
|
+
telnyx/types/wireguard_interface_list_params.py,sha256=gySXL0gj5BV5njY5XX-HpN3NDziqsQfpe1F4wfVmw1U,791
|
|
1279
|
+
telnyx/types/wireguard_interface_list_response.py,sha256=h7bJLU8DnSB9JfSFLs5sy2G93pHR2q3r_nwKJ0SEklU,1110
|
|
1280
|
+
telnyx/types/wireguard_interface_retrieve_response.py,sha256=mi9vFIG0Kod90qXzwxDJoAh29BJavNGPIaHs_6-SEWA,1105
|
|
1281
|
+
telnyx/types/wireguard_peer_create_params.py,sha256=IvkydnUQI-XDV-NNqQySgVxV8yD6NHWTV1009Tvw12w,565
|
|
1282
|
+
telnyx/types/wireguard_peer_create_response.py,sha256=R4hTi-CxgfPLyQRefhHKcJ68xJhkLPmpnzYoF99PHdM,1092
|
|
1283
|
+
telnyx/types/wireguard_peer_delete_response.py,sha256=rTHCG4sMK8ap6ANENhmD4U_8X6iVAk8cxZD-b5m3VeA,1092
|
|
1284
|
+
telnyx/types/wireguard_peer_list_params.py,sha256=KOjSr4rAxLudq16huqvvr49tBKPDszXD2AkO0u78IOQ,836
|
|
1285
|
+
telnyx/types/wireguard_peer_list_response.py,sha256=JcM-9M6KT6OdaNi_IkJt68ZmqjhdWFmyoxymatLw7TI,991
|
|
1286
|
+
telnyx/types/wireguard_peer_patch.py,sha256=Jehu7h2y3q5Th1mK8_pcnfeBucJrmlX9vAdrldFucuE,417
|
|
1287
|
+
telnyx/types/wireguard_peer_retrieve_config_response.py,sha256=adL1Wt2kiWfHo_NrpTyzskiqpeTqAqM77ktFfyci8CI,232
|
|
1288
|
+
telnyx/types/wireguard_peer_retrieve_response.py,sha256=yPBJ1KwFt7N9xBJo6PAiN6VnpJGWH3FvmIEx7fXy7p4,1096
|
|
1289
|
+
telnyx/types/wireguard_peer_update_params.py,sha256=SK0gM6fvCVhJ6kMFpie-mD3Ud5TEJwAnI5zS2ye-icQ,442
|
|
1290
|
+
telnyx/types/wireguard_peer_update_response.py,sha256=fTBNWG-nwrsk90ONI27k_p7PpvWeFo0F7zZAN7r-deM,1092
|
|
1291
|
+
telnyx/types/wireless_blocklist.py,sha256=Nt4NIIMZA4XNnLqVp9BAY2VMyEFdVKLz7kvC4vwxL7k,910
|
|
1292
|
+
telnyx/types/wireless_blocklist_create_params.py,sha256=lpYH6yUDojo2MK0QNqdcOzjnVtWnKxQXxP0Vcc90OlA,624
|
|
1293
|
+
telnyx/types/wireless_blocklist_create_response.py,sha256=bF7gI5mJ0ix92wnVrcpf9_bEg3ixoHbHEQxlfr8VeiY,342
|
|
1294
|
+
telnyx/types/wireless_blocklist_delete_response.py,sha256=Ey8vaxbXdTuCVODONKSaVgjmGfV0IUCbeNZsjTSCBSQ,342
|
|
1295
|
+
telnyx/types/wireless_blocklist_list_params.py,sha256=Ams_BwvX73GfqUXccA6Xp_eM-S_zY1H7sPCPUNMEP20,875
|
|
1296
|
+
telnyx/types/wireless_blocklist_retrieve_response.py,sha256=Ea7IxQV_i_G00dJnDpiInIsKNQRookEUZkljNH9uUbg,346
|
|
1297
|
+
telnyx/types/wireless_blocklist_update_params.py,sha256=5xCHVvQHLKPOSMmYmq0seJg4y8Hp8TWRKgY4YcLgjpE,584
|
|
1298
|
+
telnyx/types/wireless_blocklist_update_response.py,sha256=C5RmZkPXN76DOtNFAzkpfNTw-PNntRY7rcHF2QhzJdE,342
|
|
1299
|
+
telnyx/types/wireless_blocklist_value_list_params.py,sha256=e83Jq0z91nDQ4OqEFG_AJkMGyuVQkUCTZeaplC2cw1U,470
|
|
1300
|
+
telnyx/types/wireless_blocklist_value_list_response.py,sha256=7F-zPBkvgQjG4d9lOVfi9JlcqJRT9VnqGkfBNV8Seuk,880
|
|
1301
|
+
telnyx/types/wireless_retrieve_regions_params.py,sha256=lj2WCL_wkH33fTyYvywas_SudiqKUBq63WRjoyG66sg,421
|
|
1302
|
+
telnyx/types/wireless_retrieve_regions_response.py,sha256=3JzBDEWyQ6ZAhK7tmE1Mm-RU8pWWMe4u_4pmjNKIu-A,649
|
|
1303
|
+
telnyx/types/actions/__init__.py,sha256=o5FXTG_jn1gQK6IZa_tT73w8Y2GDRmB18k2mvN-bWqQ,459
|
|
1304
|
+
telnyx/types/actions/purchase_create_params.py,sha256=XW_aMip4mSnDb0yxG6llKs7mkStvQGv81HpctYFCVfs,1155
|
|
1305
|
+
telnyx/types/actions/purchase_create_response.py,sha256=iSfWhLU6OXxLSgws_8pLZjhzsqxGJX62_sygDh17_NI,850
|
|
1306
|
+
telnyx/types/actions/register_create_params.py,sha256=Hoe54_kHp6oo0uBKV5ua7sH_T4xo-dn6CvLceD2-8CA,767
|
|
1307
|
+
telnyx/types/actions/register_create_response.py,sha256=7Wgd-1zWLcFLafWd7SZVCOtgoi8N19nPKbvCUjJ_9cM,850
|
|
1308
|
+
telnyx/types/addresses/__init__.py,sha256=m-_aSxRiotRXrdHEqmV9NQlyot9383J7GhH7A9J7LjA,515
|
|
1309
|
+
telnyx/types/addresses/action_accept_suggestions_params.py,sha256=JkfCofLd09Uu5eAnSOSe17x8ljO9EN5LpqypxSL1cI4,316
|
|
1310
|
+
telnyx/types/addresses/action_accept_suggestions_response.py,sha256=PUK8ojT69lS3oSypV2FauV0MuxdHCmsoIKeufmHqsr0,579
|
|
1311
|
+
telnyx/types/addresses/action_validate_params.py,sha256=Q94O9NnGAxWADHZS4lFWDuypKVssnBeouGJ9-XDIj6w,993
|
|
1312
|
+
telnyx/types/addresses/action_validate_response.py,sha256=rcxSCtZSIVvUFzuI5vtsQRsDEiX8JGShDikTkGB-viw,2282
|
|
1313
|
+
telnyx/types/ai/__init__.py,sha256=O2dsDRIE93mctgHz03Ln3V29OmwakqRU-weNwsl_GBg,7615
|
|
1314
|
+
telnyx/types/ai/assistant_chat_params.py,sha256=CC0HBoZ2dWKUlrqMMuiz7Uj_Fg_abaMltXOTQAkLNLA,557
|
|
1315
|
+
telnyx/types/ai/assistant_chat_response.py,sha256=EB-0npHYLL4g2EsRBpdDm-objtcDg5NYujSpc9483-0,301
|
|
1316
|
+
telnyx/types/ai/assistant_create_params.py,sha256=irFltMbKZ9eaQ94fO9kFP_5lxUBBKiuLleJs2B6nVMg,4292
|
|
1317
|
+
telnyx/types/ai/assistant_delete_response.py,sha256=n4OgOtPNDAdUftm7ISNjigzI6Zt2wbWZaSeJ-bB9W1k,378
|
|
1318
|
+
telnyx/types/ai/assistant_get_texml_response.py,sha256=sTvUF8AQOVOB0OGnkvpWoMqReDTuxSM4-eS7bHoiXSE,212
|
|
1319
|
+
telnyx/types/ai/assistant_imports_params.py,sha256=-rsIjboQKyKhvuCxZyUVa3BsaPgQq1xW8uUfzIz8eGc,842
|
|
1320
|
+
telnyx/types/ai/assistant_param.py,sha256=oB3WhzRM2UsSTb5PGk6dRjeqmQw_t7uAGPn4ccsy7Tc,3731
|
|
1321
|
+
telnyx/types/ai/assistant_retrieve_params.py,sha256=JZ7ojEWhYs2h3e0JBUXfKnaz5tdb01Nx0eP4ntHVTEw,447
|
|
1322
|
+
telnyx/types/ai/assistant_send_sms_params.py,sha256=ZoTKmCgAzVnQothST6UlpBG2PV2jQlTu0Y7bYnrbbUI,546
|
|
1323
|
+
telnyx/types/ai/assistant_send_sms_response.py,sha256=vYD1UMCaltS4hHO1PUgnrCwOCgg-VtpQMsuqXrrYoyQ,276
|
|
1324
|
+
telnyx/types/ai/assistant_tool.py,sha256=KDtgIqK1NF418sGsiLduSEMbmxfHVIu8SJ7BBdqYo3Y,3988
|
|
1325
|
+
telnyx/types/ai/assistant_tool_param.py,sha256=d8UUDlkTOEa-sRT1KnngOFqBNMMTYewRUlh5QqTdXnE,4115
|
|
1326
|
+
telnyx/types/ai/assistant_update_params.py,sha256=l8QikmDBj5v9OBisGNAaBodk7a5C7-0hOncknQ-7Rvs,4389
|
|
1327
|
+
telnyx/types/ai/assistants_list.py,sha256=x3FhncF05rXI3gOJGIKDGIwnyUSb5rHvHaDw7h1-n68,297
|
|
1328
|
+
telnyx/types/ai/audio_transcribe_params.py,sha256=E1QqgLbL27D1E9a_7B455aZPFR4N_NHeNft6KpaH69M,1576
|
|
1329
|
+
telnyx/types/ai/audio_transcribe_response.py,sha256=nwvEgMlNdOqlnlKOP2uzU0GkomsqD8utgeVPDOAGepQ,953
|
|
1330
|
+
telnyx/types/ai/background_task_status.py,sha256=qfGTzQ1GkZNXhjkOQkQS7_UGv8eDCwC6_S_b1xN-hQU,280
|
|
1331
|
+
telnyx/types/ai/chat_create_completion_params.py,sha256=ekjiqZv-Pk-JFURQLwoQXGw4w3KJeF-UZHttbA-L23o,5452
|
|
1332
|
+
telnyx/types/ai/chat_create_completion_response.py,sha256=l9EJKdjcA1nWnQde9YY5yYRRRj4D9TXUfcaIXJ1PJmI,256
|
|
1333
|
+
telnyx/types/ai/cluster_compute_params.py,sha256=BzIa0BY7uje0bt37QL805eyST68PszbY0ZwrBFEKBis,1113
|
|
1334
|
+
telnyx/types/ai/cluster_compute_response.py,sha256=Kx9xDbEQA4Res87VTT4ik-qemRb6V21uy8F0bKL4cjc,266
|
|
1335
|
+
telnyx/types/ai/cluster_fetch_graph_params.py,sha256=TIHEqph4oLSvlJFotWZc74yY2JF4g3NQYb_9RSF3Puc,279
|
|
1336
|
+
telnyx/types/ai/cluster_list_params.py,sha256=0XSAZSwog6VjWR7RAyTwWm-d8XsgT4wR5_SbSSRZV2U,427
|
|
1337
|
+
telnyx/types/ai/cluster_list_response.py,sha256=Sw5UAeJpO66St4uphTLda5p7eWf5TOGkgaiPcO3LUfw,447
|
|
1338
|
+
telnyx/types/ai/cluster_retrieve_params.py,sha256=7sU3B0n_ZE17uc5tw6LC0pcpE3X345BUxNTTkATCQdY,528
|
|
1339
|
+
telnyx/types/ai/cluster_retrieve_response.py,sha256=oQGa0w2rdFZOBXzRn-muAj1WaQR1lSD5g3cVJ-wnIAA,495
|
|
1340
|
+
telnyx/types/ai/conversation.py,sha256=SqbBhoeCf1cGEN434GwwzuLvw4kfGgmtaZz5kTYebY0,645
|
|
1341
|
+
telnyx/types/ai/conversation_add_message_params.py,sha256=H3-OK8RD49cL5R-MuRRcH77d5E_7Y-2KbDnBS0xhpzU,772
|
|
1342
|
+
telnyx/types/ai/conversation_create_params.py,sha256=0zYEDBNTQsRqiT0vbogywRNsRYKqXt4dCK5G5kWkaKI,382
|
|
1343
|
+
telnyx/types/ai/conversation_list_params.py,sha256=SQp7y1CVuc1SPxJ8mlLLgmakgxzGo-e97CsqEt4ARGQ,2175
|
|
1344
|
+
telnyx/types/ai/conversation_list_response.py,sha256=FJB7lMGBALYH5MdKxvBmxuO9rgjKiE7UUh-5qh8PdDI,298
|
|
1345
|
+
telnyx/types/ai/conversation_retrieve_conversations_insights_response.py,sha256=tcTPkU88Ije1Rq5vGhFpEZCEiqJInW9II7BeNKFpfx0,1176
|
|
1346
|
+
telnyx/types/ai/conversation_retrieve_response.py,sha256=-HiQ97xbprhBvoOGTRQQUp0DuF4qbWADKGbt6RZw9n4,321
|
|
1347
|
+
telnyx/types/ai/conversation_update_params.py,sha256=rGdl-wP9ZrLcWJpmsOgRFu4E_zgTCJYHOivaV289cKM,367
|
|
1348
|
+
telnyx/types/ai/conversation_update_response.py,sha256=ZfOM5FqVEatx__5nQJR_Cny8RRF-i-b3h5jL77Feff0,317
|
|
1349
|
+
telnyx/types/ai/embedding_create_params.py,sha256=A04mkYl0nFewkZkpnMv24JAadnB8fiqLw1rxzGx7_JI,633
|
|
1350
|
+
telnyx/types/ai/embedding_list_params.py,sha256=O_GKp-ImK7HS_6ZST3j3KYenIx07nM2ZXpwuqeJbZdg,392
|
|
1351
|
+
telnyx/types/ai/embedding_list_response.py,sha256=R5bmdbwKes5JwxzuLsWRdCLLukAxkDL_59YLRcc6tCk,608
|
|
1352
|
+
telnyx/types/ai/embedding_response.py,sha256=U5A74GBhFIzy1N2uzcJ9wiou03iIMVDm0gmd8mcMbAg,485
|
|
1353
|
+
telnyx/types/ai/embedding_retrieve_response.py,sha256=nsTaJBWo79hhzqEZmciwJJn6WRNI7pvA-WNNKQ1_0DE,580
|
|
1354
|
+
telnyx/types/ai/embedding_similarity_search_params.py,sha256=tdNDuBUeqCyJSpG7ghTY1Jbxk2wcHbOcNtQbW-3_knI,364
|
|
1355
|
+
telnyx/types/ai/embedding_similarity_search_response.py,sha256=l3nuRy2FEeV5NFEwggPxM_6p6yS0ytdBsOg--C_XR8Y,1130
|
|
1356
|
+
telnyx/types/ai/embedding_url_params.py,sha256=l6jZ8PWsqiX3vl0HrmF29Sd2jxpQoYYucq-mtVrzh9U,442
|
|
1357
|
+
telnyx/types/ai/enabled_features.py,sha256=1MCQLmyaHOR-pJGIwmANfs4XAC8UuhcliOgpXvOHrBU,231
|
|
1358
|
+
telnyx/types/ai/hangup_tool.py,sha256=LnEAZmGS0infVdmjBtleuayp-CyZU1zNO-v9CUfgG1E,323
|
|
1359
|
+
telnyx/types/ai/hangup_tool_param.py,sha256=SQvf6lFUgKV1HDeT2qNY__eu-qDx_FnAjlXQ2lReuDU,406
|
|
1360
|
+
telnyx/types/ai/hangup_tool_params.py,sha256=YT6_fzWANLp4meyP32-Rt0HO7FOhDTHEJ3StXH2VN2k,336
|
|
1361
|
+
telnyx/types/ai/hangup_tool_params_param.py,sha256=RZaWG9PfKesctTgGYRNB_OIvPZo0T9Ph6WathUZfnd8,356
|
|
1362
|
+
telnyx/types/ai/import_metadata.py,sha256=6ksg_q1mIoL3FkoE9PkVXOPZeRk7HrJyNX-MZRq_kxk,475
|
|
1363
|
+
telnyx/types/ai/inference_embedding.py,sha256=PFT3ZsvsdGYF6uN7SJsMOzXsQ--SPolqSOOUmEgU1Ek,4645
|
|
1364
|
+
telnyx/types/ai/inference_embedding_bucket_ids.py,sha256=IKQkGiByRHphiafPIVjuTLlRrExNryss9OxKNxK0-gg,580
|
|
1365
|
+
telnyx/types/ai/inference_embedding_bucket_ids_param.py,sha256=0dhfMdvG5cC7_bhO_OSkNdoKNdFQcgpSHxgbZN-6how,662
|
|
1366
|
+
telnyx/types/ai/inference_embedding_transfer_tool_params.py,sha256=HgolavFaJGClQw1DXD6wJNfgZMZFVZa6hEWVcbHwljw,1424
|
|
1367
|
+
telnyx/types/ai/inference_embedding_transfer_tool_params_param.py,sha256=XrmnIBRk2g4CNAcYpjy0DR2607lVOJJdVw3FpyRiVEI,1554
|
|
1368
|
+
telnyx/types/ai/inference_embedding_webhook_tool_params.py,sha256=C9ST3GWuzM3h4PH7e-Vy0uyLU-C25lsM7xCBPsnVEPE,4487
|
|
1369
|
+
telnyx/types/ai/inference_embedding_webhook_tool_params_param.py,sha256=EuIIjunz1jov3SK8Po6-Fw6YxKZQCGl97TI12kWZTF0,4409
|
|
1370
|
+
telnyx/types/ai/insight_settings.py,sha256=4J4GFvMv-j697Stw6mOD0yU4glM7I6ji41JyL3BP3nA,402
|
|
1371
|
+
telnyx/types/ai/insight_settings_param.py,sha256=x-moBUrjK75NuMjXfMbdRyEXledn_U2bROcfGt_LVYc,422
|
|
1372
|
+
telnyx/types/ai/integration_list_response.py,sha256=rEr91BGpFoD1IprWfaiEcPF7K7LcXeSJu8qR4YRgJ0A,493
|
|
1373
|
+
telnyx/types/ai/integration_retrieve_response.py,sha256=ffURP_jp7uxiaBWVJt8LC4RuzT_bLvVLfal0io3CFWE,447
|
|
1374
|
+
telnyx/types/ai/mcp_server_create_params.py,sha256=GHCCyEdspYUFm1Ym31rzM-weHlPKfprgBLbXsAAPh-A,486
|
|
1375
|
+
telnyx/types/ai/mcp_server_create_response.py,sha256=m95aT1wrrqYz6V1MLlywy3ST9AMGDP58Z1HMu3fZjio,436
|
|
1376
|
+
telnyx/types/ai/mcp_server_list_params.py,sha256=bE1wfYRqdYv8IkF_8xn4LbyDpJiV0_THaAikNPnA4w4,460
|
|
1377
|
+
telnyx/types/ai/mcp_server_list_response.py,sha256=E8EDAGIWAGPSwGBJ4lmkcR0kUX5GDQyfyqSAf6D4UUA,432
|
|
1378
|
+
telnyx/types/ai/mcp_server_retrieve_response.py,sha256=uPQBf0K8ZqLVGuoGJxdHtZ-Ue_7FopMuaQxYFMmaqgY,440
|
|
1379
|
+
telnyx/types/ai/mcp_server_update_params.py,sha256=v3tHASIIjYGSAhW0_Bv5sjJmu_hyUsz2SYtgyMienmI,623
|
|
1380
|
+
telnyx/types/ai/mcp_server_update_response.py,sha256=2bREml40dbidnKgRBgrokWK4UZbROaViIbuY04ixb2c,436
|
|
1381
|
+
telnyx/types/ai/messaging_settings.py,sha256=3jewX-cEPO7JMdve0No3bufDGM2iCIn4nc2Yq1U7zWo,597
|
|
1382
|
+
telnyx/types/ai/messaging_settings_param.py,sha256=ScRsdJfGcVmGNhUOSx68yhnZ3ZN6CZKUpQXIS1Wgd8c,600
|
|
1383
|
+
telnyx/types/ai/privacy_settings.py,sha256=7gOhikBa0Xup442XUdeFIGsUrKTKg7VVgckiqiuezQI,724
|
|
1384
|
+
telnyx/types/ai/privacy_settings_param.py,sha256=TTv_YfsnwCPEEwPAQznIlerr9zl-TQKSZW9xUylno1k,744
|
|
1385
|
+
telnyx/types/ai/recursive_cluster.py,sha256=cwRoPyxxaAFIikaZPWNqTTWorWsMDfn5-mJE4T7SV1o,687
|
|
1386
|
+
telnyx/types/ai/retrieval_tool.py,sha256=845vYHE2MMEmVQ7NkoQ9515pr9gPPb7HPt50CGjNqmY,369
|
|
1387
|
+
telnyx/types/ai/retrieval_tool_param.py,sha256=FgkfpJWuWv2GtTEDPS_0WKP7DPsrkjprVJknFvxuwyw,452
|
|
1388
|
+
telnyx/types/ai/telephony_settings.py,sha256=lzuLbyezejrgu1RzNg69_Vetrl6JTnniTuhUId6EhVk,1851
|
|
1389
|
+
telnyx/types/ai/telephony_settings_param.py,sha256=hM6SYUNnvyWon36FEcx0em3S0PFfaS-84CYcb-lNagE,1753
|
|
1390
|
+
telnyx/types/ai/transcription_settings.py,sha256=qlsdV2WfPI-KQGLO2iPVanM2wV8IotLiuLJGHGoDU2s,1304
|
|
1391
|
+
telnyx/types/ai/transcription_settings_config.py,sha256=lwKgcXH3ejYyqQ93WHmlJ7LKTZ19IeFjqrUgUJsZwXw,1018
|
|
1392
|
+
telnyx/types/ai/transcription_settings_config_param.py,sha256=SVmsOntGy8ssuntqX5Pz0vLMD2MwSsowLsJKu1NgUd4,970
|
|
1393
|
+
telnyx/types/ai/transcription_settings_param.py,sha256=D5KGohdi6hn_uz7HYeLGj6yKPE_-bVVOe0V-VZGvH28,1219
|
|
1394
|
+
telnyx/types/ai/transfer_tool.py,sha256=xqKXllTFynurQui0ZyCVKKIjr327ImUo1Ir6let46QA,393
|
|
1395
|
+
telnyx/types/ai/transfer_tool_param.py,sha256=yGOHLSzsjhEvUk5STQ0nK6ogfIkaZdHSX5fWAQplLwo,476
|
|
1396
|
+
telnyx/types/ai/voice_settings.py,sha256=1w-zNFjsVgjIm-dXNN_0Q8cskCujPGEl-oau13UBcIU,4053
|
|
1397
|
+
telnyx/types/ai/voice_settings_param.py,sha256=3OyulZEM_MwStX3uPqfIozL850nwH7elizdZgdZh1Ms,3958
|
|
1398
|
+
telnyx/types/ai/webhook_tool.py,sha256=S_RXQiWcyOokeXb7XOad2NRPmM5q77s1_x_z5hOl6gk,386
|
|
1399
|
+
telnyx/types/ai/webhook_tool_param.py,sha256=ANK9w6A-cmMLTJThOMcKXXYoVmILQmOdqtIzq4RlNfI,469
|
|
1400
|
+
telnyx/types/ai/assistants/__init__.py,sha256=FqCXs6ZJ-WvaLNVdVJfCVVffxxpIzDl9CpNfhfxZO0Q,1913
|
|
1401
|
+
telnyx/types/ai/assistants/assistant_test.py,sha256=jmnL929oy_RwBRmpFF_80xBeHepFgv_8s4doc60AmQE,1751
|
|
1402
|
+
telnyx/types/ai/assistants/canary_deploy_create_params.py,sha256=Egkt9Aux40LRP6bG5HuutOEs-WxYxI_b55RZmZJiO68,447
|
|
1403
|
+
telnyx/types/ai/assistants/canary_deploy_response.py,sha256=A5ShO85nKczCpz_kQvmBUV9BACF9VWkUSaR8rFBRsxI,460
|
|
1404
|
+
telnyx/types/ai/assistants/canary_deploy_update_params.py,sha256=J6UAJ7A-UUqCm9BHFMWF_tIu8yu89LPhrxOxxcC20Lg,447
|
|
1405
|
+
telnyx/types/ai/assistants/conversation_channel_type.py,sha256=oJOfiBvNNSEIOg6fvakaS5jLfhIFrzxZe-xaBn_RbgY,247
|
|
1406
|
+
telnyx/types/ai/assistants/event_status.py,sha256=Xd1v5LwiL3JE4XWdAVUsumjCZ8GlfNG9saCMz-IYn4k,246
|
|
1407
|
+
telnyx/types/ai/assistants/scheduled_event_create_params.py,sha256=1tMmKKD_1Q9n8z68oAo6gVMwz1aT7reYg1R73ciCqSM,1240
|
|
1408
|
+
telnyx/types/ai/assistants/scheduled_event_list_params.py,sha256=LV530MRlWqDo88WO8l0HDBGYeETtuY2iuNJXfVkvhOs,769
|
|
1409
|
+
telnyx/types/ai/assistants/scheduled_event_list_response.py,sha256=PIz0iUe0mO6xQN0X9wr4nLWQYrJzEIqpl7O1HCB2vXU,579
|
|
1410
|
+
telnyx/types/ai/assistants/scheduled_event_response.py,sha256=wS4s3uXY3U00LjEV1YmkzXDEr1xWsLOr9fOX43fYk9w,571
|
|
1411
|
+
telnyx/types/ai/assistants/scheduled_phone_call_event_response.py,sha256=XYMhFE9hbk0cixpLIZcLOng4Xcomg81UtCSp2WriAb4,958
|
|
1412
|
+
telnyx/types/ai/assistants/scheduled_sms_event_response.py,sha256=KDZ7LqD4G5i_HaZATp-0qCblcGNiq80cVh6ZXTqwIBo,919
|
|
1413
|
+
telnyx/types/ai/assistants/telnyx_conversation_channel.py,sha256=UMHNJPUzQrqJoHQQz1KwFbeecWElPxAxufuK_r_YkW0,275
|
|
1414
|
+
telnyx/types/ai/assistants/test_create_params.py,sha256=Ag6l_OtV2tkdAc1RPDu6dVsra94EVLt8D24QYYc-SFI,2123
|
|
1415
|
+
telnyx/types/ai/assistants/test_list_params.py,sha256=iPUjeU-kTnf5Db7sSu4lbMV9m_WmKCoY_e6LYx--Ijo,691
|
|
1416
|
+
telnyx/types/ai/assistants/test_update_params.py,sha256=ltYPjsKzeiOIv31BUwIC23p6pJDvScGpVBusd9-IqW4,1402
|
|
1417
|
+
telnyx/types/ai/assistants/tool_test_params.py,sha256=7bPia0hKaaTPxBB9TewKx0TSgIguhdE3B5qUNGVsL3o,507
|
|
1418
|
+
telnyx/types/ai/assistants/tool_test_response.py,sha256=_syB6q-ydMqB06LGO7MEqrN5HAcq_jtKs4KEV7CDrwA,544
|
|
1419
|
+
telnyx/types/ai/assistants/version_config.py,sha256=NssOrkHynm6vRiaubWXynOlsvkyEbc8EgtJmxHFZIJs,421
|
|
1420
|
+
telnyx/types/ai/assistants/version_config_param.py,sha256=z_v07seqqeNfTObI5rKP2iomKqgG2OK6gsmBmh6hbkE,516
|
|
1421
|
+
telnyx/types/ai/assistants/version_retrieve_params.py,sha256=dHctLxr7izCYdLpfLWgWIto5zV6kbx-WaoPb927rFww,328
|
|
1422
|
+
telnyx/types/ai/assistants/version_update_params.py,sha256=gCJtYjwXmr0mdfw_Zf1cwxCJiJymGfu-H4fM7FTTQ84,4299
|
|
1423
|
+
telnyx/types/ai/assistants/tests/__init__.py,sha256=-6Q4JrBMcugVh5N_i6_Kwp6u8eQgSAIkpBU1Q8YNz5g,453
|
|
1424
|
+
telnyx/types/ai/assistants/tests/run_list_params.py,sha256=A2qNI3yNCKg1pPvyw6cW4InafdHhjA7hkIDzYxRrt0Y,527
|
|
1425
|
+
telnyx/types/ai/assistants/tests/run_trigger_params.py,sha256=p6hkzTH7GAFcrb5j2_ZJi7JLxfflom3z7A-B8rqqp_8,473
|
|
1426
|
+
telnyx/types/ai/assistants/tests/test_run_response.py,sha256=gK1O6f3Jax76E0IGAV9FRRiIaA-ig4Sqto1BI9FiiNk,2610
|
|
1427
|
+
telnyx/types/ai/assistants/tests/test_status.py,sha256=5VLhiLQhpWzRj30rsgBZKn9NEOLjhOQfhSj_uqPC-Hg,258
|
|
1428
|
+
telnyx/types/ai/assistants/tests/test_suite_list_response.py,sha256=pLs4xsnr4WiB36Zvgcl0jJjK3bPHbdctewjkx26WjJ4,506
|
|
1429
|
+
telnyx/types/ai/assistants/tests/test_suites/__init__.py,sha256=kS6RYt5bjUb9XjDA3jNqKP-R3QyeJQ4R8LffYH98q84,440
|
|
1430
|
+
telnyx/types/ai/assistants/tests/test_suites/meta.py,sha256=7ZhoqvceZK5EyG8fxQOZ93zq2x9fyWftLeFpIunG0ro,255
|
|
1431
|
+
telnyx/types/ai/assistants/tests/test_suites/paginated_test_run_list.py,sha256=FdjpgVPBJqLYAzyocij8ecebsX54rnnOYJBG7ZxIQJg,652
|
|
1432
|
+
telnyx/types/ai/assistants/tests/test_suites/run_list_params.py,sha256=jTtzpqg1FhxZe9cAmP1SWvAQ_PjyOJ3_6TkftrzzRj0,615
|
|
1433
|
+
telnyx/types/ai/assistants/tests/test_suites/run_trigger_params.py,sha256=YYqEVKG6u-UUJW3q6r-m7OP42QZrhZOO7iuGNwwWWp0,487
|
|
1434
|
+
telnyx/types/ai/assistants/tests/test_suites/run_trigger_response.py,sha256=_50TSPBaEUBELVm_Goky2gpDFn_kE5IDpb3m6IcqZII,289
|
|
1435
|
+
telnyx/types/ai/conversations/__init__.py,sha256=vTXvl86NPd_-2FF1K90Q1vpaSh6vNhVqOtpWKccLWTY,1119
|
|
1436
|
+
telnyx/types/ai/conversations/insight_create_params.py,sha256=5i38-WJACgHi8W1bn3xVFCjgZAuMeeBUQP3omrTsh14,479
|
|
1437
|
+
telnyx/types/ai/conversations/insight_group_insight_groups_params.py,sha256=_P9-MsE2-Kuvnf5OLc8QovkCAyUxTkhmbCBR0xx2liA,349
|
|
1438
|
+
telnyx/types/ai/conversations/insight_group_retrieve_insight_groups_params.py,sha256=VVa92kwIgv6zIVsNGRhdMvih5OOr4RqiUdg57pzjJ1E,472
|
|
1439
|
+
telnyx/types/ai/conversations/insight_group_update_params.py,sha256=wYMqbd9X18M3ywVxy76FbAYTx02rjhkmpKuY44Hcuro,315
|
|
1440
|
+
telnyx/types/ai/conversations/insight_list_params.py,sha256=nWTDUMkrs6rUtQtxfW7BPwr8M1--Bt47glZj1b7iXXU,428
|
|
1441
|
+
telnyx/types/ai/conversations/insight_template.py,sha256=RmShDaV3VtoDm43ENYzAZGGALQ0K3hjZATNIyTSgAFU,616
|
|
1442
|
+
telnyx/types/ai/conversations/insight_template_detail.py,sha256=B_e_xFmsf8Joejpy-LsUMWiYaratqGvJd-u1XCVL7H8,272
|
|
1443
|
+
telnyx/types/ai/conversations/insight_template_group.py,sha256=E5R9zPcq4-5-dsbL5nYQIn3hPFQfX4NFAH-UwIO07Ac,490
|
|
1444
|
+
telnyx/types/ai/conversations/insight_template_group_detail.py,sha256=qzph4UrqU6PuanWiNYVEY9t8mIuqHRbMFnAvccbsFgc,298
|
|
1445
|
+
telnyx/types/ai/conversations/insight_update_params.py,sha256=Ms0ghLgF4tkSQMrV7Cnsc6qMDqOvFeEmC3v4iy_4BQA,385
|
|
1446
|
+
telnyx/types/ai/conversations/message_list_response.py,sha256=8kXalX3zsdKMb__S0aC-k22tJMluyRpVE1A3zss8QLw,1493
|
|
1447
|
+
telnyx/types/ai/conversations/insight_groups/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1448
|
+
telnyx/types/ai/embeddings/__init__.py,sha256=hutZ3j-e0lQbtrV1-9s__J24fvN10927TMt7L0WTKlk,285
|
|
1449
|
+
telnyx/types/ai/embeddings/bucket_list_response.py,sha256=A6GVJqthwBm-b1zb69MdPwOkfjMiUm4KLdK0whSvTpU,290
|
|
1450
|
+
telnyx/types/ai/embeddings/bucket_retrieve_response.py,sha256=Vy1JkqAezyS23qL52TueYHqzENIabKvNky-0Hd9Vaw8,514
|
|
1451
|
+
telnyx/types/ai/fine_tuning/__init__.py,sha256=r6wGUnYvbrps2bx8ZB20k9dRQXjJn1zSSopSCa-IOGw,315
|
|
1452
|
+
telnyx/types/ai/fine_tuning/fine_tuning_job.py,sha256=1o0XBkguMfnrakFJ6X_siFZLyDue95KE-jQPosvk7BI,1672
|
|
1453
|
+
telnyx/types/ai/fine_tuning/job_create_params.py,sha256=7N2pNEgNVxjCBIsLD9kpcE8fsH0MK-Mc679JdstSMhY,1045
|
|
1454
|
+
telnyx/types/ai/fine_tuning/job_list_response.py,sha256=Ky9ARKOFp2vOI14rzty3yJd9okLIZALuev43F6HLAMU,286
|
|
1455
|
+
telnyx/types/ai/integrations/__init__.py,sha256=7ktrz-AGPWw1xDFLA1FGklLGPYzO5P61Se266cGVRE8,309
|
|
1456
|
+
telnyx/types/ai/integrations/connection_list_response.py,sha256=9X7fTcB6Lp5ZFgU3eEpVYmOwAUer1IMFesij7hboDko,348
|
|
1457
|
+
telnyx/types/ai/integrations/connection_retrieve_response.py,sha256=nuKJ3xPJIGrPWQEnkd81PTRWsgFLLUpWwZIQTT3Bn24,350
|
|
1458
|
+
telnyx/types/bundle_pricing/__init__.py,sha256=OPbhFGOY8_dVMcimu7JLfKSxAkFHA-8Vk7AvfUmvAj4,1397
|
|
1459
|
+
telnyx/types/bundle_pricing/billing_bundle_list_params.py,sha256=sXSm-ZUtiSrCu3IeGEdZige637rAhDOuQfJzEYTj0SQ,1150
|
|
1460
|
+
telnyx/types/bundle_pricing/billing_bundle_retrieve_response.py,sha256=n-PZxK5qjvPrzdZZPa1XvaLJKuop1uk2_PLXa_8cX6E,1507
|
|
1461
|
+
telnyx/types/bundle_pricing/billing_bundle_summary.py,sha256=QaaDA1ArATnmBrIwaBjFE85JPuAmwl0t3Pp_2lHalSw,959
|
|
1462
|
+
telnyx/types/bundle_pricing/pagination_response.py,sha256=iX9J2AlWIDFhYj-C5VLi-xldLsrsAJrEfQAT8OTgOgk,451
|
|
1463
|
+
telnyx/types/bundle_pricing/user_bundle.py,sha256=h0-XL-y1L_H-nIWTyELH9QmgpYJ1JejxxN-Fb3SRQOc,807
|
|
1464
|
+
telnyx/types/bundle_pricing/user_bundle_create_params.py,sha256=bsIcRIaGiGUnHhplsqlSwIGVJzfijnpDv5wN8vbzxug,760
|
|
1465
|
+
telnyx/types/bundle_pricing/user_bundle_create_response.py,sha256=OsVS5GWZ1CpWHrzVBVFh7sBuwyrHtC2d-FBVl4WwCLk,293
|
|
1466
|
+
telnyx/types/bundle_pricing/user_bundle_deactivate_response.py,sha256=8ZQl4o5PCY8qOE0J44DGDfjSS_uJ6stEUoL1_49whxo,270
|
|
1467
|
+
telnyx/types/bundle_pricing/user_bundle_list_params.py,sha256=qy_DW-ws3lAjMvHGdODdctQ6itOGQKqZkQp2Hk1vHH4,1144
|
|
1468
|
+
telnyx/types/bundle_pricing/user_bundle_list_resources_response.py,sha256=Us-ZdqjBmJjt-ywpMhmAI8bAjY5nRZh-KjR_upILeZE,332
|
|
1469
|
+
telnyx/types/bundle_pricing/user_bundle_list_unused_params.py,sha256=_94n2caxNcAHz_1mZn4H0eJbDejD30viSTsHPL5cKSw,976
|
|
1470
|
+
telnyx/types/bundle_pricing/user_bundle_list_unused_response.py,sha256=KHAF8VmY5HE5PqKV8be2gwi2kHpv9BfjMWTpmy1VOr4,474
|
|
1471
|
+
telnyx/types/bundle_pricing/user_bundle_resource.py,sha256=Oe99CUd5UuwiQE9BUX2o5s4e8Mk_hgHhO-7FVj4TvVY,587
|
|
1472
|
+
telnyx/types/bundle_pricing/user_bundle_retrieve_response.py,sha256=3ouYQWSxC5ypWOVDlGtk3oyf_q_-7pcNENSjI4_yBqw,266
|
|
1473
|
+
telnyx/types/calls/__init__.py,sha256=ase9fUUAvs2GLV_6Ae-5REtWDYQeNs8kMFS-RQ88rmo,8759
|
|
1474
|
+
telnyx/types/calls/action_answer_params.py,sha256=eihEqpTQveI6Rz8WK7Krzt0SP81_lvOr_Z7t03wiZLU,4987
|
|
1475
|
+
telnyx/types/calls/action_answer_response.py,sha256=QXvXCTfUYai9afI8jwCBl8nVTeSXCFP4zHIlco7z3MI,478
|
|
1476
|
+
telnyx/types/calls/action_bridge_params.py,sha256=G_mFZi1-9v8KdxJaSVAU7uU5IyGyAMtmi04_QTah7d0,4842
|
|
1477
|
+
telnyx/types/calls/action_bridge_response.py,sha256=VaSr4m4v_BQavB2AQUf0kUmMnoFtNgb03ygiN3irf4g,344
|
|
1478
|
+
telnyx/types/calls/action_enqueue_params.py,sha256=_mGeyZ2QukBtMailRdDdBWLE6F8D9c8C_XDv60SiZEY,1231
|
|
1479
|
+
telnyx/types/calls/action_enqueue_response.py,sha256=yCMirKpUKRpbp-TzEGZ3gHNEJFnB97Uk5fu5mx6sJEc,346
|
|
1480
|
+
telnyx/types/calls/action_gather_params.py,sha256=OTzy8S6L_NIbKVGirx4YPVmK56TNiKjLVUK3raED-Ng,1494
|
|
1481
|
+
telnyx/types/calls/action_gather_response.py,sha256=juPTG7gUSY8I55pQL6PRBI4Bz2LADmieyp9FSgaDdDo,344
|
|
1482
|
+
telnyx/types/calls/action_gather_using_ai_params.py,sha256=_AsQDlyFha_OVhpRh5aekBWtrvEmeOvxGrhL2cSzCEw,5263
|
|
1483
|
+
telnyx/types/calls/action_gather_using_ai_response.py,sha256=hfA5-WZ6zEbbHy5dlf6uh4gw7PYX6Q6HoxnpbQffQeI,442
|
|
1484
|
+
telnyx/types/calls/action_gather_using_audio_params.py,sha256=kYtKDtVapvd4gBNJIFwb5dBVxNVZ8mRV3heyheMPgd8,2675
|
|
1485
|
+
telnyx/types/calls/action_gather_using_audio_response.py,sha256=Tfkhngpbudgw0kvmvg47iQaM0R718YgTc6t-bfagGxA,364
|
|
1486
|
+
telnyx/types/calls/action_gather_using_speak_params.py,sha256=5mNtC5ZMbNwLDYCo59uhN_OQKLrMPXx8A0ZvU2HKWbM,5017
|
|
1487
|
+
telnyx/types/calls/action_gather_using_speak_response.py,sha256=igpC9rxlIVsOyJozVINZB4_Q4FRSfam0ghBTPYbc84w,364
|
|
1488
|
+
telnyx/types/calls/action_hangup_params.py,sha256=Qbair2J50-ExGRNIXMOru2BqTfiMdjBlZQ5VpMiNad0,570
|
|
1489
|
+
telnyx/types/calls/action_hangup_response.py,sha256=J9bHtE1XFLj3PSp8G-xicgu5xoeqXXO4KUs_v9y0COc,344
|
|
1490
|
+
telnyx/types/calls/action_leave_queue_params.py,sha256=LGjuqrpKNRFKdoq33NgJgfZA3a6xBLoxVZDC8VxEt_k,578
|
|
1491
|
+
telnyx/types/calls/action_leave_queue_response.py,sha256=ejvYjga0UolWCgd6E8e6yR5Fvq02FkpL0QjSOuJI-fA,352
|
|
1492
|
+
telnyx/types/calls/action_pause_recording_params.py,sha256=v1GGFxhoEEdCgGJi2vGfuFhhfGf6J8T8et99H_CMSrQ,653
|
|
1493
|
+
telnyx/types/calls/action_pause_recording_response.py,sha256=YMCISbyTD5t_dOSPPN51QFKBtp9XEqrUkcADEAe9Sys,360
|
|
1494
|
+
telnyx/types/calls/action_refer_params.py,sha256=cnNiokLalYBLW6ZxP_vtNW9FdDb3XPPTZzz-ZhZYOBQ,1275
|
|
1495
|
+
telnyx/types/calls/action_refer_response.py,sha256=JOIGlOJdf3YStvzeOKf1CXqNoSRGIdlHaXG92yBSsHw,342
|
|
1496
|
+
telnyx/types/calls/action_reject_params.py,sha256=M-yjMetuzKxZa6gvYMWLQgnVBJ1cIMwVv5jLTlQqgys,685
|
|
1497
|
+
telnyx/types/calls/action_reject_response.py,sha256=dXfo2jULE6NIr_xaLShzcSPch2lgNyXTvCV9HILasOc,344
|
|
1498
|
+
telnyx/types/calls/action_resume_recording_params.py,sha256=IkN-B4iwm-KZ44J6J6fCmZL5r-JS2dvbZ3iPp8_UYTU,655
|
|
1499
|
+
telnyx/types/calls/action_resume_recording_response.py,sha256=B3MikSDMPtoFpV_FwKXNHbdjMV03TvnDjM9ROVP99t0,362
|
|
1500
|
+
telnyx/types/calls/action_send_dtmf_params.py,sha256=s1kNu-iUi439D2w_PAcURnh-yBf_QzBDWlGik4_Uk9U,901
|
|
1501
|
+
telnyx/types/calls/action_send_dtmf_response.py,sha256=c654KN_kxMl716mC8gIKCZaIrF1o9CopD3nsZUmyFxI,348
|
|
1502
|
+
telnyx/types/calls/action_send_sip_info_params.py,sha256=Ggz79jmdMCns-67RjIiUAWKTP1OzteJ3-NkbV19wsgI,791
|
|
1503
|
+
telnyx/types/calls/action_send_sip_info_response.py,sha256=svL40lbyCqBnEgoHBsjt07bo3-pXLMCSMBsNpvmQHNM,354
|
|
1504
|
+
telnyx/types/calls/action_speak_params.py,sha256=A59YzCO9o3-Q3GvuhpRXTyyxCXEVXmoyWCDqX5U3BTs,4178
|
|
1505
|
+
telnyx/types/calls/action_speak_response.py,sha256=Q_5iiIlT5NBqLpOe6L77oBXTa9624nIVrSxDuwOSAlc,342
|
|
1506
|
+
telnyx/types/calls/action_start_ai_assistant_params.py,sha256=NznNPvpur0Xw6KSlP9RgqIpsZvjpCHT9kURB_4VvZHE,3864
|
|
1507
|
+
telnyx/types/calls/action_start_ai_assistant_response.py,sha256=k45qcuh9KD5DuTjW4E9UjljQi_HV4CQJBsh1FyaUY7s,448
|
|
1508
|
+
telnyx/types/calls/action_start_forking_params.py,sha256=8ZO99YWIFrf1dU91i5SlmrHfOGTdrvyqs0Mi8w-3dew,1140
|
|
1509
|
+
telnyx/types/calls/action_start_forking_response.py,sha256=V1zscI--5rlGDHH335BFAHD36jn43gT0E6d3IHeHR_A,356
|
|
1510
|
+
telnyx/types/calls/action_start_noise_suppression_params.py,sha256=AtG0tRA2Tf9LAUfLGEbWTLiVV7Si48fyrLHJJdfXzd0,1409
|
|
1511
|
+
telnyx/types/calls/action_start_noise_suppression_response.py,sha256=_zf9dL4R7M6XDF12GO5MzgOoO7rH6dllbRefb09aVb4,374
|
|
1512
|
+
telnyx/types/calls/action_start_playback_params.py,sha256=LsVYhgDOjLbXMxGO1uc9AxXkSrVZaENZcC7OjHEk20Q,2542
|
|
1513
|
+
telnyx/types/calls/action_start_playback_response.py,sha256=2-qTkPflC5HMkrcSFKwEbreZKKqgG4xu4nE-E-YObe0,358
|
|
1514
|
+
telnyx/types/calls/action_start_recording_params.py,sha256=FA9D17UEJEx0hDMeLWwNMT6OYEYLMk-4LqTUcq4SgRE,5547
|
|
1515
|
+
telnyx/types/calls/action_start_recording_response.py,sha256=Lir1JuVgqBLIJUm5ekMxF2Q8eSls57PntReJo32Kaew,360
|
|
1516
|
+
telnyx/types/calls/action_start_siprec_params.py,sha256=t1H8_BDwS2Lukg42wTkyiEycib__gBDESyTf89Ro3sg,1368
|
|
1517
|
+
telnyx/types/calls/action_start_siprec_response.py,sha256=wYyiEf8nK5iDlSyhMUqjI5LGIuh47i0bllqfB3SA7oA,354
|
|
1518
|
+
telnyx/types/calls/action_start_streaming_params.py,sha256=rq9n6pGWLVcA3ALXb8SgKTdmBDAdSOcJyjFsfwv7jq0,2158
|
|
1519
|
+
telnyx/types/calls/action_start_streaming_response.py,sha256=eGSo9KvyzBx-Q4MkunrOeKh9oF2RXMyQD_yM-F-Rbck,360
|
|
1520
|
+
telnyx/types/calls/action_start_transcription_params.py,sha256=apzmjYGftItfHNw8izryzsXXZpCDIVvXk8qZbdF0dj0,4479
|
|
1521
|
+
telnyx/types/calls/action_start_transcription_response.py,sha256=YBz5cet2N0xXBQWVWqaGRnHT4mMYgq_zE1n1gWtJCZk,368
|
|
1522
|
+
telnyx/types/calls/action_stop_ai_assistant_params.py,sha256=dpiR3dGM3Fcz5PdqTDhq2s5Y9vmBFkJYIWhIJ1hv25Q,588
|
|
1523
|
+
telnyx/types/calls/action_stop_ai_assistant_response.py,sha256=dlDTKZd_L46ZZTuNSUUYds2iteLKVBpFhFvPZw9ERuI,362
|
|
1524
|
+
telnyx/types/calls/action_stop_forking_params.py,sha256=r3aA8bPa76rrHhoJ-I2pz__6uNDs_MtbbHwtnYf4138,796
|
|
1525
|
+
telnyx/types/calls/action_stop_forking_response.py,sha256=9oKWvYSKuvH3DBJt6hbbRxbTfld3gD34tAn3o9h-IMk,354
|
|
1526
|
+
telnyx/types/calls/action_stop_gather_params.py,sha256=VpFagpose1WBjdoQrXayWJDfUPewP0NyA0DG5J4YeBE,578
|
|
1527
|
+
telnyx/types/calls/action_stop_gather_response.py,sha256=CTjwM531IfHvKA7tZXkGGvX_YicXhiSDs44VFcFqSVY,352
|
|
1528
|
+
telnyx/types/calls/action_stop_noise_suppression_params.py,sha256=4CyrhdLjHDMx9smMiBgHUhUhE7PTPNZQZhgAMoSOVJo,598
|
|
1529
|
+
telnyx/types/calls/action_stop_noise_suppression_response.py,sha256=omqEtVoqwyYuencrw_V_TPIbqIR4BcZqVS3DzgRUA5k,372
|
|
1530
|
+
telnyx/types/calls/action_stop_playback_params.py,sha256=NTjvFI4jJz4207iwJaUJPW2odgrDOPcNI3qdh7K3f44,868
|
|
1531
|
+
telnyx/types/calls/action_stop_playback_response.py,sha256=eSK56-oOjUKhc6gZjheomBMMmkyT8gkkO65fa4N2r8s,356
|
|
1532
|
+
telnyx/types/calls/action_stop_recording_params.py,sha256=AMhWhYg9fJ_iKN8e4PRzH2hTg6Qk8hC7hYnEe1hFid8,651
|
|
1533
|
+
telnyx/types/calls/action_stop_recording_response.py,sha256=iRtn7MJV07geC-s-90I4DS2oP2KL3F97oUc6HzlupiA,358
|
|
1534
|
+
telnyx/types/calls/action_stop_siprec_params.py,sha256=OcqEXl_CJrI06PJksj8iXIW-7d_zHo-KN-9FE9fojB4,578
|
|
1535
|
+
telnyx/types/calls/action_stop_siprec_response.py,sha256=iaHpRXYVlOJQDGOA9kx-_oCeQO4hkdHZ4-Mw7rQADjE,352
|
|
1536
|
+
telnyx/types/calls/action_stop_streaming_params.py,sha256=SK1-Tkze9GPVDuUT8tKSg2MPGeBoSDvmIG-qmsOa1Xk,759
|
|
1537
|
+
telnyx/types/calls/action_stop_streaming_response.py,sha256=eNFFn2N0fb3Ex7JAUFlMN--vJM3G9C1_t-3EbptgOAM,358
|
|
1538
|
+
telnyx/types/calls/action_stop_transcription_params.py,sha256=YUb-a_KunUDsD6fbaug6G4V6BVm4OD_sB0KuwJC8bNs,592
|
|
1539
|
+
telnyx/types/calls/action_stop_transcription_response.py,sha256=hltLMgIxyJxj_PEeBuA3BPQ_33n1LvKSiDBV3EspYCY,366
|
|
1540
|
+
telnyx/types/calls/action_switch_supervisor_role_params.py,sha256=_oDT9Uae3ODWqltkCHnAyf1H3lRQZ_gmlBI4_EKr-4U,529
|
|
1541
|
+
telnyx/types/calls/action_switch_supervisor_role_response.py,sha256=0JlFJ7E6GGgtB9ZmyEB01RH0MmiEHjp_O3LEiIPCRWY,372
|
|
1542
|
+
telnyx/types/calls/action_transfer_params.py,sha256=qMN_lAg1nQqlMUJb-ssodmM0UV1LErepRJYEvA6W-zQ,9139
|
|
1543
|
+
telnyx/types/calls/action_transfer_response.py,sha256=HVyyXYhzue5F6EuZtm3DGxX52fopUO6lqRWz06nrqJw,348
|
|
1544
|
+
telnyx/types/calls/action_update_client_state_params.py,sha256=tXxzOKclY3R_ZIRgleAY9sfge7Kwi9Vk48yu6CqXVpk,433
|
|
1545
|
+
telnyx/types/calls/action_update_client_state_response.py,sha256=S560c0ysvnArlfz0YogaMLuLpGpDJIaVSnQ4tTIRvok,366
|
|
1546
|
+
telnyx/types/calls/aws_voice_settings_param.py,sha256=Xqt2IMmqI5_ClOzS7vBZj5E7tUWsalbXGbMbsiKrjQI,485
|
|
1547
|
+
telnyx/types/calls/call_control_command_result.py,sha256=KDwZ0FCljEaUn-Yq5q0hHOUtyjrOqAFMtX8idbe-roA,267
|
|
1548
|
+
telnyx/types/calls/eleven_labs_voice_settings_param.py,sha256=u0qN6UADKI02IUJKMUtFFEvWKjk9CpkhbuO5_878LRQ,693
|
|
1549
|
+
telnyx/types/calls/google_transcription_language.py,sha256=tDjPKZGELuC58nHl_Ea04h15dSDmvb1j2nc3_VJXRdg,1034
|
|
1550
|
+
telnyx/types/calls/interruption_settings_param.py,sha256=h6V_8fE1AL_XfLZUgaK6CmRz6naYiNUusqwH91YsxJY,432
|
|
1551
|
+
telnyx/types/calls/loopcount_param.py,sha256=snoWd5Kn2jbPeeplbITO2We4h3xKwkQRrDslcA3ZBWc,263
|
|
1552
|
+
telnyx/types/calls/telnyx_transcription_language.py,sha256=rza_Pj9d5Xbu4ZHdOJ4L9qePnEnrfpRIa2U65F7-c5E,1242
|
|
1553
|
+
telnyx/types/calls/telnyx_voice_settings_param.py,sha256=LVMEWHw7SmXH8hxo-wJrrthKex3oloNbZHIeLWlulQ4,510
|
|
1554
|
+
telnyx/types/calls/transcription_config_param.py,sha256=eEhgz6yRvOtBdRX2a5BL20uQ-JLdwmdFdpiMRo-tTgw,927
|
|
1555
|
+
telnyx/types/calls/transcription_engine_a_config_param.py,sha256=k4piu8I-WlUzX14N0LOyExjYUcPmF_XYu-nJgVP72LQ,1810
|
|
1556
|
+
telnyx/types/calls/transcription_engine_azure_config_param.py,sha256=N6_u9QduLNEw7DaDmq315g6gDr1eJTPcop33CDWyq3k,2037
|
|
1557
|
+
telnyx/types/calls/transcription_engine_b_config_param.py,sha256=UhBorqfVc4qCmias4aK0QDoQ1avXygGDaB73_RDOOAM,684
|
|
1558
|
+
telnyx/types/calls/transcription_engine_google_config_param.py,sha256=quM7Yf50wq8jMy-tcDYaJiJnyjv6PLErZjmfmSCSBH4,1825
|
|
1559
|
+
telnyx/types/calls/transcription_engine_telnyx_config_param.py,sha256=IN2cD-Qhisp1E6C5xHSbWUgXj34_NqgnK2fF3q9fvx4,699
|
|
1560
|
+
telnyx/types/calls/transcription_start_request_param.py,sha256=46Gu6eoPZ2_d__DAdUAI9xwHp5CeX7yluXFNOMfapEE,4479
|
|
1561
|
+
telnyx/types/conferences/__init__.py,sha256=k2jxvCPwjx1XL-lCUXiwGctPopCycBc7dxdBiQKVb7g,2453
|
|
1562
|
+
telnyx/types/conferences/action_hold_params.py,sha256=h2emgJp-nfuPOMdLy67Vp5RpPLEINZWjO9o_tRAyuYI,1158
|
|
1563
|
+
telnyx/types/conferences/action_hold_response.py,sha256=cLjn1G9ThJ4sYw0xNd_xYU6VfwZ_iv52y40NL2NNUTo,336
|
|
1564
|
+
telnyx/types/conferences/action_join_params.py,sha256=itQTBR2-yLaCe_4uWfDERTxoPbl-TVT6IahRSdkBTxI,3843
|
|
1565
|
+
telnyx/types/conferences/action_join_response.py,sha256=E1fGwNwaIbe_oqlgoFiNoDoX5Mv1yyosLngp-Ckzx5c,336
|
|
1566
|
+
telnyx/types/conferences/action_leave_params.py,sha256=zSA3Fu-sDqaL0E0VHYgp7iW4CD8uqtHUePfC3A5lhlk,1010
|
|
1567
|
+
telnyx/types/conferences/action_leave_response.py,sha256=5B8MOC1sOZ7UISrDL1uj4my6tb4sod4AUcCtzkIqACE,338
|
|
1568
|
+
telnyx/types/conferences/action_mute_params.py,sha256=IakzUOhgJX_PGlFGWm7d43e19K6wzYSbJ410o-vsnGE,672
|
|
1569
|
+
telnyx/types/conferences/action_mute_response.py,sha256=3FlUQlzO9XtoAqi3dLGKdT85KJPhUeS7OOK1Q33iO_0,336
|
|
1570
|
+
telnyx/types/conferences/action_play_params.py,sha256=I56rFZLxaZp5IgdezkiqpBhq6AfDgSoWmX_a_XGKFoI,1421
|
|
1571
|
+
telnyx/types/conferences/action_play_response.py,sha256=XqktjnlJcxu7mwKaKJF_tAdF3FbkFHAgGz4UtmNILMg,336
|
|
1572
|
+
telnyx/types/conferences/action_record_pause_params.py,sha256=hqPx661XL9vJ2LgQliuChuNyPC0umsOJBobjDNdRVdA,733
|
|
1573
|
+
telnyx/types/conferences/action_record_pause_response.py,sha256=vLayzTJ44KOHbL-9PdZrp5SuhGt3RqSKNXWqmjv2knU,350
|
|
1574
|
+
telnyx/types/conferences/action_record_resume_params.py,sha256=1gbxGABtkCevkY4zjZRryxTfsH-H353z9okxVluZ2bo,736
|
|
1575
|
+
telnyx/types/conferences/action_record_resume_response.py,sha256=51wRtSgDQ4Hfqm5jYCtNvWoFwxYaoXV2nDb3sEbDe14,352
|
|
1576
|
+
telnyx/types/conferences/action_record_start_params.py,sha256=FKu3OJUfPDTWGktcIZkUuRUH6ISKJk7x0ZYyrSIwfgg,1255
|
|
1577
|
+
telnyx/types/conferences/action_record_start_response.py,sha256=OQcotw6Wt3pWm56HLIb5fFqnnZhl1BhrLyisRn9C9t0,350
|
|
1578
|
+
telnyx/types/conferences/action_record_stop_params.py,sha256=G5nuNi7MgcVvPeB0Gu2TAKBWfkkypa2OXS4f1xbcF1A,864
|
|
1579
|
+
telnyx/types/conferences/action_record_stop_response.py,sha256=WgYXQtGvR4wzQAkPhViLrnOEfvq_WwtPil1xGBGjEV0,348
|
|
1580
|
+
telnyx/types/conferences/action_speak_params.py,sha256=9jiucdntxLxFT01NHnJ5a2hf3Cr7aScakFQ9jIeXnz8,3977
|
|
1581
|
+
telnyx/types/conferences/action_speak_response.py,sha256=quPsjqeOlnVW1243jr5Z30AXyNgsEpeHIxiyB4qQaHg,338
|
|
1582
|
+
telnyx/types/conferences/action_stop_params.py,sha256=hBPtsHKTvk97VvmxLvMEp0x8vOBsX9ARA9E4ys-yVSU,724
|
|
1583
|
+
telnyx/types/conferences/action_stop_response.py,sha256=Z6jlJ_qU5KAmqUQ9S3wTKg3pUFeb8RXkZBi-MqhWM0g,336
|
|
1584
|
+
telnyx/types/conferences/action_unhold_params.py,sha256=le-WzTtYa2i5fI-cJqvlBGOSgSfbQEMnB_zvLtnabtk,693
|
|
1585
|
+
telnyx/types/conferences/action_unhold_response.py,sha256=6B8rFFik618eoZanuwXCI7JgMpll3o_6Cm6U6cHKIdk,340
|
|
1586
|
+
telnyx/types/conferences/action_unmute_params.py,sha256=tJi4HmacdiS5dhPCNadKE3YoNosld-vrB1LTpk2Fz2Q,723
|
|
1587
|
+
telnyx/types/conferences/action_unmute_response.py,sha256=5gfnXbXFnuUkB3kaA7nHW6PARPV8vYHtGtP7JNG25h4,340
|
|
1588
|
+
telnyx/types/conferences/action_update_params.py,sha256=k_BqyQz8NTJAIjFH3zEWo_jvfONp6JD1WkcCBpzGScQ,1555
|
|
1589
|
+
telnyx/types/conferences/action_update_response.py,sha256=4KSvnb5_fdHegz2o73eV9lv4KT1gwsIUFnTnMctNoBw,340
|
|
1590
|
+
telnyx/types/conferences/conference_command_result.py,sha256=ELNqKO8V5N8Vwp3llLqrOiwwlqnU5VlfK97JK5huIDI,219
|
|
1591
|
+
telnyx/types/credential_connections/__init__.py,sha256=iv5LJoRk5Sw9iJ6mAGwzaumCAZFH_kvzo8RbC-Y55iQ,266
|
|
1592
|
+
telnyx/types/credential_connections/action_check_registration_status_response.py,sha256=TZyz6omf6dxlJvPPZ5C6Yw-aP_PxEggD97xv3w4KHjA,1192
|
|
1593
|
+
telnyx/types/external_connections/__init__.py,sha256=mIGA0fpwgA_Q52IiK9l7AoI7wqFf0juFqTkClU5QucI,2193
|
|
1594
|
+
telnyx/types/external_connections/civic_address_list_params.py,sha256=jBo5b_GvyYt1nHDYBneOvNIqfdkE6b_GqSPmwIo3A0g,675
|
|
1595
|
+
telnyx/types/external_connections/civic_address_list_response.py,sha256=2-cMrwMYtv54RuLVG5TTowDu0Zc6VEfmCgmzMBKZdgk,1458
|
|
1596
|
+
telnyx/types/external_connections/civic_address_retrieve_response.py,sha256=6qlIdPqnF79zqvEGQf0ttR_iP0ZmGXX3sVx-ladYJlI,1460
|
|
1597
|
+
telnyx/types/external_connections/external_connection_phone_number.py,sha256=Ve74u0_Hzgq1rKc-BwI-vbJX61rkZw3TZ7zRI4TTqw4,1098
|
|
1598
|
+
telnyx/types/external_connections/log_message_dismiss_response.py,sha256=tEUrS6oyiz1dVVoVzeSNm4eKQJgT7RnRZEqxZaI2ab8,334
|
|
1599
|
+
telnyx/types/external_connections/log_message_list_params.py,sha256=QF77wYWsc8tHDfc7a433j-pw9kEHfGV8AztytRGtRnY,1637
|
|
1600
|
+
telnyx/types/external_connections/log_message_list_response.py,sha256=KBUfOcWsuYe2Gc-ARbCqK_WPHeFOV43iuuV-jYdgQ3Y,890
|
|
1601
|
+
telnyx/types/external_connections/log_message_retrieve_response.py,sha256=1v2r7oS14BqbvxM6d4t9W80ta_nAOiSEqgSjTx1aAQ8,1061
|
|
1602
|
+
telnyx/types/external_connections/phone_number_list_params.py,sha256=qx4pMHXlFNgSFSpYS-qUQ0KqWsQ9cQdF0ik6nvCHg3k,1441
|
|
1603
|
+
telnyx/types/external_connections/phone_number_retrieve_response.py,sha256=-5IcbzXPkO8D9r7yHN_I55sX7WwiYn2fSnIN5SQU7wk,373
|
|
1604
|
+
telnyx/types/external_connections/phone_number_update_params.py,sha256=9ufRuQSV1r3_ks6fTpelW0F9tQa8YyQrrP3qGsJXvNQ,378
|
|
1605
|
+
telnyx/types/external_connections/phone_number_update_response.py,sha256=JPpz7pC8s5wyHNrWSq5uwW-tr4U-g71VLzjdhYcbnfU,369
|
|
1606
|
+
telnyx/types/external_connections/release_list_params.py,sha256=XbR-2yLjVKDLz9y9mfDJK3Le_eBiry6ZaZ7D803MDzo,1976
|
|
1607
|
+
telnyx/types/external_connections/release_list_response.py,sha256=biEw0LH4xqmWfoKA07De_XWcKpCZgLwrNXsHO_7ydTk,1097
|
|
1608
|
+
telnyx/types/external_connections/release_retrieve_response.py,sha256=QfceFyLfmf8yotG8CLraqiU4bqGQV8n2F2G3m0X8KAM,1182
|
|
1609
|
+
telnyx/types/external_connections/tn_upload_entry.py,sha256=WdTriRAbt7qWRxV55zDuNOGgZeyPOLZPlOhgESUWlaA,1749
|
|
1610
|
+
telnyx/types/external_connections/upload.py,sha256=3dGtXGQw2ZGVbAV5IjCfyPtSCtuA9Xc0b61EnRl36_g,1050
|
|
1611
|
+
telnyx/types/external_connections/upload_create_params.py,sha256=0_yFpuc1aYI9Rk5dvA1891w-OncFU3F4eRKhoNJedj4,862
|
|
1612
|
+
telnyx/types/external_connections/upload_create_response.py,sha256=Fa6mX1ZoOCkRlJr31uBFip5I_Gux2i19x77jiNofN0w,403
|
|
1613
|
+
telnyx/types/external_connections/upload_list_params.py,sha256=q6qEKLAfjUX44mzNrwi8YRbO84WLJ9rHEVXj5vh8HVo,1717
|
|
1614
|
+
telnyx/types/external_connections/upload_pending_count_response.py,sha256=reN2NR7lyvS-MToHX400lQLdCQeAmrHygv4V94EgxU4,590
|
|
1615
|
+
telnyx/types/external_connections/upload_refresh_status_response.py,sha256=5k4-cEu2KI_wentV_Kn6bAfMZ3ZDExlJ_15Bdv_24pQ,338
|
|
1616
|
+
telnyx/types/external_connections/upload_retrieve_response.py,sha256=XWc-iSRfcNNClTUYYktHPs6p7QbYpyes8Wyy4bnoaUM,291
|
|
1617
|
+
telnyx/types/external_connections/upload_retry_response.py,sha256=WoAkYMT_gf-6cIS-SYm7sIl02f8z-IdFsSiTM36Qb6g,285
|
|
1618
|
+
telnyx/types/faxes/__init__.py,sha256=8klMpMQCvfsBbuavxmmgN3rsfIdS2I4Ru3XclQKt_Sg,288
|
|
1619
|
+
telnyx/types/faxes/action_cancel_response.py,sha256=SHtVH_YQup1fLb_1SdMcp_nHUO5Zuq-uK19IPB1Yw-0,259
|
|
1620
|
+
telnyx/types/faxes/action_refresh_response.py,sha256=MrSWBscQBhz77OpzwSPn6f3nJABCJtWGAOQR2mqrQuE,261
|
|
1621
|
+
telnyx/types/legacy/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1622
|
+
telnyx/types/legacy/reporting/__init__.py,sha256=Hxcf19st-BCrWSaAwUqpvjGn0ZonYtGLGVJfuGVPV3Y,509
|
|
1623
|
+
telnyx/types/legacy/reporting/filter.py,sha256=j3c_ggsgEw1wP5CttVunRODhcD6rGdKOyr_t4j_kAKg,1060
|
|
1624
|
+
telnyx/types/legacy/reporting/filter_param.py,sha256=EfhW0jToeeAfsII9kFjL1nGy6LMQAT_LY_Q-GuB5f6A,948
|
|
1625
|
+
telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_params.py,sha256=Z80lsCNsykgl-MT6HWFTs3_lpLISNMgHvpksGRSLh9k,549
|
|
1626
|
+
telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_response.py,sha256=L7iIjY1_hcsrFJDzc_3dC8hYLl48Rc5fukNSee6nnmU,316
|
|
1627
|
+
telnyx/types/legacy/reporting/batch_detail_records/__init__.py,sha256=mH4a64OgUu8I_1iPK3oPKuFPECe1n47O8VKVu6C7toA,1911
|
|
1628
|
+
telnyx/types/legacy/reporting/batch_detail_records/batch_csv_pagination_meta.py,sha256=YL0M9sxThfeeMnalzUW1U42SdvFwHbgtw94ByZiP58g,353
|
|
1629
|
+
telnyx/types/legacy/reporting/batch_detail_records/cdr_detailed_req_response.py,sha256=zPhamWwsreAe8qkAvqmNG1J8-3pMmFSR558C4rdztBY,1705
|
|
1630
|
+
telnyx/types/legacy/reporting/batch_detail_records/mdr_detail_report_response.py,sha256=LofwGRuSF10UvM0qGfKI2tRGG96iNC_9aogwWt4LEB8,1096
|
|
1631
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_create_params.py,sha256=2hyelBlgTuj36-y7WNNSP9SLX9AsNGxmhq4lKgn8w58,1693
|
|
1632
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_create_response.py,sha256=drioupNi_1RW3uyNQylW-iYWO3NIKBKUCmtOdXGr60w,349
|
|
1633
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_delete_response.py,sha256=kl1MjxcKy0pztGt2D41GWSHEL9-IiiN2ulh70MNr9EY,349
|
|
1634
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_list_response.py,sha256=aBUmJfDfFRBvtERVl-DXnqF7YflLn35Je_aiUsd3wCc,470
|
|
1635
|
+
telnyx/types/legacy/reporting/batch_detail_records/messaging_retrieve_response.py,sha256=Qk_r-iSuwnzLo4AynwNeRMHhfOoh68vBMLLg2LJtIqg,353
|
|
1636
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_params.py,sha256=HPJA7i4XiktsdBIwrxCqXOYTcmzgqpuoy0FdxAxq9MU,687
|
|
1637
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_response.py,sha256=hcrGhluyZR22eySjWnKCBVS6VVlLJ6_qHWF9p7o2OqU,355
|
|
1638
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_delete_response.py,sha256=tXxq0umZYonhrALHZOfuwNiNOQxtjQ2mmbHLEAv9Gmw,355
|
|
1639
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_list_response.py,sha256=IwEgSAjpZVwTj30RQEMPrnZ_YxFLqpPKB0Bh4uSRAgc,363
|
|
1640
|
+
telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_retrieve_response.py,sha256=6sfTEQnEu6jYhqDolpAD7dQKM8CtnhfoXu1wwPWzHTM,359
|
|
1641
|
+
telnyx/types/legacy/reporting/batch_detail_records/stt_detail_report_response.py,sha256=poQ4arillZO0AgdPp6IUNsDlRxAcpm9jDQrrn_o6oHg,691
|
|
1642
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_create_params.py,sha256=3v9_JA51gIs69poYmo1kX4gGBHvUqpwCg0tydDscV4Y,1620
|
|
1643
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_create_response.py,sha256=UBC8DQMSz037_7vWn2L99VGC6X-1GDfFOz_vsm5cv3A,388
|
|
1644
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_delete_response.py,sha256=1ata4Ggn4e1JTWuo6WkxkdZ-fIKRuc96qY_4J4yNNLs,388
|
|
1645
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_list_response.py,sha256=pRgRoopjwhmDy18LoDazILO6IUafL2YxCOYaIuCOuzs,459
|
|
1646
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_fields_response.py,sha256=m4SffM4lGYgM1Xq5uKrUgAFIwFC6CAwj1D_ocRS7yno,950
|
|
1647
|
+
telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_response.py,sha256=Ll8GNHfT3aoqKP5m9onERSRc0zWdtiyGaoOstmnoFBw,392
|
|
1648
|
+
telnyx/types/legacy/reporting/usage_reports/__init__.py,sha256=PV61oXnHR6Bi6zgaswjd6fZLdnUz5c4sgMYO4BJm_F8,1904
|
|
1649
|
+
telnyx/types/legacy/reporting/usage_reports/cdr_usage_report_response_legacy.py,sha256=rbjynv6ilgJdGj2NBxum0Dg0EuKVhVsmii4jZumjxhI,1177
|
|
1650
|
+
telnyx/types/legacy/reporting/usage_reports/mdr_usage_report_response_legacy.py,sha256=qpm2QD4h0_hD0QcXjRdiKKCapQa-vzO3HNYpLr7yocM,1066
|
|
1651
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_create_params.py,sha256=TF885ANJECpYkJGhg88JrmRCwd0fqDi32N3lcqxboYM,906
|
|
1652
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_create_response.py,sha256=aBExK56RS6Eq_AhEuvO4da72APsEb_bVpPsnUDWv-cQ,411
|
|
1653
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_delete_response.py,sha256=c0AZRhDrBTl9DRsiYfF3NHhDNzkKil6PXtmwmKCyVW0,411
|
|
1654
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_list_params.py,sha256=ZIPVrahdBfd3QnSUs4mrsaD1WzEVqpUfznXRu2GFZOY,333
|
|
1655
|
+
telnyx/types/legacy/reporting/usage_reports/messaging_retrieve_response.py,sha256=OiNChQwr9RMg36dzVT9jQ0kFKTuMtU-eLp7xXBB_r1M,415
|
|
1656
|
+
telnyx/types/legacy/reporting/usage_reports/number_lookup_create_params.py,sha256=nMdvZZfqCMIcsmycGmATiiPAuH230wNmlAWSfoLg9lQ,990
|
|
1657
|
+
telnyx/types/legacy/reporting/usage_reports/number_lookup_create_response.py,sha256=8z3UY8xr4o3GXsvGDzYOKKNcrwuG0MxPOpCDhFoM7NE,414
|
|
1658
|
+
telnyx/types/legacy/reporting/usage_reports/number_lookup_list_response.py,sha256=oaYtu7NH9ZWQakvpXqrctTDI-QFmX7OFMrS8nOcGmtQ,491
|
|
1659
|
+
telnyx/types/legacy/reporting/usage_reports/number_lookup_retrieve_response.py,sha256=_Wpq55m-fj2QEW0vuo7InblSJQ0iiXuXJZgm_idqOdA,418
|
|
1660
|
+
telnyx/types/legacy/reporting/usage_reports/standard_pagination_meta.py,sha256=9CwkSxRa2hUnrxfhiG9X85Ofa6980NEFeWOx5HqPJ2w,353
|
|
1661
|
+
telnyx/types/legacy/reporting/usage_reports/telco_data_aggregation.py,sha256=Px8P5CZnOuC7svpx8jB0tzBIigjZZUuHB9Tw5SdDmSs,519
|
|
1662
|
+
telnyx/types/legacy/reporting/usage_reports/telco_data_usage_record.py,sha256=LB7gHLKeonqJO5Xb5bKjzZNE5q4qF3keGCFB-7-KESM,524
|
|
1663
|
+
telnyx/types/legacy/reporting/usage_reports/telco_data_usage_report_response.py,sha256=3XtNdspDdVy05Tq9nsghP9_A8rX1KgEA9ltNwVaCDrw,1328
|
|
1664
|
+
telnyx/types/legacy/reporting/usage_reports/voice_create_params.py,sha256=ZzjWQ-Maes39EJ_Iel2Zd4hhlSPcSBYyJluNPNXGvmU,1199
|
|
1665
|
+
telnyx/types/legacy/reporting/usage_reports/voice_create_response.py,sha256=l7vgzbYnyy97dFyN03INY-NGA7JIqDllj86SuHmSylk,403
|
|
1666
|
+
telnyx/types/legacy/reporting/usage_reports/voice_delete_response.py,sha256=zVQYbL1n2SErcc44QhLao8npr6haRWTpk9IzEuyqxz0,403
|
|
1667
|
+
telnyx/types/legacy/reporting/usage_reports/voice_list_params.py,sha256=I-VQgQnwjiJatxz-CFUSLl-r3Abjrl1tyM_8gtn8gTI,325
|
|
1668
|
+
telnyx/types/legacy/reporting/usage_reports/voice_retrieve_response.py,sha256=v6AMfxO6Y0K5f0VdvOc7dgCLk_vXDSM9sILpf5u_qaI,407
|
|
1669
|
+
telnyx/types/managed_accounts/__init__.py,sha256=s53m4G7A5MA-7Plebq9kzzJSt4VoqqpfiAnyePk-2rM,363
|
|
1670
|
+
telnyx/types/managed_accounts/action_disable_response.py,sha256=EvZGazP3Ve4MkwX1Y6a8V_RuMQh33Ghtpk0fTTx_8qM,315
|
|
1671
|
+
telnyx/types/managed_accounts/action_enable_params.py,sha256=xbPShY1bj7XSTclowbA7-cDZnjssDCHTb3GQZsUqXbg,478
|
|
1672
|
+
telnyx/types/managed_accounts/action_enable_response.py,sha256=fj0HbGOB6wVSAn1q6qOCNwYpNc59ujYeqC-Zmt-Pd_c,313
|
|
1673
|
+
telnyx/types/messages/__init__.py,sha256=hIW16NFU0kRuwS4pQWz5OcgK8M7F17jB8dsnDU0G7S0,437
|
|
1674
|
+
telnyx/types/messages/rc_generate_deeplink_params.py,sha256=ffHwdqJULKIyCwBplwS-kvKkyqGItEfplduxFnAKqTA,398
|
|
1675
|
+
telnyx/types/messages/rc_generate_deeplink_response.py,sha256=cw11AeSzLTJ_MGL81iem52HByIKxgsrzqvk6T6bs3v8,307
|
|
1676
|
+
telnyx/types/messages/rc_send_params.py,sha256=2JJOjgJzUifbew3qkCyBEHHjWFc7sRWaNpKNDJZjQDM,1451
|
|
1677
|
+
telnyx/types/messages/rc_send_response.py,sha256=4Ooie395KoH6QKSVCfvAeCGNmnuULUYn7tVbyPaUJ4c,1237
|
|
1678
|
+
telnyx/types/messaging/__init__.py,sha256=YfXxon3b5-RZaErwb9iAK2HS6JHRJXESBUjp3Op0s4s,621
|
|
1679
|
+
telnyx/types/messaging/rc_invite_test_number_response.py,sha256=GgMzLoceJEqCzTBw6EZmw79H2dCvB3fNdrHtvu-QeKI,670
|
|
1680
|
+
telnyx/types/messaging/rc_list_bulk_capabilities_params.py,sha256=fgqwwR7WG8kbaeFfoRa7B8uOO5B3OKChGZm2r_114xQ,459
|
|
1681
|
+
telnyx/types/messaging/rc_list_bulk_capabilities_response.py,sha256=wPgIeeLKtM0Qe8kmrYXVtJzMZp33M4lmZXJD5KiJ-sM,347
|
|
1682
|
+
telnyx/types/messaging/rc_retrieve_capabilities_response.py,sha256=DDAjDG8jWaXaMB5BQHybyK61XL16Al8XVGUIiWi1kaI,335
|
|
1683
|
+
telnyx/types/messaging/rcs_capabilities.py,sha256=Rh2Ibrc_T32GOFKM4hzDTHcWlGI-P3EOYeiagzzUW-I,630
|
|
1684
|
+
telnyx/types/messaging/rcs/__init__.py,sha256=E_yOuSorRoQet0nTsDhUr1f4j4NtuTE6WiaKGMYQiIU,261
|
|
1685
|
+
telnyx/types/messaging/rcs/agent_list_params.py,sha256=Fo_T6F--IuWuS6-Bpy6F6nPY_U0qcIUcceV1zhj7ieY,424
|
|
1686
|
+
telnyx/types/messaging/rcs/agent_update_params.py,sha256=TbOR5KPQQPSPdU6ZWFtctnBEVrH9jr9eSvVMoNSINB4,520
|
|
1687
|
+
telnyx/types/messaging_10dlc/__init__.py,sha256=gRGo1hSM3eHF2UT2ifH9fotLG3mj-dATf5lPI3Zh8lU,5232
|
|
1688
|
+
telnyx/types/messaging_10dlc/alt_business_id_type.py,sha256=ae9aJVHb8ZJh5KreswkuxNRF2rd4ksle-mu-IaQeg5M,240
|
|
1689
|
+
telnyx/types/messaging_10dlc/brand_create_params.py,sha256=XRXE2I2_WLs-j20ljq4wH01F9_Sjcr4vU868oS8DUts,3085
|
|
1690
|
+
telnyx/types/messaging_10dlc/brand_get_feedback_response.py,sha256=ojerHCfh1vLBZrYG3weBPtiR7NJVASEnqZM0XppgY5M,916
|
|
1691
|
+
telnyx/types/messaging_10dlc/brand_identity_status.py,sha256=fuQtROgpECmib0rPVGZGBdIvK5pFr3fPQpj9WPaREOo,275
|
|
1692
|
+
telnyx/types/messaging_10dlc/brand_list_params.py,sha256=JEU_YoTpmJe_yE_01Kt6EhhqirQK_o0f9zqU4sfmrnU,1318
|
|
1693
|
+
telnyx/types/messaging_10dlc/brand_list_response.py,sha256=ILrnSgLqanBgQ__-zUfvieQC5eN_vrc84yjsypmqu68,2085
|
|
1694
|
+
telnyx/types/messaging_10dlc/brand_retrieve_response.py,sha256=gbcz7bszkKDRt5wbdlqcZWDwuBstRdBBaogp9-QKQkk,514
|
|
1695
|
+
telnyx/types/messaging_10dlc/brand_retrieve_sms_otp_status_response.py,sha256=ttT7BUe0Fuj1JGzRxBdj7LWkt3vzoBipcyzX9pa2KQc,1600
|
|
1696
|
+
telnyx/types/messaging_10dlc/brand_trigger_sms_otp_params.py,sha256=Me36d-MH6IjGx38PHMsG4d-CUx1s0Csxw489gSUZJ78,664
|
|
1697
|
+
telnyx/types/messaging_10dlc/brand_trigger_sms_otp_response.py,sha256=ppx_8UZ3socSwLgoYhCgq0y3Y1d7fHe1GfqwHDjh1o0,538
|
|
1698
|
+
telnyx/types/messaging_10dlc/brand_update_params.py,sha256=NpbgMFueIdENIW_vbcLUZKGs_aRNFElMCpj3YGRix_4,3387
|
|
1699
|
+
telnyx/types/messaging_10dlc/brand_verify_sms_otp_params.py,sha256=jzQlGpopi9msjhDi3t6y6KjRTI4B5puLd5_QwRMHBMo,423
|
|
1700
|
+
telnyx/types/messaging_10dlc/campaign_accept_sharing_response.py,sha256=RlwQNxBJntB7Yk5iYUZrjsofo7VrgzUYipcrnsM8kLE,258
|
|
1701
|
+
telnyx/types/messaging_10dlc/campaign_builder_submit_params.py,sha256=WA8uTEfk4XG_rDgCvjBTJgjBPacM0_CBzGHdWtn5oBE,5346
|
|
1702
|
+
telnyx/types/messaging_10dlc/campaign_deactivate_response.py,sha256=BeGEQV5-dFZilLxcitgP6nbijLBtBa_zra5uA_JiSK0,328
|
|
1703
|
+
telnyx/types/messaging_10dlc/campaign_get_mno_metadata_response.py,sha256=nFsLJamEkDyBsZhQpE3kclhERJlVuVDZ0fFKeA9IUzU,1639
|
|
1704
|
+
telnyx/types/messaging_10dlc/campaign_get_operation_status_response.py,sha256=zMp4ZQ3aRVLyD2z73v49i4OgEh3SJhzk5AXL1NG295s,268
|
|
1705
|
+
telnyx/types/messaging_10dlc/campaign_get_sharing_status_response.py,sha256=xnO6jel9Xhryz9ChqxdIf9Zr2DMUIIr-fQWjxlQCmoE,547
|
|
1706
|
+
telnyx/types/messaging_10dlc/campaign_list_params.py,sha256=a2dIiY2Gi8aY4ggwXF8BP_l1XZjYTPQ8dNOZu0yYehI,1067
|
|
1707
|
+
telnyx/types/messaging_10dlc/campaign_list_response.py,sha256=9znK03mG9P0iPQd28vAU6h31ER3Y1TxFm1fLaQyvQz4,8478
|
|
1708
|
+
telnyx/types/messaging_10dlc/campaign_sharing_status.py,sha256=aWdfD-RKfXLjrr3nOlMxmRPWyslFNyseAizw6a-Qtkg,682
|
|
1709
|
+
telnyx/types/messaging_10dlc/campaign_submit_appeal_params.py,sha256=S92CMn_b_NGHGtE-etlaVZQn6A68BZLZz1-ZexMBaNA,461
|
|
1710
|
+
telnyx/types/messaging_10dlc/campaign_submit_appeal_response.py,sha256=avdspwQd-su5aBhOXjy9ZNaX69THjxMxeZnjH2igspU,365
|
|
1711
|
+
telnyx/types/messaging_10dlc/campaign_update_params.py,sha256=tfBvfVb8iZxEQlxAykw3cvWvvHFN5S-rdnp6vsxJIy0,1578
|
|
1712
|
+
telnyx/types/messaging_10dlc/entity_type.py,sha256=JEhltMyh_weNZ4745Z8PxXjhpKLzNx1McYOSGVl-0xg,277
|
|
1713
|
+
telnyx/types/messaging_10dlc/partner_campaign_list_params.py,sha256=kHUtsNHOmYCgU__qrHMWNLylAYDj3XaJPy01MGXUmAQ,1072
|
|
1714
|
+
telnyx/types/messaging_10dlc/partner_campaign_list_shared_by_me_params.py,sha256=OhnSFkaA__YCFWi6tOm6OWHDsCogrPxU6IMkcuOkO50,609
|
|
1715
|
+
telnyx/types/messaging_10dlc/partner_campaign_list_shared_by_me_response.py,sha256=w1VjZ_js_qs4dWmxDYciL-TEt_xnezKwXsUxtBSz_JQ,1661
|
|
1716
|
+
telnyx/types/messaging_10dlc/partner_campaign_retrieve_sharing_status_response.py,sha256=_bnBxfNOoqKNCy4qX2VYc0YoQapuPi2cQudhNUrgjxA,363
|
|
1717
|
+
telnyx/types/messaging_10dlc/partner_campaign_update_params.py,sha256=j4w7qkS8s3kw7P0LuoUa0BL1CNqP1UJDDXiFIyDz5ec,595
|
|
1718
|
+
telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_assign_params.py,sha256=LEQSTYdosfB-nDOyry7ynGi4wjhYNhOgCtIic67iYv0,1108
|
|
1719
|
+
telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_assign_response.py,sha256=UJCw24k48d5lWvXszIhw36u2iMgg2FkXFJnscfa-gwM,1204
|
|
1720
|
+
telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_list_phone_number_status_params.py,sha256=R8WacWSRq3hF-NIqa01xrCGzT_puW9tlQcjqumd2DN4,464
|
|
1721
|
+
telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_list_phone_number_status_response.py,sha256=5uGuNQoAzzy15_HAi1fntVi6d8NmC6RXLebm9kEME5Q,714
|
|
1722
|
+
telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_retrieve_phone_number_status_params.py,sha256=ANWd48hu1CZIaocZlwdwIcgzBiYU7uuDfCsnN5jFzfc,472
|
|
1723
|
+
telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_retrieve_phone_number_status_response.py,sha256=T2vLo252i8wEJVue-zRYRa2i3Slpzo9uxeLJfZzMgFs,722
|
|
1724
|
+
telnyx/types/messaging_10dlc/phone_number_assignment_by_profile_retrieve_status_response.py,sha256=xNPiIXfMpubwyntR9h6Yfg09U1PhL5aPF-cr89PSxeg,701
|
|
1725
|
+
telnyx/types/messaging_10dlc/phone_number_campaign.py,sha256=UyHHtbkIGH7YrS7N6MxIUJcGSQYCxRvjhoMV-ig1zaQ,1714
|
|
1726
|
+
telnyx/types/messaging_10dlc/phone_number_campaign_create_params.py,sha256=a7TU5GQLIO05NFDeZnNhR3MGm-EFaGi6S_J2N0z8hX4,637
|
|
1727
|
+
telnyx/types/messaging_10dlc/phone_number_campaign_list_params.py,sha256=egYJxjPUEIihx2VNcT7X3qN-pwnItGPxgAM-5OeVoxM,1392
|
|
1728
|
+
telnyx/types/messaging_10dlc/phone_number_campaign_update_params.py,sha256=vVB51scrKMuXENAq8WVPGUjUTGeyfaKkvhMr2wPntFA,637
|
|
1729
|
+
telnyx/types/messaging_10dlc/stock_exchange.py,sha256=BmxOo0O-trPZ9NXynvfWaifk7yvKTmrieO5SE4Y26K0,488
|
|
1730
|
+
telnyx/types/messaging_10dlc/task_status.py,sha256=inaFK0Mjsre1BAeB6wZdKqUFCVHJSaEaEJe0iqEqnlU,252
|
|
1731
|
+
telnyx/types/messaging_10dlc/telnyx_brand.py,sha256=oVvAY33ZWbIegBzUsm4IVE8sVEl-yvVorpkvHnlzwxE,5496
|
|
1732
|
+
telnyx/types/messaging_10dlc/telnyx_campaign_csp.py,sha256=mBqLHMCOiBA4nS_W66PF9g-8Q48Zuhbr1IoJE3TQwhU,8667
|
|
1733
|
+
telnyx/types/messaging_10dlc/telnyx_downstream_campaign.py,sha256=GNb2edyhPPFD15wMVbqXMAf3YeHt1ibX9DfdOj_8a2E,6501
|
|
1734
|
+
telnyx/types/messaging_10dlc/vertical.py,sha256=iHaWXSXp1agwA2ORKJA3VwTJizZu9SFoEatEqcEMz60,494
|
|
1735
|
+
telnyx/types/messaging_10dlc/brand/__init__.py,sha256=_-6hAnbxK01ZnWyynC53Vl_iHUSc_8zkVrRQziEyrOs,650
|
|
1736
|
+
telnyx/types/messaging_10dlc/brand/external_vetting_imports_params.py,sha256=zfusOxJpIHxFSrTCVN3zbGI1kFf5zwjezgK44Oad6Ts,828
|
|
1737
|
+
telnyx/types/messaging_10dlc/brand/external_vetting_imports_response.py,sha256=Tjg3cQmzqzyuAa7jIJ11pBqG-06hshlj_ukMHrjAZj4,1556
|
|
1738
|
+
telnyx/types/messaging_10dlc/brand/external_vetting_list_response.py,sha256=XNwOS7tVhxV_aij2Q5NQcJWBvSfqePSWgVc9uLXkub4,1716
|
|
1739
|
+
telnyx/types/messaging_10dlc/brand/external_vetting_order_params.py,sha256=f4Xaemlt-h3cCPP78XC8i-al1igODX6klN9jkGDWuxI,573
|
|
1740
|
+
telnyx/types/messaging_10dlc/brand/external_vetting_order_response.py,sha256=3InNzNWxtZzTlnFGdUF3nJkemN_W7sAlEsJObHLABds,1552
|
|
1741
|
+
telnyx/types/messaging_10dlc/campaign/__init__.py,sha256=oempRTTxQXbmQNSc_aBrbVA0R5lTPdCiXD-tHljz6_g,387
|
|
1742
|
+
telnyx/types/messaging_10dlc/campaign/osr_get_attributes_response.py,sha256=55w4UuWLhoB3IqxeFL9Nr9BJMJ9HWds6nUvYsOGH1h4,248
|
|
1743
|
+
telnyx/types/messaging_10dlc/campaign/usecase_get_cost_params.py,sha256=IpXXEkkWs6BrDL2wqbac-GbN4UGrP3vVpU1cPNosUQE,290
|
|
1744
|
+
telnyx/types/messaging_10dlc/campaign/usecase_get_cost_response.py,sha256=RkMUa4UDVDWTJQbgV3bJ2QJP8h_yDhlDaSpdeIKvMJQ,441
|
|
1745
|
+
telnyx/types/messaging_10dlc/campaign_builder/__init__.py,sha256=tOZW32f4DDwCmKo3h_jPtK3uK6PPBt0pFHqcv5tXJiI,233
|
|
1746
|
+
telnyx/types/messaging_10dlc/campaign_builder/brand_qualify_by_usecase_response.py,sha256=EFpZk52DChMm_ISM555VI48oODl9S9QKpVNVwAJS3gU,1274
|
|
1747
|
+
telnyx/types/messaging_hosted_number_orders/__init__.py,sha256=dfyO3Tki3O2O7FceSyMoomhb39mchEhMS7JpdC1Hl7s,305
|
|
1748
|
+
telnyx/types/messaging_hosted_number_orders/action_upload_file_params.py,sha256=DVbFGxIBOKks-QSE7WtflCcod0Cgfklt0XG0YpQarcI,533
|
|
1749
|
+
telnyx/types/messaging_hosted_number_orders/action_upload_file_response.py,sha256=sljp0BqE0k039h506eC3_ipQCyeizfVBbtnWT8fGI24,366
|
|
1750
|
+
telnyx/types/messaging_profiles/__init__.py,sha256=oodx8OP5v2kQGbCJufK2BwC004v4Zrq2qeCQwQxlNkI,774
|
|
1751
|
+
telnyx/types/messaging_profiles/auto_resp_config.py,sha256=cpknBd4iNbIxTAiCodLIn3EDE4lSi15zB8VOVNmQDFQ,479
|
|
1752
|
+
telnyx/types/messaging_profiles/auto_resp_config_response.py,sha256=OB82kX9x2tycIK1LYYrwj-Gtd-wDq2iWL3NV5kMQoUI,271
|
|
1753
|
+
telnyx/types/messaging_profiles/autoresp_config_create_params.py,sha256=ywAH8XHZxa-miB6VWjQY_EtQKrvYugOQi4CiSgEiAvQ,471
|
|
1754
|
+
telnyx/types/messaging_profiles/autoresp_config_delete_response.py,sha256=ruR8SI6XVm6kp2Fnf2RWqXGQOaQxxpfn3Ovq-I6eMEk,218
|
|
1755
|
+
telnyx/types/messaging_profiles/autoresp_config_list_params.py,sha256=cv_RDJ64DMuaTZHipac9PXC9I44I27LS5fJK_U8iBz8,981
|
|
1756
|
+
telnyx/types/messaging_profiles/autoresp_config_list_response.py,sha256=NPyj5f_40mXKLZ0UtrcHiaEXV13VZ-6Y1mcxnzgv-XI,458
|
|
1757
|
+
telnyx/types/messaging_profiles/autoresp_config_update_params.py,sha256=t0rCpoYD5egY8pJGrncX556Ca5f3Tn1ZAlj7u5mALaM,502
|
|
1758
|
+
telnyx/types/messaging_tollfree/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
1759
|
+
telnyx/types/messaging_tollfree/verification/__init__.py,sha256=C-lZQFlf0wojwvPzJKTrW9jeiBFAKewrOPiQ_BP3uBo,1054
|
|
1760
|
+
telnyx/types/messaging_tollfree/verification/request_create_params.py,sha256=qh5P89_xHPLd_Ptx_UkjkPrgLtK5HwPfZVNmsLv3ygY,6424
|
|
1761
|
+
telnyx/types/messaging_tollfree/verification/request_list_params.py,sha256=du1u1sKD1su76I9pdJeIPKJVc-LWKyacqMOJkPLc3Us,862
|
|
1762
|
+
telnyx/types/messaging_tollfree/verification/request_update_params.py,sha256=wfv_bWJgTKwtU12tNIJHusUhoTeSTSlWWnkAdY1rWQw,6424
|
|
1763
|
+
telnyx/types/messaging_tollfree/verification/tf_phone_number.py,sha256=YKeliSKtaAot9P7Ziz0MkznCu607IwPCKIwbEY8Xro0,306
|
|
1764
|
+
telnyx/types/messaging_tollfree/verification/tf_phone_number_param.py,sha256=izZ_-flI8BF3-cYX6jPbjziEBPLy89uZOnTfOvvKaqI,411
|
|
1765
|
+
telnyx/types/messaging_tollfree/verification/tf_verification_status.py,sha256=WXv7GzELh6X0nky743XYKZPujcj-g1piDbfSITavwsc,328
|
|
1766
|
+
telnyx/types/messaging_tollfree/verification/toll_free_verification_entity_type.py,sha256=wXUvsaoDW0oSj95xnq2NV7Uh0M_QutbtmAP9d-qWwFo,323
|
|
1767
|
+
telnyx/types/messaging_tollfree/verification/url.py,sha256=CbLrYJeilXZJO2rWGmLL_W_L60CMVIolRpBUO3zLx7U,177
|
|
1768
|
+
telnyx/types/messaging_tollfree/verification/url_param.py,sha256=dyPNCHkYbJQ7zHhpuLa8xTdJQS0H0fW0YIqWItTNCCY,262
|
|
1769
|
+
telnyx/types/messaging_tollfree/verification/use_case_categories.py,sha256=EM8ohix6mMTnMK6F4DwmRPxpcjdTUYobHfONdsFNleE,1227
|
|
1770
|
+
telnyx/types/messaging_tollfree/verification/verification_request_egress.py,sha256=WC9xRFrTtodiZ_ZyPw-pWHtKQlpJyLHOmBx5pdYYlY8,3805
|
|
1771
|
+
telnyx/types/messaging_tollfree/verification/verification_request_status.py,sha256=P-IgGNs0Gq0jdN4CbAfemnBUPRQZC060PDhNxAdRmQY,3946
|
|
1772
|
+
telnyx/types/messaging_tollfree/verification/volume.py,sha256=ocfY2EJG986TBTvLKK_aWPxwbdTKxPzsZoBv5SFdxXI,310
|
|
1773
|
+
telnyx/types/mobile_phone_numbers/__init__.py,sha256=w0uStKbYXIJsQDdRV4LVGFEa2UGoK6-DizkJwDB5EP0,381
|
|
1774
|
+
telnyx/types/mobile_phone_numbers/messaging_list_params.py,sha256=I4x2MdAIzWz1r8bvFJTfoA8UE731i-qa2H_omMuavpU,431
|
|
1775
|
+
telnyx/types/mobile_phone_numbers/messaging_list_response.py,sha256=Huo9Vzdk8sTSlcV4FdVjHCQ3DRGrFq5gh120cIdcNJM,1748
|
|
1776
|
+
telnyx/types/mobile_phone_numbers/messaging_retrieve_response.py,sha256=2-7TDoa6c-Rg2dSoBdhLY2HfdCwTnTral_M_qkQsO08,1833
|
|
1777
|
+
telnyx/types/networks/__init__.py,sha256=QYtQzaWvF6EggvmdzyJwDGkakz9opa76cWVBvy7QF3I,547
|
|
1778
|
+
telnyx/types/networks/default_gateway_create_params.py,sha256=uh5oaOF16AMo3GiFU9cLUX7zy8l5us_HenVBAJiFf18,321
|
|
1779
|
+
telnyx/types/networks/default_gateway_create_response.py,sha256=N1ql-xMQmQtVuZVAvurrqkB_SM2dxZNYT8HbanuRgDs,716
|
|
1780
|
+
telnyx/types/networks/default_gateway_delete_response.py,sha256=uEcstN9k3e0XJHUABcTdwDJmuNKw9I_tY80yjDNP5Qc,716
|
|
1781
|
+
telnyx/types/networks/default_gateway_retrieve_response.py,sha256=5La2IH6NlzJCwE2Uu-lYltli5kTl6iHuFVnUrqQdYLo,720
|
|
1782
|
+
telnyx/types/number_reservations/__init__.py,sha256=Ak9GBt1dBxRMynP02qb5y4U66T2oW9CM_ytKY5bwoDY,204
|
|
1783
|
+
telnyx/types/number_reservations/action_extend_response.py,sha256=SI3THhfcq0clZqYxSMh1vnMB0wEENNs9LN8tXAyF_O4,322
|
|
1784
|
+
telnyx/types/operator_connect/__init__.py,sha256=lWkacjA1L2d-w5yKe1v4vhmw66crhI4uresFLSX1aH4,207
|
|
1785
|
+
telnyx/types/operator_connect/action_refresh_response.py,sha256=x_oibdBf0MNxwHySvNoY4dvjQL9USCMHO1zLlVXLy9o,420
|
|
1786
|
+
telnyx/types/organizations/__init__.py,sha256=a2DJcxeOwWYiIMFl5X0BHT6ZmhGy3Xb0a9BxzErTgUQ,515
|
|
1787
|
+
telnyx/types/organizations/user_get_groups_report_response.py,sha256=1nTe7dQ94LstjgJc9gVGIbYlG-mtThF9UZjy0IJrbCI,1509
|
|
1788
|
+
telnyx/types/organizations/user_list_params.py,sha256=2thKulyTxlO76-h1Eiuzv6ULyuV-R2eh3VBlo-YfppM,981
|
|
1789
|
+
telnyx/types/organizations/user_list_response.py,sha256=9QgMiVwPfeh7swHWxaBAMzKqd54ZypD6vPaGtGzV6Bw,1491
|
|
1790
|
+
telnyx/types/organizations/user_retrieve_params.py,sha256=ptMTc97IGkVgVbBcOSEn1_d-STtMLcJHLj0b3sbvxeY,460
|
|
1791
|
+
telnyx/types/organizations/user_retrieve_response.py,sha256=9i5NkHuXIHobGEr4crtjaj-9tKcxwf9SsPADzZTL1GI,1576
|
|
1792
|
+
telnyx/types/organizations/users/__init__.py,sha256=Ye1tZchAcm7TO9d_Dhw4BZVh4a2wo1FmwIWQl4R-YOM,204
|
|
1793
|
+
telnyx/types/organizations/users/action_remove_response.py,sha256=b8wRlKKYl7a8CkiFbC3SIWp6OzqGnh6yXCemyAPhxWk,1577
|
|
1794
|
+
telnyx/types/payment/__init__.py,sha256=0YwnCxSPUEwdzFThpel31djcLW6hgxi9nDZbRVRV15A,450
|
|
1795
|
+
telnyx/types/payment/auto_recharge_pref_list_response.py,sha256=XiHC3dzwNIGMsfms7wueynmzCQXk6lUMQCrKwC6I094,1078
|
|
1796
|
+
telnyx/types/payment/auto_recharge_pref_update_params.py,sha256=e4BFJmOyfQR1WrSMQVitjn6CvdRjprcufDU5XcqAEHE,764
|
|
1797
|
+
telnyx/types/payment/auto_recharge_pref_update_response.py,sha256=twKHzyDzDedX_wfne9IeQFaGuAfZRotf6y3vSlkS3H4,1082
|
|
1798
|
+
telnyx/types/phone_number_blocks/__init__.py,sha256=w3q0sJza9LD-iuaymD5CRLkoEl24-WsCAVVNnL3i0Hw,582
|
|
1799
|
+
telnyx/types/phone_number_blocks/job.py,sha256=vvBNoT4kGr7MXacQp-jmHuleO4OvUd6-nmsjcPhBXHk,1744
|
|
1800
|
+
telnyx/types/phone_number_blocks/job_delete_phone_number_block_params.py,sha256=ywAhRJklSizIkDUt_gj6UMdF-vdVzmrcgM_Pypnnj38,326
|
|
1801
|
+
telnyx/types/phone_number_blocks/job_delete_phone_number_block_response.py,sha256=KwMoWXP2PCDkOyRPgSfrnM6a-oLF9cA1qO9R7F6LIWY,304
|
|
1802
|
+
telnyx/types/phone_number_blocks/job_error.py,sha256=Kb8Lrs96TrcE84PeinzPxRcIGoarwOV_D5wkZTOE3UY,681
|
|
1803
|
+
telnyx/types/phone_number_blocks/job_list_params.py,sha256=8QiPEN7pjGkyiC0Er222pv43PSZKP5JtiL00cgrUbEo,1105
|
|
1804
|
+
telnyx/types/phone_number_blocks/job_retrieve_response.py,sha256=b_PRsZBBPKwn2BhbSq_EJf35rX6G1UALvaCUk1Bx3ig,276
|
|
1805
|
+
telnyx/types/phone_numbers/__init__.py,sha256=zfcWmBgDRU_9BKpm-sFf6Ltci1wid1DItXq4SI_wDJI,3953
|
|
1806
|
+
telnyx/types/phone_numbers/action_change_bundle_status_params.py,sha256=NOjcax9mYJioC_kRwl_2AxUawd1JWZTEetRKtvvZcfE,689
|
|
1807
|
+
telnyx/types/phone_numbers/action_change_bundle_status_response.py,sha256=3ttzGGA_SJU-gbb8zcMWeLG5DCmSbi2QIH28xqTb17g,381
|
|
1808
|
+
telnyx/types/phone_numbers/action_enable_emergency_params.py,sha256=UwHCviQOrZMX5Z6P1inoOee3bkY_ZTWkZ-e6z0w3y1E,498
|
|
1809
|
+
telnyx/types/phone_numbers/action_enable_emergency_response.py,sha256=Rzo65Unj0S4kWL7geh99LZaP7vmUR0sdDS2oxD7i8lU,375
|
|
1810
|
+
telnyx/types/phone_numbers/action_verify_ownership_params.py,sha256=XbLWqUOE615AeHUkoipgDd6R24YCryMTKrqQnXv3w3c,421
|
|
1811
|
+
telnyx/types/phone_numbers/action_verify_ownership_response.py,sha256=IrNPxy_YBDWTTIl_GPEheEXb55pEdeTj25evvecF24c,818
|
|
1812
|
+
telnyx/types/phone_numbers/call_forwarding.py,sha256=J63BtKrTOKXJjTHQnnr8uZtPOrQvALRmcNlFMOgMqCY,988
|
|
1813
|
+
telnyx/types/phone_numbers/call_forwarding_param.py,sha256=miHc8LH_W58WpwwGs4JFePn1cdZhJ9fHCxZ10PveiSc,945
|
|
1814
|
+
telnyx/types/phone_numbers/call_recording.py,sha256=07f2AFTA7BnDskb8FA0hA1N3PGfg49K_wyNpK1qAtO8,808
|
|
1815
|
+
telnyx/types/phone_numbers/call_recording_param.py,sha256=dV1HrC-Qvl2yJovU5_323jVdbPlGF_0zvscnt3Gb0fQ,765
|
|
1816
|
+
telnyx/types/phone_numbers/cnam_listing.py,sha256=nogk_Mzd7pr9TBrfZ1j8IYka9xGx9E7DtEHm8AvBjH0,657
|
|
1817
|
+
telnyx/types/phone_numbers/cnam_listing_param.py,sha256=taIn2eO1KzMy9XkTrb-uWWKbZcVP1GXauL1c0yOsBkQ,660
|
|
1818
|
+
telnyx/types/phone_numbers/csv_download.py,sha256=C1Z8WKf51VHSfwqayq-MM2hbh7OeWwBEUvbb6O95OPY,703
|
|
1819
|
+
telnyx/types/phone_numbers/csv_download_create_params.py,sha256=QpvLaxWv00mgCoALj8TR3pgY0Jx1Ejrk2bXe7cbSrns,3278
|
|
1820
|
+
telnyx/types/phone_numbers/csv_download_create_response.py,sha256=9UTtuuX0Y8EGHugxoajrTMu9_g7ApFSIu3SVhJLvFek,325
|
|
1821
|
+
telnyx/types/phone_numbers/csv_download_list_params.py,sha256=wg8YKUrM5ORkkjyIdg0Hi-5b-1k_AH6XTzKReL5Slpw,435
|
|
1822
|
+
telnyx/types/phone_numbers/csv_download_retrieve_response.py,sha256=e9U1AjAsvkEynlsnlvpElP0u_RCpvcnwhT_POcokxbA,329
|
|
1823
|
+
telnyx/types/phone_numbers/job_delete_batch_params.py,sha256=9u-_IwN8J3CSSsJT603atakwgWb7EFJpKWhERl1aDZM,350
|
|
1824
|
+
telnyx/types/phone_numbers/job_delete_batch_response.py,sha256=pU7r3bHrQTfZilyKsAKrK8nvYghExdaEjeJALKLwdyc,320
|
|
1825
|
+
telnyx/types/phone_numbers/job_list_params.py,sha256=YNWK965NQpL1dcI1G9clhUW9fnSeH9vha38elowWtOY,976
|
|
1826
|
+
telnyx/types/phone_numbers/job_retrieve_response.py,sha256=3hSWls-xCpYJCz5iTY-LzapbPBp1cAl5IlJDL88ubHg,314
|
|
1827
|
+
telnyx/types/phone_numbers/job_update_batch_params.py,sha256=hFeZoZz0upZE11CgV4v7rk9czYwaSpUhydZJtLIqtms,4914
|
|
1828
|
+
telnyx/types/phone_numbers/job_update_batch_response.py,sha256=lYeM8CZH5zHjvVrlfI2OE3Y5gZ0eUqzFMuOl2XGlY40,320
|
|
1829
|
+
telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py,sha256=4kwW_x0lIJbhR5pGAR43XWSY67JiokA-CSrRlZoQolY,753
|
|
1830
|
+
telnyx/types/phone_numbers/job_update_emergency_settings_batch_response.py,sha256=iFRA6iIZ8Xi0NJ33v2hTLQyVNWsRNJTVFgSmD1dR7OI,354
|
|
1831
|
+
telnyx/types/phone_numbers/media_features.py,sha256=87DjvnreYG7qfjVSVz78c5GXWFZEfncdzpjhIkoqHU4,967
|
|
1832
|
+
telnyx/types/phone_numbers/media_features_param.py,sha256=-CoSa2mdvtYHK6bdWFVkScmg_6-j9wZjBEKBX-o1J-4,953
|
|
1833
|
+
telnyx/types/phone_numbers/messaging_list_params.py,sha256=I4x2MdAIzWz1r8bvFJTfoA8UE731i-qa2H_omMuavpU,431
|
|
1834
|
+
telnyx/types/phone_numbers/messaging_retrieve_response.py,sha256=O44AEySuXUYkDLefeiA-7a7-HGFRqci6vjn3mXhdVYk,387
|
|
1835
|
+
telnyx/types/phone_numbers/messaging_update_params.py,sha256=3YKXNWMISyGb1jy3TUlzoU79v3pZYV7tYgrUiMS7t7Q,891
|
|
1836
|
+
telnyx/types/phone_numbers/messaging_update_response.py,sha256=UKxjFqA5wuYKJMHPy9SP6lOsnzr3EMEBdeRvBmxXawI,383
|
|
1837
|
+
telnyx/types/phone_numbers/phone_number_with_voice_settings.py,sha256=4EkEgnYjFE5zdkpG_xacFVknM5amwi-nYmCeB0aoc8Q,3135
|
|
1838
|
+
telnyx/types/phone_numbers/phone_numbers_job.py,sha256=fjV8UYVx8zFvcVc_mgxUpaNFkwnLgL5BK0eFYssHG7M,2648
|
|
1839
|
+
telnyx/types/phone_numbers/update_voice_settings_param.py,sha256=qdv4W-m-9ID6cvyY2WwjJWN1m-iSZLq___Bg9E43cPo,1937
|
|
1840
|
+
telnyx/types/phone_numbers/voice_list_params.py,sha256=QygldIzDeO1HXnzYDqdjg8C9vsborIPZGAYoFlp3Wb4,1879
|
|
1841
|
+
telnyx/types/phone_numbers/voice_retrieve_response.py,sha256=DbG9wPdRqbAG9gkcl8ucRIeTwY3tcD1ZBspf-ZafLmw,359
|
|
1842
|
+
telnyx/types/phone_numbers/voice_update_params.py,sha256=8elnYq04XrP0CeeckAkceLXbF-7nLA7uO-ujigz5eGg,1923
|
|
1843
|
+
telnyx/types/phone_numbers/voice_update_response.py,sha256=wJhTbcfzAOB3ekuttjjsyf_xl9xrbQ_uLxvQGaPTfRM,355
|
|
1844
|
+
telnyx/types/phone_numbers/voicemail_create_params.py,sha256=rt6AEuk3-uNLfojmy8RQMhz80V_2qXMGpqZGDZlO6_4,364
|
|
1845
|
+
telnyx/types/phone_numbers/voicemail_create_response.py,sha256=m3AUqJdm81uxq3nVSgd7n2T6KwgUVdOg_jJ792wrBN8,340
|
|
1846
|
+
telnyx/types/phone_numbers/voicemail_pref_response.py,sha256=KatkOgOmu0aRBPWsMX-dK1FzQUZLLF_z6kb1chyHK-U,376
|
|
1847
|
+
telnyx/types/phone_numbers/voicemail_retrieve_response.py,sha256=mukmhXB3L7gPrUXr7hnA8YT0TIEZV1_3TaCr09UtJL8,344
|
|
1848
|
+
telnyx/types/phone_numbers/voicemail_update_params.py,sha256=ypC7f4zWItROJxe2LxiDnpB0kIXWYQMGV9ixor3wFsg,364
|
|
1849
|
+
telnyx/types/phone_numbers/voicemail_update_response.py,sha256=WkjIUhM8pfcJ2S6MpiIH9HnshIql2q2_MMjelv6u9ck,340
|
|
1850
|
+
telnyx/types/porting/__init__.py,sha256=eWdjVj1Y4Gci0M8wQx9k-bLVRjyHNC5qJ72AuKHz7ws,1812
|
|
1851
|
+
telnyx/types/porting/event_list_params.py,sha256=hDCLjH1Nxb0p3vNuMUS9DpaigYl_xrQAVal6qv8lKNQ,1760
|
|
1852
|
+
telnyx/types/porting/event_list_response.py,sha256=EeSAwSLJLO_BiuU4xGsS62DXr7O0X58zaSDZ-T7dHtk,14041
|
|
1853
|
+
telnyx/types/porting/event_retrieve_response.py,sha256=0nASEO4SsoFaJ2iKW5zaAQKszMAeWiKxUahHUZyY0hs,14310
|
|
1854
|
+
telnyx/types/porting/export_porting_orders_csv_report.py,sha256=t6RW56VV3-zGKym-qB1a3gFksr2Pa9rC2GuhaiHiUiU,1571
|
|
1855
|
+
telnyx/types/porting/export_porting_orders_csv_report_param.py,sha256=zDi_3AfVsbgbeRR9ROVIFtgZQCleHeFqozPjF01Sr1Y,1715
|
|
1856
|
+
telnyx/types/porting/loa_configuration_create_params.py,sha256=wK7JyXth5uYujArDOlT6bPqfoIXvDbULPeJjt4iwxiQ,1567
|
|
1857
|
+
telnyx/types/porting/loa_configuration_create_response.py,sha256=idFW9lRXOi0eoowWG26-OSVcI3Hp_fmfFStZ3krwG64,360
|
|
1858
|
+
telnyx/types/porting/loa_configuration_list_params.py,sha256=CAl2n9CAQst8I-tu-kwZIOjgB884NxOZHa7TlrymLkY,445
|
|
1859
|
+
telnyx/types/porting/loa_configuration_preview_0_params.py,sha256=xfQKzrFQTuz-rpejfeWAMV-cg72aeT6KFbWqcClwP3k,1571
|
|
1860
|
+
telnyx/types/porting/loa_configuration_retrieve_response.py,sha256=jhmNZzh5AoN84csgD8z39VbY2Rgu0mB1bRUcLzR1--o,364
|
|
1861
|
+
telnyx/types/porting/loa_configuration_update_params.py,sha256=XPWWHzR9zgWMVHgIjHRjOldRTtoH48q4EFC2fYLBljA,1567
|
|
1862
|
+
telnyx/types/porting/loa_configuration_update_response.py,sha256=HlMzjUvmkkHaynvWd4iJrctknDKZjK_Rgj2sUiJOij4,360
|
|
1863
|
+
telnyx/types/porting/porting_loa_configuration.py,sha256=Bc0mCpnEXBlzkGMao2zbytnWGcTOqTI-jcyypk-y7zk,2279
|
|
1864
|
+
telnyx/types/porting/porting_report.py,sha256=wf2QFzAHR3TvO8zcsZkGv6G5YSug0hvXW8xWscjQFHg,1307
|
|
1865
|
+
telnyx/types/porting/report_create_params.py,sha256=JIIWG5ZSOIIN4GJI5meWcwS18bypDEEOX03XnX50e70,585
|
|
1866
|
+
telnyx/types/porting/report_create_response.py,sha256=BNT3KHwt1d3MioPeMxbA4sze-QbQNradK8VWUJChVSc,309
|
|
1867
|
+
telnyx/types/porting/report_list_params.py,sha256=jiACa_zaS1zvYoa8uhxlgpwcIHQlV6v-0vuajTu6SVM,930
|
|
1868
|
+
telnyx/types/porting/report_retrieve_response.py,sha256=8OyIysbVNL7p2mcKrDaGKWZV3GIoMIeyUwJtJ1wdC_w,313
|
|
1869
|
+
telnyx/types/porting_orders/__init__.py,sha256=FwhCLLOQ-KkH8HRz6tteyAmLAuF4XN-YHWjc6WNAQQk,4972
|
|
1870
|
+
telnyx/types/porting_orders/action_activate_response.py,sha256=yHEqDYp-dHYqPHME8zNY91Q2Cwa63kh0GKT0k7PQeao,355
|
|
1871
|
+
telnyx/types/porting_orders/action_cancel_response.py,sha256=t-CwDtKYFrEIUZxpM9H6eC1ItUT-ckT_bt0DcWOXRdY,458
|
|
1872
|
+
telnyx/types/porting_orders/action_confirm_response.py,sha256=8yaAwjsbtWY_PjmYLFkpLITIHZI7csntjQ_ZkmNzopA,460
|
|
1873
|
+
telnyx/types/porting_orders/action_requirement_initiate_params.py,sha256=ps3i27eTXQXn0jYWvuiLgpiO-WH-AV6fS1Geu8SKMSg,831
|
|
1874
|
+
telnyx/types/porting_orders/action_requirement_initiate_response.py,sha256=NYokr-_EHqC9-mWUjRNar5Ajm5Ri7--VrmDwoMR0kBE,1428
|
|
1875
|
+
telnyx/types/porting_orders/action_requirement_list_params.py,sha256=lgwiywEDC8Zk3ULLJqXEroA0kTyhzgwRjApxH33WcLM,1726
|
|
1876
|
+
telnyx/types/porting_orders/action_requirement_list_response.py,sha256=DE7nETkObpGSVNMT5icKalojma3sZdAMgOyQTwG_x7E,1355
|
|
1877
|
+
telnyx/types/porting_orders/action_share_params.py,sha256=Qc4xK47aS1JELeFF7raHxt5dhAwfJWhAmpv4NWC2JEs,480
|
|
1878
|
+
telnyx/types/porting_orders/action_share_response.py,sha256=ofTtHdeZMNe5ke9ZmezfLi8-vkxD81Cc6IVW5ZFilEc,1258
|
|
1879
|
+
telnyx/types/porting_orders/activation_job_list_params.py,sha256=p08-sTtRUrtU5bRmqfzW5kFt61yyzaz6ixKGgLDzFV0,439
|
|
1880
|
+
telnyx/types/porting_orders/activation_job_retrieve_response.py,sha256=_RxWJXWfNJBQD6nL7tQj0qq_VCuWVjbkMPagejvDAZY,369
|
|
1881
|
+
telnyx/types/porting_orders/activation_job_update_params.py,sha256=CiKMdENXjyDAmNDOrsat1UK_KEF6QhfN8nmMHyuE4OQ,597
|
|
1882
|
+
telnyx/types/porting_orders/activation_job_update_response.py,sha256=OMMgYL8Tn6jS4DyPlvXnL_RFqKCNpY8O4T270MhqhdE,365
|
|
1883
|
+
telnyx/types/porting_orders/additional_document_create_params.py,sha256=oQxoPSbNnUV89n6FHrNAVPBZ5sW1ibjVSVAw4LrIotI,606
|
|
1884
|
+
telnyx/types/porting_orders/additional_document_create_response.py,sha256=FLv5T8rDxs9djlzcNw13vq-NbaxBXoh1TpEDjV4nC7c,1289
|
|
1885
|
+
telnyx/types/porting_orders/additional_document_list_params.py,sha256=vEYMkLAgGM_40cEctlEaUNFAq6RovZbPPwpAY9qI0AM,1295
|
|
1886
|
+
telnyx/types/porting_orders/additional_document_list_response.py,sha256=7nlKRnKI8lKtHxPkVQIAJ6-IjBiwuDg0CDQDUP6PUfI,1208
|
|
1887
|
+
telnyx/types/porting_orders/associated_phone_number_create_params.py,sha256=s4_o5TmClTxj6ksA4hxX16wG_E6h-vk7a4JW9HXy-_o,771
|
|
1888
|
+
telnyx/types/porting_orders/associated_phone_number_create_response.py,sha256=WMS7UKwTJjq9oN5yi_3hc2fDQW8XP6bCGd14KmC9yAs,386
|
|
1889
|
+
telnyx/types/porting_orders/associated_phone_number_delete_response.py,sha256=HZ9wItzYJBv94d-BYjROiraQaSa_r9FQSNG6ANRQas4,386
|
|
1890
|
+
telnyx/types/porting_orders/associated_phone_number_list_params.py,sha256=hUFXWCaVnJ0G6Q7vMG5QdMaCkogbh_q4FS6NCF5iEtw,1352
|
|
1891
|
+
telnyx/types/porting_orders/comment_create_params.py,sha256=yQIBaea_5_j9g670Ox4vUX7o5-Jne-U-0ruhpf68oQQ,265
|
|
1892
|
+
telnyx/types/porting_orders/comment_create_response.py,sha256=3bkbI7QrdtPKSAAYTgxxBbd92pZRKctVkBAs36UUGXk,853
|
|
1893
|
+
telnyx/types/porting_orders/comment_list_params.py,sha256=8WAV_0YUhUv301NDYVUJlOIUqjrmnG-fsCUjTAoV7So,427
|
|
1894
|
+
telnyx/types/porting_orders/comment_list_response.py,sha256=etSPzj9ujRyDott-tv-lVf8hiACsIxYtC0_YXVG3few,784
|
|
1895
|
+
telnyx/types/porting_orders/phone_number_block_create_params.py,sha256=CHJt-YulkiyRbLEkP8XaZJnr_ALJQsJpLOw_r5ZRbk0,1315
|
|
1896
|
+
telnyx/types/porting_orders/phone_number_block_create_response.py,sha256=WjwIs8coYmDqRvm49nmJw_f7ehhTMDHgL85V3C_-6rw,361
|
|
1897
|
+
telnyx/types/porting_orders/phone_number_block_delete_response.py,sha256=DMWZYmf7J1EYvn2_BmUTcxy8fvvxwSlIXxKjmjxcSA8,361
|
|
1898
|
+
telnyx/types/porting_orders/phone_number_block_list_params.py,sha256=LoVg3PaadAH7zvrU3pnONxxMGbFNavjnfxK-3Aj5ACU,2941
|
|
1899
|
+
telnyx/types/porting_orders/phone_number_configuration_create_params.py,sha256=7zusgczIv8YqlDc2lmrNL9IQZcEy39UpXw7hzSR7Szo,704
|
|
1900
|
+
telnyx/types/porting_orders/phone_number_configuration_create_response.py,sha256=jw5FJRrN4OMWFGsYedIQcalJJbBy1wUuRYrTIhxGEe4,982
|
|
1901
|
+
telnyx/types/porting_orders/phone_number_configuration_list_params.py,sha256=0jAQSaZjNQDmP3zOOSzpXUoe6GPxKe_KtlQoHiPxeus,2047
|
|
1902
|
+
telnyx/types/porting_orders/phone_number_configuration_list_response.py,sha256=407zYHBgUJQLDwzqQqZEN19dYQTj4RmwwApyESf6L4U,901
|
|
1903
|
+
telnyx/types/porting_orders/phone_number_extension_create_params.py,sha256=F0nBFwH0o_CUSnb89oCGF3pqRqfOm9g9zhKtk-LUeCc,1485
|
|
1904
|
+
telnyx/types/porting_orders/phone_number_extension_create_response.py,sha256=yr4EwLHA5Eylae8icT26M2Km1kSufge8wqAY1Q7jMmE,381
|
|
1905
|
+
telnyx/types/porting_orders/phone_number_extension_delete_response.py,sha256=bfA8OGqvKT5jZM8OHjmAgXkirxFFQ2lFsQl70G4HN_0,381
|
|
1906
|
+
telnyx/types/porting_orders/phone_number_extension_list_params.py,sha256=NGEUx4QMv9Ulco6a6Nhw__NbezqdISd6bpra2ryKSJ0,1246
|
|
1907
|
+
telnyx/types/porting_orders/porting_associated_phone_number.py,sha256=lVwLkxd0T9FjoQnteNVIXFFVhH6GmOAFwhusvSw-Q9c,1879
|
|
1908
|
+
telnyx/types/porting_orders/porting_phone_number_block.py,sha256=Fe0TK54_Ndc1IS9UrSygunqoTcOHVJ5_gw-qXXPSDhA,2297
|
|
1909
|
+
telnyx/types/porting_orders/porting_phone_number_extension.py,sha256=LCTAXZD8zOOYr1UQu-il053Of711oDV0qH8rd25BSww,2054
|
|
1910
|
+
telnyx/types/porting_orders/verification_code_list_params.py,sha256=10QyRHhZ8i8BEylS0fbmQ0eNrKonYgs1SKux0vYSF3k,1190
|
|
1911
|
+
telnyx/types/porting_orders/verification_code_list_response.py,sha256=sNRgSkfiZFkd9LE9miMpFzBsztA-SNbUvLDLqC44hPA,963
|
|
1912
|
+
telnyx/types/porting_orders/verification_code_send_params.py,sha256=dvhevoOTJmajW_79D97rVWzG-e7A2PY1ezxNdDuPiyo,400
|
|
1913
|
+
telnyx/types/porting_orders/verification_code_verify_params.py,sha256=CVpbc5pnfHS0oDD0Ftf75U-VMad7BAz3xgkvxmDTkjA,455
|
|
1914
|
+
telnyx/types/porting_orders/verification_code_verify_response.py,sha256=svKh_ehqL6SAd5Vlms9HCm-edP9PEzqnk49DSJqqgXA,1044
|
|
1915
|
+
telnyx/types/portouts/__init__.py,sha256=it0rU_DIgLYrvXwZYVI-CBYY_NIZaVUwta9MIJnkEzA,1496
|
|
1916
|
+
telnyx/types/portouts/comment_create_params.py,sha256=wg688BYJAsoOYDm1uc3WEB1HMMhL224vP1ZpqUq1IAA,315
|
|
1917
|
+
telnyx/types/portouts/comment_create_response.py,sha256=QxKy6pGlwylEHc2t8UP6scU4lWvIgYkz14uCwlIP7Ss,716
|
|
1918
|
+
telnyx/types/portouts/comment_list_response.py,sha256=4HOSywIjFQ3tdek0wpGkhpfAen2YVj2TNr5KjdlDm4Y,800
|
|
1919
|
+
telnyx/types/portouts/event_list_params.py,sha256=acWAOvQtcHiyJjlxKWVOetpJAKoakEZkN06ege9uq8E,1525
|
|
1920
|
+
telnyx/types/portouts/event_list_response.py,sha256=fkpkBw2jebkVhNy1BfiZIjQZQe_PigtoqDJWelS33uY,5936
|
|
1921
|
+
telnyx/types/portouts/event_retrieve_response.py,sha256=MMaacgvbNmoMCT21dYZPbwb_ra_Cf-JaZJlmLcOR73s,6079
|
|
1922
|
+
telnyx/types/portouts/export_portouts_csv_report.py,sha256=RDcjAE6ASlE-UkTJKWhgsoQOsUVhY8AnbrXoRPL2AFs,1634
|
|
1923
|
+
telnyx/types/portouts/export_portouts_csv_report_param.py,sha256=ZPFZKTZuw5_ZzVGDTp_fJfvsMS3emPHQ9GxUnkZH2jQ,1760
|
|
1924
|
+
telnyx/types/portouts/portout_report.py,sha256=HSOhs7YIDUWpNSEVH4un2S2vfGqPv0WP_I1jDLjrDO4,1280
|
|
1925
|
+
telnyx/types/portouts/report_create_params.py,sha256=CGysEL_ihcATHpNybcBufQ7oQ-2BMNUFPvhSj1j4-UI,558
|
|
1926
|
+
telnyx/types/portouts/report_create_response.py,sha256=Gf9QtOaycu71ixu-0FqvvQZKhNPWHKJCS7aThvZcAP0,309
|
|
1927
|
+
telnyx/types/portouts/report_list_params.py,sha256=h0minmk8hUmWO3CAU6hB6skZ1jLAsIeym5UctMAR4UA,924
|
|
1928
|
+
telnyx/types/portouts/report_retrieve_response.py,sha256=00HN_V2WBWS6JIxNKxmhFxihveDBez0t82juhcVg2Jk,313
|
|
1929
|
+
telnyx/types/portouts/supporting_document_create_params.py,sha256=dBtQ1FGA5DTrldkD564eBQZt-XOgMMYZPaQRfAWQ4X4,627
|
|
1930
|
+
telnyx/types/portouts/supporting_document_create_response.py,sha256=tigici7lnq_zj8BsldeJ7pCZms3CoOZQ8HCjgOlQJok,848
|
|
1931
|
+
telnyx/types/portouts/supporting_document_list_response.py,sha256=mhwtfvJjKurllrcovdukqm6jodHx1_YM1Xv4E8j1sb4,844
|
|
1932
|
+
telnyx/types/queues/__init__.py,sha256=-fnsD964Fo007OktCZ62ZnuFphJi2jlASocLvmVEKMw,405
|
|
1933
|
+
telnyx/types/queues/call_list_params.py,sha256=5IwttjkhiI4sWLSxtxAV_6cQ9oxduLo2UAWsMa6-KhY,421
|
|
1934
|
+
telnyx/types/queues/call_list_response.py,sha256=uUedEX7QCBN4mwUtSrf6v3ZO0Z_Yl7DN3zGR98M_eOI,1525
|
|
1935
|
+
telnyx/types/queues/call_retrieve_response.py,sha256=UEv8MvqhiVJTk3gC6Lxjp3zub6iBR54uZEk7Y6MVrnM,1598
|
|
1936
|
+
telnyx/types/queues/call_update_params.py,sha256=eAt5of9KJNnEdq3k4f6CLjetDmBEJrYDP27mENxat_8,378
|
|
1937
|
+
telnyx/types/recordings/__init__.py,sha256=VqH0wJRWVFrnA6rgjI3ufNPQS_7Q_SliOtpyPTOelv0,198
|
|
1938
|
+
telnyx/types/recordings/action_delete_params.py,sha256=VY-yscM6ywcIXJ3XfVFa25b0l2MBmDceTiE4YmVZ7TI,384
|
|
1939
|
+
telnyx/types/reports/__init__.py,sha256=re0kpvnAIZwKOPCofKqvV9g4hZLnlWPYpZSYTtp7fsI,1255
|
|
1940
|
+
telnyx/types/reports/cdr_usage_report_fetch_sync_params.py,sha256=ADYLC3lC0_k-vulNyxPBxCtdbpupFIOTrjbckXu9cuw,813
|
|
1941
|
+
telnyx/types/reports/cdr_usage_report_fetch_sync_response.py,sha256=227MbWIxADGD64C3mMc3qbSeY-08qTsJUuBoW8wL5uk,1124
|
|
1942
|
+
telnyx/types/reports/mdr_usage_report.py,sha256=FO83_SE63RJA32D7Clzc8f7baNLlZSGpWpJjlLnXfw8,1437
|
|
1943
|
+
telnyx/types/reports/mdr_usage_report_create_params.py,sha256=PCNtkq8fftLjalXvaL8I5_72xoOh-0h_wglFbXF_gVo,662
|
|
1944
|
+
telnyx/types/reports/mdr_usage_report_create_response.py,sha256=F1bTtvhfdDNJENBqxGOGdBAWqchnI9FthVnncmgPAwQ,329
|
|
1945
|
+
telnyx/types/reports/mdr_usage_report_delete_response.py,sha256=ALtBctlQ7Z9x0q2nWLl1XgGKa8J7TMGHIn_25OkKAZQ,329
|
|
1946
|
+
telnyx/types/reports/mdr_usage_report_fetch_sync_params.py,sha256=-vJYfIW1sscvLdN9OXJPtqFBvribswMqz5TBHQ7Uzgo,701
|
|
1947
|
+
telnyx/types/reports/mdr_usage_report_fetch_sync_response.py,sha256=BGS6Nlv3UlAs18XNyxmkRo7uqA663LCNfKN5cxG2-KI,335
|
|
1948
|
+
telnyx/types/reports/mdr_usage_report_list_params.py,sha256=LpdTCYc-ixPUhlT_WnS5vfPP--w2XYLbWJrL26-DlsU,441
|
|
1949
|
+
telnyx/types/reports/mdr_usage_report_retrieve_response.py,sha256=dZwf4DZI0w7voOtSXV8MA73Xu-CN49PQQqjSMpLsUok,333
|
|
1950
|
+
telnyx/types/reports/pagination_meta_reporting.py,sha256=kHA331VyXJGk1b7PRzsJcemISlHpySwmboo2SdTTBMg,353
|
|
1951
|
+
telnyx/types/rooms/__init__.py,sha256=BBnx19kYyFsDvZpy3X7AskaMwIKKtjLYdfXrpSL1nKc,1084
|
|
1952
|
+
telnyx/types/rooms/action_generate_join_client_token_params.py,sha256=doGR8gnOb4Eixm-au280XDAhvQxq7oW-jh5tk__QwjU,653
|
|
1953
|
+
telnyx/types/rooms/action_generate_join_client_token_response.py,sha256=Nb9l0UXiCMdSw2UblVl9bVjZkAVxlp93EfQcKCIBP1w,648
|
|
1954
|
+
telnyx/types/rooms/action_refresh_client_token_params.py,sha256=43YHBJltGtnEwa99yIcvCAzyi0r1cqSAVQjt139Ww6k,492
|
|
1955
|
+
telnyx/types/rooms/action_refresh_client_token_response.py,sha256=W_i_MfCWJxGXp0GCOMH0odyO_1jpyj9kiQFvX_ZEi7w,479
|
|
1956
|
+
telnyx/types/rooms/session_list_0_params.py,sha256=m8Rgdsu4pRqkipbNT7rePQuaviSUL5I0-llv4ZuWP9E,3246
|
|
1957
|
+
telnyx/types/rooms/session_list_1_params.py,sha256=X6npJ0dFrkBa3h8VrZ1ExT8VpfyJv8DxfjoHw4ww5IE,3147
|
|
1958
|
+
telnyx/types/rooms/session_retrieve_params.py,sha256=xXVXjR4gKhPP51FC1lPIZzgNHy9-K-x4fR6SYqjWr1w,363
|
|
1959
|
+
telnyx/types/rooms/session_retrieve_participants_params.py,sha256=4zzXTy6a7xjN9BrD_jIHC-GPiaMCLMf31US7rqiUhkI,3163
|
|
1960
|
+
telnyx/types/rooms/session_retrieve_response.py,sha256=TYRoLk_pVhHfsw12Ih4sh1hN0_ElOOP_kAtqGQQjz1U,310
|
|
1961
|
+
telnyx/types/rooms/sessions/__init__.py,sha256=gRGDmydoGVXKu4fc9X7-nVBq4Qalg-xz99mUP0fyz5Y,639
|
|
1962
|
+
telnyx/types/rooms/sessions/action_end_response.py,sha256=HyWTbaa-53ghSBNYmWTCqsYeXl3pldh3Xhs3y-yy6kw,319
|
|
1963
|
+
telnyx/types/rooms/sessions/action_kick_params.py,sha256=bIQ6qN11PTDRd8GnIYrWXI36Svp1FyrR22vO7dDLKdg,619
|
|
1964
|
+
telnyx/types/rooms/sessions/action_kick_response.py,sha256=pKzWWzU8DpohL4a6sXRN7tWm5e2JpjUl2VT4hNeHYfI,321
|
|
1965
|
+
telnyx/types/rooms/sessions/action_mute_params.py,sha256=9AZlHD7j-CqVbiqMzICWAR_N9VB9KDiFl-aTE2gNTww,619
|
|
1966
|
+
telnyx/types/rooms/sessions/action_mute_response.py,sha256=p_LSOgywJ9isRWIBUbgPbrw9ApwkjFo0AN2V7AAxXHg,321
|
|
1967
|
+
telnyx/types/rooms/sessions/action_unmute_params.py,sha256=8chvRGfHZpJ56QwPqsIulHle5WK7P2IZaC_HzUiOPY8,623
|
|
1968
|
+
telnyx/types/rooms/sessions/action_unmute_response.py,sha256=x_8LTDbXFuMwTkKwmWWsWDNrGTwdbDWsXWNhCcxPuNo,325
|
|
1969
|
+
telnyx/types/shared/__init__.py,sha256=o6XpxCrp4uKupq9cDVvG45F3dgZ1Bkuixk5DA9EsRYk,1645
|
|
1970
|
+
telnyx/types/shared/api_error.py,sha256=h1-e_1rwuy2L3gfqXZwMn5AfSQ7JuKGGbI7qZBaMSk0,581
|
|
1971
|
+
telnyx/types/shared/available_phone_numbers_metadata.py,sha256=gkTGe91JQaxF09jq1o6q50h0_a5Ifh3fI1kIwEhyowI,331
|
|
1972
|
+
telnyx/types/shared/connections_pagination_meta.py,sha256=0VYymtChPxWyDNHuJS_fPdG3WvTFUpu_1lBOoINM1V8,357
|
|
1973
|
+
telnyx/types/shared/doc_reqs_requirement_type.py,sha256=xqbJWdUxeDib28Fn1L7RrBpbBdzpea4rYAV99Akh80Q,1920
|
|
1974
|
+
telnyx/types/shared/hosted_number.py,sha256=eX8vQvhBv18c3kjixEV2XNKq7cKPfYEMqhWBm2fLHWw,915
|
|
1975
|
+
telnyx/types/shared/inbound_message_payload.py,sha256=JzGex2OUInNHWyGi_t9H1VeHyjsAuUR_RkL1bL1Rlwk,5907
|
|
1976
|
+
telnyx/types/shared/messaging_feature_set.py,sha256=e8itV8TjTxstdQZcAZUcqFATQiHCNf9kxN6oBUUK4ak,708
|
|
1977
|
+
telnyx/types/shared/messaging_hosted_number_order.py,sha256=5if3osK-8DoVoFq_cxxqtRWU5Jr26Wz9Y-YNBkQ8Lv8,1140
|
|
1978
|
+
telnyx/types/shared/messaging_pagination_meta.py,sha256=U9nHPamyf0bBbYqeTP72tQO1N_Kf56yYeyZxPBNJ634,290
|
|
1979
|
+
telnyx/types/shared/metadata.py,sha256=-xDJjm1x1jhA3v4sQ6iGn_5gJPRUXxLLz8O4V5iEq9c,630
|
|
1980
|
+
telnyx/types/shared/number_health_metrics.py,sha256=8s4cOCcbkkuwE7-dXIoDMbXjvyiyp1AHOsmCtlmaaxk,719
|
|
1981
|
+
telnyx/types/shared/phone_number_with_messaging_settings.py,sha256=-M7HZiHdcpDWwzbVgzhc015JPjO_dmCZD_oamvQuKzU,2428
|
|
1982
|
+
telnyx/types/shared/porting_order_status.py,sha256=cW_fBcpKvkKFF87U1V_8CtthGYSaQG8PmugDd1Dal_4,823
|
|
1983
|
+
telnyx/types/shared/porting_orders_exception_type.py,sha256=xr2cnU_xZjPPylOQQL6eN_oZX0wyPf84liMhocknzlE,1181
|
|
1984
|
+
telnyx/types/shared/room_participant.py,sha256=nmrO3YMZCIB2Rc5u8nAdNnIX7xWBmakr4OAWV_85bEA,909
|
|
1985
|
+
telnyx/types/shared/short_code.py,sha256=gPn8sMpsHfi-yXZF09fPxrAemP47RiIYYknFkeJUSQU,1009
|
|
1986
|
+
telnyx/types/shared/sim_card_status.py,sha256=XLSUX-M8kG643YOTwXkTGbWUwe5HRkEAxaguBajo014,1436
|
|
1987
|
+
telnyx/types/shared/simple_sim_card.py,sha256=k8A4H-G6Z93ZKhhdXTdBkBNFJN7cj_lXZTWKnZc9Hiw,3724
|
|
1988
|
+
telnyx/types/shared/sub_number_order_regulatory_requirement_with_value.py,sha256=iEo0O4dFFovZJtvOjGOB2YLJfZ6o-jh3jE7uAGhIZr4,665
|
|
1989
|
+
telnyx/types/shared_params/__init__.py,sha256=VKGipl4SSoarenbMifwUglI4K7Orej5mnjIe21W2DK4,147
|
|
1990
|
+
telnyx/types/shared_params/sim_card_status.py,sha256=hDAOd5xAkl102wrndG1eKNdREdWTKPocJvZD4OuJQLo,248
|
|
1991
|
+
telnyx/types/sim_card_groups/__init__.py,sha256=rgkmB7Zmu1wOcYyv2HmArySszcLKQHG6J5iFJmeda70,1204
|
|
1992
|
+
telnyx/types/sim_card_groups/action_list_params.py,sha256=eoFFNIZEUF0oPfOXKL-JjujevD-1Gs5AQCYzKIg743c,1125
|
|
1993
|
+
telnyx/types/sim_card_groups/action_remove_private_wireless_gateway_response.py,sha256=vWZzb4TDKBZ7hITNvLb-JmbolMezmJnVAGk8crYKGrs,556
|
|
1994
|
+
telnyx/types/sim_card_groups/action_remove_wireless_blocklist_response.py,sha256=dRn6Jmyj9WyOklh_rijjWCQTEDeI3NlbyHIuXxTm9Pw,546
|
|
1995
|
+
telnyx/types/sim_card_groups/action_retrieve_response.py,sha256=E60lW52UCgvGzYLle84ZIDnbO81n1OyqFyT_RSrVL9A,516
|
|
1996
|
+
telnyx/types/sim_card_groups/action_set_private_wireless_gateway_params.py,sha256=zJ9D4unxfXF15TdChhnRJFmrrls2n3E4lHQA0tXrLN0,423
|
|
1997
|
+
telnyx/types/sim_card_groups/action_set_private_wireless_gateway_response.py,sha256=WPFGVBGPqMaiWWmaQdzdSzyxh1oGIefvmY3lX0TvQxc,550
|
|
1998
|
+
telnyx/types/sim_card_groups/action_set_wireless_blocklist_params.py,sha256=6NsbfesSWnkYx0EbQ0b2_tw-_4PHVuch5EamGD2N82o,401
|
|
1999
|
+
telnyx/types/sim_card_groups/action_set_wireless_blocklist_response.py,sha256=I1X5i7HLZDl9QmzE50waE76gFs1o_OIykAMmyRRk6Dc,540
|
|
2000
|
+
telnyx/types/sim_card_groups/sim_card_group_action.py,sha256=mXGtmEpogBRSbHIC0ipgLdOSvUSjySu9M40aVkpOoi8,1577
|
|
2001
|
+
telnyx/types/sim_cards/__init__.py,sha256=Aag9k6O13hQRwl3jT3_luKlysCvA9GSlpU7FRFF-7MY,1409
|
|
2002
|
+
telnyx/types/sim_cards/action_bulk_set_public_ips_params.py,sha256=HitNZ55poUzhvUb4IAUnxAbLBftONoz6367okRO6GqM,365
|
|
2003
|
+
telnyx/types/sim_cards/action_bulk_set_public_ips_response.py,sha256=9fZpf9FfejHaWA7WKuKSBo-fWwAqCRTwRl0p0O2yNeg,1410
|
|
2004
|
+
telnyx/types/sim_cards/action_disable_response.py,sha256=-RBgx66OI5-gTOLEJirSEM3Ez91HU7Q10Os_9IFAM2Q,455
|
|
2005
|
+
telnyx/types/sim_cards/action_enable_response.py,sha256=jT6tTv5LICc8vt_4dRd6HN5SDPf10OxotigcEctLAOk,453
|
|
2006
|
+
telnyx/types/sim_cards/action_list_params.py,sha256=wiUHzXEbiHqIFkEVjE7EbetrzTHfDDtQXDcij1xC1rs,1327
|
|
2007
|
+
telnyx/types/sim_cards/action_remove_public_ip_response.py,sha256=t_zzhKrYvqMYFm09wdIH64SZ7TJM3jVvLuqnifj2ru4,469
|
|
2008
|
+
telnyx/types/sim_cards/action_retrieve_response.py,sha256=v83QJUtdDUqzagkuM-KaZ6ZENE_DYS_hx62U_RwZyUc,457
|
|
2009
|
+
telnyx/types/sim_cards/action_set_public_ip_params.py,sha256=tXt8FVOIGSNi0Qh-ZKZ3rMUsgnv1CkpejMaQRSvP-KE,428
|
|
2010
|
+
telnyx/types/sim_cards/action_set_public_ip_response.py,sha256=hDt0ImCL2lWxStqN0BvrNY3CT24Y7mf_G8KktyxMctg,463
|
|
2011
|
+
telnyx/types/sim_cards/action_set_standby_response.py,sha256=rL8T8BuffYWqJlp3OyEXuHgyrxyx7cmMOzNav4QFDmM,461
|
|
2012
|
+
telnyx/types/sim_cards/action_validate_registration_codes_params.py,sha256=Jwb1ykfbVwcuIOs61WOGvTAfxZLDOzjR3wvVajfdWwU,369
|
|
2013
|
+
telnyx/types/sim_cards/action_validate_registration_codes_response.py,sha256=UpBtEM78R2lXhvam2ROfypH64VdLWdeolkPqBgWM2w4,653
|
|
2014
|
+
telnyx/types/sim_cards/sim_card_action.py,sha256=tJ0vaBtNirELg2YhpfAwGIbk25DpJrpz6g1tG2jM1DY,2149
|
|
2015
|
+
telnyx/types/storage/__init__.py,sha256=w1SKDPQWDjAO0Un8wRsHt-Ii6SmqciBZgdmMz31j0JY,1397
|
|
2016
|
+
telnyx/types/storage/bucket_create_presigned_url_params.py,sha256=V9vnxw7EUxyAylMl-gDRgq3fB4JYLhPLLMEZ5QP3Rr0,471
|
|
2017
|
+
telnyx/types/storage/bucket_create_presigned_url_response.py,sha256=re95uEOTe8MstoinrelpFIZMiMXcf6HLOt4SPshl2Og,594
|
|
2018
|
+
telnyx/types/storage/migration_create_params.py,sha256=dLx6EO4VPpguqJrFuw_p_xjDqwvloRwqLPCV_RblGKo,752
|
|
2019
|
+
telnyx/types/storage/migration_create_response.py,sha256=GVMuo06QhW7vOFsyUWHHyBXzyg3IMjFikK4cTesX3hk,321
|
|
2020
|
+
telnyx/types/storage/migration_list_response.py,sha256=m2jzjmr_LHE2fcEP624-GhHUfmeqpKP5JGyGn-_f65I,443
|
|
2021
|
+
telnyx/types/storage/migration_params.py,sha256=mSaZSx7_zu-LqdA5GWh0Ah1BWduC92vXLl-aHVPIUVs,1565
|
|
2022
|
+
telnyx/types/storage/migration_retrieve_response.py,sha256=H1i22wAV3gSR0xOn5WtkYK7H1kheln4EJOf4HOZFw4s,325
|
|
2023
|
+
telnyx/types/storage/migration_source_create_params.py,sha256=55dNcRRc9Z2tCVZsYd231JZJ76EP0hYBJoXxyOBK82c,1042
|
|
2024
|
+
telnyx/types/storage/migration_source_create_response.py,sha256=wH3fVKs50Nbw2ngyQfIFTszrhe6EwhfGLH2SY5ozSzo,352
|
|
2025
|
+
telnyx/types/storage/migration_source_delete_response.py,sha256=_71HV_BtjYW5MF6cF7iLVV2MgXKbQA0YdT1BAW6ss2w,352
|
|
2026
|
+
telnyx/types/storage/migration_source_list_response.py,sha256=C3uXRDrxvLQbnzkh-oUg2roPs0tuSlBnD3eRQGEXEG4,474
|
|
2027
|
+
telnyx/types/storage/migration_source_params.py,sha256=IosTjeSz9usEG_3MfMi9-CkcVGccmayKsnxMxJ10iwQ,1119
|
|
2028
|
+
telnyx/types/storage/migration_source_retrieve_response.py,sha256=CuefyYc5dFjHaKgS2KfooR8avDW7oLWr6TI2KooGYDI,356
|
|
2029
|
+
telnyx/types/storage/buckets/__init__.py,sha256=MQ7SZnQZHIRsjn_Ps36KkTyZnJkIGjqtY5M2hWE8YfQ,978
|
|
2030
|
+
telnyx/types/storage/buckets/pagination_meta_simple.py,sha256=6q9Lyb7hI7F0WVUcUAPjhJocBq40-WZkFx_Zwm0KAtg,348
|
|
2031
|
+
telnyx/types/storage/buckets/ssl_certificate.py,sha256=i3BvTdHdLTwnZ9JCd5kKBgnKdcJ8h8wTmbeeG1ATjFg,1392
|
|
2032
|
+
telnyx/types/storage/buckets/ssl_certificate_create_params.py,sha256=ptVyOvt6yfVkr-FYrrUcDujcI3njKMRzFZU22TGEEmI,420
|
|
2033
|
+
telnyx/types/storage/buckets/ssl_certificate_create_response.py,sha256=fUHneJ2_E-UqYv7KQ2-Cquv_uVK-pUc69s6iF5waJ1U,329
|
|
2034
|
+
telnyx/types/storage/buckets/ssl_certificate_delete_response.py,sha256=ZaLsybuMyHreZySZ-x7sE5OgPu1zPCLbBiztvqxL888,329
|
|
2035
|
+
telnyx/types/storage/buckets/ssl_certificate_retrieve_response.py,sha256=KlMkr9WozOwa6EHA9deq1t2Ug7bkG8m-K1KJX5MBz_0,333
|
|
2036
|
+
telnyx/types/storage/buckets/usage_get_api_usage_params.py,sha256=T2ostHG7hoYfHSyrAukfCM9_nCueaCtjBqjNFuXz8QU,1033
|
|
2037
|
+
telnyx/types/storage/buckets/usage_get_api_usage_response.py,sha256=SfPvoWa_b2FxJkmYQb0i5X6SqaHZpgdj9Op64bRm2As,1665
|
|
2038
|
+
telnyx/types/storage/buckets/usage_get_bucket_usage_response.py,sha256=4Yu_ZvghbHxKV4UrNJC8ka4l-0_FuD05QHPEm8XrLbU,777
|
|
2039
|
+
telnyx/types/storage/migrations/__init__.py,sha256=tLBn8B5kHglM79HNqM3OKp1hK10IqeUzkGPfnOsvjmE,198
|
|
2040
|
+
telnyx/types/storage/migrations/action_stop_response.py,sha256=fy-vfnr6GsBQ2bh7sGlQLEKLOZC53tNMk8qNk-7sZrI,313
|
|
2041
|
+
telnyx/types/texml/__init__.py,sha256=pgDuYIN61-6SlCBWZDg-WPMIfQ6oEOSZk2tISHAjK8w,1251
|
|
2042
|
+
telnyx/types/texml/account_retrieve_recordings_json_params.py,sha256=TXZrrWw6NCsdDzroUCqA_YwCdyJXPg85asmwYDmbNto,1023
|
|
2043
|
+
telnyx/types/texml/account_retrieve_recordings_json_response.py,sha256=e_95pmxvvjTr6KyVnwLNpjTk1uZpPS8bDCd_iLhkVxM,1168
|
|
2044
|
+
telnyx/types/texml/account_retrieve_transcriptions_json_params.py,sha256=rtnyL6rKanil2yqndrCs1gXT_Blc1AsnzrtkPTL4lIo,575
|
|
2045
|
+
telnyx/types/texml/account_retrieve_transcriptions_json_response.py,sha256=9_T3tu4ie04FdXWHvY7ECE_VQr7960Q1Mc9SGE1XPzA,2098
|
|
2046
|
+
telnyx/types/texml/call_initiate_params.py,sha256=FGg0w5IztnC5kFaAOh5wpQ7pPoesxJ3I7HPXelg7YEU,6922
|
|
2047
|
+
telnyx/types/texml/call_initiate_response.py,sha256=eEECfW-ONB3kjOggFB8I_SpLFLzS4ipMCvm71MigIrM,461
|
|
2048
|
+
telnyx/types/texml/call_update_params.py,sha256=RT1cf5iwOcmXbgtyrRlji6DGspHNmBt3MOOh3yyhUhg,1540
|
|
2049
|
+
telnyx/types/texml/call_update_response.py,sha256=AGkaot7GE6ZCW04zkZGSZErHNYGq1HuLhzL_b2ZU1ZQ,351
|
|
2050
|
+
telnyx/types/texml/texml_get_call_recording_response_body.py,sha256=KoY6eG7_TI_4qyezqH9Y6MqKDc7mdIx4_HNwDcbI7uk,1557
|
|
2051
|
+
telnyx/types/texml/texml_recording_subresources_uris.py,sha256=RDkC7dsC5LVOymC8nyvo-qwltQnMpZ3y4T7QMTS2oVg,349
|
|
2052
|
+
telnyx/types/texml/accounts/__init__.py,sha256=vJbgMj5_a8L5nvMdhcPMuPFyo3Boi36VKP0rjU5e1bo,2390
|
|
2053
|
+
telnyx/types/texml/accounts/call_calls_params.py,sha256=AqCo_cAtNPbnDvKI1dq_Hj7w-uJ-zwr1REDTPBDO6hU,8476
|
|
2054
|
+
telnyx/types/texml/accounts/call_calls_response.py,sha256=o_XmUxY5SFrNPvLoVRuuZm0m23pFJBscM1m6KUOsWXo,391
|
|
2055
|
+
telnyx/types/texml/accounts/call_retrieve_calls_params.py,sha256=lXADuV3aNL1y5Nx__TIm2_Gnl3lky3R4P8psnCRaIaM,1955
|
|
2056
|
+
telnyx/types/texml/accounts/call_retrieve_calls_response.py,sha256=zfhAdQPOWnlT1cyCTLyc4RGf7yAsEnuUOi_bv79S0uw,3034
|
|
2057
|
+
telnyx/types/texml/accounts/call_retrieve_response.py,sha256=F1RtkfOgZDOQHhheVM8MiqU0_AGhtBA_40vjuIqRcSY,2197
|
|
2058
|
+
telnyx/types/texml/accounts/call_siprec_json_params.py,sha256=tIpmy_29V93cT6J2x2jdSrha9_OmrCDDyTXXGW1cXso,2199
|
|
2059
|
+
telnyx/types/texml/accounts/call_siprec_json_response.py,sha256=RM-M0m-s0AFZZGIBogz9W3O1_QxPWwPeT28Hw88Waos,1231
|
|
2060
|
+
telnyx/types/texml/accounts/call_streams_json_params.py,sha256=MNM1Ybjm-PiRx04EE2JugBR0JwfD6d_e_ytaJ2FETLA,1450
|
|
2061
|
+
telnyx/types/texml/accounts/call_streams_json_response.py,sha256=mkjM-tcI-zrgLQnOjtFxjzoJu2Syz8TBcalrgGhq2io,743
|
|
2062
|
+
telnyx/types/texml/accounts/call_update_params.py,sha256=Yj71vXAJ8_eqBRViz4W3O1nD-NijwizkDc3JhslXA3I,1583
|
|
2063
|
+
telnyx/types/texml/accounts/call_update_response.py,sha256=Qp71H8IHL4qQHM7-SG9jPDR4u6_dhnAey8z7HQ4kb6s,2193
|
|
2064
|
+
telnyx/types/texml/accounts/conference_retrieve_conferences_params.py,sha256=COJ4mdRowyNBT4FB8Rw6lu-NsoAD5N_RHjwM0PuSKys,1494
|
|
2065
|
+
telnyx/types/texml/accounts/conference_retrieve_conferences_response.py,sha256=VlGogFRi2mXA9V8VCX51OHMoyWZQ_5yH2KJr-jF5IPE,2635
|
|
2066
|
+
telnyx/types/texml/accounts/conference_retrieve_recordings_json_response.py,sha256=vn3ILlKF_AS7mWEGuFVAxqUYvSfGr8ZvzBJTgsnQLEE,1176
|
|
2067
|
+
telnyx/types/texml/accounts/conference_retrieve_recordings_response.py,sha256=3sLpDPQwwHrTwTZkWrH9-x42Mlq1W2ot2sqQ0LWgAo4,2904
|
|
2068
|
+
telnyx/types/texml/accounts/conference_retrieve_response.py,sha256=anzj4u5TEM93g6aaTeJhNqGARJjpKLrL-_pEVbl4eAo,1750
|
|
2069
|
+
telnyx/types/texml/accounts/conference_update_params.py,sha256=m8jfH6Y9FfV11A181UE4D5fMPV8D8R5m5-x_ybv3BjI,1004
|
|
2070
|
+
telnyx/types/texml/accounts/conference_update_response.py,sha256=YX7oS6FUqTKMPPemdtGmL-R2lWK4Ys5Rxh4X6EEJLpc,1746
|
|
2071
|
+
telnyx/types/texml/accounts/queue_create_params.py,sha256=ofMEp5a86SeSpVYRizQ3-plpl9oLEfFXEeSRfZzUeEQ,514
|
|
2072
|
+
telnyx/types/texml/accounts/queue_create_response.py,sha256=m7Uh6qnH0ZjnPiCxixCoi19FqMrwDh1oTMCBWQVl2J0,1094
|
|
2073
|
+
telnyx/types/texml/accounts/queue_list_params.py,sha256=xi5inlI-1S0ip4hvBFp_HMnw4-E93JYmTygX8a-NJyI,1181
|
|
2074
|
+
telnyx/types/texml/accounts/queue_list_response.py,sha256=cNoLgOQW56XTJF739ni7k3CgI_S5kOe6jbVxTILDXrY,1090
|
|
2075
|
+
telnyx/types/texml/accounts/queue_retrieve_response.py,sha256=BUqe3wghBTwO3-mvTSO0DsH4zzQOzHDQ7C7hc8he6qY,1098
|
|
2076
|
+
telnyx/types/texml/accounts/queue_update_params.py,sha256=Q5mwXrWkELRDbLHucPJc8uGB2FaJml5GweIV5jU7OxM,438
|
|
2077
|
+
telnyx/types/texml/accounts/queue_update_response.py,sha256=-SmUdiIDbiu_ZYTL7R4J6p7vA6dnLdoXVAx2vEQDrv4,1094
|
|
2078
|
+
telnyx/types/texml/accounts/calls/__init__.py,sha256=hADdyHV9beKUJAXeplzntAwB3AzouhR3Zy7rLBRTQhQ,1231
|
|
2079
|
+
telnyx/types/texml/accounts/calls/recording_recording_sid_json_params.py,sha256=xa45n_nW5QMLDrT0BfvqWVcRJ9U11C8ghbJZ060UEqY,501
|
|
2080
|
+
telnyx/types/texml/accounts/calls/recording_recording_sid_json_response.py,sha256=00NXJXOdaCDlp-v5YTSmrX4TIjAeeuf1tzmGKtiKMSk,1574
|
|
2081
|
+
telnyx/types/texml/accounts/calls/recordings_json_recordings_json_params.py,sha256=S2Zj5eXl49Qf_o56vkcQO0ucvRCZ3mbRkYyzzsflWKQ,1765
|
|
2082
|
+
telnyx/types/texml/accounts/calls/recordings_json_recordings_json_response.py,sha256=zOQd5eeFCjXVX3I1DSDI3E6DwohOXoV1l5yxsBKkmRQ,1580
|
|
2083
|
+
telnyx/types/texml/accounts/calls/recordings_json_retrieve_recordings_json_response.py,sha256=szOICmytRavNX7m-QqQKkez06HdgAgLEy4L-SbL-_pw,1186
|
|
2084
|
+
telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_params.py,sha256=IAsUZJgaqEXH3jvzsIZpbwy90SvAWl_4KCsyqHom5Jk,566
|
|
2085
|
+
telnyx/types/texml/accounts/calls/siprec_siprec_sid_json_response.py,sha256=ME65hRFskaHigWdKe7kiCCC5v6EQuH7GkbGBrLjddUw,908
|
|
2086
|
+
telnyx/types/texml/accounts/calls/stream_streaming_sid_json_params.py,sha256=FfNQo4SK-2LEpiJTS_ZVWX5zmNZ5_lH7pPy6Ac9OsdY,525
|
|
2087
|
+
telnyx/types/texml/accounts/calls/stream_streaming_sid_json_response.py,sha256=XWAhiQHqIbt1tR2KESOImB2eYCBgtzyf6tiN1Z7nTac,677
|
|
2088
|
+
telnyx/types/texml/accounts/conferences/__init__.py,sha256=Bg0dRzgpbuEHe1SZVFyQ1rrJ131Ztghzr35Ab5calm0,781
|
|
2089
|
+
telnyx/types/texml/accounts/conferences/participant_participants_params.py,sha256=-Kalin75Ce0O1jBhLNxRCKsm0UCFajuGSDxXpE3m0gA,11065
|
|
2090
|
+
telnyx/types/texml/accounts/conferences/participant_participants_response.py,sha256=RT67NwpP6mUMZcS2xnar8qqrtmPY3nOJgv-qF8F4IRY,1173
|
|
2091
|
+
telnyx/types/texml/accounts/conferences/participant_retrieve_participants_response.py,sha256=dCofb3Tsl1QGbUBGkLgVBnbg4qBbLK9fTuLK3eSOA-Y,2673
|
|
2092
|
+
telnyx/types/texml/accounts/conferences/participant_retrieve_response.py,sha256=GXZKPUAz4Qri8sYTQGnsLC61AsJ__gBsRwCdP02GH-k,1681
|
|
2093
|
+
telnyx/types/texml/accounts/conferences/participant_update_params.py,sha256=YQA990N9VLOJMDKWRClclUrnAkCl1cEOgSly1MkSDb4,2479
|
|
2094
|
+
telnyx/types/texml/accounts/conferences/participant_update_response.py,sha256=NNxsttT3VVUhqaazCgCyyhwMjfACmM1db7bz4AOzRJQ,1677
|
|
2095
|
+
telnyx/types/texml/accounts/recordings/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
2096
|
+
telnyx/types/texml/accounts/transcriptions/__init__.py,sha256=wJIYpmO_s3VtBxFWO0oUJg3SJ45JoaHKkjWfgkO4krk,304
|
|
2097
|
+
telnyx/types/texml/accounts/transcriptions/json_retrieve_recording_transcription_sid_json_response.py,sha256=kcWmaETp4bQlG40IwTRm6NzpuD_FPvPxtCCqd17kftQ,1260
|
|
2098
|
+
telnyx/types/verifications/__init__.py,sha256=Mjdff_F7tGucxsHwcIa9Jghmu2-BYpNVS9UTabuqaUM,346
|
|
2099
|
+
telnyx/types/verifications/action_verify_params.py,sha256=sD5uyHHRgz5wHmlIzujMibOWoaiXwfz7hSWDiYrrxhQ,527
|
|
2100
|
+
telnyx/types/verifications/by_phone_number_list_response.py,sha256=iHOnfxFNGDjNr4ZvdUgViqcTH5ayZ4PlyclJK_wtP1s,359
|
|
2101
|
+
telnyx/types/verifications/verify_meta.py,sha256=84iDj7jzUSud7DAtYyhPvu2aCevZy_csB7-Xlm7oVoY,264
|
|
2102
|
+
telnyx/types/verifications/by_phone_number/__init__.py,sha256=199aK3I-4qIxJ83Pgd08dHl68M0DWmUOU8JfCDCrhxI,310
|
|
2103
|
+
telnyx/types/verifications/by_phone_number/action_verify_params.py,sha256=aoaX6B3kkW6-9v6MJPcalXWTckR7NmrhTty0TeJPQ2g,442
|
|
2104
|
+
telnyx/types/verifications/by_phone_number/verify_verification_code_response.py,sha256=bVtf0KjwYjZLNvWTnBcBmAfEdh0EYsCX0L4AVzjbXTg,496
|
|
2105
|
+
telnyx/types/verified_numbers/__init__.py,sha256=RhHTIchxprQULl-gCrUFdWfrCa3e17Z6cyzJxtk5RxQ,257
|
|
2106
|
+
telnyx/types/verified_numbers/action_submit_verification_code_params.py,sha256=Hnd_RwIyU261OAMC9Tpf0_yAnxzQwE2dGNwn6CS-TNk,328
|
|
2107
|
+
telnyx/types/wireless/__init__.py,sha256=lkEHnID1izlqCgDWHfVNyAeYJBhivh3CkjZMsY_2lmA,911
|
|
2108
|
+
telnyx/types/wireless/detail_records_report_create_params.py,sha256=Is_MrEKjfDb3PZcI3_3uAXIvSyPHNwfms0yOgQlVmyA,444
|
|
2109
|
+
telnyx/types/wireless/detail_records_report_create_response.py,sha256=GQDXWz-6iYTZKBphZhH1Tx8J5VS7_0Xw6iv8VYZellc,323
|
|
2110
|
+
telnyx/types/wireless/detail_records_report_delete_response.py,sha256=NIw2VVvtx1qM03LRKnwCePkZtBeBAYjN5kR2xCYHLx4,323
|
|
2111
|
+
telnyx/types/wireless/detail_records_report_list_params.py,sha256=cfjsh4L_8mpDkg1olXhRH3HquwenRG9KDImaZoEruKY,518
|
|
2112
|
+
telnyx/types/wireless/detail_records_report_list_response.py,sha256=S_6nD0fm5EseRIZHnML-UN0-g8Q_0J1cXfg_eLNUev8,331
|
|
2113
|
+
telnyx/types/wireless/detail_records_report_retrieve_response.py,sha256=f0C8z8uo_QeCyi3nSDME4f4F3vqcy7o0MpinwDIqe_s,327
|
|
2114
|
+
telnyx/types/wireless/wdr_report.py,sha256=bxRr-dc_IW6D0E3i_PUHK-bbu9w114Qql1uoJ_znxEE,1068
|
|
2115
|
+
telnyx-4.5.0.dist-info/METADATA,sha256=WbnBngG0Ndlmq5UEYHZdAa_GpCP-RCbNqLLgFUFQI1o,19419
|
|
2116
|
+
telnyx-4.5.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
2117
|
+
telnyx-4.5.0.dist-info/licenses/LICENSE,sha256=X4csDImCsP5QuTAFaVGdZCQJyZdjhDWmUOheZnZ-Fx8,1046
|
|
2118
|
+
telnyx-4.5.0.dist-info/RECORD,,
|