@daytonaio/api-client 0.9.8 → 0.12.2
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/.openapi-generator/FILES +6 -0
- package/README.md +2 -2
- package/api/docker-registry-api.ts +12 -76
- package/api/images-api.ts +380 -0
- package/api/toolbox-api.ts +169 -0
- package/api.ts +1 -0
- package/dist/api/docker-registry-api.d.ts +16 -44
- package/dist/api/docker-registry-api.js +0 -62
- package/dist/api/images-api.d.ts +184 -0
- package/dist/api/images-api.js +361 -0
- package/dist/api/toolbox-api.d.ts +79 -0
- package/dist/api/toolbox-api.js +159 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/esm/api/docker-registry-api.d.ts +16 -44
- package/dist/esm/api/docker-registry-api.js +0 -62
- package/dist/esm/api/images-api.d.ts +184 -0
- package/dist/esm/api/images-api.js +354 -0
- package/dist/esm/api/toolbox-api.d.ts +79 -0
- package/dist/esm/api/toolbox-api.js +159 -0
- package/dist/esm/api.d.ts +1 -0
- package/dist/esm/api.js +1 -0
- package/dist/esm/models/command.d.ts +2 -8
- package/dist/esm/models/create-docker-registry.d.ts +0 -6
- package/dist/esm/models/create-image.d.ts +30 -0
- package/dist/esm/models/create-image.js +14 -0
- package/dist/esm/models/docker-registry.d.ts +60 -0
- package/dist/esm/models/docker-registry.js +14 -0
- package/dist/esm/models/image-dto.d.ts +93 -0
- package/dist/esm/models/image-dto.js +21 -0
- package/dist/esm/models/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/esm/models/paginated-images-dto.d.ts +43 -0
- package/dist/esm/models/paginated-images-dto.js +14 -0
- package/dist/esm/models/toggle-state.d.ts +24 -0
- package/dist/esm/models/toggle-state.js +14 -0
- package/dist/esm/models/update-docker-registry.d.ts +2 -20
- package/dist/esm/models/usage-overview.d.ts +24 -0
- package/dist/models/command.d.ts +2 -8
- package/dist/models/create-docker-registry.d.ts +0 -6
- package/dist/models/create-image.d.ts +30 -0
- package/dist/models/create-image.js +15 -0
- package/dist/models/docker-registry.d.ts +60 -0
- package/dist/models/docker-registry.js +15 -0
- package/dist/models/image-dto.d.ts +93 -0
- package/dist/models/image-dto.js +24 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/paginated-images-dto.d.ts +43 -0
- package/dist/models/paginated-images-dto.js +15 -0
- package/dist/models/toggle-state.d.ts +24 -0
- package/dist/models/toggle-state.js +15 -0
- package/dist/models/update-docker-registry.d.ts +2 -20
- package/dist/models/usage-overview.d.ts +24 -0
- package/models/command.ts +2 -8
- package/models/create-docker-registry.ts +0 -6
- package/models/create-image.ts +36 -0
- package/models/docker-registry.ts +66 -0
- package/models/image-dto.ts +102 -0
- package/models/index.ts +5 -0
- package/models/paginated-images-dto.ts +51 -0
- package/models/toggle-state.ts +30 -0
- package/models/update-docker-registry.ts +2 -20
- package/models/usage-overview.ts +24 -0
- package/package.json +1 -1
|
@@ -20,23 +20,17 @@ export interface Command {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof Command
|
|
22
22
|
*/
|
|
23
|
-
'
|
|
23
|
+
'id': string;
|
|
24
24
|
/**
|
|
25
25
|
* The command that was executed
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof Command
|
|
28
28
|
*/
|
|
29
29
|
'command': string;
|
|
30
|
-
/**
|
|
31
|
-
* The output of the command
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof Command
|
|
34
|
-
*/
|
|
35
|
-
'output': string;
|
|
36
30
|
/**
|
|
37
31
|
* The exit code of the command
|
|
38
32
|
* @type {number}
|
|
39
33
|
* @memberof Command
|
|
40
34
|
*/
|
|
41
|
-
'exitCode'
|
|
35
|
+
'exitCode'?: number;
|
|
42
36
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Workspaces
|
|
3
|
+
* Daytona Workspaces API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 CreateImage
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateImage {
|
|
18
|
+
/**
|
|
19
|
+
* The name of the image
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateImage
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* The entrypoint command for the image
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateImage
|
|
28
|
+
*/
|
|
29
|
+
'entrypoint'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Workspaces
|
|
3
|
+
* Daytona Workspaces API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 DockerRegistry
|
|
16
|
+
*/
|
|
17
|
+
export interface DockerRegistry {
|
|
18
|
+
/**
|
|
19
|
+
* Registry ID
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DockerRegistry
|
|
22
|
+
*/
|
|
23
|
+
'id': string;
|
|
24
|
+
/**
|
|
25
|
+
* Registry name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DockerRegistry
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Registry URL
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DockerRegistry
|
|
34
|
+
*/
|
|
35
|
+
'url': string;
|
|
36
|
+
/**
|
|
37
|
+
* Registry username
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DockerRegistry
|
|
40
|
+
*/
|
|
41
|
+
'username': string;
|
|
42
|
+
/**
|
|
43
|
+
* Registry project
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DockerRegistry
|
|
46
|
+
*/
|
|
47
|
+
'project': string;
|
|
48
|
+
/**
|
|
49
|
+
* Creation timestamp
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DockerRegistry
|
|
52
|
+
*/
|
|
53
|
+
'createdAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Last update timestamp
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DockerRegistry
|
|
58
|
+
*/
|
|
59
|
+
'updatedAt': string;
|
|
60
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Workspaces
|
|
3
|
+
* Daytona Workspaces API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 ImageDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ImageDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ImageDto
|
|
22
|
+
*/
|
|
23
|
+
'id': string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ImageDto
|
|
28
|
+
*/
|
|
29
|
+
'userId': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ImageDto
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof ImageDto
|
|
40
|
+
*/
|
|
41
|
+
'enabled': boolean;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ImageDto
|
|
46
|
+
*/
|
|
47
|
+
'state': ImageDtoStateEnum;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof ImageDto
|
|
52
|
+
*/
|
|
53
|
+
'size': number | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ImageDto
|
|
58
|
+
*/
|
|
59
|
+
'entrypoint': string | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ImageDto
|
|
64
|
+
*/
|
|
65
|
+
'errorReason': string | null;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof ImageDto
|
|
70
|
+
*/
|
|
71
|
+
'createdAt': string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof ImageDto
|
|
76
|
+
*/
|
|
77
|
+
'updatedAt': string;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof ImageDto
|
|
82
|
+
*/
|
|
83
|
+
'lastUsedAt': string | null;
|
|
84
|
+
}
|
|
85
|
+
export declare const ImageDtoStateEnum: {
|
|
86
|
+
readonly Pending: "pending";
|
|
87
|
+
readonly PullingImage: "pulling_image";
|
|
88
|
+
readonly Validating: "validating";
|
|
89
|
+
readonly Active: "active";
|
|
90
|
+
readonly Error: "error";
|
|
91
|
+
readonly Removing: "removing";
|
|
92
|
+
};
|
|
93
|
+
export type ImageDtoStateEnum = typeof ImageDtoStateEnum[keyof typeof ImageDtoStateEnum];
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export const ImageDtoStateEnum = {
|
|
15
|
+
Pending: 'pending',
|
|
16
|
+
PullingImage: 'pulling_image',
|
|
17
|
+
Validating: 'validating',
|
|
18
|
+
Active: 'active',
|
|
19
|
+
Error: 'error',
|
|
20
|
+
Removing: 'removing'
|
|
21
|
+
};
|
|
@@ -6,10 +6,12 @@ export * from './completion-item';
|
|
|
6
6
|
export * from './completion-list';
|
|
7
7
|
export * from './create-api-key';
|
|
8
8
|
export * from './create-docker-registry';
|
|
9
|
+
export * from './create-image';
|
|
9
10
|
export * from './create-node';
|
|
10
11
|
export * from './create-session-request';
|
|
11
12
|
export * from './create-user';
|
|
12
13
|
export * from './create-workspace';
|
|
14
|
+
export * from './docker-registry';
|
|
13
15
|
export * from './execute-request';
|
|
14
16
|
export * from './execute-response';
|
|
15
17
|
export * from './file-info';
|
|
@@ -22,6 +24,7 @@ export * from './git-commit-request';
|
|
|
22
24
|
export * from './git-commit-response';
|
|
23
25
|
export * from './git-repo-request';
|
|
24
26
|
export * from './git-status';
|
|
27
|
+
export * from './image-dto';
|
|
25
28
|
export * from './list-branch-response';
|
|
26
29
|
export * from './lsp-completion-params';
|
|
27
30
|
export * from './lsp-document-request';
|
|
@@ -29,6 +32,7 @@ export * from './lsp-location';
|
|
|
29
32
|
export * from './lsp-server-request';
|
|
30
33
|
export * from './lsp-symbol';
|
|
31
34
|
export * from './match';
|
|
35
|
+
export * from './paginated-images-dto';
|
|
32
36
|
export * from './position';
|
|
33
37
|
export * from './project-dir-response';
|
|
34
38
|
export * from './range';
|
|
@@ -38,6 +42,7 @@ export * from './search-files-response';
|
|
|
38
42
|
export * from './session';
|
|
39
43
|
export * from './session-execute-request';
|
|
40
44
|
export * from './session-execute-response';
|
|
45
|
+
export * from './toggle-state';
|
|
41
46
|
export * from './update-docker-registry';
|
|
42
47
|
export * from './usage-overview';
|
|
43
48
|
export * from './workspace';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -6,10 +6,12 @@ export * from './completion-item';
|
|
|
6
6
|
export * from './completion-list';
|
|
7
7
|
export * from './create-api-key';
|
|
8
8
|
export * from './create-docker-registry';
|
|
9
|
+
export * from './create-image';
|
|
9
10
|
export * from './create-node';
|
|
10
11
|
export * from './create-session-request';
|
|
11
12
|
export * from './create-user';
|
|
12
13
|
export * from './create-workspace';
|
|
14
|
+
export * from './docker-registry';
|
|
13
15
|
export * from './execute-request';
|
|
14
16
|
export * from './execute-response';
|
|
15
17
|
export * from './file-info';
|
|
@@ -22,6 +24,7 @@ export * from './git-commit-request';
|
|
|
22
24
|
export * from './git-commit-response';
|
|
23
25
|
export * from './git-repo-request';
|
|
24
26
|
export * from './git-status';
|
|
27
|
+
export * from './image-dto';
|
|
25
28
|
export * from './list-branch-response';
|
|
26
29
|
export * from './lsp-completion-params';
|
|
27
30
|
export * from './lsp-document-request';
|
|
@@ -29,6 +32,7 @@ export * from './lsp-location';
|
|
|
29
32
|
export * from './lsp-server-request';
|
|
30
33
|
export * from './lsp-symbol';
|
|
31
34
|
export * from './match';
|
|
35
|
+
export * from './paginated-images-dto';
|
|
32
36
|
export * from './position';
|
|
33
37
|
export * from './project-dir-response';
|
|
34
38
|
export * from './range';
|
|
@@ -38,6 +42,7 @@ export * from './search-files-response';
|
|
|
38
42
|
export * from './session';
|
|
39
43
|
export * from './session-execute-request';
|
|
40
44
|
export * from './session-execute-response';
|
|
45
|
+
export * from './toggle-state';
|
|
41
46
|
export * from './update-docker-registry';
|
|
42
47
|
export * from './usage-overview';
|
|
43
48
|
export * from './workspace';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Workspaces
|
|
3
|
+
* Daytona Workspaces API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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
|
+
import type { ImageDto } from './image-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PaginatedImagesDto
|
|
17
|
+
*/
|
|
18
|
+
export interface PaginatedImagesDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<ImageDto>}
|
|
22
|
+
* @memberof PaginatedImagesDto
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ImageDto>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof PaginatedImagesDto
|
|
29
|
+
*/
|
|
30
|
+
'total': number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof PaginatedImagesDto
|
|
35
|
+
*/
|
|
36
|
+
'page': number;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof PaginatedImagesDto
|
|
41
|
+
*/
|
|
42
|
+
'totalPages': number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Workspaces
|
|
3
|
+
* Daytona Workspaces API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 ToggleState
|
|
16
|
+
*/
|
|
17
|
+
export interface ToggleState {
|
|
18
|
+
/**
|
|
19
|
+
* Enable or disable the image/tag
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof ToggleState
|
|
22
|
+
*/
|
|
23
|
+
'enabled': boolean;
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Daytona Workspaces
|
|
5
|
+
* Daytona Workspaces API Docs
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -20,35 +20,17 @@ export interface UpdateDockerRegistry {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof UpdateDockerRegistry
|
|
22
22
|
*/
|
|
23
|
-
'name'
|
|
24
|
-
/**
|
|
25
|
-
* Registry URL
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof UpdateDockerRegistry
|
|
28
|
-
*/
|
|
29
|
-
'url'?: string;
|
|
23
|
+
'name': string;
|
|
30
24
|
/**
|
|
31
25
|
* Registry username
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof UpdateDockerRegistry
|
|
34
28
|
*/
|
|
35
|
-
'username'
|
|
29
|
+
'username': string;
|
|
36
30
|
/**
|
|
37
31
|
* Registry password
|
|
38
32
|
* @type {string}
|
|
39
33
|
* @memberof UpdateDockerRegistry
|
|
40
34
|
*/
|
|
41
35
|
'password'?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Registry project
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof UpdateDockerRegistry
|
|
46
|
-
*/
|
|
47
|
-
'project'?: string;
|
|
48
|
-
/**
|
|
49
|
-
* Set as default registry
|
|
50
|
-
* @type {boolean}
|
|
51
|
-
* @memberof UpdateDockerRegistry
|
|
52
|
-
*/
|
|
53
|
-
'isDefault'?: boolean;
|
|
54
36
|
}
|
|
@@ -81,4 +81,28 @@ export interface UsageOverview {
|
|
|
81
81
|
* @memberof UsageOverview
|
|
82
82
|
*/
|
|
83
83
|
'concurrentWorkspaces': number;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {number}
|
|
87
|
+
* @memberof UsageOverview
|
|
88
|
+
*/
|
|
89
|
+
'currentImageNumber': number;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {number}
|
|
93
|
+
* @memberof UsageOverview
|
|
94
|
+
*/
|
|
95
|
+
'imageQuota': number;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {number}
|
|
99
|
+
* @memberof UsageOverview
|
|
100
|
+
*/
|
|
101
|
+
'totalImageSizeQuota': number;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {number}
|
|
105
|
+
* @memberof UsageOverview
|
|
106
|
+
*/
|
|
107
|
+
'totalImageSizeUsed': number;
|
|
84
108
|
}
|
package/dist/models/command.d.ts
CHANGED
|
@@ -20,23 +20,17 @@ export interface Command {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof Command
|
|
22
22
|
*/
|
|
23
|
-
'
|
|
23
|
+
'id': string;
|
|
24
24
|
/**
|
|
25
25
|
* The command that was executed
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof Command
|
|
28
28
|
*/
|
|
29
29
|
'command': string;
|
|
30
|
-
/**
|
|
31
|
-
* The output of the command
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof Command
|
|
34
|
-
*/
|
|
35
|
-
'output': string;
|
|
36
30
|
/**
|
|
37
31
|
* The exit code of the command
|
|
38
32
|
* @type {number}
|
|
39
33
|
* @memberof Command
|
|
40
34
|
*/
|
|
41
|
-
'exitCode'
|
|
35
|
+
'exitCode'?: number;
|
|
42
36
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Workspaces
|
|
3
|
+
* Daytona Workspaces API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 CreateImage
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateImage {
|
|
18
|
+
/**
|
|
19
|
+
* The name of the image
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateImage
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* The entrypoint command for the image
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateImage
|
|
28
|
+
*/
|
|
29
|
+
'entrypoint'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Workspaces
|
|
6
|
+
* Daytona Workspaces API Docs
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona Workspaces
|
|
3
|
+
* Daytona Workspaces API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
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 DockerRegistry
|
|
16
|
+
*/
|
|
17
|
+
export interface DockerRegistry {
|
|
18
|
+
/**
|
|
19
|
+
* Registry ID
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DockerRegistry
|
|
22
|
+
*/
|
|
23
|
+
'id': string;
|
|
24
|
+
/**
|
|
25
|
+
* Registry name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DockerRegistry
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Registry URL
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DockerRegistry
|
|
34
|
+
*/
|
|
35
|
+
'url': string;
|
|
36
|
+
/**
|
|
37
|
+
* Registry username
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DockerRegistry
|
|
40
|
+
*/
|
|
41
|
+
'username': string;
|
|
42
|
+
/**
|
|
43
|
+
* Registry project
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DockerRegistry
|
|
46
|
+
*/
|
|
47
|
+
'project': string;
|
|
48
|
+
/**
|
|
49
|
+
* Creation timestamp
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DockerRegistry
|
|
52
|
+
*/
|
|
53
|
+
'createdAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Last update timestamp
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof DockerRegistry
|
|
58
|
+
*/
|
|
59
|
+
'updatedAt': string;
|
|
60
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona Workspaces
|
|
6
|
+
* Daytona Workspaces API Docs
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|