@atom8n/n8n 2.4.7 → 2.5.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 (201) hide show
  1. package/dist/build.tsbuildinfo +1 -1
  2. package/dist/commands/execute-batch.d.ts +2 -2
  3. package/dist/commands/import/credentials.d.ts +2 -2
  4. package/dist/commands/import/workflow.d.ts +2 -2
  5. package/dist/commands/ldap/reset.d.ts +2 -2
  6. package/dist/events/relays/workflow-failure-notification.event-relay.d.ts +13 -0
  7. package/dist/events/relays/workflow-failure-notification.event-relay.js +77 -0
  8. package/dist/executions/execution-data/types.d.ts +17 -0
  9. package/dist/executions/execution-data/types.js +2 -0
  10. package/dist/executions/failed-run-factory.d.ts +4 -0
  11. package/dist/executions/failed-run-factory.js +71 -0
  12. package/dist/interfaces.d.ts +1 -1
  13. package/dist/license.js +1 -1
  14. package/dist/middlewares/webview-frame-options.d.ts +2 -0
  15. package/dist/middlewares/webview-frame-options.js +22 -0
  16. package/dist/modules/chat-hub/chat-hub-extractor.d.ts +22 -0
  17. package/dist/modules/chat-hub/chat-hub-extractor.js +63 -0
  18. package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/dynamic-credential-user-entry-storage.d.ts +11 -0
  19. package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/dynamic-credential-user-entry-storage.js +58 -0
  20. package/dist/modules/dynamic-credentials.ee/database/entities/dynamic-credential-user-entry.d.ts +12 -0
  21. package/dist/modules/dynamic-credentials.ee/database/entities/dynamic-credential-user-entry.js +64 -0
  22. package/dist/modules/dynamic-credentials.ee/database/repositories/dynamic-credential-user-entry.repository.d.ts +5 -0
  23. package/dist/modules/dynamic-credentials.ee/database/repositories/dynamic-credential-user-entry.repository.js +25 -0
  24. package/dist/modules/dynamic-credentials.ee/dynamic-credentials.config.d.ts +5 -0
  25. package/dist/modules/dynamic-credentials.ee/dynamic-credentials.config.js +36 -0
  26. package/dist/modules/dynamic-credentials.ee/services/dynamic-credential-cors.service.d.ts +12 -0
  27. package/dist/modules/dynamic-credentials.ee/services/dynamic-credential-cors.service.js +69 -0
  28. package/dist/modules/dynamic-credentials.ee/services/resolver-config-expression.service.d.ts +7 -0
  29. package/dist/modules/dynamic-credentials.ee/services/resolver-config-expression.service.js +46 -0
  30. package/dist/modules/insights/database/entities/insights-metadata.js +1 -1
  31. package/dist/modules/insights/database/repositories/insights-by-period-query.helper.js +4 -1
  32. package/dist/modules/insights/database/repositories/insights-by-period.repository.d.ts +1 -1
  33. package/dist/modules/insights/insights.module.d.ts +1 -1
  34. package/dist/modules/insights/insights.service.d.ts +1 -1
  35. package/dist/modules/log-streaming.ee/database/entities/event-destination.entity.d.ts +6 -0
  36. package/dist/modules/log-streaming.ee/database/entities/event-destination.entity.js +28 -0
  37. package/dist/modules/log-streaming.ee/database/entities/index.d.ts +1 -0
  38. package/dist/modules/log-streaming.ee/database/entities/index.js +5 -0
  39. package/dist/modules/log-streaming.ee/database/repositories/event-destination.repository.d.ts +5 -0
  40. package/dist/modules/log-streaming.ee/database/repositories/event-destination.repository.js +25 -0
  41. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-from-db.d.ts +4 -0
  42. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-from-db.js +24 -0
  43. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-sentry.ee.d.ts +17 -0
  44. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-sentry.ee.js +131 -0
  45. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-syslog.ee.d.ts +22 -0
  46. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-syslog.ee.js +116 -0
  47. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-webhook.ee.d.ts +35 -0
  48. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination-webhook.ee.js +328 -0
  49. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination.ee.d.ts +28 -0
  50. package/dist/modules/log-streaming.ee/destinations/message-event-bus-destination.ee.js +74 -0
  51. package/dist/modules/log-streaming.ee/log-streaming-destination.service.d.ts +32 -0
  52. package/dist/modules/log-streaming.ee/log-streaming-destination.service.js +175 -0
  53. package/dist/modules/log-streaming.ee/log-streaming.controller.d.ts +15 -0
  54. package/dist/modules/log-streaming.ee/log-streaming.controller.js +149 -0
  55. package/dist/modules/log-streaming.ee/log-streaming.module.d.ts +5 -0
  56. package/dist/modules/log-streaming.ee/log-streaming.module.js +66 -0
  57. package/dist/modules/mcp/tools/execute-workflow.tool.d.ts +6 -6
  58. package/dist/modules/source-control.ee/constants.d.ts +17 -0
  59. package/dist/modules/source-control.ee/constants.js +22 -0
  60. package/dist/modules/source-control.ee/middleware/source-control-enabled-middleware.ee.d.ts +2 -0
  61. package/dist/modules/source-control.ee/middleware/source-control-enabled-middleware.ee.js +18 -0
  62. package/dist/modules/source-control.ee/source-control-export.service.ee.d.ts +37 -0
  63. package/dist/modules/source-control.ee/source-control-export.service.ee.js +426 -0
  64. package/dist/modules/source-control.ee/source-control-git.service.ee.d.ts +59 -0
  65. package/dist/modules/source-control.ee/source-control-git.service.ee.js +427 -0
  66. package/dist/modules/source-control.ee/source-control-helper.ee.d.ts +49 -0
  67. package/dist/modules/source-control.ee/source-control-helper.ee.js +241 -0
  68. package/dist/modules/source-control.ee/source-control-import.service.ee.d.ts +110 -0
  69. package/dist/modules/source-control.ee/source-control-import.service.ee.js +957 -0
  70. package/dist/modules/source-control.ee/source-control-preferences.service.ee.d.ts +46 -0
  71. package/dist/modules/source-control.ee/source-control-preferences.service.ee.js +309 -0
  72. package/dist/modules/source-control.ee/source-control-resource-helper.d.ts +4 -0
  73. package/dist/modules/source-control.ee/source-control-resource-helper.js +20 -0
  74. package/dist/modules/source-control.ee/source-control-scoped.service.d.ts +17 -0
  75. package/dist/modules/source-control.ee/source-control-scoped.service.js +134 -0
  76. package/dist/modules/source-control.ee/source-control-status.service.ee.d.ts +90 -0
  77. package/dist/modules/source-control.ee/source-control-status.service.ee.js +596 -0
  78. package/dist/modules/source-control.ee/source-control.config.d.ts +3 -0
  79. package/dist/modules/source-control.ee/source-control.config.js +26 -0
  80. package/dist/modules/source-control.ee/source-control.controller.ee.d.ts +157 -0
  81. package/dist/modules/source-control.ee/source-control.controller.ee.js +347 -0
  82. package/dist/modules/source-control.ee/source-control.module.d.ts +4 -0
  83. package/dist/modules/source-control.ee/source-control.module.js +59 -0
  84. package/dist/modules/source-control.ee/source-control.service.ee.d.ts +125 -0
  85. package/dist/modules/source-control.ee/source-control.service.ee.js +466 -0
  86. package/dist/modules/source-control.ee/types/export-result.d.ts +10 -0
  87. package/dist/modules/source-control.ee/types/export-result.js +2 -0
  88. package/dist/modules/source-control.ee/types/exportable-credential.d.ts +14 -0
  89. package/dist/modules/source-control.ee/types/exportable-credential.js +2 -0
  90. package/dist/modules/source-control.ee/types/exportable-folders.d.ts +11 -0
  91. package/dist/modules/source-control.ee/types/exportable-folders.js +2 -0
  92. package/dist/modules/source-control.ee/types/exportable-project.d.ts +17 -0
  93. package/dist/modules/source-control.ee/types/exportable-project.js +2 -0
  94. package/dist/modules/source-control.ee/types/exportable-tags.d.ts +5 -0
  95. package/dist/modules/source-control.ee/types/exportable-tags.js +2 -0
  96. package/dist/modules/source-control.ee/types/exportable-variable.d.ts +7 -0
  97. package/dist/modules/source-control.ee/types/exportable-variable.js +2 -0
  98. package/dist/modules/source-control.ee/types/exportable-workflow.d.ts +14 -0
  99. package/dist/modules/source-control.ee/types/exportable-workflow.js +2 -0
  100. package/dist/modules/source-control.ee/types/import-result.d.ts +20 -0
  101. package/dist/modules/source-control.ee/types/import-result.js +2 -0
  102. package/dist/modules/source-control.ee/types/key-pair-type.d.ts +1 -0
  103. package/dist/modules/source-control.ee/types/key-pair-type.js +2 -0
  104. package/dist/modules/source-control.ee/types/key-pair.d.ts +4 -0
  105. package/dist/modules/source-control.ee/types/key-pair.js +2 -0
  106. package/dist/modules/source-control.ee/types/requests.d.ts +21 -0
  107. package/dist/modules/source-control.ee/types/requests.js +2 -0
  108. package/dist/modules/source-control.ee/types/resource-owner.d.ts +17 -0
  109. package/dist/modules/source-control.ee/types/resource-owner.js +2 -0
  110. package/dist/modules/source-control.ee/types/source-control-commit.d.ts +3 -0
  111. package/dist/modules/source-control.ee/types/source-control-commit.js +20 -0
  112. package/dist/modules/source-control.ee/types/source-control-context.d.ts +7 -0
  113. package/dist/modules/source-control.ee/types/source-control-context.js +16 -0
  114. package/dist/modules/source-control.ee/types/source-control-disconnect.d.ts +3 -0
  115. package/dist/modules/source-control.ee/types/source-control-disconnect.js +21 -0
  116. package/dist/modules/source-control.ee/types/source-control-generate-key-pair.d.ts +4 -0
  117. package/dist/modules/source-control.ee/types/source-control-generate-key-pair.js +21 -0
  118. package/dist/modules/source-control.ee/types/source-control-get-status.d.ts +10 -0
  119. package/dist/modules/source-control.ee/types/source-control-get-status.js +42 -0
  120. package/dist/modules/source-control.ee/types/source-control-preferences.d.ts +17 -0
  121. package/dist/modules/source-control.ee/types/source-control-preferences.js +88 -0
  122. package/dist/modules/source-control.ee/types/source-control-push.d.ts +3 -0
  123. package/dist/modules/source-control.ee/types/source-control-push.js +21 -0
  124. package/dist/modules/source-control.ee/types/source-control-set-branch.d.ts +3 -0
  125. package/dist/modules/source-control.ee/types/source-control-set-branch.js +20 -0
  126. package/dist/modules/source-control.ee/types/source-control-set-read-only.d.ts +3 -0
  127. package/dist/modules/source-control.ee/types/source-control-set-read-only.js +20 -0
  128. package/dist/modules/source-control.ee/types/source-control-stage.d.ts +5 -0
  129. package/dist/modules/source-control.ee/types/source-control-stage.js +31 -0
  130. package/dist/modules/source-control.ee/types/source-control-workflow-version-id.d.ts +12 -0
  131. package/dist/modules/source-control.ee/types/source-control-workflow-version-id.js +2 -0
  132. package/dist/modules/sso-oidc/constants.d.ts +3 -0
  133. package/dist/modules/sso-oidc/constants.js +6 -0
  134. package/dist/modules/sso-oidc/oidc.controller.ee.d.ts +23 -0
  135. package/dist/modules/sso-oidc/oidc.controller.ee.js +123 -0
  136. package/dist/modules/sso-oidc/oidc.service.ee.d.ts +56 -0
  137. package/dist/modules/sso-oidc/oidc.service.ee.js +468 -0
  138. package/dist/modules/sso-oidc/sso-oidc.module.d.ts +4 -0
  139. package/dist/modules/sso-oidc/sso-oidc.module.js +55 -0
  140. package/dist/modules/sso-saml/constants.d.ts +3 -0
  141. package/dist/modules/sso-saml/constants.js +6 -0
  142. package/dist/modules/sso-saml/errors/invalid-saml-metadata-url.error.d.ts +4 -0
  143. package/dist/modules/sso-saml/errors/invalid-saml-metadata-url.error.js +10 -0
  144. package/dist/modules/sso-saml/errors/invalid-saml-metadata.error.d.ts +4 -0
  145. package/dist/modules/sso-saml/errors/invalid-saml-metadata.error.js +10 -0
  146. package/dist/modules/sso-saml/middleware/saml-enabled-middleware.d.ts +3 -0
  147. package/dist/modules/sso-saml/middleware/saml-enabled-middleware.js +22 -0
  148. package/dist/modules/sso-saml/saml-helpers.d.ts +19 -0
  149. package/dist/modules/sso-saml/saml-helpers.js +129 -0
  150. package/dist/modules/sso-saml/saml-validator.d.ts +16 -0
  151. package/dist/modules/sso-saml/saml-validator.js +129 -0
  152. package/dist/modules/sso-saml/saml.controller.ee.d.ts +50 -0
  153. package/dist/modules/sso-saml/saml.controller.ee.js +227 -0
  154. package/dist/modules/sso-saml/saml.service.ee.d.ts +52 -0
  155. package/dist/modules/sso-saml/saml.service.ee.js +462 -0
  156. package/dist/modules/sso-saml/schema/metadata-exchange.xsd.d.ts +2 -0
  157. package/dist/modules/sso-saml/schema/metadata-exchange.xsd.js +118 -0
  158. package/dist/modules/sso-saml/schema/oasis-200401-wss-wssecurity-secext-1.0.xsd.d.ts +2 -0
  159. package/dist/modules/sso-saml/schema/oasis-200401-wss-wssecurity-secext-1.0.xsd.js +201 -0
  160. package/dist/modules/sso-saml/schema/oasis-200401-wss-wssecurity-utility-1.0.xsd.d.ts +2 -0
  161. package/dist/modules/sso-saml/schema/oasis-200401-wss-wssecurity-utility-1.0.xsd.js +114 -0
  162. package/dist/modules/sso-saml/schema/saml-schema-assertion-2.0.xsd.d.ts +2 -0
  163. package/dist/modules/sso-saml/schema/saml-schema-assertion-2.0.xsd.js +289 -0
  164. package/dist/modules/sso-saml/schema/saml-schema-metadata-2.0.xsd.d.ts +2 -0
  165. package/dist/modules/sso-saml/schema/saml-schema-metadata-2.0.xsd.js +344 -0
  166. package/dist/modules/sso-saml/schema/saml-schema-protocol-2.0.xsd.d.ts +2 -0
  167. package/dist/modules/sso-saml/schema/saml-schema-protocol-2.0.xsd.js +308 -0
  168. package/dist/modules/sso-saml/schema/ws-addr.xsd.d.ts +2 -0
  169. package/dist/modules/sso-saml/schema/ws-addr.xsd.js +143 -0
  170. package/dist/modules/sso-saml/schema/ws-authorization.xsd.d.ts +2 -0
  171. package/dist/modules/sso-saml/schema/ws-authorization.xsd.js +151 -0
  172. package/dist/modules/sso-saml/schema/ws-federation.xsd.d.ts +2 -0
  173. package/dist/modules/sso-saml/schema/ws-federation.xsd.js +476 -0
  174. package/dist/modules/sso-saml/schema/ws-securitypolicy-1.2.xsd.d.ts +2 -0
  175. package/dist/modules/sso-saml/schema/ws-securitypolicy-1.2.xsd.js +1211 -0
  176. package/dist/modules/sso-saml/schema/xenc-schema.xsd.d.ts +2 -0
  177. package/dist/modules/sso-saml/schema/xenc-schema.xsd.js +151 -0
  178. package/dist/modules/sso-saml/schema/xml.xsd.d.ts +2 -0
  179. package/dist/modules/sso-saml/schema/xml.xsd.js +123 -0
  180. package/dist/modules/sso-saml/schema/xmldsig-core-schema.xsd.d.ts +2 -0
  181. package/dist/modules/sso-saml/schema/xmldsig-core-schema.xsd.js +324 -0
  182. package/dist/modules/sso-saml/service-provider.ee.d.ts +6 -0
  183. package/dist/modules/sso-saml/service-provider.ee.js +44 -0
  184. package/dist/modules/sso-saml/sso-saml.module.d.ts +4 -0
  185. package/dist/modules/sso-saml/sso-saml.module.js +55 -0
  186. package/dist/modules/sso-saml/types.d.ts +4 -0
  187. package/dist/modules/sso-saml/types.js +2 -0
  188. package/dist/modules/sso-saml/views/init-sso-post.d.ts +2 -0
  189. package/dist/modules/sso-saml/views/init-sso-post.js +16 -0
  190. package/dist/push/index.d.ts +1 -1
  191. package/dist/services/cors-service.d.ts +7 -0
  192. package/dist/services/cors-service.js +50 -0
  193. package/dist/services/static-auth-service.d.ts +4 -0
  194. package/dist/services/static-auth-service.js +29 -0
  195. package/dist/user-management/email/templates/workflow-failure.handlebars +211 -0
  196. package/dist/utils/cors.util.d.ts +2 -0
  197. package/dist/utils/cors.util.js +17 -0
  198. package/dist/webhooks/waiting-forms.js +3 -3
  199. package/dist/webhooks/waiting-webhooks.js +2 -0
  200. package/dist/workflows/workflows.controller.d.ts +2 -2
  201. package/package.json +21 -21

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.