attlaz-client 1.59.0 → 1.60.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.
@@ -12,5 +12,6 @@ export declare class Flow extends MetaDataAware implements StateAware {
12
12
  parallelLimit: number;
13
13
  codeSourceId: string | null;
14
14
  runStrategyId: string | null;
15
+ runnerPoolId: string | null;
15
16
  static parse(rawFlow: ApiRecord): Flow;
16
17
  }
@@ -11,6 +11,7 @@ export class Flow extends MetaDataAware {
11
11
  parallelLimit = 0;
12
12
  codeSourceId = null;
13
13
  runStrategyId = null;
14
+ runnerPoolId = null;
14
15
  static parse(rawFlow) {
15
16
  const flow = MetaDataAware.parseMetaData(new Flow(), rawFlow);
16
17
  flow.key = rawFlow.key;
@@ -20,6 +21,7 @@ export class Flow extends MetaDataAware {
20
21
  flow.parallelLimit = Utils.parseInt(rawFlow.parallel_limit);
21
22
  flow.codeSourceId = rawFlow.code_source;
22
23
  flow.runStrategyId = rawFlow.run_strategy;
24
+ flow.runnerPoolId = rawFlow.runner_pool;
23
25
  return flow;
24
26
  }
25
27
  }
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.58.0";
1
+ export declare const VERSION = "1.59.0";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.58.0";
1
+ export const VERSION = "1.59.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.59.0",
3
+ "version": "1.60.0",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",