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.
package/dist/core/OpenAPI.js
CHANGED
|
@@ -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
|