@daytonaio/api-client 0.112.3 → 0.113.1-alpha.1
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.
- package/package.json +1 -1
- package/src/api/preview-api.d.ts +3 -3
- package/src/api/toolbox-api.d.ts +824 -564
- package/src/api/toolbox-api.js +1245 -985
- package/src/api/toolbox-api.js.map +1 -1
- package/src/models/daytona-configuration.d.ts +6 -0
package/src/api/toolbox-api.d.ts
CHANGED
|
@@ -80,79 +80,86 @@ import type { WorkDirResponse } from '../models';
|
|
|
80
80
|
export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
81
81
|
/**
|
|
82
82
|
* Click mouse at specified coordinates
|
|
83
|
-
* @summary Click mouse
|
|
83
|
+
* @summary [DEPRECATED] Click mouse
|
|
84
84
|
* @param {string} sandboxId
|
|
85
85
|
* @param {MouseClickRequest} mouseClickRequest
|
|
86
86
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
87
87
|
* @param {*} [options] Override http request option.
|
|
88
|
+
* @deprecated
|
|
88
89
|
* @throws {RequiredError}
|
|
89
90
|
*/
|
|
90
|
-
|
|
91
|
+
clickMouseDeprecated: (sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
91
92
|
/**
|
|
92
93
|
* Create folder inside sandbox
|
|
93
|
-
* @summary Create folder
|
|
94
|
+
* @summary [DEPRECATED] Create folder
|
|
94
95
|
* @param {string} sandboxId
|
|
95
96
|
* @param {string} path
|
|
96
97
|
* @param {string} mode
|
|
97
98
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
98
99
|
* @param {*} [options] Override http request option.
|
|
100
|
+
* @deprecated
|
|
99
101
|
* @throws {RequiredError}
|
|
100
102
|
*/
|
|
101
|
-
|
|
103
|
+
createFolderDeprecated: (sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
102
104
|
/**
|
|
103
105
|
* Create a new PTY session in the sandbox
|
|
104
|
-
* @summary Create PTY session
|
|
106
|
+
* @summary [DEPRECATED] Create PTY session
|
|
105
107
|
* @param {string} sandboxId
|
|
106
108
|
* @param {PtyCreateRequest} ptyCreateRequest
|
|
107
109
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
108
110
|
* @param {*} [options] Override http request option.
|
|
111
|
+
* @deprecated
|
|
109
112
|
* @throws {RequiredError}
|
|
110
113
|
*/
|
|
111
|
-
|
|
114
|
+
createPTYSessionDeprecated: (sandboxId: string, ptyCreateRequest: PtyCreateRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
112
115
|
/**
|
|
113
116
|
* Create a new session in the sandbox
|
|
114
|
-
* @summary Create session
|
|
117
|
+
* @summary [DEPRECATED] Create session
|
|
115
118
|
* @param {string} sandboxId
|
|
116
119
|
* @param {CreateSessionRequest} createSessionRequest
|
|
117
120
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
118
121
|
* @param {*} [options] Override http request option.
|
|
122
|
+
* @deprecated
|
|
119
123
|
* @throws {RequiredError}
|
|
120
124
|
*/
|
|
121
|
-
|
|
125
|
+
createSessionDeprecated: (sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
122
126
|
/**
|
|
123
127
|
* Delete file inside sandbox
|
|
124
|
-
* @summary Delete file
|
|
128
|
+
* @summary [DEPRECATED] Delete file
|
|
125
129
|
* @param {string} sandboxId
|
|
126
130
|
* @param {string} path
|
|
127
131
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
128
132
|
* @param {boolean} [recursive]
|
|
129
133
|
* @param {*} [options] Override http request option.
|
|
134
|
+
* @deprecated
|
|
130
135
|
* @throws {RequiredError}
|
|
131
136
|
*/
|
|
132
|
-
|
|
137
|
+
deleteFileDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
133
138
|
/**
|
|
134
139
|
* Delete a PTY session and terminate the associated process
|
|
135
|
-
* @summary Delete PTY session
|
|
140
|
+
* @summary [DEPRECATED] Delete PTY session
|
|
136
141
|
* @param {string} sandboxId
|
|
137
142
|
* @param {string} sessionId
|
|
138
143
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
139
144
|
* @param {*} [options] Override http request option.
|
|
145
|
+
* @deprecated
|
|
140
146
|
* @throws {RequiredError}
|
|
141
147
|
*/
|
|
142
|
-
|
|
148
|
+
deletePTYSessionDeprecated: (sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
143
149
|
/**
|
|
144
150
|
* Delete a specific session
|
|
145
|
-
* @summary Delete session
|
|
151
|
+
* @summary [DEPRECATED] Delete session
|
|
146
152
|
* @param {string} sandboxId
|
|
147
153
|
* @param {string} sessionId
|
|
148
154
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
149
155
|
* @param {*} [options] Override http request option.
|
|
156
|
+
* @deprecated
|
|
150
157
|
* @throws {RequiredError}
|
|
151
158
|
*/
|
|
152
|
-
|
|
159
|
+
deleteSessionDeprecated: (sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
153
160
|
/**
|
|
154
161
|
* Download file from sandbox
|
|
155
|
-
* @summary Download file
|
|
162
|
+
* @summary [DEPRECATED] Download file
|
|
156
163
|
* @param {string} sandboxId
|
|
157
164
|
* @param {string} path
|
|
158
165
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -160,514 +167,563 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
160
167
|
* @deprecated
|
|
161
168
|
* @throws {RequiredError}
|
|
162
169
|
*/
|
|
163
|
-
|
|
170
|
+
downloadFileDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
164
171
|
/**
|
|
165
172
|
* Streams back a multipart/form-data bundle of the requested paths
|
|
166
|
-
* @summary Download multiple files
|
|
173
|
+
* @summary [DEPRECATED] Download multiple files
|
|
167
174
|
* @param {string} sandboxId
|
|
168
175
|
* @param {DownloadFiles} downloadFiles
|
|
169
176
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
170
177
|
* @param {*} [options] Override http request option.
|
|
178
|
+
* @deprecated
|
|
171
179
|
* @throws {RequiredError}
|
|
172
180
|
*/
|
|
173
|
-
|
|
181
|
+
downloadFilesDeprecated: (sandboxId: string, downloadFiles: DownloadFiles, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
174
182
|
/**
|
|
175
183
|
* Drag mouse from start to end coordinates
|
|
176
|
-
* @summary Drag mouse
|
|
184
|
+
* @summary [DEPRECATED] Drag mouse
|
|
177
185
|
* @param {string} sandboxId
|
|
178
186
|
* @param {MouseDragRequest} mouseDragRequest
|
|
179
187
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
180
188
|
* @param {*} [options] Override http request option.
|
|
189
|
+
* @deprecated
|
|
181
190
|
* @throws {RequiredError}
|
|
182
191
|
*/
|
|
183
|
-
|
|
192
|
+
dragMouseDeprecated: (sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
184
193
|
/**
|
|
185
194
|
* Execute command synchronously inside sandbox
|
|
186
|
-
* @summary Execute command
|
|
195
|
+
* @summary [DEPRECATED] Execute command
|
|
187
196
|
* @param {string} sandboxId
|
|
188
197
|
* @param {ExecuteRequest} executeRequest
|
|
189
198
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
190
199
|
* @param {*} [options] Override http request option.
|
|
200
|
+
* @deprecated
|
|
191
201
|
* @throws {RequiredError}
|
|
192
202
|
*/
|
|
193
|
-
|
|
203
|
+
executeCommandDeprecated: (sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
194
204
|
/**
|
|
195
205
|
* Execute a command in a specific session
|
|
196
|
-
* @summary Execute command in session
|
|
206
|
+
* @summary [DEPRECATED] Execute command in session
|
|
197
207
|
* @param {string} sandboxId
|
|
198
208
|
* @param {string} sessionId
|
|
199
209
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
200
210
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
201
211
|
* @param {*} [options] Override http request option.
|
|
212
|
+
* @deprecated
|
|
202
213
|
* @throws {RequiredError}
|
|
203
214
|
*/
|
|
204
|
-
|
|
215
|
+
executeSessionCommandDeprecated: (sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
205
216
|
/**
|
|
206
217
|
* Search for text/pattern inside sandbox files
|
|
207
|
-
* @summary Search for text/pattern in files
|
|
218
|
+
* @summary [DEPRECATED] Search for text/pattern in files
|
|
208
219
|
* @param {string} sandboxId
|
|
209
220
|
* @param {string} path
|
|
210
221
|
* @param {string} pattern
|
|
211
222
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
212
223
|
* @param {*} [options] Override http request option.
|
|
224
|
+
* @deprecated
|
|
213
225
|
* @throws {RequiredError}
|
|
214
226
|
*/
|
|
215
|
-
|
|
227
|
+
findInFilesDeprecated: (sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
216
228
|
/**
|
|
217
229
|
* Get status of all VNC desktop processes
|
|
218
|
-
* @summary Get computer use status
|
|
230
|
+
* @summary [DEPRECATED] Get computer use status
|
|
219
231
|
* @param {string} sandboxId
|
|
220
232
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
221
233
|
* @param {*} [options] Override http request option.
|
|
234
|
+
* @deprecated
|
|
222
235
|
* @throws {RequiredError}
|
|
223
236
|
*/
|
|
224
|
-
|
|
237
|
+
getComputerUseStatusDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
225
238
|
/**
|
|
226
239
|
* Get information about displays
|
|
227
|
-
* @summary Get display info
|
|
240
|
+
* @summary [DEPRECATED] Get display info
|
|
228
241
|
* @param {string} sandboxId
|
|
229
242
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
230
243
|
* @param {*} [options] Override http request option.
|
|
244
|
+
* @deprecated
|
|
231
245
|
* @throws {RequiredError}
|
|
232
246
|
*/
|
|
233
|
-
|
|
247
|
+
getDisplayInfoDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
234
248
|
/**
|
|
235
249
|
* Get file info inside sandbox
|
|
236
|
-
* @summary Get file info
|
|
250
|
+
* @summary [DEPRECATED] Get file info
|
|
237
251
|
* @param {string} sandboxId
|
|
238
252
|
* @param {string} path
|
|
239
253
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
240
254
|
* @param {*} [options] Override http request option.
|
|
255
|
+
* @deprecated
|
|
241
256
|
* @throws {RequiredError}
|
|
242
257
|
*/
|
|
243
|
-
|
|
258
|
+
getFileInfoDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
244
259
|
/**
|
|
245
260
|
* Get current mouse cursor position
|
|
246
|
-
* @summary Get mouse position
|
|
261
|
+
* @summary [DEPRECATED] Get mouse position
|
|
247
262
|
* @param {string} sandboxId
|
|
248
263
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
249
264
|
* @param {*} [options] Override http request option.
|
|
265
|
+
* @deprecated
|
|
250
266
|
* @throws {RequiredError}
|
|
251
267
|
*/
|
|
252
|
-
|
|
268
|
+
getMousePositionDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
253
269
|
/**
|
|
254
270
|
* Get PTY session information by ID
|
|
255
|
-
* @summary Get PTY session
|
|
271
|
+
* @summary [DEPRECATED] Get PTY session
|
|
256
272
|
* @param {string} sandboxId
|
|
257
273
|
* @param {string} sessionId
|
|
258
274
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
259
275
|
* @param {*} [options] Override http request option.
|
|
276
|
+
* @deprecated
|
|
260
277
|
* @throws {RequiredError}
|
|
261
278
|
*/
|
|
262
|
-
|
|
279
|
+
getPTYSessionDeprecated: (sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
263
280
|
/**
|
|
264
281
|
* Get error logs for a specific VNC process
|
|
265
|
-
* @summary Get process errors
|
|
282
|
+
* @summary [DEPRECATED] Get process errors
|
|
266
283
|
* @param {string} processName
|
|
267
284
|
* @param {string} sandboxId
|
|
268
285
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
269
286
|
* @param {*} [options] Override http request option.
|
|
287
|
+
* @deprecated
|
|
270
288
|
* @throws {RequiredError}
|
|
271
289
|
*/
|
|
272
|
-
|
|
290
|
+
getProcessErrorsDeprecated: (processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
273
291
|
/**
|
|
274
292
|
* Get logs for a specific VNC process
|
|
275
|
-
* @summary Get process logs
|
|
293
|
+
* @summary [DEPRECATED] Get process logs
|
|
276
294
|
* @param {string} processName
|
|
277
295
|
* @param {string} sandboxId
|
|
278
296
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
279
297
|
* @param {*} [options] Override http request option.
|
|
298
|
+
* @deprecated
|
|
280
299
|
* @throws {RequiredError}
|
|
281
300
|
*/
|
|
282
|
-
|
|
301
|
+
getProcessLogsDeprecated: (processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
283
302
|
/**
|
|
284
303
|
* Get status of a specific VNC process
|
|
285
|
-
* @summary Get process status
|
|
304
|
+
* @summary [DEPRECATED] Get process status
|
|
286
305
|
* @param {string} processName
|
|
287
306
|
* @param {string} sandboxId
|
|
288
307
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
289
308
|
* @param {*} [options] Override http request option.
|
|
309
|
+
* @deprecated
|
|
290
310
|
* @throws {RequiredError}
|
|
291
311
|
*/
|
|
292
|
-
|
|
312
|
+
getProcessStatusDeprecated: (processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
293
313
|
/**
|
|
294
314
|
*
|
|
295
|
-
* @summary Get sandbox project dir
|
|
315
|
+
* @summary [DEPRECATED] Get sandbox project dir
|
|
296
316
|
* @param {string} sandboxId
|
|
297
317
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
298
318
|
* @param {*} [options] Override http request option.
|
|
299
319
|
* @deprecated
|
|
300
320
|
* @throws {RequiredError}
|
|
301
321
|
*/
|
|
302
|
-
|
|
322
|
+
getProjectDirDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
303
323
|
/**
|
|
304
|
-
* Get session by ID
|
|
305
|
-
* @summary Get session
|
|
324
|
+
* Get session command by ID
|
|
325
|
+
* @summary [DEPRECATED] Get session command
|
|
306
326
|
* @param {string} sandboxId
|
|
307
327
|
* @param {string} sessionId
|
|
328
|
+
* @param {string} commandId
|
|
308
329
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
309
330
|
* @param {*} [options] Override http request option.
|
|
331
|
+
* @deprecated
|
|
310
332
|
* @throws {RequiredError}
|
|
311
333
|
*/
|
|
312
|
-
|
|
334
|
+
getSessionCommandDeprecated: (sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
313
335
|
/**
|
|
314
|
-
* Get
|
|
315
|
-
* @summary Get
|
|
336
|
+
* Get logs for a specific command in a session
|
|
337
|
+
* @summary [DEPRECATED] Get command logs
|
|
316
338
|
* @param {string} sandboxId
|
|
317
339
|
* @param {string} sessionId
|
|
318
340
|
* @param {string} commandId
|
|
319
341
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
342
|
+
* @param {boolean} [follow] Whether to stream the logs
|
|
320
343
|
* @param {*} [options] Override http request option.
|
|
344
|
+
* @deprecated
|
|
321
345
|
* @throws {RequiredError}
|
|
322
346
|
*/
|
|
323
|
-
|
|
347
|
+
getSessionCommandLogsDeprecated: (sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
324
348
|
/**
|
|
325
|
-
* Get
|
|
326
|
-
* @summary Get
|
|
349
|
+
* Get session by ID
|
|
350
|
+
* @summary [DEPRECATED] Get session
|
|
327
351
|
* @param {string} sandboxId
|
|
328
352
|
* @param {string} sessionId
|
|
329
|
-
* @param {string} commandId
|
|
330
353
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
331
|
-
* @param {boolean} [follow] Whether to stream the logs
|
|
332
354
|
* @param {*} [options] Override http request option.
|
|
355
|
+
* @deprecated
|
|
333
356
|
* @throws {RequiredError}
|
|
334
357
|
*/
|
|
335
|
-
|
|
358
|
+
getSessionDeprecated: (sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
336
359
|
/**
|
|
337
360
|
*
|
|
338
|
-
* @summary Get sandbox user home dir
|
|
361
|
+
* @summary [DEPRECATED] Get sandbox user home dir
|
|
339
362
|
* @param {string} sandboxId
|
|
340
363
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
341
364
|
* @param {*} [options] Override http request option.
|
|
365
|
+
* @deprecated
|
|
342
366
|
* @throws {RequiredError}
|
|
343
367
|
*/
|
|
344
|
-
|
|
368
|
+
getUserHomeDirDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
345
369
|
/**
|
|
346
370
|
* Get list of open windows
|
|
347
|
-
* @summary Get windows
|
|
371
|
+
* @summary [DEPRECATED] Get windows
|
|
348
372
|
* @param {string} sandboxId
|
|
349
373
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
350
374
|
* @param {*} [options] Override http request option.
|
|
375
|
+
* @deprecated
|
|
351
376
|
* @throws {RequiredError}
|
|
352
377
|
*/
|
|
353
|
-
|
|
378
|
+
getWindowsDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
354
379
|
/**
|
|
355
380
|
*
|
|
356
|
-
* @summary Get sandbox work-dir
|
|
381
|
+
* @summary [DEPRECATED] Get sandbox work-dir
|
|
357
382
|
* @param {string} sandboxId
|
|
358
383
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
359
384
|
* @param {*} [options] Override http request option.
|
|
385
|
+
* @deprecated
|
|
360
386
|
* @throws {RequiredError}
|
|
361
387
|
*/
|
|
362
|
-
|
|
388
|
+
getWorkDirDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
363
389
|
/**
|
|
364
390
|
* Add files to git commit
|
|
365
|
-
* @summary Add files
|
|
391
|
+
* @summary [DEPRECATED] Add files
|
|
366
392
|
* @param {string} sandboxId
|
|
367
393
|
* @param {GitAddRequest} gitAddRequest
|
|
368
394
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
369
395
|
* @param {*} [options] Override http request option.
|
|
396
|
+
* @deprecated
|
|
370
397
|
* @throws {RequiredError}
|
|
371
398
|
*/
|
|
372
|
-
|
|
399
|
+
gitAddFilesDeprecated: (sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
373
400
|
/**
|
|
374
401
|
* Checkout branch or commit in git repository
|
|
375
|
-
* @summary Checkout branch
|
|
402
|
+
* @summary [DEPRECATED] Checkout branch
|
|
376
403
|
* @param {string} sandboxId
|
|
377
404
|
* @param {GitCheckoutRequest} gitCheckoutRequest
|
|
378
405
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
379
406
|
* @param {*} [options] Override http request option.
|
|
407
|
+
* @deprecated
|
|
380
408
|
* @throws {RequiredError}
|
|
381
409
|
*/
|
|
382
|
-
|
|
410
|
+
gitCheckoutBranchDeprecated: (sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
383
411
|
/**
|
|
384
412
|
* Clone git repository
|
|
385
|
-
* @summary Clone repository
|
|
413
|
+
* @summary [DEPRECATED] Clone repository
|
|
386
414
|
* @param {string} sandboxId
|
|
387
415
|
* @param {GitCloneRequest} gitCloneRequest
|
|
388
416
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
389
417
|
* @param {*} [options] Override http request option.
|
|
418
|
+
* @deprecated
|
|
390
419
|
* @throws {RequiredError}
|
|
391
420
|
*/
|
|
392
|
-
|
|
421
|
+
gitCloneRepositoryDeprecated: (sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
393
422
|
/**
|
|
394
423
|
* Commit changes to git repository
|
|
395
|
-
* @summary Commit changes
|
|
424
|
+
* @summary [DEPRECATED] Commit changes
|
|
396
425
|
* @param {string} sandboxId
|
|
397
426
|
* @param {GitCommitRequest} gitCommitRequest
|
|
398
427
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
399
428
|
* @param {*} [options] Override http request option.
|
|
429
|
+
* @deprecated
|
|
400
430
|
* @throws {RequiredError}
|
|
401
431
|
*/
|
|
402
|
-
|
|
432
|
+
gitCommitChangesDeprecated: (sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
403
433
|
/**
|
|
404
434
|
* Create branch on git repository
|
|
405
|
-
* @summary Create branch
|
|
435
|
+
* @summary [DEPRECATED] Create branch
|
|
406
436
|
* @param {string} sandboxId
|
|
407
437
|
* @param {GitBranchRequest} gitBranchRequest
|
|
408
438
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
409
439
|
* @param {*} [options] Override http request option.
|
|
440
|
+
* @deprecated
|
|
410
441
|
* @throws {RequiredError}
|
|
411
442
|
*/
|
|
412
|
-
|
|
443
|
+
gitCreateBranchDeprecated: (sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
413
444
|
/**
|
|
414
445
|
* Delete branch on git repository
|
|
415
|
-
* @summary Delete branch
|
|
446
|
+
* @summary [DEPRECATED] Delete branch
|
|
416
447
|
* @param {string} sandboxId
|
|
417
448
|
* @param {GitDeleteBranchRequest} gitDeleteBranchRequest
|
|
418
449
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
419
450
|
* @param {*} [options] Override http request option.
|
|
451
|
+
* @deprecated
|
|
420
452
|
* @throws {RequiredError}
|
|
421
453
|
*/
|
|
422
|
-
|
|
454
|
+
gitDeleteBranchDeprecated: (sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
423
455
|
/**
|
|
424
456
|
* Get commit history from git repository
|
|
425
|
-
* @summary Get commit history
|
|
457
|
+
* @summary [DEPRECATED] Get commit history
|
|
426
458
|
* @param {string} sandboxId
|
|
427
459
|
* @param {string} path
|
|
428
460
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
429
461
|
* @param {*} [options] Override http request option.
|
|
462
|
+
* @deprecated
|
|
430
463
|
* @throws {RequiredError}
|
|
431
464
|
*/
|
|
432
|
-
|
|
465
|
+
gitGetHistoryDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
433
466
|
/**
|
|
434
467
|
* Get status from git repository
|
|
435
|
-
* @summary Get git status
|
|
468
|
+
* @summary [DEPRECATED] Get git status
|
|
436
469
|
* @param {string} sandboxId
|
|
437
470
|
* @param {string} path
|
|
438
471
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
439
472
|
* @param {*} [options] Override http request option.
|
|
473
|
+
* @deprecated
|
|
440
474
|
* @throws {RequiredError}
|
|
441
475
|
*/
|
|
442
|
-
|
|
476
|
+
gitGetStatusDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
443
477
|
/**
|
|
444
478
|
* Get branch list from git repository
|
|
445
|
-
* @summary Get branch list
|
|
479
|
+
* @summary [DEPRECATED] Get branch list
|
|
446
480
|
* @param {string} sandboxId
|
|
447
481
|
* @param {string} path
|
|
448
482
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
449
483
|
* @param {*} [options] Override http request option.
|
|
484
|
+
* @deprecated
|
|
450
485
|
* @throws {RequiredError}
|
|
451
486
|
*/
|
|
452
|
-
|
|
487
|
+
gitListBranchesDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
453
488
|
/**
|
|
454
489
|
* Pull changes from remote
|
|
455
|
-
* @summary Pull changes
|
|
490
|
+
* @summary [DEPRECATED] Pull changes
|
|
456
491
|
* @param {string} sandboxId
|
|
457
492
|
* @param {GitRepoRequest} gitRepoRequest
|
|
458
493
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
459
494
|
* @param {*} [options] Override http request option.
|
|
495
|
+
* @deprecated
|
|
460
496
|
* @throws {RequiredError}
|
|
461
497
|
*/
|
|
462
|
-
|
|
498
|
+
gitPullChangesDeprecated: (sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
463
499
|
/**
|
|
464
500
|
* Push changes to remote
|
|
465
|
-
* @summary Push changes
|
|
501
|
+
* @summary [DEPRECATED] Push changes
|
|
466
502
|
* @param {string} sandboxId
|
|
467
503
|
* @param {GitRepoRequest} gitRepoRequest
|
|
468
504
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
469
505
|
* @param {*} [options] Override http request option.
|
|
506
|
+
* @deprecated
|
|
470
507
|
* @throws {RequiredError}
|
|
471
508
|
*/
|
|
472
|
-
|
|
509
|
+
gitPushChangesDeprecated: (sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
473
510
|
/**
|
|
474
511
|
*
|
|
475
|
-
* @summary List files
|
|
512
|
+
* @summary [DEPRECATED] List files
|
|
476
513
|
* @param {string} sandboxId
|
|
477
514
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
478
515
|
* @param {string} [path]
|
|
479
516
|
* @param {*} [options] Override http request option.
|
|
517
|
+
* @deprecated
|
|
480
518
|
* @throws {RequiredError}
|
|
481
519
|
*/
|
|
482
|
-
|
|
520
|
+
listFilesDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
483
521
|
/**
|
|
484
522
|
* List all active PTY sessions in the sandbox
|
|
485
|
-
* @summary List PTY sessions
|
|
523
|
+
* @summary [DEPRECATED] List PTY sessions
|
|
486
524
|
* @param {string} sandboxId
|
|
487
525
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
488
526
|
* @param {*} [options] Override http request option.
|
|
527
|
+
* @deprecated
|
|
489
528
|
* @throws {RequiredError}
|
|
490
529
|
*/
|
|
491
|
-
|
|
530
|
+
listPTYSessionsDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
492
531
|
/**
|
|
493
532
|
* List all active sessions in the sandbox
|
|
494
|
-
* @summary List sessions
|
|
533
|
+
* @summary [DEPRECATED] List sessions
|
|
495
534
|
* @param {string} sandboxId
|
|
496
535
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
497
536
|
* @param {*} [options] Override http request option.
|
|
537
|
+
* @deprecated
|
|
498
538
|
* @throws {RequiredError}
|
|
499
539
|
*/
|
|
500
|
-
|
|
540
|
+
listSessionsDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
501
541
|
/**
|
|
502
542
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
503
|
-
* @summary Get Lsp Completions
|
|
543
|
+
* @summary [DEPRECATED] Get Lsp Completions
|
|
504
544
|
* @param {string} sandboxId
|
|
505
545
|
* @param {LspCompletionParams} lspCompletionParams
|
|
506
546
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
507
547
|
* @param {*} [options] Override http request option.
|
|
548
|
+
* @deprecated
|
|
508
549
|
* @throws {RequiredError}
|
|
509
550
|
*/
|
|
510
|
-
|
|
551
|
+
lspCompletionsDeprecated: (sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
511
552
|
/**
|
|
512
553
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
513
|
-
* @summary Call Lsp DidClose
|
|
554
|
+
* @summary [DEPRECATED] Call Lsp DidClose
|
|
514
555
|
* @param {string} sandboxId
|
|
515
556
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
516
557
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
517
558
|
* @param {*} [options] Override http request option.
|
|
559
|
+
* @deprecated
|
|
518
560
|
* @throws {RequiredError}
|
|
519
561
|
*/
|
|
520
|
-
|
|
562
|
+
lspDidCloseDeprecated: (sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
521
563
|
/**
|
|
522
564
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
523
|
-
* @summary Call Lsp DidOpen
|
|
565
|
+
* @summary [DEPRECATED] Call Lsp DidOpen
|
|
524
566
|
* @param {string} sandboxId
|
|
525
567
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
526
568
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
527
569
|
* @param {*} [options] Override http request option.
|
|
570
|
+
* @deprecated
|
|
528
571
|
* @throws {RequiredError}
|
|
529
572
|
*/
|
|
530
|
-
|
|
573
|
+
lspDidOpenDeprecated: (sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
531
574
|
/**
|
|
532
575
|
* The document symbol request is sent from the client to the server.
|
|
533
|
-
* @summary Call Lsp DocumentSymbols
|
|
576
|
+
* @summary [DEPRECATED] Call Lsp DocumentSymbols
|
|
534
577
|
* @param {string} sandboxId
|
|
535
578
|
* @param {string} languageId
|
|
536
579
|
* @param {string} pathToProject
|
|
537
580
|
* @param {string} uri
|
|
538
581
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
539
582
|
* @param {*} [options] Override http request option.
|
|
583
|
+
* @deprecated
|
|
540
584
|
* @throws {RequiredError}
|
|
541
585
|
*/
|
|
542
|
-
|
|
586
|
+
lspDocumentSymbolsDeprecated: (sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
543
587
|
/**
|
|
544
588
|
* Start Lsp server process inside sandbox project
|
|
545
|
-
* @summary Start Lsp server
|
|
589
|
+
* @summary [DEPRECATED] Start Lsp server
|
|
546
590
|
* @param {string} sandboxId
|
|
547
591
|
* @param {LspServerRequest} lspServerRequest
|
|
548
592
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
549
593
|
* @param {*} [options] Override http request option.
|
|
594
|
+
* @deprecated
|
|
550
595
|
* @throws {RequiredError}
|
|
551
596
|
*/
|
|
552
|
-
|
|
597
|
+
lspStartDeprecated: (sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
553
598
|
/**
|
|
554
599
|
* Stop Lsp server process inside sandbox project
|
|
555
|
-
* @summary Stop Lsp server
|
|
600
|
+
* @summary [DEPRECATED] Stop Lsp server
|
|
556
601
|
* @param {string} sandboxId
|
|
557
602
|
* @param {LspServerRequest} lspServerRequest
|
|
558
603
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
559
604
|
* @param {*} [options] Override http request option.
|
|
605
|
+
* @deprecated
|
|
560
606
|
* @throws {RequiredError}
|
|
561
607
|
*/
|
|
562
|
-
|
|
608
|
+
lspStopDeprecated: (sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
563
609
|
/**
|
|
564
610
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
565
|
-
* @summary Call Lsp WorkspaceSymbols
|
|
611
|
+
* @summary [DEPRECATED] Call Lsp WorkspaceSymbols
|
|
566
612
|
* @param {string} sandboxId
|
|
567
613
|
* @param {string} languageId
|
|
568
614
|
* @param {string} pathToProject
|
|
569
615
|
* @param {string} query
|
|
570
616
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
571
617
|
* @param {*} [options] Override http request option.
|
|
618
|
+
* @deprecated
|
|
572
619
|
* @throws {RequiredError}
|
|
573
620
|
*/
|
|
574
|
-
|
|
621
|
+
lspWorkspaceSymbolsDeprecated: (sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
575
622
|
/**
|
|
576
623
|
* Move file inside sandbox
|
|
577
|
-
* @summary Move file
|
|
624
|
+
* @summary [DEPRECATED] Move file
|
|
578
625
|
* @param {string} sandboxId
|
|
579
626
|
* @param {string} source
|
|
580
627
|
* @param {string} destination
|
|
581
628
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
582
629
|
* @param {*} [options] Override http request option.
|
|
630
|
+
* @deprecated
|
|
583
631
|
* @throws {RequiredError}
|
|
584
632
|
*/
|
|
585
|
-
|
|
633
|
+
moveFileDeprecated: (sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
586
634
|
/**
|
|
587
635
|
* Move mouse cursor to specified coordinates
|
|
588
|
-
* @summary Move mouse
|
|
636
|
+
* @summary [DEPRECATED] Move mouse
|
|
589
637
|
* @param {string} sandboxId
|
|
590
638
|
* @param {MouseMoveRequest} mouseMoveRequest
|
|
591
639
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
592
640
|
* @param {*} [options] Override http request option.
|
|
641
|
+
* @deprecated
|
|
593
642
|
* @throws {RequiredError}
|
|
594
643
|
*/
|
|
595
|
-
|
|
644
|
+
moveMouseDeprecated: (sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
596
645
|
/**
|
|
597
646
|
* Press a hotkey combination
|
|
598
|
-
* @summary Press hotkey
|
|
647
|
+
* @summary [DEPRECATED] Press hotkey
|
|
599
648
|
* @param {string} sandboxId
|
|
600
649
|
* @param {KeyboardHotkeyRequest} keyboardHotkeyRequest
|
|
601
650
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
602
651
|
* @param {*} [options] Override http request option.
|
|
652
|
+
* @deprecated
|
|
603
653
|
* @throws {RequiredError}
|
|
604
654
|
*/
|
|
605
|
-
|
|
655
|
+
pressHotkeyDeprecated: (sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
606
656
|
/**
|
|
607
657
|
* Press a key with optional modifiers
|
|
608
|
-
* @summary Press key
|
|
658
|
+
* @summary [DEPRECATED] Press key
|
|
609
659
|
* @param {string} sandboxId
|
|
610
660
|
* @param {KeyboardPressRequest} keyboardPressRequest
|
|
611
661
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
612
662
|
* @param {*} [options] Override http request option.
|
|
663
|
+
* @deprecated
|
|
613
664
|
* @throws {RequiredError}
|
|
614
665
|
*/
|
|
615
|
-
|
|
666
|
+
pressKeyDeprecated: (sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
616
667
|
/**
|
|
617
668
|
* Replace text/pattern in multiple files inside sandbox
|
|
618
|
-
* @summary Replace in files
|
|
669
|
+
* @summary [DEPRECATED] Replace in files
|
|
619
670
|
* @param {string} sandboxId
|
|
620
671
|
* @param {ReplaceRequest} replaceRequest
|
|
621
672
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
622
673
|
* @param {*} [options] Override http request option.
|
|
674
|
+
* @deprecated
|
|
623
675
|
* @throws {RequiredError}
|
|
624
676
|
*/
|
|
625
|
-
|
|
677
|
+
replaceInFilesDeprecated: (sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
626
678
|
/**
|
|
627
679
|
* Resize a PTY session
|
|
628
|
-
* @summary Resize PTY session
|
|
680
|
+
* @summary [DEPRECATED] Resize PTY session
|
|
629
681
|
* @param {string} sandboxId
|
|
630
682
|
* @param {string} sessionId
|
|
631
683
|
* @param {PtyResizeRequest} ptyResizeRequest
|
|
632
684
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
633
685
|
* @param {*} [options] Override http request option.
|
|
686
|
+
* @deprecated
|
|
634
687
|
* @throws {RequiredError}
|
|
635
688
|
*/
|
|
636
|
-
|
|
689
|
+
resizePTYSessionDeprecated: (sandboxId: string, sessionId: string, ptyResizeRequest: PtyResizeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
637
690
|
/**
|
|
638
691
|
* Restart a specific VNC process
|
|
639
|
-
* @summary Restart process
|
|
692
|
+
* @summary [DEPRECATED] Restart process
|
|
640
693
|
* @param {string} processName
|
|
641
694
|
* @param {string} sandboxId
|
|
642
695
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
643
696
|
* @param {*} [options] Override http request option.
|
|
697
|
+
* @deprecated
|
|
644
698
|
* @throws {RequiredError}
|
|
645
699
|
*/
|
|
646
|
-
|
|
700
|
+
restartProcessDeprecated: (processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
647
701
|
/**
|
|
648
702
|
* Scroll mouse at specified coordinates
|
|
649
|
-
* @summary Scroll mouse
|
|
703
|
+
* @summary [DEPRECATED] Scroll mouse
|
|
650
704
|
* @param {string} sandboxId
|
|
651
705
|
* @param {MouseScrollRequest} mouseScrollRequest
|
|
652
706
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
653
707
|
* @param {*} [options] Override http request option.
|
|
708
|
+
* @deprecated
|
|
654
709
|
* @throws {RequiredError}
|
|
655
710
|
*/
|
|
656
|
-
|
|
711
|
+
scrollMouseDeprecated: (sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
657
712
|
/**
|
|
658
713
|
* Search for files inside sandbox
|
|
659
|
-
* @summary Search files
|
|
714
|
+
* @summary [DEPRECATED] Search files
|
|
660
715
|
* @param {string} sandboxId
|
|
661
716
|
* @param {string} path
|
|
662
717
|
* @param {string} pattern
|
|
663
718
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
664
719
|
* @param {*} [options] Override http request option.
|
|
720
|
+
* @deprecated
|
|
665
721
|
* @throws {RequiredError}
|
|
666
722
|
*/
|
|
667
|
-
|
|
723
|
+
searchFilesDeprecated: (sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
668
724
|
/**
|
|
669
725
|
* Set file owner/group/permissions inside sandbox
|
|
670
|
-
* @summary Set file permissions
|
|
726
|
+
* @summary [DEPRECATED] Set file permissions
|
|
671
727
|
* @param {string} sandboxId
|
|
672
728
|
* @param {string} path
|
|
673
729
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -675,30 +731,33 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
675
731
|
* @param {string} [group]
|
|
676
732
|
* @param {string} [mode]
|
|
677
733
|
* @param {*} [options] Override http request option.
|
|
734
|
+
* @deprecated
|
|
678
735
|
* @throws {RequiredError}
|
|
679
736
|
*/
|
|
680
|
-
|
|
737
|
+
setFilePermissionsDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
681
738
|
/**
|
|
682
739
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
683
|
-
* @summary Start computer use processes
|
|
740
|
+
* @summary [DEPRECATED] Start computer use processes
|
|
684
741
|
* @param {string} sandboxId
|
|
685
742
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
686
743
|
* @param {*} [options] Override http request option.
|
|
744
|
+
* @deprecated
|
|
687
745
|
* @throws {RequiredError}
|
|
688
746
|
*/
|
|
689
|
-
|
|
747
|
+
startComputerUseDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
690
748
|
/**
|
|
691
749
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
692
|
-
* @summary Stop computer use processes
|
|
750
|
+
* @summary [DEPRECATED] Stop computer use processes
|
|
693
751
|
* @param {string} sandboxId
|
|
694
752
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
695
753
|
* @param {*} [options] Override http request option.
|
|
754
|
+
* @deprecated
|
|
696
755
|
* @throws {RequiredError}
|
|
697
756
|
*/
|
|
698
|
-
|
|
757
|
+
stopComputerUseDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
699
758
|
/**
|
|
700
759
|
* Take a compressed screenshot of a specific region
|
|
701
|
-
* @summary Take compressed region screenshot
|
|
760
|
+
* @summary [DEPRECATED] Take compressed region screenshot
|
|
702
761
|
* @param {string} sandboxId
|
|
703
762
|
* @param {number} height
|
|
704
763
|
* @param {number} width
|
|
@@ -710,12 +769,13 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
710
769
|
* @param {string} [format]
|
|
711
770
|
* @param {boolean} [showCursor]
|
|
712
771
|
* @param {*} [options] Override http request option.
|
|
772
|
+
* @deprecated
|
|
713
773
|
* @throws {RequiredError}
|
|
714
774
|
*/
|
|
715
|
-
|
|
775
|
+
takeCompressedRegionScreenshotDeprecated: (sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
716
776
|
/**
|
|
717
777
|
* Take a compressed screenshot with format, quality, and scale options
|
|
718
|
-
* @summary Take compressed screenshot
|
|
778
|
+
* @summary [DEPRECATED] Take compressed screenshot
|
|
719
779
|
* @param {string} sandboxId
|
|
720
780
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
721
781
|
* @param {number} [scale]
|
|
@@ -723,12 +783,13 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
723
783
|
* @param {string} [format]
|
|
724
784
|
* @param {boolean} [showCursor]
|
|
725
785
|
* @param {*} [options] Override http request option.
|
|
786
|
+
* @deprecated
|
|
726
787
|
* @throws {RequiredError}
|
|
727
788
|
*/
|
|
728
|
-
|
|
789
|
+
takeCompressedScreenshotDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
729
790
|
/**
|
|
730
791
|
* Take a screenshot of a specific region
|
|
731
|
-
* @summary Take region screenshot
|
|
792
|
+
* @summary [DEPRECATED] Take region screenshot
|
|
732
793
|
* @param {string} sandboxId
|
|
733
794
|
* @param {number} height
|
|
734
795
|
* @param {number} width
|
|
@@ -737,32 +798,35 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
737
798
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
738
799
|
* @param {boolean} [showCursor]
|
|
739
800
|
* @param {*} [options] Override http request option.
|
|
801
|
+
* @deprecated
|
|
740
802
|
* @throws {RequiredError}
|
|
741
803
|
*/
|
|
742
|
-
|
|
804
|
+
takeRegionScreenshotDeprecated: (sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
743
805
|
/**
|
|
744
806
|
* Take a screenshot of the entire screen
|
|
745
|
-
* @summary Take screenshot
|
|
807
|
+
* @summary [DEPRECATED] Take screenshot
|
|
746
808
|
* @param {string} sandboxId
|
|
747
809
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
748
810
|
* @param {boolean} [showCursor]
|
|
749
811
|
* @param {*} [options] Override http request option.
|
|
812
|
+
* @deprecated
|
|
750
813
|
* @throws {RequiredError}
|
|
751
814
|
*/
|
|
752
|
-
|
|
815
|
+
takeScreenshotDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
753
816
|
/**
|
|
754
817
|
* Type text using keyboard
|
|
755
|
-
* @summary Type text
|
|
818
|
+
* @summary [DEPRECATED] Type text
|
|
756
819
|
* @param {string} sandboxId
|
|
757
820
|
* @param {KeyboardTypeRequest} keyboardTypeRequest
|
|
758
821
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
759
822
|
* @param {*} [options] Override http request option.
|
|
823
|
+
* @deprecated
|
|
760
824
|
* @throws {RequiredError}
|
|
761
825
|
*/
|
|
762
|
-
|
|
826
|
+
typeTextDeprecated: (sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
763
827
|
/**
|
|
764
828
|
* Upload file inside sandbox
|
|
765
|
-
* @summary Upload file
|
|
829
|
+
* @summary [DEPRECATED] Upload file
|
|
766
830
|
* @param {string} sandboxId
|
|
767
831
|
* @param {string} path
|
|
768
832
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -771,16 +835,17 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
771
835
|
* @deprecated
|
|
772
836
|
* @throws {RequiredError}
|
|
773
837
|
*/
|
|
774
|
-
|
|
838
|
+
uploadFileDeprecated: (sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
775
839
|
/**
|
|
776
840
|
* Upload multiple files inside sandbox
|
|
777
|
-
* @summary Upload multiple files
|
|
841
|
+
* @summary [DEPRECATED] Upload multiple files
|
|
778
842
|
* @param {string} sandboxId
|
|
779
843
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
780
844
|
* @param {*} [options] Override http request option.
|
|
845
|
+
* @deprecated
|
|
781
846
|
* @throws {RequiredError}
|
|
782
847
|
*/
|
|
783
|
-
|
|
848
|
+
uploadFilesDeprecated: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
784
849
|
};
|
|
785
850
|
/**
|
|
786
851
|
* ToolboxApi - functional programming interface
|
|
@@ -789,79 +854,86 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
789
854
|
export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
790
855
|
/**
|
|
791
856
|
* Click mouse at specified coordinates
|
|
792
|
-
* @summary Click mouse
|
|
857
|
+
* @summary [DEPRECATED] Click mouse
|
|
793
858
|
* @param {string} sandboxId
|
|
794
859
|
* @param {MouseClickRequest} mouseClickRequest
|
|
795
860
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
796
861
|
* @param {*} [options] Override http request option.
|
|
862
|
+
* @deprecated
|
|
797
863
|
* @throws {RequiredError}
|
|
798
864
|
*/
|
|
799
|
-
|
|
865
|
+
clickMouseDeprecated(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseClickResponse>>;
|
|
800
866
|
/**
|
|
801
867
|
* Create folder inside sandbox
|
|
802
|
-
* @summary Create folder
|
|
868
|
+
* @summary [DEPRECATED] Create folder
|
|
803
869
|
* @param {string} sandboxId
|
|
804
870
|
* @param {string} path
|
|
805
871
|
* @param {string} mode
|
|
806
872
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
807
873
|
* @param {*} [options] Override http request option.
|
|
874
|
+
* @deprecated
|
|
808
875
|
* @throws {RequiredError}
|
|
809
876
|
*/
|
|
810
|
-
|
|
877
|
+
createFolderDeprecated(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
811
878
|
/**
|
|
812
879
|
* Create a new PTY session in the sandbox
|
|
813
|
-
* @summary Create PTY session
|
|
880
|
+
* @summary [DEPRECATED] Create PTY session
|
|
814
881
|
* @param {string} sandboxId
|
|
815
882
|
* @param {PtyCreateRequest} ptyCreateRequest
|
|
816
883
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
817
884
|
* @param {*} [options] Override http request option.
|
|
885
|
+
* @deprecated
|
|
818
886
|
* @throws {RequiredError}
|
|
819
887
|
*/
|
|
820
|
-
|
|
888
|
+
createPTYSessionDeprecated(sandboxId: string, ptyCreateRequest: PtyCreateRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PtyCreateResponse>>;
|
|
821
889
|
/**
|
|
822
890
|
* Create a new session in the sandbox
|
|
823
|
-
* @summary Create session
|
|
891
|
+
* @summary [DEPRECATED] Create session
|
|
824
892
|
* @param {string} sandboxId
|
|
825
893
|
* @param {CreateSessionRequest} createSessionRequest
|
|
826
894
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
827
895
|
* @param {*} [options] Override http request option.
|
|
896
|
+
* @deprecated
|
|
828
897
|
* @throws {RequiredError}
|
|
829
898
|
*/
|
|
830
|
-
|
|
899
|
+
createSessionDeprecated(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
831
900
|
/**
|
|
832
901
|
* Delete file inside sandbox
|
|
833
|
-
* @summary Delete file
|
|
902
|
+
* @summary [DEPRECATED] Delete file
|
|
834
903
|
* @param {string} sandboxId
|
|
835
904
|
* @param {string} path
|
|
836
905
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
837
906
|
* @param {boolean} [recursive]
|
|
838
907
|
* @param {*} [options] Override http request option.
|
|
908
|
+
* @deprecated
|
|
839
909
|
* @throws {RequiredError}
|
|
840
910
|
*/
|
|
841
|
-
|
|
911
|
+
deleteFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
842
912
|
/**
|
|
843
913
|
* Delete a PTY session and terminate the associated process
|
|
844
|
-
* @summary Delete PTY session
|
|
914
|
+
* @summary [DEPRECATED] Delete PTY session
|
|
845
915
|
* @param {string} sandboxId
|
|
846
916
|
* @param {string} sessionId
|
|
847
917
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
848
918
|
* @param {*} [options] Override http request option.
|
|
919
|
+
* @deprecated
|
|
849
920
|
* @throws {RequiredError}
|
|
850
921
|
*/
|
|
851
|
-
|
|
922
|
+
deletePTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
852
923
|
/**
|
|
853
924
|
* Delete a specific session
|
|
854
|
-
* @summary Delete session
|
|
925
|
+
* @summary [DEPRECATED] Delete session
|
|
855
926
|
* @param {string} sandboxId
|
|
856
927
|
* @param {string} sessionId
|
|
857
928
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
858
929
|
* @param {*} [options] Override http request option.
|
|
930
|
+
* @deprecated
|
|
859
931
|
* @throws {RequiredError}
|
|
860
932
|
*/
|
|
861
|
-
|
|
933
|
+
deleteSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
862
934
|
/**
|
|
863
935
|
* Download file from sandbox
|
|
864
|
-
* @summary Download file
|
|
936
|
+
* @summary [DEPRECATED] Download file
|
|
865
937
|
* @param {string} sandboxId
|
|
866
938
|
* @param {string} path
|
|
867
939
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -869,514 +941,563 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
869
941
|
* @deprecated
|
|
870
942
|
* @throws {RequiredError}
|
|
871
943
|
*/
|
|
872
|
-
|
|
944
|
+
downloadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
873
945
|
/**
|
|
874
946
|
* Streams back a multipart/form-data bundle of the requested paths
|
|
875
|
-
* @summary Download multiple files
|
|
947
|
+
* @summary [DEPRECATED] Download multiple files
|
|
876
948
|
* @param {string} sandboxId
|
|
877
949
|
* @param {DownloadFiles} downloadFiles
|
|
878
950
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
879
951
|
* @param {*} [options] Override http request option.
|
|
952
|
+
* @deprecated
|
|
880
953
|
* @throws {RequiredError}
|
|
881
954
|
*/
|
|
882
|
-
|
|
955
|
+
downloadFilesDeprecated(sandboxId: string, downloadFiles: DownloadFiles, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
883
956
|
/**
|
|
884
957
|
* Drag mouse from start to end coordinates
|
|
885
|
-
* @summary Drag mouse
|
|
958
|
+
* @summary [DEPRECATED] Drag mouse
|
|
886
959
|
* @param {string} sandboxId
|
|
887
960
|
* @param {MouseDragRequest} mouseDragRequest
|
|
888
961
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
889
962
|
* @param {*} [options] Override http request option.
|
|
963
|
+
* @deprecated
|
|
890
964
|
* @throws {RequiredError}
|
|
891
965
|
*/
|
|
892
|
-
|
|
966
|
+
dragMouseDeprecated(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseDragResponse>>;
|
|
893
967
|
/**
|
|
894
968
|
* Execute command synchronously inside sandbox
|
|
895
|
-
* @summary Execute command
|
|
969
|
+
* @summary [DEPRECATED] Execute command
|
|
896
970
|
* @param {string} sandboxId
|
|
897
971
|
* @param {ExecuteRequest} executeRequest
|
|
898
972
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
899
973
|
* @param {*} [options] Override http request option.
|
|
974
|
+
* @deprecated
|
|
900
975
|
* @throws {RequiredError}
|
|
901
976
|
*/
|
|
902
|
-
|
|
977
|
+
executeCommandDeprecated(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteResponse>>;
|
|
903
978
|
/**
|
|
904
979
|
* Execute a command in a specific session
|
|
905
|
-
* @summary Execute command in session
|
|
980
|
+
* @summary [DEPRECATED] Execute command in session
|
|
906
981
|
* @param {string} sandboxId
|
|
907
982
|
* @param {string} sessionId
|
|
908
983
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
909
984
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
910
985
|
* @param {*} [options] Override http request option.
|
|
986
|
+
* @deprecated
|
|
911
987
|
* @throws {RequiredError}
|
|
912
988
|
*/
|
|
913
|
-
|
|
989
|
+
executeSessionCommandDeprecated(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionExecuteResponse>>;
|
|
914
990
|
/**
|
|
915
991
|
* Search for text/pattern inside sandbox files
|
|
916
|
-
* @summary Search for text/pattern in files
|
|
992
|
+
* @summary [DEPRECATED] Search for text/pattern in files
|
|
917
993
|
* @param {string} sandboxId
|
|
918
994
|
* @param {string} path
|
|
919
995
|
* @param {string} pattern
|
|
920
996
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
921
997
|
* @param {*} [options] Override http request option.
|
|
998
|
+
* @deprecated
|
|
922
999
|
* @throws {RequiredError}
|
|
923
1000
|
*/
|
|
924
|
-
|
|
1001
|
+
findInFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Match>>>;
|
|
925
1002
|
/**
|
|
926
1003
|
* Get status of all VNC desktop processes
|
|
927
|
-
* @summary Get computer use status
|
|
1004
|
+
* @summary [DEPRECATED] Get computer use status
|
|
928
1005
|
* @param {string} sandboxId
|
|
929
1006
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
930
1007
|
* @param {*} [options] Override http request option.
|
|
1008
|
+
* @deprecated
|
|
931
1009
|
* @throws {RequiredError}
|
|
932
1010
|
*/
|
|
933
|
-
|
|
1011
|
+
getComputerUseStatusDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStatusResponse>>;
|
|
934
1012
|
/**
|
|
935
1013
|
* Get information about displays
|
|
936
|
-
* @summary Get display info
|
|
1014
|
+
* @summary [DEPRECATED] Get display info
|
|
937
1015
|
* @param {string} sandboxId
|
|
938
1016
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
939
1017
|
* @param {*} [options] Override http request option.
|
|
1018
|
+
* @deprecated
|
|
940
1019
|
* @throws {RequiredError}
|
|
941
1020
|
*/
|
|
942
|
-
|
|
1021
|
+
getDisplayInfoDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DisplayInfoResponse>>;
|
|
943
1022
|
/**
|
|
944
1023
|
* Get file info inside sandbox
|
|
945
|
-
* @summary Get file info
|
|
1024
|
+
* @summary [DEPRECATED] Get file info
|
|
946
1025
|
* @param {string} sandboxId
|
|
947
1026
|
* @param {string} path
|
|
948
1027
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
949
1028
|
* @param {*} [options] Override http request option.
|
|
1029
|
+
* @deprecated
|
|
950
1030
|
* @throws {RequiredError}
|
|
951
1031
|
*/
|
|
952
|
-
|
|
1032
|
+
getFileInfoDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FileInfo>>;
|
|
953
1033
|
/**
|
|
954
1034
|
* Get current mouse cursor position
|
|
955
|
-
* @summary Get mouse position
|
|
1035
|
+
* @summary [DEPRECATED] Get mouse position
|
|
956
1036
|
* @param {string} sandboxId
|
|
957
1037
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
958
1038
|
* @param {*} [options] Override http request option.
|
|
1039
|
+
* @deprecated
|
|
959
1040
|
* @throws {RequiredError}
|
|
960
1041
|
*/
|
|
961
|
-
|
|
1042
|
+
getMousePositionDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MousePosition>>;
|
|
962
1043
|
/**
|
|
963
1044
|
* Get PTY session information by ID
|
|
964
|
-
* @summary Get PTY session
|
|
1045
|
+
* @summary [DEPRECATED] Get PTY session
|
|
965
1046
|
* @param {string} sandboxId
|
|
966
1047
|
* @param {string} sessionId
|
|
967
1048
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
968
1049
|
* @param {*} [options] Override http request option.
|
|
1050
|
+
* @deprecated
|
|
969
1051
|
* @throws {RequiredError}
|
|
970
1052
|
*/
|
|
971
|
-
|
|
1053
|
+
getPTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PtySessionInfo>>;
|
|
972
1054
|
/**
|
|
973
1055
|
* Get error logs for a specific VNC process
|
|
974
|
-
* @summary Get process errors
|
|
1056
|
+
* @summary [DEPRECATED] Get process errors
|
|
975
1057
|
* @param {string} processName
|
|
976
1058
|
* @param {string} sandboxId
|
|
977
1059
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
978
1060
|
* @param {*} [options] Override http request option.
|
|
1061
|
+
* @deprecated
|
|
979
1062
|
* @throws {RequiredError}
|
|
980
1063
|
*/
|
|
981
|
-
|
|
1064
|
+
getProcessErrorsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessErrorsResponse>>;
|
|
982
1065
|
/**
|
|
983
1066
|
* Get logs for a specific VNC process
|
|
984
|
-
* @summary Get process logs
|
|
1067
|
+
* @summary [DEPRECATED] Get process logs
|
|
985
1068
|
* @param {string} processName
|
|
986
1069
|
* @param {string} sandboxId
|
|
987
1070
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
988
1071
|
* @param {*} [options] Override http request option.
|
|
1072
|
+
* @deprecated
|
|
989
1073
|
* @throws {RequiredError}
|
|
990
1074
|
*/
|
|
991
|
-
|
|
1075
|
+
getProcessLogsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessLogsResponse>>;
|
|
992
1076
|
/**
|
|
993
1077
|
* Get status of a specific VNC process
|
|
994
|
-
* @summary Get process status
|
|
1078
|
+
* @summary [DEPRECATED] Get process status
|
|
995
1079
|
* @param {string} processName
|
|
996
1080
|
* @param {string} sandboxId
|
|
997
1081
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
998
1082
|
* @param {*} [options] Override http request option.
|
|
1083
|
+
* @deprecated
|
|
999
1084
|
* @throws {RequiredError}
|
|
1000
1085
|
*/
|
|
1001
|
-
|
|
1086
|
+
getProcessStatusDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessStatusResponse>>;
|
|
1002
1087
|
/**
|
|
1003
1088
|
*
|
|
1004
|
-
* @summary Get sandbox project dir
|
|
1089
|
+
* @summary [DEPRECATED] Get sandbox project dir
|
|
1005
1090
|
* @param {string} sandboxId
|
|
1006
1091
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1007
1092
|
* @param {*} [options] Override http request option.
|
|
1008
1093
|
* @deprecated
|
|
1009
1094
|
* @throws {RequiredError}
|
|
1010
1095
|
*/
|
|
1011
|
-
|
|
1096
|
+
getProjectDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectDirResponse>>;
|
|
1012
1097
|
/**
|
|
1013
|
-
* Get session by ID
|
|
1014
|
-
* @summary Get session
|
|
1098
|
+
* Get session command by ID
|
|
1099
|
+
* @summary [DEPRECATED] Get session command
|
|
1015
1100
|
* @param {string} sandboxId
|
|
1016
1101
|
* @param {string} sessionId
|
|
1102
|
+
* @param {string} commandId
|
|
1017
1103
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1018
1104
|
* @param {*} [options] Override http request option.
|
|
1105
|
+
* @deprecated
|
|
1019
1106
|
* @throws {RequiredError}
|
|
1020
1107
|
*/
|
|
1021
|
-
|
|
1108
|
+
getSessionCommandDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Command>>;
|
|
1022
1109
|
/**
|
|
1023
|
-
* Get
|
|
1024
|
-
* @summary Get
|
|
1110
|
+
* Get logs for a specific command in a session
|
|
1111
|
+
* @summary [DEPRECATED] Get command logs
|
|
1025
1112
|
* @param {string} sandboxId
|
|
1026
1113
|
* @param {string} sessionId
|
|
1027
1114
|
* @param {string} commandId
|
|
1028
1115
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1116
|
+
* @param {boolean} [follow] Whether to stream the logs
|
|
1029
1117
|
* @param {*} [options] Override http request option.
|
|
1118
|
+
* @deprecated
|
|
1030
1119
|
* @throws {RequiredError}
|
|
1031
1120
|
*/
|
|
1032
|
-
|
|
1121
|
+
getSessionCommandLogsDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1033
1122
|
/**
|
|
1034
|
-
* Get
|
|
1035
|
-
* @summary Get
|
|
1123
|
+
* Get session by ID
|
|
1124
|
+
* @summary [DEPRECATED] Get session
|
|
1036
1125
|
* @param {string} sandboxId
|
|
1037
1126
|
* @param {string} sessionId
|
|
1038
|
-
* @param {string} commandId
|
|
1039
1127
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1040
|
-
* @param {boolean} [follow] Whether to stream the logs
|
|
1041
1128
|
* @param {*} [options] Override http request option.
|
|
1129
|
+
* @deprecated
|
|
1042
1130
|
* @throws {RequiredError}
|
|
1043
1131
|
*/
|
|
1044
|
-
|
|
1132
|
+
getSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Session>>;
|
|
1045
1133
|
/**
|
|
1046
1134
|
*
|
|
1047
|
-
* @summary Get sandbox user home dir
|
|
1135
|
+
* @summary [DEPRECATED] Get sandbox user home dir
|
|
1048
1136
|
* @param {string} sandboxId
|
|
1049
1137
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1050
1138
|
* @param {*} [options] Override http request option.
|
|
1139
|
+
* @deprecated
|
|
1051
1140
|
* @throws {RequiredError}
|
|
1052
1141
|
*/
|
|
1053
|
-
|
|
1142
|
+
getUserHomeDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserHomeDirResponse>>;
|
|
1054
1143
|
/**
|
|
1055
1144
|
* Get list of open windows
|
|
1056
|
-
* @summary Get windows
|
|
1145
|
+
* @summary [DEPRECATED] Get windows
|
|
1057
1146
|
* @param {string} sandboxId
|
|
1058
1147
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1059
1148
|
* @param {*} [options] Override http request option.
|
|
1149
|
+
* @deprecated
|
|
1060
1150
|
* @throws {RequiredError}
|
|
1061
1151
|
*/
|
|
1062
|
-
|
|
1152
|
+
getWindowsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WindowsResponse>>;
|
|
1063
1153
|
/**
|
|
1064
1154
|
*
|
|
1065
|
-
* @summary Get sandbox work-dir
|
|
1155
|
+
* @summary [DEPRECATED] Get sandbox work-dir
|
|
1066
1156
|
* @param {string} sandboxId
|
|
1067
1157
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1068
1158
|
* @param {*} [options] Override http request option.
|
|
1159
|
+
* @deprecated
|
|
1069
1160
|
* @throws {RequiredError}
|
|
1070
1161
|
*/
|
|
1071
|
-
|
|
1162
|
+
getWorkDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkDirResponse>>;
|
|
1072
1163
|
/**
|
|
1073
1164
|
* Add files to git commit
|
|
1074
|
-
* @summary Add files
|
|
1165
|
+
* @summary [DEPRECATED] Add files
|
|
1075
1166
|
* @param {string} sandboxId
|
|
1076
1167
|
* @param {GitAddRequest} gitAddRequest
|
|
1077
1168
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1078
1169
|
* @param {*} [options] Override http request option.
|
|
1170
|
+
* @deprecated
|
|
1079
1171
|
* @throws {RequiredError}
|
|
1080
1172
|
*/
|
|
1081
|
-
|
|
1173
|
+
gitAddFilesDeprecated(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1082
1174
|
/**
|
|
1083
1175
|
* Checkout branch or commit in git repository
|
|
1084
|
-
* @summary Checkout branch
|
|
1176
|
+
* @summary [DEPRECATED] Checkout branch
|
|
1085
1177
|
* @param {string} sandboxId
|
|
1086
1178
|
* @param {GitCheckoutRequest} gitCheckoutRequest
|
|
1087
1179
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1088
1180
|
* @param {*} [options] Override http request option.
|
|
1181
|
+
* @deprecated
|
|
1089
1182
|
* @throws {RequiredError}
|
|
1090
1183
|
*/
|
|
1091
|
-
|
|
1184
|
+
gitCheckoutBranchDeprecated(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1092
1185
|
/**
|
|
1093
1186
|
* Clone git repository
|
|
1094
|
-
* @summary Clone repository
|
|
1187
|
+
* @summary [DEPRECATED] Clone repository
|
|
1095
1188
|
* @param {string} sandboxId
|
|
1096
1189
|
* @param {GitCloneRequest} gitCloneRequest
|
|
1097
1190
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1098
1191
|
* @param {*} [options] Override http request option.
|
|
1192
|
+
* @deprecated
|
|
1099
1193
|
* @throws {RequiredError}
|
|
1100
1194
|
*/
|
|
1101
|
-
|
|
1195
|
+
gitCloneRepositoryDeprecated(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1102
1196
|
/**
|
|
1103
1197
|
* Commit changes to git repository
|
|
1104
|
-
* @summary Commit changes
|
|
1198
|
+
* @summary [DEPRECATED] Commit changes
|
|
1105
1199
|
* @param {string} sandboxId
|
|
1106
1200
|
* @param {GitCommitRequest} gitCommitRequest
|
|
1107
1201
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1108
1202
|
* @param {*} [options] Override http request option.
|
|
1203
|
+
* @deprecated
|
|
1109
1204
|
* @throws {RequiredError}
|
|
1110
1205
|
*/
|
|
1111
|
-
|
|
1206
|
+
gitCommitChangesDeprecated(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitCommitResponse>>;
|
|
1112
1207
|
/**
|
|
1113
1208
|
* Create branch on git repository
|
|
1114
|
-
* @summary Create branch
|
|
1209
|
+
* @summary [DEPRECATED] Create branch
|
|
1115
1210
|
* @param {string} sandboxId
|
|
1116
1211
|
* @param {GitBranchRequest} gitBranchRequest
|
|
1117
1212
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1118
1213
|
* @param {*} [options] Override http request option.
|
|
1214
|
+
* @deprecated
|
|
1119
1215
|
* @throws {RequiredError}
|
|
1120
1216
|
*/
|
|
1121
|
-
|
|
1217
|
+
gitCreateBranchDeprecated(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1122
1218
|
/**
|
|
1123
1219
|
* Delete branch on git repository
|
|
1124
|
-
* @summary Delete branch
|
|
1220
|
+
* @summary [DEPRECATED] Delete branch
|
|
1125
1221
|
* @param {string} sandboxId
|
|
1126
1222
|
* @param {GitDeleteBranchRequest} gitDeleteBranchRequest
|
|
1127
1223
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1128
1224
|
* @param {*} [options] Override http request option.
|
|
1225
|
+
* @deprecated
|
|
1129
1226
|
* @throws {RequiredError}
|
|
1130
1227
|
*/
|
|
1131
|
-
|
|
1228
|
+
gitDeleteBranchDeprecated(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1132
1229
|
/**
|
|
1133
1230
|
* Get commit history from git repository
|
|
1134
|
-
* @summary Get commit history
|
|
1231
|
+
* @summary [DEPRECATED] Get commit history
|
|
1135
1232
|
* @param {string} sandboxId
|
|
1136
1233
|
* @param {string} path
|
|
1137
1234
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1138
1235
|
* @param {*} [options] Override http request option.
|
|
1236
|
+
* @deprecated
|
|
1139
1237
|
* @throws {RequiredError}
|
|
1140
1238
|
*/
|
|
1141
|
-
|
|
1239
|
+
gitGetHistoryDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GitCommitInfo>>>;
|
|
1142
1240
|
/**
|
|
1143
1241
|
* Get status from git repository
|
|
1144
|
-
* @summary Get git status
|
|
1242
|
+
* @summary [DEPRECATED] Get git status
|
|
1145
1243
|
* @param {string} sandboxId
|
|
1146
1244
|
* @param {string} path
|
|
1147
1245
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1148
1246
|
* @param {*} [options] Override http request option.
|
|
1247
|
+
* @deprecated
|
|
1149
1248
|
* @throws {RequiredError}
|
|
1150
1249
|
*/
|
|
1151
|
-
|
|
1250
|
+
gitGetStatusDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GitStatus>>;
|
|
1152
1251
|
/**
|
|
1153
1252
|
* Get branch list from git repository
|
|
1154
|
-
* @summary Get branch list
|
|
1253
|
+
* @summary [DEPRECATED] Get branch list
|
|
1155
1254
|
* @param {string} sandboxId
|
|
1156
1255
|
* @param {string} path
|
|
1157
1256
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1158
1257
|
* @param {*} [options] Override http request option.
|
|
1258
|
+
* @deprecated
|
|
1159
1259
|
* @throws {RequiredError}
|
|
1160
1260
|
*/
|
|
1161
|
-
|
|
1261
|
+
gitListBranchesDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBranchResponse>>;
|
|
1162
1262
|
/**
|
|
1163
1263
|
* Pull changes from remote
|
|
1164
|
-
* @summary Pull changes
|
|
1264
|
+
* @summary [DEPRECATED] Pull changes
|
|
1165
1265
|
* @param {string} sandboxId
|
|
1166
1266
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1167
1267
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1168
1268
|
* @param {*} [options] Override http request option.
|
|
1269
|
+
* @deprecated
|
|
1169
1270
|
* @throws {RequiredError}
|
|
1170
1271
|
*/
|
|
1171
|
-
|
|
1272
|
+
gitPullChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1172
1273
|
/**
|
|
1173
1274
|
* Push changes to remote
|
|
1174
|
-
* @summary Push changes
|
|
1275
|
+
* @summary [DEPRECATED] Push changes
|
|
1175
1276
|
* @param {string} sandboxId
|
|
1176
1277
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1177
1278
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1178
1279
|
* @param {*} [options] Override http request option.
|
|
1280
|
+
* @deprecated
|
|
1179
1281
|
* @throws {RequiredError}
|
|
1180
1282
|
*/
|
|
1181
|
-
|
|
1283
|
+
gitPushChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1182
1284
|
/**
|
|
1183
1285
|
*
|
|
1184
|
-
* @summary List files
|
|
1286
|
+
* @summary [DEPRECATED] List files
|
|
1185
1287
|
* @param {string} sandboxId
|
|
1186
1288
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1187
1289
|
* @param {string} [path]
|
|
1188
1290
|
* @param {*} [options] Override http request option.
|
|
1291
|
+
* @deprecated
|
|
1189
1292
|
* @throws {RequiredError}
|
|
1190
1293
|
*/
|
|
1191
|
-
|
|
1294
|
+
listFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FileInfo>>>;
|
|
1192
1295
|
/**
|
|
1193
1296
|
* List all active PTY sessions in the sandbox
|
|
1194
|
-
* @summary List PTY sessions
|
|
1297
|
+
* @summary [DEPRECATED] List PTY sessions
|
|
1195
1298
|
* @param {string} sandboxId
|
|
1196
1299
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1197
1300
|
* @param {*} [options] Override http request option.
|
|
1301
|
+
* @deprecated
|
|
1198
1302
|
* @throws {RequiredError}
|
|
1199
1303
|
*/
|
|
1200
|
-
|
|
1304
|
+
listPTYSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PtyListResponse>>;
|
|
1201
1305
|
/**
|
|
1202
1306
|
* List all active sessions in the sandbox
|
|
1203
|
-
* @summary List sessions
|
|
1307
|
+
* @summary [DEPRECATED] List sessions
|
|
1204
1308
|
* @param {string} sandboxId
|
|
1205
1309
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1206
1310
|
* @param {*} [options] Override http request option.
|
|
1311
|
+
* @deprecated
|
|
1207
1312
|
* @throws {RequiredError}
|
|
1208
1313
|
*/
|
|
1209
|
-
|
|
1314
|
+
listSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Session>>>;
|
|
1210
1315
|
/**
|
|
1211
1316
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
1212
|
-
* @summary Get Lsp Completions
|
|
1317
|
+
* @summary [DEPRECATED] Get Lsp Completions
|
|
1213
1318
|
* @param {string} sandboxId
|
|
1214
1319
|
* @param {LspCompletionParams} lspCompletionParams
|
|
1215
1320
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1216
1321
|
* @param {*} [options] Override http request option.
|
|
1322
|
+
* @deprecated
|
|
1217
1323
|
* @throws {RequiredError}
|
|
1218
1324
|
*/
|
|
1219
|
-
|
|
1325
|
+
lspCompletionsDeprecated(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompletionList>>;
|
|
1220
1326
|
/**
|
|
1221
1327
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
1222
|
-
* @summary Call Lsp DidClose
|
|
1328
|
+
* @summary [DEPRECATED] Call Lsp DidClose
|
|
1223
1329
|
* @param {string} sandboxId
|
|
1224
1330
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1225
1331
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1226
1332
|
* @param {*} [options] Override http request option.
|
|
1333
|
+
* @deprecated
|
|
1227
1334
|
* @throws {RequiredError}
|
|
1228
1335
|
*/
|
|
1229
|
-
|
|
1336
|
+
lspDidCloseDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1230
1337
|
/**
|
|
1231
1338
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
1232
|
-
* @summary Call Lsp DidOpen
|
|
1339
|
+
* @summary [DEPRECATED] Call Lsp DidOpen
|
|
1233
1340
|
* @param {string} sandboxId
|
|
1234
1341
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1235
1342
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1236
1343
|
* @param {*} [options] Override http request option.
|
|
1344
|
+
* @deprecated
|
|
1237
1345
|
* @throws {RequiredError}
|
|
1238
1346
|
*/
|
|
1239
|
-
|
|
1347
|
+
lspDidOpenDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1240
1348
|
/**
|
|
1241
1349
|
* The document symbol request is sent from the client to the server.
|
|
1242
|
-
* @summary Call Lsp DocumentSymbols
|
|
1350
|
+
* @summary [DEPRECATED] Call Lsp DocumentSymbols
|
|
1243
1351
|
* @param {string} sandboxId
|
|
1244
1352
|
* @param {string} languageId
|
|
1245
1353
|
* @param {string} pathToProject
|
|
1246
1354
|
* @param {string} uri
|
|
1247
1355
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1248
1356
|
* @param {*} [options] Override http request option.
|
|
1357
|
+
* @deprecated
|
|
1249
1358
|
* @throws {RequiredError}
|
|
1250
1359
|
*/
|
|
1251
|
-
|
|
1360
|
+
lspDocumentSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LspSymbol>>>;
|
|
1252
1361
|
/**
|
|
1253
1362
|
* Start Lsp server process inside sandbox project
|
|
1254
|
-
* @summary Start Lsp server
|
|
1363
|
+
* @summary [DEPRECATED] Start Lsp server
|
|
1255
1364
|
* @param {string} sandboxId
|
|
1256
1365
|
* @param {LspServerRequest} lspServerRequest
|
|
1257
1366
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1258
1367
|
* @param {*} [options] Override http request option.
|
|
1368
|
+
* @deprecated
|
|
1259
1369
|
* @throws {RequiredError}
|
|
1260
1370
|
*/
|
|
1261
|
-
|
|
1371
|
+
lspStartDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1262
1372
|
/**
|
|
1263
1373
|
* Stop Lsp server process inside sandbox project
|
|
1264
|
-
* @summary Stop Lsp server
|
|
1374
|
+
* @summary [DEPRECATED] Stop Lsp server
|
|
1265
1375
|
* @param {string} sandboxId
|
|
1266
1376
|
* @param {LspServerRequest} lspServerRequest
|
|
1267
1377
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1268
1378
|
* @param {*} [options] Override http request option.
|
|
1379
|
+
* @deprecated
|
|
1269
1380
|
* @throws {RequiredError}
|
|
1270
1381
|
*/
|
|
1271
|
-
|
|
1382
|
+
lspStopDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1272
1383
|
/**
|
|
1273
1384
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
1274
|
-
* @summary Call Lsp WorkspaceSymbols
|
|
1385
|
+
* @summary [DEPRECATED] Call Lsp WorkspaceSymbols
|
|
1275
1386
|
* @param {string} sandboxId
|
|
1276
1387
|
* @param {string} languageId
|
|
1277
1388
|
* @param {string} pathToProject
|
|
1278
1389
|
* @param {string} query
|
|
1279
1390
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1280
1391
|
* @param {*} [options] Override http request option.
|
|
1392
|
+
* @deprecated
|
|
1281
1393
|
* @throws {RequiredError}
|
|
1282
1394
|
*/
|
|
1283
|
-
|
|
1395
|
+
lspWorkspaceSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LspSymbol>>>;
|
|
1284
1396
|
/**
|
|
1285
1397
|
* Move file inside sandbox
|
|
1286
|
-
* @summary Move file
|
|
1398
|
+
* @summary [DEPRECATED] Move file
|
|
1287
1399
|
* @param {string} sandboxId
|
|
1288
1400
|
* @param {string} source
|
|
1289
1401
|
* @param {string} destination
|
|
1290
1402
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1291
1403
|
* @param {*} [options] Override http request option.
|
|
1404
|
+
* @deprecated
|
|
1292
1405
|
* @throws {RequiredError}
|
|
1293
1406
|
*/
|
|
1294
|
-
|
|
1407
|
+
moveFileDeprecated(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1295
1408
|
/**
|
|
1296
1409
|
* Move mouse cursor to specified coordinates
|
|
1297
|
-
* @summary Move mouse
|
|
1410
|
+
* @summary [DEPRECATED] Move mouse
|
|
1298
1411
|
* @param {string} sandboxId
|
|
1299
1412
|
* @param {MouseMoveRequest} mouseMoveRequest
|
|
1300
1413
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1301
1414
|
* @param {*} [options] Override http request option.
|
|
1415
|
+
* @deprecated
|
|
1302
1416
|
* @throws {RequiredError}
|
|
1303
1417
|
*/
|
|
1304
|
-
|
|
1418
|
+
moveMouseDeprecated(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseMoveResponse>>;
|
|
1305
1419
|
/**
|
|
1306
1420
|
* Press a hotkey combination
|
|
1307
|
-
* @summary Press hotkey
|
|
1421
|
+
* @summary [DEPRECATED] Press hotkey
|
|
1308
1422
|
* @param {string} sandboxId
|
|
1309
1423
|
* @param {KeyboardHotkeyRequest} keyboardHotkeyRequest
|
|
1310
1424
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1311
1425
|
* @param {*} [options] Override http request option.
|
|
1426
|
+
* @deprecated
|
|
1312
1427
|
* @throws {RequiredError}
|
|
1313
1428
|
*/
|
|
1314
|
-
|
|
1429
|
+
pressHotkeyDeprecated(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1315
1430
|
/**
|
|
1316
1431
|
* Press a key with optional modifiers
|
|
1317
|
-
* @summary Press key
|
|
1432
|
+
* @summary [DEPRECATED] Press key
|
|
1318
1433
|
* @param {string} sandboxId
|
|
1319
1434
|
* @param {KeyboardPressRequest} keyboardPressRequest
|
|
1320
1435
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1321
1436
|
* @param {*} [options] Override http request option.
|
|
1437
|
+
* @deprecated
|
|
1322
1438
|
* @throws {RequiredError}
|
|
1323
1439
|
*/
|
|
1324
|
-
|
|
1440
|
+
pressKeyDeprecated(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1325
1441
|
/**
|
|
1326
1442
|
* Replace text/pattern in multiple files inside sandbox
|
|
1327
|
-
* @summary Replace in files
|
|
1443
|
+
* @summary [DEPRECATED] Replace in files
|
|
1328
1444
|
* @param {string} sandboxId
|
|
1329
1445
|
* @param {ReplaceRequest} replaceRequest
|
|
1330
1446
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1331
1447
|
* @param {*} [options] Override http request option.
|
|
1448
|
+
* @deprecated
|
|
1332
1449
|
* @throws {RequiredError}
|
|
1333
1450
|
*/
|
|
1334
|
-
|
|
1451
|
+
replaceInFilesDeprecated(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ReplaceResult>>>;
|
|
1335
1452
|
/**
|
|
1336
1453
|
* Resize a PTY session
|
|
1337
|
-
* @summary Resize PTY session
|
|
1454
|
+
* @summary [DEPRECATED] Resize PTY session
|
|
1338
1455
|
* @param {string} sandboxId
|
|
1339
1456
|
* @param {string} sessionId
|
|
1340
1457
|
* @param {PtyResizeRequest} ptyResizeRequest
|
|
1341
1458
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1342
1459
|
* @param {*} [options] Override http request option.
|
|
1460
|
+
* @deprecated
|
|
1343
1461
|
* @throws {RequiredError}
|
|
1344
1462
|
*/
|
|
1345
|
-
|
|
1463
|
+
resizePTYSessionDeprecated(sandboxId: string, sessionId: string, ptyResizeRequest: PtyResizeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PtySessionInfo>>;
|
|
1346
1464
|
/**
|
|
1347
1465
|
* Restart a specific VNC process
|
|
1348
|
-
* @summary Restart process
|
|
1466
|
+
* @summary [DEPRECATED] Restart process
|
|
1349
1467
|
* @param {string} processName
|
|
1350
1468
|
* @param {string} sandboxId
|
|
1351
1469
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1352
1470
|
* @param {*} [options] Override http request option.
|
|
1471
|
+
* @deprecated
|
|
1353
1472
|
* @throws {RequiredError}
|
|
1354
1473
|
*/
|
|
1355
|
-
|
|
1474
|
+
restartProcessDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessRestartResponse>>;
|
|
1356
1475
|
/**
|
|
1357
1476
|
* Scroll mouse at specified coordinates
|
|
1358
|
-
* @summary Scroll mouse
|
|
1477
|
+
* @summary [DEPRECATED] Scroll mouse
|
|
1359
1478
|
* @param {string} sandboxId
|
|
1360
1479
|
* @param {MouseScrollRequest} mouseScrollRequest
|
|
1361
1480
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1362
1481
|
* @param {*} [options] Override http request option.
|
|
1482
|
+
* @deprecated
|
|
1363
1483
|
* @throws {RequiredError}
|
|
1364
1484
|
*/
|
|
1365
|
-
|
|
1485
|
+
scrollMouseDeprecated(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseScrollResponse>>;
|
|
1366
1486
|
/**
|
|
1367
1487
|
* Search for files inside sandbox
|
|
1368
|
-
* @summary Search files
|
|
1488
|
+
* @summary [DEPRECATED] Search files
|
|
1369
1489
|
* @param {string} sandboxId
|
|
1370
1490
|
* @param {string} path
|
|
1371
1491
|
* @param {string} pattern
|
|
1372
1492
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1373
1493
|
* @param {*} [options] Override http request option.
|
|
1494
|
+
* @deprecated
|
|
1374
1495
|
* @throws {RequiredError}
|
|
1375
1496
|
*/
|
|
1376
|
-
|
|
1497
|
+
searchFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchFilesResponse>>;
|
|
1377
1498
|
/**
|
|
1378
1499
|
* Set file owner/group/permissions inside sandbox
|
|
1379
|
-
* @summary Set file permissions
|
|
1500
|
+
* @summary [DEPRECATED] Set file permissions
|
|
1380
1501
|
* @param {string} sandboxId
|
|
1381
1502
|
* @param {string} path
|
|
1382
1503
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -1384,30 +1505,33 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
1384
1505
|
* @param {string} [group]
|
|
1385
1506
|
* @param {string} [mode]
|
|
1386
1507
|
* @param {*} [options] Override http request option.
|
|
1508
|
+
* @deprecated
|
|
1387
1509
|
* @throws {RequiredError}
|
|
1388
1510
|
*/
|
|
1389
|
-
|
|
1511
|
+
setFilePermissionsDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1390
1512
|
/**
|
|
1391
1513
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
1392
|
-
* @summary Start computer use processes
|
|
1514
|
+
* @summary [DEPRECATED] Start computer use processes
|
|
1393
1515
|
* @param {string} sandboxId
|
|
1394
1516
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1395
1517
|
* @param {*} [options] Override http request option.
|
|
1518
|
+
* @deprecated
|
|
1396
1519
|
* @throws {RequiredError}
|
|
1397
1520
|
*/
|
|
1398
|
-
|
|
1521
|
+
startComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStartResponse>>;
|
|
1399
1522
|
/**
|
|
1400
1523
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
1401
|
-
* @summary Stop computer use processes
|
|
1524
|
+
* @summary [DEPRECATED] Stop computer use processes
|
|
1402
1525
|
* @param {string} sandboxId
|
|
1403
1526
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1404
1527
|
* @param {*} [options] Override http request option.
|
|
1528
|
+
* @deprecated
|
|
1405
1529
|
* @throws {RequiredError}
|
|
1406
1530
|
*/
|
|
1407
|
-
|
|
1531
|
+
stopComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStopResponse>>;
|
|
1408
1532
|
/**
|
|
1409
1533
|
* Take a compressed screenshot of a specific region
|
|
1410
|
-
* @summary Take compressed region screenshot
|
|
1534
|
+
* @summary [DEPRECATED] Take compressed region screenshot
|
|
1411
1535
|
* @param {string} sandboxId
|
|
1412
1536
|
* @param {number} height
|
|
1413
1537
|
* @param {number} width
|
|
@@ -1419,12 +1543,13 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
1419
1543
|
* @param {string} [format]
|
|
1420
1544
|
* @param {boolean} [showCursor]
|
|
1421
1545
|
* @param {*} [options] Override http request option.
|
|
1546
|
+
* @deprecated
|
|
1422
1547
|
* @throws {RequiredError}
|
|
1423
1548
|
*/
|
|
1424
|
-
|
|
1549
|
+
takeCompressedRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompressedScreenshotResponse>>;
|
|
1425
1550
|
/**
|
|
1426
1551
|
* Take a compressed screenshot with format, quality, and scale options
|
|
1427
|
-
* @summary Take compressed screenshot
|
|
1552
|
+
* @summary [DEPRECATED] Take compressed screenshot
|
|
1428
1553
|
* @param {string} sandboxId
|
|
1429
1554
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1430
1555
|
* @param {number} [scale]
|
|
@@ -1432,12 +1557,13 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
1432
1557
|
* @param {string} [format]
|
|
1433
1558
|
* @param {boolean} [showCursor]
|
|
1434
1559
|
* @param {*} [options] Override http request option.
|
|
1560
|
+
* @deprecated
|
|
1435
1561
|
* @throws {RequiredError}
|
|
1436
1562
|
*/
|
|
1437
|
-
|
|
1563
|
+
takeCompressedScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompressedScreenshotResponse>>;
|
|
1438
1564
|
/**
|
|
1439
1565
|
* Take a screenshot of a specific region
|
|
1440
|
-
* @summary Take region screenshot
|
|
1566
|
+
* @summary [DEPRECATED] Take region screenshot
|
|
1441
1567
|
* @param {string} sandboxId
|
|
1442
1568
|
* @param {number} height
|
|
1443
1569
|
* @param {number} width
|
|
@@ -1446,32 +1572,35 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
1446
1572
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1447
1573
|
* @param {boolean} [showCursor]
|
|
1448
1574
|
* @param {*} [options] Override http request option.
|
|
1575
|
+
* @deprecated
|
|
1449
1576
|
* @throws {RequiredError}
|
|
1450
1577
|
*/
|
|
1451
|
-
|
|
1578
|
+
takeRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegionScreenshotResponse>>;
|
|
1452
1579
|
/**
|
|
1453
1580
|
* Take a screenshot of the entire screen
|
|
1454
|
-
* @summary Take screenshot
|
|
1581
|
+
* @summary [DEPRECATED] Take screenshot
|
|
1455
1582
|
* @param {string} sandboxId
|
|
1456
1583
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1457
1584
|
* @param {boolean} [showCursor]
|
|
1458
1585
|
* @param {*} [options] Override http request option.
|
|
1586
|
+
* @deprecated
|
|
1459
1587
|
* @throws {RequiredError}
|
|
1460
1588
|
*/
|
|
1461
|
-
|
|
1589
|
+
takeScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScreenshotResponse>>;
|
|
1462
1590
|
/**
|
|
1463
1591
|
* Type text using keyboard
|
|
1464
|
-
* @summary Type text
|
|
1592
|
+
* @summary [DEPRECATED] Type text
|
|
1465
1593
|
* @param {string} sandboxId
|
|
1466
1594
|
* @param {KeyboardTypeRequest} keyboardTypeRequest
|
|
1467
1595
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1468
1596
|
* @param {*} [options] Override http request option.
|
|
1597
|
+
* @deprecated
|
|
1469
1598
|
* @throws {RequiredError}
|
|
1470
1599
|
*/
|
|
1471
|
-
|
|
1600
|
+
typeTextDeprecated(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1472
1601
|
/**
|
|
1473
1602
|
* Upload file inside sandbox
|
|
1474
|
-
* @summary Upload file
|
|
1603
|
+
* @summary [DEPRECATED] Upload file
|
|
1475
1604
|
* @param {string} sandboxId
|
|
1476
1605
|
* @param {string} path
|
|
1477
1606
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -1480,16 +1609,17 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
1480
1609
|
* @deprecated
|
|
1481
1610
|
* @throws {RequiredError}
|
|
1482
1611
|
*/
|
|
1483
|
-
|
|
1612
|
+
uploadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1484
1613
|
/**
|
|
1485
1614
|
* Upload multiple files inside sandbox
|
|
1486
|
-
* @summary Upload multiple files
|
|
1615
|
+
* @summary [DEPRECATED] Upload multiple files
|
|
1487
1616
|
* @param {string} sandboxId
|
|
1488
1617
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1489
1618
|
* @param {*} [options] Override http request option.
|
|
1619
|
+
* @deprecated
|
|
1490
1620
|
* @throws {RequiredError}
|
|
1491
1621
|
*/
|
|
1492
|
-
|
|
1622
|
+
uploadFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1493
1623
|
};
|
|
1494
1624
|
/**
|
|
1495
1625
|
* ToolboxApi - factory interface
|
|
@@ -1498,79 +1628,86 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
1498
1628
|
export declare const ToolboxApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1499
1629
|
/**
|
|
1500
1630
|
* Click mouse at specified coordinates
|
|
1501
|
-
* @summary Click mouse
|
|
1631
|
+
* @summary [DEPRECATED] Click mouse
|
|
1502
1632
|
* @param {string} sandboxId
|
|
1503
1633
|
* @param {MouseClickRequest} mouseClickRequest
|
|
1504
1634
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1505
1635
|
* @param {*} [options] Override http request option.
|
|
1636
|
+
* @deprecated
|
|
1506
1637
|
* @throws {RequiredError}
|
|
1507
1638
|
*/
|
|
1508
|
-
|
|
1639
|
+
clickMouseDeprecated(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<MouseClickResponse>;
|
|
1509
1640
|
/**
|
|
1510
1641
|
* Create folder inside sandbox
|
|
1511
|
-
* @summary Create folder
|
|
1642
|
+
* @summary [DEPRECATED] Create folder
|
|
1512
1643
|
* @param {string} sandboxId
|
|
1513
1644
|
* @param {string} path
|
|
1514
1645
|
* @param {string} mode
|
|
1515
1646
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1516
1647
|
* @param {*} [options] Override http request option.
|
|
1648
|
+
* @deprecated
|
|
1517
1649
|
* @throws {RequiredError}
|
|
1518
1650
|
*/
|
|
1519
|
-
|
|
1651
|
+
createFolderDeprecated(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1520
1652
|
/**
|
|
1521
1653
|
* Create a new PTY session in the sandbox
|
|
1522
|
-
* @summary Create PTY session
|
|
1654
|
+
* @summary [DEPRECATED] Create PTY session
|
|
1523
1655
|
* @param {string} sandboxId
|
|
1524
1656
|
* @param {PtyCreateRequest} ptyCreateRequest
|
|
1525
1657
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1526
1658
|
* @param {*} [options] Override http request option.
|
|
1659
|
+
* @deprecated
|
|
1527
1660
|
* @throws {RequiredError}
|
|
1528
1661
|
*/
|
|
1529
|
-
|
|
1662
|
+
createPTYSessionDeprecated(sandboxId: string, ptyCreateRequest: PtyCreateRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<PtyCreateResponse>;
|
|
1530
1663
|
/**
|
|
1531
1664
|
* Create a new session in the sandbox
|
|
1532
|
-
* @summary Create session
|
|
1665
|
+
* @summary [DEPRECATED] Create session
|
|
1533
1666
|
* @param {string} sandboxId
|
|
1534
1667
|
* @param {CreateSessionRequest} createSessionRequest
|
|
1535
1668
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1536
1669
|
* @param {*} [options] Override http request option.
|
|
1670
|
+
* @deprecated
|
|
1537
1671
|
* @throws {RequiredError}
|
|
1538
1672
|
*/
|
|
1539
|
-
|
|
1673
|
+
createSessionDeprecated(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1540
1674
|
/**
|
|
1541
1675
|
* Delete file inside sandbox
|
|
1542
|
-
* @summary Delete file
|
|
1676
|
+
* @summary [DEPRECATED] Delete file
|
|
1543
1677
|
* @param {string} sandboxId
|
|
1544
1678
|
* @param {string} path
|
|
1545
1679
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1546
1680
|
* @param {boolean} [recursive]
|
|
1547
1681
|
* @param {*} [options] Override http request option.
|
|
1682
|
+
* @deprecated
|
|
1548
1683
|
* @throws {RequiredError}
|
|
1549
1684
|
*/
|
|
1550
|
-
|
|
1685
|
+
deleteFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1551
1686
|
/**
|
|
1552
1687
|
* Delete a PTY session and terminate the associated process
|
|
1553
|
-
* @summary Delete PTY session
|
|
1688
|
+
* @summary [DEPRECATED] Delete PTY session
|
|
1554
1689
|
* @param {string} sandboxId
|
|
1555
1690
|
* @param {string} sessionId
|
|
1556
1691
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1557
1692
|
* @param {*} [options] Override http request option.
|
|
1693
|
+
* @deprecated
|
|
1558
1694
|
* @throws {RequiredError}
|
|
1559
1695
|
*/
|
|
1560
|
-
|
|
1696
|
+
deletePTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1561
1697
|
/**
|
|
1562
1698
|
* Delete a specific session
|
|
1563
|
-
* @summary Delete session
|
|
1699
|
+
* @summary [DEPRECATED] Delete session
|
|
1564
1700
|
* @param {string} sandboxId
|
|
1565
1701
|
* @param {string} sessionId
|
|
1566
1702
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1567
1703
|
* @param {*} [options] Override http request option.
|
|
1704
|
+
* @deprecated
|
|
1568
1705
|
* @throws {RequiredError}
|
|
1569
1706
|
*/
|
|
1570
|
-
|
|
1707
|
+
deleteSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1571
1708
|
/**
|
|
1572
1709
|
* Download file from sandbox
|
|
1573
|
-
* @summary Download file
|
|
1710
|
+
* @summary [DEPRECATED] Download file
|
|
1574
1711
|
* @param {string} sandboxId
|
|
1575
1712
|
* @param {string} path
|
|
1576
1713
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -1578,514 +1715,563 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
1578
1715
|
* @deprecated
|
|
1579
1716
|
* @throws {RequiredError}
|
|
1580
1717
|
*/
|
|
1581
|
-
|
|
1718
|
+
downloadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
1582
1719
|
/**
|
|
1583
1720
|
* Streams back a multipart/form-data bundle of the requested paths
|
|
1584
|
-
* @summary Download multiple files
|
|
1721
|
+
* @summary [DEPRECATED] Download multiple files
|
|
1585
1722
|
* @param {string} sandboxId
|
|
1586
1723
|
* @param {DownloadFiles} downloadFiles
|
|
1587
1724
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1588
1725
|
* @param {*} [options] Override http request option.
|
|
1726
|
+
* @deprecated
|
|
1589
1727
|
* @throws {RequiredError}
|
|
1590
1728
|
*/
|
|
1591
|
-
|
|
1729
|
+
downloadFilesDeprecated(sandboxId: string, downloadFiles: DownloadFiles, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
1592
1730
|
/**
|
|
1593
1731
|
* Drag mouse from start to end coordinates
|
|
1594
|
-
* @summary Drag mouse
|
|
1732
|
+
* @summary [DEPRECATED] Drag mouse
|
|
1595
1733
|
* @param {string} sandboxId
|
|
1596
1734
|
* @param {MouseDragRequest} mouseDragRequest
|
|
1597
1735
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1598
1736
|
* @param {*} [options] Override http request option.
|
|
1737
|
+
* @deprecated
|
|
1599
1738
|
* @throws {RequiredError}
|
|
1600
1739
|
*/
|
|
1601
|
-
|
|
1740
|
+
dragMouseDeprecated(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<MouseDragResponse>;
|
|
1602
1741
|
/**
|
|
1603
1742
|
* Execute command synchronously inside sandbox
|
|
1604
|
-
* @summary Execute command
|
|
1743
|
+
* @summary [DEPRECATED] Execute command
|
|
1605
1744
|
* @param {string} sandboxId
|
|
1606
1745
|
* @param {ExecuteRequest} executeRequest
|
|
1607
1746
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1608
1747
|
* @param {*} [options] Override http request option.
|
|
1748
|
+
* @deprecated
|
|
1609
1749
|
* @throws {RequiredError}
|
|
1610
1750
|
*/
|
|
1611
|
-
|
|
1751
|
+
executeCommandDeprecated(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteResponse>;
|
|
1612
1752
|
/**
|
|
1613
1753
|
* Execute a command in a specific session
|
|
1614
|
-
* @summary Execute command in session
|
|
1754
|
+
* @summary [DEPRECATED] Execute command in session
|
|
1615
1755
|
* @param {string} sandboxId
|
|
1616
1756
|
* @param {string} sessionId
|
|
1617
1757
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
1618
1758
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1619
1759
|
* @param {*} [options] Override http request option.
|
|
1760
|
+
* @deprecated
|
|
1620
1761
|
* @throws {RequiredError}
|
|
1621
1762
|
*/
|
|
1622
|
-
|
|
1763
|
+
executeSessionCommandDeprecated(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<SessionExecuteResponse>;
|
|
1623
1764
|
/**
|
|
1624
1765
|
* Search for text/pattern inside sandbox files
|
|
1625
|
-
* @summary Search for text/pattern in files
|
|
1766
|
+
* @summary [DEPRECATED] Search for text/pattern in files
|
|
1626
1767
|
* @param {string} sandboxId
|
|
1627
1768
|
* @param {string} path
|
|
1628
1769
|
* @param {string} pattern
|
|
1629
1770
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1630
1771
|
* @param {*} [options] Override http request option.
|
|
1772
|
+
* @deprecated
|
|
1631
1773
|
* @throws {RequiredError}
|
|
1632
1774
|
*/
|
|
1633
|
-
|
|
1775
|
+
findInFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Match>>;
|
|
1634
1776
|
/**
|
|
1635
1777
|
* Get status of all VNC desktop processes
|
|
1636
|
-
* @summary Get computer use status
|
|
1778
|
+
* @summary [DEPRECATED] Get computer use status
|
|
1637
1779
|
* @param {string} sandboxId
|
|
1638
1780
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1639
1781
|
* @param {*} [options] Override http request option.
|
|
1782
|
+
* @deprecated
|
|
1640
1783
|
* @throws {RequiredError}
|
|
1641
1784
|
*/
|
|
1642
|
-
|
|
1785
|
+
getComputerUseStatusDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStatusResponse>;
|
|
1643
1786
|
/**
|
|
1644
1787
|
* Get information about displays
|
|
1645
|
-
* @summary Get display info
|
|
1788
|
+
* @summary [DEPRECATED] Get display info
|
|
1646
1789
|
* @param {string} sandboxId
|
|
1647
1790
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1648
1791
|
* @param {*} [options] Override http request option.
|
|
1792
|
+
* @deprecated
|
|
1649
1793
|
* @throws {RequiredError}
|
|
1650
1794
|
*/
|
|
1651
|
-
|
|
1795
|
+
getDisplayInfoDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<DisplayInfoResponse>;
|
|
1652
1796
|
/**
|
|
1653
1797
|
* Get file info inside sandbox
|
|
1654
|
-
* @summary Get file info
|
|
1798
|
+
* @summary [DEPRECATED] Get file info
|
|
1655
1799
|
* @param {string} sandboxId
|
|
1656
1800
|
* @param {string} path
|
|
1657
1801
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1658
1802
|
* @param {*} [options] Override http request option.
|
|
1803
|
+
* @deprecated
|
|
1659
1804
|
* @throws {RequiredError}
|
|
1660
1805
|
*/
|
|
1661
|
-
|
|
1806
|
+
getFileInfoDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<FileInfo>;
|
|
1662
1807
|
/**
|
|
1663
1808
|
* Get current mouse cursor position
|
|
1664
|
-
* @summary Get mouse position
|
|
1809
|
+
* @summary [DEPRECATED] Get mouse position
|
|
1665
1810
|
* @param {string} sandboxId
|
|
1666
1811
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1667
1812
|
* @param {*} [options] Override http request option.
|
|
1813
|
+
* @deprecated
|
|
1668
1814
|
* @throws {RequiredError}
|
|
1669
1815
|
*/
|
|
1670
|
-
|
|
1816
|
+
getMousePositionDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<MousePosition>;
|
|
1671
1817
|
/**
|
|
1672
1818
|
* Get PTY session information by ID
|
|
1673
|
-
* @summary Get PTY session
|
|
1819
|
+
* @summary [DEPRECATED] Get PTY session
|
|
1674
1820
|
* @param {string} sandboxId
|
|
1675
1821
|
* @param {string} sessionId
|
|
1676
1822
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1677
1823
|
* @param {*} [options] Override http request option.
|
|
1824
|
+
* @deprecated
|
|
1678
1825
|
* @throws {RequiredError}
|
|
1679
1826
|
*/
|
|
1680
|
-
|
|
1827
|
+
getPTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<PtySessionInfo>;
|
|
1681
1828
|
/**
|
|
1682
1829
|
* Get error logs for a specific VNC process
|
|
1683
|
-
* @summary Get process errors
|
|
1830
|
+
* @summary [DEPRECATED] Get process errors
|
|
1684
1831
|
* @param {string} processName
|
|
1685
1832
|
* @param {string} sandboxId
|
|
1686
1833
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1687
1834
|
* @param {*} [options] Override http request option.
|
|
1835
|
+
* @deprecated
|
|
1688
1836
|
* @throws {RequiredError}
|
|
1689
1837
|
*/
|
|
1690
|
-
|
|
1838
|
+
getProcessErrorsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessErrorsResponse>;
|
|
1691
1839
|
/**
|
|
1692
1840
|
* Get logs for a specific VNC process
|
|
1693
|
-
* @summary Get process logs
|
|
1841
|
+
* @summary [DEPRECATED] Get process logs
|
|
1694
1842
|
* @param {string} processName
|
|
1695
1843
|
* @param {string} sandboxId
|
|
1696
1844
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1697
1845
|
* @param {*} [options] Override http request option.
|
|
1846
|
+
* @deprecated
|
|
1698
1847
|
* @throws {RequiredError}
|
|
1699
1848
|
*/
|
|
1700
|
-
|
|
1849
|
+
getProcessLogsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessLogsResponse>;
|
|
1701
1850
|
/**
|
|
1702
1851
|
* Get status of a specific VNC process
|
|
1703
|
-
* @summary Get process status
|
|
1852
|
+
* @summary [DEPRECATED] Get process status
|
|
1704
1853
|
* @param {string} processName
|
|
1705
1854
|
* @param {string} sandboxId
|
|
1706
1855
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1707
1856
|
* @param {*} [options] Override http request option.
|
|
1857
|
+
* @deprecated
|
|
1708
1858
|
* @throws {RequiredError}
|
|
1709
1859
|
*/
|
|
1710
|
-
|
|
1860
|
+
getProcessStatusDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessStatusResponse>;
|
|
1711
1861
|
/**
|
|
1712
1862
|
*
|
|
1713
|
-
* @summary Get sandbox project dir
|
|
1863
|
+
* @summary [DEPRECATED] Get sandbox project dir
|
|
1714
1864
|
* @param {string} sandboxId
|
|
1715
1865
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1716
1866
|
* @param {*} [options] Override http request option.
|
|
1717
1867
|
* @deprecated
|
|
1718
1868
|
* @throws {RequiredError}
|
|
1719
1869
|
*/
|
|
1720
|
-
|
|
1870
|
+
getProjectDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProjectDirResponse>;
|
|
1721
1871
|
/**
|
|
1722
|
-
* Get session by ID
|
|
1723
|
-
* @summary Get session
|
|
1872
|
+
* Get session command by ID
|
|
1873
|
+
* @summary [DEPRECATED] Get session command
|
|
1724
1874
|
* @param {string} sandboxId
|
|
1725
1875
|
* @param {string} sessionId
|
|
1876
|
+
* @param {string} commandId
|
|
1726
1877
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1727
1878
|
* @param {*} [options] Override http request option.
|
|
1879
|
+
* @deprecated
|
|
1728
1880
|
* @throws {RequiredError}
|
|
1729
1881
|
*/
|
|
1730
|
-
|
|
1882
|
+
getSessionCommandDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Command>;
|
|
1731
1883
|
/**
|
|
1732
|
-
* Get
|
|
1733
|
-
* @summary Get
|
|
1884
|
+
* Get logs for a specific command in a session
|
|
1885
|
+
* @summary [DEPRECATED] Get command logs
|
|
1734
1886
|
* @param {string} sandboxId
|
|
1735
1887
|
* @param {string} sessionId
|
|
1736
1888
|
* @param {string} commandId
|
|
1737
1889
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1890
|
+
* @param {boolean} [follow] Whether to stream the logs
|
|
1738
1891
|
* @param {*} [options] Override http request option.
|
|
1892
|
+
* @deprecated
|
|
1739
1893
|
* @throws {RequiredError}
|
|
1740
1894
|
*/
|
|
1741
|
-
|
|
1895
|
+
getSessionCommandLogsDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
1742
1896
|
/**
|
|
1743
|
-
* Get
|
|
1744
|
-
* @summary Get
|
|
1897
|
+
* Get session by ID
|
|
1898
|
+
* @summary [DEPRECATED] Get session
|
|
1745
1899
|
* @param {string} sandboxId
|
|
1746
1900
|
* @param {string} sessionId
|
|
1747
|
-
* @param {string} commandId
|
|
1748
1901
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1749
|
-
* @param {boolean} [follow] Whether to stream the logs
|
|
1750
1902
|
* @param {*} [options] Override http request option.
|
|
1903
|
+
* @deprecated
|
|
1751
1904
|
* @throws {RequiredError}
|
|
1752
1905
|
*/
|
|
1753
|
-
|
|
1906
|
+
getSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Session>;
|
|
1754
1907
|
/**
|
|
1755
1908
|
*
|
|
1756
|
-
* @summary Get sandbox user home dir
|
|
1909
|
+
* @summary [DEPRECATED] Get sandbox user home dir
|
|
1757
1910
|
* @param {string} sandboxId
|
|
1758
1911
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1759
1912
|
* @param {*} [options] Override http request option.
|
|
1913
|
+
* @deprecated
|
|
1760
1914
|
* @throws {RequiredError}
|
|
1761
1915
|
*/
|
|
1762
|
-
|
|
1916
|
+
getUserHomeDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<UserHomeDirResponse>;
|
|
1763
1917
|
/**
|
|
1764
1918
|
* Get list of open windows
|
|
1765
|
-
* @summary Get windows
|
|
1919
|
+
* @summary [DEPRECATED] Get windows
|
|
1766
1920
|
* @param {string} sandboxId
|
|
1767
1921
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1768
1922
|
* @param {*} [options] Override http request option.
|
|
1923
|
+
* @deprecated
|
|
1769
1924
|
* @throws {RequiredError}
|
|
1770
1925
|
*/
|
|
1771
|
-
|
|
1926
|
+
getWindowsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<WindowsResponse>;
|
|
1772
1927
|
/**
|
|
1773
1928
|
*
|
|
1774
|
-
* @summary Get sandbox work-dir
|
|
1929
|
+
* @summary [DEPRECATED] Get sandbox work-dir
|
|
1775
1930
|
* @param {string} sandboxId
|
|
1776
1931
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1777
1932
|
* @param {*} [options] Override http request option.
|
|
1933
|
+
* @deprecated
|
|
1778
1934
|
* @throws {RequiredError}
|
|
1779
1935
|
*/
|
|
1780
|
-
|
|
1936
|
+
getWorkDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkDirResponse>;
|
|
1781
1937
|
/**
|
|
1782
1938
|
* Add files to git commit
|
|
1783
|
-
* @summary Add files
|
|
1939
|
+
* @summary [DEPRECATED] Add files
|
|
1784
1940
|
* @param {string} sandboxId
|
|
1785
1941
|
* @param {GitAddRequest} gitAddRequest
|
|
1786
1942
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1787
1943
|
* @param {*} [options] Override http request option.
|
|
1944
|
+
* @deprecated
|
|
1788
1945
|
* @throws {RequiredError}
|
|
1789
1946
|
*/
|
|
1790
|
-
|
|
1947
|
+
gitAddFilesDeprecated(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1791
1948
|
/**
|
|
1792
1949
|
* Checkout branch or commit in git repository
|
|
1793
|
-
* @summary Checkout branch
|
|
1950
|
+
* @summary [DEPRECATED] Checkout branch
|
|
1794
1951
|
* @param {string} sandboxId
|
|
1795
1952
|
* @param {GitCheckoutRequest} gitCheckoutRequest
|
|
1796
1953
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1797
1954
|
* @param {*} [options] Override http request option.
|
|
1955
|
+
* @deprecated
|
|
1798
1956
|
* @throws {RequiredError}
|
|
1799
1957
|
*/
|
|
1800
|
-
|
|
1958
|
+
gitCheckoutBranchDeprecated(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1801
1959
|
/**
|
|
1802
1960
|
* Clone git repository
|
|
1803
|
-
* @summary Clone repository
|
|
1961
|
+
* @summary [DEPRECATED] Clone repository
|
|
1804
1962
|
* @param {string} sandboxId
|
|
1805
1963
|
* @param {GitCloneRequest} gitCloneRequest
|
|
1806
1964
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1807
1965
|
* @param {*} [options] Override http request option.
|
|
1966
|
+
* @deprecated
|
|
1808
1967
|
* @throws {RequiredError}
|
|
1809
1968
|
*/
|
|
1810
|
-
|
|
1969
|
+
gitCloneRepositoryDeprecated(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1811
1970
|
/**
|
|
1812
1971
|
* Commit changes to git repository
|
|
1813
|
-
* @summary Commit changes
|
|
1972
|
+
* @summary [DEPRECATED] Commit changes
|
|
1814
1973
|
* @param {string} sandboxId
|
|
1815
1974
|
* @param {GitCommitRequest} gitCommitRequest
|
|
1816
1975
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1817
1976
|
* @param {*} [options] Override http request option.
|
|
1977
|
+
* @deprecated
|
|
1818
1978
|
* @throws {RequiredError}
|
|
1819
1979
|
*/
|
|
1820
|
-
|
|
1980
|
+
gitCommitChangesDeprecated(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<GitCommitResponse>;
|
|
1821
1981
|
/**
|
|
1822
1982
|
* Create branch on git repository
|
|
1823
|
-
* @summary Create branch
|
|
1983
|
+
* @summary [DEPRECATED] Create branch
|
|
1824
1984
|
* @param {string} sandboxId
|
|
1825
1985
|
* @param {GitBranchRequest} gitBranchRequest
|
|
1826
1986
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1827
1987
|
* @param {*} [options] Override http request option.
|
|
1988
|
+
* @deprecated
|
|
1828
1989
|
* @throws {RequiredError}
|
|
1829
1990
|
*/
|
|
1830
|
-
|
|
1991
|
+
gitCreateBranchDeprecated(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1831
1992
|
/**
|
|
1832
1993
|
* Delete branch on git repository
|
|
1833
|
-
* @summary Delete branch
|
|
1994
|
+
* @summary [DEPRECATED] Delete branch
|
|
1834
1995
|
* @param {string} sandboxId
|
|
1835
1996
|
* @param {GitDeleteBranchRequest} gitDeleteBranchRequest
|
|
1836
1997
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1837
1998
|
* @param {*} [options] Override http request option.
|
|
1999
|
+
* @deprecated
|
|
1838
2000
|
* @throws {RequiredError}
|
|
1839
2001
|
*/
|
|
1840
|
-
|
|
2002
|
+
gitDeleteBranchDeprecated(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1841
2003
|
/**
|
|
1842
2004
|
* Get commit history from git repository
|
|
1843
|
-
* @summary Get commit history
|
|
2005
|
+
* @summary [DEPRECATED] Get commit history
|
|
1844
2006
|
* @param {string} sandboxId
|
|
1845
2007
|
* @param {string} path
|
|
1846
2008
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1847
2009
|
* @param {*} [options] Override http request option.
|
|
2010
|
+
* @deprecated
|
|
1848
2011
|
* @throws {RequiredError}
|
|
1849
2012
|
*/
|
|
1850
|
-
|
|
2013
|
+
gitGetHistoryDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<GitCommitInfo>>;
|
|
1851
2014
|
/**
|
|
1852
2015
|
* Get status from git repository
|
|
1853
|
-
* @summary Get git status
|
|
2016
|
+
* @summary [DEPRECATED] Get git status
|
|
1854
2017
|
* @param {string} sandboxId
|
|
1855
2018
|
* @param {string} path
|
|
1856
2019
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1857
2020
|
* @param {*} [options] Override http request option.
|
|
2021
|
+
* @deprecated
|
|
1858
2022
|
* @throws {RequiredError}
|
|
1859
2023
|
*/
|
|
1860
|
-
|
|
2024
|
+
gitGetStatusDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<GitStatus>;
|
|
1861
2025
|
/**
|
|
1862
2026
|
* Get branch list from git repository
|
|
1863
|
-
* @summary Get branch list
|
|
2027
|
+
* @summary [DEPRECATED] Get branch list
|
|
1864
2028
|
* @param {string} sandboxId
|
|
1865
2029
|
* @param {string} path
|
|
1866
2030
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1867
2031
|
* @param {*} [options] Override http request option.
|
|
2032
|
+
* @deprecated
|
|
1868
2033
|
* @throws {RequiredError}
|
|
1869
2034
|
*/
|
|
1870
|
-
|
|
2035
|
+
gitListBranchesDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListBranchResponse>;
|
|
1871
2036
|
/**
|
|
1872
2037
|
* Pull changes from remote
|
|
1873
|
-
* @summary Pull changes
|
|
2038
|
+
* @summary [DEPRECATED] Pull changes
|
|
1874
2039
|
* @param {string} sandboxId
|
|
1875
2040
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1876
2041
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1877
2042
|
* @param {*} [options] Override http request option.
|
|
2043
|
+
* @deprecated
|
|
1878
2044
|
* @throws {RequiredError}
|
|
1879
2045
|
*/
|
|
1880
|
-
|
|
2046
|
+
gitPullChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1881
2047
|
/**
|
|
1882
2048
|
* Push changes to remote
|
|
1883
|
-
* @summary Push changes
|
|
2049
|
+
* @summary [DEPRECATED] Push changes
|
|
1884
2050
|
* @param {string} sandboxId
|
|
1885
2051
|
* @param {GitRepoRequest} gitRepoRequest
|
|
1886
2052
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1887
2053
|
* @param {*} [options] Override http request option.
|
|
2054
|
+
* @deprecated
|
|
1888
2055
|
* @throws {RequiredError}
|
|
1889
2056
|
*/
|
|
1890
|
-
|
|
2057
|
+
gitPushChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1891
2058
|
/**
|
|
1892
2059
|
*
|
|
1893
|
-
* @summary List files
|
|
2060
|
+
* @summary [DEPRECATED] List files
|
|
1894
2061
|
* @param {string} sandboxId
|
|
1895
2062
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1896
2063
|
* @param {string} [path]
|
|
1897
2064
|
* @param {*} [options] Override http request option.
|
|
2065
|
+
* @deprecated
|
|
1898
2066
|
* @throws {RequiredError}
|
|
1899
2067
|
*/
|
|
1900
|
-
|
|
2068
|
+
listFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<FileInfo>>;
|
|
1901
2069
|
/**
|
|
1902
2070
|
* List all active PTY sessions in the sandbox
|
|
1903
|
-
* @summary List PTY sessions
|
|
2071
|
+
* @summary [DEPRECATED] List PTY sessions
|
|
1904
2072
|
* @param {string} sandboxId
|
|
1905
2073
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1906
2074
|
* @param {*} [options] Override http request option.
|
|
2075
|
+
* @deprecated
|
|
1907
2076
|
* @throws {RequiredError}
|
|
1908
2077
|
*/
|
|
1909
|
-
|
|
2078
|
+
listPTYSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<PtyListResponse>;
|
|
1910
2079
|
/**
|
|
1911
2080
|
* List all active sessions in the sandbox
|
|
1912
|
-
* @summary List sessions
|
|
2081
|
+
* @summary [DEPRECATED] List sessions
|
|
1913
2082
|
* @param {string} sandboxId
|
|
1914
2083
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1915
2084
|
* @param {*} [options] Override http request option.
|
|
2085
|
+
* @deprecated
|
|
1916
2086
|
* @throws {RequiredError}
|
|
1917
2087
|
*/
|
|
1918
|
-
|
|
2088
|
+
listSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Session>>;
|
|
1919
2089
|
/**
|
|
1920
2090
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
1921
|
-
* @summary Get Lsp Completions
|
|
2091
|
+
* @summary [DEPRECATED] Get Lsp Completions
|
|
1922
2092
|
* @param {string} sandboxId
|
|
1923
2093
|
* @param {LspCompletionParams} lspCompletionParams
|
|
1924
2094
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1925
2095
|
* @param {*} [options] Override http request option.
|
|
2096
|
+
* @deprecated
|
|
1926
2097
|
* @throws {RequiredError}
|
|
1927
2098
|
*/
|
|
1928
|
-
|
|
2099
|
+
lspCompletionsDeprecated(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<CompletionList>;
|
|
1929
2100
|
/**
|
|
1930
2101
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
1931
|
-
* @summary Call Lsp DidClose
|
|
2102
|
+
* @summary [DEPRECATED] Call Lsp DidClose
|
|
1932
2103
|
* @param {string} sandboxId
|
|
1933
2104
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1934
2105
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1935
2106
|
* @param {*} [options] Override http request option.
|
|
2107
|
+
* @deprecated
|
|
1936
2108
|
* @throws {RequiredError}
|
|
1937
2109
|
*/
|
|
1938
|
-
|
|
2110
|
+
lspDidCloseDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1939
2111
|
/**
|
|
1940
2112
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
1941
|
-
* @summary Call Lsp DidOpen
|
|
2113
|
+
* @summary [DEPRECATED] Call Lsp DidOpen
|
|
1942
2114
|
* @param {string} sandboxId
|
|
1943
2115
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
1944
2116
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1945
2117
|
* @param {*} [options] Override http request option.
|
|
2118
|
+
* @deprecated
|
|
1946
2119
|
* @throws {RequiredError}
|
|
1947
2120
|
*/
|
|
1948
|
-
|
|
2121
|
+
lspDidOpenDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1949
2122
|
/**
|
|
1950
2123
|
* The document symbol request is sent from the client to the server.
|
|
1951
|
-
* @summary Call Lsp DocumentSymbols
|
|
2124
|
+
* @summary [DEPRECATED] Call Lsp DocumentSymbols
|
|
1952
2125
|
* @param {string} sandboxId
|
|
1953
2126
|
* @param {string} languageId
|
|
1954
2127
|
* @param {string} pathToProject
|
|
1955
2128
|
* @param {string} uri
|
|
1956
2129
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1957
2130
|
* @param {*} [options] Override http request option.
|
|
2131
|
+
* @deprecated
|
|
1958
2132
|
* @throws {RequiredError}
|
|
1959
2133
|
*/
|
|
1960
|
-
|
|
2134
|
+
lspDocumentSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LspSymbol>>;
|
|
1961
2135
|
/**
|
|
1962
2136
|
* Start Lsp server process inside sandbox project
|
|
1963
|
-
* @summary Start Lsp server
|
|
2137
|
+
* @summary [DEPRECATED] Start Lsp server
|
|
1964
2138
|
* @param {string} sandboxId
|
|
1965
2139
|
* @param {LspServerRequest} lspServerRequest
|
|
1966
2140
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1967
2141
|
* @param {*} [options] Override http request option.
|
|
2142
|
+
* @deprecated
|
|
1968
2143
|
* @throws {RequiredError}
|
|
1969
2144
|
*/
|
|
1970
|
-
|
|
2145
|
+
lspStartDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1971
2146
|
/**
|
|
1972
2147
|
* Stop Lsp server process inside sandbox project
|
|
1973
|
-
* @summary Stop Lsp server
|
|
2148
|
+
* @summary [DEPRECATED] Stop Lsp server
|
|
1974
2149
|
* @param {string} sandboxId
|
|
1975
2150
|
* @param {LspServerRequest} lspServerRequest
|
|
1976
2151
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1977
2152
|
* @param {*} [options] Override http request option.
|
|
2153
|
+
* @deprecated
|
|
1978
2154
|
* @throws {RequiredError}
|
|
1979
2155
|
*/
|
|
1980
|
-
|
|
2156
|
+
lspStopDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1981
2157
|
/**
|
|
1982
2158
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
1983
|
-
* @summary Call Lsp WorkspaceSymbols
|
|
2159
|
+
* @summary [DEPRECATED] Call Lsp WorkspaceSymbols
|
|
1984
2160
|
* @param {string} sandboxId
|
|
1985
2161
|
* @param {string} languageId
|
|
1986
2162
|
* @param {string} pathToProject
|
|
1987
2163
|
* @param {string} query
|
|
1988
2164
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1989
2165
|
* @param {*} [options] Override http request option.
|
|
2166
|
+
* @deprecated
|
|
1990
2167
|
* @throws {RequiredError}
|
|
1991
2168
|
*/
|
|
1992
|
-
|
|
2169
|
+
lspWorkspaceSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LspSymbol>>;
|
|
1993
2170
|
/**
|
|
1994
2171
|
* Move file inside sandbox
|
|
1995
|
-
* @summary Move file
|
|
2172
|
+
* @summary [DEPRECATED] Move file
|
|
1996
2173
|
* @param {string} sandboxId
|
|
1997
2174
|
* @param {string} source
|
|
1998
2175
|
* @param {string} destination
|
|
1999
2176
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2000
2177
|
* @param {*} [options] Override http request option.
|
|
2178
|
+
* @deprecated
|
|
2001
2179
|
* @throws {RequiredError}
|
|
2002
2180
|
*/
|
|
2003
|
-
|
|
2181
|
+
moveFileDeprecated(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2004
2182
|
/**
|
|
2005
2183
|
* Move mouse cursor to specified coordinates
|
|
2006
|
-
* @summary Move mouse
|
|
2184
|
+
* @summary [DEPRECATED] Move mouse
|
|
2007
2185
|
* @param {string} sandboxId
|
|
2008
2186
|
* @param {MouseMoveRequest} mouseMoveRequest
|
|
2009
2187
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2010
2188
|
* @param {*} [options] Override http request option.
|
|
2189
|
+
* @deprecated
|
|
2011
2190
|
* @throws {RequiredError}
|
|
2012
2191
|
*/
|
|
2013
|
-
|
|
2192
|
+
moveMouseDeprecated(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<MouseMoveResponse>;
|
|
2014
2193
|
/**
|
|
2015
2194
|
* Press a hotkey combination
|
|
2016
|
-
* @summary Press hotkey
|
|
2195
|
+
* @summary [DEPRECATED] Press hotkey
|
|
2017
2196
|
* @param {string} sandboxId
|
|
2018
2197
|
* @param {KeyboardHotkeyRequest} keyboardHotkeyRequest
|
|
2019
2198
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2020
2199
|
* @param {*} [options] Override http request option.
|
|
2200
|
+
* @deprecated
|
|
2021
2201
|
* @throws {RequiredError}
|
|
2022
2202
|
*/
|
|
2023
|
-
|
|
2203
|
+
pressHotkeyDeprecated(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2024
2204
|
/**
|
|
2025
2205
|
* Press a key with optional modifiers
|
|
2026
|
-
* @summary Press key
|
|
2206
|
+
* @summary [DEPRECATED] Press key
|
|
2027
2207
|
* @param {string} sandboxId
|
|
2028
2208
|
* @param {KeyboardPressRequest} keyboardPressRequest
|
|
2029
2209
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2030
2210
|
* @param {*} [options] Override http request option.
|
|
2211
|
+
* @deprecated
|
|
2031
2212
|
* @throws {RequiredError}
|
|
2032
2213
|
*/
|
|
2033
|
-
|
|
2214
|
+
pressKeyDeprecated(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2034
2215
|
/**
|
|
2035
2216
|
* Replace text/pattern in multiple files inside sandbox
|
|
2036
|
-
* @summary Replace in files
|
|
2217
|
+
* @summary [DEPRECATED] Replace in files
|
|
2037
2218
|
* @param {string} sandboxId
|
|
2038
2219
|
* @param {ReplaceRequest} replaceRequest
|
|
2039
2220
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2040
2221
|
* @param {*} [options] Override http request option.
|
|
2222
|
+
* @deprecated
|
|
2041
2223
|
* @throws {RequiredError}
|
|
2042
2224
|
*/
|
|
2043
|
-
|
|
2225
|
+
replaceInFilesDeprecated(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ReplaceResult>>;
|
|
2044
2226
|
/**
|
|
2045
2227
|
* Resize a PTY session
|
|
2046
|
-
* @summary Resize PTY session
|
|
2228
|
+
* @summary [DEPRECATED] Resize PTY session
|
|
2047
2229
|
* @param {string} sandboxId
|
|
2048
2230
|
* @param {string} sessionId
|
|
2049
2231
|
* @param {PtyResizeRequest} ptyResizeRequest
|
|
2050
2232
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2051
2233
|
* @param {*} [options] Override http request option.
|
|
2234
|
+
* @deprecated
|
|
2052
2235
|
* @throws {RequiredError}
|
|
2053
2236
|
*/
|
|
2054
|
-
|
|
2237
|
+
resizePTYSessionDeprecated(sandboxId: string, sessionId: string, ptyResizeRequest: PtyResizeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<PtySessionInfo>;
|
|
2055
2238
|
/**
|
|
2056
2239
|
* Restart a specific VNC process
|
|
2057
|
-
* @summary Restart process
|
|
2240
|
+
* @summary [DEPRECATED] Restart process
|
|
2058
2241
|
* @param {string} processName
|
|
2059
2242
|
* @param {string} sandboxId
|
|
2060
2243
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2061
2244
|
* @param {*} [options] Override http request option.
|
|
2245
|
+
* @deprecated
|
|
2062
2246
|
* @throws {RequiredError}
|
|
2063
2247
|
*/
|
|
2064
|
-
|
|
2248
|
+
restartProcessDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessRestartResponse>;
|
|
2065
2249
|
/**
|
|
2066
2250
|
* Scroll mouse at specified coordinates
|
|
2067
|
-
* @summary Scroll mouse
|
|
2251
|
+
* @summary [DEPRECATED] Scroll mouse
|
|
2068
2252
|
* @param {string} sandboxId
|
|
2069
2253
|
* @param {MouseScrollRequest} mouseScrollRequest
|
|
2070
2254
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2071
2255
|
* @param {*} [options] Override http request option.
|
|
2256
|
+
* @deprecated
|
|
2072
2257
|
* @throws {RequiredError}
|
|
2073
2258
|
*/
|
|
2074
|
-
|
|
2259
|
+
scrollMouseDeprecated(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<MouseScrollResponse>;
|
|
2075
2260
|
/**
|
|
2076
2261
|
* Search for files inside sandbox
|
|
2077
|
-
* @summary Search files
|
|
2262
|
+
* @summary [DEPRECATED] Search files
|
|
2078
2263
|
* @param {string} sandboxId
|
|
2079
2264
|
* @param {string} path
|
|
2080
2265
|
* @param {string} pattern
|
|
2081
2266
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2082
2267
|
* @param {*} [options] Override http request option.
|
|
2268
|
+
* @deprecated
|
|
2083
2269
|
* @throws {RequiredError}
|
|
2084
2270
|
*/
|
|
2085
|
-
|
|
2271
|
+
searchFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<SearchFilesResponse>;
|
|
2086
2272
|
/**
|
|
2087
2273
|
* Set file owner/group/permissions inside sandbox
|
|
2088
|
-
* @summary Set file permissions
|
|
2274
|
+
* @summary [DEPRECATED] Set file permissions
|
|
2089
2275
|
* @param {string} sandboxId
|
|
2090
2276
|
* @param {string} path
|
|
2091
2277
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -2093,30 +2279,33 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
2093
2279
|
* @param {string} [group]
|
|
2094
2280
|
* @param {string} [mode]
|
|
2095
2281
|
* @param {*} [options] Override http request option.
|
|
2282
|
+
* @deprecated
|
|
2096
2283
|
* @throws {RequiredError}
|
|
2097
2284
|
*/
|
|
2098
|
-
|
|
2285
|
+
setFilePermissionsDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2099
2286
|
/**
|
|
2100
2287
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2101
|
-
* @summary Start computer use processes
|
|
2288
|
+
* @summary [DEPRECATED] Start computer use processes
|
|
2102
2289
|
* @param {string} sandboxId
|
|
2103
2290
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2104
2291
|
* @param {*} [options] Override http request option.
|
|
2292
|
+
* @deprecated
|
|
2105
2293
|
* @throws {RequiredError}
|
|
2106
2294
|
*/
|
|
2107
|
-
|
|
2295
|
+
startComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStartResponse>;
|
|
2108
2296
|
/**
|
|
2109
2297
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2110
|
-
* @summary Stop computer use processes
|
|
2298
|
+
* @summary [DEPRECATED] Stop computer use processes
|
|
2111
2299
|
* @param {string} sandboxId
|
|
2112
2300
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2113
2301
|
* @param {*} [options] Override http request option.
|
|
2302
|
+
* @deprecated
|
|
2114
2303
|
* @throws {RequiredError}
|
|
2115
2304
|
*/
|
|
2116
|
-
|
|
2305
|
+
stopComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStopResponse>;
|
|
2117
2306
|
/**
|
|
2118
2307
|
* Take a compressed screenshot of a specific region
|
|
2119
|
-
* @summary Take compressed region screenshot
|
|
2308
|
+
* @summary [DEPRECATED] Take compressed region screenshot
|
|
2120
2309
|
* @param {string} sandboxId
|
|
2121
2310
|
* @param {number} height
|
|
2122
2311
|
* @param {number} width
|
|
@@ -2128,12 +2317,13 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
2128
2317
|
* @param {string} [format]
|
|
2129
2318
|
* @param {boolean} [showCursor]
|
|
2130
2319
|
* @param {*} [options] Override http request option.
|
|
2320
|
+
* @deprecated
|
|
2131
2321
|
* @throws {RequiredError}
|
|
2132
2322
|
*/
|
|
2133
|
-
|
|
2323
|
+
takeCompressedRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<CompressedScreenshotResponse>;
|
|
2134
2324
|
/**
|
|
2135
2325
|
* Take a compressed screenshot with format, quality, and scale options
|
|
2136
|
-
* @summary Take compressed screenshot
|
|
2326
|
+
* @summary [DEPRECATED] Take compressed screenshot
|
|
2137
2327
|
* @param {string} sandboxId
|
|
2138
2328
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2139
2329
|
* @param {number} [scale]
|
|
@@ -2141,12 +2331,13 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
2141
2331
|
* @param {string} [format]
|
|
2142
2332
|
* @param {boolean} [showCursor]
|
|
2143
2333
|
* @param {*} [options] Override http request option.
|
|
2334
|
+
* @deprecated
|
|
2144
2335
|
* @throws {RequiredError}
|
|
2145
2336
|
*/
|
|
2146
|
-
|
|
2337
|
+
takeCompressedScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<CompressedScreenshotResponse>;
|
|
2147
2338
|
/**
|
|
2148
2339
|
* Take a screenshot of a specific region
|
|
2149
|
-
* @summary Take region screenshot
|
|
2340
|
+
* @summary [DEPRECATED] Take region screenshot
|
|
2150
2341
|
* @param {string} sandboxId
|
|
2151
2342
|
* @param {number} height
|
|
2152
2343
|
* @param {number} width
|
|
@@ -2155,32 +2346,35 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
2155
2346
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2156
2347
|
* @param {boolean} [showCursor]
|
|
2157
2348
|
* @param {*} [options] Override http request option.
|
|
2349
|
+
* @deprecated
|
|
2158
2350
|
* @throws {RequiredError}
|
|
2159
2351
|
*/
|
|
2160
|
-
|
|
2352
|
+
takeRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<RegionScreenshotResponse>;
|
|
2161
2353
|
/**
|
|
2162
2354
|
* Take a screenshot of the entire screen
|
|
2163
|
-
* @summary Take screenshot
|
|
2355
|
+
* @summary [DEPRECATED] Take screenshot
|
|
2164
2356
|
* @param {string} sandboxId
|
|
2165
2357
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2166
2358
|
* @param {boolean} [showCursor]
|
|
2167
2359
|
* @param {*} [options] Override http request option.
|
|
2360
|
+
* @deprecated
|
|
2168
2361
|
* @throws {RequiredError}
|
|
2169
2362
|
*/
|
|
2170
|
-
|
|
2363
|
+
takeScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<ScreenshotResponse>;
|
|
2171
2364
|
/**
|
|
2172
2365
|
* Type text using keyboard
|
|
2173
|
-
* @summary Type text
|
|
2366
|
+
* @summary [DEPRECATED] Type text
|
|
2174
2367
|
* @param {string} sandboxId
|
|
2175
2368
|
* @param {KeyboardTypeRequest} keyboardTypeRequest
|
|
2176
2369
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2177
2370
|
* @param {*} [options] Override http request option.
|
|
2371
|
+
* @deprecated
|
|
2178
2372
|
* @throws {RequiredError}
|
|
2179
2373
|
*/
|
|
2180
|
-
|
|
2374
|
+
typeTextDeprecated(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2181
2375
|
/**
|
|
2182
2376
|
* Upload file inside sandbox
|
|
2183
|
-
* @summary Upload file
|
|
2377
|
+
* @summary [DEPRECATED] Upload file
|
|
2184
2378
|
* @param {string} sandboxId
|
|
2185
2379
|
* @param {string} path
|
|
2186
2380
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -2189,16 +2383,17 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
2189
2383
|
* @deprecated
|
|
2190
2384
|
* @throws {RequiredError}
|
|
2191
2385
|
*/
|
|
2192
|
-
|
|
2386
|
+
uploadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2193
2387
|
/**
|
|
2194
2388
|
* Upload multiple files inside sandbox
|
|
2195
|
-
* @summary Upload multiple files
|
|
2389
|
+
* @summary [DEPRECATED] Upload multiple files
|
|
2196
2390
|
* @param {string} sandboxId
|
|
2197
2391
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2198
2392
|
* @param {*} [options] Override http request option.
|
|
2393
|
+
* @deprecated
|
|
2199
2394
|
* @throws {RequiredError}
|
|
2200
2395
|
*/
|
|
2201
|
-
|
|
2396
|
+
uploadFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2202
2397
|
};
|
|
2203
2398
|
/**
|
|
2204
2399
|
* ToolboxApi - object-oriented interface
|
|
@@ -2209,86 +2404,93 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
2209
2404
|
export declare class ToolboxApi extends BaseAPI {
|
|
2210
2405
|
/**
|
|
2211
2406
|
* Click mouse at specified coordinates
|
|
2212
|
-
* @summary Click mouse
|
|
2407
|
+
* @summary [DEPRECATED] Click mouse
|
|
2213
2408
|
* @param {string} sandboxId
|
|
2214
2409
|
* @param {MouseClickRequest} mouseClickRequest
|
|
2215
2410
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2216
2411
|
* @param {*} [options] Override http request option.
|
|
2412
|
+
* @deprecated
|
|
2217
2413
|
* @throws {RequiredError}
|
|
2218
2414
|
* @memberof ToolboxApi
|
|
2219
2415
|
*/
|
|
2220
|
-
|
|
2416
|
+
clickMouseDeprecated(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
|
|
2221
2417
|
/**
|
|
2222
2418
|
* Create folder inside sandbox
|
|
2223
|
-
* @summary Create folder
|
|
2419
|
+
* @summary [DEPRECATED] Create folder
|
|
2224
2420
|
* @param {string} sandboxId
|
|
2225
2421
|
* @param {string} path
|
|
2226
2422
|
* @param {string} mode
|
|
2227
2423
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2228
2424
|
* @param {*} [options] Override http request option.
|
|
2425
|
+
* @deprecated
|
|
2229
2426
|
* @throws {RequiredError}
|
|
2230
2427
|
* @memberof ToolboxApi
|
|
2231
2428
|
*/
|
|
2232
|
-
|
|
2429
|
+
createFolderDeprecated(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2233
2430
|
/**
|
|
2234
2431
|
* Create a new PTY session in the sandbox
|
|
2235
|
-
* @summary Create PTY session
|
|
2432
|
+
* @summary [DEPRECATED] Create PTY session
|
|
2236
2433
|
* @param {string} sandboxId
|
|
2237
2434
|
* @param {PtyCreateRequest} ptyCreateRequest
|
|
2238
2435
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2239
2436
|
* @param {*} [options] Override http request option.
|
|
2437
|
+
* @deprecated
|
|
2240
2438
|
* @throws {RequiredError}
|
|
2241
2439
|
* @memberof ToolboxApi
|
|
2242
2440
|
*/
|
|
2243
|
-
|
|
2441
|
+
createPTYSessionDeprecated(sandboxId: string, ptyCreateRequest: PtyCreateRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyCreateResponse, any>>;
|
|
2244
2442
|
/**
|
|
2245
2443
|
* Create a new session in the sandbox
|
|
2246
|
-
* @summary Create session
|
|
2444
|
+
* @summary [DEPRECATED] Create session
|
|
2247
2445
|
* @param {string} sandboxId
|
|
2248
2446
|
* @param {CreateSessionRequest} createSessionRequest
|
|
2249
2447
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2250
2448
|
* @param {*} [options] Override http request option.
|
|
2449
|
+
* @deprecated
|
|
2251
2450
|
* @throws {RequiredError}
|
|
2252
2451
|
* @memberof ToolboxApi
|
|
2253
2452
|
*/
|
|
2254
|
-
|
|
2453
|
+
createSessionDeprecated(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2255
2454
|
/**
|
|
2256
2455
|
* Delete file inside sandbox
|
|
2257
|
-
* @summary Delete file
|
|
2456
|
+
* @summary [DEPRECATED] Delete file
|
|
2258
2457
|
* @param {string} sandboxId
|
|
2259
2458
|
* @param {string} path
|
|
2260
2459
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2261
2460
|
* @param {boolean} [recursive]
|
|
2262
2461
|
* @param {*} [options] Override http request option.
|
|
2462
|
+
* @deprecated
|
|
2263
2463
|
* @throws {RequiredError}
|
|
2264
2464
|
* @memberof ToolboxApi
|
|
2265
2465
|
*/
|
|
2266
|
-
|
|
2466
|
+
deleteFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2267
2467
|
/**
|
|
2268
2468
|
* Delete a PTY session and terminate the associated process
|
|
2269
|
-
* @summary Delete PTY session
|
|
2469
|
+
* @summary [DEPRECATED] Delete PTY session
|
|
2270
2470
|
* @param {string} sandboxId
|
|
2271
2471
|
* @param {string} sessionId
|
|
2272
2472
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2273
2473
|
* @param {*} [options] Override http request option.
|
|
2474
|
+
* @deprecated
|
|
2274
2475
|
* @throws {RequiredError}
|
|
2275
2476
|
* @memberof ToolboxApi
|
|
2276
2477
|
*/
|
|
2277
|
-
|
|
2478
|
+
deletePTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2278
2479
|
/**
|
|
2279
2480
|
* Delete a specific session
|
|
2280
|
-
* @summary Delete session
|
|
2481
|
+
* @summary [DEPRECATED] Delete session
|
|
2281
2482
|
* @param {string} sandboxId
|
|
2282
2483
|
* @param {string} sessionId
|
|
2283
2484
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2284
2485
|
* @param {*} [options] Override http request option.
|
|
2486
|
+
* @deprecated
|
|
2285
2487
|
* @throws {RequiredError}
|
|
2286
2488
|
* @memberof ToolboxApi
|
|
2287
2489
|
*/
|
|
2288
|
-
|
|
2490
|
+
deleteSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2289
2491
|
/**
|
|
2290
2492
|
* Download file from sandbox
|
|
2291
|
-
* @summary Download file
|
|
2493
|
+
* @summary [DEPRECATED] Download file
|
|
2292
2494
|
* @param {string} sandboxId
|
|
2293
2495
|
* @param {string} path
|
|
2294
2496
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -2297,152 +2499,165 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2297
2499
|
* @throws {RequiredError}
|
|
2298
2500
|
* @memberof ToolboxApi
|
|
2299
2501
|
*/
|
|
2300
|
-
|
|
2502
|
+
downloadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2301
2503
|
/**
|
|
2302
2504
|
* Streams back a multipart/form-data bundle of the requested paths
|
|
2303
|
-
* @summary Download multiple files
|
|
2505
|
+
* @summary [DEPRECATED] Download multiple files
|
|
2304
2506
|
* @param {string} sandboxId
|
|
2305
2507
|
* @param {DownloadFiles} downloadFiles
|
|
2306
2508
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2307
2509
|
* @param {*} [options] Override http request option.
|
|
2510
|
+
* @deprecated
|
|
2308
2511
|
* @throws {RequiredError}
|
|
2309
2512
|
* @memberof ToolboxApi
|
|
2310
2513
|
*/
|
|
2311
|
-
|
|
2514
|
+
downloadFilesDeprecated(sandboxId: string, downloadFiles: DownloadFiles, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2312
2515
|
/**
|
|
2313
2516
|
* Drag mouse from start to end coordinates
|
|
2314
|
-
* @summary Drag mouse
|
|
2517
|
+
* @summary [DEPRECATED] Drag mouse
|
|
2315
2518
|
* @param {string} sandboxId
|
|
2316
2519
|
* @param {MouseDragRequest} mouseDragRequest
|
|
2317
2520
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2318
2521
|
* @param {*} [options] Override http request option.
|
|
2522
|
+
* @deprecated
|
|
2319
2523
|
* @throws {RequiredError}
|
|
2320
2524
|
* @memberof ToolboxApi
|
|
2321
2525
|
*/
|
|
2322
|
-
|
|
2526
|
+
dragMouseDeprecated(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any>>;
|
|
2323
2527
|
/**
|
|
2324
2528
|
* Execute command synchronously inside sandbox
|
|
2325
|
-
* @summary Execute command
|
|
2529
|
+
* @summary [DEPRECATED] Execute command
|
|
2326
2530
|
* @param {string} sandboxId
|
|
2327
2531
|
* @param {ExecuteRequest} executeRequest
|
|
2328
2532
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2329
2533
|
* @param {*} [options] Override http request option.
|
|
2534
|
+
* @deprecated
|
|
2330
2535
|
* @throws {RequiredError}
|
|
2331
2536
|
* @memberof ToolboxApi
|
|
2332
2537
|
*/
|
|
2333
|
-
|
|
2538
|
+
executeCommandDeprecated(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
|
|
2334
2539
|
/**
|
|
2335
2540
|
* Execute a command in a specific session
|
|
2336
|
-
* @summary Execute command in session
|
|
2541
|
+
* @summary [DEPRECATED] Execute command in session
|
|
2337
2542
|
* @param {string} sandboxId
|
|
2338
2543
|
* @param {string} sessionId
|
|
2339
2544
|
* @param {SessionExecuteRequest} sessionExecuteRequest
|
|
2340
2545
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2341
2546
|
* @param {*} [options] Override http request option.
|
|
2547
|
+
* @deprecated
|
|
2342
2548
|
* @throws {RequiredError}
|
|
2343
2549
|
* @memberof ToolboxApi
|
|
2344
2550
|
*/
|
|
2345
|
-
|
|
2551
|
+
executeSessionCommandDeprecated(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
|
|
2346
2552
|
/**
|
|
2347
2553
|
* Search for text/pattern inside sandbox files
|
|
2348
|
-
* @summary Search for text/pattern in files
|
|
2554
|
+
* @summary [DEPRECATED] Search for text/pattern in files
|
|
2349
2555
|
* @param {string} sandboxId
|
|
2350
2556
|
* @param {string} path
|
|
2351
2557
|
* @param {string} pattern
|
|
2352
2558
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2353
2559
|
* @param {*} [options] Override http request option.
|
|
2560
|
+
* @deprecated
|
|
2354
2561
|
* @throws {RequiredError}
|
|
2355
2562
|
* @memberof ToolboxApi
|
|
2356
2563
|
*/
|
|
2357
|
-
|
|
2564
|
+
findInFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any>>;
|
|
2358
2565
|
/**
|
|
2359
2566
|
* Get status of all VNC desktop processes
|
|
2360
|
-
* @summary Get computer use status
|
|
2567
|
+
* @summary [DEPRECATED] Get computer use status
|
|
2361
2568
|
* @param {string} sandboxId
|
|
2362
2569
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2363
2570
|
* @param {*} [options] Override http request option.
|
|
2571
|
+
* @deprecated
|
|
2364
2572
|
* @throws {RequiredError}
|
|
2365
2573
|
* @memberof ToolboxApi
|
|
2366
2574
|
*/
|
|
2367
|
-
|
|
2575
|
+
getComputerUseStatusDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
2368
2576
|
/**
|
|
2369
2577
|
* Get information about displays
|
|
2370
|
-
* @summary Get display info
|
|
2578
|
+
* @summary [DEPRECATED] Get display info
|
|
2371
2579
|
* @param {string} sandboxId
|
|
2372
2580
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2373
2581
|
* @param {*} [options] Override http request option.
|
|
2582
|
+
* @deprecated
|
|
2374
2583
|
* @throws {RequiredError}
|
|
2375
2584
|
* @memberof ToolboxApi
|
|
2376
2585
|
*/
|
|
2377
|
-
|
|
2586
|
+
getDisplayInfoDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any>>;
|
|
2378
2587
|
/**
|
|
2379
2588
|
* Get file info inside sandbox
|
|
2380
|
-
* @summary Get file info
|
|
2589
|
+
* @summary [DEPRECATED] Get file info
|
|
2381
2590
|
* @param {string} sandboxId
|
|
2382
2591
|
* @param {string} path
|
|
2383
2592
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2384
2593
|
* @param {*} [options] Override http request option.
|
|
2594
|
+
* @deprecated
|
|
2385
2595
|
* @throws {RequiredError}
|
|
2386
2596
|
* @memberof ToolboxApi
|
|
2387
2597
|
*/
|
|
2388
|
-
|
|
2598
|
+
getFileInfoDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any>>;
|
|
2389
2599
|
/**
|
|
2390
2600
|
* Get current mouse cursor position
|
|
2391
|
-
* @summary Get mouse position
|
|
2601
|
+
* @summary [DEPRECATED] Get mouse position
|
|
2392
2602
|
* @param {string} sandboxId
|
|
2393
2603
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2394
2604
|
* @param {*} [options] Override http request option.
|
|
2605
|
+
* @deprecated
|
|
2395
2606
|
* @throws {RequiredError}
|
|
2396
2607
|
* @memberof ToolboxApi
|
|
2397
2608
|
*/
|
|
2398
|
-
|
|
2609
|
+
getMousePositionDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePosition, any>>;
|
|
2399
2610
|
/**
|
|
2400
2611
|
* Get PTY session information by ID
|
|
2401
|
-
* @summary Get PTY session
|
|
2612
|
+
* @summary [DEPRECATED] Get PTY session
|
|
2402
2613
|
* @param {string} sandboxId
|
|
2403
2614
|
* @param {string} sessionId
|
|
2404
2615
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2405
2616
|
* @param {*} [options] Override http request option.
|
|
2617
|
+
* @deprecated
|
|
2406
2618
|
* @throws {RequiredError}
|
|
2407
2619
|
* @memberof ToolboxApi
|
|
2408
2620
|
*/
|
|
2409
|
-
|
|
2621
|
+
getPTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
|
|
2410
2622
|
/**
|
|
2411
2623
|
* Get error logs for a specific VNC process
|
|
2412
|
-
* @summary Get process errors
|
|
2624
|
+
* @summary [DEPRECATED] Get process errors
|
|
2413
2625
|
* @param {string} processName
|
|
2414
2626
|
* @param {string} sandboxId
|
|
2415
2627
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2416
2628
|
* @param {*} [options] Override http request option.
|
|
2629
|
+
* @deprecated
|
|
2417
2630
|
* @throws {RequiredError}
|
|
2418
2631
|
* @memberof ToolboxApi
|
|
2419
2632
|
*/
|
|
2420
|
-
|
|
2633
|
+
getProcessErrorsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any>>;
|
|
2421
2634
|
/**
|
|
2422
2635
|
* Get logs for a specific VNC process
|
|
2423
|
-
* @summary Get process logs
|
|
2636
|
+
* @summary [DEPRECATED] Get process logs
|
|
2424
2637
|
* @param {string} processName
|
|
2425
2638
|
* @param {string} sandboxId
|
|
2426
2639
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2427
2640
|
* @param {*} [options] Override http request option.
|
|
2641
|
+
* @deprecated
|
|
2428
2642
|
* @throws {RequiredError}
|
|
2429
2643
|
* @memberof ToolboxApi
|
|
2430
2644
|
*/
|
|
2431
|
-
|
|
2645
|
+
getProcessLogsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any>>;
|
|
2432
2646
|
/**
|
|
2433
2647
|
* Get status of a specific VNC process
|
|
2434
|
-
* @summary Get process status
|
|
2648
|
+
* @summary [DEPRECATED] Get process status
|
|
2435
2649
|
* @param {string} processName
|
|
2436
2650
|
* @param {string} sandboxId
|
|
2437
2651
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2438
2652
|
* @param {*} [options] Override http request option.
|
|
2653
|
+
* @deprecated
|
|
2439
2654
|
* @throws {RequiredError}
|
|
2440
2655
|
* @memberof ToolboxApi
|
|
2441
2656
|
*/
|
|
2442
|
-
|
|
2657
|
+
getProcessStatusDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
|
|
2443
2658
|
/**
|
|
2444
2659
|
*
|
|
2445
|
-
* @summary Get sandbox project dir
|
|
2660
|
+
* @summary [DEPRECATED] Get sandbox project dir
|
|
2446
2661
|
* @param {string} sandboxId
|
|
2447
2662
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2448
2663
|
* @param {*} [options] Override http request option.
|
|
@@ -2450,411 +2665,447 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2450
2665
|
* @throws {RequiredError}
|
|
2451
2666
|
* @memberof ToolboxApi
|
|
2452
2667
|
*/
|
|
2453
|
-
|
|
2668
|
+
getProjectDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any>>;
|
|
2454
2669
|
/**
|
|
2455
|
-
* Get session by ID
|
|
2456
|
-
* @summary Get session
|
|
2670
|
+
* Get session command by ID
|
|
2671
|
+
* @summary [DEPRECATED] Get session command
|
|
2457
2672
|
* @param {string} sandboxId
|
|
2458
2673
|
* @param {string} sessionId
|
|
2674
|
+
* @param {string} commandId
|
|
2459
2675
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2460
2676
|
* @param {*} [options] Override http request option.
|
|
2677
|
+
* @deprecated
|
|
2461
2678
|
* @throws {RequiredError}
|
|
2462
2679
|
* @memberof ToolboxApi
|
|
2463
2680
|
*/
|
|
2464
|
-
|
|
2681
|
+
getSessionCommandDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
|
|
2465
2682
|
/**
|
|
2466
|
-
* Get
|
|
2467
|
-
* @summary Get
|
|
2683
|
+
* Get logs for a specific command in a session
|
|
2684
|
+
* @summary [DEPRECATED] Get command logs
|
|
2468
2685
|
* @param {string} sandboxId
|
|
2469
2686
|
* @param {string} sessionId
|
|
2470
2687
|
* @param {string} commandId
|
|
2471
2688
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2689
|
+
* @param {boolean} [follow] Whether to stream the logs
|
|
2472
2690
|
* @param {*} [options] Override http request option.
|
|
2691
|
+
* @deprecated
|
|
2473
2692
|
* @throws {RequiredError}
|
|
2474
2693
|
* @memberof ToolboxApi
|
|
2475
2694
|
*/
|
|
2476
|
-
|
|
2695
|
+
getSessionCommandLogsDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
2477
2696
|
/**
|
|
2478
|
-
* Get
|
|
2479
|
-
* @summary Get
|
|
2697
|
+
* Get session by ID
|
|
2698
|
+
* @summary [DEPRECATED] Get session
|
|
2480
2699
|
* @param {string} sandboxId
|
|
2481
2700
|
* @param {string} sessionId
|
|
2482
|
-
* @param {string} commandId
|
|
2483
2701
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2484
|
-
* @param {boolean} [follow] Whether to stream the logs
|
|
2485
2702
|
* @param {*} [options] Override http request option.
|
|
2703
|
+
* @deprecated
|
|
2486
2704
|
* @throws {RequiredError}
|
|
2487
2705
|
* @memberof ToolboxApi
|
|
2488
2706
|
*/
|
|
2489
|
-
|
|
2707
|
+
getSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
|
|
2490
2708
|
/**
|
|
2491
2709
|
*
|
|
2492
|
-
* @summary Get sandbox user home dir
|
|
2710
|
+
* @summary [DEPRECATED] Get sandbox user home dir
|
|
2493
2711
|
* @param {string} sandboxId
|
|
2494
2712
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2495
2713
|
* @param {*} [options] Override http request option.
|
|
2714
|
+
* @deprecated
|
|
2496
2715
|
* @throws {RequiredError}
|
|
2497
2716
|
* @memberof ToolboxApi
|
|
2498
2717
|
*/
|
|
2499
|
-
|
|
2718
|
+
getUserHomeDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any>>;
|
|
2500
2719
|
/**
|
|
2501
2720
|
* Get list of open windows
|
|
2502
|
-
* @summary Get windows
|
|
2721
|
+
* @summary [DEPRECATED] Get windows
|
|
2503
2722
|
* @param {string} sandboxId
|
|
2504
2723
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2505
2724
|
* @param {*} [options] Override http request option.
|
|
2725
|
+
* @deprecated
|
|
2506
2726
|
* @throws {RequiredError}
|
|
2507
2727
|
* @memberof ToolboxApi
|
|
2508
2728
|
*/
|
|
2509
|
-
|
|
2729
|
+
getWindowsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
|
|
2510
2730
|
/**
|
|
2511
2731
|
*
|
|
2512
|
-
* @summary Get sandbox work-dir
|
|
2732
|
+
* @summary [DEPRECATED] Get sandbox work-dir
|
|
2513
2733
|
* @param {string} sandboxId
|
|
2514
2734
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2515
2735
|
* @param {*} [options] Override http request option.
|
|
2736
|
+
* @deprecated
|
|
2516
2737
|
* @throws {RequiredError}
|
|
2517
2738
|
* @memberof ToolboxApi
|
|
2518
2739
|
*/
|
|
2519
|
-
|
|
2740
|
+
getWorkDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any>>;
|
|
2520
2741
|
/**
|
|
2521
2742
|
* Add files to git commit
|
|
2522
|
-
* @summary Add files
|
|
2743
|
+
* @summary [DEPRECATED] Add files
|
|
2523
2744
|
* @param {string} sandboxId
|
|
2524
2745
|
* @param {GitAddRequest} gitAddRequest
|
|
2525
2746
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2526
2747
|
* @param {*} [options] Override http request option.
|
|
2748
|
+
* @deprecated
|
|
2527
2749
|
* @throws {RequiredError}
|
|
2528
2750
|
* @memberof ToolboxApi
|
|
2529
2751
|
*/
|
|
2530
|
-
|
|
2752
|
+
gitAddFilesDeprecated(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2531
2753
|
/**
|
|
2532
2754
|
* Checkout branch or commit in git repository
|
|
2533
|
-
* @summary Checkout branch
|
|
2755
|
+
* @summary [DEPRECATED] Checkout branch
|
|
2534
2756
|
* @param {string} sandboxId
|
|
2535
2757
|
* @param {GitCheckoutRequest} gitCheckoutRequest
|
|
2536
2758
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2537
2759
|
* @param {*} [options] Override http request option.
|
|
2760
|
+
* @deprecated
|
|
2538
2761
|
* @throws {RequiredError}
|
|
2539
2762
|
* @memberof ToolboxApi
|
|
2540
2763
|
*/
|
|
2541
|
-
|
|
2764
|
+
gitCheckoutBranchDeprecated(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2542
2765
|
/**
|
|
2543
2766
|
* Clone git repository
|
|
2544
|
-
* @summary Clone repository
|
|
2767
|
+
* @summary [DEPRECATED] Clone repository
|
|
2545
2768
|
* @param {string} sandboxId
|
|
2546
2769
|
* @param {GitCloneRequest} gitCloneRequest
|
|
2547
2770
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2548
2771
|
* @param {*} [options] Override http request option.
|
|
2772
|
+
* @deprecated
|
|
2549
2773
|
* @throws {RequiredError}
|
|
2550
2774
|
* @memberof ToolboxApi
|
|
2551
2775
|
*/
|
|
2552
|
-
|
|
2776
|
+
gitCloneRepositoryDeprecated(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2553
2777
|
/**
|
|
2554
2778
|
* Commit changes to git repository
|
|
2555
|
-
* @summary Commit changes
|
|
2779
|
+
* @summary [DEPRECATED] Commit changes
|
|
2556
2780
|
* @param {string} sandboxId
|
|
2557
2781
|
* @param {GitCommitRequest} gitCommitRequest
|
|
2558
2782
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2559
2783
|
* @param {*} [options] Override http request option.
|
|
2784
|
+
* @deprecated
|
|
2560
2785
|
* @throws {RequiredError}
|
|
2561
2786
|
* @memberof ToolboxApi
|
|
2562
2787
|
*/
|
|
2563
|
-
|
|
2788
|
+
gitCommitChangesDeprecated(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any>>;
|
|
2564
2789
|
/**
|
|
2565
2790
|
* Create branch on git repository
|
|
2566
|
-
* @summary Create branch
|
|
2791
|
+
* @summary [DEPRECATED] Create branch
|
|
2567
2792
|
* @param {string} sandboxId
|
|
2568
2793
|
* @param {GitBranchRequest} gitBranchRequest
|
|
2569
2794
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2570
2795
|
* @param {*} [options] Override http request option.
|
|
2796
|
+
* @deprecated
|
|
2571
2797
|
* @throws {RequiredError}
|
|
2572
2798
|
* @memberof ToolboxApi
|
|
2573
2799
|
*/
|
|
2574
|
-
|
|
2800
|
+
gitCreateBranchDeprecated(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2575
2801
|
/**
|
|
2576
2802
|
* Delete branch on git repository
|
|
2577
|
-
* @summary Delete branch
|
|
2803
|
+
* @summary [DEPRECATED] Delete branch
|
|
2578
2804
|
* @param {string} sandboxId
|
|
2579
2805
|
* @param {GitDeleteBranchRequest} gitDeleteBranchRequest
|
|
2580
2806
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2581
2807
|
* @param {*} [options] Override http request option.
|
|
2808
|
+
* @deprecated
|
|
2582
2809
|
* @throws {RequiredError}
|
|
2583
2810
|
* @memberof ToolboxApi
|
|
2584
2811
|
*/
|
|
2585
|
-
|
|
2812
|
+
gitDeleteBranchDeprecated(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2586
2813
|
/**
|
|
2587
2814
|
* Get commit history from git repository
|
|
2588
|
-
* @summary Get commit history
|
|
2815
|
+
* @summary [DEPRECATED] Get commit history
|
|
2589
2816
|
* @param {string} sandboxId
|
|
2590
2817
|
* @param {string} path
|
|
2591
2818
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2592
2819
|
* @param {*} [options] Override http request option.
|
|
2820
|
+
* @deprecated
|
|
2593
2821
|
* @throws {RequiredError}
|
|
2594
2822
|
* @memberof ToolboxApi
|
|
2595
2823
|
*/
|
|
2596
|
-
|
|
2824
|
+
gitGetHistoryDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any>>;
|
|
2597
2825
|
/**
|
|
2598
2826
|
* Get status from git repository
|
|
2599
|
-
* @summary Get git status
|
|
2827
|
+
* @summary [DEPRECATED] Get git status
|
|
2600
2828
|
* @param {string} sandboxId
|
|
2601
2829
|
* @param {string} path
|
|
2602
2830
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2603
2831
|
* @param {*} [options] Override http request option.
|
|
2832
|
+
* @deprecated
|
|
2604
2833
|
* @throws {RequiredError}
|
|
2605
2834
|
* @memberof ToolboxApi
|
|
2606
2835
|
*/
|
|
2607
|
-
|
|
2836
|
+
gitGetStatusDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any>>;
|
|
2608
2837
|
/**
|
|
2609
2838
|
* Get branch list from git repository
|
|
2610
|
-
* @summary Get branch list
|
|
2839
|
+
* @summary [DEPRECATED] Get branch list
|
|
2611
2840
|
* @param {string} sandboxId
|
|
2612
2841
|
* @param {string} path
|
|
2613
2842
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2614
2843
|
* @param {*} [options] Override http request option.
|
|
2844
|
+
* @deprecated
|
|
2615
2845
|
* @throws {RequiredError}
|
|
2616
2846
|
* @memberof ToolboxApi
|
|
2617
2847
|
*/
|
|
2618
|
-
|
|
2848
|
+
gitListBranchesDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any>>;
|
|
2619
2849
|
/**
|
|
2620
2850
|
* Pull changes from remote
|
|
2621
|
-
* @summary Pull changes
|
|
2851
|
+
* @summary [DEPRECATED] Pull changes
|
|
2622
2852
|
* @param {string} sandboxId
|
|
2623
2853
|
* @param {GitRepoRequest} gitRepoRequest
|
|
2624
2854
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2625
2855
|
* @param {*} [options] Override http request option.
|
|
2856
|
+
* @deprecated
|
|
2626
2857
|
* @throws {RequiredError}
|
|
2627
2858
|
* @memberof ToolboxApi
|
|
2628
2859
|
*/
|
|
2629
|
-
|
|
2860
|
+
gitPullChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2630
2861
|
/**
|
|
2631
2862
|
* Push changes to remote
|
|
2632
|
-
* @summary Push changes
|
|
2863
|
+
* @summary [DEPRECATED] Push changes
|
|
2633
2864
|
* @param {string} sandboxId
|
|
2634
2865
|
* @param {GitRepoRequest} gitRepoRequest
|
|
2635
2866
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2636
2867
|
* @param {*} [options] Override http request option.
|
|
2868
|
+
* @deprecated
|
|
2637
2869
|
* @throws {RequiredError}
|
|
2638
2870
|
* @memberof ToolboxApi
|
|
2639
2871
|
*/
|
|
2640
|
-
|
|
2872
|
+
gitPushChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2641
2873
|
/**
|
|
2642
2874
|
*
|
|
2643
|
-
* @summary List files
|
|
2875
|
+
* @summary [DEPRECATED] List files
|
|
2644
2876
|
* @param {string} sandboxId
|
|
2645
2877
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2646
2878
|
* @param {string} [path]
|
|
2647
2879
|
* @param {*} [options] Override http request option.
|
|
2880
|
+
* @deprecated
|
|
2648
2881
|
* @throws {RequiredError}
|
|
2649
2882
|
* @memberof ToolboxApi
|
|
2650
2883
|
*/
|
|
2651
|
-
|
|
2884
|
+
listFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any>>;
|
|
2652
2885
|
/**
|
|
2653
2886
|
* List all active PTY sessions in the sandbox
|
|
2654
|
-
* @summary List PTY sessions
|
|
2887
|
+
* @summary [DEPRECATED] List PTY sessions
|
|
2655
2888
|
* @param {string} sandboxId
|
|
2656
2889
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2657
2890
|
* @param {*} [options] Override http request option.
|
|
2891
|
+
* @deprecated
|
|
2658
2892
|
* @throws {RequiredError}
|
|
2659
2893
|
* @memberof ToolboxApi
|
|
2660
2894
|
*/
|
|
2661
|
-
|
|
2895
|
+
listPTYSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyListResponse, any>>;
|
|
2662
2896
|
/**
|
|
2663
2897
|
* List all active sessions in the sandbox
|
|
2664
|
-
* @summary List sessions
|
|
2898
|
+
* @summary [DEPRECATED] List sessions
|
|
2665
2899
|
* @param {string} sandboxId
|
|
2666
2900
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2667
2901
|
* @param {*} [options] Override http request option.
|
|
2902
|
+
* @deprecated
|
|
2668
2903
|
* @throws {RequiredError}
|
|
2669
2904
|
* @memberof ToolboxApi
|
|
2670
2905
|
*/
|
|
2671
|
-
|
|
2906
|
+
listSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
|
|
2672
2907
|
/**
|
|
2673
2908
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
2674
|
-
* @summary Get Lsp Completions
|
|
2909
|
+
* @summary [DEPRECATED] Get Lsp Completions
|
|
2675
2910
|
* @param {string} sandboxId
|
|
2676
2911
|
* @param {LspCompletionParams} lspCompletionParams
|
|
2677
2912
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2678
2913
|
* @param {*} [options] Override http request option.
|
|
2914
|
+
* @deprecated
|
|
2679
2915
|
* @throws {RequiredError}
|
|
2680
2916
|
* @memberof ToolboxApi
|
|
2681
2917
|
*/
|
|
2682
|
-
|
|
2918
|
+
lspCompletionsDeprecated(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any>>;
|
|
2683
2919
|
/**
|
|
2684
2920
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
2685
|
-
* @summary Call Lsp DidClose
|
|
2921
|
+
* @summary [DEPRECATED] Call Lsp DidClose
|
|
2686
2922
|
* @param {string} sandboxId
|
|
2687
2923
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
2688
2924
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2689
2925
|
* @param {*} [options] Override http request option.
|
|
2926
|
+
* @deprecated
|
|
2690
2927
|
* @throws {RequiredError}
|
|
2691
2928
|
* @memberof ToolboxApi
|
|
2692
2929
|
*/
|
|
2693
|
-
|
|
2930
|
+
lspDidCloseDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2694
2931
|
/**
|
|
2695
2932
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
2696
|
-
* @summary Call Lsp DidOpen
|
|
2933
|
+
* @summary [DEPRECATED] Call Lsp DidOpen
|
|
2697
2934
|
* @param {string} sandboxId
|
|
2698
2935
|
* @param {LspDocumentRequest} lspDocumentRequest
|
|
2699
2936
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2700
2937
|
* @param {*} [options] Override http request option.
|
|
2938
|
+
* @deprecated
|
|
2701
2939
|
* @throws {RequiredError}
|
|
2702
2940
|
* @memberof ToolboxApi
|
|
2703
2941
|
*/
|
|
2704
|
-
|
|
2942
|
+
lspDidOpenDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2705
2943
|
/**
|
|
2706
2944
|
* The document symbol request is sent from the client to the server.
|
|
2707
|
-
* @summary Call Lsp DocumentSymbols
|
|
2945
|
+
* @summary [DEPRECATED] Call Lsp DocumentSymbols
|
|
2708
2946
|
* @param {string} sandboxId
|
|
2709
2947
|
* @param {string} languageId
|
|
2710
2948
|
* @param {string} pathToProject
|
|
2711
2949
|
* @param {string} uri
|
|
2712
2950
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2713
2951
|
* @param {*} [options] Override http request option.
|
|
2952
|
+
* @deprecated
|
|
2714
2953
|
* @throws {RequiredError}
|
|
2715
2954
|
* @memberof ToolboxApi
|
|
2716
2955
|
*/
|
|
2717
|
-
|
|
2956
|
+
lspDocumentSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2718
2957
|
/**
|
|
2719
2958
|
* Start Lsp server process inside sandbox project
|
|
2720
|
-
* @summary Start Lsp server
|
|
2959
|
+
* @summary [DEPRECATED] Start Lsp server
|
|
2721
2960
|
* @param {string} sandboxId
|
|
2722
2961
|
* @param {LspServerRequest} lspServerRequest
|
|
2723
2962
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2724
2963
|
* @param {*} [options] Override http request option.
|
|
2964
|
+
* @deprecated
|
|
2725
2965
|
* @throws {RequiredError}
|
|
2726
2966
|
* @memberof ToolboxApi
|
|
2727
2967
|
*/
|
|
2728
|
-
|
|
2968
|
+
lspStartDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2729
2969
|
/**
|
|
2730
2970
|
* Stop Lsp server process inside sandbox project
|
|
2731
|
-
* @summary Stop Lsp server
|
|
2971
|
+
* @summary [DEPRECATED] Stop Lsp server
|
|
2732
2972
|
* @param {string} sandboxId
|
|
2733
2973
|
* @param {LspServerRequest} lspServerRequest
|
|
2734
2974
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2735
2975
|
* @param {*} [options] Override http request option.
|
|
2976
|
+
* @deprecated
|
|
2736
2977
|
* @throws {RequiredError}
|
|
2737
2978
|
* @memberof ToolboxApi
|
|
2738
2979
|
*/
|
|
2739
|
-
|
|
2980
|
+
lspStopDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2740
2981
|
/**
|
|
2741
2982
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
2742
|
-
* @summary Call Lsp WorkspaceSymbols
|
|
2983
|
+
* @summary [DEPRECATED] Call Lsp WorkspaceSymbols
|
|
2743
2984
|
* @param {string} sandboxId
|
|
2744
2985
|
* @param {string} languageId
|
|
2745
2986
|
* @param {string} pathToProject
|
|
2746
2987
|
* @param {string} query
|
|
2747
2988
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2748
2989
|
* @param {*} [options] Override http request option.
|
|
2990
|
+
* @deprecated
|
|
2749
2991
|
* @throws {RequiredError}
|
|
2750
2992
|
* @memberof ToolboxApi
|
|
2751
2993
|
*/
|
|
2752
|
-
|
|
2994
|
+
lspWorkspaceSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2753
2995
|
/**
|
|
2754
2996
|
* Move file inside sandbox
|
|
2755
|
-
* @summary Move file
|
|
2997
|
+
* @summary [DEPRECATED] Move file
|
|
2756
2998
|
* @param {string} sandboxId
|
|
2757
2999
|
* @param {string} source
|
|
2758
3000
|
* @param {string} destination
|
|
2759
3001
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2760
3002
|
* @param {*} [options] Override http request option.
|
|
3003
|
+
* @deprecated
|
|
2761
3004
|
* @throws {RequiredError}
|
|
2762
3005
|
* @memberof ToolboxApi
|
|
2763
3006
|
*/
|
|
2764
|
-
|
|
3007
|
+
moveFileDeprecated(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2765
3008
|
/**
|
|
2766
3009
|
* Move mouse cursor to specified coordinates
|
|
2767
|
-
* @summary Move mouse
|
|
3010
|
+
* @summary [DEPRECATED] Move mouse
|
|
2768
3011
|
* @param {string} sandboxId
|
|
2769
3012
|
* @param {MouseMoveRequest} mouseMoveRequest
|
|
2770
3013
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2771
3014
|
* @param {*} [options] Override http request option.
|
|
3015
|
+
* @deprecated
|
|
2772
3016
|
* @throws {RequiredError}
|
|
2773
3017
|
* @memberof ToolboxApi
|
|
2774
3018
|
*/
|
|
2775
|
-
|
|
3019
|
+
moveMouseDeprecated(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseMoveResponse, any>>;
|
|
2776
3020
|
/**
|
|
2777
3021
|
* Press a hotkey combination
|
|
2778
|
-
* @summary Press hotkey
|
|
3022
|
+
* @summary [DEPRECATED] Press hotkey
|
|
2779
3023
|
* @param {string} sandboxId
|
|
2780
3024
|
* @param {KeyboardHotkeyRequest} keyboardHotkeyRequest
|
|
2781
3025
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2782
3026
|
* @param {*} [options] Override http request option.
|
|
3027
|
+
* @deprecated
|
|
2783
3028
|
* @throws {RequiredError}
|
|
2784
3029
|
* @memberof ToolboxApi
|
|
2785
3030
|
*/
|
|
2786
|
-
|
|
3031
|
+
pressHotkeyDeprecated(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2787
3032
|
/**
|
|
2788
3033
|
* Press a key with optional modifiers
|
|
2789
|
-
* @summary Press key
|
|
3034
|
+
* @summary [DEPRECATED] Press key
|
|
2790
3035
|
* @param {string} sandboxId
|
|
2791
3036
|
* @param {KeyboardPressRequest} keyboardPressRequest
|
|
2792
3037
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2793
3038
|
* @param {*} [options] Override http request option.
|
|
3039
|
+
* @deprecated
|
|
2794
3040
|
* @throws {RequiredError}
|
|
2795
3041
|
* @memberof ToolboxApi
|
|
2796
3042
|
*/
|
|
2797
|
-
|
|
3043
|
+
pressKeyDeprecated(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2798
3044
|
/**
|
|
2799
3045
|
* Replace text/pattern in multiple files inside sandbox
|
|
2800
|
-
* @summary Replace in files
|
|
3046
|
+
* @summary [DEPRECATED] Replace in files
|
|
2801
3047
|
* @param {string} sandboxId
|
|
2802
3048
|
* @param {ReplaceRequest} replaceRequest
|
|
2803
3049
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2804
3050
|
* @param {*} [options] Override http request option.
|
|
3051
|
+
* @deprecated
|
|
2805
3052
|
* @throws {RequiredError}
|
|
2806
3053
|
* @memberof ToolboxApi
|
|
2807
3054
|
*/
|
|
2808
|
-
|
|
3055
|
+
replaceInFilesDeprecated(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any>>;
|
|
2809
3056
|
/**
|
|
2810
3057
|
* Resize a PTY session
|
|
2811
|
-
* @summary Resize PTY session
|
|
3058
|
+
* @summary [DEPRECATED] Resize PTY session
|
|
2812
3059
|
* @param {string} sandboxId
|
|
2813
3060
|
* @param {string} sessionId
|
|
2814
3061
|
* @param {PtyResizeRequest} ptyResizeRequest
|
|
2815
3062
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2816
3063
|
* @param {*} [options] Override http request option.
|
|
3064
|
+
* @deprecated
|
|
2817
3065
|
* @throws {RequiredError}
|
|
2818
3066
|
* @memberof ToolboxApi
|
|
2819
3067
|
*/
|
|
2820
|
-
|
|
3068
|
+
resizePTYSessionDeprecated(sandboxId: string, sessionId: string, ptyResizeRequest: PtyResizeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
|
|
2821
3069
|
/**
|
|
2822
3070
|
* Restart a specific VNC process
|
|
2823
|
-
* @summary Restart process
|
|
3071
|
+
* @summary [DEPRECATED] Restart process
|
|
2824
3072
|
* @param {string} processName
|
|
2825
3073
|
* @param {string} sandboxId
|
|
2826
3074
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2827
3075
|
* @param {*} [options] Override http request option.
|
|
3076
|
+
* @deprecated
|
|
2828
3077
|
* @throws {RequiredError}
|
|
2829
3078
|
* @memberof ToolboxApi
|
|
2830
3079
|
*/
|
|
2831
|
-
|
|
3080
|
+
restartProcessDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any>>;
|
|
2832
3081
|
/**
|
|
2833
3082
|
* Scroll mouse at specified coordinates
|
|
2834
|
-
* @summary Scroll mouse
|
|
3083
|
+
* @summary [DEPRECATED] Scroll mouse
|
|
2835
3084
|
* @param {string} sandboxId
|
|
2836
3085
|
* @param {MouseScrollRequest} mouseScrollRequest
|
|
2837
3086
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2838
3087
|
* @param {*} [options] Override http request option.
|
|
3088
|
+
* @deprecated
|
|
2839
3089
|
* @throws {RequiredError}
|
|
2840
3090
|
* @memberof ToolboxApi
|
|
2841
3091
|
*/
|
|
2842
|
-
|
|
3092
|
+
scrollMouseDeprecated(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseScrollResponse, any>>;
|
|
2843
3093
|
/**
|
|
2844
3094
|
* Search for files inside sandbox
|
|
2845
|
-
* @summary Search files
|
|
3095
|
+
* @summary [DEPRECATED] Search files
|
|
2846
3096
|
* @param {string} sandboxId
|
|
2847
3097
|
* @param {string} path
|
|
2848
3098
|
* @param {string} pattern
|
|
2849
3099
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2850
3100
|
* @param {*} [options] Override http request option.
|
|
3101
|
+
* @deprecated
|
|
2851
3102
|
* @throws {RequiredError}
|
|
2852
3103
|
* @memberof ToolboxApi
|
|
2853
3104
|
*/
|
|
2854
|
-
|
|
3105
|
+
searchFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any>>;
|
|
2855
3106
|
/**
|
|
2856
3107
|
* Set file owner/group/permissions inside sandbox
|
|
2857
|
-
* @summary Set file permissions
|
|
3108
|
+
* @summary [DEPRECATED] Set file permissions
|
|
2858
3109
|
* @param {string} sandboxId
|
|
2859
3110
|
* @param {string} path
|
|
2860
3111
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -2862,33 +3113,36 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2862
3113
|
* @param {string} [group]
|
|
2863
3114
|
* @param {string} [mode]
|
|
2864
3115
|
* @param {*} [options] Override http request option.
|
|
3116
|
+
* @deprecated
|
|
2865
3117
|
* @throws {RequiredError}
|
|
2866
3118
|
* @memberof ToolboxApi
|
|
2867
3119
|
*/
|
|
2868
|
-
|
|
3120
|
+
setFilePermissionsDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2869
3121
|
/**
|
|
2870
3122
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2871
|
-
* @summary Start computer use processes
|
|
3123
|
+
* @summary [DEPRECATED] Start computer use processes
|
|
2872
3124
|
* @param {string} sandboxId
|
|
2873
3125
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2874
3126
|
* @param {*} [options] Override http request option.
|
|
3127
|
+
* @deprecated
|
|
2875
3128
|
* @throws {RequiredError}
|
|
2876
3129
|
* @memberof ToolboxApi
|
|
2877
3130
|
*/
|
|
2878
|
-
|
|
3131
|
+
startComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
|
|
2879
3132
|
/**
|
|
2880
3133
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2881
|
-
* @summary Stop computer use processes
|
|
3134
|
+
* @summary [DEPRECATED] Stop computer use processes
|
|
2882
3135
|
* @param {string} sandboxId
|
|
2883
3136
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2884
3137
|
* @param {*} [options] Override http request option.
|
|
3138
|
+
* @deprecated
|
|
2885
3139
|
* @throws {RequiredError}
|
|
2886
3140
|
* @memberof ToolboxApi
|
|
2887
3141
|
*/
|
|
2888
|
-
|
|
3142
|
+
stopComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
|
|
2889
3143
|
/**
|
|
2890
3144
|
* Take a compressed screenshot of a specific region
|
|
2891
|
-
* @summary Take compressed region screenshot
|
|
3145
|
+
* @summary [DEPRECATED] Take compressed region screenshot
|
|
2892
3146
|
* @param {string} sandboxId
|
|
2893
3147
|
* @param {number} height
|
|
2894
3148
|
* @param {number} width
|
|
@@ -2900,13 +3154,14 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2900
3154
|
* @param {string} [format]
|
|
2901
3155
|
* @param {boolean} [showCursor]
|
|
2902
3156
|
* @param {*} [options] Override http request option.
|
|
3157
|
+
* @deprecated
|
|
2903
3158
|
* @throws {RequiredError}
|
|
2904
3159
|
* @memberof ToolboxApi
|
|
2905
3160
|
*/
|
|
2906
|
-
|
|
3161
|
+
takeCompressedRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any>>;
|
|
2907
3162
|
/**
|
|
2908
3163
|
* Take a compressed screenshot with format, quality, and scale options
|
|
2909
|
-
* @summary Take compressed screenshot
|
|
3164
|
+
* @summary [DEPRECATED] Take compressed screenshot
|
|
2910
3165
|
* @param {string} sandboxId
|
|
2911
3166
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2912
3167
|
* @param {number} [scale]
|
|
@@ -2914,13 +3169,14 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2914
3169
|
* @param {string} [format]
|
|
2915
3170
|
* @param {boolean} [showCursor]
|
|
2916
3171
|
* @param {*} [options] Override http request option.
|
|
3172
|
+
* @deprecated
|
|
2917
3173
|
* @throws {RequiredError}
|
|
2918
3174
|
* @memberof ToolboxApi
|
|
2919
3175
|
*/
|
|
2920
|
-
|
|
3176
|
+
takeCompressedScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any>>;
|
|
2921
3177
|
/**
|
|
2922
3178
|
* Take a screenshot of a specific region
|
|
2923
|
-
* @summary Take region screenshot
|
|
3179
|
+
* @summary [DEPRECATED] Take region screenshot
|
|
2924
3180
|
* @param {string} sandboxId
|
|
2925
3181
|
* @param {number} height
|
|
2926
3182
|
* @param {number} width
|
|
@@ -2929,35 +3185,38 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2929
3185
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2930
3186
|
* @param {boolean} [showCursor]
|
|
2931
3187
|
* @param {*} [options] Override http request option.
|
|
3188
|
+
* @deprecated
|
|
2932
3189
|
* @throws {RequiredError}
|
|
2933
3190
|
* @memberof ToolboxApi
|
|
2934
3191
|
*/
|
|
2935
|
-
|
|
3192
|
+
takeRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegionScreenshotResponse, any>>;
|
|
2936
3193
|
/**
|
|
2937
3194
|
* Take a screenshot of the entire screen
|
|
2938
|
-
* @summary Take screenshot
|
|
3195
|
+
* @summary [DEPRECATED] Take screenshot
|
|
2939
3196
|
* @param {string} sandboxId
|
|
2940
3197
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2941
3198
|
* @param {boolean} [showCursor]
|
|
2942
3199
|
* @param {*} [options] Override http request option.
|
|
3200
|
+
* @deprecated
|
|
2943
3201
|
* @throws {RequiredError}
|
|
2944
3202
|
* @memberof ToolboxApi
|
|
2945
3203
|
*/
|
|
2946
|
-
|
|
3204
|
+
takeScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
2947
3205
|
/**
|
|
2948
3206
|
* Type text using keyboard
|
|
2949
|
-
* @summary Type text
|
|
3207
|
+
* @summary [DEPRECATED] Type text
|
|
2950
3208
|
* @param {string} sandboxId
|
|
2951
3209
|
* @param {KeyboardTypeRequest} keyboardTypeRequest
|
|
2952
3210
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2953
3211
|
* @param {*} [options] Override http request option.
|
|
3212
|
+
* @deprecated
|
|
2954
3213
|
* @throws {RequiredError}
|
|
2955
3214
|
* @memberof ToolboxApi
|
|
2956
3215
|
*/
|
|
2957
|
-
|
|
3216
|
+
typeTextDeprecated(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2958
3217
|
/**
|
|
2959
3218
|
* Upload file inside sandbox
|
|
2960
|
-
* @summary Upload file
|
|
3219
|
+
* @summary [DEPRECATED] Upload file
|
|
2961
3220
|
* @param {string} sandboxId
|
|
2962
3221
|
* @param {string} path
|
|
2963
3222
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
@@ -2967,15 +3226,16 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2967
3226
|
* @throws {RequiredError}
|
|
2968
3227
|
* @memberof ToolboxApi
|
|
2969
3228
|
*/
|
|
2970
|
-
|
|
3229
|
+
uploadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2971
3230
|
/**
|
|
2972
3231
|
* Upload multiple files inside sandbox
|
|
2973
|
-
* @summary Upload multiple files
|
|
3232
|
+
* @summary [DEPRECATED] Upload multiple files
|
|
2974
3233
|
* @param {string} sandboxId
|
|
2975
3234
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2976
3235
|
* @param {*} [options] Override http request option.
|
|
3236
|
+
* @deprecated
|
|
2977
3237
|
* @throws {RequiredError}
|
|
2978
3238
|
* @memberof ToolboxApi
|
|
2979
3239
|
*/
|
|
2980
|
-
|
|
3240
|
+
uploadFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2981
3241
|
}
|