telnyx 3.5.0a0__py3-none-any.whl → 3.6.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/_client.py +53 -2
- telnyx/_version.py +1 -1
- telnyx/resources/__init__.py +70 -0
- telnyx/resources/ai/conversations/conversations.py +137 -3
- telnyx/resources/ai/conversations/messages.py +1 -134
- telnyx/resources/calls/actions.py +146 -146
- telnyx/resources/calls/calls.py +4 -10
- telnyx/resources/conferences/actions.py +8 -24
- telnyx/resources/conferences/conferences.py +2 -6
- telnyx/resources/legacy/__init__.py +33 -0
- telnyx/resources/legacy/legacy.py +102 -0
- telnyx/resources/legacy/reporting/__init__.py +47 -0
- telnyx/resources/legacy/reporting/batch_detail_records/__init__.py +61 -0
- telnyx/resources/legacy/reporting/batch_detail_records/batch_detail_records.py +166 -0
- telnyx/resources/legacy/reporting/batch_detail_records/messaging.py +481 -0
- telnyx/resources/legacy/reporting/batch_detail_records/speech_to_text.py +399 -0
- telnyx/resources/legacy/reporting/batch_detail_records/voice.py +538 -0
- telnyx/resources/legacy/reporting/reporting.py +134 -0
- telnyx/resources/legacy/reporting/usage_reports/__init__.py +61 -0
- telnyx/resources/legacy/reporting/usage_reports/messaging.py +471 -0
- telnyx/resources/legacy/reporting/usage_reports/number_lookup.py +464 -0
- telnyx/resources/legacy/reporting/usage_reports/usage_reports.py +288 -0
- telnyx/resources/legacy/reporting/usage_reports/voice.py +493 -0
- telnyx/resources/oauth.py +855 -0
- telnyx/resources/oauth_clients.py +711 -0
- telnyx/resources/oauth_grants.py +349 -0
- telnyx/resources/phone_numbers/jobs.py +12 -0
- telnyx/resources/porting_orders/porting_orders.py +20 -8
- telnyx/resources/sim_cards/sim_cards.py +3 -2
- telnyx/resources/verifications/verifications.py +10 -0
- telnyx/resources/verify_profiles.py +183 -1
- telnyx/resources/well_known.py +198 -0
- telnyx/types/__init__.py +40 -0
- telnyx/types/ai/__init__.py +1 -0
- telnyx/types/ai/{conversations/message_create_params.py → conversation_add_message_params.py} +4 -4
- telnyx/types/ai/conversations/__init__.py +0 -1
- telnyx/types/ai/inference_embedding_webhook_tool_params.py +2 -0
- telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +2 -0
- telnyx/types/call_dial_params.py +2 -3
- telnyx/types/calls/action_answer_params.py +1 -2
- telnyx/types/calls/action_gather_using_ai_params.py +5 -8
- telnyx/types/calls/action_start_streaming_params.py +4 -2
- telnyx/types/calls/action_transfer_params.py +50 -0
- telnyx/types/campaign_submit_appeal_response.py +0 -3
- telnyx/types/legacy/__init__.py +3 -0
- telnyx/types/legacy/reporting/__init__.py +10 -0
- telnyx/types/legacy/reporting/batch_detail_records/__init__.py +20 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_params.py +77 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_create_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_delete_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_list_response.py +80 -0
- telnyx/types/legacy/reporting/batch_detail_records/messaging_retrieve_response.py +68 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_params.py +19 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_delete_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_list_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_retrieve_response.py +31 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_params.py +79 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_create_response.py +91 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_delete_response.py +91 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_list_response.py +102 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_fields_response.py +23 -0
- telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_response.py +91 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_params.py +17 -0
- telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_response.py +11 -0
- telnyx/types/legacy/reporting/usage_reports/__init__.py +18 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_params.py +29 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_create_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_delete_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_list_response.py +54 -0
- telnyx/types/legacy/reporting/usage_reports/messaging_retrieve_response.py +43 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_create_params.py +26 -0
- telnyx/types/legacy/reporting/usage_reports/number_lookup_list_params.py +13 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_params.py +40 -0
- telnyx/types/legacy/reporting/usage_reports/voice_create_response.py +48 -0
- telnyx/types/legacy/reporting/usage_reports/voice_delete_response.py +48 -0
- telnyx/types/legacy/reporting/usage_reports/voice_list_params.py +15 -0
- telnyx/types/legacy/reporting/usage_reports/voice_list_response.py +59 -0
- telnyx/types/legacy/reporting/usage_reports/voice_retrieve_response.py +48 -0
- telnyx/types/number_order_status_update_webhook_event.py +30 -4
- telnyx/types/oauth_client_create_params.py +39 -0
- telnyx/types/oauth_client_create_response.py +63 -0
- telnyx/types/oauth_client_list_params.py +38 -0
- telnyx/types/oauth_client_list_response.py +79 -0
- telnyx/types/oauth_client_retrieve_response.py +63 -0
- telnyx/types/oauth_client_update_params.py +36 -0
- telnyx/types/oauth_client_update_response.py +63 -0
- telnyx/types/oauth_grant_delete_response.py +33 -0
- telnyx/types/oauth_grant_list_params.py +17 -0
- telnyx/types/oauth_grant_list_response.py +49 -0
- telnyx/types/oauth_grant_retrieve_response.py +33 -0
- telnyx/types/oauth_grants_params.py +15 -0
- telnyx/types/oauth_grants_response.py +10 -0
- telnyx/types/oauth_introspect_params.py +12 -0
- telnyx/types/oauth_introspect_response.py +30 -0
- telnyx/types/oauth_register_params.py +39 -0
- telnyx/types/oauth_register_response.py +45 -0
- telnyx/types/oauth_retrieve_authorize_params.py +30 -0
- telnyx/types/oauth_retrieve_jwks_response.py +25 -0
- telnyx/types/oauth_retrieve_response.py +47 -0
- telnyx/types/oauth_token_params.py +33 -0
- telnyx/types/oauth_token_response.py +25 -0
- telnyx/types/phone_number_delete_response.py +7 -0
- telnyx/types/phone_number_detailed.py +7 -0
- telnyx/types/phone_number_list_params.py +6 -0
- telnyx/types/phone_numbers/job_update_batch_params.py +7 -0
- telnyx/types/porting_order.py +3 -0
- telnyx/types/porting_order_create_params.py +3 -0
- telnyx/types/porting_order_list_params.py +52 -31
- telnyx/types/porting_order_update_params.py +2 -0
- telnyx/types/porting_orders/phone_number_configuration_list_params.py +19 -19
- telnyx/types/shared/simple_sim_card.py +15 -0
- telnyx/types/sim_card.py +12 -0
- telnyx/types/sim_card_update_params.py +2 -1
- telnyx/types/stream_bidirectional_codec.py +1 -1
- telnyx/types/stream_codec.py +1 -1
- telnyx/types/verification_trigger_call_params.py +7 -0
- telnyx/types/verify_profile_create_template_params.py +12 -0
- telnyx/types/verify_profile_create_template_response.py +17 -0
- telnyx/types/verify_profile_update_template_params.py +12 -0
- telnyx/types/verify_profile_update_template_response.py +17 -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-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/METADATA +1 -1
- {telnyx-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/RECORD +128 -46
- {telnyx-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/WHEEL +0 -0
- {telnyx-3.5.0a0.dist-info → telnyx-3.6.0a0.dist-info}/licenses/LICENSE +0 -0
telnyx/resources/calls/calls.py
CHANGED
|
@@ -114,7 +114,7 @@ class CallsResource(SyncAPIResource):
|
|
|
114
114
|
sound_modifications: SoundModificationsParam | Omit = omit,
|
|
115
115
|
stream_bidirectional_codec: StreamBidirectionalCodec | Omit = omit,
|
|
116
116
|
stream_bidirectional_mode: StreamBidirectionalMode | Omit = omit,
|
|
117
|
-
stream_bidirectional_sampling_rate: Literal[8000, 16000, 48000] | Omit = omit,
|
|
117
|
+
stream_bidirectional_sampling_rate: Literal[8000, 16000, 22050, 24000, 48000] | Omit = omit,
|
|
118
118
|
stream_bidirectional_target_legs: StreamBidirectionalTargetLegs | Omit = omit,
|
|
119
119
|
stream_codec: StreamCodec | Omit = omit,
|
|
120
120
|
stream_establish_before_call_originate: bool | Omit = omit,
|
|
@@ -141,9 +141,7 @@ class CallsResource(SyncAPIResource):
|
|
|
141
141
|
include a `call_leg_id` which can be used to correlate the command with
|
|
142
142
|
subsequent webhooks.
|
|
143
143
|
|
|
144
|
-
**Expected Webhooks
|
|
145
|
-
[schema](https://developers.telnyx.com/api/call-control/dial-call#callbacks)
|
|
146
|
-
below):**
|
|
144
|
+
**Expected Webhooks:**
|
|
147
145
|
|
|
148
146
|
- `call.initiated`
|
|
149
147
|
- `call.answered` or `call.hangup`
|
|
@@ -286,7 +284,6 @@ class CallsResource(SyncAPIResource):
|
|
|
286
284
|
|
|
287
285
|
stream_codec: Specifies the codec to be used for the streamed audio. When set to 'default' or
|
|
288
286
|
when transcoding is not possible, the codec from the call will be used.
|
|
289
|
-
Currently, transcoding is only supported between PCMU and PCMA codecs.
|
|
290
287
|
|
|
291
288
|
stream_establish_before_call_originate: Establish websocket connection before dialing the destination. This is useful
|
|
292
289
|
for cases where the websocket connection takes a long time to establish.
|
|
@@ -494,7 +491,7 @@ class AsyncCallsResource(AsyncAPIResource):
|
|
|
494
491
|
sound_modifications: SoundModificationsParam | Omit = omit,
|
|
495
492
|
stream_bidirectional_codec: StreamBidirectionalCodec | Omit = omit,
|
|
496
493
|
stream_bidirectional_mode: StreamBidirectionalMode | Omit = omit,
|
|
497
|
-
stream_bidirectional_sampling_rate: Literal[8000, 16000, 48000] | Omit = omit,
|
|
494
|
+
stream_bidirectional_sampling_rate: Literal[8000, 16000, 22050, 24000, 48000] | Omit = omit,
|
|
498
495
|
stream_bidirectional_target_legs: StreamBidirectionalTargetLegs | Omit = omit,
|
|
499
496
|
stream_codec: StreamCodec | Omit = omit,
|
|
500
497
|
stream_establish_before_call_originate: bool | Omit = omit,
|
|
@@ -521,9 +518,7 @@ class AsyncCallsResource(AsyncAPIResource):
|
|
|
521
518
|
include a `call_leg_id` which can be used to correlate the command with
|
|
522
519
|
subsequent webhooks.
|
|
523
520
|
|
|
524
|
-
**Expected Webhooks
|
|
525
|
-
[schema](https://developers.telnyx.com/api/call-control/dial-call#callbacks)
|
|
526
|
-
below):**
|
|
521
|
+
**Expected Webhooks:**
|
|
527
522
|
|
|
528
523
|
- `call.initiated`
|
|
529
524
|
- `call.answered` or `call.hangup`
|
|
@@ -666,7 +661,6 @@ class AsyncCallsResource(AsyncAPIResource):
|
|
|
666
661
|
|
|
667
662
|
stream_codec: Specifies the codec to be used for the streamed audio. When set to 'default' or
|
|
668
663
|
when transcoding is not possible, the codec from the call will be used.
|
|
669
|
-
Currently, transcoding is only supported between PCMU and PCMA codecs.
|
|
670
664
|
|
|
671
665
|
stream_establish_before_call_originate: Establish websocket connection before dialing the destination. This is useful
|
|
672
666
|
for cases where the websocket connection takes a long time to establish.
|
|
@@ -221,9 +221,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
221
221
|
certain amount of active participants, as set by the `max_participants`
|
|
222
222
|
parameter in conference creation request.
|
|
223
223
|
|
|
224
|
-
**Expected Webhooks
|
|
225
|
-
[callback schema](https://developers.telnyx.com/api/call-control/join-conference#callbacks)
|
|
226
|
-
below):**
|
|
224
|
+
**Expected Webhooks:**
|
|
227
225
|
|
|
228
226
|
- `conference.participant.joined`
|
|
229
227
|
- `conference.participant.left`
|
|
@@ -334,9 +332,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
334
332
|
"""
|
|
335
333
|
Removes a call leg from a conference and moves it back to parked state.
|
|
336
334
|
|
|
337
|
-
**Expected Webhooks
|
|
338
|
-
[callback schema](https://developers.telnyx.com/api/call-control/leave-conference#callbacks)
|
|
339
|
-
below):**
|
|
335
|
+
**Expected Webhooks:**
|
|
340
336
|
|
|
341
337
|
- `conference.participant.left`
|
|
342
338
|
|
|
@@ -589,9 +585,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
589
585
|
Recording will stop on conference end, or via
|
|
590
586
|
the Stop Recording command.
|
|
591
587
|
|
|
592
|
-
**Expected Webhooks
|
|
593
|
-
[callback schema](https://developers.telnyx.com/api/call-control/start-conference-recording#callbacks)
|
|
594
|
-
below):**
|
|
588
|
+
**Expected Webhooks:**
|
|
595
589
|
|
|
596
590
|
- `conference.recording.saved`
|
|
597
591
|
|
|
@@ -655,9 +649,7 @@ class ActionsResource(SyncAPIResource):
|
|
|
655
649
|
"""
|
|
656
650
|
Stop recording the conference.
|
|
657
651
|
|
|
658
|
-
**Expected Webhooks
|
|
659
|
-
[callback schema](https://developers.telnyx.com/api/call-control/stop-conference-recording#callbacks)
|
|
660
|
-
below):**
|
|
652
|
+
**Expected Webhooks:**
|
|
661
653
|
|
|
662
654
|
- `conference.recording.saved`
|
|
663
655
|
|
|
@@ -1109,9 +1101,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
1109
1101
|
certain amount of active participants, as set by the `max_participants`
|
|
1110
1102
|
parameter in conference creation request.
|
|
1111
1103
|
|
|
1112
|
-
**Expected Webhooks
|
|
1113
|
-
[callback schema](https://developers.telnyx.com/api/call-control/join-conference#callbacks)
|
|
1114
|
-
below):**
|
|
1104
|
+
**Expected Webhooks:**
|
|
1115
1105
|
|
|
1116
1106
|
- `conference.participant.joined`
|
|
1117
1107
|
- `conference.participant.left`
|
|
@@ -1222,9 +1212,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
1222
1212
|
"""
|
|
1223
1213
|
Removes a call leg from a conference and moves it back to parked state.
|
|
1224
1214
|
|
|
1225
|
-
**Expected Webhooks
|
|
1226
|
-
[callback schema](https://developers.telnyx.com/api/call-control/leave-conference#callbacks)
|
|
1227
|
-
below):**
|
|
1215
|
+
**Expected Webhooks:**
|
|
1228
1216
|
|
|
1229
1217
|
- `conference.participant.left`
|
|
1230
1218
|
|
|
@@ -1479,9 +1467,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
1479
1467
|
Recording will stop on conference end, or via
|
|
1480
1468
|
the Stop Recording command.
|
|
1481
1469
|
|
|
1482
|
-
**Expected Webhooks
|
|
1483
|
-
[callback schema](https://developers.telnyx.com/api/call-control/start-conference-recording#callbacks)
|
|
1484
|
-
below):**
|
|
1470
|
+
**Expected Webhooks:**
|
|
1485
1471
|
|
|
1486
1472
|
- `conference.recording.saved`
|
|
1487
1473
|
|
|
@@ -1545,9 +1531,7 @@ class AsyncActionsResource(AsyncAPIResource):
|
|
|
1545
1531
|
"""
|
|
1546
1532
|
Stop recording the conference.
|
|
1547
1533
|
|
|
1548
|
-
**Expected Webhooks
|
|
1549
|
-
[callback schema](https://developers.telnyx.com/api/call-control/stop-conference-recording#callbacks)
|
|
1550
|
-
below):**
|
|
1534
|
+
**Expected Webhooks:**
|
|
1551
1535
|
|
|
1552
1536
|
- `conference.recording.saved`
|
|
1553
1537
|
|
|
@@ -86,9 +86,7 @@ class ConferencesResource(SyncAPIResource):
|
|
|
86
86
|
left the conference or after 4 hours regardless of the number of active
|
|
87
87
|
participants.
|
|
88
88
|
|
|
89
|
-
**Expected Webhooks
|
|
90
|
-
[callback schema](https://developers.telnyx.com/api/call-control/create-conference#callbacks)
|
|
91
|
-
below):**
|
|
89
|
+
**Expected Webhooks:**
|
|
92
90
|
|
|
93
91
|
- `conference.created`
|
|
94
92
|
- `conference.participant.joined`
|
|
@@ -360,9 +358,7 @@ class AsyncConferencesResource(AsyncAPIResource):
|
|
|
360
358
|
left the conference or after 4 hours regardless of the number of active
|
|
361
359
|
participants.
|
|
362
360
|
|
|
363
|
-
**Expected Webhooks
|
|
364
|
-
[callback schema](https://developers.telnyx.com/api/call-control/create-conference#callbacks)
|
|
365
|
-
below):**
|
|
361
|
+
**Expected Webhooks:**
|
|
366
362
|
|
|
367
363
|
- `conference.created`
|
|
368
364
|
- `conference.participant.joined`
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .legacy import (
|
|
4
|
+
LegacyResource,
|
|
5
|
+
AsyncLegacyResource,
|
|
6
|
+
LegacyResourceWithRawResponse,
|
|
7
|
+
AsyncLegacyResourceWithRawResponse,
|
|
8
|
+
LegacyResourceWithStreamingResponse,
|
|
9
|
+
AsyncLegacyResourceWithStreamingResponse,
|
|
10
|
+
)
|
|
11
|
+
from .reporting import (
|
|
12
|
+
ReportingResource,
|
|
13
|
+
AsyncReportingResource,
|
|
14
|
+
ReportingResourceWithRawResponse,
|
|
15
|
+
AsyncReportingResourceWithRawResponse,
|
|
16
|
+
ReportingResourceWithStreamingResponse,
|
|
17
|
+
AsyncReportingResourceWithStreamingResponse,
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"ReportingResource",
|
|
22
|
+
"AsyncReportingResource",
|
|
23
|
+
"ReportingResourceWithRawResponse",
|
|
24
|
+
"AsyncReportingResourceWithRawResponse",
|
|
25
|
+
"ReportingResourceWithStreamingResponse",
|
|
26
|
+
"AsyncReportingResourceWithStreamingResponse",
|
|
27
|
+
"LegacyResource",
|
|
28
|
+
"AsyncLegacyResource",
|
|
29
|
+
"LegacyResourceWithRawResponse",
|
|
30
|
+
"AsyncLegacyResourceWithRawResponse",
|
|
31
|
+
"LegacyResourceWithStreamingResponse",
|
|
32
|
+
"AsyncLegacyResourceWithStreamingResponse",
|
|
33
|
+
]
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from ..._compat import cached_property
|
|
6
|
+
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
7
|
+
from .reporting.reporting import (
|
|
8
|
+
ReportingResource,
|
|
9
|
+
AsyncReportingResource,
|
|
10
|
+
ReportingResourceWithRawResponse,
|
|
11
|
+
AsyncReportingResourceWithRawResponse,
|
|
12
|
+
ReportingResourceWithStreamingResponse,
|
|
13
|
+
AsyncReportingResourceWithStreamingResponse,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
__all__ = ["LegacyResource", "AsyncLegacyResource"]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class LegacyResource(SyncAPIResource):
|
|
20
|
+
@cached_property
|
|
21
|
+
def reporting(self) -> ReportingResource:
|
|
22
|
+
return ReportingResource(self._client)
|
|
23
|
+
|
|
24
|
+
@cached_property
|
|
25
|
+
def with_raw_response(self) -> LegacyResourceWithRawResponse:
|
|
26
|
+
"""
|
|
27
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
28
|
+
the raw response object instead of the parsed content.
|
|
29
|
+
|
|
30
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#accessing-raw-response-data-eg-headers
|
|
31
|
+
"""
|
|
32
|
+
return LegacyResourceWithRawResponse(self)
|
|
33
|
+
|
|
34
|
+
@cached_property
|
|
35
|
+
def with_streaming_response(self) -> LegacyResourceWithStreamingResponse:
|
|
36
|
+
"""
|
|
37
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
38
|
+
|
|
39
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#with_streaming_response
|
|
40
|
+
"""
|
|
41
|
+
return LegacyResourceWithStreamingResponse(self)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class AsyncLegacyResource(AsyncAPIResource):
|
|
45
|
+
@cached_property
|
|
46
|
+
def reporting(self) -> AsyncReportingResource:
|
|
47
|
+
return AsyncReportingResource(self._client)
|
|
48
|
+
|
|
49
|
+
@cached_property
|
|
50
|
+
def with_raw_response(self) -> AsyncLegacyResourceWithRawResponse:
|
|
51
|
+
"""
|
|
52
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
53
|
+
the raw response object instead of the parsed content.
|
|
54
|
+
|
|
55
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#accessing-raw-response-data-eg-headers
|
|
56
|
+
"""
|
|
57
|
+
return AsyncLegacyResourceWithRawResponse(self)
|
|
58
|
+
|
|
59
|
+
@cached_property
|
|
60
|
+
def with_streaming_response(self) -> AsyncLegacyResourceWithStreamingResponse:
|
|
61
|
+
"""
|
|
62
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
63
|
+
|
|
64
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#with_streaming_response
|
|
65
|
+
"""
|
|
66
|
+
return AsyncLegacyResourceWithStreamingResponse(self)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class LegacyResourceWithRawResponse:
|
|
70
|
+
def __init__(self, legacy: LegacyResource) -> None:
|
|
71
|
+
self._legacy = legacy
|
|
72
|
+
|
|
73
|
+
@cached_property
|
|
74
|
+
def reporting(self) -> ReportingResourceWithRawResponse:
|
|
75
|
+
return ReportingResourceWithRawResponse(self._legacy.reporting)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
class AsyncLegacyResourceWithRawResponse:
|
|
79
|
+
def __init__(self, legacy: AsyncLegacyResource) -> None:
|
|
80
|
+
self._legacy = legacy
|
|
81
|
+
|
|
82
|
+
@cached_property
|
|
83
|
+
def reporting(self) -> AsyncReportingResourceWithRawResponse:
|
|
84
|
+
return AsyncReportingResourceWithRawResponse(self._legacy.reporting)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class LegacyResourceWithStreamingResponse:
|
|
88
|
+
def __init__(self, legacy: LegacyResource) -> None:
|
|
89
|
+
self._legacy = legacy
|
|
90
|
+
|
|
91
|
+
@cached_property
|
|
92
|
+
def reporting(self) -> ReportingResourceWithStreamingResponse:
|
|
93
|
+
return ReportingResourceWithStreamingResponse(self._legacy.reporting)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
class AsyncLegacyResourceWithStreamingResponse:
|
|
97
|
+
def __init__(self, legacy: AsyncLegacyResource) -> None:
|
|
98
|
+
self._legacy = legacy
|
|
99
|
+
|
|
100
|
+
@cached_property
|
|
101
|
+
def reporting(self) -> AsyncReportingResourceWithStreamingResponse:
|
|
102
|
+
return AsyncReportingResourceWithStreamingResponse(self._legacy.reporting)
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .reporting import (
|
|
4
|
+
ReportingResource,
|
|
5
|
+
AsyncReportingResource,
|
|
6
|
+
ReportingResourceWithRawResponse,
|
|
7
|
+
AsyncReportingResourceWithRawResponse,
|
|
8
|
+
ReportingResourceWithStreamingResponse,
|
|
9
|
+
AsyncReportingResourceWithStreamingResponse,
|
|
10
|
+
)
|
|
11
|
+
from .usage_reports import (
|
|
12
|
+
UsageReportsResource,
|
|
13
|
+
AsyncUsageReportsResource,
|
|
14
|
+
UsageReportsResourceWithRawResponse,
|
|
15
|
+
AsyncUsageReportsResourceWithRawResponse,
|
|
16
|
+
UsageReportsResourceWithStreamingResponse,
|
|
17
|
+
AsyncUsageReportsResourceWithStreamingResponse,
|
|
18
|
+
)
|
|
19
|
+
from .batch_detail_records import (
|
|
20
|
+
BatchDetailRecordsResource,
|
|
21
|
+
AsyncBatchDetailRecordsResource,
|
|
22
|
+
BatchDetailRecordsResourceWithRawResponse,
|
|
23
|
+
AsyncBatchDetailRecordsResourceWithRawResponse,
|
|
24
|
+
BatchDetailRecordsResourceWithStreamingResponse,
|
|
25
|
+
AsyncBatchDetailRecordsResourceWithStreamingResponse,
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
__all__ = [
|
|
29
|
+
"BatchDetailRecordsResource",
|
|
30
|
+
"AsyncBatchDetailRecordsResource",
|
|
31
|
+
"BatchDetailRecordsResourceWithRawResponse",
|
|
32
|
+
"AsyncBatchDetailRecordsResourceWithRawResponse",
|
|
33
|
+
"BatchDetailRecordsResourceWithStreamingResponse",
|
|
34
|
+
"AsyncBatchDetailRecordsResourceWithStreamingResponse",
|
|
35
|
+
"UsageReportsResource",
|
|
36
|
+
"AsyncUsageReportsResource",
|
|
37
|
+
"UsageReportsResourceWithRawResponse",
|
|
38
|
+
"AsyncUsageReportsResourceWithRawResponse",
|
|
39
|
+
"UsageReportsResourceWithStreamingResponse",
|
|
40
|
+
"AsyncUsageReportsResourceWithStreamingResponse",
|
|
41
|
+
"ReportingResource",
|
|
42
|
+
"AsyncReportingResource",
|
|
43
|
+
"ReportingResourceWithRawResponse",
|
|
44
|
+
"AsyncReportingResourceWithRawResponse",
|
|
45
|
+
"ReportingResourceWithStreamingResponse",
|
|
46
|
+
"AsyncReportingResourceWithStreamingResponse",
|
|
47
|
+
]
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .voice import (
|
|
4
|
+
VoiceResource,
|
|
5
|
+
AsyncVoiceResource,
|
|
6
|
+
VoiceResourceWithRawResponse,
|
|
7
|
+
AsyncVoiceResourceWithRawResponse,
|
|
8
|
+
VoiceResourceWithStreamingResponse,
|
|
9
|
+
AsyncVoiceResourceWithStreamingResponse,
|
|
10
|
+
)
|
|
11
|
+
from .messaging import (
|
|
12
|
+
MessagingResource,
|
|
13
|
+
AsyncMessagingResource,
|
|
14
|
+
MessagingResourceWithRawResponse,
|
|
15
|
+
AsyncMessagingResourceWithRawResponse,
|
|
16
|
+
MessagingResourceWithStreamingResponse,
|
|
17
|
+
AsyncMessagingResourceWithStreamingResponse,
|
|
18
|
+
)
|
|
19
|
+
from .speech_to_text import (
|
|
20
|
+
SpeechToTextResource,
|
|
21
|
+
AsyncSpeechToTextResource,
|
|
22
|
+
SpeechToTextResourceWithRawResponse,
|
|
23
|
+
AsyncSpeechToTextResourceWithRawResponse,
|
|
24
|
+
SpeechToTextResourceWithStreamingResponse,
|
|
25
|
+
AsyncSpeechToTextResourceWithStreamingResponse,
|
|
26
|
+
)
|
|
27
|
+
from .batch_detail_records import (
|
|
28
|
+
BatchDetailRecordsResource,
|
|
29
|
+
AsyncBatchDetailRecordsResource,
|
|
30
|
+
BatchDetailRecordsResourceWithRawResponse,
|
|
31
|
+
AsyncBatchDetailRecordsResourceWithRawResponse,
|
|
32
|
+
BatchDetailRecordsResourceWithStreamingResponse,
|
|
33
|
+
AsyncBatchDetailRecordsResourceWithStreamingResponse,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
__all__ = [
|
|
37
|
+
"MessagingResource",
|
|
38
|
+
"AsyncMessagingResource",
|
|
39
|
+
"MessagingResourceWithRawResponse",
|
|
40
|
+
"AsyncMessagingResourceWithRawResponse",
|
|
41
|
+
"MessagingResourceWithStreamingResponse",
|
|
42
|
+
"AsyncMessagingResourceWithStreamingResponse",
|
|
43
|
+
"SpeechToTextResource",
|
|
44
|
+
"AsyncSpeechToTextResource",
|
|
45
|
+
"SpeechToTextResourceWithRawResponse",
|
|
46
|
+
"AsyncSpeechToTextResourceWithRawResponse",
|
|
47
|
+
"SpeechToTextResourceWithStreamingResponse",
|
|
48
|
+
"AsyncSpeechToTextResourceWithStreamingResponse",
|
|
49
|
+
"VoiceResource",
|
|
50
|
+
"AsyncVoiceResource",
|
|
51
|
+
"VoiceResourceWithRawResponse",
|
|
52
|
+
"AsyncVoiceResourceWithRawResponse",
|
|
53
|
+
"VoiceResourceWithStreamingResponse",
|
|
54
|
+
"AsyncVoiceResourceWithStreamingResponse",
|
|
55
|
+
"BatchDetailRecordsResource",
|
|
56
|
+
"AsyncBatchDetailRecordsResource",
|
|
57
|
+
"BatchDetailRecordsResourceWithRawResponse",
|
|
58
|
+
"AsyncBatchDetailRecordsResourceWithRawResponse",
|
|
59
|
+
"BatchDetailRecordsResourceWithStreamingResponse",
|
|
60
|
+
"AsyncBatchDetailRecordsResourceWithStreamingResponse",
|
|
61
|
+
]
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from .voice import (
|
|
6
|
+
VoiceResource,
|
|
7
|
+
AsyncVoiceResource,
|
|
8
|
+
VoiceResourceWithRawResponse,
|
|
9
|
+
AsyncVoiceResourceWithRawResponse,
|
|
10
|
+
VoiceResourceWithStreamingResponse,
|
|
11
|
+
AsyncVoiceResourceWithStreamingResponse,
|
|
12
|
+
)
|
|
13
|
+
from .messaging import (
|
|
14
|
+
MessagingResource,
|
|
15
|
+
AsyncMessagingResource,
|
|
16
|
+
MessagingResourceWithRawResponse,
|
|
17
|
+
AsyncMessagingResourceWithRawResponse,
|
|
18
|
+
MessagingResourceWithStreamingResponse,
|
|
19
|
+
AsyncMessagingResourceWithStreamingResponse,
|
|
20
|
+
)
|
|
21
|
+
from ....._compat import cached_property
|
|
22
|
+
from ....._resource import SyncAPIResource, AsyncAPIResource
|
|
23
|
+
from .speech_to_text import (
|
|
24
|
+
SpeechToTextResource,
|
|
25
|
+
AsyncSpeechToTextResource,
|
|
26
|
+
SpeechToTextResourceWithRawResponse,
|
|
27
|
+
AsyncSpeechToTextResourceWithRawResponse,
|
|
28
|
+
SpeechToTextResourceWithStreamingResponse,
|
|
29
|
+
AsyncSpeechToTextResourceWithStreamingResponse,
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
__all__ = ["BatchDetailRecordsResource", "AsyncBatchDetailRecordsResource"]
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class BatchDetailRecordsResource(SyncAPIResource):
|
|
36
|
+
@cached_property
|
|
37
|
+
def messaging(self) -> MessagingResource:
|
|
38
|
+
return MessagingResource(self._client)
|
|
39
|
+
|
|
40
|
+
@cached_property
|
|
41
|
+
def speech_to_text(self) -> SpeechToTextResource:
|
|
42
|
+
return SpeechToTextResource(self._client)
|
|
43
|
+
|
|
44
|
+
@cached_property
|
|
45
|
+
def voice(self) -> VoiceResource:
|
|
46
|
+
return VoiceResource(self._client)
|
|
47
|
+
|
|
48
|
+
@cached_property
|
|
49
|
+
def with_raw_response(self) -> BatchDetailRecordsResourceWithRawResponse:
|
|
50
|
+
"""
|
|
51
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
52
|
+
the raw response object instead of the parsed content.
|
|
53
|
+
|
|
54
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#accessing-raw-response-data-eg-headers
|
|
55
|
+
"""
|
|
56
|
+
return BatchDetailRecordsResourceWithRawResponse(self)
|
|
57
|
+
|
|
58
|
+
@cached_property
|
|
59
|
+
def with_streaming_response(self) -> BatchDetailRecordsResourceWithStreamingResponse:
|
|
60
|
+
"""
|
|
61
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
62
|
+
|
|
63
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#with_streaming_response
|
|
64
|
+
"""
|
|
65
|
+
return BatchDetailRecordsResourceWithStreamingResponse(self)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
class AsyncBatchDetailRecordsResource(AsyncAPIResource):
|
|
69
|
+
@cached_property
|
|
70
|
+
def messaging(self) -> AsyncMessagingResource:
|
|
71
|
+
return AsyncMessagingResource(self._client)
|
|
72
|
+
|
|
73
|
+
@cached_property
|
|
74
|
+
def speech_to_text(self) -> AsyncSpeechToTextResource:
|
|
75
|
+
return AsyncSpeechToTextResource(self._client)
|
|
76
|
+
|
|
77
|
+
@cached_property
|
|
78
|
+
def voice(self) -> AsyncVoiceResource:
|
|
79
|
+
return AsyncVoiceResource(self._client)
|
|
80
|
+
|
|
81
|
+
@cached_property
|
|
82
|
+
def with_raw_response(self) -> AsyncBatchDetailRecordsResourceWithRawResponse:
|
|
83
|
+
"""
|
|
84
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
85
|
+
the raw response object instead of the parsed content.
|
|
86
|
+
|
|
87
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#accessing-raw-response-data-eg-headers
|
|
88
|
+
"""
|
|
89
|
+
return AsyncBatchDetailRecordsResourceWithRawResponse(self)
|
|
90
|
+
|
|
91
|
+
@cached_property
|
|
92
|
+
def with_streaming_response(self) -> AsyncBatchDetailRecordsResourceWithStreamingResponse:
|
|
93
|
+
"""
|
|
94
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
95
|
+
|
|
96
|
+
For more information, see https://www.github.com/team-telnyx/telnyx-python#with_streaming_response
|
|
97
|
+
"""
|
|
98
|
+
return AsyncBatchDetailRecordsResourceWithStreamingResponse(self)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
class BatchDetailRecordsResourceWithRawResponse:
|
|
102
|
+
def __init__(self, batch_detail_records: BatchDetailRecordsResource) -> None:
|
|
103
|
+
self._batch_detail_records = batch_detail_records
|
|
104
|
+
|
|
105
|
+
@cached_property
|
|
106
|
+
def messaging(self) -> MessagingResourceWithRawResponse:
|
|
107
|
+
return MessagingResourceWithRawResponse(self._batch_detail_records.messaging)
|
|
108
|
+
|
|
109
|
+
@cached_property
|
|
110
|
+
def speech_to_text(self) -> SpeechToTextResourceWithRawResponse:
|
|
111
|
+
return SpeechToTextResourceWithRawResponse(self._batch_detail_records.speech_to_text)
|
|
112
|
+
|
|
113
|
+
@cached_property
|
|
114
|
+
def voice(self) -> VoiceResourceWithRawResponse:
|
|
115
|
+
return VoiceResourceWithRawResponse(self._batch_detail_records.voice)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
class AsyncBatchDetailRecordsResourceWithRawResponse:
|
|
119
|
+
def __init__(self, batch_detail_records: AsyncBatchDetailRecordsResource) -> None:
|
|
120
|
+
self._batch_detail_records = batch_detail_records
|
|
121
|
+
|
|
122
|
+
@cached_property
|
|
123
|
+
def messaging(self) -> AsyncMessagingResourceWithRawResponse:
|
|
124
|
+
return AsyncMessagingResourceWithRawResponse(self._batch_detail_records.messaging)
|
|
125
|
+
|
|
126
|
+
@cached_property
|
|
127
|
+
def speech_to_text(self) -> AsyncSpeechToTextResourceWithRawResponse:
|
|
128
|
+
return AsyncSpeechToTextResourceWithRawResponse(self._batch_detail_records.speech_to_text)
|
|
129
|
+
|
|
130
|
+
@cached_property
|
|
131
|
+
def voice(self) -> AsyncVoiceResourceWithRawResponse:
|
|
132
|
+
return AsyncVoiceResourceWithRawResponse(self._batch_detail_records.voice)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
class BatchDetailRecordsResourceWithStreamingResponse:
|
|
136
|
+
def __init__(self, batch_detail_records: BatchDetailRecordsResource) -> None:
|
|
137
|
+
self._batch_detail_records = batch_detail_records
|
|
138
|
+
|
|
139
|
+
@cached_property
|
|
140
|
+
def messaging(self) -> MessagingResourceWithStreamingResponse:
|
|
141
|
+
return MessagingResourceWithStreamingResponse(self._batch_detail_records.messaging)
|
|
142
|
+
|
|
143
|
+
@cached_property
|
|
144
|
+
def speech_to_text(self) -> SpeechToTextResourceWithStreamingResponse:
|
|
145
|
+
return SpeechToTextResourceWithStreamingResponse(self._batch_detail_records.speech_to_text)
|
|
146
|
+
|
|
147
|
+
@cached_property
|
|
148
|
+
def voice(self) -> VoiceResourceWithStreamingResponse:
|
|
149
|
+
return VoiceResourceWithStreamingResponse(self._batch_detail_records.voice)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
class AsyncBatchDetailRecordsResourceWithStreamingResponse:
|
|
153
|
+
def __init__(self, batch_detail_records: AsyncBatchDetailRecordsResource) -> None:
|
|
154
|
+
self._batch_detail_records = batch_detail_records
|
|
155
|
+
|
|
156
|
+
@cached_property
|
|
157
|
+
def messaging(self) -> AsyncMessagingResourceWithStreamingResponse:
|
|
158
|
+
return AsyncMessagingResourceWithStreamingResponse(self._batch_detail_records.messaging)
|
|
159
|
+
|
|
160
|
+
@cached_property
|
|
161
|
+
def speech_to_text(self) -> AsyncSpeechToTextResourceWithStreamingResponse:
|
|
162
|
+
return AsyncSpeechToTextResourceWithStreamingResponse(self._batch_detail_records.speech_to_text)
|
|
163
|
+
|
|
164
|
+
@cached_property
|
|
165
|
+
def voice(self) -> AsyncVoiceResourceWithStreamingResponse:
|
|
166
|
+
return AsyncVoiceResourceWithStreamingResponse(self._batch_detail_records.voice)
|