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.
- jaxl/api/__init__.py +85 -0
- jaxl/api/_client.py +588 -0
- jaxl/api/cli.py +53 -0
- jaxl/api/client/__init__.py +18 -0
- jaxl/api/client/_scm_version.py +21 -0
- jaxl/api/client/_scm_version.pyi +7 -0
- jaxl/api/client/api/__init__.py +10 -0
- jaxl/api/client/api/schema/__init__.py +9 -0
- jaxl/api/client/api/schema/schema_retrieve.py +214 -0
- jaxl/api/client/api/v1/__init__.py +9 -0
- jaxl/api/client/api/v1/v1_accounts_logout_create.py +120 -0
- jaxl/api/client/api/v1/v1_accounts_otp_create.py +186 -0
- jaxl/api/client/api/v1/v1_accounts_remove_create.py +122 -0
- jaxl/api/client/api/v1/v1_accounts_verify_create.py +183 -0
- jaxl/api/client/api/v1/v1_analytics_data_retrieve.py +349 -0
- jaxl/api/client/api/v1/v1_analytics_list.py +234 -0
- jaxl/api/client/api/v1/v1_app_countries_list.py +192 -0
- jaxl/api/client/api/v1/v1_app_domains_list.py +207 -0
- jaxl/api/client/api/v1/v1_app_organizations_create.py +178 -0
- jaxl/api/client/api/v1/v1_app_organizations_credentials_retrieve.py +152 -0
- jaxl/api/client/api/v1/v1_app_organizations_devices_list.py +205 -0
- jaxl/api/client/api/v1/v1_app_organizations_list.py +221 -0
- jaxl/api/client/api/v1/v1_app_organizations_me_retrieve.py +178 -0
- jaxl/api/client/api/v1/v1_app_organizations_retrieve.py +171 -0
- jaxl/api/client/api/v1/v1_app_referrals_create.py +175 -0
- jaxl/api/client/api/v1/v1_apps_contact_create.py +124 -0
- jaxl/api/client/api/v1/v1_apps_context_create.py +178 -0
- jaxl/api/client/api/v1/v1_apps_retrieve.py +167 -0
- jaxl/api/client/api/v1/v1_appusers_me_retrieve.py +146 -0
- jaxl/api/client/api/v1/v1_appusers_preferences_create.py +175 -0
- jaxl/api/client/api/v1/v1_appusers_retrieve.py +167 -0
- jaxl/api/client/api/v1/v1_appusers_sdds_create.py +171 -0
- jaxl/api/client/api/v1/v1_call_recording_retrieve.py +188 -0
- jaxl/api/client/api/v1/v1_call_tags_list.py +207 -0
- jaxl/api/client/api/v1/v1_calls_accept_create.py +188 -0
- jaxl/api/client/api/v1/v1_calls_act_create.py +137 -0
- jaxl/api/client/api/v1/v1_calls_dates_retrieve.py +177 -0
- jaxl/api/client/api/v1/v1_calls_destroy.py +114 -0
- jaxl/api/client/api/v1/v1_calls_hangup_retrieve.py +118 -0
- jaxl/api/client/api/v1/v1_calls_list.py +436 -0
- jaxl/api/client/api/v1/v1_calls_record_create.py +129 -0
- jaxl/api/client/api/v1/v1_calls_recording_retrieve.py +177 -0
- jaxl/api/client/api/v1/v1_calls_retrieve.py +186 -0
- jaxl/api/client/api/v1/v1_calls_search_list.py +286 -0
- jaxl/api/client/api/v1/v1_calls_share_create.py +197 -0
- jaxl/api/client/api/v1/v1_calls_tags_create.py +194 -0
- jaxl/api/client/api/v1/v1_calls_tags_destroy.py +127 -0
- jaxl/api/client/api/v1/v1_calls_tags_list.py +188 -0
- jaxl/api/client/api/v1/v1_calls_token_create.py +175 -0
- jaxl/api/client/api/v1/v1_calls_transcribe_create.py +200 -0
- jaxl/api/client/api/v1/v1_calls_transcriptions_list.py +201 -0
- jaxl/api/client/api/v1/v1_calls_usage_retrieve.py +219 -0
- jaxl/api/client/api/v1/v1_campaign_clone_create.py +191 -0
- jaxl/api/client/api/v1/v1_campaign_export_retrieve.py +128 -0
- jaxl/api/client/api/v1/v1_campaign_list.py +217 -0
- jaxl/api/client/api/v1/v1_campaign_partial_update.py +196 -0
- jaxl/api/client/api/v1/v1_campaign_upload_create.py +171 -0
- jaxl/api/client/api/v1/v1_clients_verify_create.py +175 -0
- jaxl/api/client/api/v1/v1_contacts_list.py +188 -0
- jaxl/api/client/api/v1/v1_conversation_ack_retrieve.py +173 -0
- jaxl/api/client/api/v1/v1_conversation_add_members_create.py +209 -0
- jaxl/api/client/api/v1/v1_conversation_create.py +175 -0
- jaxl/api/client/api/v1/v1_conversation_list.py +192 -0
- jaxl/api/client/api/v1/v1_conversation_members_list.py +207 -0
- jaxl/api/client/api/v1/v1_conversation_messages_list.py +222 -0
- jaxl/api/client/api/v1/v1_conversation_remove_member_retrieve.py +192 -0
- jaxl/api/client/api/v1/v1_conversation_update_name_partial_update.py +120 -0
- jaxl/api/client/api/v1/v1_credit_list.py +188 -0
- jaxl/api/client/api/v1/v1_customer_consumables_retrieve.py +194 -0
- jaxl/api/client/api/v1/v1_customer_invoice_retrieve.py +120 -0
- jaxl/api/client/api/v1/v1_customer_subscription_cancel_create.py +177 -0
- jaxl/api/client/api/v1/v1_customer_subscription_resume_create.py +180 -0
- jaxl/api/client/api/v1/v1_device_keys_get_create.py +174 -0
- jaxl/api/client/api/v1/v1_device_keys_multiget_list.py +214 -0
- jaxl/api/client/api/v1/v1_device_keys_multiset_create.py +118 -0
- jaxl/api/client/api/v1/v1_device_keys_remove_create.py +118 -0
- jaxl/api/client/api/v1/v1_device_keys_set_create.py +120 -0
- jaxl/api/client/api/v1/v1_device_keys_wget_create.py +182 -0
- jaxl/api/client/api/v1/v1_device_transport_create.py +175 -0
- jaxl/api/client/api/v1/v1_devices_attest_create.py +231 -0
- jaxl/api/client/api/v1/v1_devices_link_create.py +150 -0
- jaxl/api/client/api/v1/v1_devices_list.py +222 -0
- jaxl/api/client/api/v1/v1_devices_parent_retrieve.py +175 -0
- jaxl/api/client/api/v1/v1_devices_retrieve.py +174 -0
- jaxl/api/client/api/v1/v1_devices_sdds_create.py +177 -0
- jaxl/api/client/api/v1/v1_devices_sdds_retrieve.py +171 -0
- jaxl/api/client/api/v1/v1_devices_token_create.py +188 -0
- jaxl/api/client/api/v1/v1_devices_unlink_create.py +114 -0
- jaxl/api/client/api/v1/v1_devices_update.py +193 -0
- jaxl/api/client/api/v1/v1_families_invite_update.py +175 -0
- jaxl/api/client/api/v1/v1_families_list.py +192 -0
- jaxl/api/client/api/v1/v1_families_membership_create.py +188 -0
- jaxl/api/client/api/v1/v1_families_retrieve.py +167 -0
- jaxl/api/client/api/v1/v1_greeting_audio_create.py +171 -0
- jaxl/api/client/api/v1/v1_greeting_deactivate_partial_update.py +172 -0
- jaxl/api/client/api/v1/v1_greeting_disable_create.py +173 -0
- jaxl/api/client/api/v1/v1_greeting_latest_create.py +176 -0
- jaxl/api/client/api/v1/v1_greeting_list.py +275 -0
- jaxl/api/client/api/v1/v1_greeting_new_create.py +173 -0
- jaxl/api/client/api/v1/v1_greeting_resolve_create.py +174 -0
- jaxl/api/client/api/v1/v1_greeting_retrieve.py +169 -0
- jaxl/api/client/api/v1/v1_greeting_upload_create.py +173 -0
- jaxl/api/client/api/v1/v1_ivr_create.py +175 -0
- jaxl/api/client/api/v1/v1_ivr_list.py +229 -0
- jaxl/api/client/api/v1/v1_ivr_options_create.py +199 -0
- jaxl/api/client/api/v1/v1_ivr_options_list.py +207 -0
- jaxl/api/client/api/v1/v1_ivr_options_partial_update.py +216 -0
- jaxl/api/client/api/v1/v1_ivr_options_retrieve.py +189 -0
- jaxl/api/client/api/v1/v1_ivr_partial_update.py +188 -0
- jaxl/api/client/api/v1/v1_ivr_retrieve.py +209 -0
- jaxl/api/client/api/v1/v1_ivr_try_create.py +236 -0
- jaxl/api/client/api/v1/v1_ivr_try_retrieve.py +219 -0
- jaxl/api/client/api/v1/v1_kyc_aadhar_create.py +199 -0
- jaxl/api/client/api/v1/v1_kyc_address_create.py +239 -0
- jaxl/api/client/api/v1/v1_kyc_address_list.py +302 -0
- jaxl/api/client/api/v1/v1_kyc_address_retrieve.py +167 -0
- jaxl/api/client/api/v1/v1_kyc_address_url_create.py +191 -0
- jaxl/api/client/api/v1/v1_kyc_countries_list.py +188 -0
- jaxl/api/client/api/v1/v1_kyc_create.py +176 -0
- jaxl/api/client/api/v1/v1_kyc_identity_create.py +211 -0
- jaxl/api/client/api/v1/v1_kyc_identity_list.py +210 -0
- jaxl/api/client/api/v1/v1_kyc_identity_retrieve.py +167 -0
- jaxl/api/client/api/v1/v1_kyc_identity_url_create.py +191 -0
- jaxl/api/client/api/v1/v1_kyc_list.py +277 -0
- jaxl/api/client/api/v1/v1_kyc_otp_create.py +180 -0
- jaxl/api/client/api/v1/v1_kyc_partial_update.py +180 -0
- jaxl/api/client/api/v1/v1_kyc_proof_list.py +188 -0
- jaxl/api/client/api/v1/v1_kyc_proof_ocr_list.py +190 -0
- jaxl/api/client/api/v1/v1_kyc_proof_retrieve.py +163 -0
- jaxl/api/client/api/v1/v1_kyc_proof_url_create.py +189 -0
- jaxl/api/client/api/v1/v1_kyc_requirements_retrieve.py +224 -0
- jaxl/api/client/api/v1/v1_kyc_retrieve.py +163 -0
- jaxl/api/client/api/v1/v1_kyc_summary_list.py +289 -0
- jaxl/api/client/api/v1/v1_kyc_upload_create.py +178 -0
- jaxl/api/client/api/v1/v1_kyc_verify_create.py +180 -0
- jaxl/api/client/api/v1/v1_library_create.py +171 -0
- jaxl/api/client/api/v1/v1_library_default_retrieve.py +178 -0
- jaxl/api/client/api/v1/v1_library_list.py +215 -0
- jaxl/api/client/api/v1/v1_live_create.py +181 -0
- jaxl/api/client/api/v1/v1_message_create.py +175 -0
- jaxl/api/client/api/v1/v1_message_destroy.py +114 -0
- jaxl/api/client/api/v1/v1_message_search_list.py +235 -0
- jaxl/api/client/api/v1/v1_messages_destroy.py +118 -0
- jaxl/api/client/api/v1/v1_messages_list.py +229 -0
- jaxl/api/client/api/v1/v1_messages_reactions_create.py +196 -0
- jaxl/api/client/api/v1/v1_messages_reactions_destroy.py +190 -0
- jaxl/api/client/api/v1/v1_messages_receipt_partial_update.py +198 -0
- jaxl/api/client/api/v1/v1_messages_retrieve.py +193 -0
- jaxl/api/client/api/v1/v1_notifications_ack_create.py +118 -0
- jaxl/api/client/api/v1/v1_orders_attributes_partial_update.py +205 -0
- jaxl/api/client/api/v1/v1_orders_attributes_retrieve.py +186 -0
- jaxl/api/client/api/v1/v1_orders_checkout_create.py +233 -0
- jaxl/api/client/api/v1/v1_orders_checkout_destroy.py +177 -0
- jaxl/api/client/api/v1/v1_orders_receipt_validate_create.py +202 -0
- jaxl/api/client/api/v1/v1_payments_list.py +292 -0
- jaxl/api/client/api/v1/v1_pdf_convert_create.py +177 -0
- jaxl/api/client/api/v1/v1_phonenumbers_check_create.py +178 -0
- jaxl/api/client/api/v1/v1_phonenumbers_checkout_create.py +120 -0
- jaxl/api/client/api/v1/v1_phonenumbers_list.py +301 -0
- jaxl/api/client/api/v1/v1_phonenumbers_partial_update.py +192 -0
- jaxl/api/client/api/v1/v1_phonenumbers_retrieve.py +171 -0
- jaxl/api/client/api/v1/v1_phonenumbers_search_retrieve.py +319 -0
- jaxl/api/client/api/v1/v1_plans_bundle_create.py +176 -0
- jaxl/api/client/api/v1/v1_plans_countries_list.py +241 -0
- jaxl/api/client/api/v1/v1_plans_create.py +180 -0
- jaxl/api/client/api/v1/v1_plans_list.py +304 -0
- jaxl/api/client/api/v1/v1_plans_resources_list.py +221 -0
- jaxl/api/client/api/v1/v1_plans_retrieve.py +226 -0
- jaxl/api/client/api/v1/v1_plans_summary_list.py +283 -0
- jaxl/api/client/api/v1/v1_pricing_data_retrieve.py +231 -0
- jaxl/api/client/api/v1/v1_sim_command_create.py +123 -0
- jaxl/api/client/api/v1/v1_sim_create.py +174 -0
- jaxl/api/client/api/v1/v1_sim_destroy.py +112 -0
- jaxl/api/client/api/v1/v1_sim_heartbeart_create.py +112 -0
- jaxl/api/client/api/v1/v1_sim_sms_create.py +123 -0
- jaxl/api/client/api/v1/v1_sms_create.py +174 -0
- jaxl/api/client/api/v1/v1_thread_create.py +167 -0
- jaxl/api/client/api/v1/v1_thread_list.py +207 -0
- jaxl/api/client/api/v1/v1_ticket_create.py +175 -0
- jaxl/api/client/api/v1/v1_transcription_locale_retrieve.py +146 -0
- jaxl/api/client/api/v1/v1_transcription_result_retrieve.py +146 -0
- jaxl/api/client/api/v1/v1_transcription_search_list.py +237 -0
- jaxl/api/client/api/v1/v1_transcription_url_retrieve.py +194 -0
- jaxl/api/client/api/v1/v1_tts_create.py +171 -0
- jaxl/api/client/api/v1/v1_users_me_retrieve.py +146 -0
- jaxl/api/client/api/v1/v1_users_retrieve.py +167 -0
- jaxl/api/client/api/v2/__init__.py +9 -0
- jaxl/api/client/api/v2/v2_app_organizations_employees_invite_create.py +194 -0
- jaxl/api/client/api/v2/v2_app_organizations_employees_list.py +282 -0
- jaxl/api/client/api/v2/v2_app_organizations_employees_membership_create.py +205 -0
- jaxl/api/client/api/v2/v2_app_organizations_employees_partial_update.py +136 -0
- jaxl/api/client/api/v2/v2_app_organizations_employees_retrieve.py +189 -0
- jaxl/api/client/api/v2/v2_app_organizations_groups_create.py +194 -0
- jaxl/api/client/api/v2/v2_app_organizations_groups_list.py +224 -0
- jaxl/api/client/api/v2/v2_app_organizations_groups_members_partial_update.py +141 -0
- jaxl/api/client/api/v2/v2_app_organizations_groups_members_retrieve.py +197 -0
- jaxl/api/client/api/v2/v2_app_organizations_groups_partial_update.py +205 -0
- jaxl/api/client/api/v2/v2_app_organizations_groups_phone_number_partial_update.py +136 -0
- jaxl/api/client/api/v2/v2_app_organizations_groups_retrieve.py +186 -0
- jaxl/api/client/api/v2/v2_campaign_clone_create.py +191 -0
- jaxl/api/client/api/v2/v2_campaign_export_retrieve.py +128 -0
- jaxl/api/client/api/v2/v2_campaign_list.py +215 -0
- jaxl/api/client/api/v2/v2_campaign_partial_update.py +196 -0
- jaxl/api/client/api/v2/v2_customer_orders_notification_retrieve.py +148 -0
- jaxl/api/client/api/v2/v2_orders_receipt_validate_create.py +204 -0
- jaxl/api/client/api/v2/v2_transcription_search_list.py +237 -0
- jaxl/api/client/api/v2/v2_users_me_retrieve.py +150 -0
- jaxl/api/client/api/v3/__init__.py +9 -0
- jaxl/api/client/api/v3/v3_orders_consumables_list.py +228 -0
- jaxl/api/client/api/v3/v3_orders_consumables_retrieve.py +209 -0
- jaxl/api/client/api/v3/v3_orders_skus_list.py +205 -0
- jaxl/api/client/api/v3/v3_orders_subscriptions_list.py +287 -0
- jaxl/api/client/api/v3/v3_orders_subscriptions_retrieve.py +209 -0
- jaxl/api/client/client.py +73 -0
- jaxl/api/client/errors.py +19 -0
- jaxl/api/client/models/__init__.py +1191 -0
- jaxl/api/client/models/aadhar_attributes_request.py +106 -0
- jaxl/api/client/models/aadhar_invalid_document_response.py +75 -0
- jaxl/api/client/models/aadhar_otp_invalid_response.py +67 -0
- jaxl/api/client/models/aadhar_otp_request_request.py +74 -0
- jaxl/api/client/models/aadhar_otp_response.py +74 -0
- jaxl/api/client/models/aadhar_otp_verification_request_request.py +74 -0
- jaxl/api/client/models/aadhar_otp_verification_response.py +80 -0
- jaxl/api/client/models/aadhar_upload_request.py +121 -0
- jaxl/api/client/models/ack.py +67 -0
- jaxl/api/client/models/act_enum.py +20 -0
- jaxl/api/client/models/action_enum.py +20 -0
- jaxl/api/client/models/additional_fields.py +115 -0
- jaxl/api/client/models/additional_fields_type_enum.py +19 -0
- jaxl/api/client/models/address_creation_request.py +111 -0
- jaxl/api/client/models/address_provider.py +182 -0
- jaxl/api/client/models/address_provider_status_enum.py +20 -0
- jaxl/api/client/models/address_requirement.py +77 -0
- jaxl/api/client/models/analytic.py +91 -0
- jaxl/api/client/models/analytics_slug_response.py +83 -0
- jaxl/api/client/models/app.py +89 -0
- jaxl/api/client/models/app_contact_request.py +74 -0
- jaxl/api/client/models/app_context_response.py +165 -0
- jaxl/api/client/models/app_country.py +96 -0
- jaxl/api/client/models/app_domain.py +83 -0
- jaxl/api/client/models/app_price.py +107 -0
- jaxl/api/client/models/app_user.py +110 -0
- jaxl/api/client/models/app_user_preferences.py +85 -0
- jaxl/api/client/models/app_user_preferences_preferences.py +54 -0
- jaxl/api/client/models/app_user_preferences_request.py +85 -0
- jaxl/api/client/models/app_user_preferences_request_preferences.py +54 -0
- jaxl/api/client/models/app_user_sdds_response.py +67 -0
- jaxl/api/client/models/available_phone_number.py +159 -0
- jaxl/api/client/models/available_phone_number_capabilities.py +83 -0
- jaxl/api/client/models/available_phone_number_provider_enum.py +20 -0
- jaxl/api/client/models/bundle_create_request.py +109 -0
- jaxl/api/client/models/business_attributes_request.py +81 -0
- jaxl/api/client/models/call.py +447 -0
- jaxl/api/client/models/call_accept_request.py +76 -0
- jaxl/api/client/models/call_accept_response.py +123 -0
- jaxl/api/client/models/call_accept_response_reason_enum.py +18 -0
- jaxl/api/client/models/call_act_request.py +75 -0
- jaxl/api/client/models/call_cost.py +75 -0
- jaxl/api/client/models/call_date_response.py +69 -0
- jaxl/api/client/models/call_dates_response.py +82 -0
- jaxl/api/client/models/call_location_epoch.py +74 -0
- jaxl/api/client/models/call_metadata.py +54 -0
- jaxl/api/client/models/call_recording_response.py +67 -0
- jaxl/api/client/models/call_recording_share_response.py +67 -0
- jaxl/api/client/models/call_recording_status_request.py +71 -0
- jaxl/api/client/models/call_recording_status_status_enum.py +19 -0
- jaxl/api/client/models/call_search_response.py +97 -0
- jaxl/api/client/models/call_tag_count.py +81 -0
- jaxl/api/client/models/call_tag_request.py +67 -0
- jaxl/api/client/models/call_tag_response.py +74 -0
- jaxl/api/client/models/call_token_request.py +138 -0
- jaxl/api/client/models/call_token_response.py +147 -0
- jaxl/api/client/models/call_transcribe_request.py +92 -0
- jaxl/api/client/models/call_type_enum.py +20 -0
- jaxl/api/client/models/call_usage_by_currency_response.py +133 -0
- jaxl/api/client/models/call_usage_response.py +97 -0
- jaxl/api/client/models/call_usage_stats_response.py +91 -0
- jaxl/api/client/models/campaign.py +104 -0
- jaxl/api/client/models/campaign_clone_request_request.py +74 -0
- jaxl/api/client/models/campaign_invalid_update_response.py +67 -0
- jaxl/api/client/models/campaign_metadata.py +104 -0
- jaxl/api/client/models/campaign_metadata_metadata.py +54 -0
- jaxl/api/client/models/campaign_response.py +141 -0
- jaxl/api/client/models/campaign_response_status_enum.py +25 -0
- jaxl/api/client/models/campaign_stats.py +95 -0
- jaxl/api/client/models/campaign_stats_v2.py +105 -0
- jaxl/api/client/models/campaign_tag.py +74 -0
- jaxl/api/client/models/campaign_update_status_enum.py +18 -0
- jaxl/api/client/models/campaign_upload_request.py +248 -0
- jaxl/api/client/models/campaign_upload_request.py.orig +239 -0
- jaxl/api/client/models/campaign_upload_type_enum.py +22 -0
- jaxl/api/client/models/campaign_usage_summary.py +88 -0
- jaxl/api/client/models/campaign_v2.py +141 -0
- jaxl/api/client/models/campaign_v2_status_enum.py +26 -0
- jaxl/api/client/models/campaign_window_request.py +81 -0
- jaxl/api/client/models/can_user_resubscribe_plan.py +74 -0
- jaxl/api/client/models/cancel_subscription_response.py +67 -0
- jaxl/api/client/models/canceled_by_enum.py +21 -0
- jaxl/api/client/models/cannot_create_plan.py +67 -0
- jaxl/api/client/models/cannot_create_user_identity_response.py +67 -0
- jaxl/api/client/models/cannot_resume_subscription_response.py +67 -0
- jaxl/api/client/models/capabilities.py +115 -0
- jaxl/api/client/models/chart_type_enum.py +20 -0
- jaxl/api/client/models/checkout_options.py +106 -0
- jaxl/api/client/models/checkout_session_expired_response.py +67 -0
- jaxl/api/client/models/cmd_enum.py +18 -0
- jaxl/api/client/models/connection.py +123 -0
- jaxl/api/client/models/contact.py +145 -0
- jaxl/api/client/models/contact_address.py +102 -0
- jaxl/api/client/models/contact_email.py +81 -0
- jaxl/api/client/models/contact_phone.py +74 -0
- jaxl/api/client/models/content_type_enum.py +19 -0
- jaxl/api/client/models/conversation.py +135 -0
- jaxl/api/client/models/conversation_create_request.py +92 -0
- jaxl/api/client/models/conversation_type_enum.py +20 -0
- jaxl/api/client/models/country.py +128 -0
- jaxl/api/client/models/create_thread_request.py +67 -0
- jaxl/api/client/models/credit.py +108 -0
- jaxl/api/client/models/cta.py +127 -0
- jaxl/api/client/models/cta_request.py +127 -0
- jaxl/api/client/models/cta_type_enum.py +22 -0
- jaxl/api/client/models/currency_enum.py +56 -0
- jaxl/api/client/models/current_status_enum.py +22 -0
- jaxl/api/client/models/customer_cannot_checkout_due_to_ongoing_checkout.py +75 -0
- jaxl/api/client/models/customer_cannot_purchase_item.py +83 -0
- jaxl/api/client/models/customer_consumable_total.py +81 -0
- jaxl/api/client/models/customer_order_consumables_serializer_v2.py +133 -0
- jaxl/api/client/models/customer_order_sku.py +87 -0
- jaxl/api/client/models/customer_order_status_changed_notification.py +244 -0
- jaxl/api/client/models/customer_order_status_changed_notification_attributes.py +54 -0
- jaxl/api/client/models/customer_order_status_changed_notification_order_attributes.py +56 -0
- jaxl/api/client/models/customer_order_status_changed_notification_type_enum.py +25 -0
- jaxl/api/client/models/customer_order_subscriptions_serializer_v2.py +286 -0
- jaxl/api/client/models/customer_order_subscriptions_serializer_v2_status_enum.py +24 -0
- jaxl/api/client/models/customer_provider_serializer_v2.py +104 -0
- jaxl/api/client/models/device.py +249 -0
- jaxl/api/client/models/device_attestation_error.py +71 -0
- jaxl/api/client/models/device_attestation_error_reason_enum.py +40 -0
- jaxl/api/client/models/device_attestation_response.py +67 -0
- jaxl/api/client/models/device_attestation_response_request.py +67 -0
- jaxl/api/client/models/device_link_response.py +67 -0
- jaxl/api/client/models/device_token_provider_enum.py +19 -0
- jaxl/api/client/models/device_token_request.py +77 -0
- jaxl/api/client/models/device_token_response.py +67 -0
- jaxl/api/client/models/device_transport_request.py +113 -0
- jaxl/api/client/models/device_transport_response.py +118 -0
- jaxl/api/client/models/device_update_request.py +67 -0
- jaxl/api/client/models/dh_message.py +249 -0
- jaxl/api/client/models/dh_message_attachment.py +110 -0
- jaxl/api/client/models/dh_message_reaction.py +92 -0
- jaxl/api/client/models/dh_message_reaction_request_request.py +67 -0
- jaxl/api/client/models/dh_message_type_enum.py +27 -0
- jaxl/api/client/models/dh_public_key_read_receipt_response.py +67 -0
- jaxl/api/client/models/direction_enum.py +19 -0
- jaxl/api/client/models/download_response.py +102 -0
- jaxl/api/client/models/download_response_headers.py +54 -0
- jaxl/api/client/models/duration_enum.py +21 -0
- jaxl/api/client/models/emoji.py +74 -0
- jaxl/api/client/models/emoji_reaction.py +92 -0
- jaxl/api/client/models/environment_enum.py +20 -0
- jaxl/api/client/models/family.py +129 -0
- jaxl/api/client/models/family_invite.py +67 -0
- jaxl/api/client/models/family_invite_request.py +67 -0
- jaxl/api/client/models/family_membership.py +92 -0
- jaxl/api/client/models/family_status.py +69 -0
- jaxl/api/client/models/family_status_request.py +69 -0
- jaxl/api/client/models/family_status_status_enum.py +21 -0
- jaxl/api/client/models/format_enum.py +18 -0
- jaxl/api/client/models/gateway_enum.py +25 -0
- jaxl/api/client/models/greeting.py +132 -0
- jaxl/api/client/models/greeting_configuration_response.py +185 -0
- jaxl/api/client/models/greeting_creation_request_request.py +245 -0
- jaxl/api/client/models/greeting_creation_response.py +89 -0
- jaxl/api/client/models/greeting_type_enum.py +19 -0
- jaxl/api/client/models/id_enum.py +18 -0
- jaxl/api/client/models/identity_requirement.py +67 -0
- jaxl/api/client/models/improper_user_identity_attributes.py +77 -0
- jaxl/api/client/models/improper_user_identity_attributes_errors.py +54 -0
- jaxl/api/client/models/inbound.py +142 -0
- jaxl/api/client/models/incorrect_pdf_image_conversion.py +67 -0
- jaxl/api/client/models/individual_plan_request.py +67 -0
- jaxl/api/client/models/information.py +93 -0
- jaxl/api/client/models/invalid_call_search_response.py +67 -0
- jaxl/api/client/models/invalid_request.py +67 -0
- jaxl/api/client/models/invalid_sms_response.py +67 -0
- jaxl/api/client/models/iso_country_enum.py +185 -0
- jaxl/api/client/models/item.py +125 -0
- jaxl/api/client/models/ivr.py +81 -0
- jaxl/api/client/models/ivr_collection.py +77 -0
- jaxl/api/client/models/ivr_collection_request.py +77 -0
- jaxl/api/client/models/ivr_menu_request.py +77 -0
- jaxl/api/client/models/ivr_menu_response.py +140 -0
- jaxl/api/client/models/ivr_menu_response_status_enum.py +20 -0
- jaxl/api/client/models/ivr_options_invalid_response.py +67 -0
- jaxl/api/client/models/ivr_options_request.py +116 -0
- jaxl/api/client/models/ivr_options_response.py +145 -0
- jaxl/api/client/models/ivr_simulation_state_request.py +81 -0
- jaxl/api/client/models/ivr_state.py +117 -0
- jaxl/api/client/models/ivr_try_request.py +74 -0
- jaxl/api/client/models/jaxl_app_context_context.py +117 -0
- jaxl/api/client/models/jaxl_app_context_context_app.py +147 -0
- jaxl/api/client/models/jaxl_app_context_context_app_type_enum.py +20 -0
- jaxl/api/client/models/jaxl_app_context_context_config.py +82 -0
- jaxl/api/client/models/jaxl_app_context_context_config_firebase.py +109 -0
- jaxl/api/client/models/jaxl_app_context_context_device.py +74 -0
- jaxl/api/client/models/jaxl_app_context_context_user.py +81 -0
- jaxl/api/client/models/jaxl_app_detail_context.py +89 -0
- jaxl/api/client/models/jaxl_app_detail_context_app.py +88 -0
- jaxl/api/client/models/jaxl_app_detail_context_endpoints.py +67 -0
- jaxl/api/client/models/jaxl_app_messaging_context.py +67 -0
- jaxl/api/client/models/jaxl_app_organization_context.py +91 -0
- jaxl/api/client/models/jaxl_app_pay_context.py +67 -0
- jaxl/api/client/models/jaxl_app_transport_context.py +81 -0
- jaxl/api/client/models/jaxl_call_recording_response.py +67 -0
- jaxl/api/client/models/key_chain_get_request.py +67 -0
- jaxl/api/client/models/key_chain_get_response.py +85 -0
- jaxl/api/client/models/key_chain_multi_get_response.py +92 -0
- jaxl/api/client/models/key_chain_multi_set_request.py +82 -0
- jaxl/api/client/models/key_chain_remove_request.py +67 -0
- jaxl/api/client/models/key_chain_set_request.py +81 -0
- jaxl/api/client/models/key_chain_wget_request.py +82 -0
- jaxl/api/client/models/key_chain_wget_response.py +82 -0
- jaxl/api/client/models/key_info.py +90 -0
- jaxl/api/client/models/key_info_type_enum.py +20 -0
- jaxl/api/client/models/kyc.py +239 -0
- jaxl/api/client/models/kyc_address_creation_request.py +138 -0
- jaxl/api/client/models/kyc_component_download_request.py +67 -0
- jaxl/api/client/models/kyc_component_download_response.py +80 -0
- jaxl/api/client/models/kyc_countries.py +92 -0
- jaxl/api/client/models/kyc_creation_request.py +172 -0
- jaxl/api/client/models/kyc_document_response.py +102 -0
- jaxl/api/client/models/kyc_improper_address_response.py +77 -0
- jaxl/api/client/models/kyc_improper_address_response_errors.py +54 -0
- jaxl/api/client/models/kyc_invalid_response.py +67 -0
- jaxl/api/client/models/kyc_invalidated_address_response.py +67 -0
- jaxl/api/client/models/kyc_invalidated_address_with_suggestion_response.py +88 -0
- jaxl/api/client/models/kyc_invalidated_address_with_suggestion_response_suggested_address.py +56 -0
- jaxl/api/client/models/kyc_proof_upload_data_request.py +164 -0
- jaxl/api/client/models/kyc_proof_upload_request.py +142 -0
- jaxl/api/client/models/kyc_requirements_response.py +114 -0
- jaxl/api/client/models/kyc_status_enum.py +18 -0
- jaxl/api/client/models/kyc_summary.py +115 -0
- jaxl/api/client/models/kyc_upload_metadata.py +81 -0
- jaxl/api/client/models/language_enum.py +75 -0
- jaxl/api/client/models/library_response.py +110 -0
- jaxl/api/client/models/line_chart_response.py +92 -0
- jaxl/api/client/models/list_member.py +104 -0
- jaxl/api/client/models/live_request.py +101 -0
- jaxl/api/client/models/live_response.py +67 -0
- jaxl/api/client/models/locale_enum.py +43 -0
- jaxl/api/client/models/location.py +74 -0
- jaxl/api/client/models/location_enum.py +20 -0
- jaxl/api/client/models/logout_account_request.py +67 -0
- jaxl/api/client/models/member_request.py +74 -0
- jaxl/api/client/models/message.py +130 -0
- jaxl/api/client/models/message_create_request.py +92 -0
- jaxl/api/client/models/message_search_response.py +115 -0
- jaxl/api/client/models/message_word_position_response.py +67 -0
- jaxl/api/client/models/message_word_search_response.py +93 -0
- jaxl/api/client/models/next_or_cta_request.py +90 -0
- jaxl/api/client/models/non_compliant_kyc.py +94 -0
- jaxl/api/client/models/non_compliant_kyc_response.py +95 -0
- jaxl/api/client/models/notification_request.py +67 -0
- jaxl/api/client/models/number_type.py +154 -0
- jaxl/api/client/models/order_attributes.py +100 -0
- jaxl/api/client/models/order_attributes_attributes.py +54 -0
- jaxl/api/client/models/order_checkout_response.py +88 -0
- jaxl/api/client/models/order_status_enum.py +22 -0
- jaxl/api/client/models/organization.py +123 -0
- jaxl/api/client/models/organization_create_request.py +77 -0
- jaxl/api/client/models/organization_employee.py +188 -0
- jaxl/api/client/models/organization_employee_invitation_request.py +86 -0
- jaxl/api/client/models/organization_employee_invite_request.py +77 -0
- jaxl/api/client/models/organization_employee_invite_response.py +93 -0
- jaxl/api/client/models/organization_employee_membership_request.py +69 -0
- jaxl/api/client/models/organization_employee_preferences.py +54 -0
- jaxl/api/client/models/organization_employee_status_enum.py +21 -0
- jaxl/api/client/models/organization_group_inline.py +74 -0
- jaxl/api/client/models/organization_group_member_response.py +78 -0
- jaxl/api/client/models/organization_group_request.py +68 -0
- jaxl/api/client/models/organization_group_response.py +106 -0
- jaxl/api/client/models/organization_preferences.py +54 -0
- jaxl/api/client/models/otp_provider_enum.py +20 -0
- jaxl/api/client/models/otp_request.py +85 -0
- jaxl/api/client/models/otp_response.py +74 -0
- jaxl/api/client/models/outbound.py +88 -0
- jaxl/api/client/models/paginated_address_provider_list.py +108 -0
- jaxl/api/client/models/paginated_analytics_slug_response_list.py +108 -0
- jaxl/api/client/models/paginated_app_country_list.py +108 -0
- jaxl/api/client/models/paginated_app_domain_list.py +108 -0
- jaxl/api/client/models/paginated_call_list.py +108 -0
- jaxl/api/client/models/paginated_call_search_response_list.py +108 -0
- jaxl/api/client/models/paginated_call_tag_count_list.py +108 -0
- jaxl/api/client/models/paginated_call_tag_response_list.py +108 -0
- jaxl/api/client/models/paginated_campaign_response_list.py +108 -0
- jaxl/api/client/models/paginated_campaign_v2_list.py +108 -0
- jaxl/api/client/models/paginated_contact_list.py +108 -0
- jaxl/api/client/models/paginated_conversation_list.py +108 -0
- jaxl/api/client/models/paginated_country_list.py +108 -0
- jaxl/api/client/models/paginated_credit_list.py +108 -0
- jaxl/api/client/models/paginated_customer_order_consumables_serializer_v2_list.py +116 -0
- jaxl/api/client/models/paginated_customer_order_sku_list.py +108 -0
- jaxl/api/client/models/paginated_customer_order_subscriptions_serializer_v2_list.py +116 -0
- jaxl/api/client/models/paginated_device_list.py +108 -0
- jaxl/api/client/models/paginated_dh_message_list.py +108 -0
- jaxl/api/client/models/paginated_family_list.py +108 -0
- jaxl/api/client/models/paginated_greeting_configuration_response_list.py +112 -0
- jaxl/api/client/models/paginated_ivr_menu_response_list.py +108 -0
- jaxl/api/client/models/paginated_ivr_options_response_list.py +108 -0
- jaxl/api/client/models/paginated_key_chain_multi_get_response_list.py +110 -0
- jaxl/api/client/models/paginated_kyc_countries_list.py +108 -0
- jaxl/api/client/models/paginated_kyc_list.py +108 -0
- jaxl/api/client/models/paginated_kyc_summary_list.py +108 -0
- jaxl/api/client/models/paginated_library_response_list.py +108 -0
- jaxl/api/client/models/paginated_list_member_list.py +108 -0
- jaxl/api/client/models/paginated_message_list.py +108 -0
- jaxl/api/client/models/paginated_message_search_response_list.py +108 -0
- jaxl/api/client/models/paginated_organization_employee_list.py +108 -0
- jaxl/api/client/models/paginated_organization_group_response_list.py +110 -0
- jaxl/api/client/models/paginated_organization_list.py +108 -0
- jaxl/api/client/models/paginated_payment_list.py +108 -0
- jaxl/api/client/models/paginated_phone_number_list.py +108 -0
- jaxl/api/client/models/paginated_plan_country_number_types_list.py +108 -0
- jaxl/api/client/models/paginated_plan_list.py +108 -0
- jaxl/api/client/models/paginated_plan_summary_response_list.py +108 -0
- jaxl/api/client/models/paginated_proof_list.py +108 -0
- jaxl/api/client/models/paginated_thread_list.py +108 -0
- jaxl/api/client/models/paginated_transcription_list.py +108 -0
- jaxl/api/client/models/paginated_transcription_search_response_list.py +112 -0
- jaxl/api/client/models/paginated_transcription_search_response_serializer_v2_list.py +116 -0
- jaxl/api/client/models/paginated_unmatched_fields_list.py +108 -0
- jaxl/api/client/models/paginated_user_identity_list.py +108 -0
- jaxl/api/client/models/patched_campaign_update_request.py +92 -0
- jaxl/api/client/models/patched_conversation_name_request.py +75 -0
- jaxl/api/client/models/patched_dh_public_key_read_receipt_request.py +87 -0
- jaxl/api/client/models/patched_ivr_menu_request.py +75 -0
- jaxl/api/client/models/patched_ivr_options_update_request.py +115 -0
- jaxl/api/client/models/patched_kyc_detail_request.py +67 -0
- jaxl/api/client/models/patched_order_attributes_request.py +102 -0
- jaxl/api/client/models/patched_order_attributes_request_attributes.py +54 -0
- jaxl/api/client/models/patched_organization_group_member_update_request.py +88 -0
- jaxl/api/client/models/patched_organization_group_phone_number_update_request.py +75 -0
- jaxl/api/client/models/patched_organization_group_update_request.py +88 -0
- jaxl/api/client/models/patched_organization_member_update_request.py +88 -0
- jaxl/api/client/models/patched_phone_number_request.py +68 -0
- jaxl/api/client/models/payment.py +183 -0
- jaxl/api/client/models/payment_gateway_fees_info.py +74 -0
- jaxl/api/client/models/pdf_image_conversion_request.py +126 -0
- jaxl/api/client/models/period_enum.py +21 -0
- jaxl/api/client/models/phone_number.py +175 -0
- jaxl/api/client/models/phone_number_capabilities.py +81 -0
- jaxl/api/client/models/phone_number_check_request.py +67 -0
- jaxl/api/client/models/phone_number_check_response.py +83 -0
- jaxl/api/client/models/phone_number_checkout_request.py +78 -0
- jaxl/api/client/models/phone_number_provider_enum.py +23 -0
- jaxl/api/client/models/phone_number_search_response.py +100 -0
- jaxl/api/client/models/phone_number_status_enum.py +25 -0
- jaxl/api/client/models/pie_chart_response.py +82 -0
- jaxl/api/client/models/plan.py +225 -0
- jaxl/api/client/models/plan_cancel_info.py +97 -0
- jaxl/api/client/models/plan_country_number_types.py +74 -0
- jaxl/api/client/models/plan_create_request.py +215 -0
- jaxl/api/client/models/plan_create_request_item_attributes.py +54 -0
- jaxl/api/client/models/plan_create_type_enum.py +18 -0
- jaxl/api/client/models/plan_expiry_timestamp.py +101 -0
- jaxl/api/client/models/plan_expiry_timestamp_type_enum.py +19 -0
- jaxl/api/client/models/plan_extra_details.py +54 -0
- jaxl/api/client/models/plan_item.py +116 -0
- jaxl/api/client/models/plan_price_gateway_request.py +140 -0
- jaxl/api/client/models/plan_price_gateway_request_attributes.py +54 -0
- jaxl/api/client/models/plan_response.py +67 -0
- jaxl/api/client/models/plan_summary_response.py +240 -0
- jaxl/api/client/models/plan_summary_response_extra_details.py +54 -0
- jaxl/api/client/models/plan_type.py +92 -0
- jaxl/api/client/models/plan_type_cycle.py +84 -0
- jaxl/api/client/models/platform_enum.py +23 -0
- jaxl/api/client/models/point_response.py +92 -0
- jaxl/api/client/models/pricing_error.py +67 -0
- jaxl/api/client/models/pricing_response.py +101 -0
- jaxl/api/client/models/product_group.py +74 -0
- jaxl/api/client/models/proof.py +151 -0
- jaxl/api/client/models/proof_document.py +114 -0
- jaxl/api/client/models/proof_download_response.py +85 -0
- jaxl/api/client/models/proof_field.py +92 -0
- jaxl/api/client/models/proof_field_request.py +92 -0
- jaxl/api/client/models/proof_id_request.py +67 -0
- jaxl/api/client/models/proof_status_enum.py +21 -0
- jaxl/api/client/models/proofs_requirement.py +89 -0
- jaxl/api/client/models/provider_notes.py +67 -0
- jaxl/api/client/models/provider_pricing.py +83 -0
- jaxl/api/client/models/provider_status_enum.py +22 -0
- jaxl/api/client/models/purpose_enum.py +20 -0
- jaxl/api/client/models/quoted.py +81 -0
- jaxl/api/client/models/razor_pay_checkout_options.py +197 -0
- jaxl/api/client/models/razor_pay_config.py +73 -0
- jaxl/api/client/models/razor_pay_config_display.py +54 -0
- jaxl/api/client/models/razor_pay_model.py +99 -0
- jaxl/api/client/models/razor_pay_read_only.py +67 -0
- jaxl/api/client/models/razor_pay_retry.py +75 -0
- jaxl/api/client/models/reaction_by.py +74 -0
- jaxl/api/client/models/receipt_validate_request.py +74 -0
- jaxl/api/client/models/receipt_validate_response.py +67 -0
- jaxl/api/client/models/receipt_validate_serializer_v2_request.py +95 -0
- jaxl/api/client/models/referral_request.py +67 -0
- jaxl/api/client/models/referral_response.py +67 -0
- jaxl/api/client/models/remove_account_request.py +74 -0
- jaxl/api/client/models/rental_currency_enum.py +18 -0
- jaxl/api/client/models/requirement_enum.py +20 -0
- jaxl/api/client/models/resolution_enum.py +21 -0
- jaxl/api/client/models/resolve_greeting_response.py +89 -0
- jaxl/api/client/models/resource_enum.py +19 -0
- jaxl/api/client/models/resume_subscription_response.py +81 -0
- jaxl/api/client/models/role_enum.py +18 -0
- jaxl/api/client/models/roles_enum.py +21 -0
- jaxl/api/client/models/scenario.py +79 -0
- jaxl/api/client/models/scenario_enum.py +23 -0
- jaxl/api/client/models/scenario_request.py +79 -0
- jaxl/api/client/models/schema_retrieve_format.py +18 -0
- jaxl/api/client/models/schema_retrieve_lang.py +115 -0
- jaxl/api/client/models/schema_retrieve_response_200.py +54 -0
- jaxl/api/client/models/sim.py +184 -0
- jaxl/api/client/models/sim_command_request_request.py +77 -0
- jaxl/api/client/models/sim_create_request.py +161 -0
- jaxl/api/client/models/sim_create_request_metadata.py +54 -0
- jaxl/api/client/models/sim_metadata.py +54 -0
- jaxl/api/client/models/sim_sms_create_request.py +74 -0
- jaxl/api/client/models/sms_request_request.py +88 -0
- jaxl/api/client/models/state_enum.py +18 -0
- jaxl/api/client/models/t_enum.py +20 -0
- jaxl/api/client/models/table_chart_response.py +91 -0
- jaxl/api/client/models/thread.py +92 -0
- jaxl/api/client/models/ticket_create_request.py +74 -0
- jaxl/api/client/models/ticket_id.py +67 -0
- jaxl/api/client/models/transcription.py +84 -0
- jaxl/api/client/models/transcription_alternatives.py +101 -0
- jaxl/api/client/models/transcription_download_response.py +104 -0
- jaxl/api/client/models/transcription_locale.py +75 -0
- jaxl/api/client/models/transcription_result.py +113 -0
- jaxl/api/client/models/transcription_results.py +82 -0
- jaxl/api/client/models/transcription_search_response.py +107 -0
- jaxl/api/client/models/transcription_search_response_serializer_v2.py +124 -0
- jaxl/api/client/models/transcription_word.py +81 -0
- jaxl/api/client/models/transcription_word_position_response.py +81 -0
- jaxl/api/client/models/transcription_word_search_response.py +121 -0
- jaxl/api/client/models/transport_packet.py +131 -0
- jaxl/api/client/models/transport_packet_d.py +54 -0
- jaxl/api/client/models/transport_packet_request.py +131 -0
- jaxl/api/client/models/transport_packet_request_d.py +54 -0
- jaxl/api/client/models/transport_token.py +74 -0
- jaxl/api/client/models/tts_request_request.py +102 -0
- jaxl/api/client/models/tts_response.py +67 -0
- jaxl/api/client/models/unable_to_clone_campaign.py +67 -0
- jaxl/api/client/models/unable_to_fetch_library_files.py +67 -0
- jaxl/api/client/models/unable_to_transcribe_call.py +67 -0
- jaxl/api/client/models/unit_enum.py +27 -0
- jaxl/api/client/models/unmatched_fields.py +92 -0
- jaxl/api/client/models/upload.py +110 -0
- jaxl/api/client/models/upload_request_request.py +67 -0
- jaxl/api/client/models/user.py +99 -0
- jaxl/api/client/models/user_agent.py +117 -0
- jaxl/api/client/models/user_agent_browser.py +74 -0
- jaxl/api/client/models/user_agent_device.py +74 -0
- jaxl/api/client/models/user_agent_operating_system.py +67 -0
- jaxl/api/client/models/user_agent_platform.py +85 -0
- jaxl/api/client/models/user_identity.py +119 -0
- jaxl/api/client/models/user_identity_attributes_request.py +139 -0
- jaxl/api/client/models/user_identity_creation_request.py +96 -0
- jaxl/api/client/models/user_identity_uploaded_data_request.py +124 -0
- jaxl/api/client/models/user_identity_uploaded_data_request_additional_attributes.py +56 -0
- jaxl/api/client/models/user_serializer_v2.py +75 -0
- jaxl/api/client/models/v1_analytics_data_retrieve_date_range.py +46 -0
- jaxl/api/client/models/v1_analytics_data_retrieve_resolution.py +21 -0
- jaxl/api/client/models/v1_app_organizations_credentials_retrieve_os.py +18 -0
- jaxl/api/client/models/v1_app_organizations_credentials_retrieve_platform.py +19 -0
- jaxl/api/client/models/v1_app_organizations_list_status_item.py +21 -0
- jaxl/api/client/models/v1_calls_list_direction.py +19 -0
- jaxl/api/client/models/v1_campaign_export_retrieve_as.py +22 -0
- jaxl/api/client/models/v1_campaign_list_status_item.py +25 -0
- jaxl/api/client/models/v1_customer_consumables_retrieve_currency.py +55 -0
- jaxl/api/client/models/v1_greeting_list_greeting_type_item.py +19 -0
- jaxl/api/client/models/v1_greeting_list_language_item.py +75 -0
- jaxl/api/client/models/v1_greeting_list_scenario_item.py +23 -0
- jaxl/api/client/models/v1_ivr_list_duration.py +23 -0
- jaxl/api/client/models/v1_ivr_retrieve_duration.py +23 -0
- jaxl/api/client/models/v1_ivr_try_create_lang.py +75 -0
- jaxl/api/client/models/v1_ivr_try_retrieve_lang.py +75 -0
- jaxl/api/client/models/v1_kyc_address_list_exclude.py +185 -0
- jaxl/api/client/models/v1_kyc_address_list_iso_country.py +185 -0
- jaxl/api/client/models/v1_kyc_address_list_resource.py +19 -0
- jaxl/api/client/models/v1_kyc_address_list_status.py +20 -0
- jaxl/api/client/models/v1_kyc_identity_list_iso_country.py +185 -0
- jaxl/api/client/models/v1_kyc_list_iso_country.py +185 -0
- jaxl/api/client/models/v1_kyc_list_provider_status_item.py +22 -0
- jaxl/api/client/models/v1_kyc_list_resource.py +19 -0
- jaxl/api/client/models/v1_kyc_list_status.py +18 -0
- jaxl/api/client/models/v1_kyc_requirements_retrieve_iso_country.py +185 -0
- jaxl/api/client/models/v1_kyc_requirements_retrieve_resource.py +19 -0
- jaxl/api/client/models/v1_kyc_summary_list_iso_country.py +185 -0
- jaxl/api/client/models/v1_kyc_summary_list_provider_status_item.py +22 -0
- jaxl/api/client/models/v1_kyc_summary_list_resource.py +19 -0
- jaxl/api/client/models/v1_kyc_summary_list_status.py +18 -0
- jaxl/api/client/models/v1_library_default_retrieve_scenario.py +19 -0
- jaxl/api/client/models/v1_library_list_scenario.py +21 -0
- jaxl/api/client/models/v1_payments_list_currency.py +55 -0
- jaxl/api/client/models/v1_payments_list_subscription_type.py +18 -0
- jaxl/api/client/models/v1_phonenumbers_list_additional_status_item.py +25 -0
- jaxl/api/client/models/v1_phonenumbers_list_provider.py +23 -0
- jaxl/api/client/models/v1_phonenumbers_list_status.py +25 -0
- jaxl/api/client/models/v1_phonenumbers_search_retrieve_iso_country_code.py +185 -0
- jaxl/api/client/models/v1_phonenumbers_search_retrieve_resource.py +19 -0
- jaxl/api/client/models/v1_plans_countries_list_type.py +18 -0
- jaxl/api/client/models/v1_plans_list_currency.py +55 -0
- jaxl/api/client/models/v1_plans_list_type.py +18 -0
- jaxl/api/client/models/v1_plans_resources_list_type.py +18 -0
- jaxl/api/client/models/v1_plans_retrieve_currency.py +55 -0
- jaxl/api/client/models/v1_plans_summary_list_currency.py +55 -0
- jaxl/api/client/models/v1_plans_summary_list_gateway.py +25 -0
- jaxl/api/client/models/v1_plans_summary_list_type.py +18 -0
- jaxl/api/client/models/v2_app_organizations_employees_list_status_item.py +21 -0
- jaxl/api/client/models/v2_campaign_export_retrieve_as.py +22 -0
- jaxl/api/client/models/v2_campaign_list_status_item.py +25 -0
- jaxl/api/client/models/v3_orders_consumables_list_currency.py +55 -0
- jaxl/api/client/models/v3_orders_consumables_retrieve_currency.py +55 -0
- jaxl/api/client/models/v3_orders_subscriptions_list_currency.py +55 -0
- jaxl/api/client/models/v3_orders_subscriptions_list_status_item.py +24 -0
- jaxl/api/client/models/v3_orders_subscriptions_retrieve_currency.py +55 -0
- jaxl/api/client/models/verify_request.py +74 -0
- jaxl/api/client/models/verify_response.py +117 -0
- jaxl/api/client/models/verify_token_request.py +85 -0
- jaxl/api/client/models/verify_token_response.py +67 -0
- jaxl/api/client/models/voice_enum.py +18 -0
- jaxl/api/client/py.typed +1 -0
- jaxl/api/client/types.py +54 -0
- jaxl/api/py.typed +0 -0
- jaxl/api/resources/__init__.py +8 -0
- jaxl/api/resources/_constants.py +11 -0
- jaxl/api/resources/accounts.py +66 -0
- jaxl/api/resources/calls.py +141 -0
- jaxl/api/resources/campaigns.py +44 -0
- jaxl/api/resources/devices.py +28 -0
- jaxl/api/resources/ivrs.py +199 -0
- jaxl/api/resources/kycs.py +45 -0
- jaxl/api/resources/members.py +50 -0
- jaxl/api/resources/messages.py +61 -0
- jaxl/api/resources/notifications.py +15 -0
- jaxl/api/resources/payments.py +110 -0
- jaxl/api/resources/phones.py +140 -0
- jaxl/api/resources/teams.py +42 -0
- jaxl_python-0.0.1.dist-info/METADATA +174 -0
- jaxl_python-0.0.1.dist-info/RECORD +754 -0
- jaxl_python-0.0.1.dist-info/WHEEL +5 -0
- jaxl_python-0.0.1.dist-info/entry_points.txt +2 -0
- jaxl_python-0.0.1.dist-info/licenses/LICENSE.md +6 -0
- 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
|