@io-orkes/conductor-javascript 0.9.1 → 1.0.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@io-orkes/conductor-javascript",
3
3
  "description": "Typescript Client for Netflix Conductor",
4
- "version": "0.9.1",
4
+ "version": "v1.0.1",
5
5
  "exports": {
6
6
  ".": {
7
7
  "require": "./dist/index.js",
@@ -28,7 +28,7 @@
28
28
  "build": "tsup index.ts",
29
29
  "prepublishOnly": "npm run build",
30
30
  "lint-fix": "npx eslint . --fix --ext .js,.ts",
31
- "test": "jest",
31
+ "test": "jest --force-exit --detectOpenHandles",
32
32
  "generateClient:models": "npx openapi-typescript-codegen --input http://localhost:8080/api-docs --output src/common/open-api --client node --indent 2 --name ConductorClient --useUnionTypes --exportCore false",
33
33
  "generateClient:core": "npx openapi-typescript-codegen --input http://localhost:8080/api-docs --output src/common/open-api --client node --indent 2 --name ConductorClient --useUnionTypes && find ./src/common/open-api/services/*Service.ts -type f -exec sed -i '' -e 's/api\\///g' {} \\;",
34
34
  "ci": "npm run lint && npm run test",
@@ -54,17 +54,18 @@
54
54
  "devDependencies": {
55
55
  "@tsconfig/node18": "^1.0.1",
56
56
  "@types/node": "^18.11.18",
57
+ "@types/uuid": "^9.0.1",
57
58
  "@typescript-eslint/eslint-plugin": "^5.23.0",
58
59
  "@typescript-eslint/parser": "^5.23.0",
60
+ "dotenv": "^16.0.1",
59
61
  "eslint": "^6.1.0",
60
- "jest": "^28.1.0",
61
- "ts-jest": "^28.0.1",
62
+ "jest": "^29.4.3",
63
+ "ts-jest": "^29.0.5",
62
64
  "ts-node": "^10.7.0",
63
65
  "tsup": "^5.12.6",
64
66
  "typedoc": "^0.23.10",
65
- "typescript": "^4.6.4",
66
- "dotenv": "^16.0.1",
67
- "typedoc-plugin-markdown": "^3.13.4"
67
+ "typedoc-plugin-markdown": "^3.13.4",
68
+ "typescript": "^4.6.4"
68
69
  },
69
70
  "tsup": {
70
71
  "target": "node18",
@@ -78,5 +79,8 @@
78
79
  },
79
80
  "engines": {
80
81
  "node": ">=18"
82
+ },
83
+ "dependencies": {
84
+ "uuid": "^9.0.0"
81
85
  }
82
86
  }