@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/api-client",
3
- "version": "0.185.0",
3
+ "version": "0.187.0",
4
4
  "description": "OpenAPI client for @daytona/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -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,EAAE,EAAE,IAAI;IACR,wBAAwB,EAAE,UAAU;CAC9B,CAAC"}
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
  /**
@@ -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
  /**
@@ -11,7 +11,7 @@
11
11
  */
12
12
  export interface SandboxVolume {
13
13
  /**
14
- * The ID of the volume
14
+ * The ID or name of the volume. Resolved to the volume ID on sandbox create.
15
15
  */
16
16
  'volumeId': string;
17
17
  /**