amocrm 0.2.0 → 0.4.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +46 -17
- data/lib/amocrm/client.rb +13 -0
- data/lib/amocrm/internal/transport/base_client.rb +6 -0
- data/lib/amocrm/internal/type/union.rb +7 -7
- data/lib/amocrm/models/v2_salesbot_run_params.rb +42 -0
- data/lib/amocrm/models/v2_salesbot_run_response.rb +91 -0
- data/lib/amocrm/models/v4_account_get_params.rb +22 -0
- data/lib/amocrm/models/v4_account_get_response.rb +408 -0
- data/lib/amocrm/models/v4_calls_create_params.rb +155 -0
- data/lib/amocrm/models/v4_calls_create_response.rb +162 -0
- data/lib/amocrm/models/v4_catalog_elements_create_params.rb +100 -0
- data/lib/amocrm/models/v4_catalog_elements_create_response.rb +254 -0
- data/lib/amocrm/models/v4_catalog_elements_get_by_id_params.rb +29 -0
- data/lib/amocrm/models/v4_catalog_elements_get_by_id_response.rb +210 -0
- data/lib/amocrm/models/v4_catalog_elements_list_params.rb +49 -0
- data/lib/amocrm/models/v4_catalog_elements_list_response.rb +254 -0
- data/lib/amocrm/models/v4_catalog_elements_update_by_id_params.rb +96 -0
- data/lib/amocrm/models/v4_catalog_elements_update_by_id_response.rb +254 -0
- data/lib/amocrm/models/v4_catalog_elements_update_params.rb +106 -0
- data/lib/amocrm/models/v4_catalog_elements_update_response.rb +254 -0
- data/lib/amocrm/models/v4_catalogs_create_params.rb +88 -0
- data/lib/amocrm/models/v4_catalogs_create_response.rb +221 -0
- data/lib/amocrm/models/v4_catalogs_get_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_catalogs_get_by_id_response.rb +181 -0
- data/lib/amocrm/models/v4_catalogs_list_params.rb +26 -0
- data/lib/amocrm/models/v4_catalogs_list_response.rb +221 -0
- data/lib/amocrm/models/v4_catalogs_update_by_id_params.rb +44 -0
- data/lib/amocrm/models/v4_catalogs_update_by_id_response.rb +221 -0
- data/lib/amocrm/models/v4_catalogs_update_params.rb +60 -0
- data/lib/amocrm/models/v4_catalogs_update_response.rb +221 -0
- data/lib/amocrm/models/v4_companies_create_params.rb +225 -0
- data/lib/amocrm/models/v4_companies_create_response.rb +95 -0
- data/lib/amocrm/models/v4_companies_get_by_id_params.rb +22 -0
- data/lib/amocrm/models/v4_companies_get_by_id_response.rb +324 -0
- data/lib/amocrm/models/v4_companies_list_params.rb +74 -0
- data/lib/amocrm/models/v4_companies_list_response.rb +359 -0
- data/lib/amocrm/models/v4_companies_update_by_id_params.rb +236 -0
- data/lib/amocrm/models/v4_companies_update_by_id_response.rb +95 -0
- data/lib/amocrm/models/v4_companies_update_params.rb +256 -0
- data/lib/amocrm/models/v4_companies_update_response.rb +95 -0
- data/lib/amocrm/models/v4_contact_chats_link_params.rb +42 -0
- data/lib/amocrm/models/v4_contact_chats_link_response.rb +95 -0
- data/lib/amocrm/models/v4_contact_chats_list_params.rb +20 -0
- data/lib/amocrm/models/v4_contact_chats_list_response.rb +95 -0
- data/lib/amocrm/models/v4_contacts_create_params.rb +239 -0
- data/lib/amocrm/models/v4_contacts_create_response.rb +95 -0
- data/lib/amocrm/models/v4_contacts_get_by_id_params.rb +22 -0
- data/lib/amocrm/models/v4_contacts_get_by_id_response.rb +348 -0
- data/lib/amocrm/models/v4_contacts_list_params.rb +74 -0
- data/lib/amocrm/models/v4_contacts_list_response.rb +383 -0
- data/lib/amocrm/models/v4_contacts_update_by_id_params.rb +250 -0
- data/lib/amocrm/models/v4_contacts_update_by_id_response.rb +95 -0
- data/lib/amocrm/models/v4_contacts_update_params.rb +270 -0
- data/lib/amocrm/models/v4_contacts_update_response.rb +95 -0
- data/lib/amocrm/models/v4_custom_field_groups_create_params.rb +45 -0
- data/lib/amocrm/models/v4_custom_field_groups_create_response.rb +96 -0
- data/lib/amocrm/models/v4_custom_field_groups_delete_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_custom_field_groups_delete_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_custom_field_groups_get_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_custom_field_groups_get_by_id_response.rb +73 -0
- data/lib/amocrm/models/v4_custom_field_groups_list_params.rb +26 -0
- data/lib/amocrm/models/v4_custom_field_groups_list_response.rb +108 -0
- data/lib/amocrm/models/v4_custom_field_groups_update_by_id_params.rb +32 -0
- data/lib/amocrm/models/v4_custom_field_groups_update_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_custom_fields_create_params.rb +108 -0
- data/lib/amocrm/models/v4_custom_fields_create_response.rb +96 -0
- data/lib/amocrm/models/v4_custom_fields_delete_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_custom_fields_delete_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_custom_fields_get_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_custom_fields_get_by_id_response.rb +127 -0
- data/lib/amocrm/models/v4_custom_fields_list_params.rb +26 -0
- data/lib/amocrm/models/v4_custom_fields_list_response.rb +161 -0
- data/lib/amocrm/models/v4_custom_fields_update_by_id_params.rb +86 -0
- data/lib/amocrm/models/v4_custom_fields_update_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_custom_fields_update_params.rb +108 -0
- data/lib/amocrm/models/v4_custom_fields_update_response.rb +45 -0
- data/lib/amocrm/models/v4_customer_bonus_points_change_params.rb +26 -0
- data/lib/amocrm/models/v4_customer_bonus_points_change_response.rb +55 -0
- data/lib/amocrm/models/v4_customer_segments_create_params.rb +118 -0
- data/lib/amocrm/models/v4_customer_segments_create_response.rb +96 -0
- data/lib/amocrm/models/v4_customer_segments_delete_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_customer_segments_delete_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_customer_segments_get_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_customer_segments_get_by_id_response.rb +162 -0
- data/lib/amocrm/models/v4_customer_segments_list_params.rb +14 -0
- data/lib/amocrm/models/v4_customer_segments_list_response.rb +199 -0
- data/lib/amocrm/models/v4_customer_segments_update_by_id_params.rb +101 -0
- data/lib/amocrm/models/v4_customer_segments_update_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_customer_statuses_create_params.rb +48 -0
- data/lib/amocrm/models/v4_customer_statuses_create_response.rb +96 -0
- data/lib/amocrm/models/v4_customer_statuses_delete_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_customer_statuses_delete_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_customer_statuses_get_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_customer_statuses_get_by_id_response.rb +79 -0
- data/lib/amocrm/models/v4_customer_statuses_list_params.rb +14 -0
- data/lib/amocrm/models/v4_customer_statuses_list_response.rb +108 -0
- data/lib/amocrm/models/v4_customer_statuses_update_by_id_params.rb +32 -0
- data/lib/amocrm/models/v4_customer_statuses_update_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_customer_transactions_create_params.rb +60 -0
- data/lib/amocrm/models/v4_customer_transactions_create_response.rb +100 -0
- data/lib/amocrm/models/v4_customer_transactions_delete_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_customer_transactions_delete_by_id_response.rb +45 -0
- data/lib/amocrm/models/v4_customer_transactions_list_by_customer_params.rb +32 -0
- data/lib/amocrm/models/v4_customer_transactions_list_by_customer_response.rb +130 -0
- data/lib/amocrm/models/v4_customer_transactions_list_params.rb +32 -0
- data/lib/amocrm/models/v4_customer_transactions_list_response.rb +126 -0
- data/lib/amocrm/models/v4_customers_create_params.rb +257 -0
- data/lib/amocrm/models/v4_customers_create_response.rb +95 -0
- data/lib/amocrm/models/v4_customers_get_by_id_params.rb +22 -0
- data/lib/amocrm/models/v4_customers_get_by_id_response.rb +378 -0
- data/lib/amocrm/models/v4_customers_list_params.rb +68 -0
- data/lib/amocrm/models/v4_customers_list_response.rb +421 -0
- data/lib/amocrm/models/v4_customers_mode_set_mode_params.rb +36 -0
- data/lib/amocrm/models/v4_customers_mode_set_mode_response.rb +72 -0
- data/lib/amocrm/models/v4_customers_update_by_id_params.rb +267 -0
- data/lib/amocrm/models/v4_customers_update_by_id_response.rb +96 -0
- data/lib/amocrm/models/v4_customers_update_params.rb +286 -0
- data/lib/amocrm/models/v4_customers_update_response.rb +95 -0
- data/lib/amocrm/models/v4_entity_followers_add_params.rb +48 -0
- data/lib/amocrm/models/v4_entity_followers_add_response.rb +90 -0
- data/lib/amocrm/models/v4_entity_followers_list_params.rb +44 -0
- data/lib/amocrm/models/v4_entity_followers_list_response.rb +114 -0
- data/lib/amocrm/models/v4_entity_followers_remove_params.rb +48 -0
- data/lib/amocrm/models/v4_entity_followers_remove_response.rb +61 -0
- data/lib/amocrm/models/v4_entity_links_link_by_entity_params.rb +134 -0
- data/lib/amocrm/models/v4_entity_links_link_by_entity_response.rb +61 -0
- data/lib/amocrm/models/v4_entity_links_link_params.rb +128 -0
- data/lib/amocrm/models/v4_entity_links_link_response.rb +61 -0
- data/lib/amocrm/models/v4_entity_links_list_by_entity_params.rb +32 -0
- data/lib/amocrm/models/v4_entity_links_list_by_entity_response.rb +182 -0
- data/lib/amocrm/models/v4_entity_links_list_params.rb +32 -0
- data/lib/amocrm/models/v4_entity_links_list_response.rb +181 -0
- data/lib/amocrm/models/v4_entity_links_unlink_by_entity_params.rb +134 -0
- data/lib/amocrm/models/v4_entity_links_unlink_by_entity_response.rb +61 -0
- data/lib/amocrm/models/v4_entity_links_unlink_params.rb +128 -0
- data/lib/amocrm/models/v4_entity_links_unlink_response.rb +61 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_create_by_parent_params.rb +106 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_create_by_parent_response.rb +108 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_get_by_parent_id_params.rb +44 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_get_by_parent_id_response.rb +127 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_list_by_parent_params.rb +50 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_list_by_parent_response.rb +162 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_update_by_parent_id_params.rb +62 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_update_by_parent_id_response.rb +108 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_update_by_parent_params.rb +85 -0
- data/lib/amocrm/models/v4_entity_notes_by_parent_update_by_parent_response.rb +108 -0
- data/lib/amocrm/models/v4_entity_notes_create_params.rb +99 -0
- data/lib/amocrm/models/v4_entity_notes_create_response.rb +107 -0
- data/lib/amocrm/models/v4_entity_notes_get_by_id_params.rb +38 -0
- data/lib/amocrm/models/v4_entity_notes_get_by_id_response.rb +127 -0
- data/lib/amocrm/models/v4_entity_notes_list_params.rb +44 -0
- data/lib/amocrm/models/v4_entity_notes_list_response.rb +161 -0
- data/lib/amocrm/models/v4_entity_notes_pin_params.rb +32 -0
- data/lib/amocrm/models/v4_entity_notes_pin_response.rb +61 -0
- data/lib/amocrm/models/v4_entity_notes_unpin_params.rb +32 -0
- data/lib/amocrm/models/v4_entity_notes_unpin_response.rb +61 -0
- data/lib/amocrm/models/v4_entity_notes_update_by_id_params.rb +62 -0
- data/lib/amocrm/models/v4_entity_notes_update_by_id_response.rb +107 -0
- data/lib/amocrm/models/v4_entity_notes_update_params.rb +78 -0
- data/lib/amocrm/models/v4_entity_notes_update_response.rb +107 -0
- data/lib/amocrm/models/v4_events_get_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_events_get_by_id_response.rb +103 -0
- data/lib/amocrm/models/v4_events_list_params.rb +38 -0
- data/lib/amocrm/models/v4_events_list_response.rb +137 -0
- data/lib/amocrm/models/v4_events_list_types_params.rb +20 -0
- data/lib/amocrm/models/v4_events_list_types_response.rb +66 -0
- data/lib/amocrm/models/v4_leads_create_complex_params.rb +568 -0
- data/lib/amocrm/models/v4_leads_create_complex_response.rb +108 -0
- data/lib/amocrm/models/v4_leads_create_params.rb +566 -0
- data/lib/amocrm/models/v4_leads_create_response.rb +95 -0
- data/lib/amocrm/models/v4_leads_get_by_id_params.rb +22 -0
- data/lib/amocrm/models/v4_leads_get_by_id_response.rb +427 -0
- data/lib/amocrm/models/v4_leads_list_params.rb +74 -0
- data/lib/amocrm/models/v4_leads_list_response.rb +464 -0
- data/lib/amocrm/models/v4_leads_update_by_id_params.rb +546 -0
- data/lib/amocrm/models/v4_leads_update_by_id_response.rb +95 -0
- data/lib/amocrm/models/v4_leads_update_params.rb +565 -0
- data/lib/amocrm/models/v4_leads_update_response.rb +95 -0
- data/lib/amocrm/models/v4_pipeline_statuses_create_params.rb +77 -0
- data/lib/amocrm/models/v4_pipeline_statuses_create_response.rb +96 -0
- data/lib/amocrm/models/v4_pipeline_statuses_delete_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_pipeline_statuses_delete_by_id_response.rb +61 -0
- data/lib/amocrm/models/v4_pipeline_statuses_get_by_id_params.rb +29 -0
- data/lib/amocrm/models/v4_pipeline_statuses_get_by_id_response.rb +169 -0
- data/lib/amocrm/models/v4_pipeline_statuses_list_params.rb +22 -0
- data/lib/amocrm/models/v4_pipeline_statuses_list_response.rb +197 -0
- data/lib/amocrm/models/v4_pipeline_statuses_update_by_id_params.rb +73 -0
- data/lib/amocrm/models/v4_pipeline_statuses_update_by_id_response.rb +102 -0
- data/lib/amocrm/models/v4_pipeline_statuses_update_params.rb +83 -0
- data/lib/amocrm/models/v4_pipeline_statuses_update_response.rb +102 -0
- data/lib/amocrm/models/v4_pipelines_create_params.rb +129 -0
- data/lib/amocrm/models/v4_pipelines_create_response.rb +95 -0
- data/lib/amocrm/models/v4_pipelines_delete_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_pipelines_delete_by_id_response.rb +61 -0
- data/lib/amocrm/models/v4_pipelines_get_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_pipelines_get_by_id_response.rb +239 -0
- data/lib/amocrm/models/v4_pipelines_list_params.rb +14 -0
- data/lib/amocrm/models/v4_pipelines_list_response.rb +272 -0
- data/lib/amocrm/models/v4_pipelines_update_by_id_params.rb +50 -0
- data/lib/amocrm/models/v4_pipelines_update_by_id_response.rb +102 -0
- data/lib/amocrm/models/v4_pipelines_update_params.rb +66 -0
- data/lib/amocrm/models/v4_pipelines_update_response.rb +101 -0
- data/lib/amocrm/models/v4_roles_create_params.rb +151 -0
- data/lib/amocrm/models/v4_roles_create_response.rb +249 -0
- data/lib/amocrm/models/v4_roles_delete_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_roles_delete_by_id_response.rb +61 -0
- data/lib/amocrm/models/v4_roles_get_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_roles_get_by_id_response.rb +208 -0
- data/lib/amocrm/models/v4_roles_list_params.rb +32 -0
- data/lib/amocrm/models/v4_roles_list_response.rb +255 -0
- data/lib/amocrm/models/v4_roles_update_by_id_params.rb +138 -0
- data/lib/amocrm/models/v4_roles_update_by_id_response.rb +208 -0
- data/lib/amocrm/models/v4_short_links_create_params.rb +20 -0
- data/lib/amocrm/models/v4_short_links_create_response.rb +55 -0
- data/lib/amocrm/models/v4_sources_create_params.rb +84 -0
- data/lib/amocrm/models/v4_sources_create_response.rb +171 -0
- data/lib/amocrm/models/v4_sources_delete_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_sources_delete_by_id_response.rb +61 -0
- data/lib/amocrm/models/v4_sources_delete_params.rb +30 -0
- data/lib/amocrm/models/v4_sources_delete_response.rb +61 -0
- data/lib/amocrm/models/v4_sources_get_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_sources_get_by_id_response.rb +129 -0
- data/lib/amocrm/models/v4_sources_list_params.rb +65 -0
- data/lib/amocrm/models/v4_sources_list_response.rb +165 -0
- data/lib/amocrm/models/v4_sources_update_by_id_params.rb +73 -0
- data/lib/amocrm/models/v4_sources_update_by_id_response.rb +171 -0
- data/lib/amocrm/models/v4_sources_update_params.rb +90 -0
- data/lib/amocrm/models/v4_sources_update_response.rb +171 -0
- data/lib/amocrm/models/v4_tags_create_params.rb +54 -0
- data/lib/amocrm/models/v4_tags_create_response.rb +101 -0
- data/lib/amocrm/models/v4_tags_list_params.rb +50 -0
- data/lib/amocrm/models/v4_tags_list_response.rb +101 -0
- data/lib/amocrm/models/v4_talks_close_params.rb +22 -0
- data/lib/amocrm/models/v4_talks_close_response.rb +61 -0
- data/lib/amocrm/models/v4_talks_get_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_talks_get_by_id_response.rb +213 -0
- data/lib/amocrm/models/v4_tasks_create_params.rb +87 -0
- data/lib/amocrm/models/v4_tasks_create_response.rb +95 -0
- data/lib/amocrm/models/v4_tasks_get_by_id_params.rb +14 -0
- data/lib/amocrm/models/v4_tasks_get_by_id_response.rb +173 -0
- data/lib/amocrm/models/v4_tasks_list_params.rb +66 -0
- data/lib/amocrm/models/v4_tasks_list_response.rb +208 -0
- data/lib/amocrm/models/v4_tasks_update_by_id_params.rb +72 -0
- data/lib/amocrm/models/v4_tasks_update_by_id_response.rb +95 -0
- data/lib/amocrm/models/v4_tasks_update_params.rb +98 -0
- data/lib/amocrm/models/v4_tasks_update_response.rb +95 -0
- data/lib/amocrm/models/v4_unsorted_leads_accept_params.rb +30 -0
- data/lib/amocrm/models/v4_unsorted_leads_accept_response.rb +168 -0
- data/lib/amocrm/models/v4_unsorted_leads_create_forms_params.rb +878 -0
- data/lib/amocrm/models/v4_unsorted_leads_create_forms_response.rb +200 -0
- data/lib/amocrm/models/v4_unsorted_leads_decline_params.rb +22 -0
- data/lib/amocrm/models/v4_unsorted_leads_decline_response.rb +168 -0
- data/lib/amocrm/models/v4_users_create_params.rb +169 -0
- data/lib/amocrm/models/v4_users_create_response.rb +473 -0
- data/lib/amocrm/models/v4_users_get_by_id_params.rb +20 -0
- data/lib/amocrm/models/v4_users_get_by_id_response.rb +426 -0
- data/lib/amocrm/models/v4_users_list_params.rb +32 -0
- data/lib/amocrm/models/v4_users_list_response.rb +475 -0
- data/lib/amocrm/models/v4_webhooks_list_params.rb +30 -0
- data/lib/amocrm/models/v4_webhooks_list_response.rb +137 -0
- data/lib/amocrm/models/v4_webhooks_subscribe_params.rb +32 -0
- data/lib/amocrm/models/v4_webhooks_subscribe_response.rb +103 -0
- data/lib/amocrm/models/v4_webhooks_unsubscribe_params.rb +20 -0
- data/lib/amocrm/models/v4_webhooks_unsubscribe_response.rb +61 -0
- data/lib/amocrm/models/v4_website_buttons_connect_online_chat_params.rb +14 -0
- data/lib/amocrm/models/v4_website_buttons_connect_online_chat_response.rb +61 -0
- data/lib/amocrm/models/v4_website_buttons_create_params.rb +32 -0
- data/lib/amocrm/models/v4_website_buttons_create_response.rb +61 -0
- data/lib/amocrm/models/v4_website_buttons_get_by_source_id_params.rb +20 -0
- data/lib/amocrm/models/v4_website_buttons_get_by_source_id_response.rb +97 -0
- data/lib/amocrm/models/v4_website_buttons_list_params.rb +32 -0
- data/lib/amocrm/models/v4_website_buttons_list_response.rb +132 -0
- data/lib/amocrm/models/v4_website_buttons_update_params.rb +30 -0
- data/lib/amocrm/models/v4_website_buttons_update_response.rb +97 -0
- data/lib/amocrm/models/v4_widget_bot_continue_continue_params.rb +65 -0
- data/lib/amocrm/models/v4_widget_bot_continue_continue_response.rb +61 -0
- data/lib/amocrm/models/v4_widgets_get_by_code_params.rb +14 -0
- data/lib/amocrm/models/v4_widgets_get_by_code_response.rb +180 -0
- data/lib/amocrm/models/v4_widgets_install_params.rb +20 -0
- data/lib/amocrm/models/v4_widgets_install_response.rb +180 -0
- data/lib/amocrm/models/v4_widgets_list_params.rb +26 -0
- data/lib/amocrm/models/v4_widgets_list_response.rb +218 -0
- data/lib/amocrm/models/v4_widgets_uninstall_params.rb +14 -0
- data/lib/amocrm/models/v4_widgets_uninstall_response.rb +61 -0
- data/lib/amocrm/models.rb +279 -1
- data/lib/amocrm/resources/v2.rb +35 -0
- data/lib/amocrm/resources/v4.rb +3419 -3
- data/lib/amocrm/version.rb +1 -1
- data/lib/amocrm.rb +281 -8
- data/rbi/amocrm/client.rbi +8 -0
- data/rbi/amocrm/internal/transport/base_client.rbi +5 -0
- data/rbi/amocrm/models/v2_salesbot_run_params.rbi +72 -0
- data/rbi/amocrm/models/v2_salesbot_run_response.rbi +212 -0
- data/rbi/amocrm/models/v4_account_get_params.rbi +43 -0
- data/rbi/amocrm/models/v4_account_get_response.rbi +851 -0
- data/rbi/amocrm/models/v4_calls_create_params.rbi +262 -0
- data/rbi/amocrm/models/v4_calls_create_response.rbi +400 -0
- data/rbi/amocrm/models/v4_catalog_elements_create_params.rbi +233 -0
- data/rbi/amocrm/models/v4_catalog_elements_create_response.rbi +566 -0
- data/rbi/amocrm/models/v4_catalog_elements_get_by_id_params.rbi +55 -0
- data/rbi/amocrm/models/v4_catalog_elements_get_by_id_response.rbi +445 -0
- data/rbi/amocrm/models/v4_catalog_elements_list_params.rbi +89 -0
- data/rbi/amocrm/models/v4_catalog_elements_list_response.rbi +565 -0
- data/rbi/amocrm/models/v4_catalog_elements_update_by_id_params.rbi +216 -0
- data/rbi/amocrm/models/v4_catalog_elements_update_by_id_response.rbi +568 -0
- data/rbi/amocrm/models/v4_catalog_elements_update_params.rbi +241 -0
- data/rbi/amocrm/models/v4_catalog_elements_update_response.rbi +566 -0
- data/rbi/amocrm/models/v4_catalogs_create_params.rbi +183 -0
- data/rbi/amocrm/models/v4_catalogs_create_response.rbi +450 -0
- data/rbi/amocrm/models/v4_catalogs_get_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_catalogs_get_by_id_response.rbi +331 -0
- data/rbi/amocrm/models/v4_catalogs_list_params.rbi +49 -0
- data/rbi/amocrm/models/v4_catalogs_list_response.rbi +449 -0
- data/rbi/amocrm/models/v4_catalogs_update_by_id_params.rbi +80 -0
- data/rbi/amocrm/models/v4_catalogs_update_by_id_response.rbi +450 -0
- data/rbi/amocrm/models/v4_catalogs_update_params.rbi +116 -0
- data/rbi/amocrm/models/v4_catalogs_update_response.rbi +450 -0
- data/rbi/amocrm/models/v4_companies_create_params.rbi +483 -0
- data/rbi/amocrm/models/v4_companies_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_companies_get_by_id_params.rbi +43 -0
- data/rbi/amocrm/models/v4_companies_get_by_id_response.rbi +743 -0
- data/rbi/amocrm/models/v4_companies_list_params.rbi +116 -0
- data/rbi/amocrm/models/v4_companies_list_response.rbi +869 -0
- data/rbi/amocrm/models/v4_companies_update_by_id_params.rbi +485 -0
- data/rbi/amocrm/models/v4_companies_update_by_id_response.rbi +234 -0
- data/rbi/amocrm/models/v4_companies_update_params.rbi +541 -0
- data/rbi/amocrm/models/v4_companies_update_response.rbi +234 -0
- data/rbi/amocrm/models/v4_contact_chats_link_params.rbi +78 -0
- data/rbi/amocrm/models/v4_contact_chats_link_response.rbi +228 -0
- data/rbi/amocrm/models/v4_contact_chats_list_params.rbi +38 -0
- data/rbi/amocrm/models/v4_contact_chats_list_response.rbi +228 -0
- data/rbi/amocrm/models/v4_contacts_create_params.rbi +497 -0
- data/rbi/amocrm/models/v4_contacts_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_contacts_get_by_id_params.rbi +43 -0
- data/rbi/amocrm/models/v4_contacts_get_by_id_response.rbi +779 -0
- data/rbi/amocrm/models/v4_contacts_list_params.rbi +116 -0
- data/rbi/amocrm/models/v4_contacts_list_response.rbi +905 -0
- data/rbi/amocrm/models/v4_contacts_update_by_id_params.rbi +503 -0
- data/rbi/amocrm/models/v4_contacts_update_by_id_response.rbi +234 -0
- data/rbi/amocrm/models/v4_contacts_update_params.rbi +555 -0
- data/rbi/amocrm/models/v4_contacts_update_response.rbi +234 -0
- data/rbi/amocrm/models/v4_custom_field_groups_create_params.rbi +86 -0
- data/rbi/amocrm/models/v4_custom_field_groups_create_response.rbi +232 -0
- data/rbi/amocrm/models/v4_custom_field_groups_delete_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_custom_field_groups_delete_by_id_response.rbi +80 -0
- data/rbi/amocrm/models/v4_custom_field_groups_get_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_custom_field_groups_get_by_id_response.rbi +136 -0
- data/rbi/amocrm/models/v4_custom_field_groups_list_params.rbi +52 -0
- data/rbi/amocrm/models/v4_custom_field_groups_list_response.rbi +254 -0
- data/rbi/amocrm/models/v4_custom_field_groups_update_by_id_params.rbi +57 -0
- data/rbi/amocrm/models/v4_custom_field_groups_update_by_id_response.rbi +80 -0
- data/rbi/amocrm/models/v4_custom_fields_create_params.rbi +169 -0
- data/rbi/amocrm/models/v4_custom_fields_create_response.rbi +232 -0
- data/rbi/amocrm/models/v4_custom_fields_delete_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_custom_fields_delete_by_id_response.rbi +78 -0
- data/rbi/amocrm/models/v4_custom_fields_get_by_id_params.rbi +35 -0
- data/rbi/amocrm/models/v4_custom_fields_get_by_id_response.rbi +222 -0
- data/rbi/amocrm/models/v4_custom_fields_list_params.rbi +49 -0
- data/rbi/amocrm/models/v4_custom_fields_list_response.rbi +340 -0
- data/rbi/amocrm/models/v4_custom_fields_update_by_id_params.rbi +143 -0
- data/rbi/amocrm/models/v4_custom_fields_update_by_id_response.rbi +78 -0
- data/rbi/amocrm/models/v4_custom_fields_update_params.rbi +172 -0
- data/rbi/amocrm/models/v4_custom_fields_update_response.rbi +78 -0
- data/rbi/amocrm/models/v4_customer_bonus_points_change_params.rbi +46 -0
- data/rbi/amocrm/models/v4_customer_bonus_points_change_response.rbi +104 -0
- data/rbi/amocrm/models/v4_customer_segments_create_params.rbi +268 -0
- data/rbi/amocrm/models/v4_customer_segments_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_customer_segments_delete_by_id_params.rbi +30 -0
- data/rbi/amocrm/models/v4_customer_segments_delete_by_id_response.rbi +80 -0
- data/rbi/amocrm/models/v4_customer_segments_get_by_id_params.rbi +30 -0
- data/rbi/amocrm/models/v4_customer_segments_get_by_id_response.rbi +329 -0
- data/rbi/amocrm/models/v4_customer_segments_list_params.rbi +27 -0
- data/rbi/amocrm/models/v4_customer_segments_list_response.rbi +439 -0
- data/rbi/amocrm/models/v4_customer_segments_update_by_id_params.rbi +232 -0
- data/rbi/amocrm/models/v4_customer_segments_update_by_id_response.rbi +80 -0
- data/rbi/amocrm/models/v4_customer_statuses_create_params.rbi +91 -0
- data/rbi/amocrm/models/v4_customer_statuses_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_customer_statuses_delete_by_id_params.rbi +30 -0
- data/rbi/amocrm/models/v4_customer_statuses_delete_by_id_response.rbi +80 -0
- data/rbi/amocrm/models/v4_customer_statuses_get_by_id_params.rbi +30 -0
- data/rbi/amocrm/models/v4_customer_statuses_get_by_id_response.rbi +144 -0
- data/rbi/amocrm/models/v4_customer_statuses_list_params.rbi +27 -0
- data/rbi/amocrm/models/v4_customer_statuses_list_response.rbi +254 -0
- data/rbi/amocrm/models/v4_customer_statuses_update_by_id_params.rbi +60 -0
- data/rbi/amocrm/models/v4_customer_statuses_update_by_id_response.rbi +80 -0
- data/rbi/amocrm/models/v4_customer_transactions_create_params.rbi +121 -0
- data/rbi/amocrm/models/v4_customer_transactions_create_response.rbi +236 -0
- data/rbi/amocrm/models/v4_customer_transactions_delete_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_customer_transactions_delete_by_id_response.rbi +80 -0
- data/rbi/amocrm/models/v4_customer_transactions_list_by_customer_params.rbi +60 -0
- data/rbi/amocrm/models/v4_customer_transactions_list_by_customer_response.rbi +288 -0
- data/rbi/amocrm/models/v4_customer_transactions_list_params.rbi +60 -0
- data/rbi/amocrm/models/v4_customer_transactions_list_response.rbi +286 -0
- data/rbi/amocrm/models/v4_customers_create_params.rbi +571 -0
- data/rbi/amocrm/models/v4_customers_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_customers_get_by_id_params.rbi +43 -0
- data/rbi/amocrm/models/v4_customers_get_by_id_response.rbi +824 -0
- data/rbi/amocrm/models/v4_customers_list_params.rbi +105 -0
- data/rbi/amocrm/models/v4_customers_list_response.rbi +950 -0
- data/rbi/amocrm/models/v4_customers_mode_set_mode_params.rbi +72 -0
- data/rbi/amocrm/models/v4_customers_mode_set_mode_response.rbi +167 -0
- data/rbi/amocrm/models/v4_customers_update_by_id_params.rbi +559 -0
- data/rbi/amocrm/models/v4_customers_update_by_id_response.rbi +234 -0
- data/rbi/amocrm/models/v4_customers_update_params.rbi +615 -0
- data/rbi/amocrm/models/v4_customers_update_response.rbi +234 -0
- data/rbi/amocrm/models/v4_entity_followers_add_params.rbi +106 -0
- data/rbi/amocrm/models/v4_entity_followers_add_response.rbi +220 -0
- data/rbi/amocrm/models/v4_entity_followers_list_params.rbi +97 -0
- data/rbi/amocrm/models/v4_entity_followers_list_response.rbi +267 -0
- data/rbi/amocrm/models/v4_entity_followers_remove_params.rbi +112 -0
- data/rbi/amocrm/models/v4_entity_followers_remove_response.rbi +112 -0
- data/rbi/amocrm/models/v4_entity_links_link_by_entity_params.rbi +317 -0
- data/rbi/amocrm/models/v4_entity_links_link_by_entity_response.rbi +112 -0
- data/rbi/amocrm/models/v4_entity_links_link_params.rbi +297 -0
- data/rbi/amocrm/models/v4_entity_links_link_response.rbi +112 -0
- data/rbi/amocrm/models/v4_entity_links_list_by_entity_params.rbi +86 -0
- data/rbi/amocrm/models/v4_entity_links_list_by_entity_response.rbi +402 -0
- data/rbi/amocrm/models/v4_entity_links_list_params.rbi +77 -0
- data/rbi/amocrm/models/v4_entity_links_list_response.rbi +402 -0
- data/rbi/amocrm/models/v4_entity_links_unlink_by_entity_params.rbi +318 -0
- data/rbi/amocrm/models/v4_entity_links_unlink_by_entity_response.rbi +114 -0
- data/rbi/amocrm/models/v4_entity_links_unlink_params.rbi +302 -0
- data/rbi/amocrm/models/v4_entity_links_unlink_response.rbi +112 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_create_by_parent_params.rbi +211 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_create_by_parent_response.rbi +262 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_get_by_parent_id_params.rbi +104 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_get_by_parent_id_response.rbi +224 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_list_by_parent_params.rbi +121 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_list_by_parent_response.rbi +342 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_update_by_parent_id_params.rbi +139 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_update_by_parent_id_response.rbi +262 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_update_by_parent_params.rbi +184 -0
- data/rbi/amocrm/models/v4_entity_notes_by_parent_update_by_parent_response.rbi +262 -0
- data/rbi/amocrm/models/v4_entity_notes_create_params.rbi +186 -0
- data/rbi/amocrm/models/v4_entity_notes_create_response.rbi +260 -0
- data/rbi/amocrm/models/v4_entity_notes_get_by_id_params.rbi +88 -0
- data/rbi/amocrm/models/v4_entity_notes_get_by_id_response.rbi +222 -0
- data/rbi/amocrm/models/v4_entity_notes_list_params.rbi +96 -0
- data/rbi/amocrm/models/v4_entity_notes_list_response.rbi +340 -0
- data/rbi/amocrm/models/v4_entity_notes_pin_params.rbi +77 -0
- data/rbi/amocrm/models/v4_entity_notes_pin_response.rbi +112 -0
- data/rbi/amocrm/models/v4_entity_notes_unpin_params.rbi +77 -0
- data/rbi/amocrm/models/v4_entity_notes_unpin_response.rbi +112 -0
- data/rbi/amocrm/models/v4_entity_notes_update_by_id_params.rbi +134 -0
- data/rbi/amocrm/models/v4_entity_notes_update_by_id_response.rbi +260 -0
- data/rbi/amocrm/models/v4_entity_notes_update_params.rbi +159 -0
- data/rbi/amocrm/models/v4_entity_notes_update_response.rbi +260 -0
- data/rbi/amocrm/models/v4_events_get_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_events_get_by_id_response.rbi +186 -0
- data/rbi/amocrm/models/v4_events_list_params.rbi +71 -0
- data/rbi/amocrm/models/v4_events_list_response.rbi +304 -0
- data/rbi/amocrm/models/v4_events_list_types_params.rbi +38 -0
- data/rbi/amocrm/models/v4_events_list_types_response.rbi +149 -0
- data/rbi/amocrm/models/v4_leads_create_complex_params.rbi +1228 -0
- data/rbi/amocrm/models/v4_leads_create_complex_response.rbi +260 -0
- data/rbi/amocrm/models/v4_leads_create_params.rbi +1196 -0
- data/rbi/amocrm/models/v4_leads_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_leads_get_by_id_params.rbi +43 -0
- data/rbi/amocrm/models/v4_leads_get_by_id_response.rbi +921 -0
- data/rbi/amocrm/models/v4_leads_list_params.rbi +114 -0
- data/rbi/amocrm/models/v4_leads_list_response.rbi +1046 -0
- data/rbi/amocrm/models/v4_leads_update_by_id_params.rbi +1156 -0
- data/rbi/amocrm/models/v4_leads_update_by_id_response.rbi +234 -0
- data/rbi/amocrm/models/v4_leads_update_params.rbi +1214 -0
- data/rbi/amocrm/models/v4_leads_update_response.rbi +234 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_create_params.rbi +175 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_delete_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_delete_by_id_response.rbi +114 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_get_by_id_params.rbi +55 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_get_by_id_response.rbi +318 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_list_params.rbi +43 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_list_response.rbi +428 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_update_by_id_params.rbi +148 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_update_by_id_response.rbi +248 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_update_params.rbi +184 -0
- data/rbi/amocrm/models/v4_pipeline_statuses_update_response.rbi +246 -0
- data/rbi/amocrm/models/v4_pipelines_create_params.rbi +311 -0
- data/rbi/amocrm/models/v4_pipelines_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_pipelines_delete_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_pipelines_delete_by_id_response.rbi +112 -0
- data/rbi/amocrm/models/v4_pipelines_get_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_pipelines_get_by_id_response.rbi +494 -0
- data/rbi/amocrm/models/v4_pipelines_list_params.rbi +27 -0
- data/rbi/amocrm/models/v4_pipelines_list_response.rbi +604 -0
- data/rbi/amocrm/models/v4_pipelines_update_by_id_params.rbi +89 -0
- data/rbi/amocrm/models/v4_pipelines_update_by_id_response.rbi +246 -0
- data/rbi/amocrm/models/v4_pipelines_update_params.rbi +125 -0
- data/rbi/amocrm/models/v4_pipelines_update_response.rbi +246 -0
- data/rbi/amocrm/models/v4_roles_create_params.rbi +289 -0
- data/rbi/amocrm/models/v4_roles_create_response.rbi +589 -0
- data/rbi/amocrm/models/v4_roles_delete_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_roles_delete_by_id_response.rbi +112 -0
- data/rbi/amocrm/models/v4_roles_get_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_roles_get_by_id_response.rbi +454 -0
- data/rbi/amocrm/models/v4_roles_list_params.rbi +57 -0
- data/rbi/amocrm/models/v4_roles_list_response.rbi +602 -0
- data/rbi/amocrm/models/v4_roles_update_by_id_params.rbi +264 -0
- data/rbi/amocrm/models/v4_roles_update_by_id_response.rbi +457 -0
- data/rbi/amocrm/models/v4_short_links_create_params.rbi +35 -0
- data/rbi/amocrm/models/v4_short_links_create_response.rbi +102 -0
- data/rbi/amocrm/models/v4_sources_create_params.rbi +151 -0
- data/rbi/amocrm/models/v4_sources_create_response.rbi +371 -0
- data/rbi/amocrm/models/v4_sources_delete_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_sources_delete_by_id_response.rbi +112 -0
- data/rbi/amocrm/models/v4_sources_delete_params.rbi +59 -0
- data/rbi/amocrm/models/v4_sources_delete_response.rbi +112 -0
- data/rbi/amocrm/models/v4_sources_get_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_sources_get_by_id_response.rbi +242 -0
- data/rbi/amocrm/models/v4_sources_list_params.rbi +137 -0
- data/rbi/amocrm/models/v4_sources_list_response.rbi +362 -0
- data/rbi/amocrm/models/v4_sources_update_by_id_params.rbi +127 -0
- data/rbi/amocrm/models/v4_sources_update_by_id_response.rbi +371 -0
- data/rbi/amocrm/models/v4_sources_update_params.rbi +163 -0
- data/rbi/amocrm/models/v4_sources_update_response.rbi +371 -0
- data/rbi/amocrm/models/v4_tags_create_params.rbi +105 -0
- data/rbi/amocrm/models/v4_tags_create_response.rbi +241 -0
- data/rbi/amocrm/models/v4_tags_list_params.rbi +96 -0
- data/rbi/amocrm/models/v4_tags_list_response.rbi +236 -0
- data/rbi/amocrm/models/v4_talks_close_params.rbi +43 -0
- data/rbi/amocrm/models/v4_talks_close_response.rbi +112 -0
- data/rbi/amocrm/models/v4_talks_get_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_talks_get_by_id_response.rbi +450 -0
- data/rbi/amocrm/models/v4_tasks_create_params.rbi +142 -0
- data/rbi/amocrm/models/v4_tasks_create_response.rbi +234 -0
- data/rbi/amocrm/models/v4_tasks_get_by_id_params.rbi +27 -0
- data/rbi/amocrm/models/v4_tasks_get_by_id_response.rbi +323 -0
- data/rbi/amocrm/models/v4_tasks_list_params.rbi +103 -0
- data/rbi/amocrm/models/v4_tasks_list_response.rbi +441 -0
- data/rbi/amocrm/models/v4_tasks_update_by_id_params.rbi +133 -0
- data/rbi/amocrm/models/v4_tasks_update_by_id_response.rbi +234 -0
- data/rbi/amocrm/models/v4_tasks_update_params.rbi +168 -0
- data/rbi/amocrm/models/v4_tasks_update_response.rbi +234 -0
- data/rbi/amocrm/models/v4_unsorted_leads_accept_params.rbi +57 -0
- data/rbi/amocrm/models/v4_unsorted_leads_accept_response.rbi +429 -0
- data/rbi/amocrm/models/v4_unsorted_leads_create_forms_params.rbi +1901 -0
- data/rbi/amocrm/models/v4_unsorted_leads_create_forms_response.rbi +490 -0
- data/rbi/amocrm/models/v4_unsorted_leads_decline_params.rbi +43 -0
- data/rbi/amocrm/models/v4_unsorted_leads_decline_response.rbi +429 -0
- data/rbi/amocrm/models/v4_users_create_params.rbi +314 -0
- data/rbi/amocrm/models/v4_users_create_response.rbi +1062 -0
- data/rbi/amocrm/models/v4_users_get_by_id_params.rbi +38 -0
- data/rbi/amocrm/models/v4_users_get_by_id_response.rbi +928 -0
- data/rbi/amocrm/models/v4_users_list_params.rbi +57 -0
- data/rbi/amocrm/models/v4_users_list_response.rbi +1075 -0
- data/rbi/amocrm/models/v4_webhooks_list_params.rbi +65 -0
- data/rbi/amocrm/models/v4_webhooks_list_response.rbi +304 -0
- data/rbi/amocrm/models/v4_webhooks_subscribe_params.rbi +51 -0
- data/rbi/amocrm/models/v4_webhooks_subscribe_response.rbi +186 -0
- data/rbi/amocrm/models/v4_webhooks_unsubscribe_params.rbi +35 -0
- data/rbi/amocrm/models/v4_webhooks_unsubscribe_response.rbi +112 -0
- data/rbi/amocrm/models/v4_website_buttons_connect_online_chat_params.rbi +30 -0
- data/rbi/amocrm/models/v4_website_buttons_connect_online_chat_response.rbi +114 -0
- data/rbi/amocrm/models/v4_website_buttons_create_params.rbi +59 -0
- data/rbi/amocrm/models/v4_website_buttons_create_response.rbi +117 -0
- data/rbi/amocrm/models/v4_website_buttons_get_by_source_id_params.rbi +41 -0
- data/rbi/amocrm/models/v4_website_buttons_get_by_source_id_response.rbi +173 -0
- data/rbi/amocrm/models/v4_website_buttons_list_params.rbi +57 -0
- data/rbi/amocrm/models/v4_website_buttons_list_response.rbi +289 -0
- data/rbi/amocrm/models/v4_website_buttons_update_params.rbi +69 -0
- data/rbi/amocrm/models/v4_website_buttons_update_response.rbi +171 -0
- data/rbi/amocrm/models/v4_widget_bot_continue_continue_params.rbi +154 -0
- data/rbi/amocrm/models/v4_widget_bot_continue_continue_response.rbi +114 -0
- data/rbi/amocrm/models/v4_widgets_get_by_code_params.rbi +27 -0
- data/rbi/amocrm/models/v4_widgets_get_by_code_response.rbi +342 -0
- data/rbi/amocrm/models/v4_widgets_install_params.rbi +35 -0
- data/rbi/amocrm/models/v4_widgets_install_response.rbi +342 -0
- data/rbi/amocrm/models/v4_widgets_list_params.rbi +49 -0
- data/rbi/amocrm/models/v4_widgets_list_response.rbi +460 -0
- data/rbi/amocrm/models/v4_widgets_uninstall_params.rbi +27 -0
- data/rbi/amocrm/models/v4_widgets_uninstall_response.rbi +112 -0
- data/rbi/amocrm/models.rbi +317 -1
- data/rbi/amocrm/resources/v2.rbi +22 -0
- data/rbi/amocrm/resources/v4.rbi +2269 -2
- data/sig/amocrm/client.rbs +4 -0
- data/sig/amocrm/internal/transport/base_client.rbs +2 -0
- data/sig/amocrm/models/v2_salesbot_run_params.rbs +46 -0
- data/sig/amocrm/models/v2_salesbot_run_response.rbs +113 -0
- data/sig/amocrm/models/v4_account_get_params.rbs +22 -0
- data/sig/amocrm/models/v4_account_get_response.rbs +479 -0
- data/sig/amocrm/models/v4_calls_create_params.rbs +150 -0
- data/sig/amocrm/models/v4_calls_create_response.rbs +207 -0
- data/sig/amocrm/models/v4_catalog_elements_create_params.rbs +124 -0
- data/sig/amocrm/models/v4_catalog_elements_create_response.rbs +303 -0
- data/sig/amocrm/models/v4_catalog_elements_get_by_id_params.rbs +30 -0
- data/sig/amocrm/models/v4_catalog_elements_get_by_id_response.rbs +243 -0
- data/sig/amocrm/models/v4_catalog_elements_list_params.rbs +59 -0
- data/sig/amocrm/models/v4_catalog_elements_list_response.rbs +303 -0
- data/sig/amocrm/models/v4_catalog_elements_update_by_id_params.rbs +116 -0
- data/sig/amocrm/models/v4_catalog_elements_update_by_id_response.rbs +303 -0
- data/sig/amocrm/models/v4_catalog_elements_update_params.rbs +131 -0
- data/sig/amocrm/models/v4_catalog_elements_update_response.rbs +303 -0
- data/sig/amocrm/models/v4_catalogs_create_params.rbs +90 -0
- data/sig/amocrm/models/v4_catalogs_create_response.rbs +241 -0
- data/sig/amocrm/models/v4_catalogs_get_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_catalogs_get_by_id_response.rbs +185 -0
- data/sig/amocrm/models/v4_catalogs_list_params.rbs +32 -0
- data/sig/amocrm/models/v4_catalogs_list_response.rbs +241 -0
- data/sig/amocrm/models/v4_catalogs_update_by_id_params.rbs +56 -0
- data/sig/amocrm/models/v4_catalogs_update_by_id_response.rbs +241 -0
- data/sig/amocrm/models/v4_catalogs_update_params.rbs +76 -0
- data/sig/amocrm/models/v4_catalogs_update_response.rbs +241 -0
- data/sig/amocrm/models/v4_companies_create_params.rbs +247 -0
- data/sig/amocrm/models/v4_companies_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_companies_get_by_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_companies_get_by_id_response.rbs +366 -0
- data/sig/amocrm/models/v4_companies_list_params.rbs +73 -0
- data/sig/amocrm/models/v4_companies_list_response.rbs +422 -0
- data/sig/amocrm/models/v4_companies_update_by_id_params.rbs +244 -0
- data/sig/amocrm/models/v4_companies_update_by_id_response.rbs +121 -0
- data/sig/amocrm/models/v4_companies_update_params.rbs +270 -0
- data/sig/amocrm/models/v4_companies_update_response.rbs +121 -0
- data/sig/amocrm/models/v4_contact_chats_link_params.rbs +48 -0
- data/sig/amocrm/models/v4_contact_chats_link_response.rbs +122 -0
- data/sig/amocrm/models/v4_contact_chats_list_params.rbs +22 -0
- data/sig/amocrm/models/v4_contact_chats_list_response.rbs +122 -0
- data/sig/amocrm/models/v4_contacts_create_params.rbs +259 -0
- data/sig/amocrm/models/v4_contacts_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_contacts_get_by_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_contacts_get_by_id_response.rbs +394 -0
- data/sig/amocrm/models/v4_contacts_list_params.rbs +73 -0
- data/sig/amocrm/models/v4_contacts_list_response.rbs +450 -0
- data/sig/amocrm/models/v4_contacts_update_by_id_params.rbs +258 -0
- data/sig/amocrm/models/v4_contacts_update_by_id_response.rbs +121 -0
- data/sig/amocrm/models/v4_contacts_update_params.rbs +284 -0
- data/sig/amocrm/models/v4_contacts_update_response.rbs +121 -0
- data/sig/amocrm/models/v4_custom_field_groups_create_params.rbs +46 -0
- data/sig/amocrm/models/v4_custom_field_groups_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_custom_field_groups_delete_by_id_params.rbs +23 -0
- data/sig/amocrm/models/v4_custom_field_groups_delete_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_custom_field_groups_get_by_id_params.rbs +23 -0
- data/sig/amocrm/models/v4_custom_field_groups_get_by_id_response.rbs +83 -0
- data/sig/amocrm/models/v4_custom_field_groups_list_params.rbs +32 -0
- data/sig/amocrm/models/v4_custom_field_groups_list_response.rbs +139 -0
- data/sig/amocrm/models/v4_custom_field_groups_update_by_id_params.rbs +36 -0
- data/sig/amocrm/models/v4_custom_field_groups_update_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_custom_fields_create_params.rbs +116 -0
- data/sig/amocrm/models/v4_custom_fields_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_custom_fields_delete_by_id_params.rbs +23 -0
- data/sig/amocrm/models/v4_custom_fields_delete_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_custom_fields_get_by_id_params.rbs +23 -0
- data/sig/amocrm/models/v4_custom_fields_get_by_id_response.rbs +151 -0
- data/sig/amocrm/models/v4_custom_fields_list_params.rbs +32 -0
- data/sig/amocrm/models/v4_custom_fields_list_response.rbs +207 -0
- data/sig/amocrm/models/v4_custom_fields_update_by_id_params.rbs +103 -0
- data/sig/amocrm/models/v4_custom_fields_update_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_custom_fields_update_params.rbs +118 -0
- data/sig/amocrm/models/v4_custom_fields_update_response.rbs +47 -0
- data/sig/amocrm/models/v4_customer_bonus_points_change_params.rbs +28 -0
- data/sig/amocrm/models/v4_customer_bonus_points_change_response.rbs +60 -0
- data/sig/amocrm/models/v4_customer_segments_create_params.rbs +134 -0
- data/sig/amocrm/models/v4_customer_segments_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_customer_segments_delete_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_customer_segments_delete_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_customer_segments_get_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_customer_segments_get_by_id_response.rbs +177 -0
- data/sig/amocrm/models/v4_customer_segments_list_params.rbs +15 -0
- data/sig/amocrm/models/v4_customer_segments_list_response.rbs +226 -0
- data/sig/amocrm/models/v4_customer_segments_update_by_id_params.rbs +114 -0
- data/sig/amocrm/models/v4_customer_segments_update_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_customer_statuses_create_params.rbs +57 -0
- data/sig/amocrm/models/v4_customer_statuses_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_customer_statuses_delete_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_customer_statuses_delete_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_customer_statuses_get_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_customer_statuses_get_by_id_response.rbs +95 -0
- data/sig/amocrm/models/v4_customer_statuses_list_params.rbs +15 -0
- data/sig/amocrm/models/v4_customer_statuses_list_response.rbs +144 -0
- data/sig/amocrm/models/v4_customer_statuses_update_by_id_params.rbs +38 -0
- data/sig/amocrm/models/v4_customer_statuses_update_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_customer_transactions_create_params.rbs +78 -0
- data/sig/amocrm/models/v4_customer_transactions_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_customer_transactions_delete_by_id_params.rbs +23 -0
- data/sig/amocrm/models/v4_customer_transactions_delete_by_id_response.rbs +47 -0
- data/sig/amocrm/models/v4_customer_transactions_list_by_customer_params.rbs +38 -0
- data/sig/amocrm/models/v4_customer_transactions_list_by_customer_response.rbs +165 -0
- data/sig/amocrm/models/v4_customer_transactions_list_params.rbs +38 -0
- data/sig/amocrm/models/v4_customer_transactions_list_response.rbs +165 -0
- data/sig/amocrm/models/v4_customers_create_params.rbs +300 -0
- data/sig/amocrm/models/v4_customers_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_customers_get_by_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_customers_get_by_id_response.rbs +429 -0
- data/sig/amocrm/models/v4_customers_list_params.rbs +73 -0
- data/sig/amocrm/models/v4_customers_list_response.rbs +485 -0
- data/sig/amocrm/models/v4_customers_mode_set_mode_params.rbs +42 -0
- data/sig/amocrm/models/v4_customers_mode_set_mode_response.rbs +87 -0
- data/sig/amocrm/models/v4_customers_update_by_id_params.rbs +288 -0
- data/sig/amocrm/models/v4_customers_update_by_id_response.rbs +121 -0
- data/sig/amocrm/models/v4_customers_update_params.rbs +312 -0
- data/sig/amocrm/models/v4_customers_update_response.rbs +121 -0
- data/sig/amocrm/models/v4_entity_followers_add_params.rbs +54 -0
- data/sig/amocrm/models/v4_entity_followers_add_response.rbs +116 -0
- data/sig/amocrm/models/v4_entity_followers_list_params.rbs +53 -0
- data/sig/amocrm/models/v4_entity_followers_list_response.rbs +151 -0
- data/sig/amocrm/models/v4_entity_followers_remove_params.rbs +54 -0
- data/sig/amocrm/models/v4_entity_followers_remove_response.rbs +64 -0
- data/sig/amocrm/models/v4_entity_links_link_by_entity_params.rbs +122 -0
- data/sig/amocrm/models/v4_entity_links_link_by_entity_response.rbs +64 -0
- data/sig/amocrm/models/v4_entity_links_link_params.rbs +115 -0
- data/sig/amocrm/models/v4_entity_links_link_response.rbs +64 -0
- data/sig/amocrm/models/v4_entity_links_list_by_entity_params.rbs +39 -0
- data/sig/amocrm/models/v4_entity_links_list_by_entity_response.rbs +176 -0
- data/sig/amocrm/models/v4_entity_links_list_params.rbs +35 -0
- data/sig/amocrm/models/v4_entity_links_list_response.rbs +176 -0
- data/sig/amocrm/models/v4_entity_links_unlink_by_entity_params.rbs +122 -0
- data/sig/amocrm/models/v4_entity_links_unlink_by_entity_response.rbs +64 -0
- data/sig/amocrm/models/v4_entity_links_unlink_params.rbs +115 -0
- data/sig/amocrm/models/v4_entity_links_unlink_response.rbs +64 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_create_by_parent_params.rbs +117 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_create_by_parent_response.rbs +144 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_get_by_parent_id_params.rbs +51 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_get_by_parent_id_response.rbs +151 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_list_by_parent_params.rbs +60 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_list_by_parent_response.rbs +207 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_update_by_parent_id_params.rbs +74 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_update_by_parent_id_response.rbs +144 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_update_by_parent_params.rbs +96 -0
- data/sig/amocrm/models/v4_entity_notes_by_parent_update_by_parent_response.rbs +144 -0
- data/sig/amocrm/models/v4_entity_notes_create_params.rbs +110 -0
- data/sig/amocrm/models/v4_entity_notes_create_response.rbs +144 -0
- data/sig/amocrm/models/v4_entity_notes_get_by_id_params.rbs +46 -0
- data/sig/amocrm/models/v4_entity_notes_get_by_id_response.rbs +151 -0
- data/sig/amocrm/models/v4_entity_notes_list_params.rbs +51 -0
- data/sig/amocrm/models/v4_entity_notes_list_response.rbs +207 -0
- data/sig/amocrm/models/v4_entity_notes_pin_params.rbs +37 -0
- data/sig/amocrm/models/v4_entity_notes_pin_response.rbs +64 -0
- data/sig/amocrm/models/v4_entity_notes_unpin_params.rbs +37 -0
- data/sig/amocrm/models/v4_entity_notes_unpin_response.rbs +64 -0
- data/sig/amocrm/models/v4_entity_notes_update_by_id_params.rbs +74 -0
- data/sig/amocrm/models/v4_entity_notes_update_by_id_response.rbs +144 -0
- data/sig/amocrm/models/v4_entity_notes_update_params.rbs +89 -0
- data/sig/amocrm/models/v4_entity_notes_update_response.rbs +144 -0
- data/sig/amocrm/models/v4_events_get_by_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_events_get_by_id_response.rbs +123 -0
- data/sig/amocrm/models/v4_events_list_params.rbs +44 -0
- data/sig/amocrm/models/v4_events_list_response.rbs +179 -0
- data/sig/amocrm/models/v4_events_list_types_params.rbs +25 -0
- data/sig/amocrm/models/v4_events_list_types_response.rbs +81 -0
- data/sig/amocrm/models/v4_leads_create_complex_params.rbs +603 -0
- data/sig/amocrm/models/v4_leads_create_complex_response.rbs +144 -0
- data/sig/amocrm/models/v4_leads_create_params.rbs +603 -0
- data/sig/amocrm/models/v4_leads_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_leads_get_by_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_leads_get_by_id_response.rbs +482 -0
- data/sig/amocrm/models/v4_leads_list_params.rbs +73 -0
- data/sig/amocrm/models/v4_leads_list_response.rbs +538 -0
- data/sig/amocrm/models/v4_leads_update_by_id_params.rbs +578 -0
- data/sig/amocrm/models/v4_leads_update_by_id_response.rbs +121 -0
- data/sig/amocrm/models/v4_leads_update_params.rbs +602 -0
- data/sig/amocrm/models/v4_leads_update_response.rbs +121 -0
- data/sig/amocrm/models/v4_pipeline_statuses_create_params.rbs +95 -0
- data/sig/amocrm/models/v4_pipeline_statuses_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_pipeline_statuses_delete_by_id_params.rbs +23 -0
- data/sig/amocrm/models/v4_pipeline_statuses_delete_by_id_response.rbs +64 -0
- data/sig/amocrm/models/v4_pipeline_statuses_get_by_id_params.rbs +30 -0
- data/sig/amocrm/models/v4_pipeline_statuses_get_by_id_response.rbs +203 -0
- data/sig/amocrm/models/v4_pipeline_statuses_list_params.rbs +22 -0
- data/sig/amocrm/models/v4_pipeline_statuses_list_response.rbs +252 -0
- data/sig/amocrm/models/v4_pipeline_statuses_update_by_id_params.rbs +87 -0
- data/sig/amocrm/models/v4_pipeline_statuses_update_by_id_response.rbs +137 -0
- data/sig/amocrm/models/v4_pipeline_statuses_update_params.rbs +102 -0
- data/sig/amocrm/models/v4_pipeline_statuses_update_response.rbs +137 -0
- data/sig/amocrm/models/v4_pipelines_create_params.rbs +175 -0
- data/sig/amocrm/models/v4_pipelines_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_pipelines_delete_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_pipelines_delete_by_id_response.rbs +64 -0
- data/sig/amocrm/models/v4_pipelines_get_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_pipelines_get_by_id_response.rbs +301 -0
- data/sig/amocrm/models/v4_pipelines_list_params.rbs +15 -0
- data/sig/amocrm/models/v4_pipelines_list_response.rbs +350 -0
- data/sig/amocrm/models/v4_pipelines_update_by_id_params.rbs +63 -0
- data/sig/amocrm/models/v4_pipelines_update_by_id_response.rbs +137 -0
- data/sig/amocrm/models/v4_pipelines_update_params.rbs +83 -0
- data/sig/amocrm/models/v4_pipelines_update_response.rbs +137 -0
- data/sig/amocrm/models/v4_roles_create_params.rbs +187 -0
- data/sig/amocrm/models/v4_roles_create_response.rbs +325 -0
- data/sig/amocrm/models/v4_roles_delete_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_roles_delete_by_id_response.rbs +64 -0
- data/sig/amocrm/models/v4_roles_get_by_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_roles_get_by_id_response.rbs +262 -0
- data/sig/amocrm/models/v4_roles_list_params.rbs +38 -0
- data/sig/amocrm/models/v4_roles_list_response.rbs +332 -0
- data/sig/amocrm/models/v4_roles_update_by_id_params.rbs +170 -0
- data/sig/amocrm/models/v4_roles_update_by_id_response.rbs +262 -0
- data/sig/amocrm/models/v4_short_links_create_params.rbs +20 -0
- data/sig/amocrm/models/v4_short_links_create_response.rbs +60 -0
- data/sig/amocrm/models/v4_sources_create_params.rbs +91 -0
- data/sig/amocrm/models/v4_sources_create_response.rbs +199 -0
- data/sig/amocrm/models/v4_sources_delete_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_sources_delete_by_id_response.rbs +64 -0
- data/sig/amocrm/models/v4_sources_delete_params.rbs +34 -0
- data/sig/amocrm/models/v4_sources_delete_response.rbs +64 -0
- data/sig/amocrm/models/v4_sources_get_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_sources_get_by_id_response.rbs +136 -0
- data/sig/amocrm/models/v4_sources_list_params.rbs +71 -0
- data/sig/amocrm/models/v4_sources_list_response.rbs +192 -0
- data/sig/amocrm/models/v4_sources_update_by_id_params.rbs +80 -0
- data/sig/amocrm/models/v4_sources_update_by_id_response.rbs +199 -0
- data/sig/amocrm/models/v4_sources_update_params.rbs +100 -0
- data/sig/amocrm/models/v4_sources_update_response.rbs +199 -0
- data/sig/amocrm/models/v4_tags_create_params.rbs +59 -0
- data/sig/amocrm/models/v4_tags_create_response.rbs +132 -0
- data/sig/amocrm/models/v4_tags_list_params.rbs +57 -0
- data/sig/amocrm/models/v4_tags_list_response.rbs +128 -0
- data/sig/amocrm/models/v4_talks_close_params.rbs +25 -0
- data/sig/amocrm/models/v4_talks_close_response.rbs +64 -0
- data/sig/amocrm/models/v4_talks_get_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_talks_get_by_id_response.rbs +248 -0
- data/sig/amocrm/models/v4_tasks_create_params.rbs +97 -0
- data/sig/amocrm/models/v4_tasks_create_response.rbs +121 -0
- data/sig/amocrm/models/v4_tasks_get_by_id_params.rbs +15 -0
- data/sig/amocrm/models/v4_tasks_get_by_id_response.rbs +202 -0
- data/sig/amocrm/models/v4_tasks_list_params.rbs +66 -0
- data/sig/amocrm/models/v4_tasks_list_response.rbs +259 -0
- data/sig/amocrm/models/v4_tasks_update_by_id_params.rbs +91 -0
- data/sig/amocrm/models/v4_tasks_update_by_id_response.rbs +121 -0
- data/sig/amocrm/models/v4_tasks_update_params.rbs +111 -0
- data/sig/amocrm/models/v4_tasks_update_response.rbs +121 -0
- data/sig/amocrm/models/v4_unsorted_leads_accept_params.rbs +32 -0
- data/sig/amocrm/models/v4_unsorted_leads_accept_response.rbs +199 -0
- data/sig/amocrm/models/v4_unsorted_leads_create_forms_params.rbs +916 -0
- data/sig/amocrm/models/v4_unsorted_leads_create_forms_response.rbs +233 -0
- data/sig/amocrm/models/v4_unsorted_leads_decline_params.rbs +25 -0
- data/sig/amocrm/models/v4_unsorted_leads_decline_response.rbs +199 -0
- data/sig/amocrm/models/v4_users_create_params.rbs +204 -0
- data/sig/amocrm/models/v4_users_create_response.rbs +594 -0
- data/sig/amocrm/models/v4_users_get_by_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_users_get_by_id_response.rbs +527 -0
- data/sig/amocrm/models/v4_users_list_params.rbs +38 -0
- data/sig/amocrm/models/v4_users_list_response.rbs +601 -0
- data/sig/amocrm/models/v4_webhooks_list_params.rbs +40 -0
- data/sig/amocrm/models/v4_webhooks_list_response.rbs +179 -0
- data/sig/amocrm/models/v4_webhooks_subscribe_params.rbs +34 -0
- data/sig/amocrm/models/v4_webhooks_subscribe_response.rbs +123 -0
- data/sig/amocrm/models/v4_webhooks_unsubscribe_params.rbs +23 -0
- data/sig/amocrm/models/v4_webhooks_unsubscribe_response.rbs +64 -0
- data/sig/amocrm/models/v4_website_buttons_connect_online_chat_params.rbs +15 -0
- data/sig/amocrm/models/v4_website_buttons_connect_online_chat_response.rbs +64 -0
- data/sig/amocrm/models/v4_website_buttons_create_params.rbs +40 -0
- data/sig/amocrm/models/v4_website_buttons_create_response.rbs +71 -0
- data/sig/amocrm/models/v4_website_buttons_get_by_source_id_params.rbs +22 -0
- data/sig/amocrm/models/v4_website_buttons_get_by_source_id_response.rbs +112 -0
- data/sig/amocrm/models/v4_website_buttons_list_params.rbs +38 -0
- data/sig/amocrm/models/v4_website_buttons_list_response.rbs +168 -0
- data/sig/amocrm/models/v4_website_buttons_update_params.rbs +36 -0
- data/sig/amocrm/models/v4_website_buttons_update_response.rbs +112 -0
- data/sig/amocrm/models/v4_widget_bot_continue_continue_params.rbs +74 -0
- data/sig/amocrm/models/v4_widget_bot_continue_continue_response.rbs +64 -0
- data/sig/amocrm/models/v4_widgets_get_by_code_params.rbs +15 -0
- data/sig/amocrm/models/v4_widgets_get_by_code_response.rbs +194 -0
- data/sig/amocrm/models/v4_widgets_install_params.rbs +20 -0
- data/sig/amocrm/models/v4_widgets_install_response.rbs +194 -0
- data/sig/amocrm/models/v4_widgets_list_params.rbs +32 -0
- data/sig/amocrm/models/v4_widgets_list_response.rbs +250 -0
- data/sig/amocrm/models/v4_widgets_uninstall_params.rbs +15 -0
- data/sig/amocrm/models/v4_widgets_uninstall_response.rbs +64 -0
- data/sig/amocrm/models.rbs +279 -1
- data/sig/amocrm/resources/v2.rbs +12 -0
- data/sig/amocrm/resources/v4.rbs +944 -1
- metadata +844 -25
- data/lib/amocrm/models/v4/leads/unsorted_accept_params.rb +0 -34
- data/lib/amocrm/models/v4/leads/unsorted_accept_response.rb +0 -172
- data/lib/amocrm/models/v4/leads/unsorted_create_forms_params.rb +0 -883
- data/lib/amocrm/models/v4/leads/unsorted_create_forms_response.rb +0 -204
- data/lib/amocrm/models/v4/leads/unsorted_decline_params.rb +0 -26
- data/lib/amocrm/models/v4/leads/unsorted_decline_response.rb +0 -172
- data/lib/amocrm/resources/v4/leads/unsorted.rb +0 -83
- data/lib/amocrm/resources/v4/leads.rb +0 -20
- data/rbi/amocrm/models/v4/leads/unsorted_accept_params.rbi +0 -64
- data/rbi/amocrm/models/v4/leads/unsorted_accept_response.rbi +0 -441
- data/rbi/amocrm/models/v4/leads/unsorted_create_forms_params.rbi +0 -1927
- data/rbi/amocrm/models/v4/leads/unsorted_create_forms_response.rbi +0 -502
- data/rbi/amocrm/models/v4/leads/unsorted_decline_params.rbi +0 -50
- data/rbi/amocrm/models/v4/leads/unsorted_decline_response.rbi +0 -441
- data/rbi/amocrm/resources/v4/leads/unsorted.rbi +0 -67
- data/rbi/amocrm/resources/v4/leads.rbi +0 -17
- data/sig/amocrm/models/v4/leads/unsorted_accept_params.rbs +0 -36
- data/sig/amocrm/models/v4/leads/unsorted_accept_response.rbs +0 -203
- data/sig/amocrm/models/v4/leads/unsorted_create_forms_params.rbs +0 -920
- data/sig/amocrm/models/v4/leads/unsorted_create_forms_response.rbs +0 -237
- data/sig/amocrm/models/v4/leads/unsorted_decline_params.rbs +0 -29
- data/sig/amocrm/models/v4/leads/unsorted_decline_response.rbs +0 -203
- data/sig/amocrm/resources/v4/leads/unsorted.rbs +0 -29
- data/sig/amocrm/resources/v4/leads.rbs +0 -11
data/sig/amocrm/client.rbs
CHANGED
|
@@ -12,8 +12,12 @@ module Amocrm
|
|
|
12
12
|
|
|
13
13
|
attr_reader subdomain: String
|
|
14
14
|
|
|
15
|
+
attr_reader v2: Amocrm::Resources::V2
|
|
16
|
+
|
|
15
17
|
attr_reader v4: Amocrm::Resources::V4
|
|
16
18
|
|
|
19
|
+
private def auth_headers: -> ::Hash[String, String]
|
|
20
|
+
|
|
17
21
|
def initialize: (
|
|
18
22
|
?token: String?,
|
|
19
23
|
?subdomain: String?,
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
module Amocrm
|
|
2
|
+
module Models
|
|
3
|
+
type v2_salesbot_run_params =
|
|
4
|
+
{ body: ::Array[Amocrm::V2SalesbotRunParams::Body] }
|
|
5
|
+
& Amocrm::Internal::Type::request_parameters
|
|
6
|
+
|
|
7
|
+
class V2SalesbotRunParams < Amocrm::Internal::Type::BaseModel
|
|
8
|
+
extend Amocrm::Internal::Type::RequestParameters::Converter
|
|
9
|
+
include Amocrm::Internal::Type::RequestParameters
|
|
10
|
+
|
|
11
|
+
attr_accessor body: ::Array[Amocrm::V2SalesbotRunParams::Body]
|
|
12
|
+
|
|
13
|
+
def initialize: (
|
|
14
|
+
body: ::Array[Amocrm::V2SalesbotRunParams::Body],
|
|
15
|
+
?request_options: Amocrm::request_opts
|
|
16
|
+
) -> void
|
|
17
|
+
|
|
18
|
+
def to_hash: -> {
|
|
19
|
+
body: ::Array[Amocrm::V2SalesbotRunParams::Body],
|
|
20
|
+
request_options: Amocrm::RequestOptions
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
type body = { bot_id: Integer, entity_id: Integer, entity_type: Integer }
|
|
24
|
+
|
|
25
|
+
class Body < Amocrm::Internal::Type::BaseModel
|
|
26
|
+
attr_accessor bot_id: Integer
|
|
27
|
+
|
|
28
|
+
attr_accessor entity_id: Integer
|
|
29
|
+
|
|
30
|
+
attr_accessor entity_type: Integer
|
|
31
|
+
|
|
32
|
+
def initialize: (
|
|
33
|
+
bot_id: Integer,
|
|
34
|
+
entity_id: Integer,
|
|
35
|
+
entity_type: Integer
|
|
36
|
+
) -> void
|
|
37
|
+
|
|
38
|
+
def to_hash: -> {
|
|
39
|
+
bot_id: Integer,
|
|
40
|
+
entity_id: Integer,
|
|
41
|
+
entity_type: Integer
|
|
42
|
+
}
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
module Amocrm
|
|
2
|
+
module Models
|
|
3
|
+
type v2_salesbot_run_response =
|
|
4
|
+
Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse
|
|
5
|
+
| Amocrm::Models::V2SalesbotRunResponse::Problem
|
|
6
|
+
|
|
7
|
+
module V2SalesbotRunResponse
|
|
8
|
+
extend Amocrm::Internal::Type::Union
|
|
9
|
+
|
|
10
|
+
type salesbot_run_response =
|
|
11
|
+
{
|
|
12
|
+
_links: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links,
|
|
13
|
+
success: bool
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
class SalesbotRunResponse < Amocrm::Internal::Type::BaseModel
|
|
17
|
+
attr_reader _links: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links?
|
|
18
|
+
|
|
19
|
+
def _links=: (
|
|
20
|
+
Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links
|
|
21
|
+
) -> Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links
|
|
22
|
+
|
|
23
|
+
attr_reader success: bool?
|
|
24
|
+
|
|
25
|
+
def success=: (bool) -> bool
|
|
26
|
+
|
|
27
|
+
def initialize: (
|
|
28
|
+
?_links: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links,
|
|
29
|
+
?success: bool
|
|
30
|
+
) -> void
|
|
31
|
+
|
|
32
|
+
def to_hash: -> {
|
|
33
|
+
_links: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links,
|
|
34
|
+
success: bool
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
type links =
|
|
38
|
+
{
|
|
39
|
+
self_: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links::Self
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
class Links < Amocrm::Internal::Type::BaseModel
|
|
43
|
+
attr_reader self_: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links::Self?
|
|
44
|
+
|
|
45
|
+
def self_=: (
|
|
46
|
+
Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links::Self
|
|
47
|
+
) -> Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links::Self
|
|
48
|
+
|
|
49
|
+
def initialize: (
|
|
50
|
+
?self_: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links::Self
|
|
51
|
+
) -> void
|
|
52
|
+
|
|
53
|
+
def to_hash: -> {
|
|
54
|
+
self_: Amocrm::Models::V2SalesbotRunResponse::SalesbotRunResponse::Links::Self
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
type self_ = { href: String, method_: String }
|
|
58
|
+
|
|
59
|
+
class Self < Amocrm::Internal::Type::BaseModel
|
|
60
|
+
attr_reader href: String?
|
|
61
|
+
|
|
62
|
+
def href=: (String) -> String
|
|
63
|
+
|
|
64
|
+
attr_reader method_: String?
|
|
65
|
+
|
|
66
|
+
def method_=: (String) -> String
|
|
67
|
+
|
|
68
|
+
def initialize: (?href: String, ?method_: String) -> void
|
|
69
|
+
|
|
70
|
+
def to_hash: -> { href: String, method_: String }
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
type problem =
|
|
76
|
+
{ detail: String, status: Integer, title: String, type: String }
|
|
77
|
+
|
|
78
|
+
class Problem < Amocrm::Internal::Type::BaseModel
|
|
79
|
+
attr_reader detail: String?
|
|
80
|
+
|
|
81
|
+
def detail=: (String) -> String
|
|
82
|
+
|
|
83
|
+
attr_reader status: Integer?
|
|
84
|
+
|
|
85
|
+
def status=: (Integer) -> Integer
|
|
86
|
+
|
|
87
|
+
attr_reader title: String?
|
|
88
|
+
|
|
89
|
+
def title=: (String) -> String
|
|
90
|
+
|
|
91
|
+
attr_reader type: String?
|
|
92
|
+
|
|
93
|
+
def type=: (String) -> String
|
|
94
|
+
|
|
95
|
+
def initialize: (
|
|
96
|
+
?detail: String,
|
|
97
|
+
?status: Integer,
|
|
98
|
+
?title: String,
|
|
99
|
+
?type: String
|
|
100
|
+
) -> void
|
|
101
|
+
|
|
102
|
+
def to_hash: -> {
|
|
103
|
+
detail: String,
|
|
104
|
+
status: Integer,
|
|
105
|
+
title: String,
|
|
106
|
+
type: String
|
|
107
|
+
}
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
def self?.variants: -> ::Array[Amocrm::Models::v2_salesbot_run_response]
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
module Amocrm
|
|
2
|
+
module Models
|
|
3
|
+
type v4_account_get_params =
|
|
4
|
+
{ with: String } & Amocrm::Internal::Type::request_parameters
|
|
5
|
+
|
|
6
|
+
class V4AccountGetParams < Amocrm::Internal::Type::BaseModel
|
|
7
|
+
extend Amocrm::Internal::Type::RequestParameters::Converter
|
|
8
|
+
include Amocrm::Internal::Type::RequestParameters
|
|
9
|
+
|
|
10
|
+
attr_reader with: String?
|
|
11
|
+
|
|
12
|
+
def with=: (String) -> String
|
|
13
|
+
|
|
14
|
+
def initialize: (
|
|
15
|
+
?with: String,
|
|
16
|
+
?request_options: Amocrm::request_opts
|
|
17
|
+
) -> void
|
|
18
|
+
|
|
19
|
+
def to_hash: -> { with: String, request_options: Amocrm::RequestOptions }
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
module Amocrm
|
|
2
|
+
module Models
|
|
3
|
+
type v4_account_get_response =
|
|
4
|
+
Amocrm::Models::V4AccountGetResponse::AccountInfo
|
|
5
|
+
| Amocrm::Models::V4AccountGetResponse::Problem
|
|
6
|
+
|
|
7
|
+
module V4AccountGetResponse
|
|
8
|
+
extend Amocrm::Internal::Type::Union
|
|
9
|
+
|
|
10
|
+
type account_info =
|
|
11
|
+
{
|
|
12
|
+
id: Integer,
|
|
13
|
+
_embedded: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded,
|
|
14
|
+
_links: top,
|
|
15
|
+
amojo_id: String,
|
|
16
|
+
contact_name_display_order: Integer,
|
|
17
|
+
country: String,
|
|
18
|
+
created_at: Integer,
|
|
19
|
+
created_by: Integer,
|
|
20
|
+
currency: String,
|
|
21
|
+
currency_symbol: String,
|
|
22
|
+
current_user_id: Integer,
|
|
23
|
+
customers_mode: Amocrm::Models::V4AccountGetResponse::AccountInfo::customers_mode,
|
|
24
|
+
drive_url: String,
|
|
25
|
+
invoices_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::InvoicesSettings,
|
|
26
|
+
is_api_filter_enabled: bool,
|
|
27
|
+
is_helpbot_enabled: bool,
|
|
28
|
+
is_loss_reason_enabled: bool,
|
|
29
|
+
is_technical_account: bool,
|
|
30
|
+
is_unsorted_on: bool,
|
|
31
|
+
mobile_feature_version: Integer,
|
|
32
|
+
name: String,
|
|
33
|
+
subdomain: String,
|
|
34
|
+
updated_at: Integer,
|
|
35
|
+
updated_by: Integer,
|
|
36
|
+
uuid: String,
|
|
37
|
+
version: Integer
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
class AccountInfo < Amocrm::Internal::Type::BaseModel
|
|
41
|
+
attr_reader id: Integer?
|
|
42
|
+
|
|
43
|
+
def id=: (Integer) -> Integer
|
|
44
|
+
|
|
45
|
+
attr_reader _embedded: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded?
|
|
46
|
+
|
|
47
|
+
def _embedded=: (
|
|
48
|
+
Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded
|
|
49
|
+
) -> Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded
|
|
50
|
+
|
|
51
|
+
attr_reader _links: top?
|
|
52
|
+
|
|
53
|
+
def _links=: (top) -> top
|
|
54
|
+
|
|
55
|
+
attr_reader amojo_id: String?
|
|
56
|
+
|
|
57
|
+
def amojo_id=: (String) -> String
|
|
58
|
+
|
|
59
|
+
attr_reader contact_name_display_order: Integer?
|
|
60
|
+
|
|
61
|
+
def contact_name_display_order=: (Integer) -> Integer
|
|
62
|
+
|
|
63
|
+
attr_reader country: String?
|
|
64
|
+
|
|
65
|
+
def country=: (String) -> String
|
|
66
|
+
|
|
67
|
+
attr_reader created_at: Integer?
|
|
68
|
+
|
|
69
|
+
def created_at=: (Integer) -> Integer
|
|
70
|
+
|
|
71
|
+
attr_reader created_by: Integer?
|
|
72
|
+
|
|
73
|
+
def created_by=: (Integer) -> Integer
|
|
74
|
+
|
|
75
|
+
attr_reader currency: String?
|
|
76
|
+
|
|
77
|
+
def currency=: (String) -> String
|
|
78
|
+
|
|
79
|
+
attr_reader currency_symbol: String?
|
|
80
|
+
|
|
81
|
+
def currency_symbol=: (String) -> String
|
|
82
|
+
|
|
83
|
+
attr_reader current_user_id: Integer?
|
|
84
|
+
|
|
85
|
+
def current_user_id=: (Integer) -> Integer
|
|
86
|
+
|
|
87
|
+
attr_reader customers_mode: Amocrm::Models::V4AccountGetResponse::AccountInfo::customers_mode?
|
|
88
|
+
|
|
89
|
+
def customers_mode=: (
|
|
90
|
+
Amocrm::Models::V4AccountGetResponse::AccountInfo::customers_mode
|
|
91
|
+
) -> Amocrm::Models::V4AccountGetResponse::AccountInfo::customers_mode
|
|
92
|
+
|
|
93
|
+
attr_reader drive_url: String?
|
|
94
|
+
|
|
95
|
+
def drive_url=: (String) -> String
|
|
96
|
+
|
|
97
|
+
attr_reader invoices_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::InvoicesSettings?
|
|
98
|
+
|
|
99
|
+
def invoices_settings=: (
|
|
100
|
+
Amocrm::Models::V4AccountGetResponse::AccountInfo::InvoicesSettings
|
|
101
|
+
) -> Amocrm::Models::V4AccountGetResponse::AccountInfo::InvoicesSettings
|
|
102
|
+
|
|
103
|
+
attr_reader is_api_filter_enabled: bool?
|
|
104
|
+
|
|
105
|
+
def is_api_filter_enabled=: (bool) -> bool
|
|
106
|
+
|
|
107
|
+
attr_reader is_helpbot_enabled: bool?
|
|
108
|
+
|
|
109
|
+
def is_helpbot_enabled=: (bool) -> bool
|
|
110
|
+
|
|
111
|
+
attr_reader is_loss_reason_enabled: bool?
|
|
112
|
+
|
|
113
|
+
def is_loss_reason_enabled=: (bool) -> bool
|
|
114
|
+
|
|
115
|
+
attr_reader is_technical_account: bool?
|
|
116
|
+
|
|
117
|
+
def is_technical_account=: (bool) -> bool
|
|
118
|
+
|
|
119
|
+
attr_reader is_unsorted_on: bool?
|
|
120
|
+
|
|
121
|
+
def is_unsorted_on=: (bool) -> bool
|
|
122
|
+
|
|
123
|
+
attr_reader mobile_feature_version: Integer?
|
|
124
|
+
|
|
125
|
+
def mobile_feature_version=: (Integer) -> Integer
|
|
126
|
+
|
|
127
|
+
attr_reader name: String?
|
|
128
|
+
|
|
129
|
+
def name=: (String) -> String
|
|
130
|
+
|
|
131
|
+
attr_reader subdomain: String?
|
|
132
|
+
|
|
133
|
+
def subdomain=: (String) -> String
|
|
134
|
+
|
|
135
|
+
attr_reader updated_at: Integer?
|
|
136
|
+
|
|
137
|
+
def updated_at=: (Integer) -> Integer
|
|
138
|
+
|
|
139
|
+
attr_reader updated_by: Integer?
|
|
140
|
+
|
|
141
|
+
def updated_by=: (Integer) -> Integer
|
|
142
|
+
|
|
143
|
+
attr_reader uuid: String?
|
|
144
|
+
|
|
145
|
+
def uuid=: (String) -> String
|
|
146
|
+
|
|
147
|
+
attr_reader version: Integer?
|
|
148
|
+
|
|
149
|
+
def version=: (Integer) -> Integer
|
|
150
|
+
|
|
151
|
+
def initialize: (
|
|
152
|
+
?id: Integer,
|
|
153
|
+
?_embedded: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded,
|
|
154
|
+
?_links: top,
|
|
155
|
+
?amojo_id: String,
|
|
156
|
+
?contact_name_display_order: Integer,
|
|
157
|
+
?country: String,
|
|
158
|
+
?created_at: Integer,
|
|
159
|
+
?created_by: Integer,
|
|
160
|
+
?currency: String,
|
|
161
|
+
?currency_symbol: String,
|
|
162
|
+
?current_user_id: Integer,
|
|
163
|
+
?customers_mode: Amocrm::Models::V4AccountGetResponse::AccountInfo::customers_mode,
|
|
164
|
+
?drive_url: String,
|
|
165
|
+
?invoices_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::InvoicesSettings,
|
|
166
|
+
?is_api_filter_enabled: bool,
|
|
167
|
+
?is_helpbot_enabled: bool,
|
|
168
|
+
?is_loss_reason_enabled: bool,
|
|
169
|
+
?is_technical_account: bool,
|
|
170
|
+
?is_unsorted_on: bool,
|
|
171
|
+
?mobile_feature_version: Integer,
|
|
172
|
+
?name: String,
|
|
173
|
+
?subdomain: String,
|
|
174
|
+
?updated_at: Integer,
|
|
175
|
+
?updated_by: Integer,
|
|
176
|
+
?uuid: String,
|
|
177
|
+
?version: Integer
|
|
178
|
+
) -> void
|
|
179
|
+
|
|
180
|
+
def to_hash: -> {
|
|
181
|
+
id: Integer,
|
|
182
|
+
_embedded: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded,
|
|
183
|
+
_links: top,
|
|
184
|
+
amojo_id: String,
|
|
185
|
+
contact_name_display_order: Integer,
|
|
186
|
+
country: String,
|
|
187
|
+
created_at: Integer,
|
|
188
|
+
created_by: Integer,
|
|
189
|
+
currency: String,
|
|
190
|
+
currency_symbol: String,
|
|
191
|
+
current_user_id: Integer,
|
|
192
|
+
customers_mode: Amocrm::Models::V4AccountGetResponse::AccountInfo::customers_mode,
|
|
193
|
+
drive_url: String,
|
|
194
|
+
invoices_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::InvoicesSettings,
|
|
195
|
+
is_api_filter_enabled: bool,
|
|
196
|
+
is_helpbot_enabled: bool,
|
|
197
|
+
is_loss_reason_enabled: bool,
|
|
198
|
+
is_technical_account: bool,
|
|
199
|
+
is_unsorted_on: bool,
|
|
200
|
+
mobile_feature_version: Integer,
|
|
201
|
+
name: String,
|
|
202
|
+
subdomain: String,
|
|
203
|
+
updated_at: Integer,
|
|
204
|
+
updated_by: Integer,
|
|
205
|
+
uuid: String,
|
|
206
|
+
version: Integer
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
type embedded =
|
|
210
|
+
{
|
|
211
|
+
amojo_rights: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::AmojoRights,
|
|
212
|
+
datetime_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::DatetimeSettings,
|
|
213
|
+
task_types: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::TaskType],
|
|
214
|
+
users_groups: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::UsersGroup]
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
class Embedded < Amocrm::Internal::Type::BaseModel
|
|
218
|
+
attr_reader amojo_rights: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::AmojoRights?
|
|
219
|
+
|
|
220
|
+
def amojo_rights=: (
|
|
221
|
+
Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::AmojoRights
|
|
222
|
+
) -> Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::AmojoRights
|
|
223
|
+
|
|
224
|
+
attr_reader datetime_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::DatetimeSettings?
|
|
225
|
+
|
|
226
|
+
def datetime_settings=: (
|
|
227
|
+
Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::DatetimeSettings
|
|
228
|
+
) -> Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::DatetimeSettings
|
|
229
|
+
|
|
230
|
+
attr_reader task_types: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::TaskType]?
|
|
231
|
+
|
|
232
|
+
def task_types=: (
|
|
233
|
+
::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::TaskType]
|
|
234
|
+
) -> ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::TaskType]
|
|
235
|
+
|
|
236
|
+
attr_reader users_groups: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::UsersGroup]?
|
|
237
|
+
|
|
238
|
+
def users_groups=: (
|
|
239
|
+
::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::UsersGroup]
|
|
240
|
+
) -> ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::UsersGroup]
|
|
241
|
+
|
|
242
|
+
def initialize: (
|
|
243
|
+
?amojo_rights: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::AmojoRights,
|
|
244
|
+
?datetime_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::DatetimeSettings,
|
|
245
|
+
?task_types: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::TaskType],
|
|
246
|
+
?users_groups: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::UsersGroup]
|
|
247
|
+
) -> void
|
|
248
|
+
|
|
249
|
+
def to_hash: -> {
|
|
250
|
+
amojo_rights: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::AmojoRights,
|
|
251
|
+
datetime_settings: Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::DatetimeSettings,
|
|
252
|
+
task_types: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::TaskType],
|
|
253
|
+
users_groups: ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::Embedded::UsersGroup]
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
type amojo_rights = { can_create_groups: bool, can_direct: bool }
|
|
257
|
+
|
|
258
|
+
class AmojoRights < Amocrm::Internal::Type::BaseModel
|
|
259
|
+
attr_reader can_create_groups: bool?
|
|
260
|
+
|
|
261
|
+
def can_create_groups=: (bool) -> bool
|
|
262
|
+
|
|
263
|
+
attr_reader can_direct: bool?
|
|
264
|
+
|
|
265
|
+
def can_direct=: (bool) -> bool
|
|
266
|
+
|
|
267
|
+
def initialize: (
|
|
268
|
+
?can_create_groups: bool,
|
|
269
|
+
?can_direct: bool
|
|
270
|
+
) -> void
|
|
271
|
+
|
|
272
|
+
def to_hash: -> { can_create_groups: bool, can_direct: bool }
|
|
273
|
+
end
|
|
274
|
+
|
|
275
|
+
type datetime_settings =
|
|
276
|
+
{
|
|
277
|
+
date_format: String,
|
|
278
|
+
date_pattern: String,
|
|
279
|
+
short_date_pattern: String,
|
|
280
|
+
short_time_pattern: String,
|
|
281
|
+
time_format: String,
|
|
282
|
+
timezone: String,
|
|
283
|
+
timezone_offset: String
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
class DatetimeSettings < Amocrm::Internal::Type::BaseModel
|
|
287
|
+
attr_reader date_format: String?
|
|
288
|
+
|
|
289
|
+
def date_format=: (String) -> String
|
|
290
|
+
|
|
291
|
+
attr_reader date_pattern: String?
|
|
292
|
+
|
|
293
|
+
def date_pattern=: (String) -> String
|
|
294
|
+
|
|
295
|
+
attr_reader short_date_pattern: String?
|
|
296
|
+
|
|
297
|
+
def short_date_pattern=: (String) -> String
|
|
298
|
+
|
|
299
|
+
attr_reader short_time_pattern: String?
|
|
300
|
+
|
|
301
|
+
def short_time_pattern=: (String) -> String
|
|
302
|
+
|
|
303
|
+
attr_reader time_format: String?
|
|
304
|
+
|
|
305
|
+
def time_format=: (String) -> String
|
|
306
|
+
|
|
307
|
+
attr_reader timezone: String?
|
|
308
|
+
|
|
309
|
+
def timezone=: (String) -> String
|
|
310
|
+
|
|
311
|
+
attr_reader timezone_offset: String?
|
|
312
|
+
|
|
313
|
+
def timezone_offset=: (String) -> String
|
|
314
|
+
|
|
315
|
+
def initialize: (
|
|
316
|
+
?date_format: String,
|
|
317
|
+
?date_pattern: String,
|
|
318
|
+
?short_date_pattern: String,
|
|
319
|
+
?short_time_pattern: String,
|
|
320
|
+
?time_format: String,
|
|
321
|
+
?timezone: String,
|
|
322
|
+
?timezone_offset: String
|
|
323
|
+
) -> void
|
|
324
|
+
|
|
325
|
+
def to_hash: -> {
|
|
326
|
+
date_format: String,
|
|
327
|
+
date_pattern: String,
|
|
328
|
+
short_date_pattern: String,
|
|
329
|
+
short_time_pattern: String,
|
|
330
|
+
time_format: String,
|
|
331
|
+
timezone: String,
|
|
332
|
+
timezone_offset: String
|
|
333
|
+
}
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
type task_type =
|
|
337
|
+
{
|
|
338
|
+
id: Integer,
|
|
339
|
+
code: String,
|
|
340
|
+
color: String,
|
|
341
|
+
icon_id: Integer,
|
|
342
|
+
name: String
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
class TaskType < Amocrm::Internal::Type::BaseModel
|
|
346
|
+
attr_reader id: Integer?
|
|
347
|
+
|
|
348
|
+
def id=: (Integer) -> Integer
|
|
349
|
+
|
|
350
|
+
attr_reader code: String?
|
|
351
|
+
|
|
352
|
+
def code=: (String) -> String
|
|
353
|
+
|
|
354
|
+
attr_reader color: String?
|
|
355
|
+
|
|
356
|
+
def color=: (String) -> String
|
|
357
|
+
|
|
358
|
+
attr_reader icon_id: Integer?
|
|
359
|
+
|
|
360
|
+
def icon_id=: (Integer) -> Integer
|
|
361
|
+
|
|
362
|
+
attr_reader name: String?
|
|
363
|
+
|
|
364
|
+
def name=: (String) -> String
|
|
365
|
+
|
|
366
|
+
def initialize: (
|
|
367
|
+
?id: Integer,
|
|
368
|
+
?code: String,
|
|
369
|
+
?color: String,
|
|
370
|
+
?icon_id: Integer,
|
|
371
|
+
?name: String
|
|
372
|
+
) -> void
|
|
373
|
+
|
|
374
|
+
def to_hash: -> {
|
|
375
|
+
id: Integer,
|
|
376
|
+
code: String,
|
|
377
|
+
color: String,
|
|
378
|
+
icon_id: Integer,
|
|
379
|
+
name: String
|
|
380
|
+
}
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
type users_group = { id: Integer, name: String, uuid: String }
|
|
384
|
+
|
|
385
|
+
class UsersGroup < Amocrm::Internal::Type::BaseModel
|
|
386
|
+
attr_reader id: Integer?
|
|
387
|
+
|
|
388
|
+
def id=: (Integer) -> Integer
|
|
389
|
+
|
|
390
|
+
attr_reader name: String?
|
|
391
|
+
|
|
392
|
+
def name=: (String) -> String
|
|
393
|
+
|
|
394
|
+
attr_reader uuid: String?
|
|
395
|
+
|
|
396
|
+
def uuid=: (String) -> String
|
|
397
|
+
|
|
398
|
+
def initialize: (?id: Integer, ?name: String, ?uuid: String) -> void
|
|
399
|
+
|
|
400
|
+
def to_hash: -> { id: Integer, name: String, uuid: String }
|
|
401
|
+
end
|
|
402
|
+
end
|
|
403
|
+
|
|
404
|
+
type customers_mode =
|
|
405
|
+
:periodicity
|
|
406
|
+
| :dynamic
|
|
407
|
+
| :segments
|
|
408
|
+
| :disabled
|
|
409
|
+
| :unavailable
|
|
410
|
+
| String
|
|
411
|
+
|
|
412
|
+
module CustomersMode
|
|
413
|
+
extend Amocrm::Internal::Type::Union
|
|
414
|
+
|
|
415
|
+
def self?.variants: -> ::Array[Amocrm::Models::V4AccountGetResponse::AccountInfo::customers_mode]
|
|
416
|
+
|
|
417
|
+
PERIODICITY: :periodicity
|
|
418
|
+
DYNAMIC: :dynamic
|
|
419
|
+
SEGMENTS: :segments
|
|
420
|
+
DISABLED: :disabled
|
|
421
|
+
UNAVAILABLE: :unavailable
|
|
422
|
+
end
|
|
423
|
+
|
|
424
|
+
type invoices_settings = { invoices_catalog_id: Integer, lang: String }
|
|
425
|
+
|
|
426
|
+
class InvoicesSettings < Amocrm::Internal::Type::BaseModel
|
|
427
|
+
attr_reader invoices_catalog_id: Integer?
|
|
428
|
+
|
|
429
|
+
def invoices_catalog_id=: (Integer) -> Integer
|
|
430
|
+
|
|
431
|
+
attr_reader lang: String?
|
|
432
|
+
|
|
433
|
+
def lang=: (String) -> String
|
|
434
|
+
|
|
435
|
+
def initialize: (?invoices_catalog_id: Integer, ?lang: String) -> void
|
|
436
|
+
|
|
437
|
+
def to_hash: -> { invoices_catalog_id: Integer, lang: String }
|
|
438
|
+
end
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
type problem =
|
|
442
|
+
{ detail: String, status: Integer, title: String, type: String }
|
|
443
|
+
|
|
444
|
+
class Problem < Amocrm::Internal::Type::BaseModel
|
|
445
|
+
attr_reader detail: String?
|
|
446
|
+
|
|
447
|
+
def detail=: (String) -> String
|
|
448
|
+
|
|
449
|
+
attr_reader status: Integer?
|
|
450
|
+
|
|
451
|
+
def status=: (Integer) -> Integer
|
|
452
|
+
|
|
453
|
+
attr_reader title: String?
|
|
454
|
+
|
|
455
|
+
def title=: (String) -> String
|
|
456
|
+
|
|
457
|
+
attr_reader type: String?
|
|
458
|
+
|
|
459
|
+
def type=: (String) -> String
|
|
460
|
+
|
|
461
|
+
def initialize: (
|
|
462
|
+
?detail: String,
|
|
463
|
+
?status: Integer,
|
|
464
|
+
?title: String,
|
|
465
|
+
?type: String
|
|
466
|
+
) -> void
|
|
467
|
+
|
|
468
|
+
def to_hash: -> {
|
|
469
|
+
detail: String,
|
|
470
|
+
status: Integer,
|
|
471
|
+
title: String,
|
|
472
|
+
type: String
|
|
473
|
+
}
|
|
474
|
+
end
|
|
475
|
+
|
|
476
|
+
def self?.variants: -> ::Array[Amocrm::Models::v4_account_get_response]
|
|
477
|
+
end
|
|
478
|
+
end
|
|
479
|
+
end
|