@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.
@@ -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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/api-client",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "OpenAPI client for @daytonaio/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {