@daytonaio/api-client 0.107.0-rc.2 → 0.108.0-rc1
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
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
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-runner.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-runner.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;
|
|
1
|
+
{"version":3,"file":"create-runner.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/create-runner.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;AA8FP,QAAA,qBAAqB,GAAG;IACnC,KAAK,EAAE,OAAO;IACd,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACN,CAAA"}
|
|
@@ -62,6 +62,12 @@ export interface DaytonaConfiguration {
|
|
|
62
62
|
* @memberof DaytonaConfiguration
|
|
63
63
|
*/
|
|
64
64
|
proxyTemplateUrl: string;
|
|
65
|
+
/**
|
|
66
|
+
* Toolbox template URL
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof DaytonaConfiguration
|
|
69
|
+
*/
|
|
70
|
+
proxyToolboxUrl: string;
|
|
65
71
|
/**
|
|
66
72
|
* Default snapshot for sandboxes
|
|
67
73
|
* @type {string}
|
package/src/models/runner.d.ts
CHANGED
|
@@ -83,18 +83,6 @@ export interface Runner {
|
|
|
83
83
|
* @memberof Runner
|
|
84
84
|
*/
|
|
85
85
|
class: SandboxClass;
|
|
86
|
-
/**
|
|
87
|
-
* The current usage of the runner
|
|
88
|
-
* @type {number}
|
|
89
|
-
* @memberof Runner
|
|
90
|
-
*/
|
|
91
|
-
used: number;
|
|
92
|
-
/**
|
|
93
|
-
* The capacity of the runner
|
|
94
|
-
* @type {number}
|
|
95
|
-
* @memberof Runner
|
|
96
|
-
*/
|
|
97
|
-
capacity: number;
|
|
98
86
|
/**
|
|
99
87
|
* Current CPU usage percentage
|
|
100
88
|
* @type {number}
|