@daytonaio/api-client 0.176.0 → 0.178.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/api-client",
3
- "version": "0.176.0",
3
+ "version": "0.178.0",
4
4
  "description": "OpenAPI client for @daytona/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -12,6 +12,10 @@
12
12
  export interface AdminCreateRunner {
13
13
  'regionId': string;
14
14
  'name': string;
15
+ /**
16
+ * Tags to associate with the runner
17
+ */
18
+ 'tags'?: Array<string>;
15
19
  'apiKey': string;
16
20
  /**
17
21
  * The api version of the runner to create
@@ -12,4 +12,8 @@
12
12
  export interface CreateRunner {
13
13
  'regionId': string;
14
14
  'name': string;
15
+ /**
16
+ * Tags to associate with the runner
17
+ */
18
+ 'tags'?: Array<string>;
15
19
  }
@@ -110,6 +110,10 @@ export interface RunnerFull {
110
110
  * Whether the runner is unschedulable
111
111
  */
112
112
  'unschedulable': boolean;
113
+ /**
114
+ * Tags associated with the runner
115
+ */
116
+ 'tags': Array<string>;
113
117
  /**
114
118
  * The creation timestamp of the runner
115
119
  */
@@ -109,6 +109,10 @@ export interface Runner {
109
109
  * Whether the runner is unschedulable
110
110
  */
111
111
  'unschedulable': boolean;
112
+ /**
113
+ * Tags associated with the runner
114
+ */
115
+ 'tags': Array<string>;
112
116
  /**
113
117
  * The creation timestamp of the runner
114
118
  */