windmill-client 1.487.0 → 1.489.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.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.487.0',
42
+ VERSION: '1.489.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -1424,17 +1424,16 @@ export type Retry = {
1424
1424
  random_factor?: number;
1425
1425
  };
1426
1426
  };
1427
+ export type StopAfterIf = {
1428
+ skip_if_stopped?: boolean;
1429
+ expr: string;
1430
+ error_message?: string;
1431
+ };
1427
1432
  export type FlowModule = {
1428
1433
  id: string;
1429
1434
  value: FlowModuleValue;
1430
- stop_after_if?: {
1431
- skip_if_stopped?: boolean;
1432
- expr: string;
1433
- };
1434
- stop_after_all_iters_if?: {
1435
- skip_if_stopped?: boolean;
1436
- expr: string;
1437
- };
1435
+ stop_after_if?: StopAfterIf;
1436
+ stop_after_all_iters_if?: StopAfterIf;
1438
1437
  skip_if?: {
1439
1438
  expr: string;
1440
1439
  };
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.487.0",
4
+ "version": "1.489.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {