@daytonaio/api-client 0.185.0 → 0.187.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/models/create-sandbox-snapshot.d.ts +4 -0
- package/src/models/runner-class.d.ts +1 -2
- package/src/models/runner-class.js +1 -2
- package/src/models/runner-class.js.map +1 -1
- package/src/models/runner-full.d.ts +2 -1
- package/src/models/runner.d.ts +2 -1
- package/src/models/sandbox-volume.d.ts +1 -1
package/package.json
CHANGED
|
@@ -14,4 +14,8 @@ export interface CreateSandboxSnapshot {
|
|
|
14
14
|
* Name for the new snapshot
|
|
15
15
|
*/
|
|
16
16
|
'name': string;
|
|
17
|
+
/**
|
|
18
|
+
* Include the VM\'s memory in the snapshot. VM sandboxes only. When true the sandbox must be STARTED; when false (default) VM sandboxes must be STOPPED. Container sandboxes do not support memory snapshots.
|
|
19
|
+
*/
|
|
20
|
+
'includeMemory'?: boolean;
|
|
17
21
|
}
|
|
@@ -10,11 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* The class of the runner
|
|
13
|
+
* The class of the runner. Deprecated and always returns \"container\" for backward compatibility - use sandboxClass instead.
|
|
14
14
|
*/
|
|
15
15
|
export declare const RunnerClass: {
|
|
16
16
|
readonly CONTAINER: "container";
|
|
17
|
-
readonly VM: "vm";
|
|
18
17
|
readonly UNKNOWN_DEFAULT_OPEN_API: "11184809";
|
|
19
18
|
};
|
|
20
19
|
export type RunnerClass = typeof RunnerClass[keyof typeof RunnerClass];
|
|
@@ -15,11 +15,10 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.RunnerClass = void 0;
|
|
17
17
|
/**
|
|
18
|
-
* The class of the runner
|
|
18
|
+
* The class of the runner. Deprecated and always returns \"container\" for backward compatibility - use sandboxClass instead.
|
|
19
19
|
*/
|
|
20
20
|
exports.RunnerClass = {
|
|
21
21
|
CONTAINER: 'container',
|
|
22
|
-
VM: 'vm',
|
|
23
22
|
UNKNOWN_DEFAULT_OPEN_API: '11184809',
|
|
24
23
|
};
|
|
25
24
|
//# sourceMappingURL=runner-class.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runner-class.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/runner-class.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAIH;;GAEG;AAEU,QAAA,WAAW,GAAG;IACvB,SAAS,EAAE,WAAW;IACtB,
|
|
1
|
+
{"version":3,"file":"runner-class.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/runner-class.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAIH;;GAEG;AAEU,QAAA,WAAW,GAAG;IACvB,SAAS,EAAE,WAAW;IACtB,wBAAwB,EAAE,UAAU;CAC9B,CAAC"}
|
|
@@ -133,7 +133,8 @@ export interface RunnerFull {
|
|
|
133
133
|
*/
|
|
134
134
|
'apiVersion': string;
|
|
135
135
|
/**
|
|
136
|
-
* The class of the runner
|
|
136
|
+
* The class of the runner. Deprecated and always returns \"container\" for backward compatibility - use sandboxClass instead.
|
|
137
|
+
* @deprecated
|
|
137
138
|
*/
|
|
138
139
|
'runnerClass': RunnerClass;
|
|
139
140
|
/**
|
package/src/models/runner.d.ts
CHANGED
|
@@ -132,7 +132,8 @@ export interface Runner {
|
|
|
132
132
|
*/
|
|
133
133
|
'apiVersion': string;
|
|
134
134
|
/**
|
|
135
|
-
* The class of the runner
|
|
135
|
+
* The class of the runner. Deprecated and always returns \"container\" for backward compatibility - use sandboxClass instead.
|
|
136
|
+
* @deprecated
|
|
136
137
|
*/
|
|
137
138
|
'runnerClass': RunnerClass;
|
|
138
139
|
/**
|