@daytonaio/api-client 0.103.0 → 0.104.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api/api-keys-api.d.ts +6 -6
- package/src/api/audit-api.d.ts +3 -3
- package/src/api/config-api.d.ts +70 -0
- package/src/api/config-api.js +119 -0
- package/src/api/config-api.js.map +1 -0
- 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 +3 -3
- package/src/api/runners-api.d.ts +5 -5
- package/src/api/sandbox-api.d.ts +97 -18
- package/src/api/sandbox-api.js +165 -0
- package/src/api/sandbox-api.js.map +1 -1
- package/src/api/snapshots-api.d.ts +9 -9
- package/src/api/toolbox-api.d.ts +62 -62
- 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.d.ts +1 -0
- package/src/api.js +1 -0
- package/src/api.js.map +1 -1
- package/src/models/announcement.d.ts +30 -0
- package/src/models/announcement.js +4 -0
- package/src/models/announcement.js.map +1 -0
- package/src/models/daytona-configuration.d.ts +107 -0
- package/src/models/daytona-configuration.js +16 -0
- package/src/models/daytona-configuration.js.map +1 -0
- package/src/models/index.d.ts +5 -0
- package/src/models/index.js +5 -0
- package/src/models/index.js.map +1 -1
- package/src/models/oidc-config.d.ts +36 -0
- package/src/models/oidc-config.js +4 -0
- package/src/models/oidc-config.js.map +1 -0
- package/src/models/posthog-config.d.ts +30 -0
- package/src/models/posthog-config.js +4 -0
- package/src/models/posthog-config.js.map +1 -0
- package/src/models/update-sandbox-state-dto.d.ts +43 -0
- package/src/models/update-sandbox-state-dto.js +23 -0
- package/src/models/update-sandbox-state-dto.js.map +1 -0
package/src/api/toolbox-api.d.ts
CHANGED
|
@@ -2028,7 +2028,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2028
2028
|
* @throws {RequiredError}
|
|
2029
2029
|
* @memberof ToolboxApi
|
|
2030
2030
|
*/
|
|
2031
|
-
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, {}>>;
|
|
2032
2032
|
/**
|
|
2033
2033
|
* Create folder inside sandbox
|
|
2034
2034
|
* @summary Create folder
|
|
@@ -2040,7 +2040,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2040
2040
|
* @throws {RequiredError}
|
|
2041
2041
|
* @memberof ToolboxApi
|
|
2042
2042
|
*/
|
|
2043
|
-
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, {}>>;
|
|
2044
2044
|
/**
|
|
2045
2045
|
* Create a new session in the sandbox
|
|
2046
2046
|
* @summary Create session
|
|
@@ -2051,7 +2051,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2051
2051
|
* @throws {RequiredError}
|
|
2052
2052
|
* @memberof ToolboxApi
|
|
2053
2053
|
*/
|
|
2054
|
-
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, {}>>;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* Delete file inside sandbox
|
|
2057
2057
|
* @summary Delete file
|
|
@@ -2063,7 +2063,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2063
2063
|
* @throws {RequiredError}
|
|
2064
2064
|
* @memberof ToolboxApi
|
|
2065
2065
|
*/
|
|
2066
|
-
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, {}>>;
|
|
2067
2067
|
/**
|
|
2068
2068
|
* Delete a specific session
|
|
2069
2069
|
* @summary Delete session
|
|
@@ -2074,7 +2074,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2074
2074
|
* @throws {RequiredError}
|
|
2075
2075
|
* @memberof ToolboxApi
|
|
2076
2076
|
*/
|
|
2077
|
-
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, {}>>;
|
|
2078
2078
|
/**
|
|
2079
2079
|
* Download file from sandbox
|
|
2080
2080
|
* @summary Download file
|
|
@@ -2085,7 +2085,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2085
2085
|
* @throws {RequiredError}
|
|
2086
2086
|
* @memberof ToolboxApi
|
|
2087
2087
|
*/
|
|
2088
|
-
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, {}>>;
|
|
2089
2089
|
/**
|
|
2090
2090
|
* Drag mouse from start to end coordinates
|
|
2091
2091
|
* @summary Drag mouse
|
|
@@ -2096,7 +2096,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2096
2096
|
* @throws {RequiredError}
|
|
2097
2097
|
* @memberof ToolboxApi
|
|
2098
2098
|
*/
|
|
2099
|
-
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, {}>>;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* Execute command synchronously inside sandbox
|
|
2102
2102
|
* @summary Execute command
|
|
@@ -2107,7 +2107,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2107
2107
|
* @throws {RequiredError}
|
|
2108
2108
|
* @memberof ToolboxApi
|
|
2109
2109
|
*/
|
|
2110
|
-
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, {}>>;
|
|
2111
2111
|
/**
|
|
2112
2112
|
* Execute a command in a specific session
|
|
2113
2113
|
* @summary Execute command in session
|
|
@@ -2119,7 +2119,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2119
2119
|
* @throws {RequiredError}
|
|
2120
2120
|
* @memberof ToolboxApi
|
|
2121
2121
|
*/
|
|
2122
|
-
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, {}>>;
|
|
2123
2123
|
/**
|
|
2124
2124
|
* Search for text/pattern inside sandbox files
|
|
2125
2125
|
* @summary Search for text/pattern in files
|
|
@@ -2131,7 +2131,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2131
2131
|
* @throws {RequiredError}
|
|
2132
2132
|
* @memberof ToolboxApi
|
|
2133
2133
|
*/
|
|
2134
|
-
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, {}>>;
|
|
2135
2135
|
/**
|
|
2136
2136
|
* Get status of all VNC desktop processes
|
|
2137
2137
|
* @summary Get computer use status
|
|
@@ -2141,7 +2141,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2141
2141
|
* @throws {RequiredError}
|
|
2142
2142
|
* @memberof ToolboxApi
|
|
2143
2143
|
*/
|
|
2144
|
-
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, {}>>;
|
|
2145
2145
|
/**
|
|
2146
2146
|
* Get information about displays
|
|
2147
2147
|
* @summary Get display info
|
|
@@ -2151,7 +2151,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2151
2151
|
* @throws {RequiredError}
|
|
2152
2152
|
* @memberof ToolboxApi
|
|
2153
2153
|
*/
|
|
2154
|
-
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, {}>>;
|
|
2155
2155
|
/**
|
|
2156
2156
|
* Get file info inside sandbox
|
|
2157
2157
|
* @summary Get file info
|
|
@@ -2162,7 +2162,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2162
2162
|
* @throws {RequiredError}
|
|
2163
2163
|
* @memberof ToolboxApi
|
|
2164
2164
|
*/
|
|
2165
|
-
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, {}>>;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* Get current mouse cursor position
|
|
2168
2168
|
* @summary Get mouse position
|
|
@@ -2172,7 +2172,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2172
2172
|
* @throws {RequiredError}
|
|
2173
2173
|
* @memberof ToolboxApi
|
|
2174
2174
|
*/
|
|
2175
|
-
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, {}>>;
|
|
2176
2176
|
/**
|
|
2177
2177
|
* Get error logs for a specific VNC process
|
|
2178
2178
|
* @summary Get process errors
|
|
@@ -2183,7 +2183,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2183
2183
|
* @throws {RequiredError}
|
|
2184
2184
|
* @memberof ToolboxApi
|
|
2185
2185
|
*/
|
|
2186
|
-
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, {}>>;
|
|
2187
2187
|
/**
|
|
2188
2188
|
* Get logs for a specific VNC process
|
|
2189
2189
|
* @summary Get process logs
|
|
@@ -2194,7 +2194,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2194
2194
|
* @throws {RequiredError}
|
|
2195
2195
|
* @memberof ToolboxApi
|
|
2196
2196
|
*/
|
|
2197
|
-
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, {}>>;
|
|
2198
2198
|
/**
|
|
2199
2199
|
* Get status of a specific VNC process
|
|
2200
2200
|
* @summary Get process status
|
|
@@ -2205,7 +2205,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2205
2205
|
* @throws {RequiredError}
|
|
2206
2206
|
* @memberof ToolboxApi
|
|
2207
2207
|
*/
|
|
2208
|
-
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, {}>>;
|
|
2209
2209
|
/**
|
|
2210
2210
|
*
|
|
2211
2211
|
* @summary Get sandbox project dir
|
|
@@ -2216,7 +2216,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2216
2216
|
* @throws {RequiredError}
|
|
2217
2217
|
* @memberof ToolboxApi
|
|
2218
2218
|
*/
|
|
2219
|
-
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, {}>>;
|
|
2220
2220
|
/**
|
|
2221
2221
|
* Get session by ID
|
|
2222
2222
|
* @summary Get session
|
|
@@ -2227,7 +2227,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2227
2227
|
* @throws {RequiredError}
|
|
2228
2228
|
* @memberof ToolboxApi
|
|
2229
2229
|
*/
|
|
2230
|
-
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, {}>>;
|
|
2231
2231
|
/**
|
|
2232
2232
|
* Get session command by ID
|
|
2233
2233
|
* @summary Get session command
|
|
@@ -2239,7 +2239,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2239
2239
|
* @throws {RequiredError}
|
|
2240
2240
|
* @memberof ToolboxApi
|
|
2241
2241
|
*/
|
|
2242
|
-
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, {}>>;
|
|
2243
2243
|
/**
|
|
2244
2244
|
* Get logs for a specific command in a session
|
|
2245
2245
|
* @summary Get command logs
|
|
@@ -2252,7 +2252,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2252
2252
|
* @throws {RequiredError}
|
|
2253
2253
|
* @memberof ToolboxApi
|
|
2254
2254
|
*/
|
|
2255
|
-
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
2256
|
/**
|
|
2257
2257
|
*
|
|
2258
2258
|
* @summary Get sandbox user home dir
|
|
@@ -2262,7 +2262,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2262
2262
|
* @throws {RequiredError}
|
|
2263
2263
|
* @memberof ToolboxApi
|
|
2264
2264
|
*/
|
|
2265
|
-
getUserHomeDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any>>;
|
|
2265
|
+
getUserHomeDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserHomeDirResponse, any, {}>>;
|
|
2266
2266
|
/**
|
|
2267
2267
|
* Get list of open windows
|
|
2268
2268
|
* @summary Get windows
|
|
@@ -2272,7 +2272,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2272
2272
|
* @throws {RequiredError}
|
|
2273
2273
|
* @memberof ToolboxApi
|
|
2274
2274
|
*/
|
|
2275
|
-
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
2276
|
/**
|
|
2277
2277
|
*
|
|
2278
2278
|
* @summary Get sandbox work-dir
|
|
@@ -2282,7 +2282,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2282
2282
|
* @throws {RequiredError}
|
|
2283
2283
|
* @memberof ToolboxApi
|
|
2284
2284
|
*/
|
|
2285
|
-
getWorkDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any>>;
|
|
2285
|
+
getWorkDir(sandboxId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkDirResponse, any, {}>>;
|
|
2286
2286
|
/**
|
|
2287
2287
|
* Add files to git commit
|
|
2288
2288
|
* @summary Add files
|
|
@@ -2293,7 +2293,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2293
2293
|
* @throws {RequiredError}
|
|
2294
2294
|
* @memberof ToolboxApi
|
|
2295
2295
|
*/
|
|
2296
|
-
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, {}>>;
|
|
2297
2297
|
/**
|
|
2298
2298
|
* Checkout branch or commit in git repository
|
|
2299
2299
|
* @summary Checkout branch
|
|
@@ -2304,7 +2304,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2304
2304
|
* @throws {RequiredError}
|
|
2305
2305
|
* @memberof ToolboxApi
|
|
2306
2306
|
*/
|
|
2307
|
-
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, {}>>;
|
|
2308
2308
|
/**
|
|
2309
2309
|
* Clone git repository
|
|
2310
2310
|
* @summary Clone repository
|
|
@@ -2315,7 +2315,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2315
2315
|
* @throws {RequiredError}
|
|
2316
2316
|
* @memberof ToolboxApi
|
|
2317
2317
|
*/
|
|
2318
|
-
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, {}>>;
|
|
2319
2319
|
/**
|
|
2320
2320
|
* Commit changes to git repository
|
|
2321
2321
|
* @summary Commit changes
|
|
@@ -2326,7 +2326,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2326
2326
|
* @throws {RequiredError}
|
|
2327
2327
|
* @memberof ToolboxApi
|
|
2328
2328
|
*/
|
|
2329
|
-
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, {}>>;
|
|
2330
2330
|
/**
|
|
2331
2331
|
* Create branch on git repository
|
|
2332
2332
|
* @summary Create branch
|
|
@@ -2337,7 +2337,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2337
2337
|
* @throws {RequiredError}
|
|
2338
2338
|
* @memberof ToolboxApi
|
|
2339
2339
|
*/
|
|
2340
|
-
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, {}>>;
|
|
2341
2341
|
/**
|
|
2342
2342
|
* Delete branch on git repository
|
|
2343
2343
|
* @summary Delete branch
|
|
@@ -2348,7 +2348,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2348
2348
|
* @throws {RequiredError}
|
|
2349
2349
|
* @memberof ToolboxApi
|
|
2350
2350
|
*/
|
|
2351
|
-
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, {}>>;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* Get commit history from git repository
|
|
2354
2354
|
* @summary Get commit history
|
|
@@ -2359,7 +2359,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2359
2359
|
* @throws {RequiredError}
|
|
2360
2360
|
* @memberof ToolboxApi
|
|
2361
2361
|
*/
|
|
2362
|
-
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, {}>>;
|
|
2363
2363
|
/**
|
|
2364
2364
|
* Get status from git repository
|
|
2365
2365
|
* @summary Get git status
|
|
@@ -2370,7 +2370,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2370
2370
|
* @throws {RequiredError}
|
|
2371
2371
|
* @memberof ToolboxApi
|
|
2372
2372
|
*/
|
|
2373
|
-
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, {}>>;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* Get branch list from git repository
|
|
2376
2376
|
* @summary Get branch list
|
|
@@ -2381,7 +2381,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2381
2381
|
* @throws {RequiredError}
|
|
2382
2382
|
* @memberof ToolboxApi
|
|
2383
2383
|
*/
|
|
2384
|
-
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, {}>>;
|
|
2385
2385
|
/**
|
|
2386
2386
|
* Pull changes from remote
|
|
2387
2387
|
* @summary Pull changes
|
|
@@ -2392,7 +2392,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2392
2392
|
* @throws {RequiredError}
|
|
2393
2393
|
* @memberof ToolboxApi
|
|
2394
2394
|
*/
|
|
2395
|
-
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, {}>>;
|
|
2396
2396
|
/**
|
|
2397
2397
|
* Push changes to remote
|
|
2398
2398
|
* @summary Push changes
|
|
@@ -2403,7 +2403,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2403
2403
|
* @throws {RequiredError}
|
|
2404
2404
|
* @memberof ToolboxApi
|
|
2405
2405
|
*/
|
|
2406
|
-
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, {}>>;
|
|
2407
2407
|
/**
|
|
2408
2408
|
*
|
|
2409
2409
|
* @summary List files
|
|
@@ -2414,7 +2414,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2414
2414
|
* @throws {RequiredError}
|
|
2415
2415
|
* @memberof ToolboxApi
|
|
2416
2416
|
*/
|
|
2417
|
-
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, {}>>;
|
|
2418
2418
|
/**
|
|
2419
2419
|
* List all active sessions in the sandbox
|
|
2420
2420
|
* @summary List sessions
|
|
@@ -2424,7 +2424,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2424
2424
|
* @throws {RequiredError}
|
|
2425
2425
|
* @memberof ToolboxApi
|
|
2426
2426
|
*/
|
|
2427
|
-
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, {}>>;
|
|
2428
2428
|
/**
|
|
2429
2429
|
* The Completion request is sent from the client to the server to compute completion items at a given cursor position.
|
|
2430
2430
|
* @summary Get Lsp Completions
|
|
@@ -2435,7 +2435,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2435
2435
|
* @throws {RequiredError}
|
|
2436
2436
|
* @memberof ToolboxApi
|
|
2437
2437
|
*/
|
|
2438
|
-
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, {}>>;
|
|
2439
2439
|
/**
|
|
2440
2440
|
* The document close notification is sent from the client to the server when the document got closed in the client.
|
|
2441
2441
|
* @summary Call Lsp DidClose
|
|
@@ -2446,7 +2446,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2446
2446
|
* @throws {RequiredError}
|
|
2447
2447
|
* @memberof ToolboxApi
|
|
2448
2448
|
*/
|
|
2449
|
-
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, {}>>;
|
|
2450
2450
|
/**
|
|
2451
2451
|
* The document open notification is sent from the client to the server to signal newly opened text documents.
|
|
2452
2452
|
* @summary Call Lsp DidOpen
|
|
@@ -2457,7 +2457,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2457
2457
|
* @throws {RequiredError}
|
|
2458
2458
|
* @memberof ToolboxApi
|
|
2459
2459
|
*/
|
|
2460
|
-
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, {}>>;
|
|
2461
2461
|
/**
|
|
2462
2462
|
* The document symbol request is sent from the client to the server.
|
|
2463
2463
|
* @summary Call Lsp DocumentSymbols
|
|
@@ -2470,7 +2470,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2470
2470
|
* @throws {RequiredError}
|
|
2471
2471
|
* @memberof ToolboxApi
|
|
2472
2472
|
*/
|
|
2473
|
-
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, {}>>;
|
|
2474
2474
|
/**
|
|
2475
2475
|
* Start Lsp server process inside sandbox project
|
|
2476
2476
|
* @summary Start Lsp server
|
|
@@ -2481,7 +2481,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2481
2481
|
* @throws {RequiredError}
|
|
2482
2482
|
* @memberof ToolboxApi
|
|
2483
2483
|
*/
|
|
2484
|
-
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, {}>>;
|
|
2485
2485
|
/**
|
|
2486
2486
|
* Stop Lsp server process inside sandbox project
|
|
2487
2487
|
* @summary Stop Lsp server
|
|
@@ -2492,7 +2492,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2492
2492
|
* @throws {RequiredError}
|
|
2493
2493
|
* @memberof ToolboxApi
|
|
2494
2494
|
*/
|
|
2495
|
-
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, {}>>;
|
|
2496
2496
|
/**
|
|
2497
2497
|
* The workspace symbol request is sent from the client to the server to list project-wide symbols matching the query string.
|
|
2498
2498
|
* @summary Call Lsp WorkspaceSymbols
|
|
@@ -2505,7 +2505,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2505
2505
|
* @throws {RequiredError}
|
|
2506
2506
|
* @memberof ToolboxApi
|
|
2507
2507
|
*/
|
|
2508
|
-
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, {}>>;
|
|
2509
2509
|
/**
|
|
2510
2510
|
* Move file inside sandbox
|
|
2511
2511
|
* @summary Move file
|
|
@@ -2517,7 +2517,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2517
2517
|
* @throws {RequiredError}
|
|
2518
2518
|
* @memberof ToolboxApi
|
|
2519
2519
|
*/
|
|
2520
|
-
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, {}>>;
|
|
2521
2521
|
/**
|
|
2522
2522
|
* Move mouse cursor to specified coordinates
|
|
2523
2523
|
* @summary Move mouse
|
|
@@ -2528,7 +2528,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2528
2528
|
* @throws {RequiredError}
|
|
2529
2529
|
* @memberof ToolboxApi
|
|
2530
2530
|
*/
|
|
2531
|
-
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, {}>>;
|
|
2532
2532
|
/**
|
|
2533
2533
|
* Press a hotkey combination
|
|
2534
2534
|
* @summary Press hotkey
|
|
@@ -2539,7 +2539,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2539
2539
|
* @throws {RequiredError}
|
|
2540
2540
|
* @memberof ToolboxApi
|
|
2541
2541
|
*/
|
|
2542
|
-
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, {}>>;
|
|
2543
2543
|
/**
|
|
2544
2544
|
* Press a key with optional modifiers
|
|
2545
2545
|
* @summary Press key
|
|
@@ -2550,7 +2550,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2550
2550
|
* @throws {RequiredError}
|
|
2551
2551
|
* @memberof ToolboxApi
|
|
2552
2552
|
*/
|
|
2553
|
-
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, {}>>;
|
|
2554
2554
|
/**
|
|
2555
2555
|
* Replace text/pattern in multiple files inside sandbox
|
|
2556
2556
|
* @summary Replace in files
|
|
@@ -2561,7 +2561,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2561
2561
|
* @throws {RequiredError}
|
|
2562
2562
|
* @memberof ToolboxApi
|
|
2563
2563
|
*/
|
|
2564
|
-
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, {}>>;
|
|
2565
2565
|
/**
|
|
2566
2566
|
* Restart a specific VNC process
|
|
2567
2567
|
* @summary Restart process
|
|
@@ -2572,7 +2572,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2572
2572
|
* @throws {RequiredError}
|
|
2573
2573
|
* @memberof ToolboxApi
|
|
2574
2574
|
*/
|
|
2575
|
-
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, {}>>;
|
|
2576
2576
|
/**
|
|
2577
2577
|
* Scroll mouse at specified coordinates
|
|
2578
2578
|
* @summary Scroll mouse
|
|
@@ -2583,7 +2583,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2583
2583
|
* @throws {RequiredError}
|
|
2584
2584
|
* @memberof ToolboxApi
|
|
2585
2585
|
*/
|
|
2586
|
-
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, {}>>;
|
|
2587
2587
|
/**
|
|
2588
2588
|
* Search for files inside sandbox
|
|
2589
2589
|
* @summary Search files
|
|
@@ -2595,7 +2595,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2595
2595
|
* @throws {RequiredError}
|
|
2596
2596
|
* @memberof ToolboxApi
|
|
2597
2597
|
*/
|
|
2598
|
-
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, {}>>;
|
|
2599
2599
|
/**
|
|
2600
2600
|
* Set file owner/group/permissions inside sandbox
|
|
2601
2601
|
* @summary Set file permissions
|
|
@@ -2609,7 +2609,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2609
2609
|
* @throws {RequiredError}
|
|
2610
2610
|
* @memberof ToolboxApi
|
|
2611
2611
|
*/
|
|
2612
|
-
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, {}>>;
|
|
2613
2613
|
/**
|
|
2614
2614
|
* Start all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2615
2615
|
* @summary Start computer use processes
|
|
@@ -2619,7 +2619,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2619
2619
|
* @throws {RequiredError}
|
|
2620
2620
|
* @memberof ToolboxApi
|
|
2621
2621
|
*/
|
|
2622
|
-
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, {}>>;
|
|
2623
2623
|
/**
|
|
2624
2624
|
* Stop all VNC desktop processes (Xvfb, xfce4, x11vnc, novnc)
|
|
2625
2625
|
* @summary Stop computer use processes
|
|
@@ -2629,7 +2629,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2629
2629
|
* @throws {RequiredError}
|
|
2630
2630
|
* @memberof ToolboxApi
|
|
2631
2631
|
*/
|
|
2632
|
-
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, {}>>;
|
|
2633
2633
|
/**
|
|
2634
2634
|
* Take a compressed screenshot of a specific region
|
|
2635
2635
|
* @summary Take compressed region screenshot
|
|
@@ -2647,7 +2647,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2647
2647
|
* @throws {RequiredError}
|
|
2648
2648
|
* @memberof ToolboxApi
|
|
2649
2649
|
*/
|
|
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>>;
|
|
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, {}>>;
|
|
2651
2651
|
/**
|
|
2652
2652
|
* Take a compressed screenshot with format, quality, and scale options
|
|
2653
2653
|
* @summary Take compressed screenshot
|
|
@@ -2661,7 +2661,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2661
2661
|
* @throws {RequiredError}
|
|
2662
2662
|
* @memberof ToolboxApi
|
|
2663
2663
|
*/
|
|
2664
|
-
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, {}>>;
|
|
2665
2665
|
/**
|
|
2666
2666
|
* Take a screenshot of a specific region
|
|
2667
2667
|
* @summary Take region screenshot
|
|
@@ -2676,7 +2676,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2676
2676
|
* @throws {RequiredError}
|
|
2677
2677
|
* @memberof ToolboxApi
|
|
2678
2678
|
*/
|
|
2679
|
-
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, {}>>;
|
|
2680
2680
|
/**
|
|
2681
2681
|
* Take a screenshot of the entire screen
|
|
2682
2682
|
* @summary Take screenshot
|
|
@@ -2687,7 +2687,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2687
2687
|
* @throws {RequiredError}
|
|
2688
2688
|
* @memberof ToolboxApi
|
|
2689
2689
|
*/
|
|
2690
|
-
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, {}>>;
|
|
2691
2691
|
/**
|
|
2692
2692
|
* Type text using keyboard
|
|
2693
2693
|
* @summary Type text
|
|
@@ -2698,7 +2698,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2698
2698
|
* @throws {RequiredError}
|
|
2699
2699
|
* @memberof ToolboxApi
|
|
2700
2700
|
*/
|
|
2701
|
-
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, {}>>;
|
|
2702
2702
|
/**
|
|
2703
2703
|
* Upload file inside sandbox
|
|
2704
2704
|
* @summary Upload file
|
|
@@ -2711,7 +2711,7 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2711
2711
|
* @throws {RequiredError}
|
|
2712
2712
|
* @memberof ToolboxApi
|
|
2713
2713
|
*/
|
|
2714
|
-
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, {}>>;
|
|
2715
2715
|
/**
|
|
2716
2716
|
* Upload multiple files inside sandbox
|
|
2717
2717
|
* @summary Upload multiple files
|
|
@@ -2721,5 +2721,5 @@ export declare class ToolboxApi extends BaseAPI {
|
|
|
2721
2721
|
* @throws {RequiredError}
|
|
2722
2722
|
* @memberof ToolboxApi
|
|
2723
2723
|
*/
|
|
2724
|
-
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, {}>>;
|
|
2725
2725
|
}
|
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
|
}
|