@daytonaio/toolbox-api-client 0.139.0 → 0.141.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api/computer-use-api.d.ts +220 -22
- package/src/api/computer-use-api.js +380 -0
- package/src/api/computer-use-api.js.map +1 -1
- package/src/api/file-system-api.d.ts +13 -13
- package/src/api/git-api.d.ts +11 -11
- package/src/api/info-api.d.ts +3 -3
- package/src/api/interpreter-api.d.ts +4 -4
- package/src/api/lsp-api.d.ts +7 -7
- package/src/api/port-api.d.ts +2 -2
- package/src/api/process-api.d.ts +15 -15
- package/src/api/server-api.d.ts +80 -0
- package/src/api/server-api.js +127 -0
- package/src/api/server-api.js.map +1 -0
- package/src/api.d.ts +1 -0
- package/src/api.js +1 -0
- package/src/api.js.map +1 -1
- package/src/models/index.d.ts +5 -0
- package/src/models/index.js +5 -0
- package/src/models/index.js.map +1 -1
- package/src/models/initialize-request.d.ts +24 -0
- package/src/models/initialize-request.js +4 -0
- package/src/models/initialize-request.js.map +1 -0
- 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/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/package.json
CHANGED
|
@@ -19,6 +19,7 @@ import type { DisplayInfoResponse } from '../models';
|
|
|
19
19
|
import type { KeyboardHotkeyRequest } from '../models';
|
|
20
20
|
import type { KeyboardPressRequest } from '../models';
|
|
21
21
|
import type { KeyboardTypeRequest } from '../models';
|
|
22
|
+
import type { ListRecordingsResponse } from '../models';
|
|
22
23
|
import type { MouseClickRequest } from '../models';
|
|
23
24
|
import type { MouseClickResponse } from '../models';
|
|
24
25
|
import type { MouseDragRequest } from '../models';
|
|
@@ -30,8 +31,11 @@ import type { ProcessErrorsResponse } from '../models';
|
|
|
30
31
|
import type { ProcessLogsResponse } from '../models';
|
|
31
32
|
import type { ProcessRestartResponse } from '../models';
|
|
32
33
|
import type { ProcessStatusResponse } from '../models';
|
|
34
|
+
import type { Recording } 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 { StopRecordingRequest } from '../models';
|
|
35
39
|
import type { WindowsResponse } from '../models';
|
|
36
40
|
/**
|
|
37
41
|
* ComputerUseApi - axios parameter creator
|
|
@@ -46,6 +50,22 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
46
50
|
* @throws {RequiredError}
|
|
47
51
|
*/
|
|
48
52
|
click: (request: MouseClickRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
|
+
/**
|
|
54
|
+
* Delete a recording file by ID
|
|
55
|
+
* @summary Delete a recording
|
|
56
|
+
* @param {string} id Recording ID
|
|
57
|
+
* @param {*} [options] Override http request option.
|
|
58
|
+
* @throws {RequiredError}
|
|
59
|
+
*/
|
|
60
|
+
deleteRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61
|
+
/**
|
|
62
|
+
* Download a recording by providing its ID
|
|
63
|
+
* @summary Download a recording
|
|
64
|
+
* @param {string} id Recording ID
|
|
65
|
+
* @param {*} [options] Override http request option.
|
|
66
|
+
* @throws {RequiredError}
|
|
67
|
+
*/
|
|
68
|
+
downloadRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
69
|
/**
|
|
50
70
|
* Drag the mouse from start to end coordinates
|
|
51
71
|
* @summary Drag mouse
|
|
@@ -106,6 +126,14 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
106
126
|
* @throws {RequiredError}
|
|
107
127
|
*/
|
|
108
128
|
getProcessStatus: (processName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
129
|
+
/**
|
|
130
|
+
* Get details of a specific recording by ID
|
|
131
|
+
* @summary Get recording details
|
|
132
|
+
* @param {string} id Recording ID
|
|
133
|
+
* @param {*} [options] Override http request option.
|
|
134
|
+
* @throws {RequiredError}
|
|
135
|
+
*/
|
|
136
|
+
getRecording: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
109
137
|
/**
|
|
110
138
|
* Get information about all open windows
|
|
111
139
|
* @summary Get windows information
|
|
@@ -113,6 +141,13 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
113
141
|
* @throws {RequiredError}
|
|
114
142
|
*/
|
|
115
143
|
getWindows: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
144
|
+
/**
|
|
145
|
+
* Get a list of all recordings (active and completed)
|
|
146
|
+
* @summary List all recordings
|
|
147
|
+
* @param {*} [options] Override http request option.
|
|
148
|
+
* @throws {RequiredError}
|
|
149
|
+
*/
|
|
150
|
+
listRecordings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
116
151
|
/**
|
|
117
152
|
* Move the mouse cursor to the specified coordinates
|
|
118
153
|
* @summary Move mouse cursor
|
|
@@ -160,6 +195,14 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
160
195
|
* @throws {RequiredError}
|
|
161
196
|
*/
|
|
162
197
|
startComputerUse: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
198
|
+
/**
|
|
199
|
+
* Start a new screen recording session
|
|
200
|
+
* @summary Start a new recording
|
|
201
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
202
|
+
* @param {*} [options] Override http request option.
|
|
203
|
+
* @throws {RequiredError}
|
|
204
|
+
*/
|
|
205
|
+
startRecording: (request?: StartRecordingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
163
206
|
/**
|
|
164
207
|
* Stop all computer use processes and return their status
|
|
165
208
|
* @summary Stop computer use processes
|
|
@@ -167,6 +210,14 @@ export declare const ComputerUseApiAxiosParamCreator: (configuration?: Configura
|
|
|
167
210
|
* @throws {RequiredError}
|
|
168
211
|
*/
|
|
169
212
|
stopComputerUse: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
213
|
+
/**
|
|
214
|
+
* Stop an active screen recording session
|
|
215
|
+
* @summary Stop a recording
|
|
216
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
stopRecording: (request: StopRecordingRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
170
221
|
/**
|
|
171
222
|
* Take a compressed screenshot of a specific region of the screen
|
|
172
223
|
* @summary Take a compressed region screenshot
|
|
@@ -235,6 +286,22 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
235
286
|
* @throws {RequiredError}
|
|
236
287
|
*/
|
|
237
288
|
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MouseClickResponse>>;
|
|
289
|
+
/**
|
|
290
|
+
* Delete a recording file by ID
|
|
291
|
+
* @summary Delete a recording
|
|
292
|
+
* @param {string} id Recording ID
|
|
293
|
+
* @param {*} [options] Override http request option.
|
|
294
|
+
* @throws {RequiredError}
|
|
295
|
+
*/
|
|
296
|
+
deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
297
|
+
/**
|
|
298
|
+
* Download a recording by providing its ID
|
|
299
|
+
* @summary Download a recording
|
|
300
|
+
* @param {string} id Recording ID
|
|
301
|
+
* @param {*} [options] Override http request option.
|
|
302
|
+
* @throws {RequiredError}
|
|
303
|
+
*/
|
|
304
|
+
downloadRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
238
305
|
/**
|
|
239
306
|
* Drag the mouse from start to end coordinates
|
|
240
307
|
* @summary Drag mouse
|
|
@@ -295,6 +362,14 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
295
362
|
* @throws {RequiredError}
|
|
296
363
|
*/
|
|
297
364
|
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProcessStatusResponse>>;
|
|
365
|
+
/**
|
|
366
|
+
* Get details of a specific recording by ID
|
|
367
|
+
* @summary Get recording details
|
|
368
|
+
* @param {string} id Recording ID
|
|
369
|
+
* @param {*} [options] Override http request option.
|
|
370
|
+
* @throws {RequiredError}
|
|
371
|
+
*/
|
|
372
|
+
getRecording(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Recording>>;
|
|
298
373
|
/**
|
|
299
374
|
* Get information about all open windows
|
|
300
375
|
* @summary Get windows information
|
|
@@ -302,6 +377,13 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
302
377
|
* @throws {RequiredError}
|
|
303
378
|
*/
|
|
304
379
|
getWindows(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WindowsResponse>>;
|
|
380
|
+
/**
|
|
381
|
+
* Get a list of all recordings (active and completed)
|
|
382
|
+
* @summary List all recordings
|
|
383
|
+
* @param {*} [options] Override http request option.
|
|
384
|
+
* @throws {RequiredError}
|
|
385
|
+
*/
|
|
386
|
+
listRecordings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRecordingsResponse>>;
|
|
305
387
|
/**
|
|
306
388
|
* Move the mouse cursor to the specified coordinates
|
|
307
389
|
* @summary Move mouse cursor
|
|
@@ -349,6 +431,14 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
349
431
|
* @throws {RequiredError}
|
|
350
432
|
*/
|
|
351
433
|
startComputerUse(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStartResponse>>;
|
|
434
|
+
/**
|
|
435
|
+
* Start a new screen recording session
|
|
436
|
+
* @summary Start a new recording
|
|
437
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
438
|
+
* @param {*} [options] Override http request option.
|
|
439
|
+
* @throws {RequiredError}
|
|
440
|
+
*/
|
|
441
|
+
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Recording>>;
|
|
352
442
|
/**
|
|
353
443
|
* Stop all computer use processes and return their status
|
|
354
444
|
* @summary Stop computer use processes
|
|
@@ -356,6 +446,14 @@ export declare const ComputerUseApiFp: (configuration?: Configuration) => {
|
|
|
356
446
|
* @throws {RequiredError}
|
|
357
447
|
*/
|
|
358
448
|
stopComputerUse(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ComputerUseStopResponse>>;
|
|
449
|
+
/**
|
|
450
|
+
* Stop an active screen recording session
|
|
451
|
+
* @summary Stop a recording
|
|
452
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
453
|
+
* @param {*} [options] Override http request option.
|
|
454
|
+
* @throws {RequiredError}
|
|
455
|
+
*/
|
|
456
|
+
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Recording>>;
|
|
359
457
|
/**
|
|
360
458
|
* Take a compressed screenshot of a specific region of the screen
|
|
361
459
|
* @summary Take a compressed region screenshot
|
|
@@ -424,6 +522,22 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
424
522
|
* @throws {RequiredError}
|
|
425
523
|
*/
|
|
426
524
|
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): AxiosPromise<MouseClickResponse>;
|
|
525
|
+
/**
|
|
526
|
+
* Delete a recording file by ID
|
|
527
|
+
* @summary Delete a recording
|
|
528
|
+
* @param {string} id Recording ID
|
|
529
|
+
* @param {*} [options] Override http request option.
|
|
530
|
+
* @throws {RequiredError}
|
|
531
|
+
*/
|
|
532
|
+
deleteRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
533
|
+
/**
|
|
534
|
+
* Download a recording by providing its ID
|
|
535
|
+
* @summary Download a recording
|
|
536
|
+
* @param {string} id Recording ID
|
|
537
|
+
* @param {*} [options] Override http request option.
|
|
538
|
+
* @throws {RequiredError}
|
|
539
|
+
*/
|
|
540
|
+
downloadRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
427
541
|
/**
|
|
428
542
|
* Drag the mouse from start to end coordinates
|
|
429
543
|
* @summary Drag mouse
|
|
@@ -484,6 +598,14 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
484
598
|
* @throws {RequiredError}
|
|
485
599
|
*/
|
|
486
600
|
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): AxiosPromise<ProcessStatusResponse>;
|
|
601
|
+
/**
|
|
602
|
+
* Get details of a specific recording by ID
|
|
603
|
+
* @summary Get recording details
|
|
604
|
+
* @param {string} id Recording ID
|
|
605
|
+
* @param {*} [options] Override http request option.
|
|
606
|
+
* @throws {RequiredError}
|
|
607
|
+
*/
|
|
608
|
+
getRecording(id: string, options?: RawAxiosRequestConfig): AxiosPromise<Recording>;
|
|
487
609
|
/**
|
|
488
610
|
* Get information about all open windows
|
|
489
611
|
* @summary Get windows information
|
|
@@ -491,6 +613,13 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
491
613
|
* @throws {RequiredError}
|
|
492
614
|
*/
|
|
493
615
|
getWindows(options?: RawAxiosRequestConfig): AxiosPromise<WindowsResponse>;
|
|
616
|
+
/**
|
|
617
|
+
* Get a list of all recordings (active and completed)
|
|
618
|
+
* @summary List all recordings
|
|
619
|
+
* @param {*} [options] Override http request option.
|
|
620
|
+
* @throws {RequiredError}
|
|
621
|
+
*/
|
|
622
|
+
listRecordings(options?: RawAxiosRequestConfig): AxiosPromise<ListRecordingsResponse>;
|
|
494
623
|
/**
|
|
495
624
|
* Move the mouse cursor to the specified coordinates
|
|
496
625
|
* @summary Move mouse cursor
|
|
@@ -538,6 +667,14 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
538
667
|
* @throws {RequiredError}
|
|
539
668
|
*/
|
|
540
669
|
startComputerUse(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStartResponse>;
|
|
670
|
+
/**
|
|
671
|
+
* Start a new screen recording session
|
|
672
|
+
* @summary Start a new recording
|
|
673
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
674
|
+
* @param {*} [options] Override http request option.
|
|
675
|
+
* @throws {RequiredError}
|
|
676
|
+
*/
|
|
677
|
+
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): AxiosPromise<Recording>;
|
|
541
678
|
/**
|
|
542
679
|
* Stop all computer use processes and return their status
|
|
543
680
|
* @summary Stop computer use processes
|
|
@@ -545,6 +682,14 @@ export declare const ComputerUseApiFactory: (configuration?: Configuration, base
|
|
|
545
682
|
* @throws {RequiredError}
|
|
546
683
|
*/
|
|
547
684
|
stopComputerUse(options?: RawAxiosRequestConfig): AxiosPromise<ComputerUseStopResponse>;
|
|
685
|
+
/**
|
|
686
|
+
* Stop an active screen recording session
|
|
687
|
+
* @summary Stop a recording
|
|
688
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
689
|
+
* @param {*} [options] Override http request option.
|
|
690
|
+
* @throws {RequiredError}
|
|
691
|
+
*/
|
|
692
|
+
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): AxiosPromise<Recording>;
|
|
548
693
|
/**
|
|
549
694
|
* Take a compressed screenshot of a specific region of the screen
|
|
550
695
|
* @summary Take a compressed region screenshot
|
|
@@ -615,7 +760,25 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
615
760
|
* @throws {RequiredError}
|
|
616
761
|
* @memberof ComputerUseApi
|
|
617
762
|
*/
|
|
618
|
-
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
|
|
763
|
+
click(request: MouseClickRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any, {}>>;
|
|
764
|
+
/**
|
|
765
|
+
* Delete a recording file by ID
|
|
766
|
+
* @summary Delete a recording
|
|
767
|
+
* @param {string} id Recording ID
|
|
768
|
+
* @param {*} [options] Override http request option.
|
|
769
|
+
* @throws {RequiredError}
|
|
770
|
+
* @memberof ComputerUseApi
|
|
771
|
+
*/
|
|
772
|
+
deleteRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
773
|
+
/**
|
|
774
|
+
* Download a recording by providing its ID
|
|
775
|
+
* @summary Download a recording
|
|
776
|
+
* @param {string} id Recording ID
|
|
777
|
+
* @param {*} [options] Override http request option.
|
|
778
|
+
* @throws {RequiredError}
|
|
779
|
+
* @memberof ComputerUseApi
|
|
780
|
+
*/
|
|
781
|
+
downloadRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
619
782
|
/**
|
|
620
783
|
* Drag the mouse from start to end coordinates
|
|
621
784
|
* @summary Drag mouse
|
|
@@ -624,7 +787,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
624
787
|
* @throws {RequiredError}
|
|
625
788
|
* @memberof ComputerUseApi
|
|
626
789
|
*/
|
|
627
|
-
drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any>>;
|
|
790
|
+
drag(request: MouseDragRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any, {}>>;
|
|
628
791
|
/**
|
|
629
792
|
* Get the status of all computer use processes
|
|
630
793
|
* @summary Get computer use process status
|
|
@@ -632,7 +795,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
632
795
|
* @throws {RequiredError}
|
|
633
796
|
* @memberof ComputerUseApi
|
|
634
797
|
*/
|
|
635
|
-
getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
798
|
+
getComputerUseStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
|
|
636
799
|
/**
|
|
637
800
|
* Get the current status of the computer use system
|
|
638
801
|
* @summary Get computer use status
|
|
@@ -640,7 +803,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
640
803
|
* @throws {RequiredError}
|
|
641
804
|
* @memberof ComputerUseApi
|
|
642
805
|
*/
|
|
643
|
-
getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
806
|
+
getComputerUseSystemStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
|
|
644
807
|
/**
|
|
645
808
|
* Get information about all available displays
|
|
646
809
|
* @summary Get display information
|
|
@@ -648,7 +811,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
648
811
|
* @throws {RequiredError}
|
|
649
812
|
* @memberof ComputerUseApi
|
|
650
813
|
*/
|
|
651
|
-
getDisplayInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any>>;
|
|
814
|
+
getDisplayInfo(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any, {}>>;
|
|
652
815
|
/**
|
|
653
816
|
* Get the current mouse cursor position
|
|
654
817
|
* @summary Get mouse position
|
|
@@ -656,7 +819,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
656
819
|
* @throws {RequiredError}
|
|
657
820
|
* @memberof ComputerUseApi
|
|
658
821
|
*/
|
|
659
|
-
getMousePosition(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any>>;
|
|
822
|
+
getMousePosition(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
|
|
660
823
|
/**
|
|
661
824
|
* Get errors for a specific computer use process
|
|
662
825
|
* @summary Get process errors
|
|
@@ -665,7 +828,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
665
828
|
* @throws {RequiredError}
|
|
666
829
|
* @memberof ComputerUseApi
|
|
667
830
|
*/
|
|
668
|
-
getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any>>;
|
|
831
|
+
getProcessErrors(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any, {}>>;
|
|
669
832
|
/**
|
|
670
833
|
* Get logs for a specific computer use process
|
|
671
834
|
* @summary Get process logs
|
|
@@ -674,7 +837,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
674
837
|
* @throws {RequiredError}
|
|
675
838
|
* @memberof ComputerUseApi
|
|
676
839
|
*/
|
|
677
|
-
getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any>>;
|
|
840
|
+
getProcessLogs(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any, {}>>;
|
|
678
841
|
/**
|
|
679
842
|
* Check if a specific computer use process is running
|
|
680
843
|
* @summary Get specific process status
|
|
@@ -683,7 +846,16 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
683
846
|
* @throws {RequiredError}
|
|
684
847
|
* @memberof ComputerUseApi
|
|
685
848
|
*/
|
|
686
|
-
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
|
|
849
|
+
getProcessStatus(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any, {}>>;
|
|
850
|
+
/**
|
|
851
|
+
* Get details of a specific recording by ID
|
|
852
|
+
* @summary Get recording details
|
|
853
|
+
* @param {string} id Recording ID
|
|
854
|
+
* @param {*} [options] Override http request option.
|
|
855
|
+
* @throws {RequiredError}
|
|
856
|
+
* @memberof ComputerUseApi
|
|
857
|
+
*/
|
|
858
|
+
getRecording(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
|
|
687
859
|
/**
|
|
688
860
|
* Get information about all open windows
|
|
689
861
|
* @summary Get windows information
|
|
@@ -691,7 +863,15 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
691
863
|
* @throws {RequiredError}
|
|
692
864
|
* @memberof ComputerUseApi
|
|
693
865
|
*/
|
|
694
|
-
getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
|
|
866
|
+
getWindows(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any, {}>>;
|
|
867
|
+
/**
|
|
868
|
+
* Get a list of all recordings (active and completed)
|
|
869
|
+
* @summary List all recordings
|
|
870
|
+
* @param {*} [options] Override http request option.
|
|
871
|
+
* @throws {RequiredError}
|
|
872
|
+
* @memberof ComputerUseApi
|
|
873
|
+
*/
|
|
874
|
+
listRecordings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRecordingsResponse, any, {}>>;
|
|
695
875
|
/**
|
|
696
876
|
* Move the mouse cursor to the specified coordinates
|
|
697
877
|
* @summary Move mouse cursor
|
|
@@ -700,7 +880,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
700
880
|
* @throws {RequiredError}
|
|
701
881
|
* @memberof ComputerUseApi
|
|
702
882
|
*/
|
|
703
|
-
moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any>>;
|
|
883
|
+
moveMouse(request: MouseMoveRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePositionResponse, any, {}>>;
|
|
704
884
|
/**
|
|
705
885
|
* Press a hotkey combination (e.g., ctrl+c, cmd+v)
|
|
706
886
|
* @summary Press hotkey
|
|
@@ -709,7 +889,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
709
889
|
* @throws {RequiredError}
|
|
710
890
|
* @memberof ComputerUseApi
|
|
711
891
|
*/
|
|
712
|
-
pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
892
|
+
pressHotkey(request: KeyboardHotkeyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
713
893
|
/**
|
|
714
894
|
* Press a key with optional modifiers
|
|
715
895
|
* @summary Press key
|
|
@@ -718,7 +898,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
718
898
|
* @throws {RequiredError}
|
|
719
899
|
* @memberof ComputerUseApi
|
|
720
900
|
*/
|
|
721
|
-
pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
901
|
+
pressKey(request: KeyboardPressRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
722
902
|
/**
|
|
723
903
|
* Restart a specific computer use process
|
|
724
904
|
* @summary Restart specific process
|
|
@@ -727,7 +907,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
727
907
|
* @throws {RequiredError}
|
|
728
908
|
* @memberof ComputerUseApi
|
|
729
909
|
*/
|
|
730
|
-
restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any>>;
|
|
910
|
+
restartProcess(processName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any, {}>>;
|
|
731
911
|
/**
|
|
732
912
|
* Scroll the mouse wheel at the specified coordinates
|
|
733
913
|
* @summary Scroll mouse wheel
|
|
@@ -736,7 +916,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
736
916
|
* @throws {RequiredError}
|
|
737
917
|
* @memberof ComputerUseApi
|
|
738
918
|
*/
|
|
739
|
-
scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScrollResponse, any>>;
|
|
919
|
+
scroll(request: MouseScrollRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScrollResponse, any, {}>>;
|
|
740
920
|
/**
|
|
741
921
|
* Start all computer use processes and return their status
|
|
742
922
|
* @summary Start computer use processes
|
|
@@ -744,7 +924,16 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
744
924
|
* @throws {RequiredError}
|
|
745
925
|
* @memberof ComputerUseApi
|
|
746
926
|
*/
|
|
747
|
-
startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
|
|
927
|
+
startComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any, {}>>;
|
|
928
|
+
/**
|
|
929
|
+
* Start a new screen recording session
|
|
930
|
+
* @summary Start a new recording
|
|
931
|
+
* @param {StartRecordingRequest} [request] Recording options
|
|
932
|
+
* @param {*} [options] Override http request option.
|
|
933
|
+
* @throws {RequiredError}
|
|
934
|
+
* @memberof ComputerUseApi
|
|
935
|
+
*/
|
|
936
|
+
startRecording(request?: StartRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
|
|
748
937
|
/**
|
|
749
938
|
* Stop all computer use processes and return their status
|
|
750
939
|
* @summary Stop computer use processes
|
|
@@ -752,7 +941,16 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
752
941
|
* @throws {RequiredError}
|
|
753
942
|
* @memberof ComputerUseApi
|
|
754
943
|
*/
|
|
755
|
-
stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
|
|
944
|
+
stopComputerUse(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any, {}>>;
|
|
945
|
+
/**
|
|
946
|
+
* Stop an active screen recording session
|
|
947
|
+
* @summary Stop a recording
|
|
948
|
+
* @param {StopRecordingRequest} request Recording ID to stop
|
|
949
|
+
* @param {*} [options] Override http request option.
|
|
950
|
+
* @throws {RequiredError}
|
|
951
|
+
* @memberof ComputerUseApi
|
|
952
|
+
*/
|
|
953
|
+
stopRecording(request: StopRecordingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Recording, any, {}>>;
|
|
756
954
|
/**
|
|
757
955
|
* Take a compressed screenshot of a specific region of the screen
|
|
758
956
|
* @summary Take a compressed region screenshot
|
|
@@ -768,7 +966,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
768
966
|
* @throws {RequiredError}
|
|
769
967
|
* @memberof ComputerUseApi
|
|
770
968
|
*/
|
|
771
|
-
takeCompressedRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
969
|
+
takeCompressedRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
772
970
|
/**
|
|
773
971
|
* Take a compressed screenshot of the entire screen
|
|
774
972
|
* @summary Take a compressed screenshot
|
|
@@ -780,7 +978,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
780
978
|
* @throws {RequiredError}
|
|
781
979
|
* @memberof ComputerUseApi
|
|
782
980
|
*/
|
|
783
|
-
takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
981
|
+
takeCompressedScreenshot(showCursor?: boolean, format?: string, quality?: number, scale?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
784
982
|
/**
|
|
785
983
|
* Take a screenshot of a specific region of the screen
|
|
786
984
|
* @summary Take a region screenshot
|
|
@@ -793,7 +991,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
793
991
|
* @throws {RequiredError}
|
|
794
992
|
* @memberof ComputerUseApi
|
|
795
993
|
*/
|
|
796
|
-
takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
994
|
+
takeRegionScreenshot(x: number, y: number, width: number, height: number, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
797
995
|
/**
|
|
798
996
|
* Take a screenshot of the entire screen
|
|
799
997
|
* @summary Take a screenshot
|
|
@@ -802,7 +1000,7 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
802
1000
|
* @throws {RequiredError}
|
|
803
1001
|
* @memberof ComputerUseApi
|
|
804
1002
|
*/
|
|
805
|
-
takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
1003
|
+
takeScreenshot(showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
806
1004
|
/**
|
|
807
1005
|
* Type text with optional delay between keystrokes
|
|
808
1006
|
* @summary Type text
|
|
@@ -811,5 +1009,5 @@ export declare class ComputerUseApi extends BaseAPI {
|
|
|
811
1009
|
* @throws {RequiredError}
|
|
812
1010
|
* @memberof ComputerUseApi
|
|
813
1011
|
*/
|
|
814
|
-
typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1012
|
+
typeText(request: KeyboardTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
|
|
815
1013
|
}
|