nestjs-temporal-core 3.1.9 → 3.2.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 +31 -21
- package/dist/services/temporal-client.service.d.ts +1 -0
- package/dist/services/temporal-client.service.js +17 -1
- package/dist/services/temporal-client.service.js.map +1 -1
- package/dist/services/temporal-schedule.service.js.map +1 -1
- package/dist/services/temporal-worker.service.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +43 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nestjs-temporal-core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Complete NestJS integration for Temporal.io with auto-discovery, declarative scheduling, enhanced monitoring, and enterprise-ready features",
|
|
5
5
|
"author": "Harsh M",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,7 +25,9 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "rimraf dist && tsc -p tsconfig.json",
|
|
27
27
|
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
|
|
28
|
+
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
|
|
28
29
|
"lint": "eslint \"src/**/*.ts\" --fix",
|
|
30
|
+
"lint:check": "eslint \"src/**/*.ts\"",
|
|
29
31
|
"type-check": "tsc --noEmit",
|
|
30
32
|
"fix-all": "npm run format && npm run lint",
|
|
31
33
|
"update:packages": "npx npm-check-updates -u",
|
|
@@ -41,6 +43,7 @@
|
|
|
41
43
|
"release:dry": "npm run build && npm publish --dry-run",
|
|
42
44
|
"test": "jest --coverage --passWithNoTests --forceExit",
|
|
43
45
|
"test:unit": "jest --testPathPatterns=test/unit --testPathIgnorePatterns=test/performance --coverage --passWithNoTests --forceExit",
|
|
46
|
+
"test:integration": "jest --testPathPatterns=test/integration --coverage --passWithNoTests --forceExit",
|
|
44
47
|
"test:ci": "npm run test:unit && npm run test:integration",
|
|
45
48
|
"make-badges": "istanbul-badges-readme",
|
|
46
49
|
"docs:generate": "typedoc src --out docs --excludePrivate --excludeProtected",
|
|
@@ -50,13 +53,20 @@
|
|
|
50
53
|
"keywords": [
|
|
51
54
|
"nestjs",
|
|
52
55
|
"temporal",
|
|
56
|
+
"temporal.io",
|
|
57
|
+
"temporalio",
|
|
53
58
|
"workflow",
|
|
59
|
+
"workflow-engine",
|
|
60
|
+
"workflow-orchestration",
|
|
54
61
|
"microservices",
|
|
55
62
|
"orchestration",
|
|
56
63
|
"scheduling",
|
|
57
64
|
"auto-discovery",
|
|
58
65
|
"decorators",
|
|
59
66
|
"typescript",
|
|
67
|
+
"typescript-temporal",
|
|
68
|
+
"nestjs-integration",
|
|
69
|
+
"nestjs-module",
|
|
60
70
|
"monitoring",
|
|
61
71
|
"cron",
|
|
62
72
|
"interval",
|
|
@@ -66,7 +76,10 @@
|
|
|
66
76
|
"workers",
|
|
67
77
|
"distributed-systems",
|
|
68
78
|
"fault-tolerance",
|
|
69
|
-
"durable-execution"
|
|
79
|
+
"durable-execution",
|
|
80
|
+
"saga-pattern",
|
|
81
|
+
"event-driven",
|
|
82
|
+
"temporal-sdk"
|
|
70
83
|
],
|
|
71
84
|
"dependencies": {
|
|
72
85
|
"ms": "^2.1.3"
|
|
@@ -74,10 +87,10 @@
|
|
|
74
87
|
"peerDependencies": {
|
|
75
88
|
"@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
76
89
|
"@nestjs/core": "^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
77
|
-
"@temporalio/client": "^1.12.0",
|
|
78
|
-
"@temporalio/common": "^1.12.0",
|
|
79
|
-
"@temporalio/worker": "^1.12.0",
|
|
80
|
-
"@temporalio/workflow": "^1.12.0",
|
|
90
|
+
"@temporalio/client": "^1.12.0 || ^1.13.0",
|
|
91
|
+
"@temporalio/common": "^1.12.0 || ^1.13.0",
|
|
92
|
+
"@temporalio/worker": "^1.12.0 || ^1.13.0",
|
|
93
|
+
"@temporalio/workflow": "^1.12.0 || ^1.13.0",
|
|
81
94
|
"reflect-metadata": "^0.2.2",
|
|
82
95
|
"rxjs": "^7.8.0"
|
|
83
96
|
},
|
|
@@ -87,39 +100,39 @@
|
|
|
87
100
|
}
|
|
88
101
|
},
|
|
89
102
|
"devDependencies": {
|
|
90
|
-
"@eslint/js": "^9.
|
|
91
|
-
"@nestjs/common": "^11.1.
|
|
92
|
-
"@nestjs/core": "^11.1.
|
|
93
|
-
"@nestjs/testing": "^11.1.
|
|
94
|
-
"@swc/core": "^1.
|
|
103
|
+
"@eslint/js": "^9.39.1",
|
|
104
|
+
"@nestjs/common": "^11.1.9",
|
|
105
|
+
"@nestjs/core": "^11.1.9",
|
|
106
|
+
"@nestjs/testing": "^11.1.9",
|
|
107
|
+
"@swc/core": "^1.15.3",
|
|
95
108
|
"@swc/jest": "^0.2.39",
|
|
96
|
-
"@temporalio/client": "^1.
|
|
97
|
-
"@temporalio/common": "^1.
|
|
98
|
-
"@temporalio/worker": "^1.
|
|
99
|
-
"@temporalio/workflow": "^1.
|
|
109
|
+
"@temporalio/client": "^1.13.2",
|
|
110
|
+
"@temporalio/common": "^1.13.2",
|
|
111
|
+
"@temporalio/worker": "^1.13.2",
|
|
112
|
+
"@temporalio/workflow": "^1.13.2",
|
|
100
113
|
"@types/jest": "^30.0.0",
|
|
101
114
|
"@types/ms": "^2.1.0",
|
|
102
|
-
"@types/node": "^24.
|
|
115
|
+
"@types/node": "^24.10.1",
|
|
103
116
|
"@types/reflect-metadata": "^0.1.0",
|
|
104
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
105
|
-
"@typescript-eslint/parser": "^8.
|
|
117
|
+
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
118
|
+
"@typescript-eslint/parser": "^8.48.0",
|
|
106
119
|
"benchmark": "^2.1.4",
|
|
107
|
-
"eslint": "^9.
|
|
120
|
+
"eslint": "^9.39.1",
|
|
108
121
|
"eslint-config-prettier": "^10.1.8",
|
|
109
|
-
"eslint-plugin-prettier": "^5.5.
|
|
110
|
-
"globals": "^16.
|
|
122
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
123
|
+
"globals": "^16.5.0",
|
|
111
124
|
"husky": "^9.1.7",
|
|
112
125
|
"istanbul-badges-readme": "^1.9.0",
|
|
113
|
-
"jest": "^30.0
|
|
114
|
-
"jsdoc": "^4.0.
|
|
115
|
-
"jsdoc-to-markdown": "^9.
|
|
126
|
+
"jest": "^30.2.0",
|
|
127
|
+
"jsdoc": "^4.0.5",
|
|
128
|
+
"jsdoc-to-markdown": "^9.1.3",
|
|
116
129
|
"jsdoc-tsimport-plugin": "^1.0.5",
|
|
117
|
-
"nodemon": "^3.1.
|
|
118
|
-
"prettier": "^3.
|
|
119
|
-
"rimraf": "^6.
|
|
120
|
-
"ts-jest": "^29.4.
|
|
121
|
-
"typedoc": "^0.28.
|
|
122
|
-
"typescript": "^5.
|
|
130
|
+
"nodemon": "^3.1.11",
|
|
131
|
+
"prettier": "^3.7.1",
|
|
132
|
+
"rimraf": "^6.1.2",
|
|
133
|
+
"ts-jest": "^29.4.5",
|
|
134
|
+
"typedoc": "^0.28.14",
|
|
135
|
+
"typescript": "^5.9.3"
|
|
123
136
|
},
|
|
124
137
|
"engines": {
|
|
125
138
|
"node": ">=16.0.0",
|