windmill-client 1.509.1 → 1.510.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 +1 -1
- package/dist/services.gen.d.ts +1 -0
- package/dist/services.gen.js +3 -1
- package/dist/types.gen.d.ts +8 -2
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
package/dist/services.gen.js
CHANGED
|
@@ -4489,6 +4489,7 @@ class ScriptService {
|
|
|
4489
4489
|
* @param data.workspace
|
|
4490
4490
|
* @param data.hash
|
|
4491
4491
|
* @param data.withStarredInfo
|
|
4492
|
+
* @param data.authed
|
|
4492
4493
|
* @returns Script script details
|
|
4493
4494
|
* @throws ApiError
|
|
4494
4495
|
*/
|
|
@@ -4501,7 +4502,8 @@ class ScriptService {
|
|
|
4501
4502
|
hash: data.hash
|
|
4502
4503
|
},
|
|
4503
4504
|
query: {
|
|
4504
|
-
with_starred_info: data.withStarredInfo
|
|
4505
|
+
with_starred_info: data.withStarredInfo,
|
|
4506
|
+
authed: data.authed
|
|
4505
4507
|
}
|
|
4506
4508
|
});
|
|
4507
4509
|
}
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -368,6 +368,7 @@ export type QueuedJob = {
|
|
|
368
368
|
*/
|
|
369
369
|
permissioned_as: string;
|
|
370
370
|
flow_status?: FlowStatus;
|
|
371
|
+
workflow_as_code_status?: WorkflowStatus;
|
|
371
372
|
raw_flow?: FlowValue;
|
|
372
373
|
is_flow_step: boolean;
|
|
373
374
|
language?: ScriptLang;
|
|
@@ -410,6 +411,7 @@ export type CompletedJob = {
|
|
|
410
411
|
*/
|
|
411
412
|
permissioned_as: string;
|
|
412
413
|
flow_status?: FlowStatus;
|
|
414
|
+
workflow_as_code_status?: WorkflowStatus;
|
|
413
415
|
raw_flow?: FlowValue;
|
|
414
416
|
is_flow_step: boolean;
|
|
415
417
|
language?: ScriptLang;
|
|
@@ -4046,6 +4048,7 @@ export type ExistsScriptByPathData = {
|
|
|
4046
4048
|
};
|
|
4047
4049
|
export type ExistsScriptByPathResponse = boolean;
|
|
4048
4050
|
export type GetScriptByHashData = {
|
|
4051
|
+
authed?: boolean;
|
|
4049
4052
|
hash: string;
|
|
4050
4053
|
withStarredInfo?: boolean;
|
|
4051
4054
|
workspace: string;
|
|
@@ -5186,7 +5189,8 @@ export type GetJobUpdatesResponse = {
|
|
|
5186
5189
|
log_offset?: number;
|
|
5187
5190
|
mem_peak?: number;
|
|
5188
5191
|
progress?: number;
|
|
5189
|
-
flow_status?:
|
|
5192
|
+
flow_status?: FlowStatus;
|
|
5193
|
+
workflow_as_code_status?: WorkflowStatus;
|
|
5190
5194
|
};
|
|
5191
5195
|
export type GetJobUpdatesSseData = {
|
|
5192
5196
|
getProgress?: boolean;
|
|
@@ -11546,6 +11550,7 @@ export type $OpenApiTs = {
|
|
|
11546
11550
|
'/w/{workspace}/scripts/get/h/{hash}': {
|
|
11547
11551
|
get: {
|
|
11548
11552
|
req: {
|
|
11553
|
+
authed?: boolean;
|
|
11549
11554
|
hash: string;
|
|
11550
11555
|
withStarredInfo?: boolean;
|
|
11551
11556
|
workspace: string;
|
|
@@ -13075,7 +13080,8 @@ export type $OpenApiTs = {
|
|
|
13075
13080
|
log_offset?: number;
|
|
13076
13081
|
mem_peak?: number;
|
|
13077
13082
|
progress?: number;
|
|
13078
|
-
flow_status?:
|
|
13083
|
+
flow_status?: FlowStatus;
|
|
13084
|
+
workflow_as_code_status?: WorkflowStatus;
|
|
13079
13085
|
};
|
|
13080
13086
|
};
|
|
13081
13087
|
};
|