windmill-client 1.300.0 → 1.301.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.
@@ -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.300.0',
6
+ VERSION: '1.301.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
package/dist/index.d.ts CHANGED
@@ -134,6 +134,7 @@ export type { Username } from './models/Username';
134
134
  export type { UserUsage } from './models/UserUsage';
135
135
  export type { UserWorkspaceList } from './models/UserWorkspaceList';
136
136
  export type { VersionId } from './models/VersionId';
137
+ export type { WhileloopFlow } from './models/WhileloopFlow';
137
138
  export type { WindmillFileMetadata } from './models/WindmillFileMetadata';
138
139
  export { WindmillFilePreview } from './models/WindmillFilePreview';
139
140
  export type { WindmillLargeFile } from './models/WindmillLargeFile';
@@ -5,4 +5,5 @@ import type { Identity } from './Identity';
5
5
  import type { PathFlow } from './PathFlow';
6
6
  import type { PathScript } from './PathScript';
7
7
  import type { RawScript } from './RawScript';
8
- export type FlowModuleValue = (RawScript | PathScript | PathFlow | ForloopFlow | BranchOne | BranchAll | Identity);
8
+ import type { WhileloopFlow } from './WhileloopFlow';
9
+ export type FlowModuleValue = (RawScript | PathScript | PathFlow | ForloopFlow | WhileloopFlow | BranchOne | BranchAll | Identity);
@@ -0,0 +1,8 @@
1
+ import type { FlowModule } from './FlowModule';
2
+ export type WhileloopFlow = {
3
+ modules: Array<FlowModule>;
4
+ skip_failures: boolean;
5
+ type: 'whileloopflow';
6
+ parallel?: boolean;
7
+ parallelism?: number;
8
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
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.300.0",
4
+ "version": "1.301.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {