areach-apimatic-sdk 0.0.1__tar.gz
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.
- areach_apimatic_sdk-0.0.1/LICENSE +28 -0
- areach_apimatic_sdk-0.0.1/MANIFEST.in +2 -0
- areach_apimatic_sdk-0.0.1/PKG-INFO +154 -0
- areach_apimatic_sdk-0.0.1/README.md +137 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/__init__.py +12 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/anyreachapi_client.py +289 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/api_helper.py +19 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/configuration.py +273 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/__init__.py +33 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/agent_assist_controller.py +83 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/agents_controller.py +1105 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/base_controller.py +67 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/campaign_configurations_controller.py +286 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/campaign_contacts_controller.py +260 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/campaign_stats_controller.py +170 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/campaigns_controller.py +379 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/conversation_attachments_controller.py +305 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/conversation_events_controller.py +100 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/conversations_controller.py +708 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/custom_data_controller.py +1064 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/email_addresses_controller.py +220 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/email_domains_controller.py +304 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/evaluation_runs_controller.py +317 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/evaluations_controller.py +373 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/human_handoff_controller.py +359 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/inbound_routing_controller.py +207 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/knowledge_base_sources_controller.py +331 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/knowledge_bases_controller.py +411 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/metrics_controller.py +559 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/phone_numbers_controller.py +324 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/sources_controller.py +451 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/trunks_controller.py +314 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/unsubscribes_controller.py +118 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/web_widgets_controller.py +387 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/workflow_credentials_controller.py +543 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/workflow_executions_controller.py +359 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/workflow_triggers_controller.py +698 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/controllers/workflows_controller.py +808 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/exceptions/__init__.py +6 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/exceptions/api_exception.py +36 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/exceptions/http_validation_error_exception.py +64 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/__init__.py +11 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/auth/__init__.py +5 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/auth/o_auth_2.py +103 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/http_call_back.py +20 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/http_client_provider.py +23 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/http_method_enum.py +25 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/http_request.py +55 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/http_response.py +45 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/http/proxy_settings.py +50 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/__init__.py +479 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/action_grid.py +143 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/add_sources_by_pattern_request_schema.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/add_to_conference.py +160 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent.py +251 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_1.py +108 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_assist_header.py +133 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_assist_portal.py +190 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_clone_request.py +106 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_config.py +345 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_config_1.py +329 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_config_2.py +327 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_create_request.py +181 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_deployment_direction_1_enum.py +62 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_deployment_direction_enum.py +48 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_language.py +107 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_publish_request.py +143 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_response.py +536 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_sip_endpoint_response.py +132 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_update_request.py +193 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_version.py +378 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_version_compare_request.py +86 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_version_create_request.py +119 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/agent_version_update_request.py +119 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/ai_config.py +124 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/any_reach_default_parameters.py +115 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/any_reach_stt_provider.py +125 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/anyreach_multilingual_model_parameters.py +214 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/anyreach_turn_detection_provider.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/app_step.py +308 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/assessor_type_1_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/assessor_type_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/attempt_response.py +353 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/audio_upload_url_request.py +96 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/audio_upload_url_response.py +97 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/auth_details.py +131 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/azure_open_ai.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/azure_open_aigpt_41_parameters.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/azure_open_aigpt_4_o_parameters.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/azure_recording_location.py +207 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/before_expiry_refresh_policy.py +150 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/body_format_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/body_type_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/bot_initiates_dynamic_message.py +183 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/bot_initiates_static_message.py +215 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/built_in_tools.py +268 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/built_in_tools_1.py +266 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/bvc.py +103 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/bvc_telephony.py +103 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/campaign_create.py +253 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/campaign_response.py +359 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/campaign_update.py +268 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cartesia_provider.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cartesia_sonic_3_parameters.py +215 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cc_reply_policy_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cerebras.py +129 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cerebras_llama_3370_b_parameters.py +139 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cerebras_zai_glm_47_parameters.py +139 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_2_enum.py +65 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_3_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_enum.py +65 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_instruction_mode_enum.py +59 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_key_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_override.py +220 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_overrides.py +219 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_properties.py +500 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channel_route.py +233 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/channels.py +222 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/children.py +190 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/chunking_method_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/chunking_strategy.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/chunking_strategy_1.py +114 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/claim_request.py +140 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/claim_response.py +104 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/code_step_input.py +328 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/code_step_output.py +328 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cold_transfer.py +184 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/compliance_flag.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/concurrency_settings_response.py +220 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/concurrency_settings_update.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/condition.py +210 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/condition_step.py +259 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/config.py +327 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/configuration_create.py +317 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/configuration_response.py +363 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/configuration_update.py +321 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/confirm_criterion_item.py +144 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/confirm_run_request.py +83 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/contact_bulk_create.py +76 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/contact_input.py +337 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/contact_response.py +476 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/contact_upsert_result.py +168 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/contact_with_attempts_list_response.py +116 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/contact_with_attempts_response.py +507 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/context_mode_enum.py +62 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/continue_on_phone.py +165 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/continue_on_phone_tool_config.py +167 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_agent.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_create_request.py +373 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_direction_enum.py +59 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_feedback_request.py +88 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_import_item.py +484 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_import_request.py +77 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_import_response.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_listener_token_response.py +117 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_partial.py +798 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/conversation_status_enum.py +81 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/core_inbound_routing_config_response.py +257 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/crawl_options.py +264 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/crawler_provider_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/create_agent_from_website_request.py +286 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/create_attachment_request.py +120 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/create_attachment_response.py +121 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_create_request_schema.py +203 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_refresh_response_schema.py +97 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_schema.py +571 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_secret_schema.py +165 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_secret_write_schema.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_update_schema.py +195 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_value_patch_schema.py +143 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/credential_value_write_schema.py +112 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/criterion_item_request.py +380 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/cron_refresh_policy.py +157 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/custom_data.py +353 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/custom_data_filter.py +163 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/custom_data_sort.py +130 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/custom_table_create_request.py +84 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/custom_table_schema.py +295 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/custom_table_update_request.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/data_schema_input.py +208 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/data_schema_node_input.py +211 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/data_schema_node_output.py +211 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/data_schema_output.py +208 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/data_type_1_enum.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/data_type_enum.py +66 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/dataset_create_request_schema.py +132 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/dataset_schema.py +450 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/dataset_source_request_create_schema.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/dataset_source_schema.py +346 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/dataset_source_status_enum.py +70 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/dataset_update_request_schema.py +168 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/deepgram_nova_2_general_parameters.py +141 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/deepgram_nova_3_general_parameters.py +140 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/deepgram_provider.py +129 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/default.py +137 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/default_1_enum.py +115 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/definition.py +822 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/delete_rows_request.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/demo_handler_config.py +238 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/direction_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/displayed_number_type_enum.py +59 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/dry_run_response.py +175 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/eleven_labs_model.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/eleven_labs_output_format.py +171 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/eleven_labs_parameters.py +204 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/eleven_labs_provider.py +127 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/eleven_labs_voice_settings.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/email_address_create_request.py +253 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/email_address_update_request.py +194 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/email_domain_create_request.py +96 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/email_properties.py +407 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/embedding_dimension_enum.py +62 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/embedding_model_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/embeddings_query_request.py +94 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/embeddings_query_response.py +77 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/embeddings_query_result.py +108 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/emotion_enum.py +237 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/endpointing.py +124 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/endpointing_config.py +126 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/english.py +103 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/escalate_to_a_human.py +529 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/evaluation.py +308 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/evaluation_create_request.py +171 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/evaluation_run.py +344 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/evaluation_run_create_request.py +156 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/evaluation_update_request.py +221 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/failed_contact.py +117 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/feedback_submit_response.py +83 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/file_processor_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/file_type_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/form_definition.py +246 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/form_field.py +446 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/form_field_display_enum.py +59 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/form_field_option.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/form_field_type_enum.py +75 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/forms.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/forms_config.py +111 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gcp_recording_location.py +180 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gemini_25_flash.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gemini_25_flash_lite.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gemini_25_pro.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gemini_35_flash.py +136 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/generic_input_step_input.py +304 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/generic_input_step_output.py +304 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gladia_provider.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gladia_solaria_1_parameters.py +244 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/google.py +133 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/google_gemini_parameters.py +351 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gpt_41.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/gpt_4_o.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/greeting_audio_recording.py +106 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/greeting_audio_request.py +100 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/greeting_audio_response.py +97 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handler_1_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handler_config.py +236 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handler_config_1.py +234 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handler_enum.py +61 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handoff_auth_details.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handoff_auth_details_1.py +161 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handoff_connection_create_request.py +195 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handoff_connection_response.py +332 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handoff_connection_settings.py +160 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/handoff_connection_update_request.py +198 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/hangup.py +131 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/header_metadata_mappings.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/http_method_enum.py +72 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/http_step.py +371 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/image_tier_config.py +143 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/image_type_route.py +192 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/images.py +302 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/images_tool_config.py +306 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inactivity_nudge_config.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inbound_config.py +235 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inbound_config_1.py +210 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inbound_routing_config.py +298 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inbound_routing_config_create_request.py +153 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inbound_routing_config_update_request.py +168 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inbound_trunk_config.py +237 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/inbound_trunk_config_schema.py +212 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/information_item.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/input_type_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/instruction_builder_inputs.py +289 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/instruction_builder_inputs_1.py +287 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/integration_providers_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/interactivity_enum.py +45 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/interruption.py +229 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/interruption_config.py +231 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/keyword.py +137 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/knowledge_base.py +207 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/language.py +85 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/language_1_enum.py +218 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/language_2_enum.py +301 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/language_3_enum.py +180 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/language_4_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/last_refresh_status_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/leave_room.py +131 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/live_kit.py +127 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/live_kit_inference.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/live_kit_inference_stt_model.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/live_kit_inference_stt_provider.py +127 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/live_kit_inference_tts_model.py +189 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/live_kit_inference_tts_provider.py +127 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/livekit_multilingual_model.py +103 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/livekit_provider.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/livekit_turn_detection_provider.py +129 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/llama_3370_b.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/llm.py +138 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/llm_on_failure.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/manual_refresh_policy.py +103 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/media_encryption_enum.py +61 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/metric_create_request.py +304 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/metric_kind_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/metric_lint_request.py +149 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/metric_preview_request.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/metric_status_request.py +165 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/metric_update_request.py +327 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/modality_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/mode_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/multilingual.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/name_1_enum.py +67 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/name_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/noise_cancellation.py +108 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/noise_cancellation_1.py +92 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/note_step.py +254 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/nova_2_general.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/nova_3_general.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/nudge_dynamic_message.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/nudge_static_message.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/on_blocked_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/on_failure.py +162 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/on_failure_1.py +162 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/on_failure_2.py +162 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/on_overflow_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/on_unavailable_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/op_enum.py +78 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/open_ai.py +129 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/open_aigpt_41_model.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/open_aigpt_41_parameters.py +139 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/open_aigpt_4_o_model.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/open_aigpt_4_o_parameters.py +139 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/operation_enum.py +63 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/outbound_config.py +201 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/outbound_config_1.py +178 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/outbound_trunk_config.py +238 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/outbound_trunk_config_schema.py +211 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/outcome_enum.py +63 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/output_format.py +169 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/output_schema.py +210 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/output_step_input.py +286 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/output_step_output.py +286 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/override_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_credential_response.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_dataset_response.py +92 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_response_dataset_source_schema.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_response_workflow_version_schema.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_source_response.py +92 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_trigger_event_response.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_workflow_execution_response.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_workflow_response.py +92 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/paginated_workflow_trigger_response.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/pagination_meta.py +104 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters.py +137 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters_10.py +138 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters_11.py +242 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters_12.py +113 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters_2.py +345 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters_6.py +137 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters_8.py +212 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/parameters_9.py +139 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/phone_number.py +297 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/phone_number_create_request.py +109 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/phone_number_update_request.py +94 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/play_audio.py +180 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/play_message.py +224 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/play_message_1.py +107 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/post_conversation_workflow.py +237 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/pre_conversation_workflow.py +237 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/price_verbosity_enum.py +61 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/pronunciations.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/query_filter.py +153 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/query_param_spec.py +130 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/query_request.py +163 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/query_sort.py +130 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/realtime_stack.py +233 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/recording_detail_input.py +192 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/recording_detail_output.py +213 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/recording_details.py +168 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/recording_details_1.py +195 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/region_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/replace_table_request.py +70 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/require_identity_enum.py +63 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/return_value_schema.py +188 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/return_value_schema_1.py +188 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/rows_response.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/s_3_recording_location.py +234 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/saved_query_create_request.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/saved_query_dry_run_request.py +153 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/saved_query_enabled_request.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/saved_query_run_request.py +106 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/saved_query_schema.py +377 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/schedule_override.py +133 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/send_dtmf.py +227 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/sentiment_info.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/sentiment_info_2.py +131 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/sentiment_level_2_enum.py +68 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/sentiment_level_enum.py +52 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/settings.py +152 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/settings_1.py +149 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/silero_default_model.py +103 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/silero_provider.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/simple_agent_version_response.py +216 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/simple_phone_number_response.py +191 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/simple_web_widget_response.py +159 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/simple_workflow_version_response.py +186 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/simplified_workflow_version_schema.py +128 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/sip_endpoint.py +108 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/sms_properties.py +258 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/solaria_1.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/sonic_3.py +133 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_1_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_create_request_schema.py +234 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_create_response_schema.py +378 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_pattern_search_response.py +109 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_schema.py +449 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_type_1_enum.py +59 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_type_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/source_update_schema.py +194 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/starting_action_grid.py +147 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/starting_action_grid_item.py +141 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/static_prompt_agent.py +411 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/status_1_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/status_2_enum.py +66 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/status_3_enum.py +63 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/status_enum.py +43 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/stop_audio.py +131 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/stt.py +138 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/stt_1.py +120 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/stt_llm_tts_stack.py +334 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/stt_on_failure.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/suggest_atom_request.py +108 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/suggested_step.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/telephone_enum.py +115 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/text_message_request.py +97 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/text_normalization.py +155 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/text_normalization_config.py +157 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/text_properties.py +130 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/thinking_level_enum.py +63 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/tiers.py +141 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/time_tool.py +113 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/time_tool_config.py +115 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/time_window.py +159 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/tool_call.py +272 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/tool_call_overrides.py +174 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/tool_schema_response.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/transcript_entry.py +118 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/transcript_marker.py +82 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/transform_step_input.py +294 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/transform_step_output.py +294 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/transport_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/trigger_event_schema.py +248 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/trigger_step.py +368 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/trunk.py +277 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/trunk_create_request.py +133 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/trunk_update_schema.py +145 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/tts.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/tts_on_failure.py +164 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/turn_detection.py +109 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/turn_detection_1.py +93 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/type_1_enum.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/type_2_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/type_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/ui_config.py +138 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/ui_config_dimensions.py +124 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/ui_config_position.py +124 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/update_endpointing.py +183 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/upload_status_enum.py +63 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/upsert_rows_request.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/user_initiates_message.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/vad.py +108 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/vad_1.py +92 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/validation_error.py +159 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/vercel.py +132 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/vercel_model.py +144 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/version_enum.py +54 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/vision_llm.py +137 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/vision_llm_1.py +118 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/voice_settings.py +162 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/voicemail_detection.py +165 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/voicemail_detection_config.py +194 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/voicemail_play_message.py +130 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/voicemail_tool_call_overrides.py +179 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/wait.py +153 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/wait_step.py +260 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/warm_transfer.py +323 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/web_widget.py +239 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/web_widget_auto_brand_request.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/web_widget_create_request.py +157 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/web_widget_update_request.py +193 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/webrtc_enum.py +115 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/widget_hint_enum.py +57 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/widget_type_enum.py +88 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/widgets.py +113 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/widgets_config.py +115 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_action.py +255 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_create_request_schema.py +126 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_create_response_schema.py +426 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_execution_async_schema.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_execution_create_response_schema.py +108 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_execution_create_schema.py +290 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_execution_schema.py +400 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_execution_state.py +206 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_schema.py +409 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_trigger_create_schema.py +178 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_trigger_schema.py +441 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_trigger_status_enum.py +60 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_trigger_test_mode_response.py +113 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_trigger_update_schema.py +193 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_update_schema.py +141 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_version_create_schema.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_version_publish_schema.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_version_schema.py +402 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_version_set_live_schema.py +69 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/workflow_version_update_schema.py +129 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/write_result_schema.py +277 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/models/zai_glm_47.py +134 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/utilities/__init__.py +6 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/utilities/file_wrapper.py +45 -0
- areach_apimatic_sdk-0.0.1/anyreachapi/utilities/union_type_lookup.py +12069 -0
- areach_apimatic_sdk-0.0.1/areach_apimatic_sdk.egg-info/PKG-INFO +154 -0
- areach_apimatic_sdk-0.0.1/areach_apimatic_sdk.egg-info/SOURCES.txt +535 -0
- areach_apimatic_sdk-0.0.1/areach_apimatic_sdk.egg-info/dependency_links.txt +1 -0
- areach_apimatic_sdk-0.0.1/areach_apimatic_sdk.egg-info/requires.txt +7 -0
- areach_apimatic_sdk-0.0.1/areach_apimatic_sdk.egg-info/top_level.txt +3 -0
- areach_apimatic_sdk-0.0.1/pyproject.toml +25 -0
- areach_apimatic_sdk-0.0.1/setup.cfg +8 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
License:
|
|
2
|
+
========
|
|
3
|
+
The MIT License (MIT)
|
|
4
|
+
http://opensource.org/licenses/MIT
|
|
5
|
+
|
|
6
|
+
Copyright (c) 2014 - 2026 APIMATIC Limited
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10
|
+
in the Software without restriction, including without limitation the rights
|
|
11
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13
|
+
furnished to do so, subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be included in
|
|
16
|
+
all copies or substantial portions of the Software.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
20
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
21
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
22
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24
|
+
THE SOFTWARE.
|
|
25
|
+
|
|
26
|
+
Trade Mark:
|
|
27
|
+
==========
|
|
28
|
+
APIMATIC is a trade mark for APIMATIC Limited
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: areach-apimatic-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Sample SDKs for Areach by APIMatic
|
|
5
|
+
Author-email: Muhammad Rafay <muhammad.rafay@apimatic.io>
|
|
6
|
+
Project-URL: Documentation, https://docs.anyreach.ai/
|
|
7
|
+
Requires-Python: >=3.7
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: apimatic-core>=0.2.24,~=0.2.0
|
|
11
|
+
Requires-Dist: apimatic-core-interfaces>=0.1.8,~=0.1.0
|
|
12
|
+
Requires-Dist: apimatic-requests-client-adapter>=0.1.10,~=0.1.0
|
|
13
|
+
Requires-Dist: python-dotenv<2.0,>=0.21
|
|
14
|
+
Provides-Extra: testutils
|
|
15
|
+
Requires-Dist: pytest>=7.2.2; extra == "testutils"
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# Getting Started with Anyreach API
|
|
20
|
+
|
|
21
|
+
## Introduction
|
|
22
|
+
|
|
23
|
+
REST API for the Anyreach platform.
|
|
24
|
+
|
|
25
|
+
Every endpoint is scoped to one organization. Authenticate with a bearer token and, if your token can reach more than one organization, name the one you mean with the `X-Anyreach-Org` header. See [Authentication](https://docs.anyreach.ai/api-reference/authentication).
|
|
26
|
+
|
|
27
|
+
This reference is generated from the running service, so the request and response shapes here are the ones the API actually enforces.
|
|
28
|
+
|
|
29
|
+
## Install the Package
|
|
30
|
+
|
|
31
|
+
The package is compatible with Python versions `3.7+`.
|
|
32
|
+
Install the package from PyPi using the following pip command:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install areach-apimatic-sdk==0.0.1
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
You can also view the package at:
|
|
39
|
+
https://pypi.python.org/pypi/areach-apimatic-sdk/0.0.1
|
|
40
|
+
|
|
41
|
+
## Test the SDK
|
|
42
|
+
|
|
43
|
+
You can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `pytest` is used as the test runner. You can run the tests as follows:
|
|
44
|
+
|
|
45
|
+
Navigate to the root directory of the SDK and run the following commands
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
pip install -r test-requirements.txt
|
|
49
|
+
pytest
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
## Initialize the API Client
|
|
53
|
+
|
|
54
|
+
**_Note:_** Documentation for the client can be found [here.](doc/client.md)
|
|
55
|
+
|
|
56
|
+
The following parameters are configurable for the API Client:
|
|
57
|
+
|
|
58
|
+
| Parameter | Type | Description |
|
|
59
|
+
| --- | --- | --- |
|
|
60
|
+
| http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
|
|
61
|
+
| override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
|
|
62
|
+
| http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
|
|
63
|
+
| timeout | `float` | The value to use for connection timeout. <br> **Default: 60** |
|
|
64
|
+
| max_retries | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
|
|
65
|
+
| backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
|
|
66
|
+
| retry_statuses | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524, 408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
|
|
67
|
+
| retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT", "GET", "PUT"]** |
|
|
68
|
+
| proxy_settings | [`ProxySettings`](doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
|
|
69
|
+
| bearer_auth_credentials | [`BearerAuthCredentials`](doc/auth/oauth-2-bearer-token.md) | The credential object for OAuth 2 Bearer token |
|
|
70
|
+
|
|
71
|
+
The API client can be initialized as follows:
|
|
72
|
+
|
|
73
|
+
### Code-Based Client Initialization
|
|
74
|
+
|
|
75
|
+
```python
|
|
76
|
+
from anyreachapi.anyreachapi_client import AnyreachapiClient
|
|
77
|
+
from anyreachapi.configuration import Environment
|
|
78
|
+
from anyreachapi.http.auth.o_auth_2 import BearerAuthCredentials
|
|
79
|
+
|
|
80
|
+
client = AnyreachapiClient(
|
|
81
|
+
bearer_auth_credentials=BearerAuthCredentials(
|
|
82
|
+
access_token='AccessToken'
|
|
83
|
+
),
|
|
84
|
+
environment=Environment.PRODUCTION
|
|
85
|
+
)
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### Environment-Based Client Initialization
|
|
89
|
+
|
|
90
|
+
```python
|
|
91
|
+
from anyreachapi.anyreachapi_client import AnyreachapiClient
|
|
92
|
+
|
|
93
|
+
# Specify the path to your .env file if it’s located outside the project’s root directory.
|
|
94
|
+
client = AnyreachapiClient.from_environment(dotenv_path='/path/to/.env')
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
See the [Environment-Based Client Initialization](doc/environment-based-client-initialization.md) section for details.
|
|
98
|
+
|
|
99
|
+
## Authorization
|
|
100
|
+
|
|
101
|
+
This API uses the following authentication schemes.
|
|
102
|
+
|
|
103
|
+
* [`bearerAuth (OAuth 2 Bearer token)`](doc/auth/oauth-2-bearer-token.md)
|
|
104
|
+
|
|
105
|
+
## List of APIs
|
|
106
|
+
|
|
107
|
+
* [Conversationattachments](doc/controllers/conversationattachments.md)
|
|
108
|
+
* [Conversationevents](doc/controllers/conversationevents.md)
|
|
109
|
+
* [Knowledgebases](doc/controllers/knowledgebases.md)
|
|
110
|
+
* [Knowledgebasesources](doc/controllers/knowledgebasesources.md)
|
|
111
|
+
* [Phonenumbers](doc/controllers/phonenumbers.md)
|
|
112
|
+
* [Inboundrouting](doc/controllers/inboundrouting.md)
|
|
113
|
+
* [Agentassist](doc/controllers/agentassist.md)
|
|
114
|
+
* [Humanhandoff](doc/controllers/humanhandoff.md)
|
|
115
|
+
* [Emaildomains](doc/controllers/emaildomains.md)
|
|
116
|
+
* [Emailaddresses](doc/controllers/emailaddresses.md)
|
|
117
|
+
* [Webwidgets](doc/controllers/webwidgets.md)
|
|
118
|
+
* [Campaigncontacts](doc/controllers/campaigncontacts.md)
|
|
119
|
+
* [Campaignconfigurations](doc/controllers/campaignconfigurations.md)
|
|
120
|
+
* [Campaignstats](doc/controllers/campaignstats.md)
|
|
121
|
+
* [Customdata](doc/controllers/customdata.md)
|
|
122
|
+
* [Evaluationruns](doc/controllers/evaluationruns.md)
|
|
123
|
+
* [Workflowtriggers](doc/controllers/workflowtriggers.md)
|
|
124
|
+
* [Workflowexecutions](doc/controllers/workflowexecutions.md)
|
|
125
|
+
* [Workflowcredentials](doc/controllers/workflowcredentials.md)
|
|
126
|
+
* [Agents](doc/controllers/agents.md)
|
|
127
|
+
* [Conversations](doc/controllers/conversations.md)
|
|
128
|
+
* [Sources](doc/controllers/sources.md)
|
|
129
|
+
* [Trunks](doc/controllers/trunks.md)
|
|
130
|
+
* [Unsubscribes](doc/controllers/unsubscribes.md)
|
|
131
|
+
* [Campaigns](doc/controllers/campaigns.md)
|
|
132
|
+
* [Metrics](doc/controllers/metrics.md)
|
|
133
|
+
* [Evaluations](doc/controllers/evaluations.md)
|
|
134
|
+
* [Workflows](doc/controllers/workflows.md)
|
|
135
|
+
|
|
136
|
+
## SDK Infrastructure
|
|
137
|
+
|
|
138
|
+
### Configuration
|
|
139
|
+
|
|
140
|
+
* [ProxySettings](doc/proxy-settings.md)
|
|
141
|
+
* [Environment-Based Client Initialization](doc/environment-based-client-initialization.md)
|
|
142
|
+
|
|
143
|
+
### HTTP
|
|
144
|
+
|
|
145
|
+
* [HttpResponse](doc/http-response.md)
|
|
146
|
+
* [HttpRequest](doc/http-request.md)
|
|
147
|
+
|
|
148
|
+
### Utilities
|
|
149
|
+
|
|
150
|
+
* [ApiHelper](doc/api-helper.md)
|
|
151
|
+
* [HttpDateTime](doc/http-date-time.md)
|
|
152
|
+
* [RFC3339DateTime](doc/rfc3339-date-time.md)
|
|
153
|
+
* [UnixDateTime](doc/unix-date-time.md)
|
|
154
|
+
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
|
|
2
|
+
# Getting Started with Anyreach API
|
|
3
|
+
|
|
4
|
+
## Introduction
|
|
5
|
+
|
|
6
|
+
REST API for the Anyreach platform.
|
|
7
|
+
|
|
8
|
+
Every endpoint is scoped to one organization. Authenticate with a bearer token and, if your token can reach more than one organization, name the one you mean with the `X-Anyreach-Org` header. See [Authentication](https://docs.anyreach.ai/api-reference/authentication).
|
|
9
|
+
|
|
10
|
+
This reference is generated from the running service, so the request and response shapes here are the ones the API actually enforces.
|
|
11
|
+
|
|
12
|
+
## Install the Package
|
|
13
|
+
|
|
14
|
+
The package is compatible with Python versions `3.7+`.
|
|
15
|
+
Install the package from PyPi using the following pip command:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install areach-apimatic-sdk==0.0.1
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
You can also view the package at:
|
|
22
|
+
https://pypi.python.org/pypi/areach-apimatic-sdk/0.0.1
|
|
23
|
+
|
|
24
|
+
## Test the SDK
|
|
25
|
+
|
|
26
|
+
You can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `pytest` is used as the test runner. You can run the tests as follows:
|
|
27
|
+
|
|
28
|
+
Navigate to the root directory of the SDK and run the following commands
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
pip install -r test-requirements.txt
|
|
32
|
+
pytest
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Initialize the API Client
|
|
36
|
+
|
|
37
|
+
**_Note:_** Documentation for the client can be found [here.](doc/client.md)
|
|
38
|
+
|
|
39
|
+
The following parameters are configurable for the API Client:
|
|
40
|
+
|
|
41
|
+
| Parameter | Type | Description |
|
|
42
|
+
| --- | --- | --- |
|
|
43
|
+
| http_client_instance | `Union[Session, HttpClientProvider]` | The Http Client passed from the sdk user for making requests |
|
|
44
|
+
| override_http_client_configuration | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
|
|
45
|
+
| http_call_back | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
|
|
46
|
+
| timeout | `float` | The value to use for connection timeout. <br> **Default: 60** |
|
|
47
|
+
| max_retries | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
|
|
48
|
+
| backoff_factor | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
|
|
49
|
+
| retry_statuses | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524, 408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
|
|
50
|
+
| retry_methods | `Array of string` | The http methods on which retry is to be done. <br> **Default: ["GET", "PUT", "GET", "PUT"]** |
|
|
51
|
+
| proxy_settings | [`ProxySettings`](doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
|
|
52
|
+
| bearer_auth_credentials | [`BearerAuthCredentials`](doc/auth/oauth-2-bearer-token.md) | The credential object for OAuth 2 Bearer token |
|
|
53
|
+
|
|
54
|
+
The API client can be initialized as follows:
|
|
55
|
+
|
|
56
|
+
### Code-Based Client Initialization
|
|
57
|
+
|
|
58
|
+
```python
|
|
59
|
+
from anyreachapi.anyreachapi_client import AnyreachapiClient
|
|
60
|
+
from anyreachapi.configuration import Environment
|
|
61
|
+
from anyreachapi.http.auth.o_auth_2 import BearerAuthCredentials
|
|
62
|
+
|
|
63
|
+
client = AnyreachapiClient(
|
|
64
|
+
bearer_auth_credentials=BearerAuthCredentials(
|
|
65
|
+
access_token='AccessToken'
|
|
66
|
+
),
|
|
67
|
+
environment=Environment.PRODUCTION
|
|
68
|
+
)
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Environment-Based Client Initialization
|
|
72
|
+
|
|
73
|
+
```python
|
|
74
|
+
from anyreachapi.anyreachapi_client import AnyreachapiClient
|
|
75
|
+
|
|
76
|
+
# Specify the path to your .env file if it’s located outside the project’s root directory.
|
|
77
|
+
client = AnyreachapiClient.from_environment(dotenv_path='/path/to/.env')
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
See the [Environment-Based Client Initialization](doc/environment-based-client-initialization.md) section for details.
|
|
81
|
+
|
|
82
|
+
## Authorization
|
|
83
|
+
|
|
84
|
+
This API uses the following authentication schemes.
|
|
85
|
+
|
|
86
|
+
* [`bearerAuth (OAuth 2 Bearer token)`](doc/auth/oauth-2-bearer-token.md)
|
|
87
|
+
|
|
88
|
+
## List of APIs
|
|
89
|
+
|
|
90
|
+
* [Conversationattachments](doc/controllers/conversationattachments.md)
|
|
91
|
+
* [Conversationevents](doc/controllers/conversationevents.md)
|
|
92
|
+
* [Knowledgebases](doc/controllers/knowledgebases.md)
|
|
93
|
+
* [Knowledgebasesources](doc/controllers/knowledgebasesources.md)
|
|
94
|
+
* [Phonenumbers](doc/controllers/phonenumbers.md)
|
|
95
|
+
* [Inboundrouting](doc/controllers/inboundrouting.md)
|
|
96
|
+
* [Agentassist](doc/controllers/agentassist.md)
|
|
97
|
+
* [Humanhandoff](doc/controllers/humanhandoff.md)
|
|
98
|
+
* [Emaildomains](doc/controllers/emaildomains.md)
|
|
99
|
+
* [Emailaddresses](doc/controllers/emailaddresses.md)
|
|
100
|
+
* [Webwidgets](doc/controllers/webwidgets.md)
|
|
101
|
+
* [Campaigncontacts](doc/controllers/campaigncontacts.md)
|
|
102
|
+
* [Campaignconfigurations](doc/controllers/campaignconfigurations.md)
|
|
103
|
+
* [Campaignstats](doc/controllers/campaignstats.md)
|
|
104
|
+
* [Customdata](doc/controllers/customdata.md)
|
|
105
|
+
* [Evaluationruns](doc/controllers/evaluationruns.md)
|
|
106
|
+
* [Workflowtriggers](doc/controllers/workflowtriggers.md)
|
|
107
|
+
* [Workflowexecutions](doc/controllers/workflowexecutions.md)
|
|
108
|
+
* [Workflowcredentials](doc/controllers/workflowcredentials.md)
|
|
109
|
+
* [Agents](doc/controllers/agents.md)
|
|
110
|
+
* [Conversations](doc/controllers/conversations.md)
|
|
111
|
+
* [Sources](doc/controllers/sources.md)
|
|
112
|
+
* [Trunks](doc/controllers/trunks.md)
|
|
113
|
+
* [Unsubscribes](doc/controllers/unsubscribes.md)
|
|
114
|
+
* [Campaigns](doc/controllers/campaigns.md)
|
|
115
|
+
* [Metrics](doc/controllers/metrics.md)
|
|
116
|
+
* [Evaluations](doc/controllers/evaluations.md)
|
|
117
|
+
* [Workflows](doc/controllers/workflows.md)
|
|
118
|
+
|
|
119
|
+
## SDK Infrastructure
|
|
120
|
+
|
|
121
|
+
### Configuration
|
|
122
|
+
|
|
123
|
+
* [ProxySettings](doc/proxy-settings.md)
|
|
124
|
+
* [Environment-Based Client Initialization](doc/environment-based-client-initialization.md)
|
|
125
|
+
|
|
126
|
+
### HTTP
|
|
127
|
+
|
|
128
|
+
* [HttpResponse](doc/http-response.md)
|
|
129
|
+
* [HttpRequest](doc/http-request.md)
|
|
130
|
+
|
|
131
|
+
### Utilities
|
|
132
|
+
|
|
133
|
+
* [ApiHelper](doc/api-helper.md)
|
|
134
|
+
* [HttpDateTime](doc/http-date-time.md)
|
|
135
|
+
* [RFC3339DateTime](doc/rfc3339-date-time.md)
|
|
136
|
+
* [UnixDateTime](doc/unix-date-time.md)
|
|
137
|
+
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
"""anyreachapi.
|
|
2
|
+
|
|
3
|
+
This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
# ruff: noqa: E501
|
|
7
|
+
from apimatic_core.configurations.global_configuration import (
|
|
8
|
+
GlobalConfiguration,
|
|
9
|
+
)
|
|
10
|
+
from apimatic_core.decorators.lazy_property import (
|
|
11
|
+
LazyProperty,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
from anyreachapi.configuration import (
|
|
15
|
+
Configuration,
|
|
16
|
+
Environment,
|
|
17
|
+
)
|
|
18
|
+
from anyreachapi.controllers.agent_assist_controller import (
|
|
19
|
+
AgentAssistController,
|
|
20
|
+
)
|
|
21
|
+
from anyreachapi.controllers.agents_controller import (
|
|
22
|
+
AgentsController,
|
|
23
|
+
)
|
|
24
|
+
from anyreachapi.controllers.base_controller import (
|
|
25
|
+
BaseController,
|
|
26
|
+
)
|
|
27
|
+
from anyreachapi.controllers.campaign_configurations_controller import (
|
|
28
|
+
CampaignConfigurationsController,
|
|
29
|
+
)
|
|
30
|
+
from anyreachapi.controllers.campaign_contacts_controller import (
|
|
31
|
+
CampaignContactsController,
|
|
32
|
+
)
|
|
33
|
+
from anyreachapi.controllers.campaign_stats_controller import (
|
|
34
|
+
CampaignStatsController,
|
|
35
|
+
)
|
|
36
|
+
from anyreachapi.controllers.campaigns_controller import (
|
|
37
|
+
CampaignsController,
|
|
38
|
+
)
|
|
39
|
+
from anyreachapi.controllers.conversation_attachments_controller import (
|
|
40
|
+
ConversationAttachmentsController,
|
|
41
|
+
)
|
|
42
|
+
from anyreachapi.controllers.conversation_events_controller import (
|
|
43
|
+
ConversationEventsController,
|
|
44
|
+
)
|
|
45
|
+
from anyreachapi.controllers.conversations_controller import (
|
|
46
|
+
ConversationsController,
|
|
47
|
+
)
|
|
48
|
+
from anyreachapi.controllers.custom_data_controller import (
|
|
49
|
+
CustomDataController,
|
|
50
|
+
)
|
|
51
|
+
from anyreachapi.controllers.email_addresses_controller import (
|
|
52
|
+
EmailAddressesController,
|
|
53
|
+
)
|
|
54
|
+
from anyreachapi.controllers.email_domains_controller import (
|
|
55
|
+
EmailDomainsController,
|
|
56
|
+
)
|
|
57
|
+
from anyreachapi.controllers.evaluation_runs_controller import (
|
|
58
|
+
EvaluationRunsController,
|
|
59
|
+
)
|
|
60
|
+
from anyreachapi.controllers.evaluations_controller import (
|
|
61
|
+
EvaluationsController,
|
|
62
|
+
)
|
|
63
|
+
from anyreachapi.controllers.human_handoff_controller import (
|
|
64
|
+
HumanHandoffController,
|
|
65
|
+
)
|
|
66
|
+
from anyreachapi.controllers.inbound_routing_controller import (
|
|
67
|
+
InboundRoutingController,
|
|
68
|
+
)
|
|
69
|
+
from anyreachapi.controllers.knowledge_base_sources_controller import (
|
|
70
|
+
KnowledgeBaseSourcesController,
|
|
71
|
+
)
|
|
72
|
+
from anyreachapi.controllers.knowledge_bases_controller import (
|
|
73
|
+
KnowledgeBasesController,
|
|
74
|
+
)
|
|
75
|
+
from anyreachapi.controllers.metrics_controller import (
|
|
76
|
+
MetricsController,
|
|
77
|
+
)
|
|
78
|
+
from anyreachapi.controllers.phone_numbers_controller import (
|
|
79
|
+
PhoneNumbersController,
|
|
80
|
+
)
|
|
81
|
+
from anyreachapi.controllers.sources_controller import (
|
|
82
|
+
SourcesController,
|
|
83
|
+
)
|
|
84
|
+
from anyreachapi.controllers.trunks_controller import (
|
|
85
|
+
TrunksController,
|
|
86
|
+
)
|
|
87
|
+
from anyreachapi.controllers.unsubscribes_controller import (
|
|
88
|
+
UnsubscribesController,
|
|
89
|
+
)
|
|
90
|
+
from anyreachapi.controllers.web_widgets_controller import (
|
|
91
|
+
WebWidgetsController,
|
|
92
|
+
)
|
|
93
|
+
from anyreachapi.controllers.workflow_credentials_controller import (
|
|
94
|
+
WorkflowCredentialsController,
|
|
95
|
+
)
|
|
96
|
+
from anyreachapi.controllers.workflow_executions_controller import (
|
|
97
|
+
WorkflowExecutionsController,
|
|
98
|
+
)
|
|
99
|
+
from anyreachapi.controllers.workflow_triggers_controller import (
|
|
100
|
+
WorkflowTriggersController,
|
|
101
|
+
)
|
|
102
|
+
from anyreachapi.controllers.workflows_controller import (
|
|
103
|
+
WorkflowsController,
|
|
104
|
+
)
|
|
105
|
+
from anyreachapi.http.auth.o_auth_2 import OAuth2
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
class AnyreachapiClient(object):
|
|
109
|
+
"""Client that provide access to the AnyreachapiClient APIs."""
|
|
110
|
+
|
|
111
|
+
@LazyProperty
|
|
112
|
+
def agents(self):
|
|
113
|
+
"""Provide access to the AgentsController endpoints."""
|
|
114
|
+
return AgentsController(self.global_configuration)
|
|
115
|
+
|
|
116
|
+
@LazyProperty
|
|
117
|
+
def conversations(self):
|
|
118
|
+
"""Provide access to the ConversationsController endpoints."""
|
|
119
|
+
return ConversationsController(self.global_configuration)
|
|
120
|
+
|
|
121
|
+
@LazyProperty
|
|
122
|
+
def conversation_attachments(self):
|
|
123
|
+
"""Provide access to the ConversationAttachmentsController endpoints."""
|
|
124
|
+
return ConversationAttachmentsController(self.global_configuration)
|
|
125
|
+
|
|
126
|
+
@LazyProperty
|
|
127
|
+
def conversation_events(self):
|
|
128
|
+
"""Provide access to the ConversationEventsController endpoints."""
|
|
129
|
+
return ConversationEventsController(self.global_configuration)
|
|
130
|
+
|
|
131
|
+
@LazyProperty
|
|
132
|
+
def knowledge_bases(self):
|
|
133
|
+
"""Provide access to the KnowledgeBasesController endpoints."""
|
|
134
|
+
return KnowledgeBasesController(self.global_configuration)
|
|
135
|
+
|
|
136
|
+
@LazyProperty
|
|
137
|
+
def knowledge_base_sources(self):
|
|
138
|
+
"""Provide access to the KnowledgeBaseSourcesController endpoints."""
|
|
139
|
+
return KnowledgeBaseSourcesController(self.global_configuration)
|
|
140
|
+
|
|
141
|
+
@LazyProperty
|
|
142
|
+
def sources(self):
|
|
143
|
+
"""Provide access to the SourcesController endpoints."""
|
|
144
|
+
return SourcesController(self.global_configuration)
|
|
145
|
+
|
|
146
|
+
@LazyProperty
|
|
147
|
+
def phone_numbers(self):
|
|
148
|
+
"""Provide access to the PhoneNumbersController endpoints."""
|
|
149
|
+
return PhoneNumbersController(self.global_configuration)
|
|
150
|
+
|
|
151
|
+
@LazyProperty
|
|
152
|
+
def trunks(self):
|
|
153
|
+
"""Provide access to the TrunksController endpoints."""
|
|
154
|
+
return TrunksController(self.global_configuration)
|
|
155
|
+
|
|
156
|
+
@LazyProperty
|
|
157
|
+
def inbound_routing(self):
|
|
158
|
+
"""Provide access to the InboundRoutingController endpoints."""
|
|
159
|
+
return InboundRoutingController(self.global_configuration)
|
|
160
|
+
|
|
161
|
+
@LazyProperty
|
|
162
|
+
def agent_assist(self):
|
|
163
|
+
"""Provide access to the AgentAssistController endpoints."""
|
|
164
|
+
return AgentAssistController(self.global_configuration)
|
|
165
|
+
|
|
166
|
+
@LazyProperty
|
|
167
|
+
def human_handoff(self):
|
|
168
|
+
"""Provide access to the HumanHandoffController endpoints."""
|
|
169
|
+
return HumanHandoffController(self.global_configuration)
|
|
170
|
+
|
|
171
|
+
@LazyProperty
|
|
172
|
+
def email_domains(self):
|
|
173
|
+
"""Provide access to the EmailDomainsController endpoints."""
|
|
174
|
+
return EmailDomainsController(self.global_configuration)
|
|
175
|
+
|
|
176
|
+
@LazyProperty
|
|
177
|
+
def email_addresses(self):
|
|
178
|
+
"""Provide access to the EmailAddressesController endpoints."""
|
|
179
|
+
return EmailAddressesController(self.global_configuration)
|
|
180
|
+
|
|
181
|
+
@LazyProperty
|
|
182
|
+
def unsubscribes(self):
|
|
183
|
+
"""Provide access to the UnsubscribesController endpoints."""
|
|
184
|
+
return UnsubscribesController(self.global_configuration)
|
|
185
|
+
|
|
186
|
+
@LazyProperty
|
|
187
|
+
def web_widgets(self):
|
|
188
|
+
"""Provide access to the WebWidgetsController endpoints."""
|
|
189
|
+
return WebWidgetsController(self.global_configuration)
|
|
190
|
+
|
|
191
|
+
@LazyProperty
|
|
192
|
+
def campaigns(self):
|
|
193
|
+
"""Provide access to the CampaignsController endpoints."""
|
|
194
|
+
return CampaignsController(self.global_configuration)
|
|
195
|
+
|
|
196
|
+
@LazyProperty
|
|
197
|
+
def campaign_contacts(self):
|
|
198
|
+
"""Provide access to the CampaignContactsController endpoints."""
|
|
199
|
+
return CampaignContactsController(self.global_configuration)
|
|
200
|
+
|
|
201
|
+
@LazyProperty
|
|
202
|
+
def campaign_configurations(self):
|
|
203
|
+
"""Provide access to the CampaignConfigurationsController endpoints."""
|
|
204
|
+
return CampaignConfigurationsController(self.global_configuration)
|
|
205
|
+
|
|
206
|
+
@LazyProperty
|
|
207
|
+
def campaign_stats(self):
|
|
208
|
+
"""Provide access to the CampaignStatsController endpoints."""
|
|
209
|
+
return CampaignStatsController(self.global_configuration)
|
|
210
|
+
|
|
211
|
+
@LazyProperty
|
|
212
|
+
def custom_data(self):
|
|
213
|
+
"""Provide access to the CustomDataController endpoints."""
|
|
214
|
+
return CustomDataController(self.global_configuration)
|
|
215
|
+
|
|
216
|
+
@LazyProperty
|
|
217
|
+
def metrics(self):
|
|
218
|
+
"""Provide access to the MetricsController endpoints."""
|
|
219
|
+
return MetricsController(self.global_configuration)
|
|
220
|
+
|
|
221
|
+
@LazyProperty
|
|
222
|
+
def evaluations(self):
|
|
223
|
+
"""Provide access to the EvaluationsController endpoints."""
|
|
224
|
+
return EvaluationsController(self.global_configuration)
|
|
225
|
+
|
|
226
|
+
@LazyProperty
|
|
227
|
+
def evaluation_runs(self):
|
|
228
|
+
"""Provide access to the EvaluationRunsController endpoints."""
|
|
229
|
+
return EvaluationRunsController(self.global_configuration)
|
|
230
|
+
|
|
231
|
+
@LazyProperty
|
|
232
|
+
def workflows(self):
|
|
233
|
+
"""Provide access to the WorkflowsController endpoints."""
|
|
234
|
+
return WorkflowsController(self.global_configuration)
|
|
235
|
+
|
|
236
|
+
@LazyProperty
|
|
237
|
+
def workflow_triggers(self):
|
|
238
|
+
"""Provide access to the WorkflowTriggersController endpoints."""
|
|
239
|
+
return WorkflowTriggersController(self.global_configuration)
|
|
240
|
+
|
|
241
|
+
@LazyProperty
|
|
242
|
+
def workflow_executions(self):
|
|
243
|
+
"""Provide access to the WorkflowExecutionsController endpoints."""
|
|
244
|
+
return WorkflowExecutionsController(self.global_configuration)
|
|
245
|
+
|
|
246
|
+
@LazyProperty
|
|
247
|
+
def workflow_credentials(self):
|
|
248
|
+
"""Provide access to the WorkflowCredentialsController endpoints."""
|
|
249
|
+
return WorkflowCredentialsController(self.global_configuration)
|
|
250
|
+
|
|
251
|
+
def __init__(self, http_client_instance=None,
|
|
252
|
+
override_http_client_configuration=False, http_call_back=None,
|
|
253
|
+
timeout=60, max_retries=0, backoff_factor=2,
|
|
254
|
+
retry_statuses=None, retry_methods=None, proxy_settings=None,
|
|
255
|
+
environment=Environment.PRODUCTION, access_token=None,
|
|
256
|
+
bearer_auth_credentials=None, config=None):
|
|
257
|
+
"""Initialize a new instance of AnyreachapiClient."""
|
|
258
|
+
self.config = config or Configuration(
|
|
259
|
+
http_client_instance=http_client_instance,
|
|
260
|
+
override_http_client_configuration=override_http_client_configuration,
|
|
261
|
+
http_call_back=http_call_back, timeout=timeout,
|
|
262
|
+
max_retries=max_retries, backoff_factor=backoff_factor,
|
|
263
|
+
retry_statuses=retry_statuses, retry_methods=retry_methods,
|
|
264
|
+
proxy_settings=proxy_settings, environment=environment,
|
|
265
|
+
access_token=access_token,
|
|
266
|
+
bearer_auth_credentials=bearer_auth_credentials)
|
|
267
|
+
|
|
268
|
+
self.global_configuration = GlobalConfiguration(self.config)\
|
|
269
|
+
.global_errors(BaseController.global_errors())\
|
|
270
|
+
.base_uri_executor(self.config.get_base_uri)\
|
|
271
|
+
.user_agent(BaseController.user_agent(),
|
|
272
|
+
BaseController.user_agent_parameters())
|
|
273
|
+
|
|
274
|
+
self.auth_managers = {
|
|
275
|
+
"bearerAuth": OAuth2(self.config.bearer_auth_credentials),
|
|
276
|
+
}
|
|
277
|
+
self.global_configuration =\
|
|
278
|
+
self.global_configuration.auth_managers(self.auth_managers)
|
|
279
|
+
|
|
280
|
+
@classmethod
|
|
281
|
+
def from_environment(cls, dotenv_path=None, **overrides):
|
|
282
|
+
"""Create a client instance using environment variables.
|
|
283
|
+
|
|
284
|
+
Returns:
|
|
285
|
+
AnyreachapiClient instance.
|
|
286
|
+
|
|
287
|
+
"""
|
|
288
|
+
return cls(config=Configuration
|
|
289
|
+
.from_environment(dotenv_path=dotenv_path, **overrides))
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""
|
|
2
|
+
anyreachapi
|
|
3
|
+
|
|
4
|
+
This file was automatically generated by APIMATIC v3.0 (
|
|
5
|
+
https://www.apimatic.io ).
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from apimatic_core.utilities.api_helper import ApiHelper as CoreApiHelper
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class APIHelper(CoreApiHelper):
|
|
12
|
+
"""
|
|
13
|
+
A Helper Class for various functions associated with API Calls.
|
|
14
|
+
|
|
15
|
+
This class contains static methods for operations that need to be
|
|
16
|
+
performed during API requests. All of the methods inside this class are
|
|
17
|
+
static methods, there is no need to ever initialise an instance of this
|
|
18
|
+
class.
|
|
19
|
+
"""
|