@daytonaio/api-client 0.3.0 → 0.4.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/README.md +2 -2
- package/api/default-api.ts +295 -521
- package/dist/api/default-api.d.ts +168 -285
- package/dist/api/default-api.js +296 -518
- package/dist/esm/api/default-api.d.ts +168 -285
- package/dist/esm/api/default-api.js +296 -518
- package/dist/esm/models/create-workspace-dto.d.ts +14 -0
- package/dist/models/create-workspace-dto.d.ts +14 -0
- package/models/create-workspace-dto.ts +12 -0
- package/package.json +1 -1
|
@@ -47,6 +47,20 @@ export interface CreateWorkspaceDto {
|
|
|
47
47
|
'env'?: {
|
|
48
48
|
[key: string]: string;
|
|
49
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* Labels for the workspace
|
|
52
|
+
* @type {{ [key: string]: string; }}
|
|
53
|
+
* @memberof CreateWorkspaceDto
|
|
54
|
+
*/
|
|
55
|
+
'labels'?: {
|
|
56
|
+
[key: string]: string;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Whether the workspace port preview is publicly accessible
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof CreateWorkspaceDto
|
|
62
|
+
*/
|
|
63
|
+
'public'?: boolean;
|
|
50
64
|
/**
|
|
51
65
|
* The workspace class type
|
|
52
66
|
* @type {string}
|
|
@@ -47,6 +47,20 @@ export interface CreateWorkspaceDto {
|
|
|
47
47
|
'env'?: {
|
|
48
48
|
[key: string]: string;
|
|
49
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* Labels for the workspace
|
|
52
|
+
* @type {{ [key: string]: string; }}
|
|
53
|
+
* @memberof CreateWorkspaceDto
|
|
54
|
+
*/
|
|
55
|
+
'labels'?: {
|
|
56
|
+
[key: string]: string;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Whether the workspace port preview is publicly accessible
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof CreateWorkspaceDto
|
|
62
|
+
*/
|
|
63
|
+
'public'?: boolean;
|
|
50
64
|
/**
|
|
51
65
|
* The workspace class type
|
|
52
66
|
* @type {string}
|
|
@@ -50,6 +50,18 @@ export interface CreateWorkspaceDto {
|
|
|
50
50
|
* @memberof CreateWorkspaceDto
|
|
51
51
|
*/
|
|
52
52
|
'env'?: { [key: string]: string; };
|
|
53
|
+
/**
|
|
54
|
+
* Labels for the workspace
|
|
55
|
+
* @type {{ [key: string]: string; }}
|
|
56
|
+
* @memberof CreateWorkspaceDto
|
|
57
|
+
*/
|
|
58
|
+
'labels'?: { [key: string]: string; };
|
|
59
|
+
/**
|
|
60
|
+
* Whether the workspace port preview is publicly accessible
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof CreateWorkspaceDto
|
|
63
|
+
*/
|
|
64
|
+
'public'?: boolean;
|
|
53
65
|
/**
|
|
54
66
|
* The workspace class type
|
|
55
67
|
* @type {string}
|