telnyx 3.1.0a0__py3-none-any.whl → 3.3.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.

Files changed (78) hide show
  1. telnyx/_client.py +5 -0
  2. telnyx/_version.py +1 -1
  3. telnyx/resources/__init__.py +3 -0
  4. telnyx/resources/documents.py +81 -0
  5. telnyx/resources/webhooks.py +34 -0
  6. telnyx/types/__init__.py +114 -0
  7. telnyx/types/call_ai_gather_ended_webhook_event.py +78 -0
  8. telnyx/types/call_ai_gather_message_history_updated_webhook_event.py +69 -0
  9. telnyx/types/call_ai_gather_partial_results_webhook_event.py +75 -0
  10. telnyx/types/call_answered_webhook_event.py +75 -0
  11. telnyx/types/call_bridged_webhook_event.py +58 -0
  12. telnyx/types/call_conversation_ended_webhook_event.py +84 -0
  13. telnyx/types/call_conversation_insights_generated_webhook_event.py +67 -0
  14. telnyx/types/call_dtmf_received_webhook_event.py +61 -0
  15. telnyx/types/call_enqueued_webhook_event.py +59 -0
  16. telnyx/types/call_fork_started_webhook_event.py +53 -0
  17. telnyx/types/call_fork_stopped_webhook_event.py +53 -0
  18. telnyx/types/call_gather_ended_webhook_event.py +64 -0
  19. telnyx/types/call_hangup_webhook_event.py +150 -0
  20. telnyx/types/call_initiated_webhook_event.py +96 -0
  21. telnyx/types/call_left_queue_webhook_event.py +62 -0
  22. telnyx/types/call_machine_detection_ended_webhook_event.py +61 -0
  23. telnyx/types/call_machine_greeting_ended_webhook_event.py +61 -0
  24. telnyx/types/call_machine_premium_detection_ended_webhook_event.py +63 -0
  25. telnyx/types/call_machine_premium_greeting_ended_webhook_event.py +61 -0
  26. telnyx/types/call_playback_ended_webhook_event.py +70 -0
  27. telnyx/types/call_playback_started_webhook_event.py +62 -0
  28. telnyx/types/call_recording_error_webhook_event.py +60 -0
  29. telnyx/types/call_recording_saved_webhook_event.py +94 -0
  30. telnyx/types/call_recording_transcription_saved_webhook_event.py +71 -0
  31. telnyx/types/call_refer_completed_webhook_event.py +61 -0
  32. telnyx/types/call_refer_failed_webhook_event.py +61 -0
  33. telnyx/types/call_refer_started_webhook_event.py +61 -0
  34. telnyx/types/call_siprec_failed_webhook_event.py +53 -0
  35. telnyx/types/call_siprec_started_webhook_event.py +50 -0
  36. telnyx/types/call_siprec_stopped_webhook_event.py +53 -0
  37. telnyx/types/call_speak_ended_webhook_event.py +53 -0
  38. telnyx/types/call_speak_started_webhook_event.py +50 -0
  39. telnyx/types/call_streaming_failed_webhook_event.py +70 -0
  40. telnyx/types/call_streaming_started_webhook_event.py +53 -0
  41. telnyx/types/call_streaming_stopped_webhook_event.py +53 -0
  42. telnyx/types/campaign_status_update_webhook_event.py +26 -0
  43. telnyx/types/conference_created_webhook_event.py +53 -0
  44. telnyx/types/conference_ended_webhook_event.py +56 -0
  45. telnyx/types/conference_floor_changed_webhook_event.py +45 -0
  46. telnyx/types/conference_participant_joined_webhook_event.py +53 -0
  47. telnyx/types/conference_participant_left_webhook_event.py +53 -0
  48. telnyx/types/conference_participant_playback_ended_webhook_event.py +65 -0
  49. telnyx/types/conference_participant_playback_started_webhook_event.py +65 -0
  50. telnyx/types/conference_participant_speak_ended_webhook_event.py +56 -0
  51. telnyx/types/conference_participant_speak_started_webhook_event.py +56 -0
  52. telnyx/types/conference_playback_ended_webhook_event.py +49 -0
  53. telnyx/types/conference_playback_started_webhook_event.py +49 -0
  54. telnyx/types/conference_recording_saved_webhook_event.py +103 -0
  55. telnyx/types/conference_speak_ended_webhook_event.py +40 -0
  56. telnyx/types/conference_speak_started_webhook_event.py +40 -0
  57. telnyx/types/custom_sip_header.py +13 -0
  58. telnyx/types/customer_service_record_status_changed_webhook_event.py +55 -0
  59. telnyx/types/delivery_update_webhook_event.py +40 -0
  60. telnyx/types/document_generate_download_link_response.py +14 -0
  61. telnyx/types/fax_delivered_webhook_event.py +69 -0
  62. telnyx/types/fax_failed_webhook_event.py +66 -0
  63. telnyx/types/fax_media_processed_webhook_event.py +63 -0
  64. telnyx/types/fax_queued_webhook_event.py +63 -0
  65. telnyx/types/fax_sending_started_webhook_event.py +63 -0
  66. telnyx/types/inbound_message_webhook_event.py +227 -0
  67. telnyx/types/number_order_status_update_webhook_event.py +12 -0
  68. telnyx/types/replaced_link_click_webhook_event.py +32 -0
  69. telnyx/types/sip_header.py +15 -0
  70. telnyx/types/streaming_failed_webhook_event.py +70 -0
  71. telnyx/types/streaming_started_webhook_event.py +53 -0
  72. telnyx/types/streaming_stopped_webhook_event.py +53 -0
  73. telnyx/types/transcription_webhook_event.py +72 -0
  74. telnyx/types/unwrap_webhook_event.py +138 -0
  75. {telnyx-3.1.0a0.dist-info → telnyx-3.3.0a0.dist-info}/METADATA +1 -1
  76. {telnyx-3.1.0a0.dist-info → telnyx-3.3.0a0.dist-info}/RECORD +78 -9
  77. {telnyx-3.1.0a0.dist-info → telnyx-3.3.0a0.dist-info}/WHEEL +0 -0
  78. {telnyx-3.1.0a0.dist-info → telnyx-3.3.0a0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,53 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["StreamingStartedWebhookEvent", "Data", "DataPayload"]
10
+
11
+
12
+ class DataPayload(BaseModel):
13
+ call_control_id: Optional[str] = None
14
+ """Call ID used to issue commands via Call Control API."""
15
+
16
+ call_leg_id: Optional[str] = None
17
+ """ID that is unique to the call and can be used to correlate webhook events."""
18
+
19
+ call_session_id: Optional[str] = None
20
+ """
21
+ ID that is unique to the call session and can be used to correlate webhook
22
+ events. Call session is a group of related call legs that logically belong to
23
+ the same phone call, e.g. an inbound and outbound leg of a transferred call.
24
+ """
25
+
26
+ client_state: Optional[str] = None
27
+ """State received from a command."""
28
+
29
+ connection_id: Optional[str] = None
30
+ """Call Control App ID (formerly Telnyx connection ID) used in the call."""
31
+
32
+ stream_url: Optional[str] = None
33
+ """Destination WebSocket address where the stream is going to be delivered."""
34
+
35
+
36
+ class Data(BaseModel):
37
+ id: Optional[str] = None
38
+ """Identifies the type of resource."""
39
+
40
+ event_type: Optional[Literal["streaming.started"]] = None
41
+ """The type of event being delivered."""
42
+
43
+ occurred_at: Optional[datetime] = None
44
+ """ISO 8601 datetime of when the event occurred."""
45
+
46
+ payload: Optional[DataPayload] = None
47
+
48
+ record_type: Optional[Literal["event"]] = None
49
+ """Identifies the type of the resource."""
50
+
51
+
52
+ class StreamingStartedWebhookEvent(BaseModel):
53
+ data: Optional[Data] = None
@@ -0,0 +1,53 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["StreamingStoppedWebhookEvent", "Data", "DataPayload"]
10
+
11
+
12
+ class DataPayload(BaseModel):
13
+ call_control_id: Optional[str] = None
14
+ """Call ID used to issue commands via Call Control API."""
15
+
16
+ call_leg_id: Optional[str] = None
17
+ """ID that is unique to the call and can be used to correlate webhook events."""
18
+
19
+ call_session_id: Optional[str] = None
20
+ """
21
+ ID that is unique to the call session and can be used to correlate webhook
22
+ events. Call session is a group of related call legs that logically belong to
23
+ the same phone call, e.g. an inbound and outbound leg of a transferred call.
24
+ """
25
+
26
+ client_state: Optional[str] = None
27
+ """State received from a command."""
28
+
29
+ connection_id: Optional[str] = None
30
+ """Call Control App ID (formerly Telnyx connection ID) used in the call."""
31
+
32
+ stream_url: Optional[str] = None
33
+ """Destination WebSocket address where the stream is going to be delivered."""
34
+
35
+
36
+ class Data(BaseModel):
37
+ id: Optional[str] = None
38
+ """Identifies the type of resource."""
39
+
40
+ event_type: Optional[Literal["streaming.stopped"]] = None
41
+ """The type of event being delivered."""
42
+
43
+ occurred_at: Optional[datetime] = None
44
+ """ISO 8601 datetime of when the event occurred."""
45
+
46
+ payload: Optional[DataPayload] = None
47
+
48
+ record_type: Optional[Literal["event"]] = None
49
+ """Identifies the type of the resource."""
50
+
51
+
52
+ class StreamingStoppedWebhookEvent(BaseModel):
53
+ data: Optional[Data] = None
@@ -0,0 +1,72 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["TranscriptionWebhookEvent", "Data", "DataPayload", "DataPayloadTranscriptionData"]
10
+
11
+
12
+ class DataPayloadTranscriptionData(BaseModel):
13
+ confidence: Optional[float] = None
14
+ """Speech recognition confidence level."""
15
+
16
+ is_final: Optional[bool] = None
17
+ """When false, it means that this is an interim result."""
18
+
19
+ transcript: Optional[str] = None
20
+ """Recognized text."""
21
+
22
+ transcription_track: Optional[Literal["inbound", "outbound"]] = None
23
+ """Indicates which leg of the call has been transcribed.
24
+
25
+ This is only available when `transcription_engine` is set to `B`.
26
+ """
27
+
28
+
29
+ class DataPayload(BaseModel):
30
+ call_control_id: Optional[str] = None
31
+ """Unique identifier and token for controlling the call."""
32
+
33
+ call_leg_id: Optional[str] = None
34
+ """ID that is unique to the call and can be used to correlate webhook events."""
35
+
36
+ call_session_id: Optional[str] = None
37
+ """
38
+ ID that is unique to the call session and can be used to correlate webhook
39
+ events. Call session is a group of related call legs that logically belong to
40
+ the same phone call, e.g. an inbound and outbound leg of a transferred call.
41
+ """
42
+
43
+ client_state: Optional[str] = None
44
+ """Use this field to add state to every subsequent webhook.
45
+
46
+ It must be a valid Base-64 encoded string.
47
+ """
48
+
49
+ connection_id: Optional[str] = None
50
+ """Call Control App ID (formerly Telnyx connection ID) used in the call."""
51
+
52
+ transcription_data: Optional[DataPayloadTranscriptionData] = None
53
+
54
+
55
+ class Data(BaseModel):
56
+ id: Optional[str] = None
57
+ """Identifies the type of resource."""
58
+
59
+ event_type: Optional[Literal["call.transcription"]] = None
60
+ """The type of event being delivered."""
61
+
62
+ occurred_at: Optional[datetime] = None
63
+ """ISO 8601 datetime of when the event occurred."""
64
+
65
+ payload: Optional[DataPayload] = None
66
+
67
+ record_type: Optional[Literal["event"]] = None
68
+ """Identifies the type of the resource."""
69
+
70
+
71
+ class TranscriptionWebhookEvent(BaseModel):
72
+ data: Optional[Data] = None
@@ -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
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: telnyx
3
- Version: 3.1.0a0
3
+ Version: 3.3.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
@@ -1,6 +1,6 @@
1
1
  telnyx/__init__.py,sha256=9AJxcXeplxj1nS-mSEVft0YfJIBsXvs5e3M1wMhhUW4,2578
2
2
  telnyx/_base_client.py,sha256=cRTxhagl38BtlgKR5Pv5O_O59pz2fBDLPhksecaM8Rw,67035
3
- telnyx/_client.py,sha256=VSoM2uDZZOQOx8DpKfOf55CEGX5O9u4oBLEfWlzWnpA,170660
3
+ telnyx/_client.py,sha256=WP2WW0hm7556nD2M7XB2UHXdOGRyqCgmHawRAS03vIU,170876
4
4
  telnyx/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
5
  telnyx/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  telnyx/_exceptions.py,sha256=D9kyl_aKwKQ1618MjC8SZPmL5qLUyfnZzyO9TTKS3mo,3220
@@ -11,7 +11,7 @@ telnyx/_resource.py,sha256=B4Qg-uO2a34FQHHZskn89eVURqMuSvv1TdeBJH1z1rU,1100
11
11
  telnyx/_response.py,sha256=4X24wr7uQn2hnM_b0xqQ92zSgxRFFfWG2lTg93-KzNo,28788
12
12
  telnyx/_streaming.py,sha256=OfSFcMQJ_mnvfkbIdOG7Ajp0SMbXnOJSga4xXHjNAJk,10100
13
13
  telnyx/_types.py,sha256=c0fPUnqjxrdVYFjtxNbWwRnbHiW4iCbbfw_xnr-BVZw,6197
14
- telnyx/_version.py,sha256=jW6Z7Z0h1E7JA5GclhABpPO-TccZcd-6fIfEUWnKKx4,164
14
+ telnyx/_version.py,sha256=fUQKJrpZcovyKgX93mKYq61CkavXciswAFTDtuf56xY,164
15
15
  telnyx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  telnyx/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  telnyx/_utils/_logs.py,sha256=0TK41m0v92Gj1abmzI7B2Ogm7Mcu_J9hiz8mkrF5cIQ,774
@@ -24,7 +24,7 @@ telnyx/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,1
24
24
  telnyx/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
25
25
  telnyx/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
26
26
  telnyx/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
- telnyx/resources/__init__.py,sha256=6wpwERN8FQSG-U4MLJvHYwOjwfYX2oqrIRXw6bXtRts,83477
27
+ telnyx/resources/__init__.py,sha256=U_ABZ5BZyJXqgQ-ZJQmOqbRbJSax4mrbzJ8jbwj4Y7c,83592
28
28
  telnyx/resources/access_ip_address.py,sha256=UxbBNXpA4YRIQSTopGhdHS2-b0I8jBeGN1Z3bT_2lwM,17561
29
29
  telnyx/resources/access_ip_ranges.py,sha256=GYF-BpmJYfkpMTnjBHVWGu04IPsXaJRXDqHN_ARP6bk,14252
30
30
  telnyx/resources/advanced_orders.py,sha256=n8gIQve3KwesryG6QYS_u-h-VYXxY7Y7YrvNUCHmAN4,18623
@@ -48,7 +48,7 @@ telnyx/resources/customer_service_records.py,sha256=d4I83zLME3c8Afzw56h22nYLASXd
48
48
  telnyx/resources/detail_records.py,sha256=udmlGeGoP2G70NwH0GsP62cp8RJwRzg6Suvs8begKkY,7857
49
49
  telnyx/resources/dialogflow_connections.py,sha256=NqrxiR17ICouCrNz8ahbenUr7co_-WxJxXnFQmPuJOg,21618
50
50
  telnyx/resources/document_links.py,sha256=5X5y-a5t7-exjlwT0y7VIKwSDuIacgrDECiTK2jLVco,7470
51
- telnyx/resources/documents.py,sha256=M9vCcJ0QFgxrhQM9l-DPyQ3QWegbglcytqdJWW75fbo,31424
51
+ telnyx/resources/documents.py,sha256=_GhcVL53xyoJB0Nchq05xSz7AGMPCsl3bUOVnLdejpE,34912
52
52
  telnyx/resources/dynamic_emergency_addresses.py,sha256=N-RKemA-sdfDGS3abSVr7vRWcG02tZOlC9-cKhg5aSY,20075
53
53
  telnyx/resources/dynamic_emergency_endpoints.py,sha256=GJwFVKp06pV4bVbEHTmpDOPJ_w9L6DntTQdrUvu5br0,18716
54
54
  telnyx/resources/enum.py,sha256=xGHamZ9ftAUwGxmVveOms-5C2jHFRdChDpN23M2vxnw,7191
@@ -129,6 +129,7 @@ telnyx/resources/verify_profiles.py,sha256=5D-RE6le_Mn7kXGoQLkWv5LA6vrQHgwXdHaw4
129
129
  telnyx/resources/virtual_cross_connects.py,sha256=ZHflYuZRJ5sob_SOAvgvLb83Vg4eD2PFFgX-SYevfBw,35009
130
130
  telnyx/resources/virtual_cross_connects_coverage.py,sha256=TPYIaRXgZBcE9igZEQdQne0E_mrfx9xcQ--RiEhk2Jg,9362
131
131
  telnyx/resources/webhook_deliveries.py,sha256=qL67EOAzFl3XuqhwlAiCfKzq5mUuRzKjAwngQlCT79k,11198
132
+ telnyx/resources/webhooks.py,sha256=2aBYtHvVy4Ngpq_GEEMk0U6Vn_LKFwommXaguEjhhj0,962
132
133
  telnyx/resources/wireguard_interfaces.py,sha256=dN8ntL6q2phY8LVdNkyCqCfeghUQIQhkQNUvL7Jm2NI,18474
133
134
  telnyx/resources/wireguard_peers.py,sha256=RPnaxUha-94n5-neiPebRRiSPn45YeCPcdj-dy_d2NY,24675
134
135
  telnyx/resources/wireless_blocklist_values.py,sha256=B675l745Y2kBTr9ToH3HI_6DjZILQqCqDTZ8n6jJD1k,7287
@@ -335,7 +336,7 @@ telnyx/resources/verified_numbers/verified_numbers.py,sha256=evCpg4XTmWzO8mog7GC
335
336
  telnyx/resources/wireless/__init__.py,sha256=fEZwFm-3jI908Ui2_pT-S-3Titgg1vs7uFjzK4p406M,1212
336
337
  telnyx/resources/wireless/detail_records_reports.py,sha256=73b10ZJJYsNwTdqA5bee4Q3_TG3WTskTkg4mPsM1jOc,17982
337
338
  telnyx/resources/wireless/wireless.py,sha256=NQKcHQh4AoB4VrJRsgP3KGIH64bJmwAXFLRK7ZR1AX8,8176
338
- telnyx/types/__init__.py,sha256=pnGRPpE5WAUot73dGUpY0a5Y6fmaMhJ2vJMe71YbzTU,88687
339
+ telnyx/types/__init__.py,sha256=VFn6QpjcxKCsLPaGFCyEwDBmSWR4eobAOWsVz-gFOkk,96788
339
340
  telnyx/types/access_ip_address_create_params.py,sha256=qd_T7W_K4XiVIdsJLbsS5U9Qlf3_m0DT677n5Tqdvm8,329
340
341
  telnyx/types/access_ip_address_list_params.py,sha256=3sWF6U18lHT3y0fGouO8qCznMlvEyW5PRGx_pItEeLo,1870
341
342
  telnyx/types/access_ip_address_list_response.py,sha256=WFYBcqjSoC6c4rf9V6zGWkcB0_UG9DnMQwF5ic17MdY,475
@@ -396,6 +397,11 @@ telnyx/types/brand_update_params.py,sha256=7gMmNCc8s0rwloKIm7zhmNFjvtjTzSVBmM430
396
397
  telnyx/types/bulk_sim_card_action_list_params.py,sha256=Cb3jfVsOS9fNgAn_Ux-uvNJudDEdotVSvPEK6zo7fAY,665
397
398
  telnyx/types/bulk_sim_card_action_list_response.py,sha256=TfBkY5ELe0GS2TIaG6jHhYb5ActI9yURIDu-SSQL7zU,1439
398
399
  telnyx/types/bulk_sim_card_action_retrieve_response.py,sha256=wVA0TamPwKC5F3WRCKyPDlbnaGIGhvGDGWCBFExLToE,1354
400
+ telnyx/types/call_ai_gather_ended_webhook_event.py,sha256=ig7ikRGGvxCAFaK0G5hjEWBnqGZdS0joJtqqcaIegJ0,2422
401
+ telnyx/types/call_ai_gather_message_history_updated_webhook_event.py,sha256=cPP2bu36quGxPI8DSgKlw8JJ7_7Q3RyqkVBvg9DhTLA,2225
402
+ telnyx/types/call_ai_gather_partial_results_webhook_event.py,sha256=7yhqeMI7nWga-TPgjEhOFxGGTT28fq4UXKYYod_qZPk,2371
403
+ telnyx/types/call_answered_webhook_event.py,sha256=pUODJBEHV4RDDhIMLoUyEwF11hHgcocQWOIvPZafqGs,2377
404
+ telnyx/types/call_bridged_webhook_event.py,sha256=CR9hi9uUXclE4b9eniAk8CC6xxUQz_cwMm16i-BVNr8,1796
399
405
  telnyx/types/call_control_application.py,sha256=GwQm25fVUXnd5f9IFQxErwp78wizyxkqdYUVEYJ9Oog,2866
400
406
  telnyx/types/call_control_application_create_params.py,sha256=QwE_MHP0jDDoNBhWpk2oXHsety7Ou-ciYWj5PXA-RBo,2451
401
407
  telnyx/types/call_control_application_create_response.py,sha256=bPZ_zRz836mp7wy9tbzzBEWH2eml2WC5Y3uZBcGZVC4,368
@@ -409,11 +415,41 @@ telnyx/types/call_control_application_outbound_param.py,sha256=aFlCWDtRvjHmF-cu9
409
415
  telnyx/types/call_control_application_retrieve_response.py,sha256=LZNhV1G4eL-y9FGl2lSmWOJPjoIPrm9SHgy5y9kPpsY,372
410
416
  telnyx/types/call_control_application_update_params.py,sha256=o_zlH_K86u5xWqQeS3q5IvSOdGReURTwqf7WeXKjKk0,2535
411
417
  telnyx/types/call_control_application_update_response.py,sha256=_JR2YLtITudbuYGVqmaGud1B8StTlAanVmFNtIN_XV4,368
418
+ telnyx/types/call_conversation_ended_webhook_event.py,sha256=xkOxhj7h2duW6U0O7PJvcb9YWWhq8HFRKcuGpeZ0dKI,2621
419
+ telnyx/types/call_conversation_insights_generated_webhook_event.py,sha256=wnCJCAR3Jn6-qSz3AxCu35TRF_3lehVkozUJZyWtwNU,2255
412
420
  telnyx/types/call_dial_params.py,sha256=SCfnu4urlFVfmTyTVbJcLgeGkqKuxWq5vRB_1WS2y4U,15884
413
421
  telnyx/types/call_dial_response.py,sha256=qV7fNdy_vNuhBte6B_jxhSqvNQMht8tyq3DZ3-YHQAM,1575
422
+ telnyx/types/call_dtmf_received_webhook_event.py,sha256=By7pJP_IGMHOjf5rbqBrkGo3V_SEjpZbug5Qpo4R5fc,1853
423
+ telnyx/types/call_enqueued_webhook_event.py,sha256=kDv3EZKutPehui2ny4kUnmIBtMpGX3NL7OCLF3K0q3Y,1837
414
424
  telnyx/types/call_event_list_params.py,sha256=AAhJQiZV0JvPxHLmjyLSWq5f54NV1aMvfxBCDpkjJ9o,3163
415
425
  telnyx/types/call_event_list_response.py,sha256=kRLl6TldmQuDw1Expvp7bj2SYO0c89pXa2CuiXG_a8A,964
426
+ telnyx/types/call_fork_started_webhook_event.py,sha256=jC0SZVe7ZPi7XZALqUPYWJesnHVdZemdCnNKonfjUU4,1685
427
+ telnyx/types/call_fork_stopped_webhook_event.py,sha256=sOjkm2sh9rqI043RBrWm3HrXLqMfnTVddG4ZRe5d4ys,1685
428
+ telnyx/types/call_gather_ended_webhook_event.py,sha256=-BhUNj_ZE-v-imZ_iESnpYgZHQclkTi3uIDJ1TSFqnE,2040
429
+ telnyx/types/call_hangup_webhook_event.py,sha256=Zbrazk8Z733qmmr54LISQiefWIsAd1Txi0qzYvUp79Y,4696
430
+ telnyx/types/call_initiated_webhook_event.py,sha256=HgAR9kZ7mDtqyMGd-RlxbiF3-QCzSJZAT-HFzooGhJk,3081
431
+ telnyx/types/call_left_queue_webhook_event.py,sha256=jMoc-4jBhAS5Vmcd-2XDZWU6vKMwd4PXhpqAt1NVJ9E,1960
432
+ telnyx/types/call_machine_detection_ended_webhook_event.py,sha256=PDpDSgnzGz6w5jo9fYtGYSM007AT3TxDyCH6R1ppIH0,1956
433
+ telnyx/types/call_machine_greeting_ended_webhook_event.py,sha256=ifdS_ikxTTPrZ5Meo1MpoVS4ZZf0mse6oSY1Xj77I9Q,1964
434
+ telnyx/types/call_machine_premium_detection_ended_webhook_event.py,sha256=o2VZb5RDj6cWfMeS9YcsSNkATwyGGaXQ_Hzv82eqrRw,2057
435
+ telnyx/types/call_machine_premium_greeting_ended_webhook_event.py,sha256=rh05sMBtagpVxJbzNEnlQqPwkKHVwVWcOB-J196Hlo0,1993
436
+ telnyx/types/call_playback_ended_webhook_event.py,sha256=s35ZHJKOYt_5FsSrJAKyhhCvfJibo8iosB6Xv5-ptjc,2223
437
+ telnyx/types/call_playback_started_webhook_event.py,sha256=HwEqioJqa7n84Ik333KwwaWbng3EtN_i_fZv6WpC3uQ,1964
438
+ telnyx/types/call_recording_error_webhook_event.py,sha256=3gV0MaHe16UWdeKN0eSNV7Hvq3UVqZlaKcWzGiPqsU8,1896
439
+ telnyx/types/call_recording_saved_webhook_event.py,sha256=YzuBFPIOBlMdxY4VPvexQvh7O_O2dtCyr_Kvf2C31Q0,2983
440
+ telnyx/types/call_recording_transcription_saved_webhook_event.py,sha256=kvFkrwe6o-rb_1ss_Uw1nI2PoYp5XpzrWUcTxASErdY,2221
441
+ telnyx/types/call_refer_completed_webhook_event.py,sha256=wP8sHPMffsEgj1xbqfBcXMO8pqa44PS7ThLUD8KCjtw,1914
442
+ telnyx/types/call_refer_failed_webhook_event.py,sha256=VAbP0WVV0T-aAKHTeaUawDXZdgaKdq45JdFUIQyLJMY,1905
443
+ telnyx/types/call_refer_started_webhook_event.py,sha256=bqICdgtiC4cTQwnjvy_UUchltGjRMWGZxTUSTFF3yHU,1908
416
444
  telnyx/types/call_retrieve_status_response.py,sha256=RX8VzV4aOrjerr8iBhl8ilCBurIIy7-n4MYhrAFSaJg,1441
445
+ telnyx/types/call_siprec_failed_webhook_event.py,sha256=-WaaWZb0ag92LZ8BkOOBVWXgW_rIFonNtNtqmI10kjU,1649
446
+ telnyx/types/call_siprec_started_webhook_event.py,sha256=TSZ3qzmk84YLKVDiq3j6FGvrt8iDRhkAz5QFBjYFPtY,1574
447
+ telnyx/types/call_siprec_stopped_webhook_event.py,sha256=rUA8ouoK5YN4RrQkeaUWD3I8O-CB7d92oo-nidHb150,1672
448
+ telnyx/types/call_speak_ended_webhook_event.py,sha256=eQlrLgqLQGe_NOLoyWQ2QeE_WEI5XpoqUbKj6EqiMw4,1695
449
+ telnyx/types/call_speak_started_webhook_event.py,sha256=KV-PmcBXfjpgN2dipo7bw3WYlUE73Y4mr-TVFG5B6Ok,1576
450
+ telnyx/types/call_streaming_failed_webhook_event.py,sha256=eZCpBdpu5KbnoiPJWUTavNTAOLsx-hj2UfqKBgaHAX0,2372
451
+ telnyx/types/call_streaming_started_webhook_event.py,sha256=vArPX8v-u_zd2t0zw2KIIwBJDVrmrQ1cesRAfEeGCs0,1704
452
+ telnyx/types/call_streaming_stopped_webhook_event.py,sha256=Z6HAuFGntPtjK-QDBjxr25tHhiCtIgiZTd4nZql6ohs,1704
417
453
  telnyx/types/campaign_builder_create_params.py,sha256=K7AyH31HxvuvmsEj7i_eCUpA_UW_U1zlNsloxOPiFps,5300
418
454
  telnyx/types/campaign_builder_create_response.py,sha256=7XT_yPFVsHoPKbp6WhQ2d72VkwSaFjGRAssGmUl5Kg4,326
419
455
  telnyx/types/campaign_deactivate_response.py,sha256=tcSCvd-cx3hFz66VdwxOqtbxOFBwJGne_pO5WQWKND0,327
@@ -422,6 +458,7 @@ telnyx/types/campaign_get_sharing_status_response.py,sha256=OpBYCVSEGEj8RThsJjiU
422
458
  telnyx/types/campaign_list_params.py,sha256=gjYy8uWph32nK7i0tX4TFvoYYjPxFWwliVdWNO3VpBY,1066
423
459
  telnyx/types/campaign_list_response.py,sha256=cW9tqO3c3ZDnXxcPxkthHS2Q8xvnIrixd12ChsYehBY,8677
424
460
  telnyx/types/campaign_sharing_status.py,sha256=-PT1pYJgMRmqf3jKduW0SPdNKGf02sJhUwj2CbQ7MM0,681
461
+ telnyx/types/campaign_status_update_webhook_event.py,sha256=AOAq7a0NsuYBFVbQ0n2PWhgvvajgQuMa8Cc9WWu_NwQ,965
425
462
  telnyx/types/campaign_submit_appeal_params.py,sha256=S92CMn_b_NGHGtE-etlaVZQn6A68BZLZz1-ZexMBaNA,461
426
463
  telnyx/types/campaign_submit_appeal_response.py,sha256=6Bl5gB9OYuioQLgIID9ic3vDpgEdCNp7r01w-B4jUO4,466
427
464
  telnyx/types/campaign_update_params.py,sha256=0tUXAyE9dnJhosIxKo3DmJx_uMGMk4xS3W36Ckf-aYU,1577
@@ -448,11 +485,25 @@ telnyx/types/comment_retrieve_response.py,sha256=0FuiTWpTwFo9DbrWrtW4ISatAIg9PaB
448
485
  telnyx/types/conference.py,sha256=dzDrCTuIcNqwFN9GA93FdwlJhhr5wbLb_Rd5VSZn748,1508
449
486
  telnyx/types/conference_create_params.py,sha256=AJJszf2zS3SYmpPoTBq3Z90G7Kv1J6RcSGr0sHWCyXM,2324
450
487
  telnyx/types/conference_create_response.py,sha256=ggiB8W7e31On8Y7spzEEjj890FsF673A-i8d8hveVgs,306
488
+ telnyx/types/conference_created_webhook_event.py,sha256=fCXR9FcME6nCdyQDmGy5i0KU5YttyylDBfzZQLIDcac,1672
489
+ telnyx/types/conference_ended_webhook_event.py,sha256=jMIyyQvVy5-ynEnfvXLozmG22taQyfbFtGMq34-Sm3Y,1785
490
+ telnyx/types/conference_floor_changed_webhook_event.py,sha256=ANB74dYstoWOZYXISMbNL4H4wGgX8PF6Ac-9b_bfTC0,1343
451
491
  telnyx/types/conference_list_params.py,sha256=BpNUwUcSkLfxTUJsyTM6iZm2Umr0aVWG__si9lx7Mos,3165
452
492
  telnyx/types/conference_list_participants_params.py,sha256=HR3nklZ4h6dWF8S7MFA8azlZpBycCvpo7vHpSUkM_2Q,1290
453
493
  telnyx/types/conference_list_participants_response.py,sha256=Mb9sMn_0nWwaeGMruhcweolib8xsA_Lcbw08aivCKao,1932
454
494
  telnyx/types/conference_list_response.py,sha256=i1cJ223BHClbvHbFId8kH5Yp9QMw_u_x-GMLhnsyDS8,401
495
+ telnyx/types/conference_participant_joined_webhook_event.py,sha256=wV4t8RuPy_jyoRJ1g0XBlovYLRfRMq4jIoAB3tYHByU,1703
496
+ telnyx/types/conference_participant_left_webhook_event.py,sha256=GJJgA2iKtYqHQOEpuvyNRnhmA_2LtxiU7mS4UxUWaoA,1697
497
+ telnyx/types/conference_participant_playback_ended_webhook_event.py,sha256=ONsKLwHtJzANFPTCxfTe0IWDEIOlzYf1Ep-HSjqzCKk,2138
498
+ telnyx/types/conference_participant_playback_started_webhook_event.py,sha256=JwElP7hJB7Kps9QL-ZU2xnpWVIPFnF_-yuURUUMKe9A,2144
499
+ telnyx/types/conference_participant_speak_ended_webhook_event.py,sha256=0Jztdxvj_BXGSk1kRIoqh4BaCdv06qFnA4M1etx76Mo,1860
500
+ telnyx/types/conference_participant_speak_started_webhook_event.py,sha256=Pkhl3awfg7s9txLYF9_Cnysa_DRZAZc5qIFUNDkCXvw,1866
501
+ telnyx/types/conference_playback_ended_webhook_event.py,sha256=NdYEK5WjezBqJiRNfi03jm73P23LBJYETgvNwHYkQi8,1478
502
+ telnyx/types/conference_playback_started_webhook_event.py,sha256=-0V4JlCQKNpEtk-aoL4ay1PafalZW0FM0zYFjcgvOII,1484
503
+ telnyx/types/conference_recording_saved_webhook_event.py,sha256=XG_VyVWhntw2ynuoUyJx0U77MgbZ4AyDZlWbN3YgzWk,3237
455
504
  telnyx/types/conference_retrieve_response.py,sha256=EsRuiQaIETAO_Z9_ri26w4Y5HbA_ZbuE0AWap4kRodU,310
505
+ telnyx/types/conference_speak_ended_webhook_event.py,sha256=VqWDweNl2yitluDHunosk2dfaTFYi2ZNu-LeGzqR-2w,1200
506
+ telnyx/types/conference_speak_started_webhook_event.py,sha256=7942onAJINYvycip9O2ofoEp4FKlg2bRKqIoGYp-fVM,1206
456
507
  telnyx/types/connection_list_active_calls_params.py,sha256=eIvWpeQ1o6PjG1B7fy6HFVsnuumINCCQMWs3hoRJoKI,755
457
508
  telnyx/types/connection_list_active_calls_response.py,sha256=WcB3pjgz3XToireQsgTE8lCDjQGvB3Mf2eYPOOIOtH8,1500
458
509
  telnyx/types/connection_list_params.py,sha256=76BEF_3KbrmaX48_LyUHTeIS2kCKLqQ_CtaIrIzqSsY,2141
@@ -477,6 +528,7 @@ telnyx/types/credential_inbound.py,sha256=rGgNkFyWhrTf8gH9AoRl8HMo6Ws8Rs6I83s3GZ
477
528
  telnyx/types/credential_inbound_param.py,sha256=C1qE_XhQ853j3Oz6fAnqhyEyEEa40xthASlIGj1bcBM,1991
478
529
  telnyx/types/credential_outbound.py,sha256=mC46QkajdRoTsmx_cwL8mMK0A68D2MahguaTutvDRTQ,2352
479
530
  telnyx/types/credential_outbound_param.py,sha256=_IFnpqeGKijVZIWO2xcqiyvhJiMOVRUrRJ0uWlcTeEI,2232
531
+ telnyx/types/custom_sip_header.py,sha256=ajrLT111FDNiJFWAt5InCCa9SxSiIla1JQUZlxYzVTQ,292
480
532
  telnyx/types/custom_sip_header_param.py,sha256=k42em8N3RkXfMkNWEtyv7qsW9Mqw12Z-TwUuYdT5WXI,389
481
533
  telnyx/types/custom_storage_configuration.py,sha256=RhAIsgY82BWsLvR8y5gi2xRtIJO0FaER2WKDE7C1qkc,651
482
534
  telnyx/types/custom_storage_credential_create_params.py,sha256=JzqQTnrIFKXBZ8kX1b-ZP-lkLTOFTQk9U3ZRzHZu8Fc,776
@@ -490,8 +542,10 @@ telnyx/types/customer_service_record_create_response.py,sha256=evFtX8yJ_FXEjEo0D
490
542
  telnyx/types/customer_service_record_list_params.py,sha256=Vcs2hp6aXfZtYR26ejDn2mB77dPAiLRVa-r7A2TsLSU,2432
491
543
  telnyx/types/customer_service_record_list_response.py,sha256=j83mROt0KQ45us3Lj6lBZSLEZPKGDAJzmdNpKEBIZ74,458
492
544
  telnyx/types/customer_service_record_retrieve_response.py,sha256=07_PV2iPF3H8LLaOfDJ8MugnJ9vKcj7jrnlShE4_er0,367
545
+ telnyx/types/customer_service_record_status_changed_webhook_event.py,sha256=VkR9KhEgWXU5Ad_TantPJ_Q2gBIxJFg8B83JOE_PduY,1655
493
546
  telnyx/types/customer_service_record_verify_phone_number_coverage_params.py,sha256=I8iaozlUgGYWmTUEZzsBdnrt1G_24q182yyYO5hDs3c,439
494
547
  telnyx/types/customer_service_record_verify_phone_number_coverage_response.py,sha256=jQirZgkVJG40Rm6pmbAcef7aq0QYVTwZov3Q-CDulaM,1388
548
+ telnyx/types/delivery_update_webhook_event.py,sha256=s5ull5rIhYLD58VD6sDVGnORFYY2K23acxDslvg-FeA,1153
495
549
  telnyx/types/detail_record_list_params.py,sha256=JPVUw80GtvR0650KJnA1OZ1Blo17hqRw8ZiDyzrtKBs,2021
496
550
  telnyx/types/detail_record_list_response.py,sha256=hQAQ6iyIpgjtj6zxoP8o9XxjAKXP8kNM0ONvOJrq4x8,13823
497
551
  telnyx/types/dialogflow_config_param.py,sha256=_b-DntBBdjqtmojDCUsFdsZkUpSC8fk7GHjf7vAi_SA,441
@@ -502,6 +556,7 @@ telnyx/types/dialogflow_connection_update_params.py,sha256=sYD7qggWOuuEc8ajJJbaO
502
556
  telnyx/types/dialogflow_connection_update_response.py,sha256=iH8x461sDBP4GTzwdVoOHG2iYqedYLCKD0sVkHqO1iI,834
503
557
  telnyx/types/doc_service_document.py,sha256=7SX92batc6UbJ2oUt8xRP7Ru3F2Jfg0MS9AxRFXarF4,1387
504
558
  telnyx/types/document_delete_response.py,sha256=kKs1qRGn8G_X5i-i8ktv1zZkWk44BSFm9gOJTO5uAlw,328
559
+ telnyx/types/document_generate_download_link_response.py,sha256=tAX-ZsAO8p5Xgs7Pq3rRYQ_bdTbYCyb0U7MB1w6TjOM,353
505
560
  telnyx/types/document_link_list_params.py,sha256=HyoeYzCPaJAOaygTEflL6wJWg1Ux2Icn_QUDAalsHkM,928
506
561
  telnyx/types/document_link_list_response.py,sha256=cEV3Bx6g2_uxpU1469ODamMLoYpErA4U5KCj_lt7qoQ,1049
507
562
  telnyx/types/document_list_params.py,sha256=4enb4EGHLCcy8Y4VUwYs4Fvq2o9GYmXbQeRHw0KPjkA,2066
@@ -554,9 +609,14 @@ telnyx/types/fax_application_update_params.py,sha256=FKGjBU_L6Bwt6b22g9-EMw5KP3C
554
609
  telnyx/types/fax_application_update_response.py,sha256=g4jaE6eD4PVDapMuFXEYRVAx-Il1shPKWXG9Y5AONEA,327
555
610
  telnyx/types/fax_create_params.py,sha256=5dWNYJET4yIF_8qeYYgguXtNs0w6nxvur2YD1yVr2qA,2594
556
611
  telnyx/types/fax_create_response.py,sha256=0LiA8SFITw3My107KPfJEJ5wjgvcy1PIsw9Wi2vXmRQ,271
612
+ telnyx/types/fax_delivered_webhook_event.py,sha256=OUk6LXd36jA3wkVPoTa0OEHQJzAgQrBGa7tsir6IJaA,2033
613
+ telnyx/types/fax_failed_webhook_event.py,sha256=LAmPopendd-_to3wSEzbJTczMnW3LfPRahC76q3wP9Y,1949
557
614
  telnyx/types/fax_list_params.py,sha256=LtYISzAfuZgInUJM-Obob7d_2coAfsKsGaF_WfSAtIY,2504
558
615
  telnyx/types/fax_list_response.py,sha256=EhzqiXoifMLhA7FSDcJZk8xWTGlO3Vc5uKxOKTbmpf4,314
616
+ telnyx/types/fax_media_processed_webhook_event.py,sha256=aJSpumXg7R_4vBBIb3lS7X9F-wvJVcCgOUHr-letHAM,1886
617
+ telnyx/types/fax_queued_webhook_event.py,sha256=KeZeQuBlM-b7zk9vL7kz5EIvBKRuQdR_V6mNeqk4uTU,1852
559
618
  telnyx/types/fax_retrieve_response.py,sha256=HNHPttDOk7sI5qRTJki653d_c_-CqrD_5Szeih4PLaE,275
619
+ telnyx/types/fax_sending_started_webhook_event.py,sha256=p9xk7UnQxxuzxfIA9W80r5sQbhHK9zEdb1YPohMB49Q,1878
560
620
  telnyx/types/fqdn.py,sha256=UG2PjoDPWpQw6sVEIPo5wWxa8eLjyHeSr1TZsJtwssk,1158
561
621
  telnyx/types/fqdn_connection.py,sha256=HsEtVrgYN_oTeUavZKp51Idl-zS46_O5RgU2chTQSRk,5153
562
622
  telnyx/types/fqdn_connection_create_params.py,sha256=8yuN3yHbxRXo7zZzOU2bCwSewPdshUjo2gAnq_xytmA,3549
@@ -617,6 +677,7 @@ telnyx/types/inbound_fqdn.py,sha256=gRTjhor3JBPGjVB9JDRD8ulsTn3v5Z-UydzmR9fuvoI,
617
677
  telnyx/types/inbound_fqdn_param.py,sha256=9rz2Gs4NUw-tBch4KhnoE0u_HsGnvBZqizFuO0T6kKI,3869
618
678
  telnyx/types/inbound_ip.py,sha256=GOJSmMdUMrBddHa1TSlhJvAK_XR0uYOPVYlkaU6MnFA,4134
619
679
  telnyx/types/inbound_ip_param.py,sha256=efEmlS1-T2YpvABoRio71XugjNFZ-jS1wiCg-bZx9Dw,3855
680
+ telnyx/types/inbound_message_webhook_event.py,sha256=qJlY4h4dELGTwUQJoqPoIp8VEFaWENE9bPVcVPFNKEc,6520
620
681
  telnyx/types/integration_secret.py,sha256=iod7QJKV0aqvMJHDjKJyAe4PYmQfAjCWGBTOutYjkfA,373
621
682
  telnyx/types/integration_secret_create_params.py,sha256=DoWwA0bhSj6SIljRMN7iv3ZNmQN_npNO-JOf6q-ldgc,790
622
683
  telnyx/types/integration_secret_create_response.py,sha256=-n6QbC8716Z-zGHnhFics9-Wd8KXNNfa5kKb_hn5vD8,296
@@ -794,6 +855,7 @@ telnyx/types/number_order_phone_number_update_requirement_group_response.py,sha2
794
855
  telnyx/types/number_order_phone_number_update_requirements_params.py,sha256=6oZLLdQRiNMYv3VOaojY-UGMkkBunKzYfxi4S6t9J1c,488
795
856
  telnyx/types/number_order_phone_number_update_requirements_response.py,sha256=gpBTWv98n_JccRd-mwaYkVUtNiWihdavKqHOaNylPZM,393
796
857
  telnyx/types/number_order_retrieve_response.py,sha256=1WygTrroK2bSgUhhmjmCIEVsx-TCN6gpyLdtrdAHC3k,367
858
+ telnyx/types/number_order_status_update_webhook_event.py,sha256=6-fTgz4lg6zTL6aFQWMAuNiFAmC_v7xK50w9TKlRq5c,348
797
859
  telnyx/types/number_order_update_params.py,sha256=yWf5rSyWr-POo7WNMqRI8I1f88lEy1yPRPjnAMBAFzY,532
798
860
  telnyx/types/number_order_update_response.py,sha256=vOdtpv_CwkLei1nCn2u_-qN1YYrEqRxjbqf5BfWDkK0,363
799
861
  telnyx/types/number_order_with_phone_numbers.py,sha256=mq6s2u4zP8BgkUKps5Eu63wM4_ENFPvOjoM9HCo5xrE,1579
@@ -945,6 +1007,7 @@ telnyx/types/region_in.py,sha256=Bu83TsCKERBSavJbUZZwfCLoD3s4KTA36QWzsjHp5ss,297
945
1007
  telnyx/types/region_list_response.py,sha256=63xraL2UKHy65WEzP8NokxC5F1rL_dRkjAgXBQaMrnc,865
946
1008
  telnyx/types/regulatory_requirement_retrieve_params.py,sha256=eycU8B3_UIYh6ikdRLRpIclZv3HLhlVAmS63HvdjRYE,1045
947
1009
  telnyx/types/regulatory_requirement_retrieve_response.py,sha256=ML0a3Te_vhCA3TQU4ex5jZjAdvRkIJkwVUjMtZ7v9Bw,1328
1010
+ telnyx/types/replaced_link_click_webhook_event.py,sha256=uNNc00sp7pIZ9iNcYJpIlvSNOOES3L50AszXGJvc81U,880
948
1011
  telnyx/types/report_list_mdrs_params.py,sha256=7m_OXWSKQUijlTks53XcjvRNgYxsd-hKcZJNZC5paO4,831
949
1012
  telnyx/types/report_list_mdrs_response.py,sha256=Y1V0bvqzZck5Fsz4GCImda5UeEqO8dY_tcOAK8FgACI,1958
950
1013
  telnyx/types/report_list_wdrs_params.py,sha256=1F3HOTfNH_r3v2wnw7cPkeCnZbUNytYEBHBw5I7i8wk,1132
@@ -1038,6 +1101,7 @@ telnyx/types/sim_card_retrieve_params.py,sha256=msfn5KqDidUX18bAc0mFlQA70XECzWhd
1038
1101
  telnyx/types/sim_card_retrieve_response.py,sha256=1Gnx72wKn2QvDXii7elirdIUjVEl23ZXDrq2X5O_xTI,296
1039
1102
  telnyx/types/sim_card_update_params.py,sha256=kxJfagVnXmeFJa-O6fskJcbs0uVZk5ChGZd8qSYMbrY,903
1040
1103
  telnyx/types/sim_card_update_response.py,sha256=TQ8B1JYAhOFzzpywZ_0I5AFSd_UQzX1OhphcqbwnMW8,292
1104
+ telnyx/types/sip_header.py,sha256=SBBvBzGKngaba4k0-vKQZYuwdLwCtoPglPt2C_GTzjg,339
1041
1105
  telnyx/types/sip_header_param.py,sha256=VF4Dw9UcPG0qulCDCup7wm9BAVcSAO3kmYWIQyhuZRI,406
1042
1106
  telnyx/types/siprec_connector_create_params.py,sha256=8TjCI3DJzIG29H-nzntvyHvjEFRssJ8vI5-J8KUEqO4,612
1043
1107
  telnyx/types/siprec_connector_create_response.py,sha256=5IHpw07FODSscGqXSncsLfS8Qw_WdLf_ySg8-7lRZHU,854
@@ -1051,6 +1115,9 @@ telnyx/types/stream_bidirectional_codec.py,sha256=nSsEHG1lk2cYqPKt_pKk-A-eE_7ZCC
1051
1115
  telnyx/types/stream_bidirectional_mode.py,sha256=0q0fmRopWjaa4QQAbP0kWWEdsYjYV-4S2isZPBVuxLw,235
1052
1116
  telnyx/types/stream_bidirectional_target_legs.py,sha256=MbV-S4HB92iCT3dkYUPLgHkpV0Hu5aF-TZ2tiN6qAhY,261
1053
1117
  telnyx/types/stream_codec.py,sha256=NPnM2muBky-2Emq0ZP6YJzAxwvERCiqsq6VWLDE4qyA,224
1118
+ telnyx/types/streaming_failed_webhook_event.py,sha256=99U5ZHyGW1RdGr-H6meGBnxV7f-JVuG9CWCyRI4T49w,2364
1119
+ telnyx/types/streaming_started_webhook_event.py,sha256=1hORCcvNXVPGwuPnKvXBeLqKXTDAKkCj8TpDS7tOTCg,1696
1120
+ telnyx/types/streaming_stopped_webhook_event.py,sha256=r0s21JyCa0nWqD-LFLEeUAxMUrfQMKBbN0G7kiiA-MY,1696
1054
1121
  telnyx/types/sub_number_order.py,sha256=KzlLcQFuwm6YUWPuSWmKg5qEYCEHaVgpCwS6uAlqnbU,1585
1055
1122
  telnyx/types/sub_number_order_cancel_response.py,sha256=V2Rg3ImwNq9LFBeKrt-AQrtxo4B1H9yZcG81NYC_gjw,328
1056
1123
  telnyx/types/sub_number_order_list_params.py,sha256=6ZrP75ip2NTV0vwxkRxeoHCnyKjso5FDZ-auqKj4jUQ,886
@@ -1095,7 +1162,9 @@ telnyx/types/text_to_speech_generate_speech_params.py,sha256=4t5XT6SYw2vkWyITJ08
1095
1162
  telnyx/types/text_to_speech_list_voices_params.py,sha256=csnzlAqf8BYDdk4x007Byv-PDrQnfowUak2dxBWIbSI,484
1096
1163
  telnyx/types/text_to_speech_list_voices_response.py,sha256=c1j4-VT3c_m4kJVEXfYSAoiFl8v4m9c1shHQMvnVDzU,592
1097
1164
  telnyx/types/traffic_type.py,sha256=A-AJm17wtfR_2Pw5Kv8UikoP1VO8HmdvBhcLArUMFZA,215
1165
+ telnyx/types/transcription_webhook_event.py,sha256=vcg1hLd5IFuOJHiVi1-TLYkf5ybw_18MfHueHPSmMZU,2267
1098
1166
  telnyx/types/transport_protocol.py,sha256=Gyoe_0z2H4u4wCzPnhwT8ohBi_YCSkBOtanpOM5COtA,230
1167
+ telnyx/types/unwrap_webhook_event.py,sha256=Ee8V2LA5KrQAFxBZ_2FvopKY22Ehc5zOR5qOYB15KaM,7932
1099
1168
  telnyx/types/update_regulatory_requirement_param.py,sha256=QhOyVF_pzTxrYUQOBsYMfUAZ4P-rZPlEFFEHZTvYn0A,552
1100
1169
  telnyx/types/url_shortener_settings.py,sha256=qL9sQEPrx8nejnZ0-pPtve9ki39q9mSx8PQctGSisec,845
1101
1170
  telnyx/types/url_shortener_settings_param.py,sha256=Z3QI7_Ltgktz4mU2D7MA3YHpb0X4CzaA22k9lrpcYmM,852
@@ -1869,7 +1938,7 @@ telnyx/types/wireless/detail_records_report_list_params.py,sha256=cfjsh4L_8mpDkg
1869
1938
  telnyx/types/wireless/detail_records_report_list_response.py,sha256=S_6nD0fm5EseRIZHnML-UN0-g8Q_0J1cXfg_eLNUev8,331
1870
1939
  telnyx/types/wireless/detail_records_report_retrieve_response.py,sha256=f0C8z8uo_QeCyi3nSDME4f4F3vqcy7o0MpinwDIqe_s,327
1871
1940
  telnyx/types/wireless/wdr_report.py,sha256=bxRr-dc_IW6D0E3i_PUHK-bbu9w114Qql1uoJ_znxEE,1068
1872
- telnyx-3.1.0a0.dist-info/METADATA,sha256=p5aWr5CWpT9Zjbyfth1FHwGuixKHcCb_udB7Kn42KEA,14160
1873
- telnyx-3.1.0a0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
1874
- telnyx-3.1.0a0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
1875
- telnyx-3.1.0a0.dist-info/RECORD,,
1941
+ telnyx-3.3.0a0.dist-info/METADATA,sha256=7ApzALSNb9wCbnZdW3o8C9C80XBJx0xGcbTCHLZQQx8,14160
1942
+ telnyx-3.3.0a0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
1943
+ telnyx-3.3.0a0.dist-info/licenses/LICENSE,sha256=PprdXvskBJR41_t2uhgs5rHYGME_Ek-lh2PAxKtdZs8,1046
1944
+ telnyx-3.3.0a0.dist-info/RECORD,,