composio 0.1.6 → 0.1.7
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/Gemfile.lock +3 -3
- data/README.md +462 -4
- data/lib/composio/api/actions_api.rb +107 -0
- data/lib/composio/api/analytics_api.rb +181 -0
- data/lib/composio/api/apps_api.rb +257 -0
- data/lib/composio/api/event_logs_api.rb +427 -0
- data/lib/composio/api/logs_api.rb +127 -9
- data/lib/composio/api/payment_api.rb +430 -0
- data/lib/composio/models/action_analytics_dto.rb +250 -0
- data/lib/composio/models/action_by_app_dto.rb +237 -0
- data/lib/composio/models/action_by_status_dto.rb +237 -0
- data/lib/composio/models/action_get_nla_inputs_req_dto.rb +220 -0
- data/lib/composio/models/analytics_data_req_dto.rb +250 -0
- data/lib/composio/models/analytics_data_res_dto.rb +282 -0
- data/lib/composio/models/analytics_entity_data_dto.rb +257 -0
- data/lib/composio/models/api_key_res_dto.rb +61 -4
- data/lib/composio/models/app_name_count_dto.rb +267 -0
- data/lib/composio/models/client_unique_user_id_count_dto.rb +237 -0
- data/lib/composio/models/connected_account_response_dto.rb +10 -1
- data/lib/composio/models/connection_params.rb +22 -6
- data/lib/composio/models/connection_with_app_data.rb +22 -6
- data/lib/composio/models/connector_list_item_dto.rb +16 -1
- data/lib/composio/models/create_checkout_session_req_dto.rb +220 -0
- data/lib/composio/models/entity_query_req_dto.rb +216 -0
- data/lib/composio/models/fetch_query_dto.rb +278 -0
- data/lib/composio/models/get_connector_list_res_dto.rb +0 -1
- data/lib/composio/models/get_logs_dto.rb +10 -10
- data/lib/composio/models/{job_status.rb → get_logs_dto_status.rb} +6 -6
- data/lib/composio/models/ingest_data_dto.rb +298 -0
- data/lib/composio/models/ingest_data_response_dto.rb +220 -0
- data/lib/composio/models/integrations_with_counts_dto.rb +297 -0
- data/lib/composio/models/invite_member_req_dto.rb +14 -4
- data/lib/composio/models/last_time_period.rb +40 -0
- data/lib/composio/models/member_info_res_dto.rb +324 -0
- data/lib/composio/models/{connection_with_app_data_created_at.rb → member_info_res_dto_created_at.rb} +1 -1
- data/lib/composio/models/member_res_dto.rb +16 -1
- data/lib/composio/models/member_res_dto_role.rb +36 -0
- data/lib/composio/models/open_api_spec_list_res_dto.rb +17 -74
- data/lib/composio/models/plan.rb +38 -0
- data/lib/composio/models/role.rb +36 -0
- data/lib/composio/models/state.rb +41 -0
- data/lib/composio/models/status.rb +7 -4
- data/lib/composio/models/t_connection_count_dto.rb +236 -0
- data/lib/composio/models/time_period_req_dto.rb +216 -0
- data/lib/composio/models/top_entities_res_dto.rb +223 -0
- data/lib/composio/models/update_member_req_dto.rb +236 -0
- data/lib/composio/models/update_member_req_dto_role.rb +36 -0
- data/lib/composio/models/webhook_req_dto.rb +221 -0
- data/lib/composio/models/webhook_secret_res_dto.rb +221 -0
- data/lib/composio/version.rb +1 -1
- data/lib/composio.rb +39 -2
- data/spec/api/actions_api_spec.rb +13 -0
- data/spec/api/analytics_api_spec.rb +51 -0
- data/spec/api/apps_api_spec.rb +34 -0
- data/spec/api/event_logs_api_spec.rb +83 -0
- data/spec/api/logs_api_spec.rb +13 -1
- data/spec/api/payment_api_spec.rb +83 -0
- data/spec/models/action_analytics_dto_spec.rb +40 -0
- data/spec/models/action_by_app_dto_spec.rb +34 -0
- data/spec/models/action_by_status_dto_spec.rb +34 -0
- data/spec/models/action_get_nla_inputs_req_dto_spec.rb +28 -0
- data/spec/models/analytics_data_req_dto_spec.rb +32 -0
- data/spec/models/analytics_data_res_dto_spec.rb +52 -0
- data/spec/models/analytics_entity_data_dto_spec.rb +40 -0
- data/spec/models/api_key_res_dto_spec.rb +18 -0
- data/spec/models/app_name_count_dto_spec.rb +46 -0
- data/spec/models/client_unique_user_id_count_dto_spec.rb +34 -0
- data/spec/models/connected_account_response_dto_spec.rb +6 -0
- data/spec/models/connection_params_spec.rb +6 -0
- data/spec/models/connection_with_app_data_spec.rb +6 -0
- data/spec/models/connector_list_item_dto_spec.rb +6 -0
- data/spec/models/create_checkout_session_req_dto_spec.rb +28 -0
- data/spec/models/entity_query_req_dto_spec.rb +28 -0
- data/spec/models/fetch_query_dto_spec.rb +34 -0
- data/spec/models/get_logs_dto_spec.rb +1 -1
- data/spec/models/get_logs_dto_status_spec.rb +22 -0
- data/spec/models/ingest_data_dto_spec.rb +64 -0
- data/spec/models/ingest_data_response_dto_spec.rb +28 -0
- data/spec/models/integrations_with_counts_dto_spec.rb +58 -0
- data/spec/models/invite_member_req_dto_spec.rb +6 -0
- data/spec/models/last_time_period_spec.rb +22 -0
- data/spec/models/{connection_with_app_data_created_at_spec.rb → member_info_res_dto_created_at_spec.rb} +2 -2
- data/spec/models/member_info_res_dto_spec.rb +76 -0
- data/spec/models/member_res_dto_role_spec.rb +22 -0
- data/spec/models/member_res_dto_spec.rb +6 -0
- data/spec/models/open_api_spec_list_res_dto_spec.rb +5 -29
- data/spec/models/plan_spec.rb +22 -0
- data/spec/models/role_spec.rb +22 -0
- data/spec/models/state_spec.rb +22 -0
- data/spec/models/t_connection_count_dto_spec.rb +34 -0
- data/spec/models/time_period_req_dto_spec.rb +28 -0
- data/spec/models/top_entities_res_dto_spec.rb +28 -0
- data/spec/models/update_member_req_dto_role_spec.rb +22 -0
- data/spec/models/update_member_req_dto_spec.rb +34 -0
- data/spec/models/webhook_req_dto_spec.rb +28 -0
- data/spec/models/webhook_secret_res_dto_spec.rb +28 -0
- metadata +201 -108
- data/spec/models/job_status_spec.rb +0 -22
|
@@ -0,0 +1,257 @@
|
|
|
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
|
+
# Entity-related analytics data, providing a breakdown by connections, actions, and triggers for each entity. This is include all entity info.
|
|
14
|
+
class AnalyticsEntityDataDTO
|
|
15
|
+
attr_accessor :by_connections
|
|
16
|
+
|
|
17
|
+
# Action counts by entity
|
|
18
|
+
attr_accessor :by_actions
|
|
19
|
+
|
|
20
|
+
# Trigger counts by entity
|
|
21
|
+
attr_accessor :by_triggers
|
|
22
|
+
|
|
23
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
24
|
+
def self.attribute_map
|
|
25
|
+
{
|
|
26
|
+
:'by_connections' => :'byConnections',
|
|
27
|
+
:'by_actions' => :'byActions',
|
|
28
|
+
:'by_triggers' => :'byTriggers'
|
|
29
|
+
}
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Returns all the JSON keys this model knows about
|
|
33
|
+
def self.acceptable_attributes
|
|
34
|
+
attribute_map.values
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
# Attribute type mapping.
|
|
38
|
+
def self.openapi_types
|
|
39
|
+
{
|
|
40
|
+
:'by_connections' => :'Array<ClientUniqueUserIdCountDTO>',
|
|
41
|
+
:'by_actions' => :'Array<ClientUniqueUserIdCountDTO>',
|
|
42
|
+
:'by_triggers' => :'Array<ClientUniqueUserIdCountDTO>'
|
|
43
|
+
}
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# List of attributes with nullable: true
|
|
47
|
+
def self.openapi_nullable
|
|
48
|
+
Set.new([
|
|
49
|
+
])
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Initializes the object
|
|
53
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
54
|
+
def initialize(attributes = {})
|
|
55
|
+
if (!attributes.is_a?(Hash))
|
|
56
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Composio::AnalyticsEntityDataDTO` initialize method"
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
60
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
61
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Composio::AnalyticsEntityDataDTO`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
63
|
+
end
|
|
64
|
+
h[k.to_sym] = v
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if attributes.key?(:'by_connections')
|
|
68
|
+
if (value = attributes[:'by_connections']).is_a?(Array)
|
|
69
|
+
self.by_connections = value
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
if attributes.key?(:'by_actions')
|
|
74
|
+
if (value = attributes[:'by_actions']).is_a?(Array)
|
|
75
|
+
self.by_actions = value
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.key?(:'by_triggers')
|
|
80
|
+
if (value = attributes[:'by_triggers']).is_a?(Array)
|
|
81
|
+
self.by_triggers = value
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
87
|
+
# @return Array for valid properties with the reasons
|
|
88
|
+
def list_invalid_properties
|
|
89
|
+
invalid_properties = Array.new
|
|
90
|
+
if @by_connections.nil?
|
|
91
|
+
invalid_properties.push('invalid value for "by_connections", by_connections cannot be nil.')
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
if @by_actions.nil?
|
|
95
|
+
invalid_properties.push('invalid value for "by_actions", by_actions cannot be nil.')
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
if @by_triggers.nil?
|
|
99
|
+
invalid_properties.push('invalid value for "by_triggers", by_triggers cannot be nil.')
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
invalid_properties
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# Check to see if the all the properties in the model are valid
|
|
106
|
+
# @return true if the model is valid
|
|
107
|
+
def valid?
|
|
108
|
+
return false if @by_connections.nil?
|
|
109
|
+
return false if @by_actions.nil?
|
|
110
|
+
return false if @by_triggers.nil?
|
|
111
|
+
true
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
# Checks equality by comparing each attribute.
|
|
115
|
+
# @param [Object] Object to be compared
|
|
116
|
+
def ==(o)
|
|
117
|
+
return true if self.equal?(o)
|
|
118
|
+
self.class == o.class &&
|
|
119
|
+
by_connections == o.by_connections &&
|
|
120
|
+
by_actions == o.by_actions &&
|
|
121
|
+
by_triggers == o.by_triggers
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
# @see the `==` method
|
|
125
|
+
# @param [Object] Object to be compared
|
|
126
|
+
def eql?(o)
|
|
127
|
+
self == o
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
# Calculates hash code according to all attributes.
|
|
131
|
+
# @return [Integer] Hash code
|
|
132
|
+
def hash
|
|
133
|
+
[by_connections, by_actions, by_triggers].hash
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# Builds the object from hash
|
|
137
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
138
|
+
# @return [Object] Returns the model itself
|
|
139
|
+
def self.build_from_hash(attributes)
|
|
140
|
+
new.build_from_hash(attributes)
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
# Builds the object from hash
|
|
144
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
145
|
+
# @return [Object] Returns the model itself
|
|
146
|
+
def build_from_hash(attributes)
|
|
147
|
+
return nil unless attributes.is_a?(Hash)
|
|
148
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
149
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
150
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
151
|
+
self.send("#{key}=", nil)
|
|
152
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
153
|
+
# check to ensure the input is an array given that the attribute
|
|
154
|
+
# is documented as an array but the input is not
|
|
155
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
156
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
157
|
+
end
|
|
158
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
159
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
160
|
+
end
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
self
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
# Deserializes the data based on type
|
|
167
|
+
# @param string type Data type
|
|
168
|
+
# @param string value Value to be deserialized
|
|
169
|
+
# @return [Object] Deserialized data
|
|
170
|
+
def _deserialize(type, value)
|
|
171
|
+
case type.to_sym
|
|
172
|
+
when :Time
|
|
173
|
+
Time.parse(value)
|
|
174
|
+
when :Date
|
|
175
|
+
Date.parse(value)
|
|
176
|
+
when :String
|
|
177
|
+
value.to_s
|
|
178
|
+
when :Integer
|
|
179
|
+
value.to_i
|
|
180
|
+
when :Float
|
|
181
|
+
value.to_f
|
|
182
|
+
when :Boolean
|
|
183
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
184
|
+
true
|
|
185
|
+
else
|
|
186
|
+
false
|
|
187
|
+
end
|
|
188
|
+
when :Object
|
|
189
|
+
# generic object (usually a Hash), return directly
|
|
190
|
+
value
|
|
191
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
192
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
193
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
194
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
195
|
+
k_type = Regexp.last_match[:k_type]
|
|
196
|
+
v_type = Regexp.last_match[:v_type]
|
|
197
|
+
{}.tap do |hash|
|
|
198
|
+
value.each do |k, v|
|
|
199
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
else # model
|
|
203
|
+
# models (e.g. Pet) or oneOf
|
|
204
|
+
klass = Composio.const_get(type)
|
|
205
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
206
|
+
end
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
# Returns the string representation of the object
|
|
210
|
+
# @return [String] String presentation of the object
|
|
211
|
+
def to_s
|
|
212
|
+
to_hash.to_s
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
216
|
+
# @return [Hash] Returns the object in the form of hash
|
|
217
|
+
def to_body
|
|
218
|
+
to_hash
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
# Returns the object in the form of hash
|
|
222
|
+
# @return [Hash] Returns the object in the form of hash
|
|
223
|
+
def to_hash
|
|
224
|
+
hash = {}
|
|
225
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
226
|
+
value = self.send(attr)
|
|
227
|
+
if value.nil?
|
|
228
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
229
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
hash[param] = _to_hash(value)
|
|
233
|
+
end
|
|
234
|
+
hash
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
# Outputs non-array value in the form of hash
|
|
238
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
239
|
+
# @param [Object] value Any valid value
|
|
240
|
+
# @return [Hash] Returns the value in the form of hash
|
|
241
|
+
def _to_hash(value)
|
|
242
|
+
if value.is_a?(Array)
|
|
243
|
+
value.compact.map { |v| _to_hash(v) }
|
|
244
|
+
elsif value.is_a?(Hash)
|
|
245
|
+
{}.tap do |hash|
|
|
246
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
247
|
+
end
|
|
248
|
+
elsif value.respond_to? :to_hash
|
|
249
|
+
value.to_hash
|
|
250
|
+
else
|
|
251
|
+
value
|
|
252
|
+
end
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
end
|
|
@@ -26,6 +26,15 @@ module Composio
|
|
|
26
26
|
# The generated API key
|
|
27
27
|
attr_accessor :key
|
|
28
28
|
|
|
29
|
+
# Whether the API key is hidden
|
|
30
|
+
attr_accessor :is_hidden
|
|
31
|
+
|
|
32
|
+
# The last used date of the API key
|
|
33
|
+
attr_accessor :last_used
|
|
34
|
+
|
|
35
|
+
# The member of the API key
|
|
36
|
+
attr_accessor :member
|
|
37
|
+
|
|
29
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
30
39
|
def self.attribute_map
|
|
31
40
|
{
|
|
@@ -33,7 +42,10 @@ module Composio
|
|
|
33
42
|
:'name' => :'name',
|
|
34
43
|
:'created_at' => :'createdAt',
|
|
35
44
|
:'updated_at' => :'updatedAt',
|
|
36
|
-
:'key' => :'key'
|
|
45
|
+
:'key' => :'key',
|
|
46
|
+
:'is_hidden' => :'isHidden',
|
|
47
|
+
:'last_used' => :'lastUsed',
|
|
48
|
+
:'member' => :'member'
|
|
37
49
|
}
|
|
38
50
|
end
|
|
39
51
|
|
|
@@ -49,7 +61,10 @@ module Composio
|
|
|
49
61
|
:'name' => :'String',
|
|
50
62
|
:'created_at' => :'String',
|
|
51
63
|
:'updated_at' => :'String',
|
|
52
|
-
:'key' => :'String'
|
|
64
|
+
:'key' => :'String',
|
|
65
|
+
:'is_hidden' => :'Boolean',
|
|
66
|
+
:'last_used' => :'String',
|
|
67
|
+
:'member' => :'Object'
|
|
53
68
|
}
|
|
54
69
|
end
|
|
55
70
|
|
|
@@ -93,6 +108,18 @@ module Composio
|
|
|
93
108
|
if attributes.key?(:'key')
|
|
94
109
|
self.key = attributes[:'key']
|
|
95
110
|
end
|
|
111
|
+
|
|
112
|
+
if attributes.key?(:'is_hidden')
|
|
113
|
+
self.is_hidden = attributes[:'is_hidden']
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
if attributes.key?(:'last_used')
|
|
117
|
+
self.last_used = attributes[:'last_used']
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
if attributes.key?(:'member')
|
|
121
|
+
self.member = attributes[:'member']
|
|
122
|
+
end
|
|
96
123
|
end
|
|
97
124
|
|
|
98
125
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -129,6 +156,19 @@ module Composio
|
|
|
129
156
|
invalid_properties.push('invalid value for "key", key cannot be nil.')
|
|
130
157
|
end
|
|
131
158
|
|
|
159
|
+
if @is_hidden.nil?
|
|
160
|
+
invalid_properties.push('invalid value for "is_hidden", is_hidden cannot be nil.')
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
pattern = Regexp.new(/\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d.\d+Z?/)
|
|
164
|
+
if !@last_used.nil? && @last_used !~ pattern
|
|
165
|
+
invalid_properties.push("invalid value for \"last_used\", must conform to the pattern #{pattern}.")
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
if @member.nil?
|
|
169
|
+
invalid_properties.push('invalid value for "member", member cannot be nil.')
|
|
170
|
+
end
|
|
171
|
+
|
|
132
172
|
invalid_properties
|
|
133
173
|
end
|
|
134
174
|
|
|
@@ -142,6 +182,9 @@ module Composio
|
|
|
142
182
|
return false if @updated_at.nil?
|
|
143
183
|
return false if @updated_at !~ Regexp.new(/\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d.\d+Z?/)
|
|
144
184
|
return false if @key.nil?
|
|
185
|
+
return false if @is_hidden.nil?
|
|
186
|
+
return false if !@last_used.nil? && @last_used !~ Regexp.new(/\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d.\d+Z?/)
|
|
187
|
+
return false if @member.nil?
|
|
145
188
|
true
|
|
146
189
|
end
|
|
147
190
|
|
|
@@ -175,6 +218,17 @@ module Composio
|
|
|
175
218
|
@updated_at = updated_at
|
|
176
219
|
end
|
|
177
220
|
|
|
221
|
+
# Custom attribute writer method with validation
|
|
222
|
+
# @param [Object] last_used Value to be assigned
|
|
223
|
+
def last_used=(last_used)
|
|
224
|
+
pattern = Regexp.new(/\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d.\d+Z?/)
|
|
225
|
+
if !last_used.nil? && last_used !~ pattern
|
|
226
|
+
fail ArgumentError, "invalid value for \"last_used\", must conform to the pattern #{pattern}."
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
@last_used = last_used
|
|
230
|
+
end
|
|
231
|
+
|
|
178
232
|
# Checks equality by comparing each attribute.
|
|
179
233
|
# @param [Object] Object to be compared
|
|
180
234
|
def ==(o)
|
|
@@ -184,7 +238,10 @@ module Composio
|
|
|
184
238
|
name == o.name &&
|
|
185
239
|
created_at == o.created_at &&
|
|
186
240
|
updated_at == o.updated_at &&
|
|
187
|
-
key == o.key
|
|
241
|
+
key == o.key &&
|
|
242
|
+
is_hidden == o.is_hidden &&
|
|
243
|
+
last_used == o.last_used &&
|
|
244
|
+
member == o.member
|
|
188
245
|
end
|
|
189
246
|
|
|
190
247
|
# @see the `==` method
|
|
@@ -196,7 +253,7 @@ module Composio
|
|
|
196
253
|
# Calculates hash code according to all attributes.
|
|
197
254
|
# @return [Integer] Hash code
|
|
198
255
|
def hash
|
|
199
|
-
[id, name, created_at, updated_at, key].hash
|
|
256
|
+
[id, name, created_at, updated_at, key, is_hidden, last_used, member].hash
|
|
200
257
|
end
|
|
201
258
|
|
|
202
259
|
# Builds the object from hash
|
|
@@ -0,0 +1,267 @@
|
|
|
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
|
+
# Comprehensive app-level analytics data, providing a breakdown of connection count, trigger count, and request logs count for each app
|
|
14
|
+
class AppNameCountDTO
|
|
15
|
+
# Name of the app
|
|
16
|
+
attr_accessor :app_name
|
|
17
|
+
|
|
18
|
+
# Count of connections for the app
|
|
19
|
+
attr_accessor :connection_count
|
|
20
|
+
|
|
21
|
+
# Count of triggers for the app
|
|
22
|
+
attr_accessor :trigger_count
|
|
23
|
+
|
|
24
|
+
# Count of request logs for the app
|
|
25
|
+
attr_accessor :request_logs_count
|
|
26
|
+
|
|
27
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
28
|
+
def self.attribute_map
|
|
29
|
+
{
|
|
30
|
+
:'app_name' => :'appName',
|
|
31
|
+
:'connection_count' => :'connectionCount',
|
|
32
|
+
:'trigger_count' => :'triggerCount',
|
|
33
|
+
:'request_logs_count' => :'requestLogsCount'
|
|
34
|
+
}
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
# Returns all the JSON keys this model knows about
|
|
38
|
+
def self.acceptable_attributes
|
|
39
|
+
attribute_map.values
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# Attribute type mapping.
|
|
43
|
+
def self.openapi_types
|
|
44
|
+
{
|
|
45
|
+
:'app_name' => :'String',
|
|
46
|
+
:'connection_count' => :'Float',
|
|
47
|
+
:'trigger_count' => :'Float',
|
|
48
|
+
:'request_logs_count' => :'Float'
|
|
49
|
+
}
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# List of attributes with nullable: true
|
|
53
|
+
def self.openapi_nullable
|
|
54
|
+
Set.new([
|
|
55
|
+
])
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Initializes the object
|
|
59
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
60
|
+
def initialize(attributes = {})
|
|
61
|
+
if (!attributes.is_a?(Hash))
|
|
62
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Composio::AppNameCountDTO` initialize method"
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
66
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
67
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
68
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Composio::AppNameCountDTO`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
69
|
+
end
|
|
70
|
+
h[k.to_sym] = v
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if attributes.key?(:'app_name')
|
|
74
|
+
self.app_name = attributes[:'app_name']
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
if attributes.key?(:'connection_count')
|
|
78
|
+
self.connection_count = attributes[:'connection_count']
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
if attributes.key?(:'trigger_count')
|
|
82
|
+
self.trigger_count = attributes[:'trigger_count']
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
if attributes.key?(:'request_logs_count')
|
|
86
|
+
self.request_logs_count = attributes[:'request_logs_count']
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
91
|
+
# @return Array for valid properties with the reasons
|
|
92
|
+
def list_invalid_properties
|
|
93
|
+
invalid_properties = Array.new
|
|
94
|
+
if @app_name.nil?
|
|
95
|
+
invalid_properties.push('invalid value for "app_name", app_name cannot be nil.')
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
if @connection_count.nil?
|
|
99
|
+
invalid_properties.push('invalid value for "connection_count", connection_count cannot be nil.')
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
if @trigger_count.nil?
|
|
103
|
+
invalid_properties.push('invalid value for "trigger_count", trigger_count cannot be nil.')
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
if @request_logs_count.nil?
|
|
107
|
+
invalid_properties.push('invalid value for "request_logs_count", request_logs_count cannot be nil.')
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
invalid_properties
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
# Check to see if the all the properties in the model are valid
|
|
114
|
+
# @return true if the model is valid
|
|
115
|
+
def valid?
|
|
116
|
+
return false if @app_name.nil?
|
|
117
|
+
return false if @connection_count.nil?
|
|
118
|
+
return false if @trigger_count.nil?
|
|
119
|
+
return false if @request_logs_count.nil?
|
|
120
|
+
true
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
# Checks equality by comparing each attribute.
|
|
124
|
+
# @param [Object] Object to be compared
|
|
125
|
+
def ==(o)
|
|
126
|
+
return true if self.equal?(o)
|
|
127
|
+
self.class == o.class &&
|
|
128
|
+
app_name == o.app_name &&
|
|
129
|
+
connection_count == o.connection_count &&
|
|
130
|
+
trigger_count == o.trigger_count &&
|
|
131
|
+
request_logs_count == o.request_logs_count
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
# @see the `==` method
|
|
135
|
+
# @param [Object] Object to be compared
|
|
136
|
+
def eql?(o)
|
|
137
|
+
self == o
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# Calculates hash code according to all attributes.
|
|
141
|
+
# @return [Integer] Hash code
|
|
142
|
+
def hash
|
|
143
|
+
[app_name, connection_count, trigger_count, request_logs_count].hash
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
# Builds the object from hash
|
|
147
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
148
|
+
# @return [Object] Returns the model itself
|
|
149
|
+
def self.build_from_hash(attributes)
|
|
150
|
+
new.build_from_hash(attributes)
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
# Builds the object from hash
|
|
154
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
155
|
+
# @return [Object] Returns the model itself
|
|
156
|
+
def build_from_hash(attributes)
|
|
157
|
+
return nil unless attributes.is_a?(Hash)
|
|
158
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
159
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
160
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
161
|
+
self.send("#{key}=", nil)
|
|
162
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
163
|
+
# check to ensure the input is an array given that the attribute
|
|
164
|
+
# is documented as an array but the input is not
|
|
165
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
166
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
167
|
+
end
|
|
168
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
169
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
self
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
# Deserializes the data based on type
|
|
177
|
+
# @param string type Data type
|
|
178
|
+
# @param string value Value to be deserialized
|
|
179
|
+
# @return [Object] Deserialized data
|
|
180
|
+
def _deserialize(type, value)
|
|
181
|
+
case type.to_sym
|
|
182
|
+
when :Time
|
|
183
|
+
Time.parse(value)
|
|
184
|
+
when :Date
|
|
185
|
+
Date.parse(value)
|
|
186
|
+
when :String
|
|
187
|
+
value.to_s
|
|
188
|
+
when :Integer
|
|
189
|
+
value.to_i
|
|
190
|
+
when :Float
|
|
191
|
+
value.to_f
|
|
192
|
+
when :Boolean
|
|
193
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
194
|
+
true
|
|
195
|
+
else
|
|
196
|
+
false
|
|
197
|
+
end
|
|
198
|
+
when :Object
|
|
199
|
+
# generic object (usually a Hash), return directly
|
|
200
|
+
value
|
|
201
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
202
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
203
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
204
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
205
|
+
k_type = Regexp.last_match[:k_type]
|
|
206
|
+
v_type = Regexp.last_match[:v_type]
|
|
207
|
+
{}.tap do |hash|
|
|
208
|
+
value.each do |k, v|
|
|
209
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
210
|
+
end
|
|
211
|
+
end
|
|
212
|
+
else # model
|
|
213
|
+
# models (e.g. Pet) or oneOf
|
|
214
|
+
klass = Composio.const_get(type)
|
|
215
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
216
|
+
end
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
# Returns the string representation of the object
|
|
220
|
+
# @return [String] String presentation of the object
|
|
221
|
+
def to_s
|
|
222
|
+
to_hash.to_s
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
226
|
+
# @return [Hash] Returns the object in the form of hash
|
|
227
|
+
def to_body
|
|
228
|
+
to_hash
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
# Returns the object in the form of hash
|
|
232
|
+
# @return [Hash] Returns the object in the form of hash
|
|
233
|
+
def to_hash
|
|
234
|
+
hash = {}
|
|
235
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
236
|
+
value = self.send(attr)
|
|
237
|
+
if value.nil?
|
|
238
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
239
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
hash[param] = _to_hash(value)
|
|
243
|
+
end
|
|
244
|
+
hash
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
# Outputs non-array value in the form of hash
|
|
248
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
249
|
+
# @param [Object] value Any valid value
|
|
250
|
+
# @return [Hash] Returns the value in the form of hash
|
|
251
|
+
def _to_hash(value)
|
|
252
|
+
if value.is_a?(Array)
|
|
253
|
+
value.compact.map { |v| _to_hash(v) }
|
|
254
|
+
elsif value.is_a?(Hash)
|
|
255
|
+
{}.tap do |hash|
|
|
256
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
257
|
+
end
|
|
258
|
+
elsif value.respond_to? :to_hash
|
|
259
|
+
value.to_hash
|
|
260
|
+
else
|
|
261
|
+
value
|
|
262
|
+
end
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
end
|