windmill-client 1.285.2 → 1.285.3
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
package/dist/index.d.ts
CHANGED
|
@@ -140,6 +140,7 @@ export type { WindmillLargeFile } from './models/WindmillLargeFile';
|
|
|
140
140
|
export type { WorkerPing } from './models/WorkerPing';
|
|
141
141
|
export type { WorkerTag } from './models/WorkerTag';
|
|
142
142
|
export type { WorkflowStatus } from './models/WorkflowStatus';
|
|
143
|
+
export type { WorkflowStatusRecord } from './models/WorkflowStatusRecord';
|
|
143
144
|
export type { WorkflowTask } from './models/WorkflowTask';
|
|
144
145
|
export type { Workspace } from './models/Workspace';
|
|
145
146
|
export type { WorkspaceGitSyncSettings } from './models/WorkspaceGitSyncSettings';
|
|
@@ -5,6 +5,7 @@ import type { Preview } from '../models/Preview';
|
|
|
5
5
|
import type { QueuedJob } from '../models/QueuedJob';
|
|
6
6
|
import type { RawScriptForDependencies } from '../models/RawScriptForDependencies';
|
|
7
7
|
import type { ScriptArgs } from '../models/ScriptArgs';
|
|
8
|
+
import type { WorkflowStatusRecord } from '../models/WorkflowStatusRecord';
|
|
8
9
|
import type { WorkflowTask } from '../models/WorkflowTask';
|
|
9
10
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
11
|
export declare class JobService {
|
|
@@ -765,7 +766,7 @@ export declare class JobService {
|
|
|
765
766
|
completed?: boolean;
|
|
766
767
|
new_logs?: string;
|
|
767
768
|
mem_peak?: number;
|
|
768
|
-
flow_status?:
|
|
769
|
+
flow_status?: WorkflowStatusRecord;
|
|
769
770
|
}>;
|
|
770
771
|
/**
|
|
771
772
|
* get flow debug info
|