daytona_toolbox_api_client 0.175.0 → 0.176.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,156 @@
1
+ =begin
2
+ #Daytona Toolbox API
3
+
4
+ #Daytona Toolbox API
5
+
6
+ The version of the OpenAPI document: v0.0.0-dev
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.21.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module DaytonaToolboxApiClient
17
+ class AccessibilityTreeResponse < ApiModelBase
18
+ attr_accessor :root
19
+
20
+ attr_accessor :truncated
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'root' => :'root',
26
+ :'truncated' => :'truncated'
27
+ }
28
+ end
29
+
30
+ # Returns attribute mapping this model knows about
31
+ def self.acceptable_attribute_map
32
+ attribute_map
33
+ end
34
+
35
+ # Returns all the JSON keys this model knows about
36
+ def self.acceptable_attributes
37
+ acceptable_attribute_map.values
38
+ end
39
+
40
+ # Attribute type mapping.
41
+ def self.openapi_types
42
+ {
43
+ :'root' => :'ComputerUseAccessibilityNode',
44
+ :'truncated' => :'Boolean'
45
+ }
46
+ end
47
+
48
+ # List of attributes with nullable: true
49
+ def self.openapi_nullable
50
+ Set.new([
51
+ ])
52
+ end
53
+
54
+ # Initializes the object
55
+ # @param [Hash] attributes Model attributes in the form of hash
56
+ def initialize(attributes = {})
57
+ if (!attributes.is_a?(Hash))
58
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DaytonaToolboxApiClient::AccessibilityTreeResponse` initialize method"
59
+ end
60
+
61
+ # check to see if the attribute exists and convert string to symbol for hash key
62
+ acceptable_attribute_map = self.class.acceptable_attribute_map
63
+ attributes = attributes.each_with_object({}) { |(k, v), h|
64
+ if (!acceptable_attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DaytonaToolboxApiClient::AccessibilityTreeResponse`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
66
+ end
67
+ h[k.to_sym] = v
68
+ }
69
+
70
+ if attributes.key?(:'root')
71
+ self.root = attributes[:'root']
72
+ end
73
+
74
+ if attributes.key?(:'truncated')
75
+ self.truncated = attributes[:'truncated']
76
+ end
77
+ end
78
+
79
+ # Show invalid properties with the reasons. Usually used together with valid?
80
+ # @return Array for valid properties with the reasons
81
+ def list_invalid_properties
82
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
83
+ invalid_properties = Array.new
84
+ invalid_properties
85
+ end
86
+
87
+ # Check to see if the all the properties in the model are valid
88
+ # @return true if the model is valid
89
+ def valid?
90
+ warn '[DEPRECATED] the `valid?` method is obsolete'
91
+ true
92
+ end
93
+
94
+ # Checks equality by comparing each attribute.
95
+ # @param [Object] Object to be compared
96
+ def ==(o)
97
+ return true if self.equal?(o)
98
+ self.class == o.class &&
99
+ root == o.root &&
100
+ truncated == o.truncated
101
+ end
102
+
103
+ # @see the `==` method
104
+ # @param [Object] Object to be compared
105
+ def eql?(o)
106
+ self == o
107
+ end
108
+
109
+ # Calculates hash code according to all attributes.
110
+ # @return [Integer] Hash code
111
+ def hash
112
+ [root, truncated].hash
113
+ end
114
+
115
+ # Builds the object from hash
116
+ # @param [Hash] attributes Model attributes in the form of hash
117
+ # @return [Object] Returns the model itself
118
+ def self.build_from_hash(attributes)
119
+ return nil unless attributes.is_a?(Hash)
120
+ attributes = attributes.transform_keys(&:to_sym)
121
+ transformed_hash = {}
122
+ openapi_types.each_pair do |key, type|
123
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
124
+ transformed_hash["#{key}"] = nil
125
+ elsif type =~ /\AArray<(.*)>/i
126
+ # check to ensure the input is an array given that the attribute
127
+ # is documented as an array but the input is not
128
+ if attributes[attribute_map[key]].is_a?(Array)
129
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
130
+ end
131
+ elsif !attributes[attribute_map[key]].nil?
132
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
133
+ end
134
+ end
135
+ new(transformed_hash)
136
+ end
137
+
138
+ # Returns the object in the form of hash
139
+ # @return [Hash] Returns the object in the form of hash
140
+ def to_hash
141
+ hash = {}
142
+ self.class.attribute_map.each_pair do |attr, param|
143
+ value = self.send(attr)
144
+ if value.nil?
145
+ is_nullable = self.class.openapi_nullable.include?(attr)
146
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
147
+ end
148
+
149
+ hash[param] = _to_hash(value)
150
+ end
151
+ hash
152
+ end
153
+
154
+ end
155
+
156
+ end
@@ -0,0 +1,216 @@
1
+ =begin
2
+ #Daytona Toolbox API
3
+
4
+ #Daytona Toolbox API
5
+
6
+ The version of the OpenAPI document: v0.0.0-dev
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.21.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module DaytonaToolboxApiClient
17
+ class ComputerUseAccessibilityNode < ApiModelBase
18
+ attr_accessor :actions
19
+
20
+ attr_accessor :bounds
21
+
22
+ attr_accessor :children
23
+
24
+ attr_accessor :description
25
+
26
+ attr_accessor :id
27
+
28
+ attr_accessor :name
29
+
30
+ attr_accessor :role
31
+
32
+ attr_accessor :states
33
+
34
+ # Attribute mapping from ruby-style variable name to JSON key.
35
+ def self.attribute_map
36
+ {
37
+ :'actions' => :'actions',
38
+ :'bounds' => :'bounds',
39
+ :'children' => :'children',
40
+ :'description' => :'description',
41
+ :'id' => :'id',
42
+ :'name' => :'name',
43
+ :'role' => :'role',
44
+ :'states' => :'states'
45
+ }
46
+ end
47
+
48
+ # Returns attribute mapping this model knows about
49
+ def self.acceptable_attribute_map
50
+ attribute_map
51
+ end
52
+
53
+ # Returns all the JSON keys this model knows about
54
+ def self.acceptable_attributes
55
+ acceptable_attribute_map.values
56
+ end
57
+
58
+ # Attribute type mapping.
59
+ def self.openapi_types
60
+ {
61
+ :'actions' => :'Array<String>',
62
+ :'bounds' => :'AccessibilityBounds',
63
+ :'children' => :'Array<ComputerUseAccessibilityNode>',
64
+ :'description' => :'String',
65
+ :'id' => :'String',
66
+ :'name' => :'String',
67
+ :'role' => :'String',
68
+ :'states' => :'Array<String>'
69
+ }
70
+ end
71
+
72
+ # List of attributes with nullable: true
73
+ def self.openapi_nullable
74
+ Set.new([
75
+ ])
76
+ end
77
+
78
+ # Initializes the object
79
+ # @param [Hash] attributes Model attributes in the form of hash
80
+ def initialize(attributes = {})
81
+ if (!attributes.is_a?(Hash))
82
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DaytonaToolboxApiClient::ComputerUseAccessibilityNode` initialize method"
83
+ end
84
+
85
+ # check to see if the attribute exists and convert string to symbol for hash key
86
+ acceptable_attribute_map = self.class.acceptable_attribute_map
87
+ attributes = attributes.each_with_object({}) { |(k, v), h|
88
+ if (!acceptable_attribute_map.key?(k.to_sym))
89
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DaytonaToolboxApiClient::ComputerUseAccessibilityNode`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
90
+ end
91
+ h[k.to_sym] = v
92
+ }
93
+
94
+ if attributes.key?(:'actions')
95
+ if (value = attributes[:'actions']).is_a?(Array)
96
+ self.actions = value
97
+ end
98
+ end
99
+
100
+ if attributes.key?(:'bounds')
101
+ self.bounds = attributes[:'bounds']
102
+ end
103
+
104
+ if attributes.key?(:'children')
105
+ if (value = attributes[:'children']).is_a?(Array)
106
+ self.children = value
107
+ end
108
+ end
109
+
110
+ if attributes.key?(:'description')
111
+ self.description = attributes[:'description']
112
+ end
113
+
114
+ if attributes.key?(:'id')
115
+ self.id = attributes[:'id']
116
+ end
117
+
118
+ if attributes.key?(:'name')
119
+ self.name = attributes[:'name']
120
+ end
121
+
122
+ if attributes.key?(:'role')
123
+ self.role = attributes[:'role']
124
+ end
125
+
126
+ if attributes.key?(:'states')
127
+ if (value = attributes[:'states']).is_a?(Array)
128
+ self.states = value
129
+ end
130
+ end
131
+ end
132
+
133
+ # Show invalid properties with the reasons. Usually used together with valid?
134
+ # @return Array for valid properties with the reasons
135
+ def list_invalid_properties
136
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
137
+ invalid_properties = Array.new
138
+ invalid_properties
139
+ end
140
+
141
+ # Check to see if the all the properties in the model are valid
142
+ # @return true if the model is valid
143
+ def valid?
144
+ warn '[DEPRECATED] the `valid?` method is obsolete'
145
+ true
146
+ end
147
+
148
+ # Checks equality by comparing each attribute.
149
+ # @param [Object] Object to be compared
150
+ def ==(o)
151
+ return true if self.equal?(o)
152
+ self.class == o.class &&
153
+ actions == o.actions &&
154
+ bounds == o.bounds &&
155
+ children == o.children &&
156
+ description == o.description &&
157
+ id == o.id &&
158
+ name == o.name &&
159
+ role == o.role &&
160
+ states == o.states
161
+ end
162
+
163
+ # @see the `==` method
164
+ # @param [Object] Object to be compared
165
+ def eql?(o)
166
+ self == o
167
+ end
168
+
169
+ # Calculates hash code according to all attributes.
170
+ # @return [Integer] Hash code
171
+ def hash
172
+ [actions, bounds, children, description, id, name, role, states].hash
173
+ end
174
+
175
+ # Builds the object from hash
176
+ # @param [Hash] attributes Model attributes in the form of hash
177
+ # @return [Object] Returns the model itself
178
+ def self.build_from_hash(attributes)
179
+ return nil unless attributes.is_a?(Hash)
180
+ attributes = attributes.transform_keys(&:to_sym)
181
+ transformed_hash = {}
182
+ openapi_types.each_pair do |key, type|
183
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
184
+ transformed_hash["#{key}"] = nil
185
+ elsif type =~ /\AArray<(.*)>/i
186
+ # check to ensure the input is an array given that the attribute
187
+ # is documented as an array but the input is not
188
+ if attributes[attribute_map[key]].is_a?(Array)
189
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
190
+ end
191
+ elsif !attributes[attribute_map[key]].nil?
192
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
193
+ end
194
+ end
195
+ new(transformed_hash)
196
+ end
197
+
198
+ # Returns the object in the form of hash
199
+ # @return [Hash] Returns the object in the form of hash
200
+ def to_hash
201
+ hash = {}
202
+ self.class.attribute_map.each_pair do |attr, param|
203
+ value = self.send(attr)
204
+ if value.nil?
205
+ is_nullable = self.class.openapi_nullable.include?(attr)
206
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
207
+ end
208
+
209
+ hash[param] = _to_hash(value)
210
+ end
211
+ hash
212
+ end
213
+
214
+ end
215
+
216
+ end
@@ -0,0 +1,204 @@
1
+ =begin
2
+ #Daytona Toolbox API
3
+
4
+ #Daytona Toolbox API
5
+
6
+ The version of the OpenAPI document: v0.0.0-dev
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.21.0
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module DaytonaToolboxApiClient
17
+ class FindAccessibilityNodesRequest < ApiModelBase
18
+ attr_accessor :limit
19
+
20
+ attr_accessor :name
21
+
22
+ # \"exact\" | \"substring\" | \"regex\"
23
+ attr_accessor :name_match
24
+
25
+ attr_accessor :pid
26
+
27
+ attr_accessor :role
28
+
29
+ attr_accessor :scope
30
+
31
+ attr_accessor :states
32
+
33
+ # Attribute mapping from ruby-style variable name to JSON key.
34
+ def self.attribute_map
35
+ {
36
+ :'limit' => :'limit',
37
+ :'name' => :'name',
38
+ :'name_match' => :'nameMatch',
39
+ :'pid' => :'pid',
40
+ :'role' => :'role',
41
+ :'scope' => :'scope',
42
+ :'states' => :'states'
43
+ }
44
+ end
45
+
46
+ # Returns attribute mapping this model knows about
47
+ def self.acceptable_attribute_map
48
+ attribute_map
49
+ end
50
+
51
+ # Returns all the JSON keys this model knows about
52
+ def self.acceptable_attributes
53
+ acceptable_attribute_map.values
54
+ end
55
+
56
+ # Attribute type mapping.
57
+ def self.openapi_types
58
+ {
59
+ :'limit' => :'Integer',
60
+ :'name' => :'String',
61
+ :'name_match' => :'String',
62
+ :'pid' => :'Integer',
63
+ :'role' => :'String',
64
+ :'scope' => :'String',
65
+ :'states' => :'Array<String>'
66
+ }
67
+ end
68
+
69
+ # List of attributes with nullable: true
70
+ def self.openapi_nullable
71
+ Set.new([
72
+ ])
73
+ end
74
+
75
+ # Initializes the object
76
+ # @param [Hash] attributes Model attributes in the form of hash
77
+ def initialize(attributes = {})
78
+ if (!attributes.is_a?(Hash))
79
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DaytonaToolboxApiClient::FindAccessibilityNodesRequest` initialize method"
80
+ end
81
+
82
+ # check to see if the attribute exists and convert string to symbol for hash key
83
+ acceptable_attribute_map = self.class.acceptable_attribute_map
84
+ attributes = attributes.each_with_object({}) { |(k, v), h|
85
+ if (!acceptable_attribute_map.key?(k.to_sym))
86
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DaytonaToolboxApiClient::FindAccessibilityNodesRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
87
+ end
88
+ h[k.to_sym] = v
89
+ }
90
+
91
+ if attributes.key?(:'limit')
92
+ self.limit = attributes[:'limit']
93
+ end
94
+
95
+ if attributes.key?(:'name')
96
+ self.name = attributes[:'name']
97
+ end
98
+
99
+ if attributes.key?(:'name_match')
100
+ self.name_match = attributes[:'name_match']
101
+ end
102
+
103
+ if attributes.key?(:'pid')
104
+ self.pid = attributes[:'pid']
105
+ end
106
+
107
+ if attributes.key?(:'role')
108
+ self.role = attributes[:'role']
109
+ end
110
+
111
+ if attributes.key?(:'scope')
112
+ self.scope = attributes[:'scope']
113
+ end
114
+
115
+ if attributes.key?(:'states')
116
+ if (value = attributes[:'states']).is_a?(Array)
117
+ self.states = value
118
+ end
119
+ end
120
+ end
121
+
122
+ # Show invalid properties with the reasons. Usually used together with valid?
123
+ # @return Array for valid properties with the reasons
124
+ def list_invalid_properties
125
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
126
+ invalid_properties = Array.new
127
+ invalid_properties
128
+ end
129
+
130
+ # Check to see if the all the properties in the model are valid
131
+ # @return true if the model is valid
132
+ def valid?
133
+ warn '[DEPRECATED] the `valid?` method is obsolete'
134
+ true
135
+ end
136
+
137
+ # Checks equality by comparing each attribute.
138
+ # @param [Object] Object to be compared
139
+ def ==(o)
140
+ return true if self.equal?(o)
141
+ self.class == o.class &&
142
+ limit == o.limit &&
143
+ name == o.name &&
144
+ name_match == o.name_match &&
145
+ pid == o.pid &&
146
+ role == o.role &&
147
+ scope == o.scope &&
148
+ states == o.states
149
+ end
150
+
151
+ # @see the `==` method
152
+ # @param [Object] Object to be compared
153
+ def eql?(o)
154
+ self == o
155
+ end
156
+
157
+ # Calculates hash code according to all attributes.
158
+ # @return [Integer] Hash code
159
+ def hash
160
+ [limit, name, name_match, pid, role, scope, states].hash
161
+ end
162
+
163
+ # Builds the object from hash
164
+ # @param [Hash] attributes Model attributes in the form of hash
165
+ # @return [Object] Returns the model itself
166
+ def self.build_from_hash(attributes)
167
+ return nil unless attributes.is_a?(Hash)
168
+ attributes = attributes.transform_keys(&:to_sym)
169
+ transformed_hash = {}
170
+ openapi_types.each_pair do |key, type|
171
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
172
+ transformed_hash["#{key}"] = nil
173
+ elsif type =~ /\AArray<(.*)>/i
174
+ # check to ensure the input is an array given that the attribute
175
+ # is documented as an array but the input is not
176
+ if attributes[attribute_map[key]].is_a?(Array)
177
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
178
+ end
179
+ elsif !attributes[attribute_map[key]].nil?
180
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
181
+ end
182
+ end
183
+ new(transformed_hash)
184
+ end
185
+
186
+ # Returns the object in the form of hash
187
+ # @return [Hash] Returns the object in the form of hash
188
+ def to_hash
189
+ hash = {}
190
+ self.class.attribute_map.each_pair do |attr, param|
191
+ value = self.send(attr)
192
+ if value.nil?
193
+ is_nullable = self.class.openapi_nullable.include?(attr)
194
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
195
+ end
196
+
197
+ hash[param] = _to_hash(value)
198
+ end
199
+ hash
200
+ end
201
+
202
+ end
203
+
204
+ end
@@ -11,5 +11,5 @@ Generator version: 7.21.0
11
11
  =end
12
12
 
13
13
  module DaytonaToolboxApiClient
14
- VERSION = '0.175.0'
14
+ VERSION = '0.176.0'
15
15
  end
@@ -18,6 +18,12 @@ require 'daytona_toolbox_api_client/version'
18
18
  require 'daytona_toolbox_api_client/configuration'
19
19
 
20
20
  # Models
21
+ require 'daytona_toolbox_api_client/models/accessibility_bounds'
22
+ require 'daytona_toolbox_api_client/models/accessibility_invoke_request'
23
+ require 'daytona_toolbox_api_client/models/accessibility_node_request'
24
+ require 'daytona_toolbox_api_client/models/accessibility_nodes_response'
25
+ require 'daytona_toolbox_api_client/models/accessibility_set_value_request'
26
+ require 'daytona_toolbox_api_client/models/accessibility_tree_response'
21
27
  require 'daytona_toolbox_api_client/models/chart'
22
28
  require 'daytona_toolbox_api_client/models/chart_element'
23
29
  require 'daytona_toolbox_api_client/models/code_run_artifacts'
@@ -27,6 +33,7 @@ require 'daytona_toolbox_api_client/models/command'
27
33
  require 'daytona_toolbox_api_client/models/completion_context'
28
34
  require 'daytona_toolbox_api_client/models/completion_item'
29
35
  require 'daytona_toolbox_api_client/models/completion_list'
36
+ require 'daytona_toolbox_api_client/models/computer_use_accessibility_node'
30
37
  require 'daytona_toolbox_api_client/models/computer_use_start_response'
31
38
  require 'daytona_toolbox_api_client/models/computer_use_status_response'
32
39
  require 'daytona_toolbox_api_client/models/computer_use_stop_response'
@@ -39,6 +46,7 @@ require 'daytona_toolbox_api_client/models/execute_response'
39
46
  require 'daytona_toolbox_api_client/models/file_info'
40
47
  require 'daytona_toolbox_api_client/models/file_status'
41
48
  require 'daytona_toolbox_api_client/models/files_download_request'
49
+ require 'daytona_toolbox_api_client/models/find_accessibility_nodes_request'
42
50
  require 'daytona_toolbox_api_client/models/git_add_request'
43
51
  require 'daytona_toolbox_api_client/models/git_branch_request'
44
52
  require 'daytona_toolbox_api_client/models/git_checkout_request'
data/project.json CHANGED
@@ -31,7 +31,7 @@
31
31
  "options": {
32
32
  "commands": [
33
33
  "rm -rf libs/toolbox-api-client-ruby/lib",
34
- "yarn run openapi-generator-cli generate -i apps/daemon/pkg/toolbox/docs/swagger.json -g ruby -t hack/ruby-client/openapi-templates --name-mappings hash=_hash --additional-properties=gemAuthor=daytonaio,gemAuthorEmail=support@daytona.io,gemDescription=\\\"Daytona Toolbox API Client\\\",gemHomepage=\\\"https://github.com/daytonaio/daytona\\\",gemVersion=$DEFAULT_GEM_VERSION,gemName=daytona_toolbox_api_client,enumUnknownDefaultCase=true -o libs/toolbox-api-client-ruby",
34
+ "yarn run openapi-generator-cli generate -i apps/daemon/pkg/toolbox/docs/swagger.json -g ruby -t hack/ruby-client/openapi-templates --name-mappings hash=_hash --model-name-mappings computeruse.AccessibilityNode=ComputerUseAccessibilityNode --additional-properties=gemAuthor=daytonaio,gemAuthorEmail=support@daytona.io,gemDescription=\\\"Daytona Toolbox API Client\\\",gemHomepage=\\\"https://github.com/daytonaio/daytona\\\",gemVersion=$DEFAULT_GEM_VERSION,gemName=daytona_toolbox_api_client,enumUnknownDefaultCase=true -o libs/toolbox-api-client-ruby",
35
35
  "bash libs/toolbox-api-client-ruby/fix-gemspec.sh",
36
36
  "sed -i 's|OpenAPI-Generator/#{VERSION}/ruby|toolbox-api-client-ruby/#{VERSION}|' libs/toolbox-api-client-ruby/lib/daytona_toolbox_api_client/api_client.rb",
37
37
  "cd libs/toolbox-api-client-ruby && bundle install"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daytona_toolbox_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.175.0
4
+ version: 0.176.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - daytonaio
@@ -79,6 +79,12 @@ files:
79
79
  - lib/daytona_toolbox_api_client/api_error.rb
80
80
  - lib/daytona_toolbox_api_client/api_model_base.rb
81
81
  - lib/daytona_toolbox_api_client/configuration.rb
82
+ - lib/daytona_toolbox_api_client/models/accessibility_bounds.rb
83
+ - lib/daytona_toolbox_api_client/models/accessibility_invoke_request.rb
84
+ - lib/daytona_toolbox_api_client/models/accessibility_node_request.rb
85
+ - lib/daytona_toolbox_api_client/models/accessibility_nodes_response.rb
86
+ - lib/daytona_toolbox_api_client/models/accessibility_set_value_request.rb
87
+ - lib/daytona_toolbox_api_client/models/accessibility_tree_response.rb
82
88
  - lib/daytona_toolbox_api_client/models/chart.rb
83
89
  - lib/daytona_toolbox_api_client/models/chart_element.rb
84
90
  - lib/daytona_toolbox_api_client/models/code_run_artifacts.rb
@@ -88,6 +94,7 @@ files:
88
94
  - lib/daytona_toolbox_api_client/models/completion_context.rb
89
95
  - lib/daytona_toolbox_api_client/models/completion_item.rb
90
96
  - lib/daytona_toolbox_api_client/models/completion_list.rb
97
+ - lib/daytona_toolbox_api_client/models/computer_use_accessibility_node.rb
91
98
  - lib/daytona_toolbox_api_client/models/computer_use_start_response.rb
92
99
  - lib/daytona_toolbox_api_client/models/computer_use_status_response.rb
93
100
  - lib/daytona_toolbox_api_client/models/computer_use_stop_response.rb
@@ -100,6 +107,7 @@ files:
100
107
  - lib/daytona_toolbox_api_client/models/file_info.rb
101
108
  - lib/daytona_toolbox_api_client/models/file_status.rb
102
109
  - lib/daytona_toolbox_api_client/models/files_download_request.rb
110
+ - lib/daytona_toolbox_api_client/models/find_accessibility_nodes_request.rb
103
111
  - lib/daytona_toolbox_api_client/models/git_add_request.rb
104
112
  - lib/daytona_toolbox_api_client/models/git_branch_request.rb
105
113
  - lib/daytona_toolbox_api_client/models/git_checkout_request.rb