n8n 2.38.0 → 2.38.2

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 (174) hide show
  1. package/dist/active-workflow-manager.d.ts +8 -8
  2. package/dist/active-workflow-manager.js +38 -23
  3. package/dist/active-workflow-manager.js.map +1 -1
  4. package/dist/build.tsbuildinfo +1 -1
  5. package/dist/chat/chat-execution-manager.d.ts +5 -0
  6. package/dist/chat/chat-execution-manager.js +50 -10
  7. package/dist/chat/chat-execution-manager.js.map +1 -1
  8. package/dist/chat/chat-service.d.ts +0 -1
  9. package/dist/chat/chat-service.js +12 -18
  10. package/dist/chat/chat-service.js.map +1 -1
  11. package/dist/chat/utils.d.ts +1 -0
  12. package/dist/chat/utils.js +14 -4
  13. package/dist/chat/utils.js.map +1 -1
  14. package/dist/controllers/invitation.controller.d.ts +1 -5
  15. package/dist/controllers/invitation.controller.js +3 -32
  16. package/dist/controllers/invitation.controller.js.map +1 -1
  17. package/dist/controllers/role.controller.d.ts +3 -1
  18. package/dist/controllers/role.controller.js +19 -3
  19. package/dist/controllers/role.controller.js.map +1 -1
  20. package/dist/controllers/users.controller.d.ts +2 -27
  21. package/dist/controllers/users.controller.js +6 -132
  22. package/dist/controllers/users.controller.js.map +1 -1
  23. package/dist/credentials/credentials.service.js +24 -3
  24. package/dist/credentials/credentials.service.js.map +1 -1
  25. package/dist/errors/subworkflow-policy-denial.error.d.ts +4 -1
  26. package/dist/errors/subworkflow-policy-denial.error.js +26 -10
  27. package/dist/errors/subworkflow-policy-denial.error.js.map +1 -1
  28. package/dist/evaluation.ee/evaluation-test-run.service.d.ts +46 -0
  29. package/dist/evaluation.ee/evaluation-test-run.service.js +65 -0
  30. package/dist/evaluation.ee/evaluation-test-run.service.js.map +1 -0
  31. package/dist/evaluation.ee/insights/insights-context-builder.js +4 -2
  32. package/dist/evaluation.ee/insights/insights-context-builder.js.map +1 -1
  33. package/dist/evaluation.ee/test-runs.controller.ee.d.ts +1 -1
  34. package/dist/evaluation.ee/test-runs.controller.ee.js +5 -2
  35. package/dist/evaluation.ee/test-runs.controller.ee.js.map +1 -1
  36. package/dist/executions/execution-recovery.service.d.ts +3 -1
  37. package/dist/executions/execution-recovery.service.js +13 -4
  38. package/dist/executions/execution-recovery.service.js.map +1 -1
  39. package/dist/executions/pre-execution-checks/subworkflow-policy-checker.d.ts +5 -2
  40. package/dist/executions/pre-execution-checks/subworkflow-policy-checker.js +28 -8
  41. package/dist/executions/pre-execution-checks/subworkflow-policy-checker.js.map +1 -1
  42. package/dist/modules/agents/agent-interrupted-execution-sweeper.d.ts +5 -1
  43. package/dist/modules/agents/agent-interrupted-execution-sweeper.js +14 -2
  44. package/dist/modules/agents/agent-interrupted-execution-sweeper.js.map +1 -1
  45. package/dist/modules/agents/agent-runtime-reconstruction.service.d.ts +1 -0
  46. package/dist/modules/agents/agent-runtime-reconstruction.service.js +39 -4
  47. package/dist/modules/agents/agent-runtime-reconstruction.service.js.map +1 -1
  48. package/dist/modules/agents/agents.module.d.ts +1 -1
  49. package/dist/modules/agents/agents.module.js +3 -0
  50. package/dist/modules/agents/agents.module.js.map +1 -1
  51. package/dist/modules/agents/background/agent-background-job.service.d.ts +34 -0
  52. package/dist/modules/agents/background/agent-background-job.service.js +168 -0
  53. package/dist/modules/agents/background/agent-background-job.service.js.map +1 -0
  54. package/dist/modules/agents/background/background-job-tools.d.ts +21 -0
  55. package/dist/modules/agents/background/background-job-tools.js +157 -0
  56. package/dist/modules/agents/background/background-job-tools.js.map +1 -0
  57. package/dist/modules/agents/background/sub-agent-background-runner.d.ts +27 -0
  58. package/dist/modules/agents/background/sub-agent-background-runner.js +123 -0
  59. package/dist/modules/agents/background/sub-agent-background-runner.js.map +1 -0
  60. package/dist/modules/agents/entities/agent-background-job.entity.d.ts +18 -0
  61. package/dist/modules/agents/entities/agent-background-job.entity.js +78 -0
  62. package/dist/modules/agents/entities/agent-background-job.entity.js.map +1 -0
  63. package/dist/modules/agents/repositories/agent-background-job.repository.d.ts +37 -0
  64. package/dist/modules/agents/repositories/agent-background-job.repository.js +61 -0
  65. package/dist/modules/agents/repositories/agent-background-job.repository.js.map +1 -0
  66. package/dist/modules/agents/sub-agents/delegate-sub-agent-tool.d.ts +4 -5
  67. package/dist/modules/agents/sub-agents/delegate-sub-agent-tool.js +4 -14
  68. package/dist/modules/agents/sub-agents/delegate-sub-agent-tool.js.map +1 -1
  69. package/dist/modules/agents/sub-agents/format-sub-agent-tool-output.d.ts +3 -0
  70. package/dist/modules/agents/sub-agents/format-sub-agent-tool-output.js +14 -0
  71. package/dist/modules/agents/sub-agents/format-sub-agent-tool-output.js.map +1 -0
  72. package/dist/modules/agents/sub-agents/{sub-agent-foreground-runner.d.ts → sub-agent-runner.d.ts} +5 -5
  73. package/dist/modules/agents/sub-agents/{sub-agent-foreground-runner.js → sub-agent-runner.js} +8 -11
  74. package/dist/modules/agents/sub-agents/sub-agent-runner.js.map +1 -0
  75. package/dist/modules/agents/tools/workflow-tool-factory.d.ts +2 -0
  76. package/dist/modules/agents/tools/workflow-tool-factory.js +2 -1
  77. package/dist/modules/agents/tools/workflow-tool-factory.js.map +1 -1
  78. package/dist/modules/chat-hub/chat-hub.service.d.ts +3 -1
  79. package/dist/modules/chat-hub/chat-hub.service.js +8 -2
  80. package/dist/modules/chat-hub/chat-hub.service.js.map +1 -1
  81. package/dist/modules/community-packages/community-packages.service.js +4 -0
  82. package/dist/modules/community-packages/community-packages.service.js.map +1 -1
  83. package/dist/modules/instance-ai/eval/execution.service.js +1 -1
  84. package/dist/modules/instance-ai/eval/execution.service.js.map +1 -1
  85. package/dist/modules/log-streaming.ee/destinations/destination-credentials-access.d.ts +4 -0
  86. package/dist/modules/log-streaming.ee/destinations/destination-credentials-access.js +21 -0
  87. package/dist/modules/log-streaming.ee/destinations/destination-credentials-access.js.map +1 -0
  88. package/dist/modules/log-streaming.ee/log-streaming.controller.d.ts +4 -2
  89. package/dist/modules/log-streaming.ee/log-streaming.controller.js +13 -4
  90. package/dist/modules/log-streaming.ee/log-streaming.controller.js.map +1 -1
  91. package/dist/modules/mcp/tools/workflow-builder/constants.d.ts +1 -0
  92. package/dist/modules/mcp/tools/workflow-builder/constants.js +2 -1
  93. package/dist/modules/mcp/tools/workflow-builder/constants.js.map +1 -1
  94. package/dist/modules/mcp/tools/workflow-builder/create-workflow-from-code.tool.js +2 -1
  95. package/dist/modules/mcp/tools/workflow-builder/create-workflow-from-code.tool.js.map +1 -1
  96. package/dist/modules/mcp/tools/workflow-builder/validate-workflow-code.tool.js +2 -1
  97. package/dist/modules/mcp/tools/workflow-builder/validate-workflow-code.tool.js.map +1 -1
  98. package/dist/modules/oauth-server/oauth-server.service.js +29 -0
  99. package/dist/modules/oauth-server/oauth-server.service.js.map +1 -1
  100. package/dist/modules/oauth-server/oauth-session.service.d.ts +1 -0
  101. package/dist/modules/oauth-server/oauth-session.service.js +5 -5
  102. package/dist/modules/oauth-server/oauth-session.service.js.map +1 -1
  103. package/dist/modules/source-control.ee/source-control.service.ee.d.ts +1 -0
  104. package/dist/modules/source-control.ee/source-control.service.ee.js +24 -20
  105. package/dist/modules/source-control.ee/source-control.service.ee.js.map +1 -1
  106. package/dist/modules/sso-oidc/oidc.controller.ee.js +1 -0
  107. package/dist/modules/sso-oidc/oidc.controller.ee.js.map +1 -1
  108. package/dist/modules/sso-oidc/oidc.service.ee.d.ts +1 -0
  109. package/dist/modules/sso-oidc/oidc.service.ee.js +7 -0
  110. package/dist/modules/sso-oidc/oidc.service.ee.js.map +1 -1
  111. package/dist/public-api/v1/handlers/evaluations/evaluations.handler.js +11 -35
  112. package/dist/public-api/v1/handlers/evaluations/evaluations.handler.js.map +1 -1
  113. package/dist/public-api/v1/handlers/log-streaming/log-streaming.handler.js +10 -3
  114. package/dist/public-api/v1/handlers/log-streaming/log-streaming.handler.js.map +1 -1
  115. package/dist/public-api/v1/handlers/users/users.handler.ee.d.ts +1 -1
  116. package/dist/public-api/v1/handlers/users/users.handler.ee.js +16 -18
  117. package/dist/public-api/v1/handlers/users/users.handler.ee.js.map +1 -1
  118. package/dist/public-api/v1/handlers/users/users.mapper.d.ts +12 -0
  119. package/dist/public-api/v1/handlers/users/users.mapper.js +27 -0
  120. package/dist/public-api/v1/handlers/users/users.mapper.js.map +1 -0
  121. package/dist/push/abstract.push.js +2 -1
  122. package/dist/push/abstract.push.js.map +1 -1
  123. package/dist/scaling/constants.d.ts +2 -2
  124. package/dist/scaling/constants.js +1 -0
  125. package/dist/scaling/constants.js.map +1 -1
  126. package/dist/scaling/pubsub/pubsub.event-map.d.ts +3 -0
  127. package/dist/scaling/pubsub/pubsub.types.d.ts +2 -1
  128. package/dist/server.d.ts +1 -0
  129. package/dist/server.js +25 -25
  130. package/dist/server.js.map +1 -1
  131. package/dist/services/active-workflows.service.d.ts +4 -5
  132. package/dist/services/active-workflows.service.js +11 -12
  133. package/dist/services/active-workflows.service.js.map +1 -1
  134. package/dist/services/credentials-tester.service.d.ts +1 -0
  135. package/dist/services/credentials-tester.service.js +9 -1
  136. package/dist/services/credentials-tester.service.js.map +1 -1
  137. package/dist/services/project.service.ee.d.ts +1 -0
  138. package/dist/services/project.service.ee.js +3 -0
  139. package/dist/services/project.service.ee.js.map +1 -1
  140. package/dist/services/user.service.d.ts +41 -8
  141. package/dist/services/user.service.js +174 -8
  142. package/dist/services/user.service.js.map +1 -1
  143. package/dist/task-runners/task-broker/auth/task-broker-auth.service.js +1 -2
  144. package/dist/task-runners/task-broker/auth/task-broker-auth.service.js.map +1 -1
  145. package/dist/utils/request-path.d.ts +2 -0
  146. package/dist/utils/request-path.js +58 -0
  147. package/dist/utils/request-path.js.map +1 -0
  148. package/dist/webhooks/hitl-interaction-webhooks.d.ts +1 -0
  149. package/dist/webhooks/hitl-interaction-webhooks.js +5 -3
  150. package/dist/webhooks/hitl-interaction-webhooks.js.map +1 -1
  151. package/dist/webhooks/slack-interaction-webhooks.d.ts +1 -0
  152. package/dist/webhooks/slack-interaction-webhooks.js +4 -0
  153. package/dist/webhooks/slack-interaction-webhooks.js.map +1 -1
  154. package/dist/webhooks/telegram-interaction-webhooks.d.ts +1 -0
  155. package/dist/webhooks/telegram-interaction-webhooks.js +4 -0
  156. package/dist/webhooks/telegram-interaction-webhooks.js.map +1 -1
  157. package/dist/webhooks/webhook-request-sanitizer.js +8 -0
  158. package/dist/webhooks/webhook-request-sanitizer.js.map +1 -1
  159. package/dist/webhooks/webhook-response-headers.js +11 -2
  160. package/dist/webhooks/webhook-response-headers.js.map +1 -1
  161. package/dist/workflows/publication/publication-status-reporter.d.ts +4 -4
  162. package/dist/workflows/publication/publication-status-reporter.js +16 -16
  163. package/dist/workflows/publication/publication-status-reporter.js.map +1 -1
  164. package/dist/workflows/workflow-push-notifier.service.d.ts +9 -0
  165. package/dist/workflows/workflow-push-notifier.service.js +31 -0
  166. package/dist/workflows/workflow-push-notifier.service.js.map +1 -0
  167. package/dist/workflows/workflow-sharing.service.d.ts +7 -3
  168. package/dist/workflows/workflow-sharing.service.js +29 -2
  169. package/dist/workflows/workflow-sharing.service.js.map +1 -1
  170. package/package.json +35 -35
  171. package/dist/modules/agents/sub-agents/sub-agent-foreground-runner.js.map +0 -1
  172. package/dist/public-api/v1/handlers/users/users.service.ee.d.ts +0 -21
  173. package/dist/public-api/v1/handlers/users/users.service.ee.js +0 -68
  174. package/dist/public-api/v1/handlers/users/users.service.ee.js.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.