telnyx 3.2.0a0__py3-none-any.whl → 3.4.0a0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of telnyx might be problematic. Click here for more details.
- telnyx/_base_client.py +3 -3
- telnyx/_client.py +5 -0
- telnyx/_compat.py +48 -48
- telnyx/_models.py +40 -40
- telnyx/_types.py +35 -1
- telnyx/_utils/__init__.py +9 -2
- telnyx/_utils/_compat.py +45 -0
- telnyx/_utils/_datetime_parse.py +136 -0
- telnyx/_utils/_transform.py +11 -1
- telnyx/_utils/_typing.py +6 -1
- telnyx/_utils/_utils.py +0 -1
- telnyx/_version.py +1 -1
- telnyx/resources/__init__.py +3 -0
- telnyx/resources/actions/purchase.py +3 -4
- telnyx/resources/actions/register.py +5 -6
- telnyx/resources/ai/chat.py +4 -4
- telnyx/resources/ai/clusters.py +3 -5
- telnyx/resources/ai/conversations/messages.py +4 -4
- telnyx/resources/ai/embeddings/embeddings.py +3 -4
- telnyx/resources/call_control_applications.py +4 -4
- telnyx/resources/calls/calls.py +4 -4
- telnyx/resources/campaign_builder/campaign_builder.py +6 -6
- telnyx/resources/conferences/actions.py +19 -20
- telnyx/resources/credential_connections/credential_connections.py +6 -6
- telnyx/resources/customer_service_records.py +3 -5
- telnyx/resources/detail_records.py +3 -5
- telnyx/resources/external_connections/external_connections.py +6 -6
- telnyx/resources/external_connections/uploads.py +3 -3
- telnyx/resources/fax_applications.py +6 -6
- telnyx/resources/fqdn_connections.py +6 -6
- telnyx/resources/ip_connections.py +6 -6
- telnyx/resources/messages/messages.py +16 -16
- telnyx/resources/messaging/rcs/rcs.py +3 -5
- telnyx/resources/messaging_hosted_number_orders/messaging_hosted_number_orders.py +8 -8
- telnyx/resources/messaging_numbers_bulk_updates.py +3 -5
- telnyx/resources/messaging_profiles/autoresp_configs.py +5 -6
- telnyx/resources/messaging_profiles/messaging_profiles.py +6 -6
- telnyx/resources/numbers_features.py +3 -5
- telnyx/resources/outbound_voice_profiles.py +10 -10
- telnyx/resources/phone_numbers/actions.py +3 -5
- telnyx/resources/phone_numbers/jobs.py +10 -10
- telnyx/resources/phone_numbers/phone_numbers.py +3 -4
- telnyx/resources/portability_checks.py +3 -5
- telnyx/resources/porting_orders/porting_orders.py +4 -4
- telnyx/resources/porting_orders/verification_codes.py +4 -4
- telnyx/resources/recordings/actions.py +3 -5
- telnyx/resources/reports/mdr_usage_reports.py +4 -4
- telnyx/resources/reports/reports.py +3 -4
- telnyx/resources/rooms/sessions/actions.py +14 -14
- telnyx/resources/sim_cards/actions.py +5 -7
- telnyx/resources/sim_cards/sim_cards.py +5 -6
- telnyx/resources/texml_applications.py +5 -6
- telnyx/resources/usage_reports.py +7 -8
- telnyx/resources/webhooks.py +34 -0
- telnyx/resources/wireless_blocklists.py +5 -6
- telnyx/types/__init__.py +115 -4
- telnyx/types/actions/purchase_create_params.py +3 -2
- telnyx/types/actions/register_create_params.py +4 -3
- telnyx/types/ai/chat_create_completion_params.py +3 -2
- telnyx/types/ai/cluster_compute_params.py +3 -2
- telnyx/types/ai/conversations/message_create_params.py +3 -2
- telnyx/types/ai/embedding_list_params.py +3 -2
- telnyx/types/ai/inference_embedding_bucket_ids_param.py +3 -2
- telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +6 -4
- telnyx/types/bundle_pricing/billing_bundle_list_params.py +4 -3
- telnyx/types/bundle_pricing/user_bundle_list_params.py +4 -3
- telnyx/types/bundle_pricing/user_bundle_list_unused_params.py +4 -3
- telnyx/types/call_ai_gather_ended_webhook_event.py +78 -0
- telnyx/types/call_ai_gather_message_history_updated_webhook_event.py +69 -0
- telnyx/types/call_ai_gather_partial_results_webhook_event.py +75 -0
- telnyx/types/call_answered_webhook_event.py +75 -0
- telnyx/types/call_bridged_webhook_event.py +58 -0
- telnyx/types/call_control_application_update_params.py +3 -2
- telnyx/types/call_conversation_ended_webhook_event.py +84 -0
- telnyx/types/call_conversation_insights_generated_webhook_event.py +67 -0
- telnyx/types/call_dial_params.py +4 -3
- telnyx/types/call_dtmf_received_webhook_event.py +61 -0
- telnyx/types/call_enqueued_webhook_event.py +59 -0
- telnyx/types/call_fork_started_webhook_event.py +53 -0
- telnyx/types/call_fork_stopped_webhook_event.py +53 -0
- telnyx/types/call_gather_ended_webhook_event.py +64 -0
- telnyx/types/call_hangup_webhook_event.py +150 -0
- telnyx/types/call_initiated_webhook_event.py +96 -0
- telnyx/types/call_left_queue_webhook_event.py +62 -0
- telnyx/types/call_machine_detection_ended_webhook_event.py +61 -0
- telnyx/types/call_machine_greeting_ended_webhook_event.py +61 -0
- telnyx/types/call_machine_premium_detection_ended_webhook_event.py +63 -0
- telnyx/types/call_machine_premium_greeting_ended_webhook_event.py +61 -0
- telnyx/types/call_playback_ended_webhook_event.py +70 -0
- telnyx/types/call_playback_started_webhook_event.py +62 -0
- telnyx/types/call_recording_error_webhook_event.py +60 -0
- telnyx/types/call_recording_saved_webhook_event.py +94 -0
- telnyx/types/call_recording_transcription_saved_webhook_event.py +71 -0
- telnyx/types/call_refer_completed_webhook_event.py +61 -0
- telnyx/types/call_refer_failed_webhook_event.py +61 -0
- telnyx/types/call_refer_started_webhook_event.py +61 -0
- telnyx/types/call_siprec_failed_webhook_event.py +53 -0
- telnyx/types/call_siprec_started_webhook_event.py +50 -0
- telnyx/types/call_siprec_stopped_webhook_event.py +53 -0
- telnyx/types/call_speak_ended_webhook_event.py +53 -0
- telnyx/types/call_speak_started_webhook_event.py +50 -0
- telnyx/types/call_streaming_failed_webhook_event.py +70 -0
- telnyx/types/call_streaming_started_webhook_event.py +53 -0
- telnyx/types/call_streaming_stopped_webhook_event.py +53 -0
- telnyx/types/calls/transcription_engine_a_config_param.py +4 -3
- telnyx/types/campaign_builder_create_params.py +4 -3
- telnyx/types/campaign_status_update_webhook_event.py +26 -0
- telnyx/types/conference_created_webhook_event.py +53 -0
- telnyx/types/conference_ended_webhook_event.py +56 -0
- telnyx/types/conference_floor_changed_webhook_event.py +45 -0
- telnyx/types/conference_participant_joined_webhook_event.py +53 -0
- telnyx/types/conference_participant_left_webhook_event.py +53 -0
- telnyx/types/conference_participant_playback_ended_webhook_event.py +65 -0
- telnyx/types/conference_participant_playback_started_webhook_event.py +65 -0
- telnyx/types/conference_participant_speak_ended_webhook_event.py +56 -0
- telnyx/types/conference_participant_speak_started_webhook_event.py +56 -0
- telnyx/types/conference_playback_ended_webhook_event.py +49 -0
- telnyx/types/conference_playback_started_webhook_event.py +49 -0
- telnyx/types/conference_recording_saved_webhook_event.py +103 -0
- telnyx/types/conference_speak_ended_webhook_event.py +40 -0
- telnyx/types/conference_speak_started_webhook_event.py +40 -0
- telnyx/types/conferences/action_hold_params.py +3 -2
- telnyx/types/conferences/action_join_params.py +3 -2
- telnyx/types/conferences/action_mute_params.py +3 -2
- telnyx/types/conferences/action_play_params.py +2 -2
- telnyx/types/conferences/action_speak_params.py +3 -2
- telnyx/types/conferences/action_stop_params.py +3 -2
- telnyx/types/conferences/action_unhold_params.py +3 -2
- telnyx/types/conferences/action_unmute_params.py +3 -2
- telnyx/types/conferences/action_update_params.py +3 -2
- telnyx/types/credential_connection_create_params.py +3 -2
- telnyx/types/credential_connection_update_params.py +3 -2
- telnyx/types/credential_inbound_param.py +3 -2
- telnyx/types/custom_sip_header.py +13 -0
- telnyx/types/customer_service_record_list_params.py +2 -1
- telnyx/types/customer_service_record_status_changed_webhook_event.py +55 -0
- telnyx/types/customer_service_record_verify_phone_number_coverage_params.py +3 -2
- telnyx/types/delivery_update_webhook_event.py +40 -0
- telnyx/types/detail_record_list_params.py +4 -2
- telnyx/types/document_list_params.py +2 -1
- telnyx/types/external_connection_create_params.py +4 -2
- telnyx/types/external_connection_update_params.py +4 -2
- telnyx/types/external_connections/civic_address_list_params.py +3 -2
- telnyx/types/external_connections/upload_create_params.py +3 -1
- telnyx/types/fax_application_create_params.py +3 -2
- telnyx/types/fax_application_update_params.py +3 -2
- telnyx/types/fax_delivered_webhook_event.py +69 -0
- telnyx/types/fax_failed_webhook_event.py +66 -0
- telnyx/types/fax_media_processed_webhook_event.py +63 -0
- telnyx/types/fax_queued_webhook_event.py +63 -0
- telnyx/types/fax_sending_started_webhook_event.py +63 -0
- telnyx/types/fqdn_connection_create_params.py +3 -2
- telnyx/types/fqdn_connection_update_params.py +3 -2
- telnyx/types/inbound_fqdn_param.py +4 -2
- telnyx/types/inbound_ip_param.py +3 -2
- telnyx/types/inbound_message_webhook_event.py +227 -0
- telnyx/types/ip_connection_create_params.py +4 -3
- telnyx/types/ip_connection_update_params.py +3 -2
- telnyx/types/media_list_params.py +3 -2
- telnyx/types/message_schedule_params.py +3 -2
- telnyx/types/message_send_group_mms_params.py +3 -3
- telnyx/types/message_send_long_code_params.py +2 -2
- telnyx/types/message_send_number_pool_params.py +3 -2
- telnyx/types/message_send_params.py +3 -2
- telnyx/types/message_send_short_code_params.py +2 -2
- telnyx/types/messaging/rc_list_bulk_capabilities_params.py +3 -2
- telnyx/types/messaging_hosted_number_order_check_eligibility_params.py +3 -2
- telnyx/types/messaging_hosted_number_order_create_params.py +3 -2
- telnyx/types/messaging_hosted_number_order_create_verification_codes_params.py +3 -2
- telnyx/types/messaging_numbers_bulk_update_create_params.py +3 -2
- telnyx/types/messaging_profile_create_params.py +3 -2
- telnyx/types/messaging_profile_update_params.py +3 -2
- telnyx/types/messaging_profiles/autoresp_config_create_params.py +3 -2
- telnyx/types/messaging_profiles/autoresp_config_update_params.py +3 -2
- telnyx/types/messsage_rcs_params.py +2 -2
- telnyx/types/number_order_status_update_webhook_event.py +12 -0
- telnyx/types/numbers_feature_create_params.py +3 -2
- telnyx/types/outbound_call_recording_param.py +3 -2
- telnyx/types/outbound_voice_profile_create_params.py +4 -3
- telnyx/types/outbound_voice_profile_update_params.py +4 -3
- telnyx/types/phone_number_list_params.py +3 -2
- telnyx/types/phone_number_slim_list_params.py +3 -2
- telnyx/types/phone_number_update_params.py +3 -2
- telnyx/types/phone_numbers/action_verify_ownership_params.py +3 -2
- telnyx/types/phone_numbers/job_delete_batch_params.py +3 -2
- telnyx/types/phone_numbers/job_update_batch_params.py +3 -3
- telnyx/types/phone_numbers/job_update_emergency_settings_batch_params.py +4 -2
- telnyx/types/portability_check_run_params.py +3 -2
- telnyx/types/porting/export_porting_orders_csv_report_param.py +2 -1
- telnyx/types/porting_order_create_params.py +3 -2
- telnyx/types/porting_order_phone_number_configuration_param.py +3 -2
- telnyx/types/porting_orders/action_requirement_list_params.py +3 -2
- telnyx/types/porting_orders/phone_number_block_list_params.py +5 -3
- telnyx/types/porting_orders/phone_number_configuration_list_params.py +3 -2
- telnyx/types/porting_orders/verification_code_send_params.py +3 -2
- telnyx/types/portout_list_params.py +2 -1
- telnyx/types/portouts/export_portouts_csv_report_param.py +3 -2
- telnyx/types/recordings/action_delete_params.py +3 -2
- telnyx/types/replaced_link_click_webhook_event.py +32 -0
- telnyx/types/report_list_wdrs_params.py +3 -2
- telnyx/types/reports/mdr_usage_report_fetch_sync_params.py +3 -2
- telnyx/types/rooms/sessions/action_kick_params.py +5 -3
- telnyx/types/rooms/sessions/action_mute_params.py +5 -3
- telnyx/types/rooms/sessions/action_unmute_params.py +5 -3
- telnyx/types/sim_card_list_params.py +2 -1
- telnyx/types/sim_card_update_params.py +3 -3
- telnyx/types/sim_cards/action_bulk_set_public_ips_params.py +3 -2
- telnyx/types/sim_cards/action_validate_registration_codes_params.py +3 -2
- telnyx/types/sip_header.py +15 -0
- telnyx/types/streaming_failed_webhook_event.py +70 -0
- telnyx/types/streaming_started_webhook_event.py +53 -0
- telnyx/types/streaming_stopped_webhook_event.py +53 -0
- telnyx/types/texml_application_create_params.py +2 -2
- telnyx/types/texml_application_update_params.py +2 -2
- telnyx/types/transcription_webhook_event.py +72 -0
- telnyx/types/unwrap_webhook_event.py +138 -0
- telnyx/types/usage_report_list_params.py +5 -4
- telnyx/types/verify_profile_create_params.py +6 -4
- telnyx/types/verify_profile_update_params.py +6 -4
- telnyx/types/video_region_param.py +4 -2
- telnyx/types/wireless_blocklist_create_params.py +3 -2
- telnyx/types/wireless_blocklist_update_params.py +3 -2
- {telnyx-3.2.0a0.dist-info → telnyx-3.4.0a0.dist-info}/METADATA +1 -1
- {telnyx-3.2.0a0.dist-info → telnyx-3.4.0a0.dist-info}/RECORD +226 -156
- {telnyx-3.2.0a0.dist-info → telnyx-3.4.0a0.dist-info}/WHEEL +0 -0
- {telnyx-3.2.0a0.dist-info → telnyx-3.4.0a0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Union
|
|
4
|
+
from typing_extensions import TypeAlias
|
|
5
|
+
|
|
6
|
+
from .fax_failed_webhook_event import FaxFailedWebhookEvent
|
|
7
|
+
from .fax_queued_webhook_event import FaxQueuedWebhookEvent
|
|
8
|
+
from .call_hangup_webhook_event import CallHangupWebhookEvent
|
|
9
|
+
from .call_bridged_webhook_event import CallBridgedWebhookEvent
|
|
10
|
+
from .call_answered_webhook_event import CallAnsweredWebhookEvent
|
|
11
|
+
from .call_enqueued_webhook_event import CallEnqueuedWebhookEvent
|
|
12
|
+
from .fax_delivered_webhook_event import FaxDeliveredWebhookEvent
|
|
13
|
+
from .transcription_webhook_event import TranscriptionWebhookEvent
|
|
14
|
+
from .call_initiated_webhook_event import CallInitiatedWebhookEvent
|
|
15
|
+
from .call_left_queue_webhook_event import CallLeftQueueWebhookEvent
|
|
16
|
+
from .delivery_update_webhook_event import DeliveryUpdateWebhookEvent
|
|
17
|
+
from .inbound_message_webhook_event import InboundMessageWebhookEvent
|
|
18
|
+
from .call_speak_ended_webhook_event import CallSpeakEndedWebhookEvent
|
|
19
|
+
from .conference_ended_webhook_event import ConferenceEndedWebhookEvent
|
|
20
|
+
from .streaming_failed_webhook_event import StreamingFailedWebhookEvent
|
|
21
|
+
from .call_fork_started_webhook_event import CallForkStartedWebhookEvent
|
|
22
|
+
from .call_fork_stopped_webhook_event import CallForkStoppedWebhookEvent
|
|
23
|
+
from .call_gather_ended_webhook_event import CallGatherEndedWebhookEvent
|
|
24
|
+
from .call_refer_failed_webhook_event import CallReferFailedWebhookEvent
|
|
25
|
+
from .streaming_started_webhook_event import StreamingStartedWebhookEvent
|
|
26
|
+
from .streaming_stopped_webhook_event import StreamingStoppedWebhookEvent
|
|
27
|
+
from .call_dtmf_received_webhook_event import CallDtmfReceivedWebhookEvent
|
|
28
|
+
from .call_refer_started_webhook_event import CallReferStartedWebhookEvent
|
|
29
|
+
from .call_siprec_failed_webhook_event import CallSiprecFailedWebhookEvent
|
|
30
|
+
from .call_speak_started_webhook_event import CallSpeakStartedWebhookEvent
|
|
31
|
+
from .conference_created_webhook_event import ConferenceCreatedWebhookEvent
|
|
32
|
+
from .call_playback_ended_webhook_event import CallPlaybackEndedWebhookEvent
|
|
33
|
+
from .call_siprec_started_webhook_event import CallSiprecStartedWebhookEvent
|
|
34
|
+
from .call_siprec_stopped_webhook_event import CallSiprecStoppedWebhookEvent
|
|
35
|
+
from .fax_media_processed_webhook_event import FaxMediaProcessedWebhookEvent
|
|
36
|
+
from .fax_sending_started_webhook_event import FaxSendingStartedWebhookEvent
|
|
37
|
+
from .replaced_link_click_webhook_event import ReplacedLinkClickWebhookEvent
|
|
38
|
+
from .call_ai_gather_ended_webhook_event import CallAIGatherEndedWebhookEvent
|
|
39
|
+
from .call_recording_error_webhook_event import CallRecordingErrorWebhookEvent
|
|
40
|
+
from .call_recording_saved_webhook_event import CallRecordingSavedWebhookEvent
|
|
41
|
+
from .call_refer_completed_webhook_event import CallReferCompletedWebhookEvent
|
|
42
|
+
from .call_playback_started_webhook_event import CallPlaybackStartedWebhookEvent
|
|
43
|
+
from .call_streaming_failed_webhook_event import CallStreamingFailedWebhookEvent
|
|
44
|
+
from .call_streaming_started_webhook_event import CallStreamingStartedWebhookEvent
|
|
45
|
+
from .call_streaming_stopped_webhook_event import CallStreamingStoppedWebhookEvent
|
|
46
|
+
from .campaign_status_update_webhook_event import CampaignStatusUpdateWebhookEvent
|
|
47
|
+
from .conference_speak_ended_webhook_event import ConferenceSpeakEndedWebhookEvent
|
|
48
|
+
from .call_conversation_ended_webhook_event import CallConversationEndedWebhookEvent
|
|
49
|
+
from .conference_floor_changed_webhook_event import ConferenceFloorChangedWebhookEvent
|
|
50
|
+
from .conference_speak_started_webhook_event import ConferenceSpeakStartedWebhookEvent
|
|
51
|
+
from .conference_playback_ended_webhook_event import ConferencePlaybackEndedWebhookEvent
|
|
52
|
+
from .conference_recording_saved_webhook_event import ConferenceRecordingSavedWebhookEvent
|
|
53
|
+
from .number_order_status_update_webhook_event import NumberOrderStatusUpdateWebhookEvent
|
|
54
|
+
from .call_machine_greeting_ended_webhook_event import CallMachineGreetingEndedWebhookEvent
|
|
55
|
+
from .conference_participant_left_webhook_event import ConferenceParticipantLeftWebhookEvent
|
|
56
|
+
from .conference_playback_started_webhook_event import ConferencePlaybackStartedWebhookEvent
|
|
57
|
+
from .call_machine_detection_ended_webhook_event import CallMachineDetectionEndedWebhookEvent
|
|
58
|
+
from .conference_participant_joined_webhook_event import ConferenceParticipantJoinedWebhookEvent
|
|
59
|
+
from .call_ai_gather_partial_results_webhook_event import CallAIGatherPartialResultsWebhookEvent
|
|
60
|
+
from .call_recording_transcription_saved_webhook_event import CallRecordingTranscriptionSavedWebhookEvent
|
|
61
|
+
from .conference_participant_speak_ended_webhook_event import ConferenceParticipantSpeakEndedWebhookEvent
|
|
62
|
+
from .call_machine_premium_greeting_ended_webhook_event import CallMachinePremiumGreetingEndedWebhookEvent
|
|
63
|
+
from .call_conversation_insights_generated_webhook_event import CallConversationInsightsGeneratedWebhookEvent
|
|
64
|
+
from .call_machine_premium_detection_ended_webhook_event import CallMachinePremiumDetectionEndedWebhookEvent
|
|
65
|
+
from .conference_participant_speak_started_webhook_event import ConferenceParticipantSpeakStartedWebhookEvent
|
|
66
|
+
from .conference_participant_playback_ended_webhook_event import ConferenceParticipantPlaybackEndedWebhookEvent
|
|
67
|
+
from .call_ai_gather_message_history_updated_webhook_event import CallAIGatherMessageHistoryUpdatedWebhookEvent
|
|
68
|
+
from .customer_service_record_status_changed_webhook_event import CustomerServiceRecordStatusChangedWebhookEvent
|
|
69
|
+
from .conference_participant_playback_started_webhook_event import ConferenceParticipantPlaybackStartedWebhookEvent
|
|
70
|
+
|
|
71
|
+
__all__ = ["UnwrapWebhookEvent"]
|
|
72
|
+
|
|
73
|
+
UnwrapWebhookEvent: TypeAlias = Union[
|
|
74
|
+
CallAIGatherEndedWebhookEvent,
|
|
75
|
+
CallAIGatherMessageHistoryUpdatedWebhookEvent,
|
|
76
|
+
CallAIGatherPartialResultsWebhookEvent,
|
|
77
|
+
CustomerServiceRecordStatusChangedWebhookEvent,
|
|
78
|
+
CallAnsweredWebhookEvent,
|
|
79
|
+
CallBridgedWebhookEvent,
|
|
80
|
+
CallConversationEndedWebhookEvent,
|
|
81
|
+
CallConversationInsightsGeneratedWebhookEvent,
|
|
82
|
+
CallDtmfReceivedWebhookEvent,
|
|
83
|
+
CallEnqueuedWebhookEvent,
|
|
84
|
+
CallForkStartedWebhookEvent,
|
|
85
|
+
CallForkStoppedWebhookEvent,
|
|
86
|
+
CallGatherEndedWebhookEvent,
|
|
87
|
+
CallHangupWebhookEvent,
|
|
88
|
+
CallInitiatedWebhookEvent,
|
|
89
|
+
CallLeftQueueWebhookEvent,
|
|
90
|
+
CallMachineDetectionEndedWebhookEvent,
|
|
91
|
+
CallMachineGreetingEndedWebhookEvent,
|
|
92
|
+
CallMachinePremiumDetectionEndedWebhookEvent,
|
|
93
|
+
CallMachinePremiumGreetingEndedWebhookEvent,
|
|
94
|
+
CallPlaybackEndedWebhookEvent,
|
|
95
|
+
CallPlaybackStartedWebhookEvent,
|
|
96
|
+
CallRecordingErrorWebhookEvent,
|
|
97
|
+
CallRecordingSavedWebhookEvent,
|
|
98
|
+
CallRecordingTranscriptionSavedWebhookEvent,
|
|
99
|
+
CallReferCompletedWebhookEvent,
|
|
100
|
+
CallReferFailedWebhookEvent,
|
|
101
|
+
CallReferStartedWebhookEvent,
|
|
102
|
+
CallSiprecFailedWebhookEvent,
|
|
103
|
+
CallSiprecStartedWebhookEvent,
|
|
104
|
+
CallSiprecStoppedWebhookEvent,
|
|
105
|
+
CallSpeakEndedWebhookEvent,
|
|
106
|
+
CallSpeakStartedWebhookEvent,
|
|
107
|
+
CallStreamingFailedWebhookEvent,
|
|
108
|
+
CallStreamingStartedWebhookEvent,
|
|
109
|
+
CallStreamingStoppedWebhookEvent,
|
|
110
|
+
CampaignStatusUpdateWebhookEvent,
|
|
111
|
+
ConferenceCreatedWebhookEvent,
|
|
112
|
+
ConferenceEndedWebhookEvent,
|
|
113
|
+
ConferenceFloorChangedWebhookEvent,
|
|
114
|
+
ConferenceParticipantJoinedWebhookEvent,
|
|
115
|
+
ConferenceParticipantLeftWebhookEvent,
|
|
116
|
+
ConferenceParticipantPlaybackEndedWebhookEvent,
|
|
117
|
+
ConferenceParticipantPlaybackStartedWebhookEvent,
|
|
118
|
+
ConferenceParticipantSpeakEndedWebhookEvent,
|
|
119
|
+
ConferenceParticipantSpeakStartedWebhookEvent,
|
|
120
|
+
ConferencePlaybackEndedWebhookEvent,
|
|
121
|
+
ConferencePlaybackStartedWebhookEvent,
|
|
122
|
+
ConferenceRecordingSavedWebhookEvent,
|
|
123
|
+
ConferenceSpeakEndedWebhookEvent,
|
|
124
|
+
ConferenceSpeakStartedWebhookEvent,
|
|
125
|
+
DeliveryUpdateWebhookEvent,
|
|
126
|
+
FaxDeliveredWebhookEvent,
|
|
127
|
+
FaxFailedWebhookEvent,
|
|
128
|
+
FaxMediaProcessedWebhookEvent,
|
|
129
|
+
FaxQueuedWebhookEvent,
|
|
130
|
+
FaxSendingStartedWebhookEvent,
|
|
131
|
+
InboundMessageWebhookEvent,
|
|
132
|
+
NumberOrderStatusUpdateWebhookEvent,
|
|
133
|
+
ReplacedLinkClickWebhookEvent,
|
|
134
|
+
StreamingFailedWebhookEvent,
|
|
135
|
+
StreamingStartedWebhookEvent,
|
|
136
|
+
StreamingStoppedWebhookEvent,
|
|
137
|
+
TranscriptionWebhookEvent,
|
|
138
|
+
]
|
|
@@ -2,17 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List
|
|
6
5
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
6
|
|
|
7
|
+
from .._types import SequenceNotStr
|
|
8
|
+
|
|
8
9
|
__all__ = ["UsageReportListParams", "Page"]
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class UsageReportListParams(TypedDict, total=False):
|
|
12
|
-
dimensions: Required[
|
|
13
|
+
dimensions: Required[SequenceNotStr[str]]
|
|
13
14
|
"""Breakout by specified product dimensions"""
|
|
14
15
|
|
|
15
|
-
metrics: Required[
|
|
16
|
+
metrics: Required[SequenceNotStr[str]]
|
|
16
17
|
"""Specified product usage values"""
|
|
17
18
|
|
|
18
19
|
product: Required[str]
|
|
@@ -51,7 +52,7 @@ class UsageReportListParams(TypedDict, total=False):
|
|
|
51
52
|
Originally: page[number], page[size]
|
|
52
53
|
"""
|
|
53
54
|
|
|
54
|
-
sort:
|
|
55
|
+
sort: SequenceNotStr[str]
|
|
55
56
|
"""Specifies the sort order for results"""
|
|
56
57
|
|
|
57
58
|
start_date: str
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict,
|
|
5
|
+
from typing import Dict, Union, Optional
|
|
6
6
|
from typing_extensions import Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = ["VerifyProfileCreateParams", "Call", "Flashcall", "SMS"]
|
|
9
11
|
|
|
10
12
|
|
|
@@ -45,7 +47,7 @@ class CallTyped(TypedDict, total=False):
|
|
|
45
47
|
messaging_template_id: str
|
|
46
48
|
"""The message template identifier selected from /verify_profiles/templates"""
|
|
47
49
|
|
|
48
|
-
whitelisted_destinations:
|
|
50
|
+
whitelisted_destinations: SequenceNotStr[str]
|
|
49
51
|
"""Enabled country destinations to send verification codes.
|
|
50
52
|
|
|
51
53
|
The elements in the list must be valid ISO 3166-1 alpha-2 country codes. If set
|
|
@@ -65,7 +67,7 @@ class FlashcallTyped(TypedDict, total=False):
|
|
|
65
67
|
identity.
|
|
66
68
|
"""
|
|
67
69
|
|
|
68
|
-
whitelisted_destinations:
|
|
70
|
+
whitelisted_destinations: SequenceNotStr[str]
|
|
69
71
|
"""Enabled country destinations to send verification codes.
|
|
70
72
|
|
|
71
73
|
The elements in the list must be valid ISO 3166-1 alpha-2 country codes. If set
|
|
@@ -77,7 +79,7 @@ Flashcall: TypeAlias = Union[FlashcallTyped, Dict[str, object]]
|
|
|
77
79
|
|
|
78
80
|
|
|
79
81
|
class SMSTyped(TypedDict, total=False):
|
|
80
|
-
whitelisted_destinations: Required[
|
|
82
|
+
whitelisted_destinations: Required[SequenceNotStr[str]]
|
|
81
83
|
"""Enabled country destinations to send verification codes.
|
|
82
84
|
|
|
83
85
|
The elements in the list must be valid ISO 3166-1 alpha-2 country codes. If set
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict,
|
|
5
|
+
from typing import Dict, Union, Optional
|
|
6
6
|
from typing_extensions import TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = ["VerifyProfileUpdateParams", "Call", "Flashcall", "SMS"]
|
|
9
11
|
|
|
10
12
|
|
|
@@ -45,7 +47,7 @@ class CallTyped(TypedDict, total=False):
|
|
|
45
47
|
messaging_template_id: str
|
|
46
48
|
"""The message template identifier selected from /verify_profiles/templates"""
|
|
47
49
|
|
|
48
|
-
whitelisted_destinations:
|
|
50
|
+
whitelisted_destinations: SequenceNotStr[str]
|
|
49
51
|
"""Enabled country destinations to send verification codes.
|
|
50
52
|
|
|
51
53
|
The elements in the list must be valid ISO 3166-1 alpha-2 country codes. If set
|
|
@@ -65,7 +67,7 @@ class FlashcallTyped(TypedDict, total=False):
|
|
|
65
67
|
identity.
|
|
66
68
|
"""
|
|
67
69
|
|
|
68
|
-
whitelisted_destinations:
|
|
70
|
+
whitelisted_destinations: SequenceNotStr[str]
|
|
69
71
|
"""Enabled country destinations to send verification codes.
|
|
70
72
|
|
|
71
73
|
The elements in the list must be valid ISO 3166-1 alpha-2 country codes. If set
|
|
@@ -103,7 +105,7 @@ class SMSTyped(TypedDict, total=False):
|
|
|
103
105
|
messaging_template_id: str
|
|
104
106
|
"""The message template identifier selected from /verify_profiles/templates"""
|
|
105
107
|
|
|
106
|
-
whitelisted_destinations:
|
|
108
|
+
whitelisted_destinations: SequenceNotStr[str]
|
|
107
109
|
"""Enabled country destinations to send verification codes.
|
|
108
110
|
|
|
109
111
|
The elements in the list must be valid ISO 3166-1 alpha-2 country codes. If set
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Optional
|
|
6
6
|
from typing_extensions import TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = ["VideoRegionParam"]
|
|
9
11
|
|
|
10
12
|
|
|
@@ -26,7 +28,7 @@ class VideoRegionParam(TypedDict, total=False):
|
|
|
26
28
|
video sources.
|
|
27
29
|
"""
|
|
28
30
|
|
|
29
|
-
video_sources:
|
|
31
|
+
video_sources: SequenceNotStr[str]
|
|
30
32
|
"""Array of video recording ids to be composed in the region.
|
|
31
33
|
|
|
32
34
|
Can be "\\**" to specify all video recordings in the session
|
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List
|
|
6
5
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
6
|
|
|
7
|
+
from .._types import SequenceNotStr
|
|
8
|
+
|
|
8
9
|
__all__ = ["WirelessBlocklistCreateParams"]
|
|
9
10
|
|
|
10
11
|
|
|
@@ -15,5 +16,5 @@ class WirelessBlocklistCreateParams(TypedDict, total=False):
|
|
|
15
16
|
type: Required[Literal["country", "mcc", "plmn"]]
|
|
16
17
|
"""The type of wireless blocklist."""
|
|
17
18
|
|
|
18
|
-
values: Required[
|
|
19
|
+
values: Required[SequenceNotStr[str]]
|
|
19
20
|
"""Values to block. The values here depend on the `type` of Wireless Blocklist."""
|
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List
|
|
6
5
|
from typing_extensions import Literal, TypedDict
|
|
7
6
|
|
|
7
|
+
from .._types import SequenceNotStr
|
|
8
|
+
|
|
8
9
|
__all__ = ["WirelessBlocklistUpdateParams"]
|
|
9
10
|
|
|
10
11
|
|
|
@@ -15,5 +16,5 @@ class WirelessBlocklistUpdateParams(TypedDict, total=False):
|
|
|
15
16
|
type: Literal["country", "mcc", "plmn"]
|
|
16
17
|
"""The type of wireless blocklist."""
|
|
17
18
|
|
|
18
|
-
values:
|
|
19
|
+
values: SequenceNotStr[str]
|
|
19
20
|
"""Values to block. The values here depend on the `type` of Wireless Blocklist."""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: telnyx
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.4.0a0
|
|
4
4
|
Summary: The official Python library for the telnyx API
|
|
5
5
|
Project-URL: Homepage, https://github.com/team-telnyx/telnyx-python
|
|
6
6
|
Project-URL: Repository, https://github.com/team-telnyx/telnyx-python
|