windmill-client 1.687.0 → 1.688.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.mjs +1 -1
- package/dist/index.js +6 -2
- package/dist/services.gen.d.ts +1 -0
- package/dist/services.gen.mjs +5 -1
- package/dist/types.gen.d.ts +2 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -126,7 +126,7 @@ const OpenAPI = {
|
|
|
126
126
|
PASSWORD: void 0,
|
|
127
127
|
TOKEN: getEnv$1("WM_TOKEN"),
|
|
128
128
|
USERNAME: void 0,
|
|
129
|
-
VERSION: "1.
|
|
129
|
+
VERSION: "1.688.0",
|
|
130
130
|
WITH_CREDENTIALS: true,
|
|
131
131
|
interceptors: {
|
|
132
132
|
request: new Interceptors(),
|
|
@@ -7930,6 +7930,7 @@ var JobService = class {
|
|
|
7930
7930
|
* @param data.workspace
|
|
7931
7931
|
* @param data.requestBody uuids of the jobs to cancel
|
|
7932
7932
|
* @param data.forceCancel
|
|
7933
|
+
* @param data.allWorkspaces
|
|
7933
7934
|
* @returns string uuids of canceled jobs
|
|
7934
7935
|
* @throws ApiError
|
|
7935
7936
|
*/
|
|
@@ -7938,7 +7939,10 @@ var JobService = class {
|
|
|
7938
7939
|
method: "POST",
|
|
7939
7940
|
url: "/w/{workspace}/jobs/queue/cancel_selection",
|
|
7940
7941
|
path: { workspace: data.workspace },
|
|
7941
|
-
query: {
|
|
7942
|
+
query: {
|
|
7943
|
+
force_cancel: data.forceCancel,
|
|
7944
|
+
all_workspaces: data.allWorkspaces
|
|
7945
|
+
},
|
|
7942
7946
|
body: data.requestBody,
|
|
7943
7947
|
mediaType: "application/json"
|
|
7944
7948
|
});
|
package/dist/services.gen.d.ts
CHANGED
|
@@ -3998,6 +3998,7 @@ export declare class JobService {
|
|
|
3998
3998
|
* @param data.workspace
|
|
3999
3999
|
* @param data.requestBody uuids of the jobs to cancel
|
|
4000
4000
|
* @param data.forceCancel
|
|
4001
|
+
* @param data.allWorkspaces
|
|
4001
4002
|
* @returns string uuids of canceled jobs
|
|
4002
4003
|
* @throws ApiError
|
|
4003
4004
|
*/
|
package/dist/services.gen.mjs
CHANGED
|
@@ -7562,6 +7562,7 @@ var JobService = class {
|
|
|
7562
7562
|
* @param data.workspace
|
|
7563
7563
|
* @param data.requestBody uuids of the jobs to cancel
|
|
7564
7564
|
* @param data.forceCancel
|
|
7565
|
+
* @param data.allWorkspaces
|
|
7565
7566
|
* @returns string uuids of canceled jobs
|
|
7566
7567
|
* @throws ApiError
|
|
7567
7568
|
*/
|
|
@@ -7570,7 +7571,10 @@ var JobService = class {
|
|
|
7570
7571
|
method: "POST",
|
|
7571
7572
|
url: "/w/{workspace}/jobs/queue/cancel_selection",
|
|
7572
7573
|
path: { workspace: data.workspace },
|
|
7573
|
-
query: {
|
|
7574
|
+
query: {
|
|
7575
|
+
force_cancel: data.forceCancel,
|
|
7576
|
+
all_workspaces: data.allWorkspaces
|
|
7577
|
+
},
|
|
7574
7578
|
body: data.requestBody,
|
|
7575
7579
|
mediaType: "application/json"
|
|
7576
7580
|
});
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -10065,6 +10065,7 @@ export type ListFilteredQueueUuidsData = {
|
|
|
10065
10065
|
};
|
|
10066
10066
|
export type ListFilteredQueueUuidsResponse = Array<(string)>;
|
|
10067
10067
|
export type CancelSelectionData = {
|
|
10068
|
+
allWorkspaces?: boolean;
|
|
10068
10069
|
forceCancel?: boolean;
|
|
10069
10070
|
/**
|
|
10070
10071
|
* uuids of the jobs to cancel
|
|
@@ -21543,6 +21544,7 @@ export type $OpenApiTs = {
|
|
|
21543
21544
|
'/w/{workspace}/jobs/queue/cancel_selection': {
|
|
21544
21545
|
post: {
|
|
21545
21546
|
req: {
|
|
21547
|
+
allWorkspaces?: boolean;
|
|
21546
21548
|
forceCancel?: boolean;
|
|
21547
21549
|
/**
|
|
21548
21550
|
* uuids of the jobs to cancel
|