jaxl-python 0.0.1__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.
Files changed (754) hide show
  1. jaxl/api/__init__.py +85 -0
  2. jaxl/api/_client.py +588 -0
  3. jaxl/api/cli.py +53 -0
  4. jaxl/api/client/__init__.py +18 -0
  5. jaxl/api/client/_scm_version.py +21 -0
  6. jaxl/api/client/_scm_version.pyi +7 -0
  7. jaxl/api/client/api/__init__.py +10 -0
  8. jaxl/api/client/api/schema/__init__.py +9 -0
  9. jaxl/api/client/api/schema/schema_retrieve.py +214 -0
  10. jaxl/api/client/api/v1/__init__.py +9 -0
  11. jaxl/api/client/api/v1/v1_accounts_logout_create.py +120 -0
  12. jaxl/api/client/api/v1/v1_accounts_otp_create.py +186 -0
  13. jaxl/api/client/api/v1/v1_accounts_remove_create.py +122 -0
  14. jaxl/api/client/api/v1/v1_accounts_verify_create.py +183 -0
  15. jaxl/api/client/api/v1/v1_analytics_data_retrieve.py +349 -0
  16. jaxl/api/client/api/v1/v1_analytics_list.py +234 -0
  17. jaxl/api/client/api/v1/v1_app_countries_list.py +192 -0
  18. jaxl/api/client/api/v1/v1_app_domains_list.py +207 -0
  19. jaxl/api/client/api/v1/v1_app_organizations_create.py +178 -0
  20. jaxl/api/client/api/v1/v1_app_organizations_credentials_retrieve.py +152 -0
  21. jaxl/api/client/api/v1/v1_app_organizations_devices_list.py +205 -0
  22. jaxl/api/client/api/v1/v1_app_organizations_list.py +221 -0
  23. jaxl/api/client/api/v1/v1_app_organizations_me_retrieve.py +178 -0
  24. jaxl/api/client/api/v1/v1_app_organizations_retrieve.py +171 -0
  25. jaxl/api/client/api/v1/v1_app_referrals_create.py +175 -0
  26. jaxl/api/client/api/v1/v1_apps_contact_create.py +124 -0
  27. jaxl/api/client/api/v1/v1_apps_context_create.py +178 -0
  28. jaxl/api/client/api/v1/v1_apps_retrieve.py +167 -0
  29. jaxl/api/client/api/v1/v1_appusers_me_retrieve.py +146 -0
  30. jaxl/api/client/api/v1/v1_appusers_preferences_create.py +175 -0
  31. jaxl/api/client/api/v1/v1_appusers_retrieve.py +167 -0
  32. jaxl/api/client/api/v1/v1_appusers_sdds_create.py +171 -0
  33. jaxl/api/client/api/v1/v1_call_recording_retrieve.py +188 -0
  34. jaxl/api/client/api/v1/v1_call_tags_list.py +207 -0
  35. jaxl/api/client/api/v1/v1_calls_accept_create.py +188 -0
  36. jaxl/api/client/api/v1/v1_calls_act_create.py +137 -0
  37. jaxl/api/client/api/v1/v1_calls_dates_retrieve.py +177 -0
  38. jaxl/api/client/api/v1/v1_calls_destroy.py +114 -0
  39. jaxl/api/client/api/v1/v1_calls_hangup_retrieve.py +118 -0
  40. jaxl/api/client/api/v1/v1_calls_list.py +436 -0
  41. jaxl/api/client/api/v1/v1_calls_record_create.py +129 -0
  42. jaxl/api/client/api/v1/v1_calls_recording_retrieve.py +177 -0
  43. jaxl/api/client/api/v1/v1_calls_retrieve.py +186 -0
  44. jaxl/api/client/api/v1/v1_calls_search_list.py +286 -0
  45. jaxl/api/client/api/v1/v1_calls_share_create.py +197 -0
  46. jaxl/api/client/api/v1/v1_calls_tags_create.py +194 -0
  47. jaxl/api/client/api/v1/v1_calls_tags_destroy.py +127 -0
  48. jaxl/api/client/api/v1/v1_calls_tags_list.py +188 -0
  49. jaxl/api/client/api/v1/v1_calls_token_create.py +175 -0
  50. jaxl/api/client/api/v1/v1_calls_transcribe_create.py +200 -0
  51. jaxl/api/client/api/v1/v1_calls_transcriptions_list.py +201 -0
  52. jaxl/api/client/api/v1/v1_calls_usage_retrieve.py +219 -0
  53. jaxl/api/client/api/v1/v1_campaign_clone_create.py +191 -0
  54. jaxl/api/client/api/v1/v1_campaign_export_retrieve.py +128 -0
  55. jaxl/api/client/api/v1/v1_campaign_list.py +217 -0
  56. jaxl/api/client/api/v1/v1_campaign_partial_update.py +196 -0
  57. jaxl/api/client/api/v1/v1_campaign_upload_create.py +171 -0
  58. jaxl/api/client/api/v1/v1_clients_verify_create.py +175 -0
  59. jaxl/api/client/api/v1/v1_contacts_list.py +188 -0
  60. jaxl/api/client/api/v1/v1_conversation_ack_retrieve.py +173 -0
  61. jaxl/api/client/api/v1/v1_conversation_add_members_create.py +209 -0
  62. jaxl/api/client/api/v1/v1_conversation_create.py +175 -0
  63. jaxl/api/client/api/v1/v1_conversation_list.py +192 -0
  64. jaxl/api/client/api/v1/v1_conversation_members_list.py +207 -0
  65. jaxl/api/client/api/v1/v1_conversation_messages_list.py +222 -0
  66. jaxl/api/client/api/v1/v1_conversation_remove_member_retrieve.py +192 -0
  67. jaxl/api/client/api/v1/v1_conversation_update_name_partial_update.py +120 -0
  68. jaxl/api/client/api/v1/v1_credit_list.py +188 -0
  69. jaxl/api/client/api/v1/v1_customer_consumables_retrieve.py +194 -0
  70. jaxl/api/client/api/v1/v1_customer_invoice_retrieve.py +120 -0
  71. jaxl/api/client/api/v1/v1_customer_subscription_cancel_create.py +177 -0
  72. jaxl/api/client/api/v1/v1_customer_subscription_resume_create.py +180 -0
  73. jaxl/api/client/api/v1/v1_device_keys_get_create.py +174 -0
  74. jaxl/api/client/api/v1/v1_device_keys_multiget_list.py +214 -0
  75. jaxl/api/client/api/v1/v1_device_keys_multiset_create.py +118 -0
  76. jaxl/api/client/api/v1/v1_device_keys_remove_create.py +118 -0
  77. jaxl/api/client/api/v1/v1_device_keys_set_create.py +120 -0
  78. jaxl/api/client/api/v1/v1_device_keys_wget_create.py +182 -0
  79. jaxl/api/client/api/v1/v1_device_transport_create.py +175 -0
  80. jaxl/api/client/api/v1/v1_devices_attest_create.py +231 -0
  81. jaxl/api/client/api/v1/v1_devices_link_create.py +150 -0
  82. jaxl/api/client/api/v1/v1_devices_list.py +222 -0
  83. jaxl/api/client/api/v1/v1_devices_parent_retrieve.py +175 -0
  84. jaxl/api/client/api/v1/v1_devices_retrieve.py +174 -0
  85. jaxl/api/client/api/v1/v1_devices_sdds_create.py +177 -0
  86. jaxl/api/client/api/v1/v1_devices_sdds_retrieve.py +171 -0
  87. jaxl/api/client/api/v1/v1_devices_token_create.py +188 -0
  88. jaxl/api/client/api/v1/v1_devices_unlink_create.py +114 -0
  89. jaxl/api/client/api/v1/v1_devices_update.py +193 -0
  90. jaxl/api/client/api/v1/v1_families_invite_update.py +175 -0
  91. jaxl/api/client/api/v1/v1_families_list.py +192 -0
  92. jaxl/api/client/api/v1/v1_families_membership_create.py +188 -0
  93. jaxl/api/client/api/v1/v1_families_retrieve.py +167 -0
  94. jaxl/api/client/api/v1/v1_greeting_audio_create.py +171 -0
  95. jaxl/api/client/api/v1/v1_greeting_deactivate_partial_update.py +172 -0
  96. jaxl/api/client/api/v1/v1_greeting_disable_create.py +173 -0
  97. jaxl/api/client/api/v1/v1_greeting_latest_create.py +176 -0
  98. jaxl/api/client/api/v1/v1_greeting_list.py +275 -0
  99. jaxl/api/client/api/v1/v1_greeting_new_create.py +173 -0
  100. jaxl/api/client/api/v1/v1_greeting_resolve_create.py +174 -0
  101. jaxl/api/client/api/v1/v1_greeting_retrieve.py +169 -0
  102. jaxl/api/client/api/v1/v1_greeting_upload_create.py +173 -0
  103. jaxl/api/client/api/v1/v1_ivr_create.py +175 -0
  104. jaxl/api/client/api/v1/v1_ivr_list.py +229 -0
  105. jaxl/api/client/api/v1/v1_ivr_options_create.py +199 -0
  106. jaxl/api/client/api/v1/v1_ivr_options_list.py +207 -0
  107. jaxl/api/client/api/v1/v1_ivr_options_partial_update.py +216 -0
  108. jaxl/api/client/api/v1/v1_ivr_options_retrieve.py +189 -0
  109. jaxl/api/client/api/v1/v1_ivr_partial_update.py +188 -0
  110. jaxl/api/client/api/v1/v1_ivr_retrieve.py +209 -0
  111. jaxl/api/client/api/v1/v1_ivr_try_create.py +236 -0
  112. jaxl/api/client/api/v1/v1_ivr_try_retrieve.py +219 -0
  113. jaxl/api/client/api/v1/v1_kyc_aadhar_create.py +199 -0
  114. jaxl/api/client/api/v1/v1_kyc_address_create.py +239 -0
  115. jaxl/api/client/api/v1/v1_kyc_address_list.py +302 -0
  116. jaxl/api/client/api/v1/v1_kyc_address_retrieve.py +167 -0
  117. jaxl/api/client/api/v1/v1_kyc_address_url_create.py +191 -0
  118. jaxl/api/client/api/v1/v1_kyc_countries_list.py +188 -0
  119. jaxl/api/client/api/v1/v1_kyc_create.py +176 -0
  120. jaxl/api/client/api/v1/v1_kyc_identity_create.py +211 -0
  121. jaxl/api/client/api/v1/v1_kyc_identity_list.py +210 -0
  122. jaxl/api/client/api/v1/v1_kyc_identity_retrieve.py +167 -0
  123. jaxl/api/client/api/v1/v1_kyc_identity_url_create.py +191 -0
  124. jaxl/api/client/api/v1/v1_kyc_list.py +277 -0
  125. jaxl/api/client/api/v1/v1_kyc_otp_create.py +180 -0
  126. jaxl/api/client/api/v1/v1_kyc_partial_update.py +180 -0
  127. jaxl/api/client/api/v1/v1_kyc_proof_list.py +188 -0
  128. jaxl/api/client/api/v1/v1_kyc_proof_ocr_list.py +190 -0
  129. jaxl/api/client/api/v1/v1_kyc_proof_retrieve.py +163 -0
  130. jaxl/api/client/api/v1/v1_kyc_proof_url_create.py +189 -0
  131. jaxl/api/client/api/v1/v1_kyc_requirements_retrieve.py +224 -0
  132. jaxl/api/client/api/v1/v1_kyc_retrieve.py +163 -0
  133. jaxl/api/client/api/v1/v1_kyc_summary_list.py +289 -0
  134. jaxl/api/client/api/v1/v1_kyc_upload_create.py +178 -0
  135. jaxl/api/client/api/v1/v1_kyc_verify_create.py +180 -0
  136. jaxl/api/client/api/v1/v1_library_create.py +171 -0
  137. jaxl/api/client/api/v1/v1_library_default_retrieve.py +178 -0
  138. jaxl/api/client/api/v1/v1_library_list.py +215 -0
  139. jaxl/api/client/api/v1/v1_live_create.py +181 -0
  140. jaxl/api/client/api/v1/v1_message_create.py +175 -0
  141. jaxl/api/client/api/v1/v1_message_destroy.py +114 -0
  142. jaxl/api/client/api/v1/v1_message_search_list.py +235 -0
  143. jaxl/api/client/api/v1/v1_messages_destroy.py +118 -0
  144. jaxl/api/client/api/v1/v1_messages_list.py +229 -0
  145. jaxl/api/client/api/v1/v1_messages_reactions_create.py +196 -0
  146. jaxl/api/client/api/v1/v1_messages_reactions_destroy.py +190 -0
  147. jaxl/api/client/api/v1/v1_messages_receipt_partial_update.py +198 -0
  148. jaxl/api/client/api/v1/v1_messages_retrieve.py +193 -0
  149. jaxl/api/client/api/v1/v1_notifications_ack_create.py +118 -0
  150. jaxl/api/client/api/v1/v1_orders_attributes_partial_update.py +205 -0
  151. jaxl/api/client/api/v1/v1_orders_attributes_retrieve.py +186 -0
  152. jaxl/api/client/api/v1/v1_orders_checkout_create.py +233 -0
  153. jaxl/api/client/api/v1/v1_orders_checkout_destroy.py +177 -0
  154. jaxl/api/client/api/v1/v1_orders_receipt_validate_create.py +202 -0
  155. jaxl/api/client/api/v1/v1_payments_list.py +292 -0
  156. jaxl/api/client/api/v1/v1_pdf_convert_create.py +177 -0
  157. jaxl/api/client/api/v1/v1_phonenumbers_check_create.py +178 -0
  158. jaxl/api/client/api/v1/v1_phonenumbers_checkout_create.py +120 -0
  159. jaxl/api/client/api/v1/v1_phonenumbers_list.py +301 -0
  160. jaxl/api/client/api/v1/v1_phonenumbers_partial_update.py +192 -0
  161. jaxl/api/client/api/v1/v1_phonenumbers_retrieve.py +171 -0
  162. jaxl/api/client/api/v1/v1_phonenumbers_search_retrieve.py +319 -0
  163. jaxl/api/client/api/v1/v1_plans_bundle_create.py +176 -0
  164. jaxl/api/client/api/v1/v1_plans_countries_list.py +241 -0
  165. jaxl/api/client/api/v1/v1_plans_create.py +180 -0
  166. jaxl/api/client/api/v1/v1_plans_list.py +304 -0
  167. jaxl/api/client/api/v1/v1_plans_resources_list.py +221 -0
  168. jaxl/api/client/api/v1/v1_plans_retrieve.py +226 -0
  169. jaxl/api/client/api/v1/v1_plans_summary_list.py +283 -0
  170. jaxl/api/client/api/v1/v1_pricing_data_retrieve.py +231 -0
  171. jaxl/api/client/api/v1/v1_sim_command_create.py +123 -0
  172. jaxl/api/client/api/v1/v1_sim_create.py +174 -0
  173. jaxl/api/client/api/v1/v1_sim_destroy.py +112 -0
  174. jaxl/api/client/api/v1/v1_sim_heartbeart_create.py +112 -0
  175. jaxl/api/client/api/v1/v1_sim_sms_create.py +123 -0
  176. jaxl/api/client/api/v1/v1_sms_create.py +174 -0
  177. jaxl/api/client/api/v1/v1_thread_create.py +167 -0
  178. jaxl/api/client/api/v1/v1_thread_list.py +207 -0
  179. jaxl/api/client/api/v1/v1_ticket_create.py +175 -0
  180. jaxl/api/client/api/v1/v1_transcription_locale_retrieve.py +146 -0
  181. jaxl/api/client/api/v1/v1_transcription_result_retrieve.py +146 -0
  182. jaxl/api/client/api/v1/v1_transcription_search_list.py +237 -0
  183. jaxl/api/client/api/v1/v1_transcription_url_retrieve.py +194 -0
  184. jaxl/api/client/api/v1/v1_tts_create.py +171 -0
  185. jaxl/api/client/api/v1/v1_users_me_retrieve.py +146 -0
  186. jaxl/api/client/api/v1/v1_users_retrieve.py +167 -0
  187. jaxl/api/client/api/v2/__init__.py +9 -0
  188. jaxl/api/client/api/v2/v2_app_organizations_employees_invite_create.py +194 -0
  189. jaxl/api/client/api/v2/v2_app_organizations_employees_list.py +282 -0
  190. jaxl/api/client/api/v2/v2_app_organizations_employees_membership_create.py +205 -0
  191. jaxl/api/client/api/v2/v2_app_organizations_employees_partial_update.py +136 -0
  192. jaxl/api/client/api/v2/v2_app_organizations_employees_retrieve.py +189 -0
  193. jaxl/api/client/api/v2/v2_app_organizations_groups_create.py +194 -0
  194. jaxl/api/client/api/v2/v2_app_organizations_groups_list.py +224 -0
  195. jaxl/api/client/api/v2/v2_app_organizations_groups_members_partial_update.py +141 -0
  196. jaxl/api/client/api/v2/v2_app_organizations_groups_members_retrieve.py +197 -0
  197. jaxl/api/client/api/v2/v2_app_organizations_groups_partial_update.py +205 -0
  198. jaxl/api/client/api/v2/v2_app_organizations_groups_phone_number_partial_update.py +136 -0
  199. jaxl/api/client/api/v2/v2_app_organizations_groups_retrieve.py +186 -0
  200. jaxl/api/client/api/v2/v2_campaign_clone_create.py +191 -0
  201. jaxl/api/client/api/v2/v2_campaign_export_retrieve.py +128 -0
  202. jaxl/api/client/api/v2/v2_campaign_list.py +215 -0
  203. jaxl/api/client/api/v2/v2_campaign_partial_update.py +196 -0
  204. jaxl/api/client/api/v2/v2_customer_orders_notification_retrieve.py +148 -0
  205. jaxl/api/client/api/v2/v2_orders_receipt_validate_create.py +204 -0
  206. jaxl/api/client/api/v2/v2_transcription_search_list.py +237 -0
  207. jaxl/api/client/api/v2/v2_users_me_retrieve.py +150 -0
  208. jaxl/api/client/api/v3/__init__.py +9 -0
  209. jaxl/api/client/api/v3/v3_orders_consumables_list.py +228 -0
  210. jaxl/api/client/api/v3/v3_orders_consumables_retrieve.py +209 -0
  211. jaxl/api/client/api/v3/v3_orders_skus_list.py +205 -0
  212. jaxl/api/client/api/v3/v3_orders_subscriptions_list.py +287 -0
  213. jaxl/api/client/api/v3/v3_orders_subscriptions_retrieve.py +209 -0
  214. jaxl/api/client/client.py +73 -0
  215. jaxl/api/client/errors.py +19 -0
  216. jaxl/api/client/models/__init__.py +1191 -0
  217. jaxl/api/client/models/aadhar_attributes_request.py +106 -0
  218. jaxl/api/client/models/aadhar_invalid_document_response.py +75 -0
  219. jaxl/api/client/models/aadhar_otp_invalid_response.py +67 -0
  220. jaxl/api/client/models/aadhar_otp_request_request.py +74 -0
  221. jaxl/api/client/models/aadhar_otp_response.py +74 -0
  222. jaxl/api/client/models/aadhar_otp_verification_request_request.py +74 -0
  223. jaxl/api/client/models/aadhar_otp_verification_response.py +80 -0
  224. jaxl/api/client/models/aadhar_upload_request.py +121 -0
  225. jaxl/api/client/models/ack.py +67 -0
  226. jaxl/api/client/models/act_enum.py +20 -0
  227. jaxl/api/client/models/action_enum.py +20 -0
  228. jaxl/api/client/models/additional_fields.py +115 -0
  229. jaxl/api/client/models/additional_fields_type_enum.py +19 -0
  230. jaxl/api/client/models/address_creation_request.py +111 -0
  231. jaxl/api/client/models/address_provider.py +182 -0
  232. jaxl/api/client/models/address_provider_status_enum.py +20 -0
  233. jaxl/api/client/models/address_requirement.py +77 -0
  234. jaxl/api/client/models/analytic.py +91 -0
  235. jaxl/api/client/models/analytics_slug_response.py +83 -0
  236. jaxl/api/client/models/app.py +89 -0
  237. jaxl/api/client/models/app_contact_request.py +74 -0
  238. jaxl/api/client/models/app_context_response.py +165 -0
  239. jaxl/api/client/models/app_country.py +96 -0
  240. jaxl/api/client/models/app_domain.py +83 -0
  241. jaxl/api/client/models/app_price.py +107 -0
  242. jaxl/api/client/models/app_user.py +110 -0
  243. jaxl/api/client/models/app_user_preferences.py +85 -0
  244. jaxl/api/client/models/app_user_preferences_preferences.py +54 -0
  245. jaxl/api/client/models/app_user_preferences_request.py +85 -0
  246. jaxl/api/client/models/app_user_preferences_request_preferences.py +54 -0
  247. jaxl/api/client/models/app_user_sdds_response.py +67 -0
  248. jaxl/api/client/models/available_phone_number.py +159 -0
  249. jaxl/api/client/models/available_phone_number_capabilities.py +83 -0
  250. jaxl/api/client/models/available_phone_number_provider_enum.py +20 -0
  251. jaxl/api/client/models/bundle_create_request.py +109 -0
  252. jaxl/api/client/models/business_attributes_request.py +81 -0
  253. jaxl/api/client/models/call.py +447 -0
  254. jaxl/api/client/models/call_accept_request.py +76 -0
  255. jaxl/api/client/models/call_accept_response.py +123 -0
  256. jaxl/api/client/models/call_accept_response_reason_enum.py +18 -0
  257. jaxl/api/client/models/call_act_request.py +75 -0
  258. jaxl/api/client/models/call_cost.py +75 -0
  259. jaxl/api/client/models/call_date_response.py +69 -0
  260. jaxl/api/client/models/call_dates_response.py +82 -0
  261. jaxl/api/client/models/call_location_epoch.py +74 -0
  262. jaxl/api/client/models/call_metadata.py +54 -0
  263. jaxl/api/client/models/call_recording_response.py +67 -0
  264. jaxl/api/client/models/call_recording_share_response.py +67 -0
  265. jaxl/api/client/models/call_recording_status_request.py +71 -0
  266. jaxl/api/client/models/call_recording_status_status_enum.py +19 -0
  267. jaxl/api/client/models/call_search_response.py +97 -0
  268. jaxl/api/client/models/call_tag_count.py +81 -0
  269. jaxl/api/client/models/call_tag_request.py +67 -0
  270. jaxl/api/client/models/call_tag_response.py +74 -0
  271. jaxl/api/client/models/call_token_request.py +138 -0
  272. jaxl/api/client/models/call_token_response.py +147 -0
  273. jaxl/api/client/models/call_transcribe_request.py +92 -0
  274. jaxl/api/client/models/call_type_enum.py +20 -0
  275. jaxl/api/client/models/call_usage_by_currency_response.py +133 -0
  276. jaxl/api/client/models/call_usage_response.py +97 -0
  277. jaxl/api/client/models/call_usage_stats_response.py +91 -0
  278. jaxl/api/client/models/campaign.py +104 -0
  279. jaxl/api/client/models/campaign_clone_request_request.py +74 -0
  280. jaxl/api/client/models/campaign_invalid_update_response.py +67 -0
  281. jaxl/api/client/models/campaign_metadata.py +104 -0
  282. jaxl/api/client/models/campaign_metadata_metadata.py +54 -0
  283. jaxl/api/client/models/campaign_response.py +141 -0
  284. jaxl/api/client/models/campaign_response_status_enum.py +25 -0
  285. jaxl/api/client/models/campaign_stats.py +95 -0
  286. jaxl/api/client/models/campaign_stats_v2.py +105 -0
  287. jaxl/api/client/models/campaign_tag.py +74 -0
  288. jaxl/api/client/models/campaign_update_status_enum.py +18 -0
  289. jaxl/api/client/models/campaign_upload_request.py +248 -0
  290. jaxl/api/client/models/campaign_upload_request.py.orig +239 -0
  291. jaxl/api/client/models/campaign_upload_type_enum.py +22 -0
  292. jaxl/api/client/models/campaign_usage_summary.py +88 -0
  293. jaxl/api/client/models/campaign_v2.py +141 -0
  294. jaxl/api/client/models/campaign_v2_status_enum.py +26 -0
  295. jaxl/api/client/models/campaign_window_request.py +81 -0
  296. jaxl/api/client/models/can_user_resubscribe_plan.py +74 -0
  297. jaxl/api/client/models/cancel_subscription_response.py +67 -0
  298. jaxl/api/client/models/canceled_by_enum.py +21 -0
  299. jaxl/api/client/models/cannot_create_plan.py +67 -0
  300. jaxl/api/client/models/cannot_create_user_identity_response.py +67 -0
  301. jaxl/api/client/models/cannot_resume_subscription_response.py +67 -0
  302. jaxl/api/client/models/capabilities.py +115 -0
  303. jaxl/api/client/models/chart_type_enum.py +20 -0
  304. jaxl/api/client/models/checkout_options.py +106 -0
  305. jaxl/api/client/models/checkout_session_expired_response.py +67 -0
  306. jaxl/api/client/models/cmd_enum.py +18 -0
  307. jaxl/api/client/models/connection.py +123 -0
  308. jaxl/api/client/models/contact.py +145 -0
  309. jaxl/api/client/models/contact_address.py +102 -0
  310. jaxl/api/client/models/contact_email.py +81 -0
  311. jaxl/api/client/models/contact_phone.py +74 -0
  312. jaxl/api/client/models/content_type_enum.py +19 -0
  313. jaxl/api/client/models/conversation.py +135 -0
  314. jaxl/api/client/models/conversation_create_request.py +92 -0
  315. jaxl/api/client/models/conversation_type_enum.py +20 -0
  316. jaxl/api/client/models/country.py +128 -0
  317. jaxl/api/client/models/create_thread_request.py +67 -0
  318. jaxl/api/client/models/credit.py +108 -0
  319. jaxl/api/client/models/cta.py +127 -0
  320. jaxl/api/client/models/cta_request.py +127 -0
  321. jaxl/api/client/models/cta_type_enum.py +22 -0
  322. jaxl/api/client/models/currency_enum.py +56 -0
  323. jaxl/api/client/models/current_status_enum.py +22 -0
  324. jaxl/api/client/models/customer_cannot_checkout_due_to_ongoing_checkout.py +75 -0
  325. jaxl/api/client/models/customer_cannot_purchase_item.py +83 -0
  326. jaxl/api/client/models/customer_consumable_total.py +81 -0
  327. jaxl/api/client/models/customer_order_consumables_serializer_v2.py +133 -0
  328. jaxl/api/client/models/customer_order_sku.py +87 -0
  329. jaxl/api/client/models/customer_order_status_changed_notification.py +244 -0
  330. jaxl/api/client/models/customer_order_status_changed_notification_attributes.py +54 -0
  331. jaxl/api/client/models/customer_order_status_changed_notification_order_attributes.py +56 -0
  332. jaxl/api/client/models/customer_order_status_changed_notification_type_enum.py +25 -0
  333. jaxl/api/client/models/customer_order_subscriptions_serializer_v2.py +286 -0
  334. jaxl/api/client/models/customer_order_subscriptions_serializer_v2_status_enum.py +24 -0
  335. jaxl/api/client/models/customer_provider_serializer_v2.py +104 -0
  336. jaxl/api/client/models/device.py +249 -0
  337. jaxl/api/client/models/device_attestation_error.py +71 -0
  338. jaxl/api/client/models/device_attestation_error_reason_enum.py +40 -0
  339. jaxl/api/client/models/device_attestation_response.py +67 -0
  340. jaxl/api/client/models/device_attestation_response_request.py +67 -0
  341. jaxl/api/client/models/device_link_response.py +67 -0
  342. jaxl/api/client/models/device_token_provider_enum.py +19 -0
  343. jaxl/api/client/models/device_token_request.py +77 -0
  344. jaxl/api/client/models/device_token_response.py +67 -0
  345. jaxl/api/client/models/device_transport_request.py +113 -0
  346. jaxl/api/client/models/device_transport_response.py +118 -0
  347. jaxl/api/client/models/device_update_request.py +67 -0
  348. jaxl/api/client/models/dh_message.py +249 -0
  349. jaxl/api/client/models/dh_message_attachment.py +110 -0
  350. jaxl/api/client/models/dh_message_reaction.py +92 -0
  351. jaxl/api/client/models/dh_message_reaction_request_request.py +67 -0
  352. jaxl/api/client/models/dh_message_type_enum.py +27 -0
  353. jaxl/api/client/models/dh_public_key_read_receipt_response.py +67 -0
  354. jaxl/api/client/models/direction_enum.py +19 -0
  355. jaxl/api/client/models/download_response.py +102 -0
  356. jaxl/api/client/models/download_response_headers.py +54 -0
  357. jaxl/api/client/models/duration_enum.py +21 -0
  358. jaxl/api/client/models/emoji.py +74 -0
  359. jaxl/api/client/models/emoji_reaction.py +92 -0
  360. jaxl/api/client/models/environment_enum.py +20 -0
  361. jaxl/api/client/models/family.py +129 -0
  362. jaxl/api/client/models/family_invite.py +67 -0
  363. jaxl/api/client/models/family_invite_request.py +67 -0
  364. jaxl/api/client/models/family_membership.py +92 -0
  365. jaxl/api/client/models/family_status.py +69 -0
  366. jaxl/api/client/models/family_status_request.py +69 -0
  367. jaxl/api/client/models/family_status_status_enum.py +21 -0
  368. jaxl/api/client/models/format_enum.py +18 -0
  369. jaxl/api/client/models/gateway_enum.py +25 -0
  370. jaxl/api/client/models/greeting.py +132 -0
  371. jaxl/api/client/models/greeting_configuration_response.py +185 -0
  372. jaxl/api/client/models/greeting_creation_request_request.py +245 -0
  373. jaxl/api/client/models/greeting_creation_response.py +89 -0
  374. jaxl/api/client/models/greeting_type_enum.py +19 -0
  375. jaxl/api/client/models/id_enum.py +18 -0
  376. jaxl/api/client/models/identity_requirement.py +67 -0
  377. jaxl/api/client/models/improper_user_identity_attributes.py +77 -0
  378. jaxl/api/client/models/improper_user_identity_attributes_errors.py +54 -0
  379. jaxl/api/client/models/inbound.py +142 -0
  380. jaxl/api/client/models/incorrect_pdf_image_conversion.py +67 -0
  381. jaxl/api/client/models/individual_plan_request.py +67 -0
  382. jaxl/api/client/models/information.py +93 -0
  383. jaxl/api/client/models/invalid_call_search_response.py +67 -0
  384. jaxl/api/client/models/invalid_request.py +67 -0
  385. jaxl/api/client/models/invalid_sms_response.py +67 -0
  386. jaxl/api/client/models/iso_country_enum.py +185 -0
  387. jaxl/api/client/models/item.py +125 -0
  388. jaxl/api/client/models/ivr.py +81 -0
  389. jaxl/api/client/models/ivr_collection.py +77 -0
  390. jaxl/api/client/models/ivr_collection_request.py +77 -0
  391. jaxl/api/client/models/ivr_menu_request.py +77 -0
  392. jaxl/api/client/models/ivr_menu_response.py +140 -0
  393. jaxl/api/client/models/ivr_menu_response_status_enum.py +20 -0
  394. jaxl/api/client/models/ivr_options_invalid_response.py +67 -0
  395. jaxl/api/client/models/ivr_options_request.py +116 -0
  396. jaxl/api/client/models/ivr_options_response.py +145 -0
  397. jaxl/api/client/models/ivr_simulation_state_request.py +81 -0
  398. jaxl/api/client/models/ivr_state.py +117 -0
  399. jaxl/api/client/models/ivr_try_request.py +74 -0
  400. jaxl/api/client/models/jaxl_app_context_context.py +117 -0
  401. jaxl/api/client/models/jaxl_app_context_context_app.py +147 -0
  402. jaxl/api/client/models/jaxl_app_context_context_app_type_enum.py +20 -0
  403. jaxl/api/client/models/jaxl_app_context_context_config.py +82 -0
  404. jaxl/api/client/models/jaxl_app_context_context_config_firebase.py +109 -0
  405. jaxl/api/client/models/jaxl_app_context_context_device.py +74 -0
  406. jaxl/api/client/models/jaxl_app_context_context_user.py +81 -0
  407. jaxl/api/client/models/jaxl_app_detail_context.py +89 -0
  408. jaxl/api/client/models/jaxl_app_detail_context_app.py +88 -0
  409. jaxl/api/client/models/jaxl_app_detail_context_endpoints.py +67 -0
  410. jaxl/api/client/models/jaxl_app_messaging_context.py +67 -0
  411. jaxl/api/client/models/jaxl_app_organization_context.py +91 -0
  412. jaxl/api/client/models/jaxl_app_pay_context.py +67 -0
  413. jaxl/api/client/models/jaxl_app_transport_context.py +81 -0
  414. jaxl/api/client/models/jaxl_call_recording_response.py +67 -0
  415. jaxl/api/client/models/key_chain_get_request.py +67 -0
  416. jaxl/api/client/models/key_chain_get_response.py +85 -0
  417. jaxl/api/client/models/key_chain_multi_get_response.py +92 -0
  418. jaxl/api/client/models/key_chain_multi_set_request.py +82 -0
  419. jaxl/api/client/models/key_chain_remove_request.py +67 -0
  420. jaxl/api/client/models/key_chain_set_request.py +81 -0
  421. jaxl/api/client/models/key_chain_wget_request.py +82 -0
  422. jaxl/api/client/models/key_chain_wget_response.py +82 -0
  423. jaxl/api/client/models/key_info.py +90 -0
  424. jaxl/api/client/models/key_info_type_enum.py +20 -0
  425. jaxl/api/client/models/kyc.py +239 -0
  426. jaxl/api/client/models/kyc_address_creation_request.py +138 -0
  427. jaxl/api/client/models/kyc_component_download_request.py +67 -0
  428. jaxl/api/client/models/kyc_component_download_response.py +80 -0
  429. jaxl/api/client/models/kyc_countries.py +92 -0
  430. jaxl/api/client/models/kyc_creation_request.py +172 -0
  431. jaxl/api/client/models/kyc_document_response.py +102 -0
  432. jaxl/api/client/models/kyc_improper_address_response.py +77 -0
  433. jaxl/api/client/models/kyc_improper_address_response_errors.py +54 -0
  434. jaxl/api/client/models/kyc_invalid_response.py +67 -0
  435. jaxl/api/client/models/kyc_invalidated_address_response.py +67 -0
  436. jaxl/api/client/models/kyc_invalidated_address_with_suggestion_response.py +88 -0
  437. jaxl/api/client/models/kyc_invalidated_address_with_suggestion_response_suggested_address.py +56 -0
  438. jaxl/api/client/models/kyc_proof_upload_data_request.py +164 -0
  439. jaxl/api/client/models/kyc_proof_upload_request.py +142 -0
  440. jaxl/api/client/models/kyc_requirements_response.py +114 -0
  441. jaxl/api/client/models/kyc_status_enum.py +18 -0
  442. jaxl/api/client/models/kyc_summary.py +115 -0
  443. jaxl/api/client/models/kyc_upload_metadata.py +81 -0
  444. jaxl/api/client/models/language_enum.py +75 -0
  445. jaxl/api/client/models/library_response.py +110 -0
  446. jaxl/api/client/models/line_chart_response.py +92 -0
  447. jaxl/api/client/models/list_member.py +104 -0
  448. jaxl/api/client/models/live_request.py +101 -0
  449. jaxl/api/client/models/live_response.py +67 -0
  450. jaxl/api/client/models/locale_enum.py +43 -0
  451. jaxl/api/client/models/location.py +74 -0
  452. jaxl/api/client/models/location_enum.py +20 -0
  453. jaxl/api/client/models/logout_account_request.py +67 -0
  454. jaxl/api/client/models/member_request.py +74 -0
  455. jaxl/api/client/models/message.py +130 -0
  456. jaxl/api/client/models/message_create_request.py +92 -0
  457. jaxl/api/client/models/message_search_response.py +115 -0
  458. jaxl/api/client/models/message_word_position_response.py +67 -0
  459. jaxl/api/client/models/message_word_search_response.py +93 -0
  460. jaxl/api/client/models/next_or_cta_request.py +90 -0
  461. jaxl/api/client/models/non_compliant_kyc.py +94 -0
  462. jaxl/api/client/models/non_compliant_kyc_response.py +95 -0
  463. jaxl/api/client/models/notification_request.py +67 -0
  464. jaxl/api/client/models/number_type.py +154 -0
  465. jaxl/api/client/models/order_attributes.py +100 -0
  466. jaxl/api/client/models/order_attributes_attributes.py +54 -0
  467. jaxl/api/client/models/order_checkout_response.py +88 -0
  468. jaxl/api/client/models/order_status_enum.py +22 -0
  469. jaxl/api/client/models/organization.py +123 -0
  470. jaxl/api/client/models/organization_create_request.py +77 -0
  471. jaxl/api/client/models/organization_employee.py +188 -0
  472. jaxl/api/client/models/organization_employee_invitation_request.py +86 -0
  473. jaxl/api/client/models/organization_employee_invite_request.py +77 -0
  474. jaxl/api/client/models/organization_employee_invite_response.py +93 -0
  475. jaxl/api/client/models/organization_employee_membership_request.py +69 -0
  476. jaxl/api/client/models/organization_employee_preferences.py +54 -0
  477. jaxl/api/client/models/organization_employee_status_enum.py +21 -0
  478. jaxl/api/client/models/organization_group_inline.py +74 -0
  479. jaxl/api/client/models/organization_group_member_response.py +78 -0
  480. jaxl/api/client/models/organization_group_request.py +68 -0
  481. jaxl/api/client/models/organization_group_response.py +106 -0
  482. jaxl/api/client/models/organization_preferences.py +54 -0
  483. jaxl/api/client/models/otp_provider_enum.py +20 -0
  484. jaxl/api/client/models/otp_request.py +85 -0
  485. jaxl/api/client/models/otp_response.py +74 -0
  486. jaxl/api/client/models/outbound.py +88 -0
  487. jaxl/api/client/models/paginated_address_provider_list.py +108 -0
  488. jaxl/api/client/models/paginated_analytics_slug_response_list.py +108 -0
  489. jaxl/api/client/models/paginated_app_country_list.py +108 -0
  490. jaxl/api/client/models/paginated_app_domain_list.py +108 -0
  491. jaxl/api/client/models/paginated_call_list.py +108 -0
  492. jaxl/api/client/models/paginated_call_search_response_list.py +108 -0
  493. jaxl/api/client/models/paginated_call_tag_count_list.py +108 -0
  494. jaxl/api/client/models/paginated_call_tag_response_list.py +108 -0
  495. jaxl/api/client/models/paginated_campaign_response_list.py +108 -0
  496. jaxl/api/client/models/paginated_campaign_v2_list.py +108 -0
  497. jaxl/api/client/models/paginated_contact_list.py +108 -0
  498. jaxl/api/client/models/paginated_conversation_list.py +108 -0
  499. jaxl/api/client/models/paginated_country_list.py +108 -0
  500. jaxl/api/client/models/paginated_credit_list.py +108 -0
  501. jaxl/api/client/models/paginated_customer_order_consumables_serializer_v2_list.py +116 -0
  502. jaxl/api/client/models/paginated_customer_order_sku_list.py +108 -0
  503. jaxl/api/client/models/paginated_customer_order_subscriptions_serializer_v2_list.py +116 -0
  504. jaxl/api/client/models/paginated_device_list.py +108 -0
  505. jaxl/api/client/models/paginated_dh_message_list.py +108 -0
  506. jaxl/api/client/models/paginated_family_list.py +108 -0
  507. jaxl/api/client/models/paginated_greeting_configuration_response_list.py +112 -0
  508. jaxl/api/client/models/paginated_ivr_menu_response_list.py +108 -0
  509. jaxl/api/client/models/paginated_ivr_options_response_list.py +108 -0
  510. jaxl/api/client/models/paginated_key_chain_multi_get_response_list.py +110 -0
  511. jaxl/api/client/models/paginated_kyc_countries_list.py +108 -0
  512. jaxl/api/client/models/paginated_kyc_list.py +108 -0
  513. jaxl/api/client/models/paginated_kyc_summary_list.py +108 -0
  514. jaxl/api/client/models/paginated_library_response_list.py +108 -0
  515. jaxl/api/client/models/paginated_list_member_list.py +108 -0
  516. jaxl/api/client/models/paginated_message_list.py +108 -0
  517. jaxl/api/client/models/paginated_message_search_response_list.py +108 -0
  518. jaxl/api/client/models/paginated_organization_employee_list.py +108 -0
  519. jaxl/api/client/models/paginated_organization_group_response_list.py +110 -0
  520. jaxl/api/client/models/paginated_organization_list.py +108 -0
  521. jaxl/api/client/models/paginated_payment_list.py +108 -0
  522. jaxl/api/client/models/paginated_phone_number_list.py +108 -0
  523. jaxl/api/client/models/paginated_plan_country_number_types_list.py +108 -0
  524. jaxl/api/client/models/paginated_plan_list.py +108 -0
  525. jaxl/api/client/models/paginated_plan_summary_response_list.py +108 -0
  526. jaxl/api/client/models/paginated_proof_list.py +108 -0
  527. jaxl/api/client/models/paginated_thread_list.py +108 -0
  528. jaxl/api/client/models/paginated_transcription_list.py +108 -0
  529. jaxl/api/client/models/paginated_transcription_search_response_list.py +112 -0
  530. jaxl/api/client/models/paginated_transcription_search_response_serializer_v2_list.py +116 -0
  531. jaxl/api/client/models/paginated_unmatched_fields_list.py +108 -0
  532. jaxl/api/client/models/paginated_user_identity_list.py +108 -0
  533. jaxl/api/client/models/patched_campaign_update_request.py +92 -0
  534. jaxl/api/client/models/patched_conversation_name_request.py +75 -0
  535. jaxl/api/client/models/patched_dh_public_key_read_receipt_request.py +87 -0
  536. jaxl/api/client/models/patched_ivr_menu_request.py +75 -0
  537. jaxl/api/client/models/patched_ivr_options_update_request.py +115 -0
  538. jaxl/api/client/models/patched_kyc_detail_request.py +67 -0
  539. jaxl/api/client/models/patched_order_attributes_request.py +102 -0
  540. jaxl/api/client/models/patched_order_attributes_request_attributes.py +54 -0
  541. jaxl/api/client/models/patched_organization_group_member_update_request.py +88 -0
  542. jaxl/api/client/models/patched_organization_group_phone_number_update_request.py +75 -0
  543. jaxl/api/client/models/patched_organization_group_update_request.py +88 -0
  544. jaxl/api/client/models/patched_organization_member_update_request.py +88 -0
  545. jaxl/api/client/models/patched_phone_number_request.py +68 -0
  546. jaxl/api/client/models/payment.py +183 -0
  547. jaxl/api/client/models/payment_gateway_fees_info.py +74 -0
  548. jaxl/api/client/models/pdf_image_conversion_request.py +126 -0
  549. jaxl/api/client/models/period_enum.py +21 -0
  550. jaxl/api/client/models/phone_number.py +175 -0
  551. jaxl/api/client/models/phone_number_capabilities.py +81 -0
  552. jaxl/api/client/models/phone_number_check_request.py +67 -0
  553. jaxl/api/client/models/phone_number_check_response.py +83 -0
  554. jaxl/api/client/models/phone_number_checkout_request.py +78 -0
  555. jaxl/api/client/models/phone_number_provider_enum.py +23 -0
  556. jaxl/api/client/models/phone_number_search_response.py +100 -0
  557. jaxl/api/client/models/phone_number_status_enum.py +25 -0
  558. jaxl/api/client/models/pie_chart_response.py +82 -0
  559. jaxl/api/client/models/plan.py +225 -0
  560. jaxl/api/client/models/plan_cancel_info.py +97 -0
  561. jaxl/api/client/models/plan_country_number_types.py +74 -0
  562. jaxl/api/client/models/plan_create_request.py +215 -0
  563. jaxl/api/client/models/plan_create_request_item_attributes.py +54 -0
  564. jaxl/api/client/models/plan_create_type_enum.py +18 -0
  565. jaxl/api/client/models/plan_expiry_timestamp.py +101 -0
  566. jaxl/api/client/models/plan_expiry_timestamp_type_enum.py +19 -0
  567. jaxl/api/client/models/plan_extra_details.py +54 -0
  568. jaxl/api/client/models/plan_item.py +116 -0
  569. jaxl/api/client/models/plan_price_gateway_request.py +140 -0
  570. jaxl/api/client/models/plan_price_gateway_request_attributes.py +54 -0
  571. jaxl/api/client/models/plan_response.py +67 -0
  572. jaxl/api/client/models/plan_summary_response.py +240 -0
  573. jaxl/api/client/models/plan_summary_response_extra_details.py +54 -0
  574. jaxl/api/client/models/plan_type.py +92 -0
  575. jaxl/api/client/models/plan_type_cycle.py +84 -0
  576. jaxl/api/client/models/platform_enum.py +23 -0
  577. jaxl/api/client/models/point_response.py +92 -0
  578. jaxl/api/client/models/pricing_error.py +67 -0
  579. jaxl/api/client/models/pricing_response.py +101 -0
  580. jaxl/api/client/models/product_group.py +74 -0
  581. jaxl/api/client/models/proof.py +151 -0
  582. jaxl/api/client/models/proof_document.py +114 -0
  583. jaxl/api/client/models/proof_download_response.py +85 -0
  584. jaxl/api/client/models/proof_field.py +92 -0
  585. jaxl/api/client/models/proof_field_request.py +92 -0
  586. jaxl/api/client/models/proof_id_request.py +67 -0
  587. jaxl/api/client/models/proof_status_enum.py +21 -0
  588. jaxl/api/client/models/proofs_requirement.py +89 -0
  589. jaxl/api/client/models/provider_notes.py +67 -0
  590. jaxl/api/client/models/provider_pricing.py +83 -0
  591. jaxl/api/client/models/provider_status_enum.py +22 -0
  592. jaxl/api/client/models/purpose_enum.py +20 -0
  593. jaxl/api/client/models/quoted.py +81 -0
  594. jaxl/api/client/models/razor_pay_checkout_options.py +197 -0
  595. jaxl/api/client/models/razor_pay_config.py +73 -0
  596. jaxl/api/client/models/razor_pay_config_display.py +54 -0
  597. jaxl/api/client/models/razor_pay_model.py +99 -0
  598. jaxl/api/client/models/razor_pay_read_only.py +67 -0
  599. jaxl/api/client/models/razor_pay_retry.py +75 -0
  600. jaxl/api/client/models/reaction_by.py +74 -0
  601. jaxl/api/client/models/receipt_validate_request.py +74 -0
  602. jaxl/api/client/models/receipt_validate_response.py +67 -0
  603. jaxl/api/client/models/receipt_validate_serializer_v2_request.py +95 -0
  604. jaxl/api/client/models/referral_request.py +67 -0
  605. jaxl/api/client/models/referral_response.py +67 -0
  606. jaxl/api/client/models/remove_account_request.py +74 -0
  607. jaxl/api/client/models/rental_currency_enum.py +18 -0
  608. jaxl/api/client/models/requirement_enum.py +20 -0
  609. jaxl/api/client/models/resolution_enum.py +21 -0
  610. jaxl/api/client/models/resolve_greeting_response.py +89 -0
  611. jaxl/api/client/models/resource_enum.py +19 -0
  612. jaxl/api/client/models/resume_subscription_response.py +81 -0
  613. jaxl/api/client/models/role_enum.py +18 -0
  614. jaxl/api/client/models/roles_enum.py +21 -0
  615. jaxl/api/client/models/scenario.py +79 -0
  616. jaxl/api/client/models/scenario_enum.py +23 -0
  617. jaxl/api/client/models/scenario_request.py +79 -0
  618. jaxl/api/client/models/schema_retrieve_format.py +18 -0
  619. jaxl/api/client/models/schema_retrieve_lang.py +115 -0
  620. jaxl/api/client/models/schema_retrieve_response_200.py +54 -0
  621. jaxl/api/client/models/sim.py +184 -0
  622. jaxl/api/client/models/sim_command_request_request.py +77 -0
  623. jaxl/api/client/models/sim_create_request.py +161 -0
  624. jaxl/api/client/models/sim_create_request_metadata.py +54 -0
  625. jaxl/api/client/models/sim_metadata.py +54 -0
  626. jaxl/api/client/models/sim_sms_create_request.py +74 -0
  627. jaxl/api/client/models/sms_request_request.py +88 -0
  628. jaxl/api/client/models/state_enum.py +18 -0
  629. jaxl/api/client/models/t_enum.py +20 -0
  630. jaxl/api/client/models/table_chart_response.py +91 -0
  631. jaxl/api/client/models/thread.py +92 -0
  632. jaxl/api/client/models/ticket_create_request.py +74 -0
  633. jaxl/api/client/models/ticket_id.py +67 -0
  634. jaxl/api/client/models/transcription.py +84 -0
  635. jaxl/api/client/models/transcription_alternatives.py +101 -0
  636. jaxl/api/client/models/transcription_download_response.py +104 -0
  637. jaxl/api/client/models/transcription_locale.py +75 -0
  638. jaxl/api/client/models/transcription_result.py +113 -0
  639. jaxl/api/client/models/transcription_results.py +82 -0
  640. jaxl/api/client/models/transcription_search_response.py +107 -0
  641. jaxl/api/client/models/transcription_search_response_serializer_v2.py +124 -0
  642. jaxl/api/client/models/transcription_word.py +81 -0
  643. jaxl/api/client/models/transcription_word_position_response.py +81 -0
  644. jaxl/api/client/models/transcription_word_search_response.py +121 -0
  645. jaxl/api/client/models/transport_packet.py +131 -0
  646. jaxl/api/client/models/transport_packet_d.py +54 -0
  647. jaxl/api/client/models/transport_packet_request.py +131 -0
  648. jaxl/api/client/models/transport_packet_request_d.py +54 -0
  649. jaxl/api/client/models/transport_token.py +74 -0
  650. jaxl/api/client/models/tts_request_request.py +102 -0
  651. jaxl/api/client/models/tts_response.py +67 -0
  652. jaxl/api/client/models/unable_to_clone_campaign.py +67 -0
  653. jaxl/api/client/models/unable_to_fetch_library_files.py +67 -0
  654. jaxl/api/client/models/unable_to_transcribe_call.py +67 -0
  655. jaxl/api/client/models/unit_enum.py +27 -0
  656. jaxl/api/client/models/unmatched_fields.py +92 -0
  657. jaxl/api/client/models/upload.py +110 -0
  658. jaxl/api/client/models/upload_request_request.py +67 -0
  659. jaxl/api/client/models/user.py +99 -0
  660. jaxl/api/client/models/user_agent.py +117 -0
  661. jaxl/api/client/models/user_agent_browser.py +74 -0
  662. jaxl/api/client/models/user_agent_device.py +74 -0
  663. jaxl/api/client/models/user_agent_operating_system.py +67 -0
  664. jaxl/api/client/models/user_agent_platform.py +85 -0
  665. jaxl/api/client/models/user_identity.py +119 -0
  666. jaxl/api/client/models/user_identity_attributes_request.py +139 -0
  667. jaxl/api/client/models/user_identity_creation_request.py +96 -0
  668. jaxl/api/client/models/user_identity_uploaded_data_request.py +124 -0
  669. jaxl/api/client/models/user_identity_uploaded_data_request_additional_attributes.py +56 -0
  670. jaxl/api/client/models/user_serializer_v2.py +75 -0
  671. jaxl/api/client/models/v1_analytics_data_retrieve_date_range.py +46 -0
  672. jaxl/api/client/models/v1_analytics_data_retrieve_resolution.py +21 -0
  673. jaxl/api/client/models/v1_app_organizations_credentials_retrieve_os.py +18 -0
  674. jaxl/api/client/models/v1_app_organizations_credentials_retrieve_platform.py +19 -0
  675. jaxl/api/client/models/v1_app_organizations_list_status_item.py +21 -0
  676. jaxl/api/client/models/v1_calls_list_direction.py +19 -0
  677. jaxl/api/client/models/v1_campaign_export_retrieve_as.py +22 -0
  678. jaxl/api/client/models/v1_campaign_list_status_item.py +25 -0
  679. jaxl/api/client/models/v1_customer_consumables_retrieve_currency.py +55 -0
  680. jaxl/api/client/models/v1_greeting_list_greeting_type_item.py +19 -0
  681. jaxl/api/client/models/v1_greeting_list_language_item.py +75 -0
  682. jaxl/api/client/models/v1_greeting_list_scenario_item.py +23 -0
  683. jaxl/api/client/models/v1_ivr_list_duration.py +23 -0
  684. jaxl/api/client/models/v1_ivr_retrieve_duration.py +23 -0
  685. jaxl/api/client/models/v1_ivr_try_create_lang.py +75 -0
  686. jaxl/api/client/models/v1_ivr_try_retrieve_lang.py +75 -0
  687. jaxl/api/client/models/v1_kyc_address_list_exclude.py +185 -0
  688. jaxl/api/client/models/v1_kyc_address_list_iso_country.py +185 -0
  689. jaxl/api/client/models/v1_kyc_address_list_resource.py +19 -0
  690. jaxl/api/client/models/v1_kyc_address_list_status.py +20 -0
  691. jaxl/api/client/models/v1_kyc_identity_list_iso_country.py +185 -0
  692. jaxl/api/client/models/v1_kyc_list_iso_country.py +185 -0
  693. jaxl/api/client/models/v1_kyc_list_provider_status_item.py +22 -0
  694. jaxl/api/client/models/v1_kyc_list_resource.py +19 -0
  695. jaxl/api/client/models/v1_kyc_list_status.py +18 -0
  696. jaxl/api/client/models/v1_kyc_requirements_retrieve_iso_country.py +185 -0
  697. jaxl/api/client/models/v1_kyc_requirements_retrieve_resource.py +19 -0
  698. jaxl/api/client/models/v1_kyc_summary_list_iso_country.py +185 -0
  699. jaxl/api/client/models/v1_kyc_summary_list_provider_status_item.py +22 -0
  700. jaxl/api/client/models/v1_kyc_summary_list_resource.py +19 -0
  701. jaxl/api/client/models/v1_kyc_summary_list_status.py +18 -0
  702. jaxl/api/client/models/v1_library_default_retrieve_scenario.py +19 -0
  703. jaxl/api/client/models/v1_library_list_scenario.py +21 -0
  704. jaxl/api/client/models/v1_payments_list_currency.py +55 -0
  705. jaxl/api/client/models/v1_payments_list_subscription_type.py +18 -0
  706. jaxl/api/client/models/v1_phonenumbers_list_additional_status_item.py +25 -0
  707. jaxl/api/client/models/v1_phonenumbers_list_provider.py +23 -0
  708. jaxl/api/client/models/v1_phonenumbers_list_status.py +25 -0
  709. jaxl/api/client/models/v1_phonenumbers_search_retrieve_iso_country_code.py +185 -0
  710. jaxl/api/client/models/v1_phonenumbers_search_retrieve_resource.py +19 -0
  711. jaxl/api/client/models/v1_plans_countries_list_type.py +18 -0
  712. jaxl/api/client/models/v1_plans_list_currency.py +55 -0
  713. jaxl/api/client/models/v1_plans_list_type.py +18 -0
  714. jaxl/api/client/models/v1_plans_resources_list_type.py +18 -0
  715. jaxl/api/client/models/v1_plans_retrieve_currency.py +55 -0
  716. jaxl/api/client/models/v1_plans_summary_list_currency.py +55 -0
  717. jaxl/api/client/models/v1_plans_summary_list_gateway.py +25 -0
  718. jaxl/api/client/models/v1_plans_summary_list_type.py +18 -0
  719. jaxl/api/client/models/v2_app_organizations_employees_list_status_item.py +21 -0
  720. jaxl/api/client/models/v2_campaign_export_retrieve_as.py +22 -0
  721. jaxl/api/client/models/v2_campaign_list_status_item.py +25 -0
  722. jaxl/api/client/models/v3_orders_consumables_list_currency.py +55 -0
  723. jaxl/api/client/models/v3_orders_consumables_retrieve_currency.py +55 -0
  724. jaxl/api/client/models/v3_orders_subscriptions_list_currency.py +55 -0
  725. jaxl/api/client/models/v3_orders_subscriptions_list_status_item.py +24 -0
  726. jaxl/api/client/models/v3_orders_subscriptions_retrieve_currency.py +55 -0
  727. jaxl/api/client/models/verify_request.py +74 -0
  728. jaxl/api/client/models/verify_response.py +117 -0
  729. jaxl/api/client/models/verify_token_request.py +85 -0
  730. jaxl/api/client/models/verify_token_response.py +67 -0
  731. jaxl/api/client/models/voice_enum.py +18 -0
  732. jaxl/api/client/py.typed +1 -0
  733. jaxl/api/client/types.py +54 -0
  734. jaxl/api/py.typed +0 -0
  735. jaxl/api/resources/__init__.py +8 -0
  736. jaxl/api/resources/_constants.py +11 -0
  737. jaxl/api/resources/accounts.py +66 -0
  738. jaxl/api/resources/calls.py +141 -0
  739. jaxl/api/resources/campaigns.py +44 -0
  740. jaxl/api/resources/devices.py +28 -0
  741. jaxl/api/resources/ivrs.py +199 -0
  742. jaxl/api/resources/kycs.py +45 -0
  743. jaxl/api/resources/members.py +50 -0
  744. jaxl/api/resources/messages.py +61 -0
  745. jaxl/api/resources/notifications.py +15 -0
  746. jaxl/api/resources/payments.py +110 -0
  747. jaxl/api/resources/phones.py +140 -0
  748. jaxl/api/resources/teams.py +42 -0
  749. jaxl_python-0.0.1.dist-info/METADATA +174 -0
  750. jaxl_python-0.0.1.dist-info/RECORD +754 -0
  751. jaxl_python-0.0.1.dist-info/WHEEL +5 -0
  752. jaxl_python-0.0.1.dist-info/entry_points.txt +2 -0
  753. jaxl_python-0.0.1.dist-info/licenses/LICENSE.md +6 -0
  754. jaxl_python-0.0.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,177 @@
1
+ """
2
+ Copyright (c) 2010-present by Jaxl Innovations Private Limited.
3
+
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms,
7
+ with or without modification, is strictly prohibited.
8
+ """
9
+
10
+ from http import HTTPStatus
11
+ from typing import Any, Dict, Optional, Union, cast
12
+
13
+ import httpx
14
+
15
+ from ... import errors
16
+ from ...client import AuthenticatedClient, Client
17
+ from ...models.call_recording_response import CallRecordingResponse
18
+ from ...types import Response
19
+
20
+
21
+ def _get_kwargs(
22
+ id: int,
23
+ *,
24
+ client: AuthenticatedClient,
25
+ ) -> Dict[str, Any]:
26
+ url = "{}/v1/calls/{id}/recording/".format(client.base_url, id=id)
27
+
28
+ headers: Dict[str, str] = client.get_headers()
29
+ cookies: Dict[str, Any] = client.get_cookies()
30
+
31
+ return {
32
+ "method": "get",
33
+ "url": url,
34
+ "headers": headers,
35
+ "cookies": cookies,
36
+ "timeout": client.get_timeout(),
37
+ }
38
+
39
+
40
+ def _parse_response(
41
+ *, client: Client, response: httpx.Response
42
+ ) -> Optional[Union[Any, CallRecordingResponse]]:
43
+ if response.status_code == HTTPStatus.OK:
44
+ response_200 = CallRecordingResponse.from_dict(response.json())
45
+
46
+ return response_200
47
+ if response.status_code == HTTPStatus.CONFLICT:
48
+ response_409 = cast(Any, None)
49
+ return response_409
50
+ if response.status_code == HTTPStatus.NOT_FOUND:
51
+ response_404 = cast(Any, None)
52
+ return response_404
53
+ if client.raise_on_unexpected_status:
54
+ raise errors.UnexpectedStatus(f"Unexpected status code: {response.status_code}")
55
+ else:
56
+ return None
57
+
58
+
59
+ def _build_response(
60
+ *, client: Client, response: httpx.Response
61
+ ) -> Response[Union[Any, CallRecordingResponse]]:
62
+ return Response(
63
+ status_code=HTTPStatus(response.status_code),
64
+ content=response.content,
65
+ headers=response.headers,
66
+ parsed=_parse_response(client=client, response=response),
67
+ )
68
+
69
+
70
+ def sync_detailed(
71
+ id: int,
72
+ *,
73
+ client: AuthenticatedClient,
74
+ ) -> Response[Union[Any, CallRecordingResponse]]:
75
+ """API view set for Call model.
76
+
77
+ Args:
78
+ id (int):
79
+
80
+ Raises:
81
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
82
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
83
+
84
+ Returns:
85
+ Response[Union[Any, CallRecordingResponse]]
86
+ """
87
+
88
+ kwargs = _get_kwargs(
89
+ id=id,
90
+ client=client,
91
+ )
92
+
93
+ response = httpx.request(
94
+ verify=client.verify_ssl,
95
+ **kwargs,
96
+ )
97
+
98
+ return _build_response(client=client, response=response)
99
+
100
+
101
+ def sync(
102
+ id: int,
103
+ *,
104
+ client: AuthenticatedClient,
105
+ ) -> Optional[Union[Any, CallRecordingResponse]]:
106
+ """API view set for Call model.
107
+
108
+ Args:
109
+ id (int):
110
+
111
+ Raises:
112
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
113
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
114
+
115
+ Returns:
116
+ Response[Union[Any, CallRecordingResponse]]
117
+ """
118
+
119
+ return sync_detailed(
120
+ id=id,
121
+ client=client,
122
+ ).parsed
123
+
124
+
125
+ async def asyncio_detailed(
126
+ id: int,
127
+ *,
128
+ client: AuthenticatedClient,
129
+ ) -> Response[Union[Any, CallRecordingResponse]]:
130
+ """API view set for Call model.
131
+
132
+ Args:
133
+ id (int):
134
+
135
+ Raises:
136
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
137
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
138
+
139
+ Returns:
140
+ Response[Union[Any, CallRecordingResponse]]
141
+ """
142
+
143
+ kwargs = _get_kwargs(
144
+ id=id,
145
+ client=client,
146
+ )
147
+
148
+ async with httpx.AsyncClient(verify=client.verify_ssl) as _client:
149
+ response = await _client.request(**kwargs)
150
+
151
+ return _build_response(client=client, response=response)
152
+
153
+
154
+ async def asyncio(
155
+ id: int,
156
+ *,
157
+ client: AuthenticatedClient,
158
+ ) -> Optional[Union[Any, CallRecordingResponse]]:
159
+ """API view set for Call model.
160
+
161
+ Args:
162
+ id (int):
163
+
164
+ Raises:
165
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
166
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
167
+
168
+ Returns:
169
+ Response[Union[Any, CallRecordingResponse]]
170
+ """
171
+
172
+ return (
173
+ await asyncio_detailed(
174
+ id=id,
175
+ client=client,
176
+ )
177
+ ).parsed
@@ -0,0 +1,186 @@
1
+ """
2
+ Copyright (c) 2010-present by Jaxl Innovations Private Limited.
3
+
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms,
7
+ with or without modification, is strictly prohibited.
8
+ """
9
+
10
+ from http import HTTPStatus
11
+ from typing import Any, Dict, Optional, Union
12
+
13
+ import httpx
14
+
15
+ from ... import errors
16
+ from ...client import AuthenticatedClient, Client
17
+ from ...models.call import Call
18
+ from ...types import UNSET, Response, Unset
19
+
20
+
21
+ def _get_kwargs(
22
+ id: int,
23
+ *,
24
+ client: AuthenticatedClient,
25
+ currency: Union[Unset, None, int] = UNSET,
26
+ ) -> Dict[str, Any]:
27
+ url = "{}/v1/calls/{id}/".format(client.base_url, id=id)
28
+
29
+ headers: Dict[str, str] = client.get_headers()
30
+ cookies: Dict[str, Any] = client.get_cookies()
31
+
32
+ params: Dict[str, Any] = {}
33
+ params["currency"] = currency
34
+
35
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
36
+
37
+ return {
38
+ "method": "get",
39
+ "url": url,
40
+ "headers": headers,
41
+ "cookies": cookies,
42
+ "timeout": client.get_timeout(),
43
+ "params": params,
44
+ }
45
+
46
+
47
+ def _parse_response(*, client: Client, response: httpx.Response) -> Optional[Call]:
48
+ if response.status_code == HTTPStatus.OK:
49
+ response_200 = Call.from_dict(response.json())
50
+
51
+ return response_200
52
+ if client.raise_on_unexpected_status:
53
+ raise errors.UnexpectedStatus(f"Unexpected status code: {response.status_code}")
54
+ else:
55
+ return None
56
+
57
+
58
+ def _build_response(*, client: Client, response: httpx.Response) -> Response[Call]:
59
+ return Response(
60
+ status_code=HTTPStatus(response.status_code),
61
+ content=response.content,
62
+ headers=response.headers,
63
+ parsed=_parse_response(client=client, response=response),
64
+ )
65
+
66
+
67
+ def sync_detailed(
68
+ id: int,
69
+ *,
70
+ client: AuthenticatedClient,
71
+ currency: Union[Unset, None, int] = UNSET,
72
+ ) -> Response[Call]:
73
+ """API view set for Call model.
74
+
75
+ Args:
76
+ id (int):
77
+ currency (Union[Unset, None, int]):
78
+
79
+ Raises:
80
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
81
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
82
+
83
+ Returns:
84
+ Response[Call]
85
+ """
86
+
87
+ kwargs = _get_kwargs(
88
+ id=id,
89
+ client=client,
90
+ currency=currency,
91
+ )
92
+
93
+ response = httpx.request(
94
+ verify=client.verify_ssl,
95
+ **kwargs,
96
+ )
97
+
98
+ return _build_response(client=client, response=response)
99
+
100
+
101
+ def sync(
102
+ id: int,
103
+ *,
104
+ client: AuthenticatedClient,
105
+ currency: Union[Unset, None, int] = UNSET,
106
+ ) -> Optional[Call]:
107
+ """API view set for Call model.
108
+
109
+ Args:
110
+ id (int):
111
+ currency (Union[Unset, None, int]):
112
+
113
+ Raises:
114
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
115
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
116
+
117
+ Returns:
118
+ Response[Call]
119
+ """
120
+
121
+ return sync_detailed(
122
+ id=id,
123
+ client=client,
124
+ currency=currency,
125
+ ).parsed
126
+
127
+
128
+ async def asyncio_detailed(
129
+ id: int,
130
+ *,
131
+ client: AuthenticatedClient,
132
+ currency: Union[Unset, None, int] = UNSET,
133
+ ) -> Response[Call]:
134
+ """API view set for Call model.
135
+
136
+ Args:
137
+ id (int):
138
+ currency (Union[Unset, None, int]):
139
+
140
+ Raises:
141
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
142
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
143
+
144
+ Returns:
145
+ Response[Call]
146
+ """
147
+
148
+ kwargs = _get_kwargs(
149
+ id=id,
150
+ client=client,
151
+ currency=currency,
152
+ )
153
+
154
+ async with httpx.AsyncClient(verify=client.verify_ssl) as _client:
155
+ response = await _client.request(**kwargs)
156
+
157
+ return _build_response(client=client, response=response)
158
+
159
+
160
+ async def asyncio(
161
+ id: int,
162
+ *,
163
+ client: AuthenticatedClient,
164
+ currency: Union[Unset, None, int] = UNSET,
165
+ ) -> Optional[Call]:
166
+ """API view set for Call model.
167
+
168
+ Args:
169
+ id (int):
170
+ currency (Union[Unset, None, int]):
171
+
172
+ Raises:
173
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
174
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
175
+
176
+ Returns:
177
+ Response[Call]
178
+ """
179
+
180
+ return (
181
+ await asyncio_detailed(
182
+ id=id,
183
+ client=client,
184
+ currency=currency,
185
+ )
186
+ ).parsed
@@ -0,0 +1,286 @@
1
+ """
2
+ Copyright (c) 2010-present by Jaxl Innovations Private Limited.
3
+
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms,
7
+ with or without modification, is strictly prohibited.
8
+ """
9
+
10
+ from http import HTTPStatus
11
+ from typing import Any, Dict, Optional, Union
12
+
13
+ import httpx
14
+
15
+ from ... import errors
16
+ from ...client import AuthenticatedClient, Client
17
+ from ...models.invalid_call_search_response import InvalidCallSearchResponse
18
+ from ...models.paginated_call_search_response_list import (
19
+ PaginatedCallSearchResponseList,
20
+ )
21
+ from ...types import UNSET, Response, Unset
22
+
23
+
24
+ def _get_kwargs(
25
+ *,
26
+ client: AuthenticatedClient,
27
+ limit: Union[Unset, None, int] = UNSET,
28
+ offset: Union[Unset, None, int] = UNSET,
29
+ text: str,
30
+ ) -> Dict[str, Any]:
31
+ url = "{}/v1/calls/search/".format(client.base_url)
32
+
33
+ headers: Dict[str, str] = client.get_headers()
34
+ cookies: Dict[str, Any] = client.get_cookies()
35
+
36
+ params: Dict[str, Any] = {}
37
+ params["limit"] = limit
38
+
39
+ params["offset"] = offset
40
+
41
+ params["text"] = text
42
+
43
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
44
+
45
+ return {
46
+ "method": "get",
47
+ "url": url,
48
+ "headers": headers,
49
+ "cookies": cookies,
50
+ "timeout": client.get_timeout(),
51
+ "params": params,
52
+ }
53
+
54
+
55
+ def _parse_response(
56
+ *, client: Client, response: httpx.Response
57
+ ) -> Optional[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]:
58
+ if response.status_code == HTTPStatus.OK:
59
+ response_200 = PaginatedCallSearchResponseList.from_dict(response.json())
60
+
61
+ return response_200
62
+ if response.status_code == HTTPStatus.BAD_REQUEST:
63
+ response_400 = InvalidCallSearchResponse.from_dict(response.json())
64
+
65
+ return response_400
66
+ if client.raise_on_unexpected_status:
67
+ raise errors.UnexpectedStatus(f"Unexpected status code: {response.status_code}")
68
+ else:
69
+ return None
70
+
71
+
72
+ def _build_response(
73
+ *, client: Client, response: httpx.Response
74
+ ) -> Response[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]:
75
+ return Response(
76
+ status_code=HTTPStatus(response.status_code),
77
+ content=response.content,
78
+ headers=response.headers,
79
+ parsed=_parse_response(client=client, response=response),
80
+ )
81
+
82
+
83
+ def sync_detailed(
84
+ *,
85
+ client: AuthenticatedClient,
86
+ limit: Union[Unset, None, int] = UNSET,
87
+ offset: Union[Unset, None, int] = UNSET,
88
+ text: str,
89
+ ) -> Response[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]:
90
+ """Searches for calls matching a numeric input string and returns grouped call data.
91
+
92
+ This endpoint performs the following:
93
+ - Validates that the input `text` parameter is a numeric string (with optional leading `+`).
94
+ - Filters `Call` records where the input matches either the `from_number` (for incoming calls)
95
+ or `to_number` (for outgoing calls), excluding in-app calls.
96
+ - Groups matching calls by phone number, annotating:
97
+ - The total number of calls (`count`)
98
+ - The timestamp of the most recent call (`last_activity`)
99
+ - The most recent `Call` object (`latest_call`) for detailed info
100
+ - Returns a paginated response where each entry contains:
101
+ - `number`: The phone number associated with the call group
102
+ - `count`: Total calls for that number
103
+ - `last_activity`: Timestamp of the most recent call
104
+ - `latest_call`: Serialized data from the most recent matching `Call`
105
+
106
+ Returns:
107
+ 400 Bad Request if the input text is not a valid number.
108
+ 200 OK with a paginated list of grouped call search results.
109
+
110
+ Args:
111
+ limit (Union[Unset, None, int]):
112
+ offset (Union[Unset, None, int]):
113
+ text (str):
114
+
115
+ Raises:
116
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
117
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
118
+
119
+ Returns:
120
+ Response[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]
121
+ """
122
+
123
+ kwargs = _get_kwargs(
124
+ client=client,
125
+ limit=limit,
126
+ offset=offset,
127
+ text=text,
128
+ )
129
+
130
+ response = httpx.request(
131
+ verify=client.verify_ssl,
132
+ **kwargs,
133
+ )
134
+
135
+ return _build_response(client=client, response=response)
136
+
137
+
138
+ def sync(
139
+ *,
140
+ client: AuthenticatedClient,
141
+ limit: Union[Unset, None, int] = UNSET,
142
+ offset: Union[Unset, None, int] = UNSET,
143
+ text: str,
144
+ ) -> Optional[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]:
145
+ """Searches for calls matching a numeric input string and returns grouped call data.
146
+
147
+ This endpoint performs the following:
148
+ - Validates that the input `text` parameter is a numeric string (with optional leading `+`).
149
+ - Filters `Call` records where the input matches either the `from_number` (for incoming calls)
150
+ or `to_number` (for outgoing calls), excluding in-app calls.
151
+ - Groups matching calls by phone number, annotating:
152
+ - The total number of calls (`count`)
153
+ - The timestamp of the most recent call (`last_activity`)
154
+ - The most recent `Call` object (`latest_call`) for detailed info
155
+ - Returns a paginated response where each entry contains:
156
+ - `number`: The phone number associated with the call group
157
+ - `count`: Total calls for that number
158
+ - `last_activity`: Timestamp of the most recent call
159
+ - `latest_call`: Serialized data from the most recent matching `Call`
160
+
161
+ Returns:
162
+ 400 Bad Request if the input text is not a valid number.
163
+ 200 OK with a paginated list of grouped call search results.
164
+
165
+ Args:
166
+ limit (Union[Unset, None, int]):
167
+ offset (Union[Unset, None, int]):
168
+ text (str):
169
+
170
+ Raises:
171
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
172
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
173
+
174
+ Returns:
175
+ Response[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]
176
+ """
177
+
178
+ return sync_detailed(
179
+ client=client,
180
+ limit=limit,
181
+ offset=offset,
182
+ text=text,
183
+ ).parsed
184
+
185
+
186
+ async def asyncio_detailed(
187
+ *,
188
+ client: AuthenticatedClient,
189
+ limit: Union[Unset, None, int] = UNSET,
190
+ offset: Union[Unset, None, int] = UNSET,
191
+ text: str,
192
+ ) -> Response[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]:
193
+ """Searches for calls matching a numeric input string and returns grouped call data.
194
+
195
+ This endpoint performs the following:
196
+ - Validates that the input `text` parameter is a numeric string (with optional leading `+`).
197
+ - Filters `Call` records where the input matches either the `from_number` (for incoming calls)
198
+ or `to_number` (for outgoing calls), excluding in-app calls.
199
+ - Groups matching calls by phone number, annotating:
200
+ - The total number of calls (`count`)
201
+ - The timestamp of the most recent call (`last_activity`)
202
+ - The most recent `Call` object (`latest_call`) for detailed info
203
+ - Returns a paginated response where each entry contains:
204
+ - `number`: The phone number associated with the call group
205
+ - `count`: Total calls for that number
206
+ - `last_activity`: Timestamp of the most recent call
207
+ - `latest_call`: Serialized data from the most recent matching `Call`
208
+
209
+ Returns:
210
+ 400 Bad Request if the input text is not a valid number.
211
+ 200 OK with a paginated list of grouped call search results.
212
+
213
+ Args:
214
+ limit (Union[Unset, None, int]):
215
+ offset (Union[Unset, None, int]):
216
+ text (str):
217
+
218
+ Raises:
219
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
220
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
221
+
222
+ Returns:
223
+ Response[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]
224
+ """
225
+
226
+ kwargs = _get_kwargs(
227
+ client=client,
228
+ limit=limit,
229
+ offset=offset,
230
+ text=text,
231
+ )
232
+
233
+ async with httpx.AsyncClient(verify=client.verify_ssl) as _client:
234
+ response = await _client.request(**kwargs)
235
+
236
+ return _build_response(client=client, response=response)
237
+
238
+
239
+ async def asyncio(
240
+ *,
241
+ client: AuthenticatedClient,
242
+ limit: Union[Unset, None, int] = UNSET,
243
+ offset: Union[Unset, None, int] = UNSET,
244
+ text: str,
245
+ ) -> Optional[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]:
246
+ """Searches for calls matching a numeric input string and returns grouped call data.
247
+
248
+ This endpoint performs the following:
249
+ - Validates that the input `text` parameter is a numeric string (with optional leading `+`).
250
+ - Filters `Call` records where the input matches either the `from_number` (for incoming calls)
251
+ or `to_number` (for outgoing calls), excluding in-app calls.
252
+ - Groups matching calls by phone number, annotating:
253
+ - The total number of calls (`count`)
254
+ - The timestamp of the most recent call (`last_activity`)
255
+ - The most recent `Call` object (`latest_call`) for detailed info
256
+ - Returns a paginated response where each entry contains:
257
+ - `number`: The phone number associated with the call group
258
+ - `count`: Total calls for that number
259
+ - `last_activity`: Timestamp of the most recent call
260
+ - `latest_call`: Serialized data from the most recent matching `Call`
261
+
262
+ Returns:
263
+ 400 Bad Request if the input text is not a valid number.
264
+ 200 OK with a paginated list of grouped call search results.
265
+
266
+ Args:
267
+ limit (Union[Unset, None, int]):
268
+ offset (Union[Unset, None, int]):
269
+ text (str):
270
+
271
+ Raises:
272
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
273
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
274
+
275
+ Returns:
276
+ Response[Union[InvalidCallSearchResponse, PaginatedCallSearchResponseList]]
277
+ """
278
+
279
+ return (
280
+ await asyncio_detailed(
281
+ client=client,
282
+ limit=limit,
283
+ offset=offset,
284
+ text=text,
285
+ )
286
+ ).parsed