@daytonaio/api-client 0.140.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/admin-api.d.ts +6 -6
- package/src/api/api-keys-api.d.ts +6 -6
- package/src/api/audit-api.d.ts +2 -2
- package/src/api/config-api.d.ts +1 -1
- package/src/api/docker-registry-api.d.ts +7 -7
- package/src/api/health-api.d.ts +1 -1
- package/src/api/jobs-api.d.ts +4 -4
- package/src/api/object-storage-api.d.ts +1 -1
- package/src/api/organizations-api.d.ts +116 -37
- package/src/api/organizations-api.js +146 -0
- package/src/api/organizations-api.js.map +1 -1
- package/src/api/preview-api.d.ts +4 -4
- package/src/api/regions-api.d.ts +1 -1
- package/src/api/runners-api.d.ts +10 -10
- package/src/api/sandbox-api.d.ts +236 -28
- package/src/api/sandbox-api.js +419 -0
- package/src/api/sandbox-api.js.map +1 -1
- package/src/api/snapshots-api.d.ts +10 -10
- package/src/api/toolbox-api.d.ts +68 -68
- package/src/api/users-api.d.ts +9 -9
- package/src/api/volumes-api.d.ts +5 -5
- package/src/api/webhooks-api.d.ts +6 -6
- package/src/api/workspace-api.d.ts +14 -14
- package/src/models/index.d.ts +9 -0
- package/src/models/index.js +9 -0
- package/src/models/index.js.map +1 -1
- package/src/models/log-entry.d.ts +76 -0
- package/src/models/log-entry.js +4 -0
- package/src/models/log-entry.js.map +1 -0
- package/src/models/metric-data-point.d.ts +30 -0
- package/src/models/metric-data-point.js +4 -0
- package/src/models/metric-data-point.js.map +1 -0
- package/src/models/metric-series.d.ts +31 -0
- package/src/models/metric-series.js +16 -0
- package/src/models/metric-series.js.map +1 -0
- package/src/models/metrics-response.d.ts +25 -0
- package/src/models/metrics-response.js +16 -0
- package/src/models/metrics-response.js.map +1 -0
- package/src/models/organization.d.ts +24 -0
- package/src/models/otel-config.d.ts +32 -0
- package/src/models/otel-config.js +4 -0
- package/src/models/otel-config.js.map +1 -0
- package/src/models/paginated-logs.d.ts +43 -0
- package/src/models/paginated-logs.js +16 -0
- package/src/models/paginated-logs.js.map +1 -0
- package/src/models/paginated-traces.d.ts +43 -0
- package/src/models/paginated-traces.js +16 -0
- package/src/models/paginated-traces.js.map +1 -0
- package/src/models/trace-span.d.ts +74 -0
- package/src/models/trace-span.js +4 -0
- package/src/models/trace-span.js.map +1 -0
- package/src/models/trace-summary.d.ts +60 -0
- package/src/models/trace-summary.js +4 -0
- package/src/models/trace-summary.js.map +1 -0
- package/src/models/update-organization-quota.d.ts +18 -0
package/src/api/toolbox-api.d.ts
CHANGED
|
@@ -2413,7 +2413,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2413
2413
|
* @throws {RequiredError}
|
|
2414
2414
|
* @memberof ToolboxApi
|
|
2415
2415
|
*/
|
|
2416
|
-
clickMouseDeprecated(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
|
|
2416
|
+
clickMouseDeprecated(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any, {}>>;
|
|
2417
2417
|
/**
|
|
2418
2418
|
* Create folder inside sandbox
|
|
2419
2419
|
* @summary [DEPRECATED] Create folder
|
|
@@ -2426,7 +2426,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2426
2426
|
* @throws {RequiredError}
|
|
2427
2427
|
* @memberof ToolboxApi
|
|
2428
2428
|
*/
|
|
2429
|
-
createFolderDeprecated(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2429
|
+
createFolderDeprecated(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2430
2430
|
/**
|
|
2431
2431
|
* Create a new PTY session in the sandbox
|
|
2432
2432
|
* @summary [DEPRECATED] Create PTY session
|
|
@@ -2438,7 +2438,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2438
2438
|
* @throws {RequiredError}
|
|
2439
2439
|
* @memberof ToolboxApi
|
|
2440
2440
|
*/
|
|
2441
|
-
createPTYSessionDeprecated(sandboxId: string, ptyCreateRequest: PtyCreateRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyCreateResponse, any>>;
|
|
2441
|
+
createPTYSessionDeprecated(sandboxId: string, ptyCreateRequest: PtyCreateRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyCreateResponse, any, {}>>;
|
|
2442
2442
|
/**
|
|
2443
2443
|
* Create a new session in the sandbox
|
|
2444
2444
|
* @summary [DEPRECATED] Create session
|
|
@@ -2450,7 +2450,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2450
2450
|
* @throws {RequiredError}
|
|
2451
2451
|
* @memberof ToolboxApi
|
|
2452
2452
|
*/
|
|
2453
|
-
createSessionDeprecated(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2453
|
+
createSessionDeprecated(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2454
2454
|
/**
|
|
2455
2455
|
* Delete file inside sandbox
|
|
2456
2456
|
* @summary [DEPRECATED] Delete file
|
|
@@ -2463,7 +2463,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2463
2463
|
* @throws {RequiredError}
|
|
2464
2464
|
* @memberof ToolboxApi
|
|
2465
2465
|
*/
|
|
2466
|
-
deleteFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2466
|
+
deleteFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* Delete a PTY session and terminate the associated process
|
|
2469
2469
|
* @summary [DEPRECATED] Delete PTY session
|
|
@@ -2475,7 +2475,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2475
2475
|
* @throws {RequiredError}
|
|
2476
2476
|
* @memberof ToolboxApi
|
|
2477
2477
|
*/
|
|
2478
|
-
deletePTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2478
|
+
deletePTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2479
2479
|
/**
|
|
2480
2480
|
* Delete a specific session
|
|
2481
2481
|
* @summary [DEPRECATED] Delete session
|
|
@@ -2487,7 +2487,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2487
2487
|
* @throws {RequiredError}
|
|
2488
2488
|
* @memberof ToolboxApi
|
|
2489
2489
|
*/
|
|
2490
|
-
deleteSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2490
|
+
deleteSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2491
2491
|
/**
|
|
2492
2492
|
* Download file from sandbox
|
|
2493
2493
|
* @summary [DEPRECATED] Download file
|
|
@@ -2499,7 +2499,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2499
2499
|
* @throws {RequiredError}
|
|
2500
2500
|
* @memberof ToolboxApi
|
|
2501
2501
|
*/
|
|
2502
|
-
downloadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2502
|
+
downloadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
2503
2503
|
/**
|
|
2504
2504
|
* Streams back a multipart/form-data bundle of the requested paths
|
|
2505
2505
|
* @summary [DEPRECATED] Download multiple files
|
|
@@ -2511,7 +2511,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2511
2511
|
* @throws {RequiredError}
|
|
2512
2512
|
* @memberof ToolboxApi
|
|
2513
2513
|
*/
|
|
2514
|
-
downloadFilesDeprecated(sandboxId: string, downloadFiles: DownloadFiles, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2514
|
+
downloadFilesDeprecated(sandboxId: string, downloadFiles: DownloadFiles, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
2515
2515
|
/**
|
|
2516
2516
|
* Drag mouse from start to end coordinates
|
|
2517
2517
|
* @summary [DEPRECATED] Drag mouse
|
|
@@ -2523,7 +2523,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2523
2523
|
* @throws {RequiredError}
|
|
2524
2524
|
* @memberof ToolboxApi
|
|
2525
2525
|
*/
|
|
2526
|
-
dragMouseDeprecated(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any>>;
|
|
2526
|
+
dragMouseDeprecated(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any, {}>>;
|
|
2527
2527
|
/**
|
|
2528
2528
|
* Execute command synchronously inside sandbox
|
|
2529
2529
|
* @summary [DEPRECATED] Execute command
|
|
@@ -2535,7 +2535,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2535
2535
|
* @throws {RequiredError}
|
|
2536
2536
|
* @memberof ToolboxApi
|
|
2537
2537
|
*/
|
|
2538
|
-
executeCommandDeprecated(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
|
|
2538
|
+
executeCommandDeprecated(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any, {}>>;
|
|
2539
2539
|
/**
|
|
2540
2540
|
* Execute a command in a specific session
|
|
2541
2541
|
* @summary [DEPRECATED] Execute command in session
|
|
@@ -2548,7 +2548,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2548
2548
|
* @throws {RequiredError}
|
|
2549
2549
|
* @memberof ToolboxApi
|
|
2550
2550
|
*/
|
|
2551
|
-
executeSessionCommandDeprecated(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
|
|
2551
|
+
executeSessionCommandDeprecated(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any, {}>>;
|
|
2552
2552
|
/**
|
|
2553
2553
|
* Search for text/pattern inside sandbox files
|
|
2554
2554
|
* @summary [DEPRECATED] Search for text/pattern in files
|
|
@@ -2561,7 +2561,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2561
2561
|
* @throws {RequiredError}
|
|
2562
2562
|
* @memberof ToolboxApi
|
|
2563
2563
|
*/
|
|
2564
|
-
findInFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any>>;
|
|
2564
|
+
findInFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any, {}>>;
|
|
2565
2565
|
/**
|
|
2566
2566
|
* Get status of all VNC desktop processes
|
|
2567
2567
|
* @summary [DEPRECATED] Get computer use status
|
|
@@ -2572,7 +2572,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2572
2572
|
* @throws {RequiredError}
|
|
2573
2573
|
* @memberof ToolboxApi
|
|
2574
2574
|
*/
|
|
2575
|
-
getComputerUseStatusDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
2575
|
+
getComputerUseStatusDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
|
|
2576
2576
|
/**
|
|
2577
2577
|
* Get information about displays
|
|
2578
2578
|
* @summary [DEPRECATED] Get display info
|
|
@@ -2583,7 +2583,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2583
2583
|
* @throws {RequiredError}
|
|
2584
2584
|
* @memberof ToolboxApi
|
|
2585
2585
|
*/
|
|
2586
|
-
getDisplayInfoDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any>>;
|
|
2586
|
+
getDisplayInfoDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any, {}>>;
|
|
2587
2587
|
/**
|
|
2588
2588
|
* Get file info inside sandbox
|
|
2589
2589
|
* @summary [DEPRECATED] Get file info
|
|
@@ -2595,7 +2595,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2595
2595
|
* @throws {RequiredError}
|
|
2596
2596
|
* @memberof ToolboxApi
|
|
2597
2597
|
*/
|
|
2598
|
-
getFileInfoDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any>>;
|
|
2598
|
+
getFileInfoDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any, {}>>;
|
|
2599
2599
|
/**
|
|
2600
2600
|
* Get current mouse cursor position
|
|
2601
2601
|
* @summary [DEPRECATED] Get mouse position
|
|
@@ -2606,7 +2606,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2606
2606
|
* @throws {RequiredError}
|
|
2607
2607
|
* @memberof ToolboxApi
|
|
2608
2608
|
*/
|
|
2609
|
-
getMousePositionDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePosition, any>>;
|
|
2609
|
+
getMousePositionDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePosition, any, {}>>;
|
|
2610
2610
|
/**
|
|
2611
2611
|
* Get PTY session information by ID
|
|
2612
2612
|
* @summary [DEPRECATED] Get PTY session
|
|
@@ -2618,7 +2618,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2618
2618
|
* @throws {RequiredError}
|
|
2619
2619
|
* @memberof ToolboxApi
|
|
2620
2620
|
*/
|
|
2621
|
-
getPTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
|
|
2621
|
+
getPTYSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any, {}>>;
|
|
2622
2622
|
/**
|
|
2623
2623
|
* Get error logs for a specific VNC process
|
|
2624
2624
|
* @summary [DEPRECATED] Get process errors
|
|
@@ -2630,7 +2630,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2630
2630
|
* @throws {RequiredError}
|
|
2631
2631
|
* @memberof ToolboxApi
|
|
2632
2632
|
*/
|
|
2633
|
-
getProcessErrorsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any>>;
|
|
2633
|
+
getProcessErrorsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any, {}>>;
|
|
2634
2634
|
/**
|
|
2635
2635
|
* Get logs for a specific VNC process
|
|
2636
2636
|
* @summary [DEPRECATED] Get process logs
|
|
@@ -2642,7 +2642,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2642
2642
|
* @throws {RequiredError}
|
|
2643
2643
|
* @memberof ToolboxApi
|
|
2644
2644
|
*/
|
|
2645
|
-
getProcessLogsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any>>;
|
|
2645
|
+
getProcessLogsDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any, {}>>;
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Get status of a specific VNC process
|
|
2648
2648
|
* @summary [DEPRECATED] Get process status
|
|
@@ -2654,7 +2654,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2654
2654
|
* @throws {RequiredError}
|
|
2655
2655
|
* @memberof ToolboxApi
|
|
2656
2656
|
*/
|
|
2657
|
-
getProcessStatusDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
|
|
2657
|
+
getProcessStatusDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any, {}>>;
|
|
2658
2658
|
/**
|
|
2659
2659
|
*
|
|
2660
2660
|
* @summary [DEPRECATED] Get sandbox project dir
|
|
@@ -2665,7 +2665,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2665
2665
|
* @throws {RequiredError}
|
|
2666
2666
|
* @memberof ToolboxApi
|
|
2667
2667
|
*/
|
|
2668
|
-
getProjectDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any>>;
|
|
2668
|
+
getProjectDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any, {}>>;
|
|
2669
2669
|
/**
|
|
2670
2670
|
* Get session command by ID
|
|
2671
2671
|
* @summary [DEPRECATED] Get session command
|
|
@@ -2678,7 +2678,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2678
2678
|
* @throws {RequiredError}
|
|
2679
2679
|
* @memberof ToolboxApi
|
|
2680
2680
|
*/
|
|
2681
|
-
getSessionCommandDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
|
|
2681
|
+
getSessionCommandDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any, {}>>;
|
|
2682
2682
|
/**
|
|
2683
2683
|
* Get logs for a specific command in a session
|
|
2684
2684
|
* @summary [DEPRECATED] Get command logs
|
|
@@ -2692,7 +2692,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2692
2692
|
* @throws {RequiredError}
|
|
2693
2693
|
* @memberof ToolboxApi
|
|
2694
2694
|
*/
|
|
2695
|
-
getSessionCommandLogsDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
2695
|
+
getSessionCommandLogsDeprecated(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
2696
2696
|
/**
|
|
2697
2697
|
* Get session by ID
|
|
2698
2698
|
* @summary [DEPRECATED] Get session
|
|
@@ -2704,7 +2704,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2704
2704
|
* @throws {RequiredError}
|
|
2705
2705
|
* @memberof ToolboxApi
|
|
2706
2706
|
*/
|
|
2707
|
-
getSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
|
|
2707
|
+
getSessionDeprecated(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any, {}>>;
|
|
2708
2708
|
/**
|
|
2709
2709
|
*
|
|
2710
2710
|
* @summary [DEPRECATED] Get sandbox user home dir
|
|
@@ -2715,7 +2715,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2715
2715
|
* @throws {RequiredError}
|
|
2716
2716
|
* @memberof ToolboxApi
|
|
2717
2717
|
*/
|
|
2718
|
-
getUserHomeDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any>>;
|
|
2718
|
+
getUserHomeDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any, {}>>;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* Get list of open windows
|
|
2721
2721
|
* @summary [DEPRECATED] Get windows
|
|
@@ -2726,7 +2726,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2726
2726
|
* @throws {RequiredError}
|
|
2727
2727
|
* @memberof ToolboxApi
|
|
2728
2728
|
*/
|
|
2729
|
-
getWindowsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
|
|
2729
|
+
getWindowsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any, {}>>;
|
|
2730
2730
|
/**
|
|
2731
2731
|
*
|
|
2732
2732
|
* @summary [DEPRECATED] Get sandbox work-dir
|
|
@@ -2737,7 +2737,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2737
2737
|
* @throws {RequiredError}
|
|
2738
2738
|
* @memberof ToolboxApi
|
|
2739
2739
|
*/
|
|
2740
|
-
getWorkDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any>>;
|
|
2740
|
+
getWorkDirDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any, {}>>;
|
|
2741
2741
|
/**
|
|
2742
2742
|
* Add files to git commit
|
|
2743
2743
|
* @summary [DEPRECATED] Add files
|
|
@@ -2749,7 +2749,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2749
2749
|
* @throws {RequiredError}
|
|
2750
2750
|
* @memberof ToolboxApi
|
|
2751
2751
|
*/
|
|
2752
|
-
gitAddFilesDeprecated(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2752
|
+
gitAddFilesDeprecated(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* Checkout branch or commit in git repository
|
|
2755
2755
|
* @summary [DEPRECATED] Checkout branch
|
|
@@ -2761,7 +2761,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2761
2761
|
* @throws {RequiredError}
|
|
2762
2762
|
* @memberof ToolboxApi
|
|
2763
2763
|
*/
|
|
2764
|
-
gitCheckoutBranchDeprecated(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2764
|
+
gitCheckoutBranchDeprecated(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2765
2765
|
/**
|
|
2766
2766
|
* Clone git repository
|
|
2767
2767
|
* @summary [DEPRECATED] Clone repository
|
|
@@ -2773,7 +2773,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2773
2773
|
* @throws {RequiredError}
|
|
2774
2774
|
* @memberof ToolboxApi
|
|
2775
2775
|
*/
|
|
2776
|
-
gitCloneRepositoryDeprecated(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2776
|
+
gitCloneRepositoryDeprecated(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2777
2777
|
/**
|
|
2778
2778
|
* Commit changes to git repository
|
|
2779
2779
|
* @summary [DEPRECATED] Commit changes
|
|
@@ -2785,7 +2785,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2785
2785
|
* @throws {RequiredError}
|
|
2786
2786
|
* @memberof ToolboxApi
|
|
2787
2787
|
*/
|
|
2788
|
-
gitCommitChangesDeprecated(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any>>;
|
|
2788
|
+
gitCommitChangesDeprecated(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any, {}>>;
|
|
2789
2789
|
/**
|
|
2790
2790
|
* Create branch on git repository
|
|
2791
2791
|
* @summary [DEPRECATED] Create branch
|
|
@@ -2797,7 +2797,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2797
2797
|
* @throws {RequiredError}
|
|
2798
2798
|
* @memberof ToolboxApi
|
|
2799
2799
|
*/
|
|
2800
|
-
gitCreateBranchDeprecated(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2800
|
+
gitCreateBranchDeprecated(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2801
2801
|
/**
|
|
2802
2802
|
* Delete branch on git repository
|
|
2803
2803
|
* @summary [DEPRECATED] Delete branch
|
|
@@ -2809,7 +2809,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2809
2809
|
* @throws {RequiredError}
|
|
2810
2810
|
* @memberof ToolboxApi
|
|
2811
2811
|
*/
|
|
2812
|
-
gitDeleteBranchDeprecated(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2812
|
+
gitDeleteBranchDeprecated(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2813
2813
|
/**
|
|
2814
2814
|
* Get commit history from git repository
|
|
2815
2815
|
* @summary [DEPRECATED] Get commit history
|
|
@@ -2821,7 +2821,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2821
2821
|
* @throws {RequiredError}
|
|
2822
2822
|
* @memberof ToolboxApi
|
|
2823
2823
|
*/
|
|
2824
|
-
gitGetHistoryDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any>>;
|
|
2824
|
+
gitGetHistoryDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any, {}>>;
|
|
2825
2825
|
/**
|
|
2826
2826
|
* Get status from git repository
|
|
2827
2827
|
* @summary [DEPRECATED] Get git status
|
|
@@ -2833,7 +2833,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2833
2833
|
* @throws {RequiredError}
|
|
2834
2834
|
* @memberof ToolboxApi
|
|
2835
2835
|
*/
|
|
2836
|
-
gitGetStatusDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any>>;
|
|
2836
|
+
gitGetStatusDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any, {}>>;
|
|
2837
2837
|
/**
|
|
2838
2838
|
* Get branch list from git repository
|
|
2839
2839
|
* @summary [DEPRECATED] Get branch list
|
|
@@ -2845,7 +2845,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2845
2845
|
* @throws {RequiredError}
|
|
2846
2846
|
* @memberof ToolboxApi
|
|
2847
2847
|
*/
|
|
2848
|
-
gitListBranchesDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any>>;
|
|
2848
|
+
gitListBranchesDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any, {}>>;
|
|
2849
2849
|
/**
|
|
2850
2850
|
* Pull changes from remote
|
|
2851
2851
|
* @summary [DEPRECATED] Pull changes
|
|
@@ -2857,7 +2857,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2857
2857
|
* @throws {RequiredError}
|
|
2858
2858
|
* @memberof ToolboxApi
|
|
2859
2859
|
*/
|
|
2860
|
-
gitPullChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2860
|
+
gitPullChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2861
2861
|
/**
|
|
2862
2862
|
* Push changes to remote
|
|
2863
2863
|
* @summary [DEPRECATED] Push changes
|
|
@@ -2869,7 +2869,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2869
2869
|
* @throws {RequiredError}
|
|
2870
2870
|
* @memberof ToolboxApi
|
|
2871
2871
|
*/
|
|
2872
|
-
gitPushChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2872
|
+
gitPushChangesDeprecated(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2873
2873
|
/**
|
|
2874
2874
|
*
|
|
2875
2875
|
* @summary [DEPRECATED] List files
|
|
@@ -2881,7 +2881,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2881
2881
|
* @throws {RequiredError}
|
|
2882
2882
|
* @memberof ToolboxApi
|
|
2883
2883
|
*/
|
|
2884
|
-
listFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any>>;
|
|
2884
|
+
listFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any, {}>>;
|
|
2885
2885
|
/**
|
|
2886
2886
|
* List all active PTY sessions in the sandbox
|
|
2887
2887
|
* @summary [DEPRECATED] List PTY sessions
|
|
@@ -2892,7 +2892,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2892
2892
|
* @throws {RequiredError}
|
|
2893
2893
|
* @memberof ToolboxApi
|
|
2894
2894
|
*/
|
|
2895
|
-
listPTYSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyListResponse, any>>;
|
|
2895
|
+
listPTYSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtyListResponse, any, {}>>;
|
|
2896
2896
|
/**
|
|
2897
2897
|
* List all active sessions in the sandbox
|
|
2898
2898
|
* @summary [DEPRECATED] List sessions
|
|
@@ -2903,7 +2903,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2903
2903
|
* @throws {RequiredError}
|
|
2904
2904
|
* @memberof ToolboxApi
|
|
2905
2905
|
*/
|
|
2906
|
-
listSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
|
|
2906
|
+
listSessionsDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any, {}>>;
|
|
2907
2907
|
/**
|
|
2908
2908
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
2909
2909
|
* @summary [DEPRECATED] Get Lsp Completions
|
|
@@ -2915,7 +2915,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2915
2915
|
* @throws {RequiredError}
|
|
2916
2916
|
* @memberof ToolboxApi
|
|
2917
2917
|
*/
|
|
2918
|
-
lspCompletionsDeprecated(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any>>;
|
|
2918
|
+
lspCompletionsDeprecated(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any, {}>>;
|
|
2919
2919
|
/**
|
|
2920
2920
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
2921
2921
|
* @summary [DEPRECATED] Call Lsp DidClose
|
|
@@ -2927,7 +2927,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2927
2927
|
* @throws {RequiredError}
|
|
2928
2928
|
* @memberof ToolboxApi
|
|
2929
2929
|
*/
|
|
2930
|
-
lspDidCloseDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2930
|
+
lspDidCloseDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2931
2931
|
/**
|
|
2932
2932
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
2933
2933
|
* @summary [DEPRECATED] Call Lsp DidOpen
|
|
@@ -2939,7 +2939,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2939
2939
|
* @throws {RequiredError}
|
|
2940
2940
|
* @memberof ToolboxApi
|
|
2941
2941
|
*/
|
|
2942
|
-
lspDidOpenDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2942
|
+
lspDidOpenDeprecated(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2943
2943
|
/**
|
|
2944
2944
|
* The document symbol request is sent from the client to the server.
|
|
2945
2945
|
* @summary [DEPRECATED] Call Lsp DocumentSymbols
|
|
@@ -2953,7 +2953,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2953
2953
|
* @throws {RequiredError}
|
|
2954
2954
|
* @memberof ToolboxApi
|
|
2955
2955
|
*/
|
|
2956
|
-
lspDocumentSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2956
|
+
lspDocumentSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any, {}>>;
|
|
2957
2957
|
/**
|
|
2958
2958
|
* Start Lsp server process inside sandbox project
|
|
2959
2959
|
* @summary [DEPRECATED] Start Lsp server
|
|
@@ -2965,7 +2965,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2965
2965
|
* @throws {RequiredError}
|
|
2966
2966
|
* @memberof ToolboxApi
|
|
2967
2967
|
*/
|
|
2968
|
-
lspStartDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2968
|
+
lspStartDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2969
2969
|
/**
|
|
2970
2970
|
* Stop Lsp server process inside sandbox project
|
|
2971
2971
|
* @summary [DEPRECATED] Stop Lsp server
|
|
@@ -2977,7 +2977,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2977
2977
|
* @throws {RequiredError}
|
|
2978
2978
|
* @memberof ToolboxApi
|
|
2979
2979
|
*/
|
|
2980
|
-
lspStopDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2980
|
+
lspStopDeprecated(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2981
2981
|
/**
|
|
2982
2982
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
2983
2983
|
* @summary [DEPRECATED] Call Lsp WorkspaceSymbols
|
|
@@ -2991,7 +2991,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2991
2991
|
* @throws {RequiredError}
|
|
2992
2992
|
* @memberof ToolboxApi
|
|
2993
2993
|
*/
|
|
2994
|
-
lspWorkspaceSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2994
|
+
lspWorkspaceSymbolsDeprecated(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any, {}>>;
|
|
2995
2995
|
/**
|
|
2996
2996
|
* Move file inside sandbox
|
|
2997
2997
|
* @summary [DEPRECATED] Move file
|
|
@@ -3004,7 +3004,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3004
3004
|
* @throws {RequiredError}
|
|
3005
3005
|
* @memberof ToolboxApi
|
|
3006
3006
|
*/
|
|
3007
|
-
moveFileDeprecated(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3007
|
+
moveFileDeprecated(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3008
3008
|
/**
|
|
3009
3009
|
* Move mouse cursor to specified coordinates
|
|
3010
3010
|
* @summary [DEPRECATED] Move mouse
|
|
@@ -3016,7 +3016,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3016
3016
|
* @throws {RequiredError}
|
|
3017
3017
|
* @memberof ToolboxApi
|
|
3018
3018
|
*/
|
|
3019
|
-
moveMouseDeprecated(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseMoveResponse, any>>;
|
|
3019
|
+
moveMouseDeprecated(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseMoveResponse, any, {}>>;
|
|
3020
3020
|
/**
|
|
3021
3021
|
* Press a hotkey combination
|
|
3022
3022
|
* @summary [DEPRECATED] Press hotkey
|
|
@@ -3028,7 +3028,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3028
3028
|
* @throws {RequiredError}
|
|
3029
3029
|
* @memberof ToolboxApi
|
|
3030
3030
|
*/
|
|
3031
|
-
pressHotkeyDeprecated(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3031
|
+
pressHotkeyDeprecated(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3032
3032
|
/**
|
|
3033
3033
|
* Press a key with optional modifiers
|
|
3034
3034
|
* @summary [DEPRECATED] Press key
|
|
@@ -3040,7 +3040,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3040
3040
|
* @throws {RequiredError}
|
|
3041
3041
|
* @memberof ToolboxApi
|
|
3042
3042
|
*/
|
|
3043
|
-
pressKeyDeprecated(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3043
|
+
pressKeyDeprecated(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3044
3044
|
/**
|
|
3045
3045
|
* Replace text/pattern in multiple files inside sandbox
|
|
3046
3046
|
* @summary [DEPRECATED] Replace in files
|
|
@@ -3052,7 +3052,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3052
3052
|
* @throws {RequiredError}
|
|
3053
3053
|
* @memberof ToolboxApi
|
|
3054
3054
|
*/
|
|
3055
|
-
replaceInFilesDeprecated(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any>>;
|
|
3055
|
+
replaceInFilesDeprecated(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any, {}>>;
|
|
3056
3056
|
/**
|
|
3057
3057
|
* Resize a PTY session
|
|
3058
3058
|
* @summary [DEPRECATED] Resize PTY session
|
|
@@ -3065,7 +3065,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3065
3065
|
* @throws {RequiredError}
|
|
3066
3066
|
* @memberof ToolboxApi
|
|
3067
3067
|
*/
|
|
3068
|
-
resizePTYSessionDeprecated(sandboxId: string, sessionId: string, ptyResizeRequest: PtyResizeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any>>;
|
|
3068
|
+
resizePTYSessionDeprecated(sandboxId: string, sessionId: string, ptyResizeRequest: PtyResizeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PtySessionInfo, any, {}>>;
|
|
3069
3069
|
/**
|
|
3070
3070
|
* Restart a specific VNC process
|
|
3071
3071
|
* @summary [DEPRECATED] Restart process
|
|
@@ -3077,7 +3077,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3077
3077
|
* @throws {RequiredError}
|
|
3078
3078
|
* @memberof ToolboxApi
|
|
3079
3079
|
*/
|
|
3080
|
-
restartProcessDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any>>;
|
|
3080
|
+
restartProcessDeprecated(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any, {}>>;
|
|
3081
3081
|
/**
|
|
3082
3082
|
* Scroll mouse at specified coordinates
|
|
3083
3083
|
* @summary [DEPRECATED] Scroll mouse
|
|
@@ -3089,7 +3089,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3089
3089
|
* @throws {RequiredError}
|
|
3090
3090
|
* @memberof ToolboxApi
|
|
3091
3091
|
*/
|
|
3092
|
-
scrollMouseDeprecated(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseScrollResponse, any>>;
|
|
3092
|
+
scrollMouseDeprecated(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseScrollResponse, any, {}>>;
|
|
3093
3093
|
/**
|
|
3094
3094
|
* Search for files inside sandbox
|
|
3095
3095
|
* @summary [DEPRECATED] Search files
|
|
@@ -3102,7 +3102,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3102
3102
|
* @throws {RequiredError}
|
|
3103
3103
|
* @memberof ToolboxApi
|
|
3104
3104
|
*/
|
|
3105
|
-
searchFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any>>;
|
|
3105
|
+
searchFilesDeprecated(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any, {}>>;
|
|
3106
3106
|
/**
|
|
3107
3107
|
* Set file owner/group/permissions inside sandbox
|
|
3108
3108
|
* @summary [DEPRECATED] Set file permissions
|
|
@@ -3117,7 +3117,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3117
3117
|
* @throws {RequiredError}
|
|
3118
3118
|
* @memberof ToolboxApi
|
|
3119
3119
|
*/
|
|
3120
|
-
setFilePermissionsDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3120
|
+
setFilePermissionsDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3121
3121
|
/**
|
|
3122
3122
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
3123
3123
|
* @summary [DEPRECATED] Start computer use processes
|
|
@@ -3128,7 +3128,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3128
3128
|
* @throws {RequiredError}
|
|
3129
3129
|
* @memberof ToolboxApi
|
|
3130
3130
|
*/
|
|
3131
|
-
startComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
|
|
3131
|
+
startComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any, {}>>;
|
|
3132
3132
|
/**
|
|
3133
3133
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
3134
3134
|
* @summary [DEPRECATED] Stop computer use processes
|
|
@@ -3139,7 +3139,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3139
3139
|
* @throws {RequiredError}
|
|
3140
3140
|
* @memberof ToolboxApi
|
|
3141
3141
|
*/
|
|
3142
|
-
stopComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
|
|
3142
|
+
stopComputerUseDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any, {}>>;
|
|
3143
3143
|
/**
|
|
3144
3144
|
* Take a compressed screenshot of a specific region
|
|
3145
3145
|
* @summary [DEPRECATED] Take compressed region screenshot
|
|
@@ -3158,7 +3158,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3158
3158
|
* @throws {RequiredError}
|
|
3159
3159
|
* @memberof ToolboxApi
|
|
3160
3160
|
*/
|
|
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>>;
|
|
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, {}>>;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* Take a compressed screenshot with format, quality, and scale options
|
|
3164
3164
|
* @summary [DEPRECATED] Take compressed screenshot
|
|
@@ -3173,7 +3173,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3173
3173
|
* @throws {RequiredError}
|
|
3174
3174
|
* @memberof ToolboxApi
|
|
3175
3175
|
*/
|
|
3176
|
-
takeCompressedScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any>>;
|
|
3176
|
+
takeCompressedScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any, {}>>;
|
|
3177
3177
|
/**
|
|
3178
3178
|
* Take a screenshot of a specific region
|
|
3179
3179
|
* @summary [DEPRECATED] Take region screenshot
|
|
@@ -3189,7 +3189,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3189
3189
|
* @throws {RequiredError}
|
|
3190
3190
|
* @memberof ToolboxApi
|
|
3191
3191
|
*/
|
|
3192
|
-
takeRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegionScreenshotResponse, any>>;
|
|
3192
|
+
takeRegionScreenshotDeprecated(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegionScreenshotResponse, any, {}>>;
|
|
3193
3193
|
/**
|
|
3194
3194
|
* Take a screenshot of the entire screen
|
|
3195
3195
|
* @summary [DEPRECATED] Take screenshot
|
|
@@ -3201,7 +3201,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3201
3201
|
* @throws {RequiredError}
|
|
3202
3202
|
* @memberof ToolboxApi
|
|
3203
3203
|
*/
|
|
3204
|
-
takeScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
3204
|
+
takeScreenshotDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
3205
3205
|
/**
|
|
3206
3206
|
* Type text using keyboard
|
|
3207
3207
|
* @summary [DEPRECATED] Type text
|
|
@@ -3213,7 +3213,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3213
3213
|
* @throws {RequiredError}
|
|
3214
3214
|
* @memberof ToolboxApi
|
|
3215
3215
|
*/
|
|
3216
|
-
typeTextDeprecated(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3216
|
+
typeTextDeprecated(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3217
3217
|
/**
|
|
3218
3218
|
* Upload file inside sandbox
|
|
3219
3219
|
* @summary [DEPRECATED] Upload file
|
|
@@ -3226,7 +3226,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3226
3226
|
* @throws {RequiredError}
|
|
3227
3227
|
* @memberof ToolboxApi
|
|
3228
3228
|
*/
|
|
3229
|
-
uploadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3229
|
+
uploadFileDeprecated(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3230
3230
|
/**
|
|
3231
3231
|
* Upload multiple files inside sandbox
|
|
3232
3232
|
* @summary [DEPRECATED] Upload multiple files
|
|
@@ -3237,5 +3237,5 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
3237
3237
|
* @throws {RequiredError}
|
|
3238
3238
|
* @memberof ToolboxApi
|
|
3239
3239
|
*/
|
|
3240
|
-
uploadFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3240
|
+
uploadFilesDeprecated(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3241
3241
|
}
|