@io-orkes/conductor-javascript 2.4.1 → 3.0.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.
- package/README.md +383 -908
- package/dist/index.d.mts +2610 -167
- package/dist/index.d.ts +2610 -167
- package/dist/index.js +14197 -3339
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15302 -4486
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -5
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@io-orkes/conductor-javascript",
|
|
3
|
-
"description": "Typescript
|
|
4
|
-
"version": "
|
|
3
|
+
"description": "Typescript SDK for Netflix Conductor",
|
|
4
|
+
"version": "v3.0.0",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://orkes.io",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/conductor-
|
|
9
|
+
"url": "https://github.com/conductor-oss/javascript-sdk"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"conductor",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"name": "James Stuart Milne"
|
|
28
28
|
}
|
|
29
29
|
],
|
|
30
|
+
"sideEffects": false,
|
|
30
31
|
"engines": {
|
|
31
32
|
"node": ">=18"
|
|
32
33
|
},
|
|
@@ -48,8 +49,10 @@
|
|
|
48
49
|
"test": "cross-env ORKES_BACKEND_VERSION=5 jest --force-exit --detectOpenHandles",
|
|
49
50
|
"test:unit": "jest --force-exit --detectOpenHandles --testMatch='**/src/**/__tests__/**/*.test.[jt]s?(x)'",
|
|
50
51
|
"test:integration:base": "jest --force-exit --detectOpenHandles --testMatch='**/src/integration-tests/*.test.[jt]s?(x)'",
|
|
51
|
-
"test:integration:
|
|
52
|
-
"test:integration:
|
|
52
|
+
"test:integration:v5": "cross-env ORKES_BACKEND_VERSION=5 npm run test:integration:base --",
|
|
53
|
+
"test:integration:v4": "cross-env ORKES_BACKEND_VERSION=4 npm run test:integration:base --",
|
|
54
|
+
"test:integration:v5:batch": "cross-env ORKES_BACKEND_VERSION=5 node scripts/run-integration-batch.mjs",
|
|
55
|
+
"test:integration:v4:batch": "cross-env ORKES_BACKEND_VERSION=4 node scripts/run-integration-batch.mjs",
|
|
53
56
|
"ci": "npm run lint && npm run test",
|
|
54
57
|
"build": "tsup index.ts",
|
|
55
58
|
"generate-openapi-layer": "openapi-ts",
|
|
@@ -67,6 +70,7 @@
|
|
|
67
70
|
"eslint": "^9.34.0",
|
|
68
71
|
"jest": "^30.1.3",
|
|
69
72
|
"jest-junit": "^16.0.0",
|
|
73
|
+
"prom-client": "^15.1.3",
|
|
70
74
|
"ts-jest": "^29.4.2",
|
|
71
75
|
"tsup": "^8.5.0",
|
|
72
76
|
"typedoc": "^0.28.11",
|
|
@@ -96,5 +100,8 @@
|
|
|
96
100
|
"suiteNameTemplate": "{filepath}",
|
|
97
101
|
"classNameTemplate": "{classname}",
|
|
98
102
|
"titleTemplate": "{title}"
|
|
103
|
+
},
|
|
104
|
+
"dependencies": {
|
|
105
|
+
"reflect-metadata": "^0.2.2"
|
|
99
106
|
}
|
|
100
107
|
}
|