@daytonaio/api-client 0.102.0 → 0.103.0-rc.2
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 +60 -60
- 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/api/toolbox-api.d.ts
CHANGED
|
@@ -1969,7 +1969,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1969
1969
|
* @throws {RequiredError}
|
|
1970
1970
|
* @memberof ToolboxApi
|
|
1971
1971
|
*/
|
|
1972
|
-
clickMouse(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any>>;
|
|
1972
|
+
clickMouse(sandboxId: string, mouseClickRequest: MouseClickRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseClickResponse, any, {}>>;
|
|
1973
1973
|
/**
|
|
1974
1974
|
* Create folder inside sandbox
|
|
1975
1975
|
* @summary Create folder
|
|
@@ -1981,7 +1981,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1981
1981
|
* @throws {RequiredError}
|
|
1982
1982
|
* @memberof ToolboxApi
|
|
1983
1983
|
*/
|
|
1984
|
-
createFolder(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1984
|
+
createFolder(sandboxId: string, path: string, mode: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Create a new session in the sandbox
|
|
1987
1987
|
* @summary Create session
|
|
@@ -1992,7 +1992,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
1992
1992
|
* @throws {RequiredError}
|
|
1993
1993
|
* @memberof ToolboxApi
|
|
1994
1994
|
*/
|
|
1995
|
-
createSession(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1995
|
+
createSession(sandboxId: string, createSessionRequest: CreateSessionRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1996
1996
|
/**
|
|
1997
1997
|
* Delete file inside sandbox
|
|
1998
1998
|
* @summary Delete file
|
|
@@ -2004,7 +2004,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2004
2004
|
* @throws {RequiredError}
|
|
2005
2005
|
* @memberof ToolboxApi
|
|
2006
2006
|
*/
|
|
2007
|
-
deleteFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2007
|
+
deleteFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, recursive?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2008
2008
|
/**
|
|
2009
2009
|
* Delete a specific session
|
|
2010
2010
|
* @summary Delete session
|
|
@@ -2015,7 +2015,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2015
2015
|
* @throws {RequiredError}
|
|
2016
2016
|
* @memberof ToolboxApi
|
|
2017
2017
|
*/
|
|
2018
|
-
deleteSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2018
|
+
deleteSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2019
2019
|
/**
|
|
2020
2020
|
* Download file from sandbox
|
|
2021
2021
|
* @summary Download file
|
|
@@ -2026,7 +2026,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2026
2026
|
* @throws {RequiredError}
|
|
2027
2027
|
* @memberof ToolboxApi
|
|
2028
2028
|
*/
|
|
2029
|
-
downloadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2029
|
+
downloadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
2030
2030
|
/**
|
|
2031
2031
|
* Drag mouse from start to end coordinates
|
|
2032
2032
|
* @summary Drag mouse
|
|
@@ -2037,7 +2037,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2037
2037
|
* @throws {RequiredError}
|
|
2038
2038
|
* @memberof ToolboxApi
|
|
2039
2039
|
*/
|
|
2040
|
-
dragMouse(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any>>;
|
|
2040
|
+
dragMouse(sandboxId: string, mouseDragRequest: MouseDragRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseDragResponse, any, {}>>;
|
|
2041
2041
|
/**
|
|
2042
2042
|
* Execute command synchronously inside sandbox
|
|
2043
2043
|
* @summary Execute command
|
|
@@ -2048,7 +2048,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2048
2048
|
* @throws {RequiredError}
|
|
2049
2049
|
* @memberof ToolboxApi
|
|
2050
2050
|
*/
|
|
2051
|
-
executeCommand(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any>>;
|
|
2051
|
+
executeCommand(sandboxId: string, executeRequest: ExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteResponse, any, {}>>;
|
|
2052
2052
|
/**
|
|
2053
2053
|
* Execute a command in a specific session
|
|
2054
2054
|
* @summary Execute command in session
|
|
@@ -2060,7 +2060,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2060
2060
|
* @throws {RequiredError}
|
|
2061
2061
|
* @memberof ToolboxApi
|
|
2062
2062
|
*/
|
|
2063
|
-
executeSessionCommand(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any>>;
|
|
2063
|
+
executeSessionCommand(sandboxId: string, sessionId: string, sessionExecuteRequest: SessionExecuteRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionExecuteResponse, any, {}>>;
|
|
2064
2064
|
/**
|
|
2065
2065
|
* Search for text/pattern inside sandbox files
|
|
2066
2066
|
* @summary Search for text/pattern in files
|
|
@@ -2072,7 +2072,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2072
2072
|
* @throws {RequiredError}
|
|
2073
2073
|
* @memberof ToolboxApi
|
|
2074
2074
|
*/
|
|
2075
|
-
findInFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any>>;
|
|
2075
|
+
findInFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Match[], any, {}>>;
|
|
2076
2076
|
/**
|
|
2077
2077
|
* Get status of all VNC desktop processes
|
|
2078
2078
|
* @summary Get computer use status
|
|
@@ -2082,7 +2082,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2082
2082
|
* @throws {RequiredError}
|
|
2083
2083
|
* @memberof ToolboxApi
|
|
2084
2084
|
*/
|
|
2085
|
-
getComputerUseStatus(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any>>;
|
|
2085
|
+
getComputerUseStatus(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStatusResponse, any, {}>>;
|
|
2086
2086
|
/**
|
|
2087
2087
|
* Get information about displays
|
|
2088
2088
|
* @summary Get display info
|
|
@@ -2092,7 +2092,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2092
2092
|
* @throws {RequiredError}
|
|
2093
2093
|
* @memberof ToolboxApi
|
|
2094
2094
|
*/
|
|
2095
|
-
getDisplayInfo(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any>>;
|
|
2095
|
+
getDisplayInfo(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DisplayInfoResponse, any, {}>>;
|
|
2096
2096
|
/**
|
|
2097
2097
|
* Get file info inside sandbox
|
|
2098
2098
|
* @summary Get file info
|
|
@@ -2103,7 +2103,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2103
2103
|
* @throws {RequiredError}
|
|
2104
2104
|
* @memberof ToolboxApi
|
|
2105
2105
|
*/
|
|
2106
|
-
getFileInfo(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any>>;
|
|
2106
|
+
getFileInfo(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo, any, {}>>;
|
|
2107
2107
|
/**
|
|
2108
2108
|
* Get current mouse cursor position
|
|
2109
2109
|
* @summary Get mouse position
|
|
@@ -2113,7 +2113,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2113
2113
|
* @throws {RequiredError}
|
|
2114
2114
|
* @memberof ToolboxApi
|
|
2115
2115
|
*/
|
|
2116
|
-
getMousePosition(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePosition, any>>;
|
|
2116
|
+
getMousePosition(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MousePosition, any, {}>>;
|
|
2117
2117
|
/**
|
|
2118
2118
|
* Get error logs for a specific VNC process
|
|
2119
2119
|
* @summary Get process errors
|
|
@@ -2124,7 +2124,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2124
2124
|
* @throws {RequiredError}
|
|
2125
2125
|
* @memberof ToolboxApi
|
|
2126
2126
|
*/
|
|
2127
|
-
getProcessErrors(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any>>;
|
|
2127
|
+
getProcessErrors(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessErrorsResponse, any, {}>>;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* Get logs for a specific VNC process
|
|
2130
2130
|
* @summary Get process logs
|
|
@@ -2135,7 +2135,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2135
2135
|
* @throws {RequiredError}
|
|
2136
2136
|
* @memberof ToolboxApi
|
|
2137
2137
|
*/
|
|
2138
|
-
getProcessLogs(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any>>;
|
|
2138
|
+
getProcessLogs(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessLogsResponse, any, {}>>;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* Get status of a specific VNC process
|
|
2141
2141
|
* @summary Get process status
|
|
@@ -2146,7 +2146,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2146
2146
|
* @throws {RequiredError}
|
|
2147
2147
|
* @memberof ToolboxApi
|
|
2148
2148
|
*/
|
|
2149
|
-
getProcessStatus(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any>>;
|
|
2149
|
+
getProcessStatus(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessStatusResponse, any, {}>>;
|
|
2150
2150
|
/**
|
|
2151
2151
|
*
|
|
2152
2152
|
* @summary Get sandbox project dir
|
|
@@ -2156,7 +2156,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2156
2156
|
* @throws {RequiredError}
|
|
2157
2157
|
* @memberof ToolboxApi
|
|
2158
2158
|
*/
|
|
2159
|
-
getProjectDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any>>;
|
|
2159
|
+
getProjectDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectDirResponse, any, {}>>;
|
|
2160
2160
|
/**
|
|
2161
2161
|
* Get session by ID
|
|
2162
2162
|
* @summary Get session
|
|
@@ -2167,7 +2167,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2167
2167
|
* @throws {RequiredError}
|
|
2168
2168
|
* @memberof ToolboxApi
|
|
2169
2169
|
*/
|
|
2170
|
-
getSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any>>;
|
|
2170
|
+
getSession(sandboxId: string, sessionId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session, any, {}>>;
|
|
2171
2171
|
/**
|
|
2172
2172
|
* Get session command by ID
|
|
2173
2173
|
* @summary Get session command
|
|
@@ -2179,7 +2179,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2179
2179
|
* @throws {RequiredError}
|
|
2180
2180
|
* @memberof ToolboxApi
|
|
2181
2181
|
*/
|
|
2182
|
-
getSessionCommand(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any>>;
|
|
2182
|
+
getSessionCommand(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any, {}>>;
|
|
2183
2183
|
/**
|
|
2184
2184
|
* Get logs for a specific command in a session
|
|
2185
2185
|
* @summary Get command logs
|
|
@@ -2192,7 +2192,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2192
2192
|
* @throws {RequiredError}
|
|
2193
2193
|
* @memberof ToolboxApi
|
|
2194
2194
|
*/
|
|
2195
|
-
getSessionCommandLogs(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
2195
|
+
getSessionCommandLogs(sandboxId: string, sessionId: string, commandId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
2196
2196
|
/**
|
|
2197
2197
|
* Get list of open windows
|
|
2198
2198
|
* @summary Get windows
|
|
@@ -2202,7 +2202,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2202
2202
|
* @throws {RequiredError}
|
|
2203
2203
|
* @memberof ToolboxApi
|
|
2204
2204
|
*/
|
|
2205
|
-
getWindows(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any>>;
|
|
2205
|
+
getWindows(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WindowsResponse, any, {}>>;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* Add files to git commit
|
|
2208
2208
|
* @summary Add files
|
|
@@ -2213,7 +2213,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2213
2213
|
* @throws {RequiredError}
|
|
2214
2214
|
* @memberof ToolboxApi
|
|
2215
2215
|
*/
|
|
2216
|
-
gitAddFiles(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2216
|
+
gitAddFiles(sandboxId: string, gitAddRequest: GitAddRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2217
2217
|
/**
|
|
2218
2218
|
* Checkout branch or commit in git repository
|
|
2219
2219
|
* @summary Checkout branch
|
|
@@ -2224,7 +2224,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2224
2224
|
* @throws {RequiredError}
|
|
2225
2225
|
* @memberof ToolboxApi
|
|
2226
2226
|
*/
|
|
2227
|
-
gitCheckoutBranch(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2227
|
+
gitCheckoutBranch(sandboxId: string, gitCheckoutRequest: GitCheckoutRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* Clone git repository
|
|
2230
2230
|
* @summary Clone repository
|
|
@@ -2235,7 +2235,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2235
2235
|
* @throws {RequiredError}
|
|
2236
2236
|
* @memberof ToolboxApi
|
|
2237
2237
|
*/
|
|
2238
|
-
gitCloneRepository(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2238
|
+
gitCloneRepository(sandboxId: string, gitCloneRequest: GitCloneRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2239
2239
|
/**
|
|
2240
2240
|
* Commit changes to git repository
|
|
2241
2241
|
* @summary Commit changes
|
|
@@ -2246,7 +2246,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2246
2246
|
* @throws {RequiredError}
|
|
2247
2247
|
* @memberof ToolboxApi
|
|
2248
2248
|
*/
|
|
2249
|
-
gitCommitChanges(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any>>;
|
|
2249
|
+
gitCommitChanges(sandboxId: string, gitCommitRequest: GitCommitRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitResponse, any, {}>>;
|
|
2250
2250
|
/**
|
|
2251
2251
|
* Create branch on git repository
|
|
2252
2252
|
* @summary Create branch
|
|
@@ -2257,7 +2257,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2257
2257
|
* @throws {RequiredError}
|
|
2258
2258
|
* @memberof ToolboxApi
|
|
2259
2259
|
*/
|
|
2260
|
-
gitCreateBranch(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2260
|
+
gitCreateBranch(sandboxId: string, gitBranchRequest: GitBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2261
2261
|
/**
|
|
2262
2262
|
* Delete branch on git repository
|
|
2263
2263
|
* @summary Delete branch
|
|
@@ -2268,7 +2268,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2268
2268
|
* @throws {RequiredError}
|
|
2269
2269
|
* @memberof ToolboxApi
|
|
2270
2270
|
*/
|
|
2271
|
-
gitDeleteBranch(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2271
|
+
gitDeleteBranch(sandboxId: string, gitDeleteBranchRequest: GitDeleteBranchRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* Get commit history from git repository
|
|
2274
2274
|
* @summary Get commit history
|
|
@@ -2279,7 +2279,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2279
2279
|
* @throws {RequiredError}
|
|
2280
2280
|
* @memberof ToolboxApi
|
|
2281
2281
|
*/
|
|
2282
|
-
gitGetHistory(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any>>;
|
|
2282
|
+
gitGetHistory(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitCommitInfo[], any, {}>>;
|
|
2283
2283
|
/**
|
|
2284
2284
|
* Get status from git repository
|
|
2285
2285
|
* @summary Get git status
|
|
@@ -2290,7 +2290,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2290
2290
|
* @throws {RequiredError}
|
|
2291
2291
|
* @memberof ToolboxApi
|
|
2292
2292
|
*/
|
|
2293
|
-
gitGetStatus(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any>>;
|
|
2293
|
+
gitGetStatus(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GitStatus, any, {}>>;
|
|
2294
2294
|
/**
|
|
2295
2295
|
* Get branch list from git repository
|
|
2296
2296
|
* @summary Get branch list
|
|
@@ -2301,7 +2301,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2301
2301
|
* @throws {RequiredError}
|
|
2302
2302
|
* @memberof ToolboxApi
|
|
2303
2303
|
*/
|
|
2304
|
-
gitListBranches(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any>>;
|
|
2304
|
+
gitListBranches(sandboxId: string, path: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBranchResponse, any, {}>>;
|
|
2305
2305
|
/**
|
|
2306
2306
|
* Pull changes from remote
|
|
2307
2307
|
* @summary Pull changes
|
|
@@ -2312,7 +2312,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2312
2312
|
* @throws {RequiredError}
|
|
2313
2313
|
* @memberof ToolboxApi
|
|
2314
2314
|
*/
|
|
2315
|
-
gitPullChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2315
|
+
gitPullChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* Push changes to remote
|
|
2318
2318
|
* @summary Push changes
|
|
@@ -2323,7 +2323,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2323
2323
|
* @throws {RequiredError}
|
|
2324
2324
|
* @memberof ToolboxApi
|
|
2325
2325
|
*/
|
|
2326
|
-
gitPushChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2326
|
+
gitPushChanges(sandboxId: string, gitRepoRequest: GitRepoRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2327
2327
|
/**
|
|
2328
2328
|
*
|
|
2329
2329
|
* @summary List files
|
|
@@ -2334,7 +2334,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2334
2334
|
* @throws {RequiredError}
|
|
2335
2335
|
* @memberof ToolboxApi
|
|
2336
2336
|
*/
|
|
2337
|
-
listFiles(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any>>;
|
|
2337
|
+
listFiles(sandboxId: string, xDaytonaOrganizationID?: string, path?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FileInfo[], any, {}>>;
|
|
2338
2338
|
/**
|
|
2339
2339
|
* List all active sessions in the sandbox
|
|
2340
2340
|
* @summary List sessions
|
|
@@ -2344,7 +2344,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2344
2344
|
* @throws {RequiredError}
|
|
2345
2345
|
* @memberof ToolboxApi
|
|
2346
2346
|
*/
|
|
2347
|
-
listSessions(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any>>;
|
|
2347
|
+
listSessions(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Session[], any, {}>>;
|
|
2348
2348
|
/**
|
|
2349
2349
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
2350
2350
|
* @summary Get Lsp Completions
|
|
@@ -2355,7 +2355,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2355
2355
|
* @throws {RequiredError}
|
|
2356
2356
|
* @memberof ToolboxApi
|
|
2357
2357
|
*/
|
|
2358
|
-
lspCompletions(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any>>;
|
|
2358
|
+
lspCompletions(sandboxId: string, lspCompletionParams: LspCompletionParams, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompletionList, any, {}>>;
|
|
2359
2359
|
/**
|
|
2360
2360
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
2361
2361
|
* @summary Call Lsp DidClose
|
|
@@ -2366,7 +2366,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2366
2366
|
* @throws {RequiredError}
|
|
2367
2367
|
* @memberof ToolboxApi
|
|
2368
2368
|
*/
|
|
2369
|
-
lspDidClose(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2369
|
+
lspDidClose(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2370
2370
|
/**
|
|
2371
2371
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
2372
2372
|
* @summary Call Lsp DidOpen
|
|
@@ -2377,7 +2377,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2377
2377
|
* @throws {RequiredError}
|
|
2378
2378
|
* @memberof ToolboxApi
|
|
2379
2379
|
*/
|
|
2380
|
-
lspDidOpen(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2380
|
+
lspDidOpen(sandboxId: string, lspDocumentRequest: LspDocumentRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* The document symbol request is sent from the client to the server.
|
|
2383
2383
|
* @summary Call Lsp DocumentSymbols
|
|
@@ -2390,7 +2390,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2390
2390
|
* @throws {RequiredError}
|
|
2391
2391
|
* @memberof ToolboxApi
|
|
2392
2392
|
*/
|
|
2393
|
-
lspDocumentSymbols(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2393
|
+
lspDocumentSymbols(sandboxId: string, languageId: string, pathToProject: string, uri: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any, {}>>;
|
|
2394
2394
|
/**
|
|
2395
2395
|
* Start Lsp server process inside sandbox project
|
|
2396
2396
|
* @summary Start Lsp server
|
|
@@ -2401,7 +2401,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2401
2401
|
* @throws {RequiredError}
|
|
2402
2402
|
* @memberof ToolboxApi
|
|
2403
2403
|
*/
|
|
2404
|
-
lspStart(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2404
|
+
lspStart(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2405
2405
|
/**
|
|
2406
2406
|
* Stop Lsp server process inside sandbox project
|
|
2407
2407
|
* @summary Stop Lsp server
|
|
@@ -2412,7 +2412,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2412
2412
|
* @throws {RequiredError}
|
|
2413
2413
|
* @memberof ToolboxApi
|
|
2414
2414
|
*/
|
|
2415
|
-
lspStop(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2415
|
+
lspStop(sandboxId: string, lspServerRequest: LspServerRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2416
2416
|
/**
|
|
2417
2417
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
2418
2418
|
* @summary Call Lsp WorkspaceSymbols
|
|
@@ -2425,7 +2425,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2425
2425
|
* @throws {RequiredError}
|
|
2426
2426
|
* @memberof ToolboxApi
|
|
2427
2427
|
*/
|
|
2428
|
-
lspWorkspaceSymbols(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any>>;
|
|
2428
|
+
lspWorkspaceSymbols(sandboxId: string, languageId: string, pathToProject: string, query: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LspSymbol[], any, {}>>;
|
|
2429
2429
|
/**
|
|
2430
2430
|
* Move file inside sandbox
|
|
2431
2431
|
* @summary Move file
|
|
@@ -2437,7 +2437,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2437
2437
|
* @throws {RequiredError}
|
|
2438
2438
|
* @memberof ToolboxApi
|
|
2439
2439
|
*/
|
|
2440
|
-
moveFile(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2440
|
+
moveFile(sandboxId: string, source: string, destination: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2441
2441
|
/**
|
|
2442
2442
|
* Move mouse cursor to specified coordinates
|
|
2443
2443
|
* @summary Move mouse
|
|
@@ -2448,7 +2448,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2448
2448
|
* @throws {RequiredError}
|
|
2449
2449
|
* @memberof ToolboxApi
|
|
2450
2450
|
*/
|
|
2451
|
-
moveMouse(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseMoveResponse, any>>;
|
|
2451
|
+
moveMouse(sandboxId: string, mouseMoveRequest: MouseMoveRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseMoveResponse, any, {}>>;
|
|
2452
2452
|
/**
|
|
2453
2453
|
* Press a hotkey combination
|
|
2454
2454
|
* @summary Press hotkey
|
|
@@ -2459,7 +2459,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2459
2459
|
* @throws {RequiredError}
|
|
2460
2460
|
* @memberof ToolboxApi
|
|
2461
2461
|
*/
|
|
2462
|
-
pressHotkey(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2462
|
+
pressHotkey(sandboxId: string, keyboardHotkeyRequest: KeyboardHotkeyRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2463
2463
|
/**
|
|
2464
2464
|
* Press a key with optional modifiers
|
|
2465
2465
|
* @summary Press key
|
|
@@ -2470,7 +2470,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2470
2470
|
* @throws {RequiredError}
|
|
2471
2471
|
* @memberof ToolboxApi
|
|
2472
2472
|
*/
|
|
2473
|
-
pressKey(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2473
|
+
pressKey(sandboxId: string, keyboardPressRequest: KeyboardPressRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2474
2474
|
/**
|
|
2475
2475
|
* Replace text/pattern in multiple files inside sandbox
|
|
2476
2476
|
* @summary Replace in files
|
|
@@ -2481,7 +2481,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2481
2481
|
* @throws {RequiredError}
|
|
2482
2482
|
* @memberof ToolboxApi
|
|
2483
2483
|
*/
|
|
2484
|
-
replaceInFiles(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any>>;
|
|
2484
|
+
replaceInFiles(sandboxId: string, replaceRequest: ReplaceRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReplaceResult[], any, {}>>;
|
|
2485
2485
|
/**
|
|
2486
2486
|
* Restart a specific VNC process
|
|
2487
2487
|
* @summary Restart process
|
|
@@ -2492,7 +2492,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2492
2492
|
* @throws {RequiredError}
|
|
2493
2493
|
* @memberof ToolboxApi
|
|
2494
2494
|
*/
|
|
2495
|
-
restartProcess(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any>>;
|
|
2495
|
+
restartProcess(processName: string, sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProcessRestartResponse, any, {}>>;
|
|
2496
2496
|
/**
|
|
2497
2497
|
* Scroll mouse at specified coordinates
|
|
2498
2498
|
* @summary Scroll mouse
|
|
@@ -2503,7 +2503,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2503
2503
|
* @throws {RequiredError}
|
|
2504
2504
|
* @memberof ToolboxApi
|
|
2505
2505
|
*/
|
|
2506
|
-
scrollMouse(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseScrollResponse, any>>;
|
|
2506
|
+
scrollMouse(sandboxId: string, mouseScrollRequest: MouseScrollRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MouseScrollResponse, any, {}>>;
|
|
2507
2507
|
/**
|
|
2508
2508
|
* Search for files inside sandbox
|
|
2509
2509
|
* @summary Search files
|
|
@@ -2515,7 +2515,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2515
2515
|
* @throws {RequiredError}
|
|
2516
2516
|
* @memberof ToolboxApi
|
|
2517
2517
|
*/
|
|
2518
|
-
searchFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any>>;
|
|
2518
|
+
searchFiles(sandboxId: string, path: string, pattern: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchFilesResponse, any, {}>>;
|
|
2519
2519
|
/**
|
|
2520
2520
|
* Set file owner/group/permissions inside sandbox
|
|
2521
2521
|
* @summary Set file permissions
|
|
@@ -2529,7 +2529,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2529
2529
|
* @throws {RequiredError}
|
|
2530
2530
|
* @memberof ToolboxApi
|
|
2531
2531
|
*/
|
|
2532
|
-
setFilePermissions(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2532
|
+
setFilePermissions(sandboxId: string, path: string, xDaytonaOrganizationID?: string, owner?: string, group?: string, mode?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2533
2533
|
/**
|
|
2534
2534
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2535
2535
|
* @summary Start computer use processes
|
|
@@ -2539,7 +2539,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2539
2539
|
* @throws {RequiredError}
|
|
2540
2540
|
* @memberof ToolboxApi
|
|
2541
2541
|
*/
|
|
2542
|
-
startComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any>>;
|
|
2542
|
+
startComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStartResponse, any, {}>>;
|
|
2543
2543
|
/**
|
|
2544
2544
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2545
2545
|
* @summary Stop computer use processes
|
|
@@ -2549,7 +2549,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2549
2549
|
* @throws {RequiredError}
|
|
2550
2550
|
* @memberof ToolboxApi
|
|
2551
2551
|
*/
|
|
2552
|
-
stopComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any>>;
|
|
2552
|
+
stopComputerUse(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ComputerUseStopResponse, any, {}>>;
|
|
2553
2553
|
/**
|
|
2554
2554
|
* Take a compressed screenshot of a specific region
|
|
2555
2555
|
* @summary Take compressed region screenshot
|
|
@@ -2567,7 +2567,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2567
2567
|
* @throws {RequiredError}
|
|
2568
2568
|
* @memberof ToolboxApi
|
|
2569
2569
|
*/
|
|
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>>;
|
|
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, {}>>;
|
|
2571
2571
|
/**
|
|
2572
2572
|
* Take a compressed screenshot with format, quality, and scale options
|
|
2573
2573
|
* @summary Take compressed screenshot
|
|
@@ -2581,7 +2581,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2581
2581
|
* @throws {RequiredError}
|
|
2582
2582
|
* @memberof ToolboxApi
|
|
2583
2583
|
*/
|
|
2584
|
-
takeCompressedScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any>>;
|
|
2584
|
+
takeCompressedScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, scale?: number, quality?: number, format?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompressedScreenshotResponse, any, {}>>;
|
|
2585
2585
|
/**
|
|
2586
2586
|
* Take a screenshot of a specific region
|
|
2587
2587
|
* @summary Take region screenshot
|
|
@@ -2596,7 +2596,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2596
2596
|
* @throws {RequiredError}
|
|
2597
2597
|
* @memberof ToolboxApi
|
|
2598
2598
|
*/
|
|
2599
|
-
takeRegionScreenshot(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegionScreenshotResponse, any>>;
|
|
2599
|
+
takeRegionScreenshot(sandboxId: string, height: number, width: number, y: number, x: number, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegionScreenshotResponse, any, {}>>;
|
|
2600
2600
|
/**
|
|
2601
2601
|
* Take a screenshot of the entire screen
|
|
2602
2602
|
* @summary Take screenshot
|
|
@@ -2607,7 +2607,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2607
2607
|
* @throws {RequiredError}
|
|
2608
2608
|
* @memberof ToolboxApi
|
|
2609
2609
|
*/
|
|
2610
|
-
takeScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any>>;
|
|
2610
|
+
takeScreenshot(sandboxId: string, xDaytonaOrganizationID?: string, showCursor?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ScreenshotResponse, any, {}>>;
|
|
2611
2611
|
/**
|
|
2612
2612
|
* Type text using keyboard
|
|
2613
2613
|
* @summary Type text
|
|
@@ -2618,7 +2618,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2618
2618
|
* @throws {RequiredError}
|
|
2619
2619
|
* @memberof ToolboxApi
|
|
2620
2620
|
*/
|
|
2621
|
-
typeText(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2621
|
+
typeText(sandboxId: string, keyboardTypeRequest: KeyboardTypeRequest, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2622
2622
|
/**
|
|
2623
2623
|
* Upload file inside sandbox
|
|
2624
2624
|
* @summary Upload file
|
|
@@ -2631,7 +2631,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2631
2631
|
* @throws {RequiredError}
|
|
2632
2632
|
* @memberof ToolboxApi
|
|
2633
2633
|
*/
|
|
2634
|
-
uploadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2634
|
+
uploadFile(sandboxId: string, path: string, xDaytonaOrganizationID?: string, file?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2635
2635
|
/**
|
|
2636
2636
|
* Upload multiple files inside sandbox
|
|
2637
2637
|
* @summary Upload multiple files
|
|
@@ -2641,5 +2641,5 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2641
2641
|
* @throws {RequiredError}
|
|
2642
2642
|
* @memberof ToolboxApi
|
|
2643
2643
|
*/
|
|
2644
|
-
uploadFiles(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2644
|
+
uploadFiles(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
2645
2645
|
}
|
package/src/api/users-api.d.ts
CHANGED
|
@@ -256,7 +256,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
256
256
|
* @throws {RequiredError}
|
|
257
257
|
* @memberof UsersApi
|
|
258
258
|
*/
|
|
259
|
-
createUser(createUser: CreateUser, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
259
|
+
createUser(createUser: CreateUser, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
260
260
|
/**
|
|
261
261
|
*
|
|
262
262
|
* @summary Enroll in SMS MFA
|
|
@@ -264,7 +264,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
264
264
|
* @throws {RequiredError}
|
|
265
265
|
* @memberof UsersApi
|
|
266
266
|
*/
|
|
267
|
-
enrollInSmsMfa(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
267
|
+
enrollInSmsMfa(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
268
268
|
/**
|
|
269
269
|
*
|
|
270
270
|
* @summary Get authenticated user
|
|
@@ -272,7 +272,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
272
272
|
* @throws {RequiredError}
|
|
273
273
|
* @memberof UsersApi
|
|
274
274
|
*/
|
|
275
|
-
getAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
275
|
+
getAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
276
276
|
/**
|
|
277
277
|
*
|
|
278
278
|
* @summary Get available account providers
|
|
@@ -280,7 +280,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
280
280
|
* @throws {RequiredError}
|
|
281
281
|
* @memberof UsersApi
|
|
282
282
|
*/
|
|
283
|
-
getAvailableAccountProviders(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountProvider[], any>>;
|
|
283
|
+
getAvailableAccountProviders(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountProvider[], any, {}>>;
|
|
284
284
|
/**
|
|
285
285
|
*
|
|
286
286
|
* @summary Get user by ID
|
|
@@ -289,7 +289,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
289
289
|
* @throws {RequiredError}
|
|
290
290
|
* @memberof UsersApi
|
|
291
291
|
*/
|
|
292
|
-
getUser(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
292
|
+
getUser(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
293
293
|
/**
|
|
294
294
|
*
|
|
295
295
|
* @summary Link account
|
|
@@ -298,7 +298,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
298
298
|
* @throws {RequiredError}
|
|
299
299
|
* @memberof UsersApi
|
|
300
300
|
*/
|
|
301
|
-
linkAccount(createLinkedAccount: CreateLinkedAccount, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
301
|
+
linkAccount(createLinkedAccount: CreateLinkedAccount, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
302
302
|
/**
|
|
303
303
|
*
|
|
304
304
|
* @summary List all users
|
|
@@ -306,7 +306,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
306
306
|
* @throws {RequiredError}
|
|
307
307
|
* @memberof UsersApi
|
|
308
308
|
*/
|
|
309
|
-
listUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
309
|
+
listUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
310
310
|
/**
|
|
311
311
|
*
|
|
312
312
|
* @summary Regenerate user key pair
|
|
@@ -315,7 +315,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
315
315
|
* @throws {RequiredError}
|
|
316
316
|
* @memberof UsersApi
|
|
317
317
|
*/
|
|
318
|
-
regenerateKeyPair(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
318
|
+
regenerateKeyPair(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
319
319
|
/**
|
|
320
320
|
*
|
|
321
321
|
* @summary Unlink account
|
|
@@ -325,5 +325,5 @@ export declare class UsersApi extends BaseAPI {
|
|
|
325
325
|
* @throws {RequiredError}
|
|
326
326
|
* @memberof UsersApi
|
|
327
327
|
*/
|
|
328
|
-
unlinkAccount(provider: string, providerUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
328
|
+
unlinkAccount(provider: string, providerUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
329
329
|
}
|
package/src/api/volumes-api.d.ts
CHANGED
|
@@ -183,7 +183,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
183
183
|
* @throws {RequiredError}
|
|
184
184
|
* @memberof VolumesApi
|
|
185
185
|
*/
|
|
186
|
-
createVolume(createVolume: CreateVolume, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any>>;
|
|
186
|
+
createVolume(createVolume: CreateVolume, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any, {}>>;
|
|
187
187
|
/**
|
|
188
188
|
*
|
|
189
189
|
* @summary Delete volume
|
|
@@ -193,7 +193,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
193
193
|
* @throws {RequiredError}
|
|
194
194
|
* @memberof VolumesApi
|
|
195
195
|
*/
|
|
196
|
-
deleteVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
196
|
+
deleteVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
197
197
|
/**
|
|
198
198
|
*
|
|
199
199
|
* @summary Get volume details
|
|
@@ -203,7 +203,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
203
203
|
* @throws {RequiredError}
|
|
204
204
|
* @memberof VolumesApi
|
|
205
205
|
*/
|
|
206
|
-
getVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any>>;
|
|
206
|
+
getVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any, {}>>;
|
|
207
207
|
/**
|
|
208
208
|
*
|
|
209
209
|
* @summary Get volume details by name
|
|
@@ -213,7 +213,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
213
213
|
* @throws {RequiredError}
|
|
214
214
|
* @memberof VolumesApi
|
|
215
215
|
*/
|
|
216
|
-
getVolumeByName(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any>>;
|
|
216
|
+
getVolumeByName(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any, {}>>;
|
|
217
217
|
/**
|
|
218
218
|
*
|
|
219
219
|
* @summary List all volumes
|
|
@@ -223,5 +223,5 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
223
223
|
* @throws {RequiredError}
|
|
224
224
|
* @memberof VolumesApi
|
|
225
225
|
*/
|
|
226
|
-
listVolumes(xDaytonaOrganizationID?: string, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto[], any>>;
|
|
226
|
+
listVolumes(xDaytonaOrganizationID?: string, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto[], any, {}>>;
|
|
227
227
|
}
|