@daytonaio/api-client 0.189.0 → 0.190.1
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
|
@@ -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/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"}
|
|
@@ -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
|
}
|