windmill-client 1.266.1 → 1.267.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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.266.1',
6
+ VERSION: '1.267.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -7,6 +7,18 @@ export declare class WorkerService {
7
7
  * @throws ApiError
8
8
  */
9
9
  static getCustomTags(): CancelablePromise<Array<string>>;
10
+ /**
11
+ * get all instance default tags
12
+ * @returns string list of default tags
13
+ * @throws ApiError
14
+ */
15
+ static geDefaultTags(): CancelablePromise<Array<string>>;
16
+ /**
17
+ * is default tags per workspace
18
+ * @returns boolean is the default tags per workspace
19
+ * @throws ApiError
20
+ */
21
+ static isDefaultTagsPerWorkspace(): CancelablePromise<boolean>;
10
22
  /**
11
23
  * list workers
12
24
  * @returns WorkerPing a list of workers
@@ -15,6 +15,28 @@ class WorkerService {
15
15
  url: '/workers/custom_tags',
16
16
  });
17
17
  }
18
+ /**
19
+ * get all instance default tags
20
+ * @returns string list of default tags
21
+ * @throws ApiError
22
+ */
23
+ static geDefaultTags() {
24
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
25
+ method: 'GET',
26
+ url: '/workers/get_default_tags',
27
+ });
28
+ }
29
+ /**
30
+ * is default tags per workspace
31
+ * @returns boolean is the default tags per workspace
32
+ * @throws ApiError
33
+ */
34
+ static isDefaultTagsPerWorkspace() {
35
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
36
+ method: 'GET',
37
+ url: '/workers/is_default_tags_per_workspace',
38
+ });
39
+ }
18
40
  /**
19
41
  * list workers
20
42
  * @returns WorkerPing a list of workers
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.266.1",
4
+ "version": "1.267.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {