composio 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +93 -0
- data/README.md +1779 -0
- data/Rakefile +10 -0
- data/composio.gemspec +39 -0
- data/header.png +0 -0
- data/lib/composio/api/actions_api.rb +1062 -0
- data/lib/composio/api/api_keys_api.rb +268 -0
- data/lib/composio/api/apps_api.rb +266 -0
- data/lib/composio/api/auth_api.rb +370 -0
- data/lib/composio/api/cli_api.rb +266 -0
- data/lib/composio/api/connections_api.rb +591 -0
- data/lib/composio/api/integrations_api.rb +578 -0
- data/lib/composio/api/logs_api.rb +166 -0
- data/lib/composio/api/metadata_api.rb +180 -0
- data/lib/composio/api/team_api.rb +188 -0
- data/lib/composio/api/triggers_api.rb +1222 -0
- data/lib/composio/api_client.rb +436 -0
- data/lib/composio/api_client_custom.rb +14 -0
- data/lib/composio/api_error.rb +53 -0
- data/lib/composio/configuration.rb +330 -0
- data/lib/composio/models/action_details.rb +357 -0
- data/lib/composio/models/action_details_minimal.rb +329 -0
- data/lib/composio/models/action_execution_req_dto.rb +260 -0
- data/lib/composio/models/action_execution_res_dto.rb +238 -0
- data/lib/composio/models/action_log_data.rb +345 -0
- data/lib/composio/models/action_metadata.rb +402 -0
- data/lib/composio/models/action_metadata_type.rb +101 -0
- data/lib/composio/models/actions_controller_v1.rb +222 -0
- data/lib/composio/models/actions_list_response_dto.rb +250 -0
- data/lib/composio/models/actions_minimal_list_response_dto.rb +250 -0
- data/lib/composio/models/actions_query_dto.rb +300 -0
- data/lib/composio/models/active_trigger_instance.rb +311 -0
- data/lib/composio/models/active_triggers_res_dto.rb +238 -0
- data/lib/composio/models/add_repo_url_req_dto.rb +221 -0
- data/lib/composio/models/add_repo_url_res_dto.rb +221 -0
- data/lib/composio/models/add_tools_req_dto.rb +251 -0
- data/lib/composio/models/add_tools_request_dto.rb +251 -0
- data/lib/composio/models/api_key_res_dto.rb +323 -0
- data/lib/composio/models/app_info_response_dto.rb +323 -0
- data/lib/composio/models/app_list_res_dto.rb +238 -0
- data/lib/composio/models/app_query_dto.rb +216 -0
- data/lib/composio/models/auth_config_dto.rb +229 -0
- data/lib/composio/models/cli_query_dto.rb +231 -0
- data/lib/composio/models/connected_account_response_dto.rb +331 -0
- data/lib/composio/models/connection_params.rb +395 -0
- data/lib/composio/models/connection_params_for_account.rb +323 -0
- data/lib/composio/models/connection_params_headers.rb +224 -0
- data/lib/composio/models/connection_with_app_data.rb +358 -0
- data/lib/composio/models/connection_with_app_data_created_at.rb +101 -0
- data/lib/composio/models/connector_list_item_dto.rb +376 -0
- data/lib/composio/models/connector_list_item_dto_created_at.rb +102 -0
- data/lib/composio/models/connector_list_item_dto_updated_at.rb +102 -0
- data/lib/composio/models/create_connector_payload_dto.rb +274 -0
- data/lib/composio/models/create_connector_payload_dto_use_composio_auth.rb +226 -0
- data/lib/composio/models/delete_api_key_req_dto.rb +221 -0
- data/lib/composio/models/delete_api_key_response_dto.rb +221 -0
- data/lib/composio/models/delete_row_apidto.rb +236 -0
- data/lib/composio/models/delete_tools_req_dto.rb +221 -0
- data/lib/composio/models/delete_tools_res_dto.rb +221 -0
- data/lib/composio/models/direct_execute_req_dto.rb +262 -0
- data/lib/composio/models/enable_trigger_body_dto.rb +221 -0
- data/lib/composio/models/enable_trigger_params_dto.rb +236 -0
- data/lib/composio/models/execute_action_res_dto.rb +236 -0
- data/lib/composio/models/generate_api_key_req_dto.rb +221 -0
- data/lib/composio/models/generate_cli_session_req_dto.rb +221 -0
- data/lib/composio/models/generate_cli_session_res_dto.rb +221 -0
- data/lib/composio/models/get_active_triggers_query_dto.rb +276 -0
- data/lib/composio/models/get_cli_session_res_dto.rb +236 -0
- data/lib/composio/models/get_connections_query_dto.rb +287 -0
- data/lib/composio/models/get_connections_response_dto.rb +250 -0
- data/lib/composio/models/get_connections_result.rb +236 -0
- data/lib/composio/models/get_connector_info_res_dto.rb +417 -0
- data/lib/composio/models/get_connector_list_res_dto.rb +253 -0
- data/lib/composio/models/get_logs_dto.rb +288 -0
- data/lib/composio/models/get_logs_query_dto.rb +246 -0
- data/lib/composio/models/get_trigger_params_dto.rb +221 -0
- data/lib/composio/models/get_trigger_response_dto.rb +230 -0
- data/lib/composio/models/handle_trigger_body_dto.rb +221 -0
- data/lib/composio/models/handle_trigger_params_dto.rb +236 -0
- data/lib/composio/models/identify_client_req_dto.rb +231 -0
- data/lib/composio/models/identify_client_res_dto.rb +251 -0
- data/lib/composio/models/initiate_connection_payload_dto.rb +281 -0
- data/lib/composio/models/initiate_connection_response.rb +272 -0
- data/lib/composio/models/invite_member_req_dto.rb +251 -0
- data/lib/composio/models/job_status.rb +37 -0
- data/lib/composio/models/list_triggers_query_dto.rb +246 -0
- data/lib/composio/models/logout_res_dto.rb +221 -0
- data/lib/composio/models/logs_res_dto.rb +233 -0
- data/lib/composio/models/magic_link_req_dto.rb +236 -0
- data/lib/composio/models/magic_link_res_dto.rb +220 -0
- data/lib/composio/models/member_res_dto.rb +305 -0
- data/lib/composio/models/meta.rb +220 -0
- data/lib/composio/models/meta_app.rb +220 -0
- data/lib/composio/models/metadata_query_dto.rb +221 -0
- data/lib/composio/models/metadata_req_dto.rb +232 -0
- data/lib/composio/models/o_auth2_callback_query_dto.rb +220 -0
- data/lib/composio/models/open_api_spec_list_res_dto.rb +436 -0
- data/lib/composio/models/page_info.rb +338 -0
- data/lib/composio/models/page_info_dto.rb +248 -0
- data/lib/composio/models/patch_connector_req_dto.rb +226 -0
- data/lib/composio/models/patch_connector_res_dto.rb +221 -0
- data/lib/composio/models/proxy_execution_req_dto.rb +234 -0
- data/lib/composio/models/redirect_uri_dto.rb +215 -0
- data/lib/composio/models/set_callback_url_body_dto.rb +221 -0
- data/lib/composio/models/single_app_info_res_dto.rb +394 -0
- data/lib/composio/models/single_trigger_res_dto.rb +336 -0
- data/lib/composio/models/status.rb +37 -0
- data/lib/composio/models/switch_trigger_status_body_dto.rb +221 -0
- data/lib/composio/models/switch_trigger_status_params_dto.rb +221 -0
- data/lib/composio/models/time.rb +41 -0
- data/lib/composio/models/toggle_connected_account_response_dto.rb +220 -0
- data/lib/composio/models/toggle_trigger_state_response_dto.rb +220 -0
- data/lib/composio/models/tools_execute_req_dto.rb +275 -0
- data/lib/composio/models/track_client_req_dto.rb +240 -0
- data/lib/composio/models/track_client_res_dto.rb +221 -0
- data/lib/composio/models/trigger_config.rb +237 -0
- data/lib/composio/models/trigger_instance_params_dto.rb +221 -0
- data/lib/composio/models/trigger_log_data.rb +345 -0
- data/lib/composio/models/trigger_log_item_dto.rb +336 -0
- data/lib/composio/models/trigger_logs_res_dto.rb +236 -0
- data/lib/composio/models/trigger_metadata.rb +402 -0
- data/lib/composio/models/trigger_metadata_dto.rb +347 -0
- data/lib/composio/models/trigger_metadata_type.rb +101 -0
- data/lib/composio/models/trigger_res_dto.rb +361 -0
- data/lib/composio/models/trigger_response_dto.rb +241 -0
- data/lib/composio/models/trigger_toggle_info_response_dto.rb +221 -0
- data/lib/composio/models/triggers_enabled_toggle_req_dto.rb +221 -0
- data/lib/composio/models/triggers_enabled_toggle_res_dto.rb +221 -0
- data/lib/composio/models/type.rb +37 -0
- data/lib/composio/models/user_git_user_info.rb +230 -0
- data/lib/composio/models/verify_cli_code_res_dto.rb +251 -0
- data/lib/composio/models/verify_magic_link_data_dto.rb +263 -0
- data/lib/composio/models/verify_magic_link_req_dto.rb +221 -0
- data/lib/composio/models/verify_magic_link_res_dto.rb +230 -0
- data/lib/composio/models/webhook_url_response_dto.rb +231 -0
- data/lib/composio/version.rb +11 -0
- data/lib/composio.rb +214 -0
- data/spec/api/actions_api_spec.rb +164 -0
- data/spec/api/api_keys_api_spec.rb +61 -0
- data/spec/api/apps_api_spec.rb +63 -0
- data/spec/api/auth_api_spec.rb +73 -0
- data/spec/api/cli_api_spec.rb +63 -0
- data/spec/api/connections_api_spec.rb +103 -0
- data/spec/api/integrations_api_spec.rb +96 -0
- data/spec/api/logs_api_spec.rb +48 -0
- data/spec/api/metadata_api_spec.rb +50 -0
- data/spec/api/team_api_spec.rb +50 -0
- data/spec/api/triggers_api_spec.rb +188 -0
- data/spec/api_client_spec.rb +191 -0
- data/spec/configuration_spec.rb +38 -0
- data/spec/models/action_details_minimal_spec.rb +76 -0
- data/spec/models/action_details_spec.rb +88 -0
- data/spec/models/action_execution_req_dto_spec.rb +58 -0
- data/spec/models/action_execution_res_dto_spec.rb +40 -0
- data/spec/models/action_log_data_spec.rb +70 -0
- data/spec/models/action_metadata_spec.rb +88 -0
- data/spec/models/action_metadata_type_spec.rb +25 -0
- data/spec/models/actions_controller_v1_spec.rb +28 -0
- data/spec/models/actions_list_response_dto_spec.rb +40 -0
- data/spec/models/actions_minimal_list_response_dto_spec.rb +40 -0
- data/spec/models/actions_query_dto_spec.rb +82 -0
- data/spec/models/active_trigger_instance_spec.rb +70 -0
- data/spec/models/active_triggers_res_dto_spec.rb +34 -0
- data/spec/models/add_repo_url_req_dto_spec.rb +28 -0
- data/spec/models/add_repo_url_res_dto_spec.rb +28 -0
- data/spec/models/add_tools_req_dto_spec.rb +40 -0
- data/spec/models/add_tools_request_dto_spec.rb +40 -0
- data/spec/models/api_key_res_dto_spec.rb +52 -0
- data/spec/models/app_info_response_dto_spec.rb +70 -0
- data/spec/models/app_list_res_dto_spec.rb +34 -0
- data/spec/models/app_query_dto_spec.rb +28 -0
- data/spec/models/auth_config_dto_spec.rb +34 -0
- data/spec/models/cli_query_dto_spec.rb +34 -0
- data/spec/models/connected_account_response_dto_spec.rb +82 -0
- data/spec/models/connection_params_for_account_spec.rb +100 -0
- data/spec/models/connection_params_headers_spec.rb +34 -0
- data/spec/models/connection_params_spec.rb +118 -0
- data/spec/models/connection_with_app_data_created_at_spec.rb +25 -0
- data/spec/models/connection_with_app_data_spec.rb +100 -0
- data/spec/models/connector_list_item_dto_created_at_spec.rb +25 -0
- data/spec/models/connector_list_item_dto_spec.rb +94 -0
- data/spec/models/connector_list_item_dto_updated_at_spec.rb +25 -0
- data/spec/models/create_connector_payload_dto_spec.rb +58 -0
- data/spec/models/create_connector_payload_dto_use_composio_auth_spec.rb +22 -0
- data/spec/models/delete_api_key_req_dto_spec.rb +28 -0
- data/spec/models/delete_api_key_response_dto_spec.rb +28 -0
- data/spec/models/delete_row_apidto_spec.rb +34 -0
- data/spec/models/delete_tools_req_dto_spec.rb +28 -0
- data/spec/models/delete_tools_res_dto_spec.rb +28 -0
- data/spec/models/direct_execute_req_dto_spec.rb +46 -0
- data/spec/models/enable_trigger_body_dto_spec.rb +28 -0
- data/spec/models/enable_trigger_params_dto_spec.rb +34 -0
- data/spec/models/execute_action_res_dto_spec.rb +34 -0
- data/spec/models/generate_api_key_req_dto_spec.rb +28 -0
- data/spec/models/generate_cli_session_req_dto_spec.rb +28 -0
- data/spec/models/generate_cli_session_res_dto_spec.rb +28 -0
- data/spec/models/get_active_triggers_query_dto_spec.rb +64 -0
- data/spec/models/get_cli_session_res_dto_spec.rb +34 -0
- data/spec/models/get_connections_query_dto_spec.rb +76 -0
- data/spec/models/get_connections_response_dto_spec.rb +40 -0
- data/spec/models/get_connections_result_spec.rb +34 -0
- data/spec/models/get_connector_info_res_dto_spec.rb +106 -0
- data/spec/models/get_connector_list_res_dto_spec.rb +40 -0
- data/spec/models/get_logs_dto_spec.rb +70 -0
- data/spec/models/get_logs_query_dto_spec.rb +46 -0
- data/spec/models/get_trigger_params_dto_spec.rb +28 -0
- data/spec/models/get_trigger_response_dto_spec.rb +34 -0
- data/spec/models/handle_trigger_body_dto_spec.rb +28 -0
- data/spec/models/handle_trigger_params_dto_spec.rb +34 -0
- data/spec/models/identify_client_req_dto_spec.rb +34 -0
- data/spec/models/identify_client_res_dto_spec.rb +40 -0
- data/spec/models/initiate_connection_payload_dto_spec.rb +46 -0
- data/spec/models/initiate_connection_response_spec.rb +34 -0
- data/spec/models/invite_member_req_dto_spec.rb +40 -0
- data/spec/models/job_status_spec.rb +22 -0
- data/spec/models/list_triggers_query_dto_spec.rb +46 -0
- data/spec/models/logout_res_dto_spec.rb +28 -0
- data/spec/models/logs_res_dto_spec.rb +34 -0
- data/spec/models/magic_link_req_dto_spec.rb +34 -0
- data/spec/models/magic_link_res_dto_spec.rb +28 -0
- data/spec/models/member_res_dto_spec.rb +52 -0
- data/spec/models/meta_app_spec.rb +28 -0
- data/spec/models/meta_spec.rb +28 -0
- data/spec/models/metadata_query_dto_spec.rb +28 -0
- data/spec/models/metadata_req_dto_spec.rb +34 -0
- data/spec/models/o_auth2_callback_query_dto_spec.rb +28 -0
- data/spec/models/open_api_spec_list_res_dto_spec.rb +94 -0
- data/spec/models/page_info_dto_spec.rb +40 -0
- data/spec/models/page_info_spec.rb +46 -0
- data/spec/models/patch_connector_req_dto_spec.rb +34 -0
- data/spec/models/patch_connector_res_dto_spec.rb +28 -0
- data/spec/models/proxy_execution_req_dto_spec.rb +34 -0
- data/spec/models/redirect_uri_dto_spec.rb +28 -0
- data/spec/models/set_callback_url_body_dto_spec.rb +28 -0
- data/spec/models/single_app_info_res_dto_spec.rb +118 -0
- data/spec/models/single_trigger_res_dto_spec.rb +76 -0
- data/spec/models/status_spec.rb +22 -0
- data/spec/models/switch_trigger_status_body_dto_spec.rb +28 -0
- data/spec/models/switch_trigger_status_params_dto_spec.rb +28 -0
- data/spec/models/time_spec.rb +22 -0
- data/spec/models/toggle_connected_account_response_dto_spec.rb +28 -0
- data/spec/models/toggle_trigger_state_response_dto_spec.rb +28 -0
- data/spec/models/tools_execute_req_dto_spec.rb +58 -0
- data/spec/models/track_client_req_dto_spec.rb +40 -0
- data/spec/models/track_client_res_dto_spec.rb +28 -0
- data/spec/models/trigger_config_spec.rb +34 -0
- data/spec/models/trigger_instance_params_dto_spec.rb +28 -0
- data/spec/models/trigger_log_data_spec.rb +70 -0
- data/spec/models/trigger_log_item_dto_spec.rb +82 -0
- data/spec/models/trigger_logs_res_dto_spec.rb +34 -0
- data/spec/models/trigger_metadata_dto_spec.rb +82 -0
- data/spec/models/trigger_metadata_spec.rb +94 -0
- data/spec/models/trigger_metadata_type_spec.rb +25 -0
- data/spec/models/trigger_res_dto_spec.rb +100 -0
- data/spec/models/trigger_response_dto_spec.rb +40 -0
- data/spec/models/trigger_toggle_info_response_dto_spec.rb +28 -0
- data/spec/models/triggers_enabled_toggle_req_dto_spec.rb +28 -0
- data/spec/models/triggers_enabled_toggle_res_dto_spec.rb +28 -0
- data/spec/models/type_spec.rb +22 -0
- data/spec/models/user_git_user_info_spec.rb +34 -0
- data/spec/models/verify_cli_code_res_dto_spec.rb +40 -0
- data/spec/models/verify_magic_link_data_dto_spec.rb +46 -0
- data/spec/models/verify_magic_link_req_dto_spec.rb +28 -0
- data/spec/models/verify_magic_link_res_dto_spec.rb +34 -0
- data/spec/models/webhook_url_response_dto_spec.rb +34 -0
- data/spec/simple_test_spec.rb +52 -0
- data/spec/spec_helper.rb +107 -0
- metadata +504 -0
@@ -0,0 +1,330 @@
|
|
1
|
+
=begin
|
2
|
+
#Composio OpenAPI
|
3
|
+
|
4
|
+
#Composio SDK: Equip your agent with high-quality tools and build your real-world usecase
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
module Composio
|
10
|
+
class Configuration
|
11
|
+
# Defines url scheme
|
12
|
+
attr_accessor :scheme
|
13
|
+
|
14
|
+
# Defines url host
|
15
|
+
attr_accessor :host
|
16
|
+
|
17
|
+
# Defines url base path
|
18
|
+
attr_accessor :base_path
|
19
|
+
|
20
|
+
# Define server configuration index
|
21
|
+
attr_accessor :server_index
|
22
|
+
|
23
|
+
# Define server operation configuration index
|
24
|
+
attr_accessor :server_operation_index
|
25
|
+
|
26
|
+
# Default server variables
|
27
|
+
attr_accessor :server_variables
|
28
|
+
|
29
|
+
# Default server operation variables
|
30
|
+
attr_accessor :server_operation_variables
|
31
|
+
|
32
|
+
def api_key=(value)
|
33
|
+
@api_key_store['api_key'] = value
|
34
|
+
end
|
35
|
+
|
36
|
+
# Defines API keys used with API Key authentications.
|
37
|
+
#
|
38
|
+
# @return [Hash] key: parameter name, value: parameter value (API key)
|
39
|
+
#
|
40
|
+
# @example parameter name is "api_key", API key is "xxx" (e.g. "api_key=xxx" in query string)
|
41
|
+
# config.api_key_store['api_key'] = 'xxx'
|
42
|
+
attr_accessor :api_key_store
|
43
|
+
|
44
|
+
# Defines API key prefixes used with API Key authentications.
|
45
|
+
#
|
46
|
+
# @return [Hash] key: parameter name, value: API key prefix
|
47
|
+
#
|
48
|
+
# @example parameter name is "Authorization", API key prefix is "Token" (e.g. "Authorization: Token xxx" in headers)
|
49
|
+
# config.api_key_prefix['api_key'] = 'Token'
|
50
|
+
attr_accessor :api_key_prefix
|
51
|
+
|
52
|
+
# Set this to enable/disable debugging. When enabled (set to true), HTTP request/response
|
53
|
+
# details will be logged with `logger.debug` (see the `logger` attribute).
|
54
|
+
# Default to false.
|
55
|
+
#
|
56
|
+
# @return [true, false]
|
57
|
+
attr_accessor :debugging
|
58
|
+
|
59
|
+
# Defines the logger used for debugging.
|
60
|
+
# Default to `Rails.logger` (when in Rails) or logging to STDOUT.
|
61
|
+
#
|
62
|
+
# @return [#debug]
|
63
|
+
attr_accessor :logger
|
64
|
+
|
65
|
+
# Defines the temporary folder to store downloaded files
|
66
|
+
# (for API endpoints that have file response).
|
67
|
+
# Default to use `Tempfile`.
|
68
|
+
#
|
69
|
+
# @return [String]
|
70
|
+
attr_accessor :temp_folder_path
|
71
|
+
|
72
|
+
# The time limit for HTTP request in seconds.
|
73
|
+
# Default to 0 (never times out).
|
74
|
+
attr_accessor :timeout
|
75
|
+
|
76
|
+
# Set this to false to skip client side validation in the operation.
|
77
|
+
# Default to true.
|
78
|
+
# @return [true, false]
|
79
|
+
attr_accessor :client_side_validation
|
80
|
+
|
81
|
+
### TLS/SSL setting
|
82
|
+
# Set this to false to skip verifying SSL certificate when calling API from https server.
|
83
|
+
# Default to true.
|
84
|
+
#
|
85
|
+
# @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
|
86
|
+
#
|
87
|
+
# @return [true, false]
|
88
|
+
attr_accessor :ssl_verify
|
89
|
+
|
90
|
+
### TLS/SSL setting
|
91
|
+
# Any `OpenSSL::SSL::` constant (see https://ruby-doc.org/stdlib-2.5.1/libdoc/openssl/rdoc/OpenSSL/SSL.html)
|
92
|
+
#
|
93
|
+
# @note Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.
|
94
|
+
#
|
95
|
+
attr_accessor :ssl_verify_mode
|
96
|
+
|
97
|
+
### TLS/SSL setting
|
98
|
+
# Set this to customize the certificate file to verify the peer.
|
99
|
+
#
|
100
|
+
# @return [String] the path to the certificate file
|
101
|
+
attr_accessor :ssl_ca_file
|
102
|
+
|
103
|
+
### TLS/SSL setting
|
104
|
+
# Client certificate file (for client certificate)
|
105
|
+
attr_accessor :ssl_client_cert
|
106
|
+
|
107
|
+
### TLS/SSL setting
|
108
|
+
# Client private key file (for client certificate)
|
109
|
+
attr_accessor :ssl_client_key
|
110
|
+
|
111
|
+
### Proxy setting
|
112
|
+
# HTTP Proxy settings
|
113
|
+
attr_accessor :proxy
|
114
|
+
|
115
|
+
# Set this to customize parameters encoder of array parameter.
|
116
|
+
# Default to nil. Faraday uses NestedParamsEncoder when nil.
|
117
|
+
#
|
118
|
+
# @see The params_encoder option of Faraday. Related source code:
|
119
|
+
# https://github.com/lostisland/faraday/tree/main/lib/faraday/encoders
|
120
|
+
attr_accessor :params_encoder
|
121
|
+
|
122
|
+
|
123
|
+
attr_accessor :inject_format
|
124
|
+
|
125
|
+
attr_accessor :force_ending_format
|
126
|
+
|
127
|
+
def initialize
|
128
|
+
@scheme = 'https'
|
129
|
+
@host = 'backend.composio.dev'
|
130
|
+
@base_path = ''
|
131
|
+
@server_index = 0
|
132
|
+
@server_operation_index = {}
|
133
|
+
@server_variables = {}
|
134
|
+
@server_operation_variables = {}
|
135
|
+
@api_key_store = {}
|
136
|
+
@api_key_prefix = {}
|
137
|
+
@client_side_validation = true
|
138
|
+
@ssl_verify = true
|
139
|
+
@ssl_verify_mode = nil
|
140
|
+
@ssl_ca_file = nil
|
141
|
+
@ssl_client_cert = nil
|
142
|
+
@ssl_client_key = nil
|
143
|
+
@middlewares = Hash.new { |h, k| h[k] = [] }
|
144
|
+
@timeout = 60
|
145
|
+
# return data as binary instead of file
|
146
|
+
@return_binary_data = false
|
147
|
+
@params_encoder = nil
|
148
|
+
@debugging = false
|
149
|
+
@inject_format = false
|
150
|
+
@force_ending_format = false
|
151
|
+
@logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT)
|
152
|
+
|
153
|
+
yield(self) if block_given?
|
154
|
+
end
|
155
|
+
|
156
|
+
# The default Configuration object.
|
157
|
+
def self.default
|
158
|
+
@@default ||= Configuration.new
|
159
|
+
end
|
160
|
+
|
161
|
+
def configure
|
162
|
+
yield(self) if block_given?
|
163
|
+
end
|
164
|
+
|
165
|
+
def scheme=(scheme)
|
166
|
+
# remove :// from scheme
|
167
|
+
@scheme = scheme.sub(/:\/\//, '')
|
168
|
+
end
|
169
|
+
|
170
|
+
def host=(host)
|
171
|
+
# remove http(s):// and anything after a slash
|
172
|
+
@host = host.sub(/https?:\/\//, '').split('/').first
|
173
|
+
|
174
|
+
# try to set @scheme and @base_path if possible
|
175
|
+
begin
|
176
|
+
uri = URI.parse(host)
|
177
|
+
@scheme = uri.scheme
|
178
|
+
@base_path = uri.path
|
179
|
+
rescue InvalidURIError
|
180
|
+
end
|
181
|
+
|
182
|
+
# unset server_index so host is used when getting request url (see ApiClient#build_request_url)
|
183
|
+
@server_index = nil
|
184
|
+
end
|
185
|
+
|
186
|
+
def base_path=(base_path)
|
187
|
+
# Add leading and trailing slashes to base_path
|
188
|
+
@base_path = "/#{base_path}".gsub(/\/+/, '/')
|
189
|
+
@base_path = '' if @base_path == '/'
|
190
|
+
end
|
191
|
+
|
192
|
+
# Returns base URL for specified operation based on server settings
|
193
|
+
def base_url(operation = nil)
|
194
|
+
index = server_operation_index.fetch(operation, server_index)
|
195
|
+
return "#{scheme}://#{[host, base_path].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '') if index == nil
|
196
|
+
|
197
|
+
server_url(index, server_operation_variables.fetch(operation, server_variables), operation_server_settings[operation])
|
198
|
+
end
|
199
|
+
|
200
|
+
# Gets API key (with prefix if set).
|
201
|
+
# @param [String] param_name the parameter name of API key auth
|
202
|
+
def api_key_with_prefix(param_name, param_alias = nil)
|
203
|
+
value = @api_key_store[param_name]
|
204
|
+
value = @api_key_store.fetch(param_alias, value) unless param_alias.nil?
|
205
|
+
return nil if value.nil?
|
206
|
+
if @api_key_prefix[param_name]
|
207
|
+
"#{@api_key_prefix[param_name]}#{value}"
|
208
|
+
else
|
209
|
+
value
|
210
|
+
end
|
211
|
+
end
|
212
|
+
|
213
|
+
# Returns Auth Settings hash for api client.
|
214
|
+
def auth_settings
|
215
|
+
{
|
216
|
+
'api_key' =>
|
217
|
+
{
|
218
|
+
type: 'api_key',
|
219
|
+
in: 'header',
|
220
|
+
key: 'x-api-key',
|
221
|
+
value: api_key_with_prefix('api_key')
|
222
|
+
},
|
223
|
+
}
|
224
|
+
end
|
225
|
+
|
226
|
+
# Returns an array of Server setting
|
227
|
+
def server_settings
|
228
|
+
[
|
229
|
+
{
|
230
|
+
url: "https://backend.composio.dev",
|
231
|
+
description: "No description provided",
|
232
|
+
}
|
233
|
+
]
|
234
|
+
end
|
235
|
+
|
236
|
+
def operation_server_settings
|
237
|
+
{
|
238
|
+
}
|
239
|
+
end
|
240
|
+
|
241
|
+
# Returns URL based on server settings
|
242
|
+
#
|
243
|
+
# @param index array index of the server settings
|
244
|
+
# @param variables hash of variable and the corresponding value
|
245
|
+
def server_url(index, variables = {}, servers = nil)
|
246
|
+
servers = server_settings if servers == nil
|
247
|
+
|
248
|
+
# check array index out of bound
|
249
|
+
if (index < 0 || index >= servers.size)
|
250
|
+
fail ArgumentError, "Invalid index #{index} when selecting the server. Must be less than #{servers.size}"
|
251
|
+
end
|
252
|
+
|
253
|
+
server = servers[index]
|
254
|
+
url = server[:url]
|
255
|
+
|
256
|
+
return url unless server.key? :variables
|
257
|
+
|
258
|
+
# go through variable and assign a value
|
259
|
+
server[:variables].each do |name, variable|
|
260
|
+
if variables.key?(name)
|
261
|
+
if (!server[:variables][name].key?(:enum_values) || server[:variables][name][:enum_values].include?(variables[name]))
|
262
|
+
url.gsub! "{" + name.to_s + "}", variables[name]
|
263
|
+
else
|
264
|
+
fail ArgumentError, "The variable `#{name}` in the server URL has invalid value #{variables[name]}. Must be #{server[:variables][name][:enum_values]}."
|
265
|
+
end
|
266
|
+
else
|
267
|
+
# use default value
|
268
|
+
url.gsub! "{" + name.to_s + "}", server[:variables][name][:default_value]
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
272
|
+
url
|
273
|
+
end
|
274
|
+
|
275
|
+
# Adds middleware to the stack
|
276
|
+
def use(*middleware)
|
277
|
+
set_faraday_middleware(:use, *middleware)
|
278
|
+
end
|
279
|
+
|
280
|
+
# Adds request middleware to the stack
|
281
|
+
def request(*middleware)
|
282
|
+
set_faraday_middleware(:request, *middleware)
|
283
|
+
end
|
284
|
+
|
285
|
+
# Adds response middleware to the stack
|
286
|
+
def response(*middleware)
|
287
|
+
set_faraday_middleware(:response, *middleware)
|
288
|
+
end
|
289
|
+
|
290
|
+
# Adds Faraday middleware setting information to the stack
|
291
|
+
#
|
292
|
+
# @example Use the `set_faraday_middleware` method to set middleware information
|
293
|
+
# config.set_faraday_middleware(:request, :retry, max: 3, methods: [:get, :post], retry_statuses: [503])
|
294
|
+
# config.set_faraday_middleware(:response, :logger, nil, { bodies: true, log_level: :debug })
|
295
|
+
# config.set_faraday_middleware(:use, Faraday::HttpCache, store: Rails.cache, shared_cache: false)
|
296
|
+
# config.set_faraday_middleware(:insert, 0, FaradayMiddleware::FollowRedirects, { standards_compliant: true, limit: 1 })
|
297
|
+
# config.set_faraday_middleware(:swap, 0, Faraday::Response::Logger)
|
298
|
+
# config.set_faraday_middleware(:delete, Faraday::Multipart::Middleware)
|
299
|
+
#
|
300
|
+
# @see https://github.com/lostisland/faraday/blob/v2.3.0/lib/faraday/rack_builder.rb#L92-L143
|
301
|
+
def set_faraday_middleware(operation, key, *args, &block)
|
302
|
+
unless [:request, :response, :use, :insert, :insert_before, :insert_after, :swap, :delete].include?(operation)
|
303
|
+
fail ArgumentError, "Invalid faraday middleware operation #{operation}. Must be" \
|
304
|
+
" :request, :response, :use, :insert, :insert_before, :insert_after, :swap or :delete."
|
305
|
+
end
|
306
|
+
|
307
|
+
@middlewares[operation] << [key, args, block]
|
308
|
+
end
|
309
|
+
ruby2_keywords(:set_faraday_middleware) if respond_to?(:ruby2_keywords, true)
|
310
|
+
|
311
|
+
# Set up middleware on the connection
|
312
|
+
def configure_middleware(connection)
|
313
|
+
return if @middlewares.empty?
|
314
|
+
|
315
|
+
[:request, :response, :use, :insert, :insert_before, :insert_after, :swap].each do |operation|
|
316
|
+
next unless @middlewares.key?(operation)
|
317
|
+
|
318
|
+
@middlewares[operation].each do |key, args, block|
|
319
|
+
connection.builder.send(operation, key, *args, &block)
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
323
|
+
if @middlewares.key?(:delete)
|
324
|
+
@middlewares[:delete].each do |key, _args, _block|
|
325
|
+
connection.builder.delete(key)
|
326
|
+
end
|
327
|
+
end
|
328
|
+
end
|
329
|
+
end
|
330
|
+
end
|
@@ -0,0 +1,357 @@
|
|
1
|
+
=begin
|
2
|
+
#Composio OpenAPI
|
3
|
+
|
4
|
+
#Composio SDK: Equip your agent with high-quality tools and build your real-world usecase
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'date'
|
10
|
+
require 'time'
|
11
|
+
|
12
|
+
module Composio
|
13
|
+
class ActionDetails
|
14
|
+
attr_accessor :tags
|
15
|
+
|
16
|
+
attr_accessor :description
|
17
|
+
|
18
|
+
attr_accessor :parameters
|
19
|
+
|
20
|
+
attr_accessor :response
|
21
|
+
|
22
|
+
attr_accessor :app_id
|
23
|
+
|
24
|
+
attr_accessor :app_key
|
25
|
+
|
26
|
+
attr_accessor :app_name
|
27
|
+
|
28
|
+
attr_accessor :display_name
|
29
|
+
|
30
|
+
attr_accessor :enabled
|
31
|
+
|
32
|
+
attr_accessor :logo
|
33
|
+
|
34
|
+
attr_accessor :name
|
35
|
+
|
36
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
37
|
+
def self.attribute_map
|
38
|
+
{
|
39
|
+
:'tags' => :'tags',
|
40
|
+
:'description' => :'description',
|
41
|
+
:'parameters' => :'parameters',
|
42
|
+
:'response' => :'response',
|
43
|
+
:'app_id' => :'appId',
|
44
|
+
:'app_key' => :'appKey',
|
45
|
+
:'app_name' => :'appName',
|
46
|
+
:'display_name' => :'displayName',
|
47
|
+
:'enabled' => :'enabled',
|
48
|
+
:'logo' => :'logo',
|
49
|
+
:'name' => :'name'
|
50
|
+
}
|
51
|
+
end
|
52
|
+
|
53
|
+
# Returns all the JSON keys this model knows about
|
54
|
+
def self.acceptable_attributes
|
55
|
+
attribute_map.values
|
56
|
+
end
|
57
|
+
|
58
|
+
# Attribute type mapping.
|
59
|
+
def self.openapi_types
|
60
|
+
{
|
61
|
+
:'tags' => :'Array<String>',
|
62
|
+
:'description' => :'String',
|
63
|
+
:'parameters' => :'Object',
|
64
|
+
:'response' => :'Object',
|
65
|
+
:'app_id' => :'String',
|
66
|
+
:'app_key' => :'String',
|
67
|
+
:'app_name' => :'String',
|
68
|
+
:'display_name' => :'String',
|
69
|
+
:'enabled' => :'Boolean',
|
70
|
+
:'logo' => :'String',
|
71
|
+
:'name' => :'String'
|
72
|
+
}
|
73
|
+
end
|
74
|
+
|
75
|
+
# List of attributes with nullable: true
|
76
|
+
def self.openapi_nullable
|
77
|
+
Set.new([
|
78
|
+
])
|
79
|
+
end
|
80
|
+
|
81
|
+
# Initializes the object
|
82
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
83
|
+
def initialize(attributes = {})
|
84
|
+
if (!attributes.is_a?(Hash))
|
85
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Composio::ActionDetails` initialize method"
|
86
|
+
end
|
87
|
+
|
88
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
89
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
90
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
91
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Composio::ActionDetails`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
92
|
+
end
|
93
|
+
h[k.to_sym] = v
|
94
|
+
}
|
95
|
+
|
96
|
+
if attributes.key?(:'tags')
|
97
|
+
if (value = attributes[:'tags']).is_a?(Array)
|
98
|
+
self.tags = value
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
if attributes.key?(:'description')
|
103
|
+
self.description = attributes[:'description']
|
104
|
+
end
|
105
|
+
|
106
|
+
if attributes.key?(:'parameters')
|
107
|
+
self.parameters = attributes[:'parameters']
|
108
|
+
end
|
109
|
+
|
110
|
+
if attributes.key?(:'response')
|
111
|
+
self.response = attributes[:'response']
|
112
|
+
end
|
113
|
+
|
114
|
+
if attributes.key?(:'app_id')
|
115
|
+
self.app_id = attributes[:'app_id']
|
116
|
+
end
|
117
|
+
|
118
|
+
if attributes.key?(:'app_key')
|
119
|
+
self.app_key = attributes[:'app_key']
|
120
|
+
end
|
121
|
+
|
122
|
+
if attributes.key?(:'app_name')
|
123
|
+
self.app_name = attributes[:'app_name']
|
124
|
+
end
|
125
|
+
|
126
|
+
if attributes.key?(:'display_name')
|
127
|
+
self.display_name = attributes[:'display_name']
|
128
|
+
end
|
129
|
+
|
130
|
+
if attributes.key?(:'enabled')
|
131
|
+
self.enabled = attributes[:'enabled']
|
132
|
+
end
|
133
|
+
|
134
|
+
if attributes.key?(:'logo')
|
135
|
+
self.logo = attributes[:'logo']
|
136
|
+
end
|
137
|
+
|
138
|
+
if attributes.key?(:'name')
|
139
|
+
self.name = attributes[:'name']
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
144
|
+
# @return Array for valid properties with the reasons
|
145
|
+
def list_invalid_properties
|
146
|
+
invalid_properties = Array.new
|
147
|
+
if @tags.nil?
|
148
|
+
invalid_properties.push('invalid value for "tags", tags cannot be nil.')
|
149
|
+
end
|
150
|
+
|
151
|
+
if @description.nil?
|
152
|
+
invalid_properties.push('invalid value for "description", description cannot be nil.')
|
153
|
+
end
|
154
|
+
|
155
|
+
if @parameters.nil?
|
156
|
+
invalid_properties.push('invalid value for "parameters", parameters cannot be nil.')
|
157
|
+
end
|
158
|
+
|
159
|
+
if @response.nil?
|
160
|
+
invalid_properties.push('invalid value for "response", response cannot be nil.')
|
161
|
+
end
|
162
|
+
|
163
|
+
if @app_key.nil?
|
164
|
+
invalid_properties.push('invalid value for "app_key", app_key cannot be nil.')
|
165
|
+
end
|
166
|
+
|
167
|
+
if @app_name.nil?
|
168
|
+
invalid_properties.push('invalid value for "app_name", app_name cannot be nil.')
|
169
|
+
end
|
170
|
+
|
171
|
+
if @display_name.nil?
|
172
|
+
invalid_properties.push('invalid value for "display_name", display_name cannot be nil.')
|
173
|
+
end
|
174
|
+
|
175
|
+
if @enabled.nil?
|
176
|
+
invalid_properties.push('invalid value for "enabled", enabled cannot be nil.')
|
177
|
+
end
|
178
|
+
|
179
|
+
if @logo.nil?
|
180
|
+
invalid_properties.push('invalid value for "logo", logo cannot be nil.')
|
181
|
+
end
|
182
|
+
|
183
|
+
if @name.nil?
|
184
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
185
|
+
end
|
186
|
+
|
187
|
+
invalid_properties
|
188
|
+
end
|
189
|
+
|
190
|
+
# Check to see if the all the properties in the model are valid
|
191
|
+
# @return true if the model is valid
|
192
|
+
def valid?
|
193
|
+
return false if @tags.nil?
|
194
|
+
return false if @description.nil?
|
195
|
+
return false if @parameters.nil?
|
196
|
+
return false if @response.nil?
|
197
|
+
return false if @app_key.nil?
|
198
|
+
return false if @app_name.nil?
|
199
|
+
return false if @display_name.nil?
|
200
|
+
return false if @enabled.nil?
|
201
|
+
return false if @logo.nil?
|
202
|
+
return false if @name.nil?
|
203
|
+
true
|
204
|
+
end
|
205
|
+
|
206
|
+
# Checks equality by comparing each attribute.
|
207
|
+
# @param [Object] Object to be compared
|
208
|
+
def ==(o)
|
209
|
+
return true if self.equal?(o)
|
210
|
+
self.class == o.class &&
|
211
|
+
tags == o.tags &&
|
212
|
+
description == o.description &&
|
213
|
+
parameters == o.parameters &&
|
214
|
+
response == o.response &&
|
215
|
+
app_id == o.app_id &&
|
216
|
+
app_key == o.app_key &&
|
217
|
+
app_name == o.app_name &&
|
218
|
+
display_name == o.display_name &&
|
219
|
+
enabled == o.enabled &&
|
220
|
+
logo == o.logo &&
|
221
|
+
name == o.name
|
222
|
+
end
|
223
|
+
|
224
|
+
# @see the `==` method
|
225
|
+
# @param [Object] Object to be compared
|
226
|
+
def eql?(o)
|
227
|
+
self == o
|
228
|
+
end
|
229
|
+
|
230
|
+
# Calculates hash code according to all attributes.
|
231
|
+
# @return [Integer] Hash code
|
232
|
+
def hash
|
233
|
+
[tags, description, parameters, response, app_id, app_key, app_name, display_name, enabled, logo, name].hash
|
234
|
+
end
|
235
|
+
|
236
|
+
# Builds the object from hash
|
237
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
238
|
+
# @return [Object] Returns the model itself
|
239
|
+
def self.build_from_hash(attributes)
|
240
|
+
new.build_from_hash(attributes)
|
241
|
+
end
|
242
|
+
|
243
|
+
# Builds the object from hash
|
244
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
245
|
+
# @return [Object] Returns the model itself
|
246
|
+
def build_from_hash(attributes)
|
247
|
+
return nil unless attributes.is_a?(Hash)
|
248
|
+
attributes = attributes.transform_keys(&:to_sym)
|
249
|
+
self.class.openapi_types.each_pair do |key, type|
|
250
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
251
|
+
self.send("#{key}=", nil)
|
252
|
+
elsif type =~ /\AArray<(.*)>/i
|
253
|
+
# check to ensure the input is an array given that the attribute
|
254
|
+
# is documented as an array but the input is not
|
255
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
256
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
257
|
+
end
|
258
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
259
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
263
|
+
self
|
264
|
+
end
|
265
|
+
|
266
|
+
# Deserializes the data based on type
|
267
|
+
# @param string type Data type
|
268
|
+
# @param string value Value to be deserialized
|
269
|
+
# @return [Object] Deserialized data
|
270
|
+
def _deserialize(type, value)
|
271
|
+
case type.to_sym
|
272
|
+
when :Time
|
273
|
+
Time.parse(value)
|
274
|
+
when :Date
|
275
|
+
Date.parse(value)
|
276
|
+
when :String
|
277
|
+
value.to_s
|
278
|
+
when :Integer
|
279
|
+
value.to_i
|
280
|
+
when :Float
|
281
|
+
value.to_f
|
282
|
+
when :Boolean
|
283
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
284
|
+
true
|
285
|
+
else
|
286
|
+
false
|
287
|
+
end
|
288
|
+
when :Object
|
289
|
+
# generic object (usually a Hash), return directly
|
290
|
+
value
|
291
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
292
|
+
inner_type = Regexp.last_match[:inner_type]
|
293
|
+
value.map { |v| _deserialize(inner_type, v) }
|
294
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
295
|
+
k_type = Regexp.last_match[:k_type]
|
296
|
+
v_type = Regexp.last_match[:v_type]
|
297
|
+
{}.tap do |hash|
|
298
|
+
value.each do |k, v|
|
299
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
300
|
+
end
|
301
|
+
end
|
302
|
+
else # model
|
303
|
+
# models (e.g. Pet) or oneOf
|
304
|
+
klass = Composio.const_get(type)
|
305
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
# Returns the string representation of the object
|
310
|
+
# @return [String] String presentation of the object
|
311
|
+
def to_s
|
312
|
+
to_hash.to_s
|
313
|
+
end
|
314
|
+
|
315
|
+
# to_body is an alias to to_hash (backward compatibility)
|
316
|
+
# @return [Hash] Returns the object in the form of hash
|
317
|
+
def to_body
|
318
|
+
to_hash
|
319
|
+
end
|
320
|
+
|
321
|
+
# Returns the object in the form of hash
|
322
|
+
# @return [Hash] Returns the object in the form of hash
|
323
|
+
def to_hash
|
324
|
+
hash = {}
|
325
|
+
self.class.attribute_map.each_pair do |attr, param|
|
326
|
+
value = self.send(attr)
|
327
|
+
if value.nil?
|
328
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
329
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
330
|
+
end
|
331
|
+
|
332
|
+
hash[param] = _to_hash(value)
|
333
|
+
end
|
334
|
+
hash
|
335
|
+
end
|
336
|
+
|
337
|
+
# Outputs non-array value in the form of hash
|
338
|
+
# For object, use to_hash. Otherwise, just return the value
|
339
|
+
# @param [Object] value Any valid value
|
340
|
+
# @return [Hash] Returns the value in the form of hash
|
341
|
+
def _to_hash(value)
|
342
|
+
if value.is_a?(Array)
|
343
|
+
value.compact.map { |v| _to_hash(v) }
|
344
|
+
elsif value.is_a?(Hash)
|
345
|
+
{}.tap do |hash|
|
346
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
347
|
+
end
|
348
|
+
elsif value.respond_to? :to_hash
|
349
|
+
value.to_hash
|
350
|
+
else
|
351
|
+
value
|
352
|
+
end
|
353
|
+
end
|
354
|
+
|
355
|
+
end
|
356
|
+
|
357
|
+
end
|