@io-orkes/conductor-javascript 2.3.0 → 2.4.1-beta

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@io-orkes/conductor-javascript",
3
3
  "description": "Typescript Client for Netflix Conductor",
4
- "version": "v2.3.0",
4
+ "version": "v2.4.1-beta",
5
5
  "private": false,
6
6
  "homepage": "https://orkes.io",
7
7
  "repository": {
@@ -45,10 +45,11 @@
45
45
  "scripts": {
46
46
  "lint": "npx eslint .",
47
47
  "lint-fix": "npx eslint . --fix",
48
- "test": "jest --force-exit --detectOpenHandles",
49
- "test:unit": "npm test -- --testMatch='**/src/**/__tests__/**/*.test.[jt]s?(x)'",
50
- "test:integration:v5": "npm test -- --testMatch='**/integration-tests/{common,v5-only}/**/*.test.[jt]s?(x)'",
51
- "test:integration:v4": "npm test -- --testMatch='**/integration-tests/common/**/*.test.[jt]s?(x)'",
48
+ "test": "cross-env ORKES_BACKEND_VERSION=5 jest --force-exit --detectOpenHandles",
49
+ "test:unit": "jest --force-exit --detectOpenHandles --testMatch='**/src/**/__tests__/**/*.test.[jt]s?(x)'",
50
+ "test:integration:base": "jest --force-exit --detectOpenHandles --testMatch='**/src/integration-tests/*.test.[jt]s?(x)'",
51
+ "test:integration:orkes-v5": "cross-env ORKES_BACKEND_VERSION=5 npm run test:integration:base --",
52
+ "test:integration:orkes-v4": "cross-env ORKES_BACKEND_VERSION=4 npm run test:integration:base --",
52
53
  "ci": "npm run lint && npm run test",
53
54
  "build": "tsup index.ts",
54
55
  "generate-openapi-layer": "openapi-ts",
@@ -61,6 +62,7 @@
61
62
  "@tsconfig/node18": "^18.2.4",
62
63
  "@types/node": "^22.0.0",
63
64
  "@types/uuid": "^9.0.1",
65
+ "cross-env": "^10.1.0",
64
66
  "dotenv": "^16.0.1",
65
67
  "eslint": "^9.34.0",
66
68
  "jest": "^30.1.3",