attlaz-client 1.10.8 → 1.10.10

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/README.md CHANGED
@@ -1,7 +1,10 @@
1
1
  Attlaz Javascript/Node client
2
2
  ==========
3
3
 
4
- [Attlaz](https://attlaz.com) is a cloud-based iPaas (Integration Platform as a Service), automation and data management platform.
4
+ [Attlaz](https://attlaz.com) is a cloud-based iPaas (Integration Platform as a Service), automation and data management
5
+ platform.
6
+
7
+ [![Latest Stable Version](https://img.shields.io/npm/v/attlaz-client.svg)](https://www.npmjs.com/package/attlaz-client)
5
8
 
6
9
  Getting Started
7
10
  ---------------
@@ -1,4 +1,4 @@
1
- import { DataValueCollection } from '../Model/DataValueCollection';
1
+ import { DataValueCollection } from '../Model/DataValueCollection.js';
2
2
  export declare abstract class MetaDataAware {
3
3
  metadata: DataValueCollection;
4
4
  }
@@ -12,5 +12,6 @@ export declare class Flow extends MetaDataAware implements StateAware {
12
12
  /** The maximum number of flows to run at any time (0 = no limit) * */
13
13
  parallelLimit: number;
14
14
  codeSource: string | null;
15
+ runCommand: string | null;
15
16
  static parse(rawFlow: any): Flow;
16
17
  }
@@ -13,6 +13,7 @@ export class Flow extends MetaDataAware {
13
13
  /** The maximum number of flows to run at any time (0 = no limit) * */
14
14
  parallelLimit = 0;
15
15
  codeSource = null;
16
+ runCommand = null;
16
17
  static parse(rawFlow) {
17
18
  const flow = new Flow();
18
19
  flow.id = rawFlow.id;
@@ -24,6 +25,7 @@ export class Flow extends MetaDataAware {
24
25
  flow.state = State.fromString(rawFlow.state);
25
26
  flow.parallelLimit = Utils.parseInt(rawFlow.parallel_limit);
26
27
  flow.codeSource = rawFlow.code_source;
28
+ flow.runCommand = rawFlow.run_command;
27
29
  flow.metadata = DataValueCollection.fromObject(rawFlow.metadata);
28
30
  return flow;
29
31
  }
@@ -1,4 +1,4 @@
1
- import { TriggerData } from './TriggerData';
1
+ import { TriggerData } from './TriggerData.js';
2
2
  import { State } from '../State.js';
3
3
  import { TriggerType } from './TriggerType.js';
4
4
  import { StateAware } from '../StateAware.js';
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.9.71";
1
+ export declare const VERSION = "1.10.10";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.9.71';
1
+ export const VERSION = "1.10.10";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.10.8",
3
+ "version": "1.10.10",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/jest": "^29.5.2",
48
- "@types/node": "^18.16.18",
48
+ "@types/node": "^20.9.0",
49
49
  "dotenv": "^16.3.1",
50
50
  "jest": "^29.5.0",
51
51
  "rimraf": "^5.0.1",