@daytonaio/api-client 0.149.0-alpha.1 → 0.149.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.149.0-alpha.1",
3
+ "version": "0.149.0",
4
4
  "description": "OpenAPI client for @daytonaio/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -99,6 +99,12 @@ export interface Organization {
99
99
  * @memberof Organization
100
100
  */
101
101
  'maxDiskPerSandbox': number;
102
+ /**
103
+ * Time in minutes before an unused snapshot is deactivated
104
+ * @type {number}
105
+ * @memberof Organization
106
+ */
107
+ 'snapshotDeactivationTimeoutMinutes': number;
102
108
  /**
103
109
  * Sandbox default network block all
104
110
  * @type {boolean}
@@ -87,4 +87,10 @@ export interface UpdateOrganizationQuota {
87
87
  * @memberof UpdateOrganizationQuota
88
88
  */
89
89
  'sandboxLifecycleRateLimitTtlSeconds': number | null;
90
+ /**
91
+ * Time in minutes before an unused snapshot is deactivated
92
+ * @type {number}
93
+ * @memberof UpdateOrganizationQuota
94
+ */
95
+ 'snapshotDeactivationTimeoutMinutes': number | null;
90
96
  }