@n8n/engine 0.14.0 → 0.15.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/dist/build.tsbuildinfo +1 -1
- package/dist/common/errors.d.ts +3 -0
- package/dist/common/errors.js +8 -1
- package/dist/common/errors.js.map +1 -1
- package/dist/common/index.d.ts +1 -1
- package/dist/common/index.js +2 -1
- package/dist/common/index.js.map +1 -1
- package/dist/database/entities/workflow-step-execution.entity.d.ts +2 -3
- package/dist/database/entities/workflow-step-execution.entity.js +3 -1
- package/dist/database/entities/workflow-step-execution.entity.js.map +1 -1
- package/dist/database/migrations/1784890100000-CreateWorkflowStepExecution.js +2 -1
- package/dist/database/migrations/1784890100000-CreateWorkflowStepExecution.js.map +1 -1
- package/dist/database/typeorm-execution-store.d.ts +1 -0
- package/dist/database/typeorm-execution-store.js +4 -0
- package/dist/database/typeorm-execution-store.js.map +1 -1
- package/dist/database/typeorm-step-store.d.ts +9 -4
- package/dist/database/typeorm-step-store.js +56 -4
- package/dist/database/typeorm-step-store.js.map +1 -1
- package/dist/dependencies/external-dependencies.d.ts +3 -4
- package/dist/execution/execution-start-handler.d.ts +3 -3
- package/dist/execution/execution-start-handler.js +18 -18
- package/dist/execution/execution-start-handler.js.map +1 -1
- package/dist/execution/execution-store.d.ts +1 -0
- package/dist/execution/execution.types.d.ts +2 -0
- package/dist/execution/index.d.ts +4 -1
- package/dist/execution/index.js +7 -1
- package/dist/execution/index.js.map +1 -1
- package/dist/execution/orchestration-worker.d.ts +3 -1
- package/dist/execution/orchestration-worker.js +10 -3
- package/dist/execution/orchestration-worker.js.map +1 -1
- package/dist/execution/start-execution.service.d.ts +3 -2
- package/dist/execution/start-execution.service.js +5 -1
- package/dist/execution/start-execution.service.js.map +1 -1
- package/dist/execution/step-completed-handler.d.ts +13 -0
- package/dist/execution/step-completed-handler.js +74 -0
- package/dist/execution/step-completed-handler.js.map +1 -0
- package/dist/execution/step-ready-handler.d.ts +16 -0
- package/dist/execution/step-ready-handler.js +112 -0
- package/dist/execution/step-ready-handler.js.map +1 -0
- package/dist/execution/step-store.d.ts +11 -5
- package/dist/execution/step-store.js.map +1 -1
- package/dist/execution/step-worker.d.ts +9 -0
- package/dist/execution/step-worker.js +30 -0
- package/dist/execution/step-worker.js.map +1 -0
- package/dist/execution/validate-step-context.d.ts +4 -0
- package/dist/execution/validate-step-context.js +15 -0
- package/dist/execution/validate-step-context.js.map +1 -0
- package/dist/graph/index.d.ts +2 -1
- package/dist/graph/index.js +5 -1
- package/dist/graph/index.js.map +1 -1
- package/dist/graph/validate-executable-graph.d.ts +5 -0
- package/dist/graph/validate-executable-graph.js +41 -0
- package/dist/graph/validate-executable-graph.js.map +1 -0
- package/dist/graph/workflow-graph-queries.d.ts +1 -0
- package/dist/graph/workflow-graph-queries.js +10 -0
- package/dist/graph/workflow-graph-queries.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/queue/index.d.ts +1 -1
- package/dist/queue/index.js.map +1 -1
- package/dist/queue/work-queue.types.d.ts +6 -1
- package/dist/serve.js +10 -5
- package/dist/serve.js.map +1 -1
- package/dist/server/routes/workflow-executions.js +10 -0
- package/dist/server/routes/workflow-executions.js.map +1 -1
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/engine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "n8n workflow execution engine (v2)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist/**/*",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"LICENSE_EE.md",
|
|
10
|
+
"LICENSE.md"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"express": "5.1.0",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"reflect-metadata": "0.2.2",
|
|
16
16
|
"uuid": "11.1.1",
|
|
17
17
|
"zod": "3.25.76",
|
|
18
|
+
"@n8n/config": "2.33.0",
|
|
18
19
|
"@n8n/di": "0.16.0",
|
|
19
|
-
"@n8n/typeorm": "0.7.0"
|
|
20
|
-
"@n8n/config": "2.32.0"
|
|
20
|
+
"@n8n/typeorm": "0.7.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@testcontainers/postgresql": "^11.13.0",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"testcontainers": "^11.13.0",
|
|
29
29
|
"typescript": "7.0.2",
|
|
30
30
|
"vitest": "^4.1.9",
|
|
31
|
-
"@n8n/
|
|
32
|
-
"@n8n/
|
|
31
|
+
"@n8n/vitest-config": "1.20.0",
|
|
32
|
+
"@n8n/typescript-config": "1.9.0"
|
|
33
33
|
},
|
|
34
34
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
35
35
|
"homepage": "https://n8n.io",
|