daytona_toolbox_api_client 0.193.0 → 0.194.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.
Files changed (25) hide show
  1. checksums.yaml +4 -4
  2. data/.openapi-generator/FILES +14 -1
  3. data/lib/daytona_toolbox_api_client/api/file_system_api.rb +5 -2
  4. data/lib/daytona_toolbox_api_client/api/git_api.rb +600 -4
  5. data/lib/daytona_toolbox_api_client/api/system_api.rb +79 -0
  6. data/lib/daytona_toolbox_api_client/models/file_info.rb +11 -1
  7. data/lib/daytona_toolbox_api_client/models/git_add_remote_request.rb +236 -0
  8. data/lib/daytona_toolbox_api_client/models/git_authenticate_request.rb +210 -0
  9. data/lib/daytona_toolbox_api_client/models/git_clone_request.rb +11 -1
  10. data/lib/daytona_toolbox_api_client/models/git_config_response.rb +148 -0
  11. data/lib/daytona_toolbox_api_client/models/git_configure_user_request.rb +210 -0
  12. data/lib/daytona_toolbox_api_client/models/git_init_request.rb +184 -0
  13. data/lib/daytona_toolbox_api_client/models/{git_repo_request.rb → git_pull_request.rb} +24 -4
  14. data/lib/daytona_toolbox_api_client/models/git_push_request.rb +212 -0
  15. data/lib/daytona_toolbox_api_client/models/git_remote.rb +190 -0
  16. data/lib/daytona_toolbox_api_client/models/git_reset_request.rb +196 -0
  17. data/lib/daytona_toolbox_api_client/models/git_restore_request.rb +222 -0
  18. data/lib/daytona_toolbox_api_client/models/git_set_config_request.rb +210 -0
  19. data/lib/daytona_toolbox_api_client/models/git_status.rb +24 -4
  20. data/lib/daytona_toolbox_api_client/models/list_branch_response.rb +14 -4
  21. data/lib/daytona_toolbox_api_client/models/list_remotes_response.rb +166 -0
  22. data/lib/daytona_toolbox_api_client/models/system_metrics.rb +228 -0
  23. data/lib/daytona_toolbox_api_client/version.rb +1 -1
  24. data/lib/daytona_toolbox_api_client.rb +14 -1
  25. metadata +15 -2
@@ -0,0 +1,166 @@
1
+ =begin
2
+ #Daytona Toolbox API
3
+
4
+ #Daytona Toolbox API. The base URL comes from the sandbox's `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
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 ListRemotesResponse < ApiModelBase
18
+ attr_accessor :remotes
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :'remotes' => :'remotes'
24
+ }
25
+ end
26
+
27
+ # Returns attribute mapping this model knows about
28
+ def self.acceptable_attribute_map
29
+ attribute_map
30
+ end
31
+
32
+ # Returns all the JSON keys this model knows about
33
+ def self.acceptable_attributes
34
+ acceptable_attribute_map.values
35
+ end
36
+
37
+ # Attribute type mapping.
38
+ def self.openapi_types
39
+ {
40
+ :'remotes' => :'Array<GitRemote>'
41
+ }
42
+ end
43
+
44
+ # List of attributes with nullable: true
45
+ def self.openapi_nullable
46
+ Set.new([
47
+ ])
48
+ end
49
+
50
+ # Initializes the object
51
+ # @param [Hash] attributes Model attributes in the form of hash
52
+ def initialize(attributes = {})
53
+ if (!attributes.is_a?(Hash))
54
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DaytonaToolboxApiClient::ListRemotesResponse` initialize method"
55
+ end
56
+
57
+ # check to see if the attribute exists and convert string to symbol for hash key
58
+ acceptable_attribute_map = self.class.acceptable_attribute_map
59
+ attributes = attributes.each_with_object({}) { |(k, v), h|
60
+ if (!acceptable_attribute_map.key?(k.to_sym))
61
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DaytonaToolboxApiClient::ListRemotesResponse`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
62
+ end
63
+ h[k.to_sym] = v
64
+ }
65
+
66
+ if attributes.key?(:'remotes')
67
+ if (value = attributes[:'remotes']).is_a?(Array)
68
+ self.remotes = value
69
+ end
70
+ else
71
+ self.remotes = nil
72
+ end
73
+ end
74
+
75
+ # Show invalid properties with the reasons. Usually used together with valid?
76
+ # @return Array for valid properties with the reasons
77
+ def list_invalid_properties
78
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
79
+ invalid_properties = Array.new
80
+ if @remotes.nil?
81
+ invalid_properties.push('invalid value for "remotes", remotes cannot be nil.')
82
+ end
83
+
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
+ return false if @remotes.nil?
92
+ true
93
+ end
94
+
95
+ # Custom attribute writer method with validation
96
+ # @param [Object] remotes Value to be assigned
97
+ def remotes=(remotes)
98
+ if remotes.nil?
99
+ fail ArgumentError, 'remotes cannot be nil'
100
+ end
101
+
102
+ @remotes = remotes
103
+ end
104
+
105
+ # Checks equality by comparing each attribute.
106
+ # @param [Object] Object to be compared
107
+ def ==(o)
108
+ return true if self.equal?(o)
109
+ self.class == o.class &&
110
+ remotes == o.remotes
111
+ end
112
+
113
+ # @see the `==` method
114
+ # @param [Object] Object to be compared
115
+ def eql?(o)
116
+ self == o
117
+ end
118
+
119
+ # Calculates hash code according to all attributes.
120
+ # @return [Integer] Hash code
121
+ def hash
122
+ [remotes].hash
123
+ end
124
+
125
+ # Builds the object from hash
126
+ # @param [Hash] attributes Model attributes in the form of hash
127
+ # @return [Object] Returns the model itself
128
+ def self.build_from_hash(attributes)
129
+ return nil unless attributes.is_a?(Hash)
130
+ attributes = attributes.transform_keys(&:to_sym)
131
+ transformed_hash = {}
132
+ openapi_types.each_pair do |key, type|
133
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
134
+ transformed_hash["#{key}"] = nil
135
+ elsif type =~ /\AArray<(.*)>/i
136
+ # check to ensure the input is an array given that the attribute
137
+ # is documented as an array but the input is not
138
+ if attributes[attribute_map[key]].is_a?(Array)
139
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
140
+ end
141
+ elsif !attributes[attribute_map[key]].nil?
142
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
143
+ end
144
+ end
145
+ new(transformed_hash)
146
+ end
147
+
148
+ # Returns the object in the form of hash
149
+ # @return [Hash] Returns the object in the form of hash
150
+ def to_hash
151
+ hash = {}
152
+ self.class.attribute_map.each_pair do |attr, param|
153
+ value = self.send(attr)
154
+ if value.nil?
155
+ is_nullable = self.class.openapi_nullable.include?(attr)
156
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
157
+ end
158
+
159
+ hash[param] = _to_hash(value)
160
+ end
161
+ hash
162
+ end
163
+
164
+ end
165
+
166
+ end
@@ -0,0 +1,228 @@
1
+ =begin
2
+ #Daytona Toolbox API
3
+
4
+ #Daytona Toolbox API. The base URL comes from the sandbox's `toolboxProxyUrl` field (returned in sandbox DTO by the main Daytona API) plus the sandbox ID: `{toolboxProxyUrl}/{sandboxId}/{endpoint}`. Default for Daytona Cloud: `https://proxy.app.daytona.io/toolbox/{sandboxId}`.
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 SystemMetrics < ApiModelBase
18
+ attr_accessor :cpu_count
19
+
20
+ attr_accessor :cpu_used_pct
21
+
22
+ attr_accessor :disk_free
23
+
24
+ attr_accessor :disk_total
25
+
26
+ attr_accessor :disk_used
27
+
28
+ attr_accessor :mem_cache
29
+
30
+ attr_accessor :mem_total
31
+
32
+ attr_accessor :mem_used
33
+
34
+ attr_accessor :timestamp
35
+
36
+ attr_accessor :timestamp_unix
37
+
38
+ # Attribute mapping from ruby-style variable name to JSON key.
39
+ def self.attribute_map
40
+ {
41
+ :'cpu_count' => :'cpuCount',
42
+ :'cpu_used_pct' => :'cpuUsedPct',
43
+ :'disk_free' => :'diskFree',
44
+ :'disk_total' => :'diskTotal',
45
+ :'disk_used' => :'diskUsed',
46
+ :'mem_cache' => :'memCache',
47
+ :'mem_total' => :'memTotal',
48
+ :'mem_used' => :'memUsed',
49
+ :'timestamp' => :'timestamp',
50
+ :'timestamp_unix' => :'timestampUnix'
51
+ }
52
+ end
53
+
54
+ # Returns attribute mapping this model knows about
55
+ def self.acceptable_attribute_map
56
+ attribute_map
57
+ end
58
+
59
+ # Returns all the JSON keys this model knows about
60
+ def self.acceptable_attributes
61
+ acceptable_attribute_map.values
62
+ end
63
+
64
+ # Attribute type mapping.
65
+ def self.openapi_types
66
+ {
67
+ :'cpu_count' => :'Integer',
68
+ :'cpu_used_pct' => :'Float',
69
+ :'disk_free' => :'Integer',
70
+ :'disk_total' => :'Integer',
71
+ :'disk_used' => :'Integer',
72
+ :'mem_cache' => :'Integer',
73
+ :'mem_total' => :'Integer',
74
+ :'mem_used' => :'Integer',
75
+ :'timestamp' => :'String',
76
+ :'timestamp_unix' => :'Integer'
77
+ }
78
+ end
79
+
80
+ # List of attributes with nullable: true
81
+ def self.openapi_nullable
82
+ Set.new([
83
+ ])
84
+ end
85
+
86
+ # Initializes the object
87
+ # @param [Hash] attributes Model attributes in the form of hash
88
+ def initialize(attributes = {})
89
+ if (!attributes.is_a?(Hash))
90
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DaytonaToolboxApiClient::SystemMetrics` initialize method"
91
+ end
92
+
93
+ # check to see if the attribute exists and convert string to symbol for hash key
94
+ acceptable_attribute_map = self.class.acceptable_attribute_map
95
+ attributes = attributes.each_with_object({}) { |(k, v), h|
96
+ if (!acceptable_attribute_map.key?(k.to_sym))
97
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DaytonaToolboxApiClient::SystemMetrics`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
98
+ end
99
+ h[k.to_sym] = v
100
+ }
101
+
102
+ if attributes.key?(:'cpu_count')
103
+ self.cpu_count = attributes[:'cpu_count']
104
+ end
105
+
106
+ if attributes.key?(:'cpu_used_pct')
107
+ self.cpu_used_pct = attributes[:'cpu_used_pct']
108
+ end
109
+
110
+ if attributes.key?(:'disk_free')
111
+ self.disk_free = attributes[:'disk_free']
112
+ end
113
+
114
+ if attributes.key?(:'disk_total')
115
+ self.disk_total = attributes[:'disk_total']
116
+ end
117
+
118
+ if attributes.key?(:'disk_used')
119
+ self.disk_used = attributes[:'disk_used']
120
+ end
121
+
122
+ if attributes.key?(:'mem_cache')
123
+ self.mem_cache = attributes[:'mem_cache']
124
+ end
125
+
126
+ if attributes.key?(:'mem_total')
127
+ self.mem_total = attributes[:'mem_total']
128
+ end
129
+
130
+ if attributes.key?(:'mem_used')
131
+ self.mem_used = attributes[:'mem_used']
132
+ end
133
+
134
+ if attributes.key?(:'timestamp')
135
+ self.timestamp = attributes[:'timestamp']
136
+ end
137
+
138
+ if attributes.key?(:'timestamp_unix')
139
+ self.timestamp_unix = attributes[:'timestamp_unix']
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
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
147
+ invalid_properties = Array.new
148
+ invalid_properties
149
+ end
150
+
151
+ # Check to see if the all the properties in the model are valid
152
+ # @return true if the model is valid
153
+ def valid?
154
+ warn '[DEPRECATED] the `valid?` method is obsolete'
155
+ true
156
+ end
157
+
158
+ # Checks equality by comparing each attribute.
159
+ # @param [Object] Object to be compared
160
+ def ==(o)
161
+ return true if self.equal?(o)
162
+ self.class == o.class &&
163
+ cpu_count == o.cpu_count &&
164
+ cpu_used_pct == o.cpu_used_pct &&
165
+ disk_free == o.disk_free &&
166
+ disk_total == o.disk_total &&
167
+ disk_used == o.disk_used &&
168
+ mem_cache == o.mem_cache &&
169
+ mem_total == o.mem_total &&
170
+ mem_used == o.mem_used &&
171
+ timestamp == o.timestamp &&
172
+ timestamp_unix == o.timestamp_unix
173
+ end
174
+
175
+ # @see the `==` method
176
+ # @param [Object] Object to be compared
177
+ def eql?(o)
178
+ self == o
179
+ end
180
+
181
+ # Calculates hash code according to all attributes.
182
+ # @return [Integer] Hash code
183
+ def hash
184
+ [cpu_count, cpu_used_pct, disk_free, disk_total, disk_used, mem_cache, mem_total, mem_used, timestamp, timestamp_unix].hash
185
+ end
186
+
187
+ # Builds the object from hash
188
+ # @param [Hash] attributes Model attributes in the form of hash
189
+ # @return [Object] Returns the model itself
190
+ def self.build_from_hash(attributes)
191
+ return nil unless attributes.is_a?(Hash)
192
+ attributes = attributes.transform_keys(&:to_sym)
193
+ transformed_hash = {}
194
+ openapi_types.each_pair do |key, type|
195
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
196
+ transformed_hash["#{key}"] = nil
197
+ elsif type =~ /\AArray<(.*)>/i
198
+ # check to ensure the input is an array given that the attribute
199
+ # is documented as an array but the input is not
200
+ if attributes[attribute_map[key]].is_a?(Array)
201
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
202
+ end
203
+ elsif !attributes[attribute_map[key]].nil?
204
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
205
+ end
206
+ end
207
+ new(transformed_hash)
208
+ end
209
+
210
+ # Returns the object in the form of hash
211
+ # @return [Hash] Returns the object in the form of hash
212
+ def to_hash
213
+ hash = {}
214
+ self.class.attribute_map.each_pair do |attr, param|
215
+ value = self.send(attr)
216
+ if value.nil?
217
+ is_nullable = self.class.openapi_nullable.include?(attr)
218
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
219
+ end
220
+
221
+ hash[param] = _to_hash(value)
222
+ end
223
+ hash
224
+ end
225
+
226
+ end
227
+
228
+ end
@@ -11,5 +11,5 @@ Generator version: 7.21.0
11
11
  =end
12
12
 
13
13
  module DaytonaToolboxApiClient
14
- VERSION = '0.193.0'
14
+ VERSION = '0.194.0'
15
15
  end
@@ -47,15 +47,25 @@ require 'daytona_toolbox_api_client/models/file_info'
47
47
  require 'daytona_toolbox_api_client/models/file_status'
48
48
  require 'daytona_toolbox_api_client/models/files_download_request'
49
49
  require 'daytona_toolbox_api_client/models/find_accessibility_nodes_request'
50
+ require 'daytona_toolbox_api_client/models/git_add_remote_request'
50
51
  require 'daytona_toolbox_api_client/models/git_add_request'
52
+ require 'daytona_toolbox_api_client/models/git_authenticate_request'
51
53
  require 'daytona_toolbox_api_client/models/git_branch_request'
52
54
  require 'daytona_toolbox_api_client/models/git_checkout_request'
53
55
  require 'daytona_toolbox_api_client/models/git_clone_request'
54
56
  require 'daytona_toolbox_api_client/models/git_commit_info'
55
57
  require 'daytona_toolbox_api_client/models/git_commit_request'
56
58
  require 'daytona_toolbox_api_client/models/git_commit_response'
59
+ require 'daytona_toolbox_api_client/models/git_config_response'
60
+ require 'daytona_toolbox_api_client/models/git_configure_user_request'
57
61
  require 'daytona_toolbox_api_client/models/git_delete_branch_request'
58
- require 'daytona_toolbox_api_client/models/git_repo_request'
62
+ require 'daytona_toolbox_api_client/models/git_init_request'
63
+ require 'daytona_toolbox_api_client/models/git_pull_request'
64
+ require 'daytona_toolbox_api_client/models/git_push_request'
65
+ require 'daytona_toolbox_api_client/models/git_remote'
66
+ require 'daytona_toolbox_api_client/models/git_reset_request'
67
+ require 'daytona_toolbox_api_client/models/git_restore_request'
68
+ require 'daytona_toolbox_api_client/models/git_set_config_request'
59
69
  require 'daytona_toolbox_api_client/models/git_status'
60
70
  require 'daytona_toolbox_api_client/models/initialize_request'
61
71
  require 'daytona_toolbox_api_client/models/interpreter_context'
@@ -66,6 +76,7 @@ require 'daytona_toolbox_api_client/models/keyboard_type_request'
66
76
  require 'daytona_toolbox_api_client/models/list_branch_response'
67
77
  require 'daytona_toolbox_api_client/models/list_contexts_response'
68
78
  require 'daytona_toolbox_api_client/models/list_recordings_response'
79
+ require 'daytona_toolbox_api_client/models/list_remotes_response'
69
80
  require 'daytona_toolbox_api_client/models/lsp_completion_params'
70
81
  require 'daytona_toolbox_api_client/models/lsp_document_request'
71
82
  require 'daytona_toolbox_api_client/models/lsp_location'
@@ -107,6 +118,7 @@ require 'daytona_toolbox_api_client/models/session_send_input_request'
107
118
  require 'daytona_toolbox_api_client/models/start_recording_request'
108
119
  require 'daytona_toolbox_api_client/models/status'
109
120
  require 'daytona_toolbox_api_client/models/stop_recording_request'
121
+ require 'daytona_toolbox_api_client/models/system_metrics'
110
122
  require 'daytona_toolbox_api_client/models/user_home_dir_response'
111
123
  require 'daytona_toolbox_api_client/models/window_info'
112
124
  require 'daytona_toolbox_api_client/models/windows_response'
@@ -122,6 +134,7 @@ require 'daytona_toolbox_api_client/api/lsp_api'
122
134
  require 'daytona_toolbox_api_client/api/port_api'
123
135
  require 'daytona_toolbox_api_client/api/process_api'
124
136
  require 'daytona_toolbox_api_client/api/server_api'
137
+ require 'daytona_toolbox_api_client/api/system_api'
125
138
 
126
139
  module DaytonaToolboxApiClient
127
140
  class << self
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.193.0
4
+ version: 0.194.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - daytona
@@ -75,6 +75,7 @@ files:
75
75
  - lib/daytona_toolbox_api_client/api/port_api.rb
76
76
  - lib/daytona_toolbox_api_client/api/process_api.rb
77
77
  - lib/daytona_toolbox_api_client/api/server_api.rb
78
+ - lib/daytona_toolbox_api_client/api/system_api.rb
78
79
  - lib/daytona_toolbox_api_client/api_client.rb
79
80
  - lib/daytona_toolbox_api_client/api_error.rb
80
81
  - lib/daytona_toolbox_api_client/api_model_base.rb
@@ -108,15 +109,25 @@ files:
108
109
  - lib/daytona_toolbox_api_client/models/file_status.rb
109
110
  - lib/daytona_toolbox_api_client/models/files_download_request.rb
110
111
  - lib/daytona_toolbox_api_client/models/find_accessibility_nodes_request.rb
112
+ - lib/daytona_toolbox_api_client/models/git_add_remote_request.rb
111
113
  - lib/daytona_toolbox_api_client/models/git_add_request.rb
114
+ - lib/daytona_toolbox_api_client/models/git_authenticate_request.rb
112
115
  - lib/daytona_toolbox_api_client/models/git_branch_request.rb
113
116
  - lib/daytona_toolbox_api_client/models/git_checkout_request.rb
114
117
  - lib/daytona_toolbox_api_client/models/git_clone_request.rb
115
118
  - lib/daytona_toolbox_api_client/models/git_commit_info.rb
116
119
  - lib/daytona_toolbox_api_client/models/git_commit_request.rb
117
120
  - lib/daytona_toolbox_api_client/models/git_commit_response.rb
121
+ - lib/daytona_toolbox_api_client/models/git_config_response.rb
122
+ - lib/daytona_toolbox_api_client/models/git_configure_user_request.rb
118
123
  - lib/daytona_toolbox_api_client/models/git_delete_branch_request.rb
119
- - lib/daytona_toolbox_api_client/models/git_repo_request.rb
124
+ - lib/daytona_toolbox_api_client/models/git_init_request.rb
125
+ - lib/daytona_toolbox_api_client/models/git_pull_request.rb
126
+ - lib/daytona_toolbox_api_client/models/git_push_request.rb
127
+ - lib/daytona_toolbox_api_client/models/git_remote.rb
128
+ - lib/daytona_toolbox_api_client/models/git_reset_request.rb
129
+ - lib/daytona_toolbox_api_client/models/git_restore_request.rb
130
+ - lib/daytona_toolbox_api_client/models/git_set_config_request.rb
120
131
  - lib/daytona_toolbox_api_client/models/git_status.rb
121
132
  - lib/daytona_toolbox_api_client/models/initialize_request.rb
122
133
  - lib/daytona_toolbox_api_client/models/interpreter_context.rb
@@ -127,6 +138,7 @@ files:
127
138
  - lib/daytona_toolbox_api_client/models/list_branch_response.rb
128
139
  - lib/daytona_toolbox_api_client/models/list_contexts_response.rb
129
140
  - lib/daytona_toolbox_api_client/models/list_recordings_response.rb
141
+ - lib/daytona_toolbox_api_client/models/list_remotes_response.rb
130
142
  - lib/daytona_toolbox_api_client/models/lsp_completion_params.rb
131
143
  - lib/daytona_toolbox_api_client/models/lsp_document_request.rb
132
144
  - lib/daytona_toolbox_api_client/models/lsp_location.rb
@@ -168,6 +180,7 @@ files:
168
180
  - lib/daytona_toolbox_api_client/models/start_recording_request.rb
169
181
  - lib/daytona_toolbox_api_client/models/status.rb
170
182
  - lib/daytona_toolbox_api_client/models/stop_recording_request.rb
183
+ - lib/daytona_toolbox_api_client/models/system_metrics.rb
171
184
  - lib/daytona_toolbox_api_client/models/user_home_dir_response.rb
172
185
  - lib/daytona_toolbox_api_client/models/window_info.rb
173
186
  - lib/daytona_toolbox_api_client/models/windows_response.rb