composio 0.1.14 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +4 -4
  3. data/README.md +248 -202
  4. data/lib/composio/api/actions_api.rb +191 -4
  5. data/lib/composio/api/admin_api.rb +78 -0
  6. data/lib/composio/api/auth_api.rb +77 -0
  7. data/lib/composio/api/cli_api.rb +266 -0
  8. data/lib/composio/api/connections_api.rb +128 -6
  9. data/lib/composio/api/event_logs_api.rb +0 -318
  10. data/lib/composio/api/integrations_api.rb +8 -4
  11. data/lib/composio/api/logs_api.rb +19 -4
  12. data/lib/composio/api/triggers_api.rb +9 -2
  13. data/lib/composio/models/action_execution_req_dto.rb +31 -4
  14. data/lib/composio/models/actions_query_dto.rb +22 -4
  15. data/lib/composio/models/app_query_dto.rb +1 -1
  16. data/lib/composio/models/client_dto.rb +374 -0
  17. data/lib/composio/models/client_dto_created_at.rb +102 -0
  18. data/lib/composio/models/client_dto_last_subscribed_at.rb +102 -0
  19. data/lib/composio/models/client_dto_updated_at.rb +102 -0
  20. data/lib/composio/models/client_info_res_dto.rb +235 -0
  21. data/lib/composio/models/connection_params.rb +15 -4
  22. data/lib/composio/models/connection_with_app_data.rb +15 -4
  23. data/lib/composio/models/create_connector_payload_dto.rb +12 -7
  24. data/lib/composio/models/expected_input_fields_dto.rb +346 -0
  25. data/lib/composio/models/get_connections_query_dto.rb +15 -4
  26. data/lib/composio/models/get_connector_info_res_dto.rb +1 -1
  27. data/lib/composio/models/get_logs_dto.rb +14 -4
  28. data/lib/composio/models/ingest_data_dto.rb +21 -1
  29. data/lib/composio/models/initiate_connection_payload_dto.rb +28 -18
  30. data/lib/composio/models/list_triggers_query_dto.rb +11 -1
  31. data/lib/composio/models/sdk_error_res_dto.rb +221 -0
  32. data/lib/composio/models/session_info_dto.rb +224 -0
  33. data/lib/composio/models/tools_execute_req_dto.rb +22 -4
  34. data/lib/composio/models/trigger_response_dto.rb +14 -4
  35. data/lib/composio/models/update_connection_labels_payload_dto.rb +222 -0
  36. data/lib/composio/version.rb +1 -1
  37. data/lib/composio.rb +12 -3
  38. data/spec/api/actions_api_spec.rb +25 -0
  39. data/spec/api/admin_api_spec.rb +11 -0
  40. data/spec/api/auth_api_spec.rb +11 -0
  41. data/spec/api/cli_api_spec.rb +63 -0
  42. data/spec/api/connections_api_spec.rb +14 -0
  43. data/spec/api/event_logs_api_spec.rb +0 -43
  44. data/spec/api/logs_api_spec.rb +1 -0
  45. data/spec/api/triggers_api_spec.rb +1 -0
  46. data/spec/models/action_execution_req_dto_spec.rb +18 -0
  47. data/spec/models/actions_query_dto_spec.rb +12 -0
  48. data/spec/models/client_dto_created_at_spec.rb +25 -0
  49. data/spec/models/client_dto_last_subscribed_at_spec.rb +25 -0
  50. data/spec/models/client_dto_spec.rb +100 -0
  51. data/spec/models/client_dto_updated_at_spec.rb +25 -0
  52. data/spec/models/client_info_res_dto_spec.rb +34 -0
  53. data/spec/models/connection_params_spec.rb +6 -0
  54. data/spec/models/connection_with_app_data_spec.rb +6 -0
  55. data/spec/models/create_connector_payload_dto_spec.rb +6 -0
  56. data/spec/models/expected_input_fields_dto_spec.rb +82 -0
  57. data/spec/models/get_connections_query_dto_spec.rb +6 -0
  58. data/spec/models/get_logs_dto_spec.rb +6 -0
  59. data/spec/models/ingest_data_dto_spec.rb +12 -0
  60. data/spec/models/initiate_connection_payload_dto_spec.rb +12 -0
  61. data/spec/models/list_triggers_query_dto_spec.rb +6 -0
  62. data/spec/models/sdk_error_res_dto_spec.rb +28 -0
  63. data/spec/models/session_info_dto_spec.rb +34 -0
  64. data/spec/models/tools_execute_req_dto_spec.rb +12 -0
  65. data/spec/models/trigger_response_dto_spec.rb +6 -0
  66. data/spec/models/update_connection_labels_payload_dto_spec.rb +28 -0
  67. metadata +32 -4
  68. data/spec/api/payment_api_spec.rb +0 -83
@@ -0,0 +1,100 @@
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 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Composio::ClientDTO
14
+ describe Composio::ClientDTO do
15
+ let(:instance) { Composio::ClientDTO.new }
16
+
17
+ describe 'test an instance of ClientDTO' do
18
+ it 'should create an instance of ClientDTO' do
19
+ expect(instance).to be_instance_of(Composio::ClientDTO)
20
+ end
21
+ end
22
+ describe 'test attribute "auto_id"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "id"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "name"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "email"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "created_at"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "updated_at"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "api_key"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "webhook_url"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "event_webhook_url"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "webhook_secret"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "triggers_enabled"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "last_subscribed_at"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
+ end
92
+ end
93
+
94
+ describe 'test attribute "plan"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
+ end
98
+ end
99
+
100
+ end
@@ -0,0 +1,25 @@
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 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Composio::ClientDTOUpdatedAt
14
+ describe Composio::ClientDTOUpdatedAt do
15
+ describe '.openapi_one_of' do
16
+ it 'lists the items referenced in the oneOf array' do
17
+ expect(described_class.openapi_one_of).to_not be_empty
18
+ end
19
+ end
20
+
21
+ describe '.build' do
22
+ it 'returns the correct model' do
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,34 @@
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 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Composio::ClientInfoResDTO
14
+ describe Composio::ClientInfoResDTO do
15
+ let(:instance) { Composio::ClientInfoResDTO.new }
16
+
17
+ describe 'test an instance of ClientInfoResDTO' do
18
+ it 'should create an instance of ClientInfoResDTO' do
19
+ expect(instance).to be_instance_of(Composio::ClientInfoResDTO)
20
+ end
21
+ end
22
+ describe 'test attribute "client"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "api_key"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -121,4 +121,10 @@ describe Composio::ConnectionParams do
121
121
  end
122
122
  end
123
123
 
124
+ describe 'test attribute "labels"' do
125
+ it 'should work' do
126
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
127
+ end
128
+ end
129
+
124
130
  end
@@ -103,4 +103,10 @@ describe Composio::ConnectionWithAppData do
103
103
  end
104
104
  end
105
105
 
106
+ describe 'test attribute "labels"' do
107
+ it 'should work' do
108
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
109
+ end
110
+ end
111
+
106
112
  end
@@ -49,6 +49,12 @@ describe Composio::CreateConnectorPayloadDTO do
49
49
  end
50
50
  end
51
51
 
52
+ describe 'test attribute "app_name"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
52
58
  describe 'test attribute "force_new_integration"' do
53
59
  it 'should work' do
54
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,82 @@
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 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Composio::ExpectedInputFieldsDTO
14
+ describe Composio::ExpectedInputFieldsDTO do
15
+ let(:instance) { Composio::ExpectedInputFieldsDTO.new }
16
+
17
+ describe 'test an instance of ExpectedInputFieldsDTO' do
18
+ it 'should create an instance of ExpectedInputFieldsDTO' do
19
+ expect(instance).to be_instance_of(Composio::ExpectedInputFieldsDTO)
20
+ end
21
+ end
22
+ describe 'test attribute "description"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "name"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "type"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "display_name"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "default"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "required"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "expected_from_customer"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "is_secret"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "example"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "x_konfig_original_example"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ end
@@ -73,4 +73,10 @@ describe Composio::GetConnectionsQueryDto do
73
73
  end
74
74
  end
75
75
 
76
+ describe 'test attribute "labels"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
76
82
  end
@@ -73,4 +73,10 @@ describe Composio::GetLogsDTO do
73
73
  end
74
74
  end
75
75
 
76
+ describe 'test attribute "session_id"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
76
82
  end
@@ -25,6 +25,18 @@ describe Composio::IngestDataDTO do
25
25
  end
26
26
  end
27
27
 
28
+ describe 'test attribute "session_id"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "logs_type"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
28
40
  describe 'test attribute "entity_id"' do
29
41
  it 'should work' do
30
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -43,4 +43,16 @@ describe Composio::InitiateConnectionPayloadDto do
43
43
  end
44
44
  end
45
45
 
46
+ describe 'test attribute "entity_id"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "labels"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
46
58
  end
@@ -37,6 +37,12 @@ describe Composio::ListTriggersQueryDTO do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "integration_ids"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  describe 'test attribute "show_enabled_only"' do
41
47
  it 'should work' do
42
48
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,28 @@
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 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Composio::SDKErrorResDTO
14
+ describe Composio::SDKErrorResDTO do
15
+ let(:instance) { Composio::SDKErrorResDTO.new }
16
+
17
+ describe 'test an instance of SDKErrorResDTO' do
18
+ it 'should create an instance of SDKErrorResDTO' do
19
+ expect(instance).to be_instance_of(Composio::SDKErrorResDTO)
20
+ end
21
+ end
22
+ describe 'test attribute "status"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ end
@@ -0,0 +1,34 @@
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 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Composio::SessionInfoDTO
14
+ describe Composio::SessionInfoDTO do
15
+ let(:instance) { Composio::SessionInfoDTO.new }
16
+
17
+ describe 'test an instance of SessionInfoDTO' do
18
+ it 'should create an instance of SessionInfoDTO' do
19
+ expect(instance).to be_instance_of(Composio::SessionInfoDTO)
20
+ end
21
+ end
22
+ describe 'test attribute "session_id"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ describe 'test attribute "metadata"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -55,4 +55,16 @@ describe Composio::ToolsExecuteReqDto do
55
55
  end
56
56
  end
57
57
 
58
+ describe 'test attribute "custom_description"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "system_prompt"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
58
70
  end
@@ -37,4 +37,10 @@ describe Composio::TriggerResponseDTO do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "is_new"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  end
@@ -0,0 +1,28 @@
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 'spec_helper'
10
+ require 'json'
11
+ require 'date'
12
+
13
+ # Unit tests for Composio::UpdateConnectionLabelsPayloadDto
14
+ describe Composio::UpdateConnectionLabelsPayloadDto do
15
+ let(:instance) { Composio::UpdateConnectionLabelsPayloadDto.new }
16
+
17
+ describe 'test an instance of UpdateConnectionLabelsPayloadDto' do
18
+ it 'should create an instance of UpdateConnectionLabelsPayloadDto' do
19
+ expect(instance).to be_instance_of(Composio::UpdateConnectionLabelsPayloadDto)
20
+ end
21
+ end
22
+ describe 'test attribute "labels"' do
23
+ it 'should work' do
24
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
25
+ end
26
+ end
27
+
28
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: composio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konfig
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-29 00:00:00.000000000 Z
11
+ date: 2024-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -91,6 +91,7 @@ files:
91
91
  - lib/composio/api/api_keys_api.rb
92
92
  - lib/composio/api/apps_api.rb
93
93
  - lib/composio/api/auth_api.rb
94
+ - lib/composio/api/cli_api.rb
94
95
  - lib/composio/api/connections_api.rb
95
96
  - lib/composio/api/event_logs_api.rb
96
97
  - lib/composio/api/integrations_api.rb
@@ -133,6 +134,11 @@ files:
133
134
  - lib/composio/models/app_query_dto.rb
134
135
  - lib/composio/models/auth_config_dto.rb
135
136
  - lib/composio/models/cli_query_dto.rb
137
+ - lib/composio/models/client_dto.rb
138
+ - lib/composio/models/client_dto_created_at.rb
139
+ - lib/composio/models/client_dto_last_subscribed_at.rb
140
+ - lib/composio/models/client_dto_updated_at.rb
141
+ - lib/composio/models/client_info_res_dto.rb
136
142
  - lib/composio/models/client_unique_user_id_count_dto.rb
137
143
  - lib/composio/models/connected_account_response_dto.rb
138
144
  - lib/composio/models/connection_params.rb
@@ -157,6 +163,7 @@ files:
157
163
  - lib/composio/models/enable_trigger_params_dto.rb
158
164
  - lib/composio/models/entity_query_req_dto.rb
159
165
  - lib/composio/models/execute_action_res_dto.rb
166
+ - lib/composio/models/expected_input_fields_dto.rb
160
167
  - lib/composio/models/fetch_query_dto.rb
161
168
  - lib/composio/models/generate_api_key_req_dto.rb
162
169
  - lib/composio/models/generate_cli_session_req_dto.rb
@@ -209,6 +216,8 @@ files:
209
216
  - lib/composio/models/proxy_execution_req_dto.rb
210
217
  - lib/composio/models/redirect_uri_dto.rb
211
218
  - lib/composio/models/role.rb
219
+ - lib/composio/models/sdk_error_res_dto.rb
220
+ - lib/composio/models/session_info_dto.rb
212
221
  - lib/composio/models/set_callback_url_body_dto.rb
213
222
  - lib/composio/models/single_app_info_res_dto.rb
214
223
  - lib/composio/models/single_trigger_res_dto.rb
@@ -239,6 +248,7 @@ files:
239
248
  - lib/composio/models/triggers_enabled_toggle_req_dto.rb
240
249
  - lib/composio/models/triggers_enabled_toggle_res_dto.rb
241
250
  - lib/composio/models/type.rb
251
+ - lib/composio/models/update_connection_labels_payload_dto.rb
242
252
  - lib/composio/models/update_member_req_dto.rb
243
253
  - lib/composio/models/update_member_req_dto_role.rb
244
254
  - lib/composio/models/user_git_user_info.rb
@@ -256,11 +266,11 @@ files:
256
266
  - spec/api/api_keys_api_spec.rb
257
267
  - spec/api/apps_api_spec.rb
258
268
  - spec/api/auth_api_spec.rb
269
+ - spec/api/cli_api_spec.rb
259
270
  - spec/api/connections_api_spec.rb
260
271
  - spec/api/event_logs_api_spec.rb
261
272
  - spec/api/integrations_api_spec.rb
262
273
  - spec/api/logs_api_spec.rb
263
- - spec/api/payment_api_spec.rb
264
274
  - spec/api/triggers_api_spec.rb
265
275
  - spec/api_client_spec.rb
266
276
  - spec/configuration_spec.rb
@@ -296,6 +306,11 @@ files:
296
306
  - spec/models/app_query_dto_spec.rb
297
307
  - spec/models/auth_config_dto_spec.rb
298
308
  - spec/models/cli_query_dto_spec.rb
309
+ - spec/models/client_dto_created_at_spec.rb
310
+ - spec/models/client_dto_last_subscribed_at_spec.rb
311
+ - spec/models/client_dto_spec.rb
312
+ - spec/models/client_dto_updated_at_spec.rb
313
+ - spec/models/client_info_res_dto_spec.rb
299
314
  - spec/models/client_unique_user_id_count_dto_spec.rb
300
315
  - spec/models/connected_account_response_dto_spec.rb
301
316
  - spec/models/connection_params_for_account_spec.rb
@@ -320,6 +335,7 @@ files:
320
335
  - spec/models/enable_trigger_params_dto_spec.rb
321
336
  - spec/models/entity_query_req_dto_spec.rb
322
337
  - spec/models/execute_action_res_dto_spec.rb
338
+ - spec/models/expected_input_fields_dto_spec.rb
323
339
  - spec/models/fetch_query_dto_spec.rb
324
340
  - spec/models/generate_api_key_req_dto_spec.rb
325
341
  - spec/models/generate_cli_session_req_dto_spec.rb
@@ -372,6 +388,8 @@ files:
372
388
  - spec/models/proxy_execution_req_dto_spec.rb
373
389
  - spec/models/redirect_uri_dto_spec.rb
374
390
  - spec/models/role_spec.rb
391
+ - spec/models/sdk_error_res_dto_spec.rb
392
+ - spec/models/session_info_dto_spec.rb
375
393
  - spec/models/set_callback_url_body_dto_spec.rb
376
394
  - spec/models/single_app_info_res_dto_spec.rb
377
395
  - spec/models/single_trigger_res_dto_spec.rb
@@ -402,6 +420,7 @@ files:
402
420
  - spec/models/triggers_enabled_toggle_req_dto_spec.rb
403
421
  - spec/models/triggers_enabled_toggle_res_dto_spec.rb
404
422
  - spec/models/type_spec.rb
423
+ - spec/models/update_connection_labels_payload_dto_spec.rb
405
424
  - spec/models/update_member_req_dto_role_spec.rb
406
425
  - spec/models/update_member_req_dto_spec.rb
407
426
  - spec/models/user_git_user_info_spec.rb
@@ -443,7 +462,7 @@ test_files:
443
462
  - spec/api/actions_api_spec.rb
444
463
  - spec/api/auth_api_spec.rb
445
464
  - spec/api/event_logs_api_spec.rb
446
- - spec/api/payment_api_spec.rb
465
+ - spec/api/cli_api_spec.rb
447
466
  - spec/api/apps_api_spec.rb
448
467
  - spec/api/triggers_api_spec.rb
449
468
  - spec/api/integrations_api_spec.rb
@@ -519,11 +538,13 @@ test_files:
519
538
  - spec/models/meta_app_spec.rb
520
539
  - spec/models/actions_list_response_dto_spec.rb
521
540
  - spec/models/generate_cli_session_req_dto_spec.rb
541
+ - spec/models/client_dto_updated_at_spec.rb
522
542
  - spec/models/app_name_count_dto_spec.rb
523
543
  - spec/models/get_connector_list_res_dto_spec.rb
524
544
  - spec/models/t_connection_count_dto_spec.rb
525
545
  - spec/models/entity_query_req_dto_spec.rb
526
546
  - spec/models/track_client_res_dto_spec.rb
547
+ - spec/models/session_info_dto_spec.rb
527
548
  - spec/models/trigger_metadata_spec.rb
528
549
  - spec/models/trigger_logs_res_dto_spec.rb
529
550
  - spec/models/trigger_metadata_dto_spec.rb
@@ -542,6 +563,7 @@ test_files:
542
563
  - spec/models/update_member_req_dto_role_spec.rb
543
564
  - spec/models/logout_res_dto_spec.rb
544
565
  - spec/models/verify_magic_link_data_dto_spec.rb
566
+ - spec/models/client_dto_created_at_spec.rb
545
567
  - spec/models/actions_query_dto_spec.rb
546
568
  - spec/models/actions_minimal_list_response_dto_spec.rb
547
569
  - spec/models/get_logs_dto_spec.rb
@@ -554,7 +576,9 @@ test_files:
554
576
  - spec/models/active_triggers_res_dto_spec.rb
555
577
  - spec/models/action_by_status_dto_spec.rb
556
578
  - spec/models/generate_api_key_req_dto_spec.rb
579
+ - spec/models/client_dto_last_subscribed_at_spec.rb
557
580
  - spec/models/role_spec.rb
581
+ - spec/models/expected_input_fields_dto_spec.rb
558
582
  - spec/models/direct_execute_req_dto_spec.rb
559
583
  - spec/models/state_spec.rb
560
584
  - spec/models/get_connections_response_dto_spec.rb
@@ -566,11 +590,14 @@ test_files:
566
590
  - spec/models/add_tools_request_dto_spec.rb
567
591
  - spec/models/member_info_res_dto_spec.rb
568
592
  - spec/models/magic_link_req_dto_spec.rb
593
+ - spec/models/sdk_error_res_dto_spec.rb
569
594
  - spec/models/action_by_app_dto_spec.rb
595
+ - spec/models/client_info_res_dto_spec.rb
570
596
  - spec/models/delete_api_key_req_dto_spec.rb
571
597
  - spec/models/action_get_nla_inputs_req_dto_spec.rb
572
598
  - spec/models/cli_query_dto_spec.rb
573
599
  - spec/models/get_trigger_params_dto_spec.rb
600
+ - spec/models/update_connection_labels_payload_dto_spec.rb
574
601
  - spec/models/delete_tools_req_dto_spec.rb
575
602
  - spec/models/add_tools_req_dto_spec.rb
576
603
  - spec/models/switch_trigger_status_body_dto_spec.rb
@@ -581,6 +608,7 @@ test_files:
581
608
  - spec/models/status_spec.rb
582
609
  - spec/models/update_member_req_dto_spec.rb
583
610
  - spec/models/connector_list_item_dto_updated_at_spec.rb
611
+ - spec/models/client_dto_spec.rb
584
612
  - spec/models/tools_execute_req_dto_spec.rb
585
613
  - spec/models/connection_params_spec.rb
586
614
  - spec/models/member_info_res_dto_created_at_spec.rb