@hahnpro/flow-sdk 2025.11.4 → 2025.12.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hahnpro/flow-sdk",
3
- "version": "2025.11.4",
3
+ "version": "2025.12.1",
4
4
  "description": "SDK for building Flow Modules",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -17,12 +17,12 @@
17
17
  "access": "public"
18
18
  },
19
19
  "dependencies": {
20
- "@hahnpro/hpc-api": "2025.11.4",
20
+ "@hahnpro/hpc-api": "2025.12.1",
21
21
  "@nats-io/jetstream": "3.2.0",
22
22
  "@nats-io/nats-core": "3.2.0",
23
23
  "@nats-io/transport-node": "3.2.0",
24
24
  "class-transformer": "0.5.1",
25
- "class-validator": "0.14.2",
25
+ "class-validator": "0.14.3",
26
26
  "cloudevents": "10.0.0",
27
27
  "lodash": "4.17.21",
28
28
  "object-sizeof": "2.6.5",
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/jest": "30.0.0",
36
- "@types/lodash": "4.17.20",
37
- "@types/node": "24.10.0",
36
+ "@types/lodash": "4.17.21",
37
+ "@types/node": "24.10.1",
38
38
  "class-validator-jsonschema": "5.1.0",
39
39
  "jest": "30.2.0",
40
40
  "typescript": "5.9.3"
@@ -42,7 +42,7 @@
42
42
  "peerDependencies": {
43
43
  "axios": "1.13.2",
44
44
  "class-transformer": "0.5.1",
45
- "class-validator": "0.14.2",
45
+ "class-validator": "0.14.3",
46
46
  "lodash": "4.17.21"
47
47
  },
48
48
  "engines": {
@@ -280,7 +280,7 @@ class FlowApplication {
280
280
  if (!this.skipApi && !(this._api instanceof hpc_api_1.MockAPI)) {
281
281
  const { owner } = this.context;
282
282
  // only create real API if it should not be skipped and is not already a mock
283
- this._api = new hpc_api_1.API(this.apiClient, { activeOrg: owner?.id });
283
+ this._api = new hpc_api_1.API(this.apiClient, { activeOrg: owner?.id }, { queueOptions: { concurrency: 1, timeout: 70000, throwOnTimeout: true } });
284
284
  }
285
285
  }
286
286
  catch (err) {