@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.
Files changed (67) hide show
  1. package/dist/build.tsbuildinfo +1 -1
  2. package/dist/common/errors.d.ts +3 -0
  3. package/dist/common/errors.js +8 -1
  4. package/dist/common/errors.js.map +1 -1
  5. package/dist/common/index.d.ts +1 -1
  6. package/dist/common/index.js +2 -1
  7. package/dist/common/index.js.map +1 -1
  8. package/dist/database/entities/workflow-step-execution.entity.d.ts +2 -3
  9. package/dist/database/entities/workflow-step-execution.entity.js +3 -1
  10. package/dist/database/entities/workflow-step-execution.entity.js.map +1 -1
  11. package/dist/database/migrations/1784890100000-CreateWorkflowStepExecution.js +2 -1
  12. package/dist/database/migrations/1784890100000-CreateWorkflowStepExecution.js.map +1 -1
  13. package/dist/database/typeorm-execution-store.d.ts +1 -0
  14. package/dist/database/typeorm-execution-store.js +4 -0
  15. package/dist/database/typeorm-execution-store.js.map +1 -1
  16. package/dist/database/typeorm-step-store.d.ts +9 -4
  17. package/dist/database/typeorm-step-store.js +56 -4
  18. package/dist/database/typeorm-step-store.js.map +1 -1
  19. package/dist/dependencies/external-dependencies.d.ts +3 -4
  20. package/dist/execution/execution-start-handler.d.ts +3 -3
  21. package/dist/execution/execution-start-handler.js +18 -18
  22. package/dist/execution/execution-start-handler.js.map +1 -1
  23. package/dist/execution/execution-store.d.ts +1 -0
  24. package/dist/execution/execution.types.d.ts +2 -0
  25. package/dist/execution/index.d.ts +4 -1
  26. package/dist/execution/index.js +7 -1
  27. package/dist/execution/index.js.map +1 -1
  28. package/dist/execution/orchestration-worker.d.ts +3 -1
  29. package/dist/execution/orchestration-worker.js +10 -3
  30. package/dist/execution/orchestration-worker.js.map +1 -1
  31. package/dist/execution/start-execution.service.d.ts +3 -2
  32. package/dist/execution/start-execution.service.js +5 -1
  33. package/dist/execution/start-execution.service.js.map +1 -1
  34. package/dist/execution/step-completed-handler.d.ts +13 -0
  35. package/dist/execution/step-completed-handler.js +74 -0
  36. package/dist/execution/step-completed-handler.js.map +1 -0
  37. package/dist/execution/step-ready-handler.d.ts +16 -0
  38. package/dist/execution/step-ready-handler.js +112 -0
  39. package/dist/execution/step-ready-handler.js.map +1 -0
  40. package/dist/execution/step-store.d.ts +11 -5
  41. package/dist/execution/step-store.js.map +1 -1
  42. package/dist/execution/step-worker.d.ts +9 -0
  43. package/dist/execution/step-worker.js +30 -0
  44. package/dist/execution/step-worker.js.map +1 -0
  45. package/dist/execution/validate-step-context.d.ts +4 -0
  46. package/dist/execution/validate-step-context.js +15 -0
  47. package/dist/execution/validate-step-context.js.map +1 -0
  48. package/dist/graph/index.d.ts +2 -1
  49. package/dist/graph/index.js +5 -1
  50. package/dist/graph/index.js.map +1 -1
  51. package/dist/graph/validate-executable-graph.d.ts +5 -0
  52. package/dist/graph/validate-executable-graph.js +41 -0
  53. package/dist/graph/validate-executable-graph.js.map +1 -0
  54. package/dist/graph/workflow-graph-queries.d.ts +1 -0
  55. package/dist/graph/workflow-graph-queries.js +10 -0
  56. package/dist/graph/workflow-graph-queries.js.map +1 -1
  57. package/dist/index.d.ts +3 -3
  58. package/dist/index.js +4 -1
  59. package/dist/index.js.map +1 -1
  60. package/dist/queue/index.d.ts +1 -1
  61. package/dist/queue/index.js.map +1 -1
  62. package/dist/queue/work-queue.types.d.ts +6 -1
  63. package/dist/serve.js +10 -5
  64. package/dist/serve.js.map +1 -1
  65. package/dist/server/routes/workflow-executions.js +10 -0
  66. package/dist/server/routes/workflow-executions.js.map +1 -1
  67. package/package.json +7 -7
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@n8n/engine",
3
- "version": "0.14.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
- "LICENSE.md",
10
- "LICENSE_EE.md"
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/typescript-config": "1.9.0",
32
- "@n8n/vitest-config": "1.19.0"
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",