@daytonaio/api-client 0.103.0-rc.2 → 0.103.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/api-keys-api.d.ts +6 -6
- package/src/api/audit-api.d.ts +3 -3
- package/src/api/default-api.d.ts +7 -7
- package/src/api/docker-registry-api.d.ts +7 -7
- package/src/api/health-api.d.ts +1 -1
- package/src/api/object-storage-api.d.ts +1 -1
- package/src/api/organizations-api.d.ts +26 -26
- package/src/api/preview-api.d.ts +5 -5
- package/src/api/runners-api.d.ts +5 -5
- package/src/api/sandbox-api.d.ts +18 -18
- package/src/api/snapshots-api.d.ts +9 -9
- package/src/api/toolbox-api.d.ts +140 -60
- package/src/api/toolbox-api.js +158 -0
- package/src/api/toolbox-api.js.map +1 -1
- 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 +2 -0
- package/src/models/index.js +2 -0
- package/src/models/index.js.map +1 -1
- package/src/models/user-home-dir-response.d.ts +24 -0
- package/src/models/user-home-dir-response.js +4 -0
- package/src/models/user-home-dir-response.js.map +1 -0
- package/src/models/work-dir-response.d.ts +24 -0
- package/src/models/work-dir-response.js +4 -0
- package/src/models/work-dir-response.js.map +1 -0
package/src/api/toolbox-api.d.ts
CHANGED
|
@@ -64,7 +64,9 @@ import type { SearchFilesResponse } from '../models';
|
|
|
64
64
|
import type { Session } from '../models';
|
|
65
65
|
import type { SessionExecuteRequest } from '../models';
|
|
66
66
|
import type { SessionExecuteResponse } from '../models';
|
|
67
|
+
import type { UserHomeDirResponse } from '../models';
|
|
67
68
|
import type { WindowsResponse } from '../models';
|
|
69
|
+
import type { WorkDirResponse } from '../models';
|
|
68
70
|
/**
|
|
69
71
|
* ToolboxApi - axios parameter creator
|
|
70
72
|
* @export
|
|
@@ -247,6 +249,7 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
247
249
|
* @param {string} sandboxId
|
|
248
250
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
249
251
|
* @param {*} [options] Override http request option.
|
|
252
|
+
* @deprecated
|
|
250
253
|
* @throws {RequiredError}
|
|
251
254
|
*/
|
|
252
255
|
getProjectDir: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -283,6 +286,15 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
283
286
|
* @throws {RequiredError}
|
|
284
287
|
*/
|
|
285
288
|
getSessionCommandLogs: (sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
289
|
+
/**
|
|
290
|
+
*
|
|
291
|
+
* @summary Get sandbox user home dir
|
|
292
|
+
* @param {string} sandboxId
|
|
293
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
294
|
+
* @param {*} [options] Override http request option.
|
|
295
|
+
* @throws {RequiredError}
|
|
296
|
+
*/
|
|
297
|
+
getUserHomeDir: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
286
298
|
/**
|
|
287
299
|
* Get list of open windows
|
|
288
300
|
* @summary Get windows
|
|
@@ -292,6 +304,15 @@ export declare const ToolboxApiAxiosParamCreator: (configuration?: Configuration
|
|
|
292
304
|
* @throws {RequiredError}
|
|
293
305
|
*/
|
|
294
306
|
getWindows: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
307
|
+
/**
|
|
308
|
+
*
|
|
309
|
+
* @summary Get sandbox work-dir
|
|
310
|
+
* @param {string} sandboxId
|
|
311
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
312
|
+
* @param {*} [options] Override http request option.
|
|
313
|
+
* @throws {RequiredError}
|
|
314
|
+
*/
|
|
315
|
+
getWorkDir: (sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
295
316
|
/**
|
|
296
317
|
* Add files to git commit
|
|
297
318
|
* @summary Add files
|
|
@@ -876,6 +897,7 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
876
897
|
* @param {string} sandboxId
|
|
877
898
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
878
899
|
* @param {*} [options] Override http request option.
|
|
900
|
+
* @deprecated
|
|
879
901
|
* @throws {RequiredError}
|
|
880
902
|
*/
|
|
881
903
|
getProjectDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectDirResponse>>;
|
|
@@ -912,6 +934,15 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
912
934
|
* @throws {RequiredError}
|
|
913
935
|
*/
|
|
914
936
|
getSessionCommandLogs(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
937
|
+
/**
|
|
938
|
+
*
|
|
939
|
+
* @summary Get sandbox user home dir
|
|
940
|
+
* @param {string} sandboxId
|
|
941
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
942
|
+
* @param {*} [options] Override http request option.
|
|
943
|
+
* @throws {RequiredError}
|
|
944
|
+
*/
|
|
945
|
+
getUserHomeDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserHomeDirResponse>>;
|
|
915
946
|
/**
|
|
916
947
|
* Get list of open windows
|
|
917
948
|
* @summary Get windows
|
|
@@ -921,6 +952,15 @@ export declare const ToolboxApiFp: (configuration?: Configuration) => {
|
|
|
921
952
|
* @throws {RequiredError}
|
|
922
953
|
*/
|
|
923
954
|
getWindows(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WindowsResponse>>;
|
|
955
|
+
/**
|
|
956
|
+
*
|
|
957
|
+
* @summary Get sandbox work-dir
|
|
958
|
+
* @param {string} sandboxId
|
|
959
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
960
|
+
* @param {*} [options] Override http request option.
|
|
961
|
+
* @throws {RequiredError}
|
|
962
|
+
*/
|
|
963
|
+
getWorkDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkDirResponse>>;
|
|
924
964
|
/**
|
|
925
965
|
* Add files to git commit
|
|
926
966
|
* @summary Add files
|
|
@@ -1505,6 +1545,7 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
1505
1545
|
* @param {string} sandboxId
|
|
1506
1546
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1507
1547
|
* @param {*} [options] Override http request option.
|
|
1548
|
+
* @deprecated
|
|
1508
1549
|
* @throws {RequiredError}
|
|
1509
1550
|
*/
|
|
1510
1551
|
getProjectDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<ProjectDirResponse>;
|
|
@@ -1541,6 +1582,15 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
1541
1582
|
* @throws {RequiredError}
|
|
1542
1583
|
*/
|
|
1543
1584
|
getSessionCommandLogs(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
1585
|
+
/**
|
|
1586
|
+
*
|
|
1587
|
+
* @summary Get sandbox user home dir
|
|
1588
|
+
* @param {string} sandboxId
|
|
1589
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1590
|
+
* @param {*} [options] Override http request option.
|
|
1591
|
+
* @throws {RequiredError}
|
|
1592
|
+
*/
|
|
1593
|
+
getUserHomeDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<UserHomeDirResponse>;
|
|
1544
1594
|
/**
|
|
1545
1595
|
* Get list of open windows
|
|
1546
1596
|
* @summary Get windows
|
|
@@ -1550,6 +1600,15 @@ export declare const ToolboxApiFactory: (configuration?: Configuration, basePath
|
|
|
1550
1600
|
* @throws {RequiredError}
|
|
1551
1601
|
*/
|
|
1552
1602
|
getWindows(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<WindowsResponse>;
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @summary Get sandbox work-dir
|
|
1606
|
+
* @param {string} sandboxId
|
|
1607
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
1608
|
+
* @param {*} [options] Override http request option.
|
|
1609
|
+
* @throws {RequiredError}
|
|
1610
|
+
*/
|
|
1611
|
+
getWorkDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkDirResponse>;
|
|
1553
1612
|
/**
|
|
1554
1613
|
* Add files to git commit
|
|
1555
1614
|
* @summary Add files
|
|
@@ -1969,7 +2028,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1969
2028
|
* @throws {RequiredError}
|
|
1970
2029
|
* @memberof ToolboxApi
|
|
1971
2030
|
*/
|
|
1972
|
-
clickMouse(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any
|
|
2031
|
+
clickMouse(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
|
|
1973
2032
|
/**
|
|
1974
2033
|
* Create folder inside sandbox
|
|
1975
2034
|
* @summary Create folder
|
|
@@ -1981,7 +2040,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1981
2040
|
* @throws {RequiredError}
|
|
1982
2041
|
* @memberof ToolboxApi
|
|
1983
2042
|
*/
|
|
1984
|
-
createFolder(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2043
|
+
createFolder(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1985
2044
|
/**
|
|
1986
2045
|
* Create a new session in the sandbox
|
|
1987
2046
|
* @summary Create session
|
|
@@ -1992,7 +2051,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1992
2051
|
* @throws {RequiredError}
|
|
1993
2052
|
* @memberof ToolboxApi
|
|
1994
2053
|
*/
|
|
1995
|
-
createSession(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2054
|
+
createSession(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1996
2055
|
/**
|
|
1997
2056
|
* Delete file inside sandbox
|
|
1998
2057
|
* @summary Delete file
|
|
@@ -2004,7 +2063,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2004
2063
|
* @throws {RequiredError}
|
|
2005
2064
|
* @memberof ToolboxApi
|
|
2006
2065
|
*/
|
|
2007
|
-
deleteFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2066
|
+
deleteFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2008
2067
|
/**
|
|
2009
2068
|
* Delete a specific session
|
|
2010
2069
|
* @summary Delete session
|
|
@@ -2015,7 +2074,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2015
2074
|
* @throws {RequiredError}
|
|
2016
2075
|
* @memberof ToolboxApi
|
|
2017
2076
|
*/
|
|
2018
|
-
deleteSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2077
|
+
deleteSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2019
2078
|
/**
|
|
2020
2079
|
* Download file from sandbox
|
|
2021
2080
|
* @summary Download file
|
|
@@ -2026,7 +2085,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2026
2085
|
* @throws {RequiredError}
|
|
2027
2086
|
* @memberof ToolboxApi
|
|
2028
2087
|
*/
|
|
2029
|
-
downloadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any
|
|
2088
|
+
downloadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2030
2089
|
/**
|
|
2031
2090
|
* Drag mouse from start to end coordinates
|
|
2032
2091
|
* @summary Drag mouse
|
|
@@ -2037,7 +2096,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2037
2096
|
* @throws {RequiredError}
|
|
2038
2097
|
* @memberof ToolboxApi
|
|
2039
2098
|
*/
|
|
2040
|
-
dragMouse(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any
|
|
2099
|
+
dragMouse(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any>>;
|
|
2041
2100
|
/**
|
|
2042
2101
|
* Execute command synchronously inside sandbox
|
|
2043
2102
|
* @summary Execute command
|
|
@@ -2048,7 +2107,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2048
2107
|
* @throws {RequiredError}
|
|
2049
2108
|
* @memberof ToolboxApi
|
|
2050
2109
|
*/
|
|
2051
|
-
executeCommand(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any
|
|
2110
|
+
executeCommand(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
|
|
2052
2111
|
/**
|
|
2053
2112
|
* Execute a command in a specific session
|
|
2054
2113
|
* @summary Execute command in session
|
|
@@ -2060,7 +2119,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2060
2119
|
* @throws {RequiredError}
|
|
2061
2120
|
* @memberof ToolboxApi
|
|
2062
2121
|
*/
|
|
2063
|
-
executeSessionCommand(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any
|
|
2122
|
+
executeSessionCommand(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
|
|
2064
2123
|
/**
|
|
2065
2124
|
* Search for text/pattern inside sandbox files
|
|
2066
2125
|
* @summary Search for text/pattern in files
|
|
@@ -2072,7 +2131,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2072
2131
|
* @throws {RequiredError}
|
|
2073
2132
|
* @memberof ToolboxApi
|
|
2074
2133
|
*/
|
|
2075
|
-
findInFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any
|
|
2134
|
+
findInFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any>>;
|
|
2076
2135
|
/**
|
|
2077
2136
|
* Get status of all VNC desktop processes
|
|
2078
2137
|
* @summary Get computer use status
|
|
@@ -2082,7 +2141,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2082
2141
|
* @throws {RequiredError}
|
|
2083
2142
|
* @memberof ToolboxApi
|
|
2084
2143
|
*/
|
|
2085
|
-
getComputerUseStatus(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any
|
|
2144
|
+
getComputerUseStatus(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
2086
2145
|
/**
|
|
2087
2146
|
* Get information about displays
|
|
2088
2147
|
* @summary Get display info
|
|
@@ -2092,7 +2151,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2092
2151
|
* @throws {RequiredError}
|
|
2093
2152
|
* @memberof ToolboxApi
|
|
2094
2153
|
*/
|
|
2095
|
-
getDisplayInfo(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any
|
|
2154
|
+
getDisplayInfo(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any>>;
|
|
2096
2155
|
/**
|
|
2097
2156
|
* Get file info inside sandbox
|
|
2098
2157
|
* @summary Get file info
|
|
@@ -2103,7 +2162,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2103
2162
|
* @throws {RequiredError}
|
|
2104
2163
|
* @memberof ToolboxApi
|
|
2105
2164
|
*/
|
|
2106
|
-
getFileInfo(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any
|
|
2165
|
+
getFileInfo(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any>>;
|
|
2107
2166
|
/**
|
|
2108
2167
|
* Get current mouse cursor position
|
|
2109
2168
|
* @summary Get mouse position
|
|
@@ -2113,7 +2172,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2113
2172
|
* @throws {RequiredError}
|
|
2114
2173
|
* @memberof ToolboxApi
|
|
2115
2174
|
*/
|
|
2116
|
-
getMousePosition(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePosition, any
|
|
2175
|
+
getMousePosition(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePosition, any>>;
|
|
2117
2176
|
/**
|
|
2118
2177
|
* Get error logs for a specific VNC process
|
|
2119
2178
|
* @summary Get process errors
|
|
@@ -2124,7 +2183,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2124
2183
|
* @throws {RequiredError}
|
|
2125
2184
|
* @memberof ToolboxApi
|
|
2126
2185
|
*/
|
|
2127
|
-
getProcessErrors(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any
|
|
2186
|
+
getProcessErrors(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any>>;
|
|
2128
2187
|
/**
|
|
2129
2188
|
* Get logs for a specific VNC process
|
|
2130
2189
|
* @summary Get process logs
|
|
@@ -2135,7 +2194,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2135
2194
|
* @throws {RequiredError}
|
|
2136
2195
|
* @memberof ToolboxApi
|
|
2137
2196
|
*/
|
|
2138
|
-
getProcessLogs(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any
|
|
2197
|
+
getProcessLogs(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any>>;
|
|
2139
2198
|
/**
|
|
2140
2199
|
* Get status of a specific VNC process
|
|
2141
2200
|
* @summary Get process status
|
|
@@ -2146,17 +2205,18 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2146
2205
|
* @throws {RequiredError}
|
|
2147
2206
|
* @memberof ToolboxApi
|
|
2148
2207
|
*/
|
|
2149
|
-
getProcessStatus(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any
|
|
2208
|
+
getProcessStatus(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
|
|
2150
2209
|
/**
|
|
2151
2210
|
*
|
|
2152
2211
|
* @summary Get sandbox project dir
|
|
2153
2212
|
* @param {string} sandboxId
|
|
2154
2213
|
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2155
2214
|
* @param {*} [options] Override http request option.
|
|
2215
|
+
* @deprecated
|
|
2156
2216
|
* @throws {RequiredError}
|
|
2157
2217
|
* @memberof ToolboxApi
|
|
2158
2218
|
*/
|
|
2159
|
-
getProjectDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any
|
|
2219
|
+
getProjectDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any>>;
|
|
2160
2220
|
/**
|
|
2161
2221
|
* Get session by ID
|
|
2162
2222
|
* @summary Get session
|
|
@@ -2167,7 +2227,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2167
2227
|
* @throws {RequiredError}
|
|
2168
2228
|
* @memberof ToolboxApi
|
|
2169
2229
|
*/
|
|
2170
|
-
getSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any
|
|
2230
|
+
getSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
|
|
2171
2231
|
/**
|
|
2172
2232
|
* Get session command by ID
|
|
2173
2233
|
* @summary Get session command
|
|
@@ -2179,7 +2239,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2179
2239
|
* @throws {RequiredError}
|
|
2180
2240
|
* @memberof ToolboxApi
|
|
2181
2241
|
*/
|
|
2182
|
-
getSessionCommand(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any
|
|
2242
|
+
getSessionCommand(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
|
|
2183
2243
|
/**
|
|
2184
2244
|
* Get logs for a specific command in a session
|
|
2185
2245
|
* @summary Get command logs
|
|
@@ -2192,7 +2252,17 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2192
2252
|
* @throws {RequiredError}
|
|
2193
2253
|
* @memberof ToolboxApi
|
|
2194
2254
|
*/
|
|
2195
|
-
getSessionCommandLogs(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any
|
|
2255
|
+
getSessionCommandLogs(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
2256
|
+
/**
|
|
2257
|
+
*
|
|
2258
|
+
* @summary Get sandbox user home dir
|
|
2259
|
+
* @param {string} sandboxId
|
|
2260
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2261
|
+
* @param {*} [options] Override http request option.
|
|
2262
|
+
* @throws {RequiredError}
|
|
2263
|
+
* @memberof ToolboxApi
|
|
2264
|
+
*/
|
|
2265
|
+
getUserHomeDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any>>;
|
|
2196
2266
|
/**
|
|
2197
2267
|
* Get list of open windows
|
|
2198
2268
|
* @summary Get windows
|
|
@@ -2202,7 +2272,17 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2202
2272
|
* @throws {RequiredError}
|
|
2203
2273
|
* @memberof ToolboxApi
|
|
2204
2274
|
*/
|
|
2205
|
-
getWindows(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any
|
|
2275
|
+
getWindows(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
|
|
2276
|
+
/**
|
|
2277
|
+
*
|
|
2278
|
+
* @summary Get sandbox work-dir
|
|
2279
|
+
* @param {string} sandboxId
|
|
2280
|
+
* @param {string} [xDaytonaOrganizationID] Use with JWT to specify the organization ID
|
|
2281
|
+
* @param {*} [options] Override http request option.
|
|
2282
|
+
* @throws {RequiredError}
|
|
2283
|
+
* @memberof ToolboxApi
|
|
2284
|
+
*/
|
|
2285
|
+
getWorkDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any>>;
|
|
2206
2286
|
/**
|
|
2207
2287
|
* Add files to git commit
|
|
2208
2288
|
* @summary Add files
|
|
@@ -2213,7 +2293,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2213
2293
|
* @throws {RequiredError}
|
|
2214
2294
|
* @memberof ToolboxApi
|
|
2215
2295
|
*/
|
|
2216
|
-
gitAddFiles(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2296
|
+
gitAddFiles(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2217
2297
|
/**
|
|
2218
2298
|
* Checkout branch or commit in git repository
|
|
2219
2299
|
* @summary Checkout branch
|
|
@@ -2224,7 +2304,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2224
2304
|
* @throws {RequiredError}
|
|
2225
2305
|
* @memberof ToolboxApi
|
|
2226
2306
|
*/
|
|
2227
|
-
gitCheckoutBranch(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2307
|
+
gitCheckoutBranch(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2228
2308
|
/**
|
|
2229
2309
|
* Clone git repository
|
|
2230
2310
|
* @summary Clone repository
|
|
@@ -2235,7 +2315,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2235
2315
|
* @throws {RequiredError}
|
|
2236
2316
|
* @memberof ToolboxApi
|
|
2237
2317
|
*/
|
|
2238
|
-
gitCloneRepository(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2318
|
+
gitCloneRepository(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2239
2319
|
/**
|
|
2240
2320
|
* Commit changes to git repository
|
|
2241
2321
|
* @summary Commit changes
|
|
@@ -2246,7 +2326,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2246
2326
|
* @throws {RequiredError}
|
|
2247
2327
|
* @memberof ToolboxApi
|
|
2248
2328
|
*/
|
|
2249
|
-
gitCommitChanges(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any
|
|
2329
|
+
gitCommitChanges(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any>>;
|
|
2250
2330
|
/**
|
|
2251
2331
|
* Create branch on git repository
|
|
2252
2332
|
* @summary Create branch
|
|
@@ -2257,7 +2337,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2257
2337
|
* @throws {RequiredError}
|
|
2258
2338
|
* @memberof ToolboxApi
|
|
2259
2339
|
*/
|
|
2260
|
-
gitCreateBranch(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2340
|
+
gitCreateBranch(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2261
2341
|
/**
|
|
2262
2342
|
* Delete branch on git repository
|
|
2263
2343
|
* @summary Delete branch
|
|
@@ -2268,7 +2348,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2268
2348
|
* @throws {RequiredError}
|
|
2269
2349
|
* @memberof ToolboxApi
|
|
2270
2350
|
*/
|
|
2271
|
-
gitDeleteBranch(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2351
|
+
gitDeleteBranch(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2272
2352
|
/**
|
|
2273
2353
|
* Get commit history from git repository
|
|
2274
2354
|
* @summary Get commit history
|
|
@@ -2279,7 +2359,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2279
2359
|
* @throws {RequiredError}
|
|
2280
2360
|
* @memberof ToolboxApi
|
|
2281
2361
|
*/
|
|
2282
|
-
gitGetHistory(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any
|
|
2362
|
+
gitGetHistory(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any>>;
|
|
2283
2363
|
/**
|
|
2284
2364
|
* Get status from git repository
|
|
2285
2365
|
* @summary Get git status
|
|
@@ -2290,7 +2370,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2290
2370
|
* @throws {RequiredError}
|
|
2291
2371
|
* @memberof ToolboxApi
|
|
2292
2372
|
*/
|
|
2293
|
-
gitGetStatus(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any
|
|
2373
|
+
gitGetStatus(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any>>;
|
|
2294
2374
|
/**
|
|
2295
2375
|
* Get branch list from git repository
|
|
2296
2376
|
* @summary Get branch list
|
|
@@ -2301,7 +2381,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2301
2381
|
* @throws {RequiredError}
|
|
2302
2382
|
* @memberof ToolboxApi
|
|
2303
2383
|
*/
|
|
2304
|
-
gitListBranches(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any
|
|
2384
|
+
gitListBranches(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any>>;
|
|
2305
2385
|
/**
|
|
2306
2386
|
* Pull changes from remote
|
|
2307
2387
|
* @summary Pull changes
|
|
@@ -2312,7 +2392,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2312
2392
|
* @throws {RequiredError}
|
|
2313
2393
|
* @memberof ToolboxApi
|
|
2314
2394
|
*/
|
|
2315
|
-
gitPullChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2395
|
+
gitPullChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2316
2396
|
/**
|
|
2317
2397
|
* Push changes to remote
|
|
2318
2398
|
* @summary Push changes
|
|
@@ -2323,7 +2403,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2323
2403
|
* @throws {RequiredError}
|
|
2324
2404
|
* @memberof ToolboxApi
|
|
2325
2405
|
*/
|
|
2326
|
-
gitPushChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2406
|
+
gitPushChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2327
2407
|
/**
|
|
2328
2408
|
*
|
|
2329
2409
|
* @summary List files
|
|
@@ -2334,7 +2414,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2334
2414
|
* @throws {RequiredError}
|
|
2335
2415
|
* @memberof ToolboxApi
|
|
2336
2416
|
*/
|
|
2337
|
-
listFiles(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any
|
|
2417
|
+
listFiles(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any>>;
|
|
2338
2418
|
/**
|
|
2339
2419
|
* List all active sessions in the sandbox
|
|
2340
2420
|
* @summary List sessions
|
|
@@ -2344,7 +2424,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2344
2424
|
* @throws {RequiredError}
|
|
2345
2425
|
* @memberof ToolboxApi
|
|
2346
2426
|
*/
|
|
2347
|
-
listSessions(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any
|
|
2427
|
+
listSessions(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
|
|
2348
2428
|
/**
|
|
2349
2429
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
2350
2430
|
* @summary Get Lsp Completions
|
|
@@ -2355,7 +2435,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2355
2435
|
* @throws {RequiredError}
|
|
2356
2436
|
* @memberof ToolboxApi
|
|
2357
2437
|
*/
|
|
2358
|
-
lspCompletions(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any
|
|
2438
|
+
lspCompletions(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any>>;
|
|
2359
2439
|
/**
|
|
2360
2440
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
2361
2441
|
* @summary Call Lsp DidClose
|
|
@@ -2366,7 +2446,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2366
2446
|
* @throws {RequiredError}
|
|
2367
2447
|
* @memberof ToolboxApi
|
|
2368
2448
|
*/
|
|
2369
|
-
lspDidClose(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2449
|
+
lspDidClose(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2370
2450
|
/**
|
|
2371
2451
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
2372
2452
|
* @summary Call Lsp DidOpen
|
|
@@ -2377,7 +2457,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2377
2457
|
* @throws {RequiredError}
|
|
2378
2458
|
* @memberof ToolboxApi
|
|
2379
2459
|
*/
|
|
2380
|
-
lspDidOpen(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2460
|
+
lspDidOpen(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2381
2461
|
/**
|
|
2382
2462
|
* The document symbol request is sent from the client to the server.
|
|
2383
2463
|
* @summary Call Lsp DocumentSymbols
|
|
@@ -2390,7 +2470,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2390
2470
|
* @throws {RequiredError}
|
|
2391
2471
|
* @memberof ToolboxApi
|
|
2392
2472
|
*/
|
|
2393
|
-
lspDocumentSymbols(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any
|
|
2473
|
+
lspDocumentSymbols(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2394
2474
|
/**
|
|
2395
2475
|
* Start Lsp server process inside sandbox project
|
|
2396
2476
|
* @summary Start Lsp server
|
|
@@ -2401,7 +2481,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2401
2481
|
* @throws {RequiredError}
|
|
2402
2482
|
* @memberof ToolboxApi
|
|
2403
2483
|
*/
|
|
2404
|
-
lspStart(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2484
|
+
lspStart(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2405
2485
|
/**
|
|
2406
2486
|
* Stop Lsp server process inside sandbox project
|
|
2407
2487
|
* @summary Stop Lsp server
|
|
@@ -2412,7 +2492,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2412
2492
|
* @throws {RequiredError}
|
|
2413
2493
|
* @memberof ToolboxApi
|
|
2414
2494
|
*/
|
|
2415
|
-
lspStop(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2495
|
+
lspStop(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2416
2496
|
/**
|
|
2417
2497
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
2418
2498
|
* @summary Call Lsp WorkspaceSymbols
|
|
@@ -2425,7 +2505,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2425
2505
|
* @throws {RequiredError}
|
|
2426
2506
|
* @memberof ToolboxApi
|
|
2427
2507
|
*/
|
|
2428
|
-
lspWorkspaceSymbols(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any
|
|
2508
|
+
lspWorkspaceSymbols(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2429
2509
|
/**
|
|
2430
2510
|
* Move file inside sandbox
|
|
2431
2511
|
* @summary Move file
|
|
@@ -2437,7 +2517,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2437
2517
|
* @throws {RequiredError}
|
|
2438
2518
|
* @memberof ToolboxApi
|
|
2439
2519
|
*/
|
|
2440
|
-
moveFile(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2520
|
+
moveFile(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2441
2521
|
/**
|
|
2442
2522
|
* Move mouse cursor to specified coordinates
|
|
2443
2523
|
* @summary Move mouse
|
|
@@ -2448,7 +2528,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2448
2528
|
* @throws {RequiredError}
|
|
2449
2529
|
* @memberof ToolboxApi
|
|
2450
2530
|
*/
|
|
2451
|
-
moveMouse(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseMoveResponse, any
|
|
2531
|
+
moveMouse(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseMoveResponse, any>>;
|
|
2452
2532
|
/**
|
|
2453
2533
|
* Press a hotkey combination
|
|
2454
2534
|
* @summary Press hotkey
|
|
@@ -2459,7 +2539,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2459
2539
|
* @throws {RequiredError}
|
|
2460
2540
|
* @memberof ToolboxApi
|
|
2461
2541
|
*/
|
|
2462
|
-
pressHotkey(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2542
|
+
pressHotkey(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2463
2543
|
/**
|
|
2464
2544
|
* Press a key with optional modifiers
|
|
2465
2545
|
* @summary Press key
|
|
@@ -2470,7 +2550,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2470
2550
|
* @throws {RequiredError}
|
|
2471
2551
|
* @memberof ToolboxApi
|
|
2472
2552
|
*/
|
|
2473
|
-
pressKey(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2553
|
+
pressKey(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2474
2554
|
/**
|
|
2475
2555
|
* Replace text/pattern in multiple files inside sandbox
|
|
2476
2556
|
* @summary Replace in files
|
|
@@ -2481,7 +2561,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2481
2561
|
* @throws {RequiredError}
|
|
2482
2562
|
* @memberof ToolboxApi
|
|
2483
2563
|
*/
|
|
2484
|
-
replaceInFiles(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any
|
|
2564
|
+
replaceInFiles(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any>>;
|
|
2485
2565
|
/**
|
|
2486
2566
|
* Restart a specific VNC process
|
|
2487
2567
|
* @summary Restart process
|
|
@@ -2492,7 +2572,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2492
2572
|
* @throws {RequiredError}
|
|
2493
2573
|
* @memberof ToolboxApi
|
|
2494
2574
|
*/
|
|
2495
|
-
restartProcess(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any
|
|
2575
|
+
restartProcess(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any>>;
|
|
2496
2576
|
/**
|
|
2497
2577
|
* Scroll mouse at specified coordinates
|
|
2498
2578
|
* @summary Scroll mouse
|
|
@@ -2503,7 +2583,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2503
2583
|
* @throws {RequiredError}
|
|
2504
2584
|
* @memberof ToolboxApi
|
|
2505
2585
|
*/
|
|
2506
|
-
scrollMouse(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseScrollResponse, any
|
|
2586
|
+
scrollMouse(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseScrollResponse, any>>;
|
|
2507
2587
|
/**
|
|
2508
2588
|
* Search for files inside sandbox
|
|
2509
2589
|
* @summary Search files
|
|
@@ -2515,7 +2595,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2515
2595
|
* @throws {RequiredError}
|
|
2516
2596
|
* @memberof ToolboxApi
|
|
2517
2597
|
*/
|
|
2518
|
-
searchFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any
|
|
2598
|
+
searchFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any>>;
|
|
2519
2599
|
/**
|
|
2520
2600
|
* Set file owner/group/permissions inside sandbox
|
|
2521
2601
|
* @summary Set file permissions
|
|
@@ -2529,7 +2609,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2529
2609
|
* @throws {RequiredError}
|
|
2530
2610
|
* @memberof ToolboxApi
|
|
2531
2611
|
*/
|
|
2532
|
-
setFilePermissions(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2612
|
+
setFilePermissions(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2533
2613
|
/**
|
|
2534
2614
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2535
2615
|
* @summary Start computer use processes
|
|
@@ -2539,7 +2619,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2539
2619
|
* @throws {RequiredError}
|
|
2540
2620
|
* @memberof ToolboxApi
|
|
2541
2621
|
*/
|
|
2542
|
-
startComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any
|
|
2622
|
+
startComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
|
|
2543
2623
|
/**
|
|
2544
2624
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2545
2625
|
* @summary Stop computer use processes
|
|
@@ -2549,7 +2629,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2549
2629
|
* @throws {RequiredError}
|
|
2550
2630
|
* @memberof ToolboxApi
|
|
2551
2631
|
*/
|
|
2552
|
-
stopComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any
|
|
2632
|
+
stopComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
|
|
2553
2633
|
/**
|
|
2554
2634
|
* Take a compressed screenshot of a specific region
|
|
2555
2635
|
* @summary Take compressed region screenshot
|
|
@@ -2567,7 +2647,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2567
2647
|
* @throws {RequiredError}
|
|
2568
2648
|
* @memberof ToolboxApi
|
|
2569
2649
|
*/
|
|
2570
|
-
takeCompressedRegionScreenshot(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
|
|
2650
|
+
takeCompressedRegionScreenshot(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>>;
|
|
2571
2651
|
/**
|
|
2572
2652
|
* Take a compressed screenshot with format, quality, and scale options
|
|
2573
2653
|
* @summary Take compressed screenshot
|
|
@@ -2581,7 +2661,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2581
2661
|
* @throws {RequiredError}
|
|
2582
2662
|
* @memberof ToolboxApi
|
|
2583
2663
|
*/
|
|
2584
|
-
takeCompressedScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any
|
|
2664
|
+
takeCompressedScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any>>;
|
|
2585
2665
|
/**
|
|
2586
2666
|
* Take a screenshot of a specific region
|
|
2587
2667
|
* @summary Take region screenshot
|
|
@@ -2596,7 +2676,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2596
2676
|
* @throws {RequiredError}
|
|
2597
2677
|
* @memberof ToolboxApi
|
|
2598
2678
|
*/
|
|
2599
|
-
takeRegionScreenshot(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegionScreenshotResponse, any
|
|
2679
|
+
takeRegionScreenshot(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegionScreenshotResponse, any>>;
|
|
2600
2680
|
/**
|
|
2601
2681
|
* Take a screenshot of the entire screen
|
|
2602
2682
|
* @summary Take screenshot
|
|
@@ -2607,7 +2687,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2607
2687
|
* @throws {RequiredError}
|
|
2608
2688
|
* @memberof ToolboxApi
|
|
2609
2689
|
*/
|
|
2610
|
-
takeScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any
|
|
2690
|
+
takeScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
2611
2691
|
/**
|
|
2612
2692
|
* Type text using keyboard
|
|
2613
2693
|
* @summary Type text
|
|
@@ -2618,7 +2698,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2618
2698
|
* @throws {RequiredError}
|
|
2619
2699
|
* @memberof ToolboxApi
|
|
2620
2700
|
*/
|
|
2621
|
-
typeText(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2701
|
+
typeText(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2622
2702
|
/**
|
|
2623
2703
|
* Upload file inside sandbox
|
|
2624
2704
|
* @summary Upload file
|
|
@@ -2631,7 +2711,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2631
2711
|
* @throws {RequiredError}
|
|
2632
2712
|
* @memberof ToolboxApi
|
|
2633
2713
|
*/
|
|
2634
|
-
uploadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2714
|
+
uploadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2635
2715
|
/**
|
|
2636
2716
|
* Upload multiple files inside sandbox
|
|
2637
2717
|
* @summary Upload multiple files
|
|
@@ -2641,5 +2721,5 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2641
2721
|
* @throws {RequiredError}
|
|
2642
2722
|
* @memberof ToolboxApi
|
|
2643
2723
|
*/
|
|
2644
|
-
uploadFiles(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
2724
|
+
uploadFiles(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2645
2725
|
}
|