windmill-client 1.315.1 → 1.316.2
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/schemas.gen.d.ts +6 -0
- package/dist/schemas.gen.js +6 -0
- package/dist/services.gen.d.ts +2 -2
- package/dist/services.gen.js +2 -2
- package/dist/types.gen.d.ts +4 -3
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -502,6 +502,12 @@ export declare const $CompletedJob: {
|
|
|
502
502
|
readonly priority: {
|
|
503
503
|
readonly type: "integer";
|
|
504
504
|
};
|
|
505
|
+
readonly labels: {
|
|
506
|
+
readonly type: "array";
|
|
507
|
+
readonly items: {
|
|
508
|
+
readonly type: "string";
|
|
509
|
+
};
|
|
510
|
+
};
|
|
505
511
|
};
|
|
506
512
|
readonly required: readonly ["id", "created_by", "duration_ms", "created_at", "started_at", "success", "canceled", "job_kind", "permissioned_as", "is_flow_step", "is_skipped", "email", "visible_to_owner", "tag"];
|
|
507
513
|
};
|
package/dist/schemas.gen.js
CHANGED
|
@@ -514,6 +514,12 @@ the execution of this script will be permissioned_as and by extension its DT_TOK
|
|
|
514
514
|
},
|
|
515
515
|
priority: {
|
|
516
516
|
type: 'integer'
|
|
517
|
+
},
|
|
518
|
+
labels: {
|
|
519
|
+
type: 'array',
|
|
520
|
+
items: {
|
|
521
|
+
type: 'string'
|
|
522
|
+
}
|
|
517
523
|
}
|
|
518
524
|
},
|
|
519
525
|
required: ['id', 'created_by', 'duration_ms', 'created_at', 'started_at', 'success', 'canceled', 'job_kind', 'permissioned_as', 'is_flow_step', 'is_skipped', 'email', 'visible_to_owner', 'tag']
|
package/dist/services.gen.d.ts
CHANGED
|
@@ -2025,7 +2025,7 @@ export declare class JobService {
|
|
|
2025
2025
|
* @param data.workspace
|
|
2026
2026
|
* @param data.orderDesc order by desc order (default true)
|
|
2027
2027
|
* @param data.createdBy mask to filter exact matching user creator
|
|
2028
|
-
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key '
|
|
2028
|
+
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
|
|
2029
2029
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
2030
2030
|
* @param data.scriptPathExact mask to filter exact matching path
|
|
2031
2031
|
* @param data.scriptPathStart mask to filter matching starting path
|
|
@@ -2053,7 +2053,7 @@ export declare class JobService {
|
|
|
2053
2053
|
* @param data The data for the request.
|
|
2054
2054
|
* @param data.workspace
|
|
2055
2055
|
* @param data.createdBy mask to filter exact matching user creator
|
|
2056
|
-
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key '
|
|
2056
|
+
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
|
|
2057
2057
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
2058
2058
|
* @param data.scriptPathExact mask to filter exact matching path
|
|
2059
2059
|
* @param data.scriptPathStart mask to filter matching starting path
|
package/dist/services.gen.js
CHANGED
|
@@ -4039,7 +4039,7 @@ class JobService {
|
|
|
4039
4039
|
* @param data.workspace
|
|
4040
4040
|
* @param data.orderDesc order by desc order (default true)
|
|
4041
4041
|
* @param data.createdBy mask to filter exact matching user creator
|
|
4042
|
-
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key '
|
|
4042
|
+
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
|
|
4043
4043
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
4044
4044
|
* @param data.scriptPathExact mask to filter exact matching path
|
|
4045
4045
|
* @param data.scriptPathStart mask to filter matching starting path
|
|
@@ -4098,7 +4098,7 @@ class JobService {
|
|
|
4098
4098
|
* @param data The data for the request.
|
|
4099
4099
|
* @param data.workspace
|
|
4100
4100
|
* @param data.createdBy mask to filter exact matching user creator
|
|
4101
|
-
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key '
|
|
4101
|
+
* @param data.label mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
|
|
4102
4102
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
4103
4103
|
* @param data.scriptPathExact mask to filter exact matching path
|
|
4104
4104
|
* @param data.scriptPathStart mask to filter matching starting path
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ export type CompletedJob = {
|
|
|
179
179
|
mem_peak?: number;
|
|
180
180
|
tag: string;
|
|
181
181
|
priority?: number;
|
|
182
|
+
labels?: Array<(string)>;
|
|
182
183
|
};
|
|
183
184
|
export type Job = CompletedJob & {
|
|
184
185
|
type?: 'CompletedJob';
|
|
@@ -910,7 +911,7 @@ export type OrderDesc = boolean;
|
|
|
910
911
|
*/
|
|
911
912
|
export type CreatedBy = string;
|
|
912
913
|
/**
|
|
913
|
-
* mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key '
|
|
914
|
+
* mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
|
|
914
915
|
*/
|
|
915
916
|
export type Label = string;
|
|
916
917
|
/**
|
|
@@ -4978,7 +4979,7 @@ export type $OpenApiTs = {
|
|
|
4978
4979
|
*/
|
|
4979
4980
|
jobKinds?: string;
|
|
4980
4981
|
/**
|
|
4981
|
-
* mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key '
|
|
4982
|
+
* mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
|
|
4982
4983
|
*/
|
|
4983
4984
|
label?: string;
|
|
4984
4985
|
/**
|
|
@@ -5087,7 +5088,7 @@ export type $OpenApiTs = {
|
|
|
5087
5088
|
*/
|
|
5088
5089
|
jobKinds?: string;
|
|
5089
5090
|
/**
|
|
5090
|
-
* mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string at key '
|
|
5091
|
+
* mask to filter exact matching job's label (job labels are completed jobs with as a result an object containing a string in the array at key 'wm_labels')
|
|
5091
5092
|
*/
|
|
5092
5093
|
label?: string;
|
|
5093
5094
|
/**
|