@daytonaio/api-client 0.189.0 → 0.190.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.189.0",
3
+ "version": "0.190.0",
4
4
  "description": "OpenAPI client for @daytona/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -19,4 +19,8 @@ export interface CreateOrganizationQuota {
19
19
  'snapshotQuota'?: number;
20
20
  'maxSnapshotSize'?: number;
21
21
  'volumeQuota'?: number;
22
+ /**
23
+ * Maximum number of snapshots an organization can process (building or pulling) concurrently. Excess are queued. <= 0 means unlimited.
24
+ */
25
+ 'maxConcurrentSnapshotProcessing'?: number;
22
26
  }
@@ -49,6 +49,10 @@ export interface CreateSandbox {
49
49
  * Comma-separated list of allowed CIDR network addresses for the sandbox
50
50
  */
51
51
  'networkAllowList'?: string;
52
+ /**
53
+ * Comma-separated list of allowed domains for the sandbox
54
+ */
55
+ 'domainAllowList'?: string;
52
56
  /**
53
57
  * The target (region) where the sandbox will be created
54
58
  */
@@ -76,6 +76,10 @@ export interface DaytonaConfiguration {
76
76
  * Analytics API URL
77
77
  */
78
78
  'analyticsApiUrl'?: string;
79
+ /**
80
+ * Stripe publishable key for client-side Stripe.js
81
+ */
82
+ 'stripePublishableKey'?: string;
79
83
  /**
80
84
  * SSH Gateway command
81
85
  */
@@ -27,4 +27,8 @@ export interface RateLimitConfig {
27
27
  * Sandbox lifecycle rate limit
28
28
  */
29
29
  'sandboxLifecycle'?: RateLimitEntry;
30
+ /**
31
+ * Sandbox list rate limit
32
+ */
33
+ 'sandboxList'?: RateLimitEntry;
30
34
  }
@@ -142,6 +142,11 @@ export interface RunnerFull {
142
142
  * @deprecated
143
143
  */
144
144
  'appVersion'?: string;
145
+ /**
146
+ * Deprecated runner class property
147
+ * @deprecated
148
+ */
149
+ 'class'?: string;
145
150
  /**
146
151
  * The API key for the runner
147
152
  */
@@ -141,4 +141,9 @@ export interface Runner {
141
141
  * @deprecated
142
142
  */
143
143
  'appVersion'?: string;
144
+ /**
145
+ * Deprecated runner class property
146
+ * @deprecated
147
+ */
148
+ 'class'?: string;
144
149
  }
@@ -59,6 +59,10 @@ export interface Sandbox {
59
59
  * Comma-separated list of allowed CIDR network addresses for the sandbox
60
60
  */
61
61
  'networkAllowList'?: string;
62
+ /**
63
+ * Comma-separated list of allowed domains for the sandbox
64
+ */
65
+ 'domainAllowList'?: string;
62
66
  /**
63
67
  * The target environment for the sandbox
64
68
  */
@@ -1 +1 @@
1
- {"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/sandbox.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAkKU,QAAA,sBAAsB,GAAG;IAClC,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,YAAY;IACzB,SAAS,EAAE,WAAW;IACtB,KAAK,EAAE,OAAO;IACd,wBAAwB,EAAE,UAAU;CAC9B,CAAC;AAGE,QAAA,uBAAuB,GAAG;IACnC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,wBAAwB,EAAE,UAAU;CAC9B,CAAC"}
1
+ {"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/sandbox.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAsKU,QAAA,sBAAsB,GAAG;IAClC,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,YAAY;IACzB,SAAS,EAAE,WAAW;IACtB,KAAK,EAAE,OAAO;IACd,wBAAwB,EAAE,UAAU;CAC9B,CAAC;AAGE,QAAA,uBAAuB,GAAG;IACnC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,WAAW;IACtB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,wBAAwB,EAAE,UAAU;CAC9B,CAAC"}
@@ -26,4 +26,8 @@ export interface UpdateOrganizationQuota {
26
26
  * Time in minutes before an unused snapshot is deactivated
27
27
  */
28
28
  'snapshotDeactivationTimeoutMinutes': number | null;
29
+ /**
30
+ * Maximum number of snapshots an organization can process (building or pulling) concurrently. Excess are queued. <= 0 means unlimited.
31
+ */
32
+ 'maxConcurrentSnapshotProcessing': number | null;
29
33
  }
@@ -18,4 +18,8 @@ export interface UpdateSandboxNetworkSettings {
18
18
  * Comma-separated list of allowed CIDR network addresses for the sandbox
19
19
  */
20
20
  'networkAllowList'?: string;
21
+ /**
22
+ * Comma-separated list of allowed domains for the sandbox
23
+ */
24
+ 'domainAllowList'?: string;
21
25
  }