windmill-client 1.285.2 → 1.285.4

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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.285.2',
6
+ VERSION: '1.285.4',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
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';
@@ -0,0 +1,2 @@
1
+ import type { WorkflowStatus } from './WorkflowStatus';
2
+ export type WorkflowStatusRecord = Record<string, WorkflowStatus>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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?: any;
769
+ flow_status?: WorkflowStatusRecord;
769
770
  }>;
770
771
  /**
771
772
  * get flow debug info
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.285.2",
4
+ "version": "1.285.4",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {