@daytonaio/api-client 0.120.0 → 0.121.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.
Files changed (37) hide show
  1. package/package.json +1 -1
  2. package/src/api/organizations-api.d.ts +117 -3
  3. package/src/api/organizations-api.js +232 -0
  4. package/src/api/organizations-api.js.map +1 -1
  5. package/src/api/regions-api.d.ts +78 -0
  6. package/src/api/regions-api.js +139 -0
  7. package/src/api/regions-api.js.map +1 -0
  8. package/src/api/sandbox-api.d.ts +0 -34
  9. package/src/api/sandbox-api.js +0 -69
  10. package/src/api/sandbox-api.js.map +1 -1
  11. package/src/api.d.ts +1 -0
  12. package/src/api.js +1 -0
  13. package/src/api.js.map +1 -1
  14. package/src/models/create-organization.d.ts +6 -0
  15. package/src/models/create-user.d.ts +6 -0
  16. package/src/models/create-user.js.map +1 -1
  17. package/src/models/index.d.ts +4 -0
  18. package/src/models/index.js +4 -0
  19. package/src/models/index.js.map +1 -1
  20. package/src/models/organization-usage-overview.d.ts +3 -32
  21. package/src/models/organization-usage-overview.js +12 -0
  22. package/src/models/organization-usage-overview.js.map +1 -1
  23. package/src/models/organization.d.ts +2 -20
  24. package/src/models/region-quota.d.ts +48 -0
  25. package/src/models/region-quota.js +4 -0
  26. package/src/models/region-quota.js.map +1 -0
  27. package/src/models/region-usage-overview.d.ts +60 -0
  28. package/src/models/region-usage-overview.js +4 -0
  29. package/src/models/region-usage-overview.js.map +1 -0
  30. package/src/models/region.d.ts +24 -0
  31. package/src/models/update-organization-default-region.d.ts +24 -0
  32. package/src/models/update-organization-default-region.js +4 -0
  33. package/src/models/update-organization-default-region.js.map +1 -0
  34. package/src/models/update-organization-quota.d.ts +0 -18
  35. package/src/models/update-organization-region-quota.d.ts +36 -0
  36. package/src/models/update-organization-region-quota.js +4 -0
  37. package/src/models/update-organization-region-quota.js.map +1 -0
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=region-quota.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"region-quota.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/region-quota.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface RegionUsageOverview
16
+ */
17
+ export interface RegionUsageOverview {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof RegionUsageOverview
22
+ */
23
+ regionId: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof RegionUsageOverview
28
+ */
29
+ totalCpuQuota: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof RegionUsageOverview
34
+ */
35
+ currentCpuUsage: number;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof RegionUsageOverview
40
+ */
41
+ totalMemoryQuota: number;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof RegionUsageOverview
46
+ */
47
+ currentMemoryUsage: number;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof RegionUsageOverview
52
+ */
53
+ totalDiskQuota: number;
54
+ /**
55
+ *
56
+ * @type {number}
57
+ * @memberof RegionUsageOverview
58
+ */
59
+ currentDiskUsage: number;
60
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=region-usage-overview.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"region-usage-overview.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/region-usage-overview.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
@@ -15,10 +15,34 @@
15
15
  * @interface Region
16
16
  */
17
17
  export interface Region {
18
+ /**
19
+ * Region ID
20
+ * @type {string}
21
+ * @memberof Region
22
+ */
23
+ id: string;
18
24
  /**
19
25
  * Region name
20
26
  * @type {string}
21
27
  * @memberof Region
22
28
  */
23
29
  name: string;
30
+ /**
31
+ * Organization ID
32
+ * @type {string}
33
+ * @memberof Region
34
+ */
35
+ organizationId?: string | null;
36
+ /**
37
+ * Creation timestamp
38
+ * @type {string}
39
+ * @memberof Region
40
+ */
41
+ createdAt: string;
42
+ /**
43
+ * Last update timestamp
44
+ * @type {string}
45
+ * @memberof Region
46
+ */
47
+ updatedAt: string;
24
48
  }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdateOrganizationDefaultRegion
16
+ */
17
+ export interface UpdateOrganizationDefaultRegion {
18
+ /**
19
+ * The ID of the default region for the organization
20
+ * @type {string}
21
+ * @memberof UpdateOrganizationDefaultRegion
22
+ */
23
+ defaultRegionId: string;
24
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=update-organization-default-region.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-organization-default-region.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/update-organization-default-region.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
@@ -15,24 +15,6 @@
15
15
  * @interface UpdateOrganizationQuota
16
16
  */
17
17
  export interface UpdateOrganizationQuota {
18
- /**
19
- *
20
- * @type {number}
21
- * @memberof UpdateOrganizationQuota
22
- */
23
- totalCpuQuota: number | null;
24
- /**
25
- *
26
- * @type {number}
27
- * @memberof UpdateOrganizationQuota
28
- */
29
- totalMemoryQuota: number | null;
30
- /**
31
- *
32
- * @type {number}
33
- * @memberof UpdateOrganizationQuota
34
- */
35
- totalDiskQuota: number | null;
36
18
  /**
37
19
  *
38
20
  * @type {number}
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Daytona
3
+ * Daytona AI platform API Docs
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: support@daytona.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdateOrganizationRegionQuota
16
+ */
17
+ export interface UpdateOrganizationRegionQuota {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof UpdateOrganizationRegionQuota
22
+ */
23
+ totalCpuQuota: number | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof UpdateOrganizationRegionQuota
28
+ */
29
+ totalMemoryQuota: number | null;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof UpdateOrganizationRegionQuota
34
+ */
35
+ totalDiskQuota: number | null;
36
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=update-organization-region-quota.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-organization-region-quota.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/update-organization-region-quota.ts"],"names":[],"mappings":";AAAA,oBAAoB"}