@daytonaio/api-client 0.190.0-alpha.2 → 0.190.0-alpha.3
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-organization-quota.d.ts +4 -0
- package/src/models/create-sandbox.d.ts +4 -0
- package/src/models/daytona-configuration.d.ts +4 -0
- package/src/models/rate-limit-config.d.ts +4 -0
- package/src/models/runner-full.d.ts +5 -0
- package/src/models/runner.d.ts +5 -0
- package/src/models/sandbox.d.ts +4 -0
- package/src/models/sandbox.js.map +1 -1
- package/src/models/update-organization-quota.d.ts +4 -0
- package/src/models/update-sandbox-network-settings.d.ts +4 -0
package/package.json
CHANGED
|
@@ -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
|
*/
|
package/src/models/runner.d.ts
CHANGED
package/src/models/sandbox.d.ts
CHANGED
|
@@ -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;;;
|
|
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
|
}
|