windmill-client 1.275.6 → 1.276.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
|
@@ -107,7 +107,7 @@ export declare class FolderService {
|
|
|
107
107
|
* owner user to folder
|
|
108
108
|
*/
|
|
109
109
|
requestBody: {
|
|
110
|
-
owner
|
|
110
|
+
owner: string;
|
|
111
111
|
};
|
|
112
112
|
}): CancelablePromise<string>;
|
|
113
113
|
/**
|
|
@@ -122,7 +122,8 @@ export declare class FolderService {
|
|
|
122
122
|
* added owner to folder
|
|
123
123
|
*/
|
|
124
124
|
requestBody: {
|
|
125
|
-
owner
|
|
125
|
+
owner: string;
|
|
126
|
+
write: boolean;
|
|
126
127
|
};
|
|
127
128
|
}): CancelablePromise<string>;
|
|
128
129
|
}
|
|
@@ -539,7 +539,7 @@ export declare class JobService {
|
|
|
539
539
|
* @returns CompletedJob All completed jobs
|
|
540
540
|
* @throws ApiError
|
|
541
541
|
*/
|
|
542
|
-
static listCompletedJobs({ workspace, orderDesc, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, success, jobKinds, args, result, tag, isSkipped, isFlowStep, }: {
|
|
542
|
+
static listCompletedJobs({ workspace, orderDesc, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, success, jobKinds, args, result, tag, isSkipped, isFlowStep, hasNullParent, }: {
|
|
543
543
|
workspace: string;
|
|
544
544
|
/**
|
|
545
545
|
* order by desc order (default true)
|
|
@@ -605,13 +605,17 @@ export declare class JobService {
|
|
|
605
605
|
* is the job a flow step
|
|
606
606
|
*/
|
|
607
607
|
isFlowStep?: boolean;
|
|
608
|
+
/**
|
|
609
|
+
* has null parent
|
|
610
|
+
*/
|
|
611
|
+
hasNullParent?: boolean;
|
|
608
612
|
}): CancelablePromise<Array<CompletedJob>>;
|
|
609
613
|
/**
|
|
610
614
|
* list all jobs
|
|
611
615
|
* @returns Job All jobs
|
|
612
616
|
* @throws ApiError
|
|
613
617
|
*/
|
|
614
|
-
static listJobs({ workspace, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, createdOrStartedBefore, running, scheduledForBeforeNow, createdOrStartedAfter, jobKinds, args, tag, result, isSkipped, isFlowStep, success, allWorkspaces, }: {
|
|
618
|
+
static listJobs({ workspace, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, createdOrStartedBefore, running, scheduledForBeforeNow, createdOrStartedAfter, jobKinds, args, tag, result, isSkipped, isFlowStep, hasNullParent, success, allWorkspaces, }: {
|
|
615
619
|
workspace: string;
|
|
616
620
|
/**
|
|
617
621
|
* mask to filter exact matching user creator
|
|
@@ -685,6 +689,10 @@ export declare class JobService {
|
|
|
685
689
|
* is the job a flow step
|
|
686
690
|
*/
|
|
687
691
|
isFlowStep?: boolean;
|
|
692
|
+
/**
|
|
693
|
+
* has null parent
|
|
694
|
+
*/
|
|
695
|
+
hasNullParent?: boolean;
|
|
688
696
|
/**
|
|
689
697
|
* filter on successful jobs
|
|
690
698
|
*/
|
|
@@ -381,7 +381,7 @@ class JobService {
|
|
|
381
381
|
* @returns CompletedJob All completed jobs
|
|
382
382
|
* @throws ApiError
|
|
383
383
|
*/
|
|
384
|
-
static listCompletedJobs({ workspace, orderDesc, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, success, jobKinds, args, result, tag, isSkipped, isFlowStep, }) {
|
|
384
|
+
static listCompletedJobs({ workspace, orderDesc, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, success, jobKinds, args, result, tag, isSkipped, isFlowStep, hasNullParent, }) {
|
|
385
385
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
386
386
|
method: 'GET',
|
|
387
387
|
url: '/w/{workspace}/jobs/completed/list',
|
|
@@ -405,6 +405,7 @@ class JobService {
|
|
|
405
405
|
'tag': tag,
|
|
406
406
|
'is_skipped': isSkipped,
|
|
407
407
|
'is_flow_step': isFlowStep,
|
|
408
|
+
'has_null_parent': hasNullParent,
|
|
408
409
|
},
|
|
409
410
|
});
|
|
410
411
|
}
|
|
@@ -413,7 +414,7 @@ class JobService {
|
|
|
413
414
|
* @returns Job All jobs
|
|
414
415
|
* @throws ApiError
|
|
415
416
|
*/
|
|
416
|
-
static listJobs({ workspace, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, createdOrStartedBefore, running, scheduledForBeforeNow, createdOrStartedAfter, jobKinds, args, tag, result, isSkipped, isFlowStep, success, allWorkspaces, }) {
|
|
417
|
+
static listJobs({ workspace, createdBy, parentJob, scriptPathExact, scriptPathStart, schedulePath, scriptHash, startedBefore, startedAfter, createdOrStartedBefore, running, scheduledForBeforeNow, createdOrStartedAfter, jobKinds, args, tag, result, isSkipped, isFlowStep, hasNullParent, success, allWorkspaces, }) {
|
|
417
418
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
418
419
|
method: 'GET',
|
|
419
420
|
url: '/w/{workspace}/jobs/list',
|
|
@@ -439,6 +440,7 @@ class JobService {
|
|
|
439
440
|
'result': result,
|
|
440
441
|
'is_skipped': isSkipped,
|
|
441
442
|
'is_flow_step': isFlowStep,
|
|
443
|
+
'has_null_parent': hasNullParent,
|
|
442
444
|
'success': success,
|
|
443
445
|
'all_workspaces': allWorkspaces,
|
|
444
446
|
},
|