@daytonaio/api-client 0.112.2 → 0.113.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api/preview-api.d.ts +3 -3
- package/src/api/toolbox-api.d.ts +824 -564
- package/src/api/toolbox-api.js +1245 -985
- package/src/api/toolbox-api.js.map +1 -1
- package/src/models/daytona-configuration.d.ts +6 -0
package/package.json
CHANGED
package/src/api/preview-api.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ export declare const PreviewApiFp: (configuration?: Configuration) => {
|
|
|
55
55
|
* @param {*} [options] Override http request option.
|
|
56
56
|
* @throws {RequiredError}
|
|
57
57
|
*/
|
|
58
|
-
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
58
|
+
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
61
|
* @summary Check if sandbox is public
|
|
@@ -86,7 +86,7 @@ export declare const PreviewApiFactory: (configuration?: Configuration, basePath
|
|
|
86
86
|
* @param {*} [options] Override http request option.
|
|
87
87
|
* @throws {RequiredError}
|
|
88
88
|
*/
|
|
89
|
-
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
89
|
+
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
90
90
|
/**
|
|
91
91
|
*
|
|
92
92
|
* @summary Check if sandbox is public
|
|
@@ -120,7 +120,7 @@ export declare class PreviewApi extends BaseAPI {
|
|
|
120
120
|
* @throws {RequiredError}
|
|
121
121
|
* @memberof PreviewApi
|
|
122
122
|
*/
|
|
123
|
-
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
123
|
+
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
124
124
|
/**
|
|
125
125
|
*
|
|
126
126
|
* @summary Check if sandbox is public
|