telnyx 3.5.0a0__py3-none-any.whl → 3.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of telnyx might be problematic. Click here for more details.

Files changed (224) hide show
  1. telnyx/_client.py +56 -756
  2. telnyx/_version.py +1 -1
  3. telnyx/resources/__init__.py +70 -0
  4. telnyx/resources/advanced_orders.py +63 -63
  5. telnyx/resources/ai/assistants/assistants.py +15 -17
  6. telnyx/resources/ai/assistants/versions.py +13 -15
  7. telnyx/resources/ai/conversations/conversations.py +137 -3
  8. telnyx/resources/ai/conversations/messages.py +1 -134
  9. telnyx/resources/brand/brand.py +8 -4
  10. telnyx/resources/calls/actions.py +154 -150
  11. telnyx/resources/calls/calls.py +18 -10
  12. telnyx/resources/conferences/actions.py +8 -24
  13. telnyx/resources/conferences/conferences.py +2 -6
  14. telnyx/resources/documents.py +242 -37
  15. telnyx/resources/legacy/__init__.py +33 -0
  16. telnyx/resources/legacy/legacy.py +102 -0
  17. telnyx/resources/legacy/reporting/__init__.py +47 -0
  18. telnyx/resources/legacy/reporting/batch_detail_records/__init__.py +61 -0
  19. telnyx/resources/legacy/reporting/batch_detail_records/batch_detail_records.py +166 -0
  20. telnyx/resources/legacy/reporting/batch_detail_records/messaging.py +482 -0
  21. telnyx/resources/legacy/reporting/batch_detail_records/speech_to_text.py +399 -0
  22. telnyx/resources/legacy/reporting/batch_detail_records/voice.py +539 -0
  23. telnyx/resources/legacy/reporting/reporting.py +134 -0
  24. telnyx/resources/legacy/reporting/usage_reports/__init__.py +61 -0
  25. telnyx/resources/legacy/reporting/usage_reports/messaging.py +471 -0
  26. telnyx/resources/legacy/reporting/usage_reports/number_lookup.py +464 -0
  27. telnyx/resources/legacy/reporting/usage_reports/usage_reports.py +288 -0
  28. telnyx/resources/legacy/reporting/usage_reports/voice.py +493 -0
  29. telnyx/resources/messaging_profiles/messaging_profiles.py +16 -0
  30. telnyx/resources/messaging_tollfree/verification/requests.py +203 -1
  31. telnyx/resources/oauth.py +855 -0
  32. telnyx/resources/oauth_clients.py +711 -0
  33. telnyx/resources/oauth_grants.py +349 -0
  34. telnyx/resources/outbound_voice_profiles.py +24 -4
  35. telnyx/resources/phone_numbers/jobs.py +12 -0
  36. telnyx/resources/porting_orders/porting_orders.py +20 -8
  37. telnyx/resources/sim_cards/actions.py +12 -12
  38. telnyx/resources/sim_cards/sim_cards.py +3 -2
  39. telnyx/resources/texml/accounts/calls/calls.py +11 -0
  40. telnyx/resources/texml/accounts/conferences/participants.py +11 -0
  41. telnyx/resources/verifications/verifications.py +10 -0
  42. telnyx/resources/verified_numbers/verified_numbers.py +25 -4
  43. telnyx/resources/verify_profiles.py +182 -1
  44. telnyx/resources/well_known.py +198 -0
  45. telnyx/types/__init__.py +51 -9
  46. telnyx/types/access_ip_address_list_response.py +3 -12
  47. telnyx/types/access_ip_range_list_response.py +3 -12
  48. telnyx/types/addresses/action_validate_response.py +8 -3
  49. telnyx/types/{advanced_order_update_params.py → advanced_order_update_requirement_group_params.py} +2 -2
  50. telnyx/types/ai/__init__.py +2 -3
  51. telnyx/types/ai/assistant_import_params.py +1 -1
  52. telnyx/types/ai/assistants/__init__.py +0 -3
  53. telnyx/types/ai/assistants_list.py +4 -88
  54. telnyx/types/ai/{conversations/message_create_params.py → conversation_add_message_params.py} +4 -4
  55. telnyx/types/ai/conversations/__init__.py +0 -1
  56. telnyx/types/ai/import_metadata.py +1 -1
  57. telnyx/types/ai/{assistant_clone_response.py → inference_embedding.py} +2 -2
  58. telnyx/types/ai/inference_embedding_transfer_tool_params.py +6 -0
  59. telnyx/types/ai/inference_embedding_transfer_tool_params_param.py +6 -0
  60. telnyx/types/ai/inference_embedding_webhook_tool_params.py +2 -0
  61. telnyx/types/ai/inference_embedding_webhook_tool_params_param.py +2 -0
  62. telnyx/types/ai/voice_settings.py +49 -2
  63. telnyx/types/ai/voice_settings_param.py +49 -2
  64. telnyx/types/brand_create_params.py +2 -1
  65. telnyx/types/brand_update_params.py +2 -1
  66. telnyx/types/call_dial_params.py +11 -3
  67. telnyx/types/calls/__init__.py +1 -0
  68. telnyx/types/calls/action_answer_params.py +1 -2
  69. telnyx/types/calls/action_gather_using_ai_params.py +5 -8
  70. telnyx/types/calls/action_start_streaming_params.py +5 -2
  71. telnyx/types/calls/action_start_transcription_params.py +160 -6
  72. telnyx/types/calls/action_transfer_params.py +50 -0
  73. telnyx/types/calls/telnyx_transcription_language.py +108 -0
  74. telnyx/types/calls/transcription_engine_b_config_param.py +3 -102
  75. telnyx/types/calls/transcription_start_request_param.py +161 -6
  76. telnyx/types/campaign_submit_appeal_response.py +0 -3
  77. telnyx/types/country_coverage_retrieve_country_response.py +7 -0
  78. telnyx/types/country_coverage_retrieve_response.py +7 -0
  79. telnyx/types/document_upload_json_params.py +39 -0
  80. telnyx/types/document_upload_json_response.py +12 -0
  81. telnyx/types/legacy/__init__.py +3 -0
  82. telnyx/types/legacy/reporting/__init__.py +12 -0
  83. telnyx/types/legacy/reporting/batch_detail_records/__init__.py +24 -0
  84. telnyx/types/legacy/reporting/batch_detail_records/batch_csv_pagination_meta.py +17 -0
  85. telnyx/types/legacy/reporting/batch_detail_records/cdr_detailed_req_response.py +63 -0
  86. telnyx/types/legacy/reporting/batch_detail_records/mdr_detail_report_response.py +42 -0
  87. telnyx/types/legacy/reporting/batch_detail_records/messaging_create_params.py +55 -0
  88. telnyx/types/legacy/reporting/batch_detail_records/messaging_create_response.py +12 -0
  89. telnyx/types/legacy/reporting/batch_detail_records/messaging_delete_response.py +12 -0
  90. telnyx/types/legacy/reporting/batch_detail_records/messaging_list_response.py +15 -0
  91. telnyx/types/legacy/reporting/batch_detail_records/messaging_retrieve_response.py +12 -0
  92. telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_params.py +19 -0
  93. telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_create_response.py +12 -0
  94. telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_delete_response.py +12 -0
  95. telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_list_response.py +12 -0
  96. telnyx/types/legacy/reporting/batch_detail_records/speech_to_text_retrieve_response.py +12 -0
  97. telnyx/types/legacy/reporting/batch_detail_records/stt_detail_report_response.py +27 -0
  98. telnyx/types/legacy/reporting/batch_detail_records/voice_create_params.py +57 -0
  99. telnyx/types/legacy/reporting/batch_detail_records/voice_create_response.py +13 -0
  100. telnyx/types/legacy/reporting/batch_detail_records/voice_delete_response.py +13 -0
  101. telnyx/types/legacy/reporting/batch_detail_records/voice_list_response.py +15 -0
  102. telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_fields_response.py +23 -0
  103. telnyx/types/legacy/reporting/batch_detail_records/voice_retrieve_response.py +13 -0
  104. telnyx/types/legacy/reporting/filter.py +31 -0
  105. telnyx/types/legacy/reporting/filter_param.py +30 -0
  106. telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_params.py +17 -0
  107. telnyx/types/legacy/reporting/usage_report_retrieve_speech_to_text_response.py +11 -0
  108. telnyx/types/legacy/reporting/usage_reports/__init__.py +21 -0
  109. telnyx/types/legacy/reporting/usage_reports/cdr_usage_report_response_legacy.py +43 -0
  110. telnyx/types/legacy/reporting/usage_reports/mdr_usage_report_response_legacy.py +38 -0
  111. telnyx/types/legacy/reporting/usage_reports/messaging_create_params.py +29 -0
  112. telnyx/types/legacy/reporting/usage_reports/messaging_create_response.py +13 -0
  113. telnyx/types/legacy/reporting/usage_reports/messaging_delete_response.py +13 -0
  114. telnyx/types/legacy/reporting/usage_reports/messaging_list_params.py +15 -0
  115. telnyx/types/legacy/reporting/usage_reports/messaging_list_response.py +15 -0
  116. telnyx/types/legacy/reporting/usage_reports/messaging_retrieve_response.py +13 -0
  117. telnyx/types/legacy/reporting/usage_reports/number_lookup_create_params.py +26 -0
  118. telnyx/types/legacy/reporting/usage_reports/number_lookup_list_params.py +13 -0
  119. telnyx/types/legacy/reporting/usage_reports/standard_pagination_meta.py +17 -0
  120. telnyx/types/legacy/reporting/usage_reports/voice_create_params.py +40 -0
  121. telnyx/types/legacy/reporting/usage_reports/voice_create_response.py +13 -0
  122. telnyx/types/legacy/reporting/usage_reports/voice_delete_response.py +13 -0
  123. telnyx/types/legacy/reporting/usage_reports/voice_list_params.py +15 -0
  124. telnyx/types/legacy/reporting/usage_reports/voice_list_response.py +15 -0
  125. telnyx/types/legacy/reporting/usage_reports/voice_retrieve_response.py +13 -0
  126. telnyx/types/message_template.py +12 -0
  127. telnyx/types/messaging_profile.py +3 -0
  128. telnyx/types/messaging_profile_create_params.py +3 -0
  129. telnyx/types/messaging_profile_update_params.py +3 -0
  130. telnyx/types/messaging_tollfree/verification/__init__.py +1 -0
  131. telnyx/types/messaging_tollfree/verification/request_create_params.py +51 -1
  132. telnyx/types/messaging_tollfree/verification/request_update_params.py +51 -1
  133. telnyx/types/messaging_tollfree/verification/toll_free_verification_entity_type.py +9 -0
  134. telnyx/types/messaging_tollfree/verification/verification_request_egress.py +24 -0
  135. telnyx/types/messaging_tollfree/verification/verification_request_status.py +24 -0
  136. telnyx/types/number_order_status_update_webhook_event.py +30 -4
  137. telnyx/types/oauth_client.py +59 -0
  138. telnyx/types/oauth_client_create_params.py +39 -0
  139. telnyx/types/oauth_client_create_response.py +12 -0
  140. telnyx/types/oauth_client_list_params.py +38 -0
  141. telnyx/types/oauth_client_list_response.py +15 -0
  142. telnyx/types/oauth_client_retrieve_response.py +12 -0
  143. telnyx/types/oauth_client_update_params.py +36 -0
  144. telnyx/types/oauth_client_update_response.py +12 -0
  145. telnyx/types/oauth_grant.py +29 -0
  146. telnyx/types/oauth_grant_delete_response.py +12 -0
  147. telnyx/types/oauth_grant_list_params.py +17 -0
  148. telnyx/types/oauth_grant_list_response.py +15 -0
  149. telnyx/types/oauth_grant_retrieve_response.py +12 -0
  150. telnyx/types/oauth_grants_params.py +15 -0
  151. telnyx/types/oauth_grants_response.py +10 -0
  152. telnyx/types/oauth_introspect_params.py +12 -0
  153. telnyx/types/oauth_introspect_response.py +30 -0
  154. telnyx/types/oauth_register_params.py +39 -0
  155. telnyx/types/oauth_register_response.py +45 -0
  156. telnyx/types/oauth_retrieve_authorize_params.py +30 -0
  157. telnyx/types/oauth_retrieve_jwks_response.py +25 -0
  158. telnyx/types/oauth_retrieve_response.py +47 -0
  159. telnyx/types/oauth_token_params.py +33 -0
  160. telnyx/types/oauth_token_response.py +25 -0
  161. telnyx/types/outbound_voice_profile.py +27 -1
  162. telnyx/types/outbound_voice_profile_create_params.py +27 -1
  163. telnyx/types/outbound_voice_profile_list_params.py +1 -1
  164. telnyx/types/outbound_voice_profile_update_params.py +27 -1
  165. telnyx/types/pagination_meta_cloudflare_ip_list_sync.py +15 -0
  166. telnyx/types/pagination_meta_oauth.py +21 -0
  167. telnyx/types/phone_number_blocks/__init__.py +1 -0
  168. telnyx/types/phone_number_blocks/job.py +3 -34
  169. telnyx/types/phone_number_blocks/job_error.py +32 -0
  170. telnyx/types/phone_number_delete_response.py +7 -0
  171. telnyx/types/phone_number_detailed.py +7 -0
  172. telnyx/types/phone_number_list_params.py +6 -0
  173. telnyx/types/phone_numbers/job_update_batch_params.py +7 -0
  174. telnyx/types/phone_numbers/phone_numbers_job.py +3 -36
  175. telnyx/types/porting_order.py +3 -0
  176. telnyx/types/porting_order_create_params.py +3 -0
  177. telnyx/types/porting_order_list_params.py +52 -31
  178. telnyx/types/porting_order_update_params.py +2 -0
  179. telnyx/types/porting_orders/phone_number_configuration_list_params.py +19 -19
  180. telnyx/types/report_list_mdrs_response.py +3 -12
  181. telnyx/types/reports/__init__.py +1 -0
  182. telnyx/types/reports/mdr_usage_report_list_response.py +3 -12
  183. telnyx/types/reports/pagination_meta_reporting.py +17 -0
  184. telnyx/types/requirement_group.py +2 -2
  185. telnyx/types/requirement_group_list_params.py +1 -1
  186. telnyx/types/shared/__init__.py +1 -0
  187. telnyx/types/{error.py → shared/api_error.py} +3 -3
  188. telnyx/types/shared/simple_sim_card.py +15 -0
  189. telnyx/types/sim_card.py +12 -0
  190. telnyx/types/sim_card_update_params.py +2 -1
  191. telnyx/types/stream_bidirectional_codec.py +1 -1
  192. telnyx/types/stream_bidirectional_sampling_rate.py +7 -0
  193. telnyx/types/stream_codec.py +1 -1
  194. telnyx/types/texml/accounts/call_calls_params.py +16 -1
  195. telnyx/types/texml/accounts/conferences/participant_participants_params.py +16 -1
  196. telnyx/types/verification_trigger_call_params.py +7 -0
  197. telnyx/types/verifications/__init__.py +1 -0
  198. telnyx/types/verifications/by_phone_number_list_response.py +4 -13
  199. telnyx/types/verifications/verify_meta.py +17 -0
  200. telnyx/types/verified_number_create_params.py +10 -0
  201. telnyx/types/verify_profile.py +18 -3
  202. telnyx/types/verify_profile_create_template_params.py +12 -0
  203. telnyx/types/verify_profile_list_response.py +4 -13
  204. telnyx/types/verify_profile_message_template_response.py +13 -0
  205. telnyx/types/verify_profile_retrieve_templates_response.py +4 -9
  206. telnyx/types/verify_profile_update_template_params.py +12 -0
  207. telnyx/types/well_known_retrieve_authorization_server_metadata_response.py +42 -0
  208. telnyx/types/well_known_retrieve_protected_resource_metadata_response.py +15 -0
  209. {telnyx-3.5.0a0.dist-info → telnyx-3.6.0.dist-info}/METADATA +4 -4
  210. {telnyx-3.5.0a0.dist-info → telnyx-3.6.0.dist-info}/RECORD +212 -121
  211. telnyx/types/ai/assistant_create_response.py +0 -92
  212. telnyx/types/ai/assistant_retrieve_response.py +0 -92
  213. telnyx/types/ai/assistants/version_promote_response.py +0 -92
  214. telnyx/types/ai/assistants/version_retrieve_response.py +0 -92
  215. telnyx/types/ai/assistants/version_update_response.py +0 -92
  216. telnyx/types/client_create_bucket_params.py +0 -13
  217. telnyx/types/client_delete_objects_params.py +0 -20
  218. telnyx/types/client_get_object_params.py +0 -15
  219. telnyx/types/client_list_objects_params.py +0 -13
  220. telnyx/types/client_put_object_params.py +0 -20
  221. telnyx/types/list_buckets_response.py +0 -20
  222. telnyx/types/list_objects_response.py +0 -24
  223. {telnyx-3.5.0a0.dist-info → telnyx-3.6.0.dist-info}/WHEEL +0 -0
  224. {telnyx-3.5.0a0.dist-info → telnyx-3.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,482 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Union, Iterable
6
+ from datetime import datetime
7
+
8
+ import httpx
9
+
10
+ from ....._types import Body, Omit, Query, Headers, NotGiven, SequenceNotStr, omit, not_given
11
+ from ....._utils import maybe_transform, async_maybe_transform
12
+ from ....._compat import cached_property
13
+ from ....._resource import SyncAPIResource, AsyncAPIResource
14
+ from ....._response import (
15
+ to_raw_response_wrapper,
16
+ to_streamed_response_wrapper,
17
+ async_to_raw_response_wrapper,
18
+ async_to_streamed_response_wrapper,
19
+ )
20
+ from ....._base_client import make_request_options
21
+ from .....types.legacy.reporting.filter_param import FilterParam
22
+ from .....types.legacy.reporting.batch_detail_records import messaging_create_params
23
+ from .....types.legacy.reporting.batch_detail_records.messaging_list_response import MessagingListResponse
24
+ from .....types.legacy.reporting.batch_detail_records.messaging_create_response import MessagingCreateResponse
25
+ from .....types.legacy.reporting.batch_detail_records.messaging_delete_response import MessagingDeleteResponse
26
+ from .....types.legacy.reporting.batch_detail_records.messaging_retrieve_response import MessagingRetrieveResponse
27
+
28
+ __all__ = ["MessagingResource", "AsyncMessagingResource"]
29
+
30
+
31
+ class MessagingResource(SyncAPIResource):
32
+ @cached_property
33
+ def with_raw_response(self) -> MessagingResourceWithRawResponse:
34
+ """
35
+ This property can be used as a prefix for any HTTP method call to return
36
+ the raw response object instead of the parsed content.
37
+
38
+ For more information, see https://www.github.com/team-telnyx/telnyx-python#accessing-raw-response-data-eg-headers
39
+ """
40
+ return MessagingResourceWithRawResponse(self)
41
+
42
+ @cached_property
43
+ def with_streaming_response(self) -> MessagingResourceWithStreamingResponse:
44
+ """
45
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
46
+
47
+ For more information, see https://www.github.com/team-telnyx/telnyx-python#with_streaming_response
48
+ """
49
+ return MessagingResourceWithStreamingResponse(self)
50
+
51
+ def create(
52
+ self,
53
+ *,
54
+ end_time: Union[str, datetime],
55
+ start_time: Union[str, datetime],
56
+ connections: Iterable[int] | Omit = omit,
57
+ directions: Iterable[int] | Omit = omit,
58
+ filters: Iterable[FilterParam] | Omit = omit,
59
+ include_message_body: bool | Omit = omit,
60
+ managed_accounts: SequenceNotStr[str] | Omit = omit,
61
+ profiles: SequenceNotStr[str] | Omit = omit,
62
+ record_types: Iterable[int] | Omit = omit,
63
+ report_name: str | Omit = omit,
64
+ select_all_managed_accounts: bool | Omit = omit,
65
+ timezone: str | Omit = omit,
66
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
67
+ # The extra values given here take precedence over values defined on the client or passed to this method.
68
+ extra_headers: Headers | None = None,
69
+ extra_query: Query | None = None,
70
+ extra_body: Body | None = None,
71
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
72
+ ) -> MessagingCreateResponse:
73
+ """
74
+ Creates a new MDR detailed report request with the specified filters
75
+
76
+ Args:
77
+ end_time: End time in ISO format. Note: If end time includes the last 4 hours, some MDRs
78
+ might not appear in this report, due to wait time for downstream message
79
+ delivery confirmation
80
+
81
+ start_time: Start time in ISO format
82
+
83
+ connections: List of connections to filter by
84
+
85
+ directions: List of directions to filter by (Inbound = 1, Outbound = 2)
86
+
87
+ filters: List of filters to apply
88
+
89
+ include_message_body: Whether to include message body in the report
90
+
91
+ managed_accounts: List of managed accounts to include
92
+
93
+ profiles: List of messaging profile IDs to filter by
94
+
95
+ record_types: List of record types to filter by (Complete = 1, Incomplete = 2, Errors = 3)
96
+
97
+ report_name: Name of the report
98
+
99
+ select_all_managed_accounts: Whether to select all managed accounts
100
+
101
+ timezone: Timezone for the report
102
+
103
+ extra_headers: Send extra headers
104
+
105
+ extra_query: Add additional query parameters to the request
106
+
107
+ extra_body: Add additional JSON properties to the request
108
+
109
+ timeout: Override the client-level default timeout for this request, in seconds
110
+ """
111
+ return self._post(
112
+ "/legacy/reporting/batch_detail_records/messaging",
113
+ body=maybe_transform(
114
+ {
115
+ "end_time": end_time,
116
+ "start_time": start_time,
117
+ "connections": connections,
118
+ "directions": directions,
119
+ "filters": filters,
120
+ "include_message_body": include_message_body,
121
+ "managed_accounts": managed_accounts,
122
+ "profiles": profiles,
123
+ "record_types": record_types,
124
+ "report_name": report_name,
125
+ "select_all_managed_accounts": select_all_managed_accounts,
126
+ "timezone": timezone,
127
+ },
128
+ messaging_create_params.MessagingCreateParams,
129
+ ),
130
+ options=make_request_options(
131
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
132
+ ),
133
+ cast_to=MessagingCreateResponse,
134
+ )
135
+
136
+ def retrieve(
137
+ self,
138
+ id: str,
139
+ *,
140
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
141
+ # The extra values given here take precedence over values defined on the client or passed to this method.
142
+ extra_headers: Headers | None = None,
143
+ extra_query: Query | None = None,
144
+ extra_body: Body | None = None,
145
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
146
+ ) -> MessagingRetrieveResponse:
147
+ """
148
+ Retrieves a specific MDR detailed report request by ID
149
+
150
+ Args:
151
+ extra_headers: Send extra headers
152
+
153
+ extra_query: Add additional query parameters to the request
154
+
155
+ extra_body: Add additional JSON properties to the request
156
+
157
+ timeout: Override the client-level default timeout for this request, in seconds
158
+ """
159
+ if not id:
160
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
161
+ return self._get(
162
+ f"/legacy/reporting/batch_detail_records/messaging/{id}",
163
+ options=make_request_options(
164
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
165
+ ),
166
+ cast_to=MessagingRetrieveResponse,
167
+ )
168
+
169
+ def list(
170
+ self,
171
+ *,
172
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
173
+ # The extra values given here take precedence over values defined on the client or passed to this method.
174
+ extra_headers: Headers | None = None,
175
+ extra_query: Query | None = None,
176
+ extra_body: Body | None = None,
177
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
178
+ ) -> MessagingListResponse:
179
+ """Retrieves all MDR detailed report requests for the authenticated user"""
180
+ return self._get(
181
+ "/legacy/reporting/batch_detail_records/messaging",
182
+ options=make_request_options(
183
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
184
+ ),
185
+ cast_to=MessagingListResponse,
186
+ )
187
+
188
+ def delete(
189
+ self,
190
+ id: str,
191
+ *,
192
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
193
+ # The extra values given here take precedence over values defined on the client or passed to this method.
194
+ extra_headers: Headers | None = None,
195
+ extra_query: Query | None = None,
196
+ extra_body: Body | None = None,
197
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
198
+ ) -> MessagingDeleteResponse:
199
+ """
200
+ Deletes a specific MDR detailed report request by ID
201
+
202
+ Args:
203
+ extra_headers: Send extra headers
204
+
205
+ extra_query: Add additional query parameters to the request
206
+
207
+ extra_body: Add additional JSON properties to the request
208
+
209
+ timeout: Override the client-level default timeout for this request, in seconds
210
+ """
211
+ if not id:
212
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
213
+ return self._delete(
214
+ f"/legacy/reporting/batch_detail_records/messaging/{id}",
215
+ options=make_request_options(
216
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
217
+ ),
218
+ cast_to=MessagingDeleteResponse,
219
+ )
220
+
221
+
222
+ class AsyncMessagingResource(AsyncAPIResource):
223
+ @cached_property
224
+ def with_raw_response(self) -> AsyncMessagingResourceWithRawResponse:
225
+ """
226
+ This property can be used as a prefix for any HTTP method call to return
227
+ the raw response object instead of the parsed content.
228
+
229
+ For more information, see https://www.github.com/team-telnyx/telnyx-python#accessing-raw-response-data-eg-headers
230
+ """
231
+ return AsyncMessagingResourceWithRawResponse(self)
232
+
233
+ @cached_property
234
+ def with_streaming_response(self) -> AsyncMessagingResourceWithStreamingResponse:
235
+ """
236
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
237
+
238
+ For more information, see https://www.github.com/team-telnyx/telnyx-python#with_streaming_response
239
+ """
240
+ return AsyncMessagingResourceWithStreamingResponse(self)
241
+
242
+ async def create(
243
+ self,
244
+ *,
245
+ end_time: Union[str, datetime],
246
+ start_time: Union[str, datetime],
247
+ connections: Iterable[int] | Omit = omit,
248
+ directions: Iterable[int] | Omit = omit,
249
+ filters: Iterable[FilterParam] | Omit = omit,
250
+ include_message_body: bool | Omit = omit,
251
+ managed_accounts: SequenceNotStr[str] | Omit = omit,
252
+ profiles: SequenceNotStr[str] | Omit = omit,
253
+ record_types: Iterable[int] | Omit = omit,
254
+ report_name: str | Omit = omit,
255
+ select_all_managed_accounts: bool | Omit = omit,
256
+ timezone: str | Omit = omit,
257
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
258
+ # The extra values given here take precedence over values defined on the client or passed to this method.
259
+ extra_headers: Headers | None = None,
260
+ extra_query: Query | None = None,
261
+ extra_body: Body | None = None,
262
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
263
+ ) -> MessagingCreateResponse:
264
+ """
265
+ Creates a new MDR detailed report request with the specified filters
266
+
267
+ Args:
268
+ end_time: End time in ISO format. Note: If end time includes the last 4 hours, some MDRs
269
+ might not appear in this report, due to wait time for downstream message
270
+ delivery confirmation
271
+
272
+ start_time: Start time in ISO format
273
+
274
+ connections: List of connections to filter by
275
+
276
+ directions: List of directions to filter by (Inbound = 1, Outbound = 2)
277
+
278
+ filters: List of filters to apply
279
+
280
+ include_message_body: Whether to include message body in the report
281
+
282
+ managed_accounts: List of managed accounts to include
283
+
284
+ profiles: List of messaging profile IDs to filter by
285
+
286
+ record_types: List of record types to filter by (Complete = 1, Incomplete = 2, Errors = 3)
287
+
288
+ report_name: Name of the report
289
+
290
+ select_all_managed_accounts: Whether to select all managed accounts
291
+
292
+ timezone: Timezone for the report
293
+
294
+ extra_headers: Send extra headers
295
+
296
+ extra_query: Add additional query parameters to the request
297
+
298
+ extra_body: Add additional JSON properties to the request
299
+
300
+ timeout: Override the client-level default timeout for this request, in seconds
301
+ """
302
+ return await self._post(
303
+ "/legacy/reporting/batch_detail_records/messaging",
304
+ body=await async_maybe_transform(
305
+ {
306
+ "end_time": end_time,
307
+ "start_time": start_time,
308
+ "connections": connections,
309
+ "directions": directions,
310
+ "filters": filters,
311
+ "include_message_body": include_message_body,
312
+ "managed_accounts": managed_accounts,
313
+ "profiles": profiles,
314
+ "record_types": record_types,
315
+ "report_name": report_name,
316
+ "select_all_managed_accounts": select_all_managed_accounts,
317
+ "timezone": timezone,
318
+ },
319
+ messaging_create_params.MessagingCreateParams,
320
+ ),
321
+ options=make_request_options(
322
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
323
+ ),
324
+ cast_to=MessagingCreateResponse,
325
+ )
326
+
327
+ async def retrieve(
328
+ self,
329
+ id: str,
330
+ *,
331
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
332
+ # The extra values given here take precedence over values defined on the client or passed to this method.
333
+ extra_headers: Headers | None = None,
334
+ extra_query: Query | None = None,
335
+ extra_body: Body | None = None,
336
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
337
+ ) -> MessagingRetrieveResponse:
338
+ """
339
+ Retrieves a specific MDR detailed report request by ID
340
+
341
+ Args:
342
+ extra_headers: Send extra headers
343
+
344
+ extra_query: Add additional query parameters to the request
345
+
346
+ extra_body: Add additional JSON properties to the request
347
+
348
+ timeout: Override the client-level default timeout for this request, in seconds
349
+ """
350
+ if not id:
351
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
352
+ return await self._get(
353
+ f"/legacy/reporting/batch_detail_records/messaging/{id}",
354
+ options=make_request_options(
355
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
356
+ ),
357
+ cast_to=MessagingRetrieveResponse,
358
+ )
359
+
360
+ async def list(
361
+ self,
362
+ *,
363
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
364
+ # The extra values given here take precedence over values defined on the client or passed to this method.
365
+ extra_headers: Headers | None = None,
366
+ extra_query: Query | None = None,
367
+ extra_body: Body | None = None,
368
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
369
+ ) -> MessagingListResponse:
370
+ """Retrieves all MDR detailed report requests for the authenticated user"""
371
+ return await self._get(
372
+ "/legacy/reporting/batch_detail_records/messaging",
373
+ options=make_request_options(
374
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
375
+ ),
376
+ cast_to=MessagingListResponse,
377
+ )
378
+
379
+ async def delete(
380
+ self,
381
+ id: str,
382
+ *,
383
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
384
+ # The extra values given here take precedence over values defined on the client or passed to this method.
385
+ extra_headers: Headers | None = None,
386
+ extra_query: Query | None = None,
387
+ extra_body: Body | None = None,
388
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
389
+ ) -> MessagingDeleteResponse:
390
+ """
391
+ Deletes a specific MDR detailed report request by ID
392
+
393
+ Args:
394
+ extra_headers: Send extra headers
395
+
396
+ extra_query: Add additional query parameters to the request
397
+
398
+ extra_body: Add additional JSON properties to the request
399
+
400
+ timeout: Override the client-level default timeout for this request, in seconds
401
+ """
402
+ if not id:
403
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
404
+ return await self._delete(
405
+ f"/legacy/reporting/batch_detail_records/messaging/{id}",
406
+ options=make_request_options(
407
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
408
+ ),
409
+ cast_to=MessagingDeleteResponse,
410
+ )
411
+
412
+
413
+ class MessagingResourceWithRawResponse:
414
+ def __init__(self, messaging: MessagingResource) -> None:
415
+ self._messaging = messaging
416
+
417
+ self.create = to_raw_response_wrapper(
418
+ messaging.create,
419
+ )
420
+ self.retrieve = to_raw_response_wrapper(
421
+ messaging.retrieve,
422
+ )
423
+ self.list = to_raw_response_wrapper(
424
+ messaging.list,
425
+ )
426
+ self.delete = to_raw_response_wrapper(
427
+ messaging.delete,
428
+ )
429
+
430
+
431
+ class AsyncMessagingResourceWithRawResponse:
432
+ def __init__(self, messaging: AsyncMessagingResource) -> None:
433
+ self._messaging = messaging
434
+
435
+ self.create = async_to_raw_response_wrapper(
436
+ messaging.create,
437
+ )
438
+ self.retrieve = async_to_raw_response_wrapper(
439
+ messaging.retrieve,
440
+ )
441
+ self.list = async_to_raw_response_wrapper(
442
+ messaging.list,
443
+ )
444
+ self.delete = async_to_raw_response_wrapper(
445
+ messaging.delete,
446
+ )
447
+
448
+
449
+ class MessagingResourceWithStreamingResponse:
450
+ def __init__(self, messaging: MessagingResource) -> None:
451
+ self._messaging = messaging
452
+
453
+ self.create = to_streamed_response_wrapper(
454
+ messaging.create,
455
+ )
456
+ self.retrieve = to_streamed_response_wrapper(
457
+ messaging.retrieve,
458
+ )
459
+ self.list = to_streamed_response_wrapper(
460
+ messaging.list,
461
+ )
462
+ self.delete = to_streamed_response_wrapper(
463
+ messaging.delete,
464
+ )
465
+
466
+
467
+ class AsyncMessagingResourceWithStreamingResponse:
468
+ def __init__(self, messaging: AsyncMessagingResource) -> None:
469
+ self._messaging = messaging
470
+
471
+ self.create = async_to_streamed_response_wrapper(
472
+ messaging.create,
473
+ )
474
+ self.retrieve = async_to_streamed_response_wrapper(
475
+ messaging.retrieve,
476
+ )
477
+ self.list = async_to_streamed_response_wrapper(
478
+ messaging.list,
479
+ )
480
+ self.delete = async_to_streamed_response_wrapper(
481
+ messaging.delete,
482
+ )