@daytonaio/toolbox-api-client 0.129.0 → 0.131.0-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/computer-use-api.d.ts +167 -0
- package/src/api/computer-use-api.js +316 -0
- package/src/api/computer-use-api.js.map +1 -1
- package/src/models/get-recording-response.d.ts +66 -0
- package/src/models/get-recording-response.js +4 -0
- package/src/models/get-recording-response.js.map +1 -0
- package/src/models/index.d.ts +7 -0
- package/src/models/index.js +7 -0
- package/src/models/index.js.map +1 -1
- package/src/models/list-recordings-response.d.ts +25 -0
- package/src/models/list-recordings-response.js +16 -0
- package/src/models/list-recordings-response.js.map +1 -0
- package/src/models/recording.d.ts +66 -0
- package/src/models/recording.js +4 -0
- package/src/models/recording.js.map +1 -0
- package/src/models/start-recording-request.d.ts +24 -0
- package/src/models/start-recording-request.js +4 -0
- package/src/models/start-recording-request.js.map +1 -0
- package/src/models/start-recording-response.d.ts +48 -0
- package/src/models/start-recording-response.js +4 -0
- package/src/models/start-recording-response.js.map +1 -0
- package/src/models/stop-recording-request.d.ts +24 -0
- package/src/models/stop-recording-request.js +4 -0
- package/src/models/stop-recording-request.js.map +1 -0
- package/src/models/stop-recording-response.d.ts +42 -0
- package/src/models/stop-recording-response.js +4 -0
- package/src/models/stop-recording-response.js.map +1 -0
package/package.json
CHANGED
|
@@ -16,9 +16,11 @@ import type { ComputerUseStartResponse } from '../models';
|
|
|
16
16
|
import type { ComputerUseStatusResponse } from '../models';
|
|
17
17
|
import type { ComputerUseStopResponse } from '../models';
|
|
18
18
|
import type { DisplayInfoResponse } from '../models';
|
|
19
|
+
import type { GetRecordingResponse } from '../models';
|
|
19
20
|
import type { KeyboardHotkeyRequest } from '../models';
|
|
20
21
|
import type { KeyboardPressRequest } from '../models';
|
|
21
22
|
import type { KeyboardTypeRequest } from '../models';
|
|
23
|
+
import type { ListRecordingsResponse } from '../models';
|
|
22
24
|
import type { MouseClickRequest } from '../models';
|
|
23
25
|
import type { MouseClickResponse } from '../models';
|
|
24
26
|
import type { MouseDragRequest } from '../models';
|
|
@@ -32,6 +34,10 @@ import type { ProcessRestartResponse } from '../models';
|
|
|
32
34
|
import type { ProcessStatusResponse } from '../models';
|
|
33
35
|
import type { ScreenshotResponse } from '../models';
|
|
34
36
|
import type { ScrollResponse } from '../models';
|
|
37
|
+
import type { StartRecordingRequest } from '../models';
|
|
38
|
+
import type { StartRecordingResponse } from '../models';
|
|
39
|
+
import type { StopRecordingRequest } from '../models';
|
|
40
|
+
import type { StopRecordingResponse } from '../models';
|
|
35
41
|
import type { WindowsResponse } from '../models';
|
|
36
42
|
/**
|
|
37
43
|
* ComputerUseApi - axios parameter creator
|
|
@@ -46,6 +52,14 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
46
52
|
* @throws {RequiredError}
|
|
47
53
|
*/
|
|
48
54
|
click: (request: MouseClickRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
|
+
/**
|
|
56
|
+
* Delete a recording file by ID
|
|
57
|
+
* @summary Delete a recording
|
|
58
|
+
* @param {string} id Recording ID
|
|
59
|
+
* @param {*} [options] Override http request option.
|
|
60
|
+
* @throws {RequiredError}
|
|
61
|
+
*/
|
|
62
|
+
deleteRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
63
|
/**
|
|
50
64
|
* Drag the mouse from start to end coordinates
|
|
51
65
|
* @summary Drag mouse
|
|
@@ -106,6 +120,14 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
106
120
|
* @throws {RequiredError}
|
|
107
121
|
*/
|
|
108
122
|
getProcessStatus: (processName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
123
|
+
/**
|
|
124
|
+
* Get details of a specific recording by ID
|
|
125
|
+
* @summary Get recording details
|
|
126
|
+
* @param {string} id Recording ID
|
|
127
|
+
* @param {*} [options] Override http request option.
|
|
128
|
+
* @throws {RequiredError}
|
|
129
|
+
*/
|
|
130
|
+
getRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
109
131
|
/**
|
|
110
132
|
* Get information about all open windows
|
|
111
133
|
* @summary Get windows information
|
|
@@ -113,6 +135,13 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
113
135
|
* @throws {RequiredError}
|
|
114
136
|
*/
|
|
115
137
|
getWindows: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
138
|
+
/**
|
|
139
|
+
* Get a list of all recordings (active and completed)
|
|
140
|
+
* @summary List all recordings
|
|
141
|
+
* @param {*} [options] Override http request option.
|
|
142
|
+
* @throws {RequiredError}
|
|
143
|
+
*/
|
|
144
|
+
listRecordings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
116
145
|
/**
|
|
117
146
|
* Move the mouse cursor to the specified coordinates
|
|
118
147
|
* @summary Move mouse cursor
|
|
@@ -160,6 +189,14 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
160
189
|
* @throws {RequiredError}
|
|
161
190
|
*/
|
|
162
191
|
startComputerUse: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
192
|
+
/**
|
|
193
|
+
* Start a new screen recording session
|
|
194
|
+
* @summary Start a new recording
|
|
195
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
196
|
+
* @param {*} [options] Override http request option.
|
|
197
|
+
* @throws {RequiredError}
|
|
198
|
+
*/
|
|
199
|
+
startRecording: (request?: StartRecordingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
163
200
|
/**
|
|
164
201
|
* Stop all computer use processes and return their status
|
|
165
202
|
* @summary Stop computer use processes
|
|
@@ -167,6 +204,14 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
167
204
|
* @throws {RequiredError}
|
|
168
205
|
*/
|
|
169
206
|
stopComputerUse: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
207
|
+
/**
|
|
208
|
+
* Stop an active screen recording session
|
|
209
|
+
* @summary Stop a recording
|
|
210
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
211
|
+
* @param {*} [options] Override http request option.
|
|
212
|
+
* @throws {RequiredError}
|
|
213
|
+
*/
|
|
214
|
+
stopRecording: (request: StopRecordingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
170
215
|
/**
|
|
171
216
|
* Take a compressed screenshot of a specific region of the screen
|
|
172
217
|
* @summary Take a compressed region screenshot
|
|
@@ -235,6 +280,14 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
235
280
|
* @throws {RequiredError}
|
|
236
281
|
*/
|
|
237
282
|
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseClickResponse>>;
|
|
283
|
+
/**
|
|
284
|
+
* Delete a recording file by ID
|
|
285
|
+
* @summary Delete a recording
|
|
286
|
+
* @param {string} id Recording ID
|
|
287
|
+
* @param {*} [options] Override http request option.
|
|
288
|
+
* @throws {RequiredError}
|
|
289
|
+
*/
|
|
290
|
+
deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
238
291
|
/**
|
|
239
292
|
* Drag the mouse from start to end coordinates
|
|
240
293
|
* @summary Drag mouse
|
|
@@ -295,6 +348,14 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
295
348
|
* @throws {RequiredError}
|
|
296
349
|
*/
|
|
297
350
|
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessStatusResponse>>;
|
|
351
|
+
/**
|
|
352
|
+
* Get details of a specific recording by ID
|
|
353
|
+
* @summary Get recording details
|
|
354
|
+
* @param {string} id Recording ID
|
|
355
|
+
* @param {*} [options] Override http request option.
|
|
356
|
+
* @throws {RequiredError}
|
|
357
|
+
*/
|
|
358
|
+
getRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetRecordingResponse>>;
|
|
298
359
|
/**
|
|
299
360
|
* Get information about all open windows
|
|
300
361
|
* @summary Get windows information
|
|
@@ -302,6 +363,13 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
302
363
|
* @throws {RequiredError}
|
|
303
364
|
*/
|
|
304
365
|
getWindows(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WindowsResponse>>;
|
|
366
|
+
/**
|
|
367
|
+
* Get a list of all recordings (active and completed)
|
|
368
|
+
* @summary List all recordings
|
|
369
|
+
* @param {*} [options] Override http request option.
|
|
370
|
+
* @throws {RequiredError}
|
|
371
|
+
*/
|
|
372
|
+
listRecordings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRecordingsResponse>>;
|
|
305
373
|
/**
|
|
306
374
|
* Move the mouse cursor to the specified coordinates
|
|
307
375
|
* @summary Move mouse cursor
|
|
@@ -349,6 +417,14 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
349
417
|
* @throws {RequiredError}
|
|
350
418
|
*/
|
|
351
419
|
startComputerUse(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStartResponse>>;
|
|
420
|
+
/**
|
|
421
|
+
* Start a new screen recording session
|
|
422
|
+
* @summary Start a new recording
|
|
423
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
424
|
+
* @param {*} [options] Override http request option.
|
|
425
|
+
* @throws {RequiredError}
|
|
426
|
+
*/
|
|
427
|
+
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StartRecordingResponse>>;
|
|
352
428
|
/**
|
|
353
429
|
* Stop all computer use processes and return their status
|
|
354
430
|
* @summary Stop computer use processes
|
|
@@ -356,6 +432,14 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
356
432
|
* @throws {RequiredError}
|
|
357
433
|
*/
|
|
358
434
|
stopComputerUse(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStopResponse>>;
|
|
435
|
+
/**
|
|
436
|
+
* Stop an active screen recording session
|
|
437
|
+
* @summary Stop a recording
|
|
438
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
439
|
+
* @param {*} [options] Override http request option.
|
|
440
|
+
* @throws {RequiredError}
|
|
441
|
+
*/
|
|
442
|
+
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StopRecordingResponse>>;
|
|
359
443
|
/**
|
|
360
444
|
* Take a compressed screenshot of a specific region of the screen
|
|
361
445
|
* @summary Take a compressed region screenshot
|
|
@@ -424,6 +508,14 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
424
508
|
* @throws {RequiredError}
|
|
425
509
|
*/
|
|
426
510
|
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): AxiosPromise<MouseClickResponse>;
|
|
511
|
+
/**
|
|
512
|
+
* Delete a recording file by ID
|
|
513
|
+
* @summary Delete a recording
|
|
514
|
+
* @param {string} id Recording ID
|
|
515
|
+
* @param {*} [options] Override http request option.
|
|
516
|
+
* @throws {RequiredError}
|
|
517
|
+
*/
|
|
518
|
+
deleteRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
427
519
|
/**
|
|
428
520
|
* Drag the mouse from start to end coordinates
|
|
429
521
|
* @summary Drag mouse
|
|
@@ -484,6 +576,14 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
484
576
|
* @throws {RequiredError}
|
|
485
577
|
*/
|
|
486
578
|
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessStatusResponse>;
|
|
579
|
+
/**
|
|
580
|
+
* Get details of a specific recording by ID
|
|
581
|
+
* @summary Get recording details
|
|
582
|
+
* @param {string} id Recording ID
|
|
583
|
+
* @param {*} [options] Override http request option.
|
|
584
|
+
* @throws {RequiredError}
|
|
585
|
+
*/
|
|
586
|
+
getRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GetRecordingResponse>;
|
|
487
587
|
/**
|
|
488
588
|
* Get information about all open windows
|
|
489
589
|
* @summary Get windows information
|
|
@@ -491,6 +591,13 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
491
591
|
* @throws {RequiredError}
|
|
492
592
|
*/
|
|
493
593
|
getWindows(options?: RawAxiosRequestConfig): AxiosPromise<WindowsResponse>;
|
|
594
|
+
/**
|
|
595
|
+
* Get a list of all recordings (active and completed)
|
|
596
|
+
* @summary List all recordings
|
|
597
|
+
* @param {*} [options] Override http request option.
|
|
598
|
+
* @throws {RequiredError}
|
|
599
|
+
*/
|
|
600
|
+
listRecordings(options?: RawAxiosRequestConfig): AxiosPromise<ListRecordingsResponse>;
|
|
494
601
|
/**
|
|
495
602
|
* Move the mouse cursor to the specified coordinates
|
|
496
603
|
* @summary Move mouse cursor
|
|
@@ -538,6 +645,14 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
538
645
|
* @throws {RequiredError}
|
|
539
646
|
*/
|
|
540
647
|
startComputerUse(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStartResponse>;
|
|
648
|
+
/**
|
|
649
|
+
* Start a new screen recording session
|
|
650
|
+
* @summary Start a new recording
|
|
651
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
652
|
+
* @param {*} [options] Override http request option.
|
|
653
|
+
* @throws {RequiredError}
|
|
654
|
+
*/
|
|
655
|
+
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): AxiosPromise<StartRecordingResponse>;
|
|
541
656
|
/**
|
|
542
657
|
* Stop all computer use processes and return their status
|
|
543
658
|
* @summary Stop computer use processes
|
|
@@ -545,6 +660,14 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
545
660
|
* @throws {RequiredError}
|
|
546
661
|
*/
|
|
547
662
|
stopComputerUse(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStopResponse>;
|
|
663
|
+
/**
|
|
664
|
+
* Stop an active screen recording session
|
|
665
|
+
* @summary Stop a recording
|
|
666
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
667
|
+
* @param {*} [options] Override http request option.
|
|
668
|
+
* @throws {RequiredError}
|
|
669
|
+
*/
|
|
670
|
+
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): AxiosPromise<StopRecordingResponse>;
|
|
548
671
|
/**
|
|
549
672
|
* Take a compressed screenshot of a specific region of the screen
|
|
550
673
|
* @summary Take a compressed region screenshot
|
|
@@ -616,6 +739,15 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
616
739
|
* @memberof ComputerUseApi
|
|
617
740
|
*/
|
|
618
741
|
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
|
|
742
|
+
/**
|
|
743
|
+
* Delete a recording file by ID
|
|
744
|
+
* @summary Delete a recording
|
|
745
|
+
* @param {string} id Recording ID
|
|
746
|
+
* @param {*} [options] Override http request option.
|
|
747
|
+
* @throws {RequiredError}
|
|
748
|
+
* @memberof ComputerUseApi
|
|
749
|
+
*/
|
|
750
|
+
deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
619
751
|
/**
|
|
620
752
|
* Drag the mouse from start to end coordinates
|
|
621
753
|
* @summary Drag mouse
|
|
@@ -684,6 +816,15 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
684
816
|
* @memberof ComputerUseApi
|
|
685
817
|
*/
|
|
686
818
|
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
|
|
819
|
+
/**
|
|
820
|
+
* Get details of a specific recording by ID
|
|
821
|
+
* @summary Get recording details
|
|
822
|
+
* @param {string} id Recording ID
|
|
823
|
+
* @param {*} [options] Override http request option.
|
|
824
|
+
* @throws {RequiredError}
|
|
825
|
+
* @memberof ComputerUseApi
|
|
826
|
+
*/
|
|
827
|
+
getRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetRecordingResponse, any>>;
|
|
687
828
|
/**
|
|
688
829
|
* Get information about all open windows
|
|
689
830
|
* @summary Get windows information
|
|
@@ -692,6 +833,14 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
692
833
|
* @memberof ComputerUseApi
|
|
693
834
|
*/
|
|
694
835
|
getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
|
|
836
|
+
/**
|
|
837
|
+
* Get a list of all recordings (active and completed)
|
|
838
|
+
* @summary List all recordings
|
|
839
|
+
* @param {*} [options] Override http request option.
|
|
840
|
+
* @throws {RequiredError}
|
|
841
|
+
* @memberof ComputerUseApi
|
|
842
|
+
*/
|
|
843
|
+
listRecordings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRecordingsResponse, any>>;
|
|
695
844
|
/**
|
|
696
845
|
* Move the mouse cursor to the specified coordinates
|
|
697
846
|
* @summary Move mouse cursor
|
|
@@ -745,6 +894,15 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
745
894
|
* @memberof ComputerUseApi
|
|
746
895
|
*/
|
|
747
896
|
startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
|
|
897
|
+
/**
|
|
898
|
+
* Start a new screen recording session
|
|
899
|
+
* @summary Start a new recording
|
|
900
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
901
|
+
* @param {*} [options] Override http request option.
|
|
902
|
+
* @throws {RequiredError}
|
|
903
|
+
* @memberof ComputerUseApi
|
|
904
|
+
*/
|
|
905
|
+
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StartRecordingResponse, any>>;
|
|
748
906
|
/**
|
|
749
907
|
* Stop all computer use processes and return their status
|
|
750
908
|
* @summary Stop computer use processes
|
|
@@ -753,6 +911,15 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
753
911
|
* @memberof ComputerUseApi
|
|
754
912
|
*/
|
|
755
913
|
stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
|
|
914
|
+
/**
|
|
915
|
+
* Stop an active screen recording session
|
|
916
|
+
* @summary Stop a recording
|
|
917
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
918
|
+
* @param {*} [options] Override http request option.
|
|
919
|
+
* @throws {RequiredError}
|
|
920
|
+
* @memberof ComputerUseApi
|
|
921
|
+
*/
|
|
922
|
+
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StopRecordingResponse, any>>;
|
|
756
923
|
/**
|
|
757
924
|
* Take a compressed screenshot of a specific region of the screen
|
|
758
925
|
* @summary Take a compressed region screenshot
|