@daytonaio/api-client 0.116.0 → 0.117.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
|
@@ -129,4 +129,22 @@ export interface Organization {
|
|
|
129
129
|
* @memberof Organization
|
|
130
130
|
*/
|
|
131
131
|
defaultRegion: string;
|
|
132
|
+
/**
|
|
133
|
+
* Authenticated rate limit per minute
|
|
134
|
+
* @type {number}
|
|
135
|
+
* @memberof Organization
|
|
136
|
+
*/
|
|
137
|
+
authenticatedRateLimit: number | null;
|
|
138
|
+
/**
|
|
139
|
+
* Sandbox create rate limit per minute
|
|
140
|
+
* @type {number}
|
|
141
|
+
* @memberof Organization
|
|
142
|
+
*/
|
|
143
|
+
sandboxCreateRateLimit: number | null;
|
|
144
|
+
/**
|
|
145
|
+
* Sandbox lifecycle rate limit per minute
|
|
146
|
+
* @type {number}
|
|
147
|
+
* @memberof Organization
|
|
148
|
+
*/
|
|
149
|
+
sandboxLifecycleRateLimit: number | null;
|
|
132
150
|
}
|
|
@@ -69,4 +69,22 @@ export interface UpdateOrganizationQuota {
|
|
|
69
69
|
* @memberof UpdateOrganizationQuota
|
|
70
70
|
*/
|
|
71
71
|
volumeQuota: number | null;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof UpdateOrganizationQuota
|
|
76
|
+
*/
|
|
77
|
+
authenticatedRateLimit: number | null;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {number}
|
|
81
|
+
* @memberof UpdateOrganizationQuota
|
|
82
|
+
*/
|
|
83
|
+
sandboxCreateRateLimit: number | null;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {number}
|
|
87
|
+
* @memberof UpdateOrganizationQuota
|
|
88
|
+
*/
|
|
89
|
+
sandboxLifecycleRateLimit: number | null;
|
|
72
90
|
}
|