n8n 1.115.1 → 1.116.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 (221) hide show
  1. package/dist/active-workflow-manager.js +5 -3
  2. package/dist/active-workflow-manager.js.map +1 -1
  3. package/dist/build.tsbuildinfo +1 -1
  4. package/dist/chat/chat-execution-manager.js +1 -1
  5. package/dist/chat/chat-execution-manager.js.map +1 -1
  6. package/dist/commands/import/credentials.js.map +1 -1
  7. package/dist/constants.d.ts +1 -1
  8. package/dist/constants.js +2 -2
  9. package/dist/constants.js.map +1 -1
  10. package/dist/controllers/ai.controller.js +3 -3
  11. package/dist/controllers/ai.controller.js.map +1 -1
  12. package/dist/controllers/dynamic-node-parameters.controller.js +29 -7
  13. package/dist/controllers/dynamic-node-parameters.controller.js.map +1 -1
  14. package/dist/controllers/posthog.controller.d.ts +17 -0
  15. package/dist/controllers/posthog.controller.js +131 -0
  16. package/dist/controllers/posthog.controller.js.map +1 -0
  17. package/dist/controllers/users.controller.d.ts +2 -2
  18. package/dist/credentials/credentials.service.js.map +1 -1
  19. package/dist/credentials-helper.js.map +1 -1
  20. package/dist/environments.ee/source-control/source-control-import.service.ee.d.ts +10 -4
  21. package/dist/environments.ee/source-control/source-control-import.service.ee.js +69 -9
  22. package/dist/environments.ee/source-control/source-control-import.service.ee.js.map +1 -1
  23. package/dist/environments.ee/source-control/source-control-status.service.ee.d.ts +10 -1
  24. package/dist/environments.ee/source-control/source-control-status.service.ee.js +112 -2
  25. package/dist/environments.ee/source-control/source-control-status.service.ee.js.map +1 -1
  26. package/dist/environments.ee/source-control/source-control.controller.ee.d.ts +10 -0
  27. package/dist/environments.ee/source-control/source-control.service.ee.d.ts +5 -0
  28. package/dist/environments.ee/source-control/types/exportable-project.d.ts +5 -2
  29. package/dist/environments.ee/source-control/types/resource-owner.d.ts +4 -2
  30. package/dist/environments.ee/variables/variables.service.ee.js +3 -1
  31. package/dist/environments.ee/variables/variables.service.ee.js.map +1 -1
  32. package/dist/events/relays/telemetry.event-relay.d.ts +1 -1
  33. package/dist/events/relays/telemetry.event-relay.js +2 -1
  34. package/dist/events/relays/telemetry.event-relay.js.map +1 -1
  35. package/dist/interfaces.d.ts +1 -0
  36. package/dist/modules/chat-hub/chat-hub.controller.d.ts +17 -0
  37. package/dist/modules/chat-hub/chat-hub.controller.js +106 -0
  38. package/dist/modules/chat-hub/chat-hub.controller.js.map +1 -0
  39. package/dist/modules/chat-hub/chat-hub.module.d.ts +8 -0
  40. package/dist/modules/chat-hub/chat-hub.module.js +78 -0
  41. package/dist/modules/chat-hub/chat-hub.module.js.map +1 -0
  42. package/dist/modules/chat-hub/chat-hub.service.d.ts +34 -0
  43. package/dist/modules/chat-hub/chat-hub.service.js +549 -0
  44. package/dist/modules/chat-hub/chat-hub.service.js.map +1 -0
  45. package/dist/modules/chat-hub/chat-hub.settings.controller.d.ts +16 -0
  46. package/dist/modules/chat-hub/chat-hub.settings.controller.js +66 -0
  47. package/dist/modules/chat-hub/chat-hub.settings.controller.js.map +1 -0
  48. package/dist/modules/chat-hub/chat-hub.settings.service.d.ts +7 -0
  49. package/dist/modules/chat-hub/chat-hub.settings.service.js +36 -0
  50. package/dist/modules/chat-hub/chat-hub.settings.service.js.map +1 -0
  51. package/dist/modules/chat-hub/chat-hub.types.d.ts +17 -0
  52. package/dist/modules/chat-hub/chat-hub.types.js +3 -0
  53. package/dist/modules/chat-hub/chat-hub.types.js.map +1 -0
  54. package/dist/modules/chat-hub/dto/chat-message-request.dto.d.ts +9 -0
  55. package/dist/modules/chat-hub/dto/chat-message-request.dto.js +12 -0
  56. package/dist/modules/chat-hub/dto/chat-message-request.dto.js.map +1 -0
  57. package/dist/modules/chat-hub/dto/chat-models-request.dto.d.ts +7 -0
  58. package/dist/modules/chat-hub/dto/chat-models-request.dto.js +9 -0
  59. package/dist/modules/chat-hub/dto/chat-models-request.dto.js.map +1 -0
  60. package/dist/modules/chat-hub/dto/update-chat-settings.dto.d.ts +8 -0
  61. package/dist/modules/chat-hub/dto/update-chat-settings.dto.js +11 -0
  62. package/dist/modules/chat-hub/dto/update-chat-settings.dto.js.map +1 -0
  63. package/dist/modules/data-table/data-table-aggregate.controller.d.ts +14 -0
  64. package/dist/modules/data-table/{data-store-aggregate.controller.js → data-table-aggregate.controller.js} +21 -21
  65. package/dist/modules/data-table/{data-store-aggregate.controller.js.map → data-table-aggregate.controller.js.map} +1 -1
  66. package/dist/modules/data-table/{data-store-aggregate.service.d.ts → data-table-aggregate.service.d.ts} +6 -6
  67. package/dist/modules/data-table/{data-store-aggregate.service.js → data-table-aggregate.service.js} +11 -11
  68. package/dist/modules/data-table/{data-store-aggregate.service.js.map → data-table-aggregate.service.js.map} +1 -1
  69. package/dist/modules/data-table/{data-store-column.repository.d.ts → data-table-column.repository.d.ts} +7 -7
  70. package/dist/modules/data-table/{data-store-column.repository.js → data-table-column.repository.js} +23 -23
  71. package/dist/modules/data-table/data-table-column.repository.js.map +1 -0
  72. package/dist/modules/data-table/data-table-ddl.service.d.ts +10 -0
  73. package/dist/modules/data-table/data-table-ddl.service.js +56 -0
  74. package/dist/modules/data-table/data-table-ddl.service.js.map +1 -0
  75. package/dist/modules/data-table/data-table-proxy.service.d.ts +20 -0
  76. package/dist/modules/data-table/{data-store-proxy.service.js → data-table-proxy.service.js} +34 -34
  77. package/dist/modules/data-table/{data-store-proxy.service.js.map → data-table-proxy.service.js.map} +1 -1
  78. package/dist/modules/data-table/data-table-rows.repository.d.ts +31 -0
  79. package/dist/modules/data-table/{data-store-rows.repository.js → data-table-rows.repository.js} +39 -68
  80. package/dist/modules/data-table/data-table-rows.repository.js.map +1 -0
  81. package/dist/modules/data-table/{data-store-size-validator.service.d.ts → data-table-size-validator.service.d.ts} +4 -2
  82. package/dist/modules/data-table/{data-store-size-validator.service.js → data-table-size-validator.service.js} +20 -11
  83. package/dist/modules/data-table/data-table-size-validator.service.js.map +1 -0
  84. package/dist/modules/data-table/data-table.controller.d.ts +55 -0
  85. package/dist/modules/data-table/{data-store.controller.js → data-table.controller.js} +119 -119
  86. package/dist/modules/data-table/{data-store.controller.js.map → data-table.controller.js.map} +1 -1
  87. package/dist/modules/data-table/data-table.module.d.ts +2 -2
  88. package/dist/modules/data-table/data-table.module.js +18 -18
  89. package/dist/modules/data-table/data-table.module.js.map +1 -1
  90. package/dist/modules/data-table/data-table.repository.d.ts +34 -0
  91. package/dist/modules/data-table/{data-store.repository.js → data-table.repository.js} +44 -44
  92. package/dist/modules/data-table/data-table.repository.js.map +1 -0
  93. package/dist/modules/data-table/data-table.service.d.ts +62 -0
  94. package/dist/modules/data-table/data-table.service.js +331 -0
  95. package/dist/modules/data-table/data-table.service.js.map +1 -0
  96. package/dist/modules/data-table/{data-store.types.d.ts → data-table.types.d.ts} +1 -1
  97. package/dist/modules/data-table/{data-store.types.js → data-table.types.js} +1 -1
  98. package/dist/modules/data-table/data-table.types.js.map +1 -0
  99. package/dist/modules/data-table/errors/data-table-column-name-conflict.error.d.ts +4 -0
  100. package/dist/modules/data-table/errors/data-table-column-name-conflict.error.js +13 -0
  101. package/dist/modules/data-table/errors/{data-store-column-name-conflict.error.js.map → data-table-column-name-conflict.error.js.map} +1 -1
  102. package/dist/modules/data-table/errors/data-table-column-not-found.error.d.ts +4 -0
  103. package/dist/modules/data-table/errors/data-table-column-not-found.error.js +13 -0
  104. package/dist/modules/data-table/errors/{data-store-column-not-found.error.js.map → data-table-column-not-found.error.js.map} +1 -1
  105. package/dist/modules/data-table/errors/{data-store-name-conflict.error.d.ts → data-table-name-conflict.error.d.ts} +1 -1
  106. package/dist/modules/data-table/errors/data-table-name-conflict.error.js +13 -0
  107. package/dist/modules/data-table/errors/{data-store-name-conflict.error.js.map → data-table-name-conflict.error.js.map} +1 -1
  108. package/dist/modules/data-table/errors/data-table-not-found.error.d.ts +4 -0
  109. package/dist/modules/data-table/errors/data-table-not-found.error.js +13 -0
  110. package/dist/modules/data-table/errors/data-table-not-found.error.js.map +1 -0
  111. package/dist/modules/data-table/errors/{data-store-system-column-name-conflict.error.d.ts → data-table-system-column-name-conflict.error.d.ts} +1 -1
  112. package/dist/modules/data-table/errors/{data-store-system-column-name-conflict.error.js → data-table-system-column-name-conflict.error.js} +4 -4
  113. package/dist/modules/data-table/errors/{data-store-system-column-name-conflict.error.js.map → data-table-system-column-name-conflict.error.js.map} +1 -1
  114. package/dist/modules/data-table/errors/{data-store-validation.error.d.ts → data-table-validation.error.d.ts} +1 -1
  115. package/dist/modules/data-table/errors/data-table-validation.error.js +13 -0
  116. package/dist/modules/data-table/errors/{data-store-validation.error.js.map → data-table-validation.error.js.map} +1 -1
  117. package/dist/modules/data-table/utils/sql-utils.d.ts +11 -16
  118. package/dist/modules/data-table/utils/sql-utils.js +53 -45
  119. package/dist/modules/data-table/utils/sql-utils.js.map +1 -1
  120. package/dist/modules/insights/database/entities/insights-by-period.js.map +1 -1
  121. package/dist/modules/insights/database/entities/insights-raw.js.map +1 -1
  122. package/dist/modules/insights/database/repositories/insights-by-period-query.helper.d.ts +6 -0
  123. package/dist/modules/insights/database/repositories/insights-by-period-query.helper.js +76 -0
  124. package/dist/modules/insights/database/repositories/insights-by-period-query.helper.js.map +1 -0
  125. package/dist/modules/insights/database/repositories/insights-by-period.repository.d.ts +1 -3
  126. package/dist/modules/insights/database/repositories/insights-by-period.repository.js +8 -58
  127. package/dist/modules/insights/database/repositories/insights-by-period.repository.js.map +1 -1
  128. package/dist/modules/insights/insights.controller.js +3 -1
  129. package/dist/modules/insights/insights.controller.js.map +1 -1
  130. package/dist/modules/insights/insights.service.js +1 -1
  131. package/dist/modules/insights/insights.service.js.map +1 -1
  132. package/dist/modules/mcp/dto/update-workflow-availability.dto.d.ts +8 -0
  133. package/dist/modules/mcp/dto/update-workflow-availability.dto.js +11 -0
  134. package/dist/modules/mcp/dto/update-workflow-availability.dto.js.map +1 -0
  135. package/dist/modules/mcp/mcp.controller.js +1 -1
  136. package/dist/modules/mcp/mcp.settings.controller.d.ts +12 -1
  137. package/dist/modules/mcp/mcp.settings.controller.js +55 -4
  138. package/dist/modules/mcp/mcp.settings.controller.js.map +1 -1
  139. package/dist/modules/mcp/tools/get-workflow-details.tool.js +1 -1
  140. package/dist/modules/mcp/tools/get-workflow-details.tool.js.map +1 -1
  141. package/dist/public-api/v1/handlers/variables/variables.handler.d.ts +1 -2
  142. package/dist/public-api/v1/handlers/variables/variables.handler.js +7 -1
  143. package/dist/public-api/v1/handlers/variables/variables.handler.js.map +1 -1
  144. package/dist/public-api/v1/handlers/workflows/workflows.service.js.map +1 -1
  145. package/dist/public-api/v1/openapi.yml +44 -5
  146. package/dist/requests.d.ts +8 -1
  147. package/dist/scaling/job-processor.d.ts +1 -1
  148. package/dist/scaling/job-processor.js +4 -1
  149. package/dist/scaling/job-processor.js.map +1 -1
  150. package/dist/server.js +1 -0
  151. package/dist/server.js.map +1 -1
  152. package/dist/services/credentials-tester.service.d.ts +1 -1
  153. package/dist/services/credentials-tester.service.js +11 -4
  154. package/dist/services/credentials-tester.service.js.map +1 -1
  155. package/dist/services/dynamic-node-parameters.service.js +1 -1
  156. package/dist/services/frontend.service.js +1 -0
  157. package/dist/services/frontend.service.js.map +1 -1
  158. package/dist/services/import.service.d.ts +3 -1
  159. package/dist/services/import.service.js +8 -2
  160. package/dist/services/import.service.js.map +1 -1
  161. package/dist/services/project.service.ee.js +4 -4
  162. package/dist/services/project.service.ee.js.map +1 -1
  163. package/dist/services/public-api-key.service.js.map +1 -1
  164. package/dist/task-runners/task-broker/task-broker-ws-server.js +1 -1
  165. package/dist/task-runners/task-broker/task-broker-ws-server.js.map +1 -1
  166. package/dist/telemetry/index.d.ts +2 -0
  167. package/dist/telemetry/index.js +11 -2
  168. package/dist/telemetry/index.js.map +1 -1
  169. package/dist/utils/compression.util.js +2 -1
  170. package/dist/utils/compression.util.js.map +1 -1
  171. package/dist/wait-tracker.js +2 -1
  172. package/dist/wait-tracker.js.map +1 -1
  173. package/dist/webhooks/live-webhooks.d.ts +1 -1
  174. package/dist/webhooks/live-webhooks.js +7 -3
  175. package/dist/webhooks/live-webhooks.js.map +1 -1
  176. package/dist/webhooks/test-webhooks.d.ts +2 -2
  177. package/dist/webhooks/test-webhooks.js +8 -5
  178. package/dist/webhooks/test-webhooks.js.map +1 -1
  179. package/dist/webhooks/waiting-webhooks.d.ts +1 -1
  180. package/dist/webhooks/waiting-webhooks.js +5 -3
  181. package/dist/webhooks/waiting-webhooks.js.map +1 -1
  182. package/dist/webhooks/webhook-helpers.js +4 -2
  183. package/dist/webhooks/webhook-helpers.js.map +1 -1
  184. package/dist/workflow-execute-additional-data.d.ts +7 -1
  185. package/dist/workflow-execute-additional-data.js +2 -2
  186. package/dist/workflow-execute-additional-data.js.map +1 -1
  187. package/dist/workflow-helpers.d.ts +3 -2
  188. package/dist/workflow-helpers.js +27 -5
  189. package/dist/workflow-helpers.js.map +1 -1
  190. package/dist/workflow-runner.js +5 -1
  191. package/dist/workflow-runner.js.map +1 -1
  192. package/dist/workflows/workflow-execution.service.d.ts +2 -1
  193. package/dist/workflows/workflow-execution.service.js +7 -2
  194. package/dist/workflows/workflow-execution.service.js.map +1 -1
  195. package/dist/workflows/workflow-finder.service.d.ts +1 -1
  196. package/dist/workflows/workflow.service.ee.js.map +1 -1
  197. package/dist/workflows/workflows.controller.d.ts +4 -4
  198. package/dist/workflows/workflows.controller.js.map +1 -1
  199. package/package.json +17 -17
  200. package/dist/modules/data-table/data-store-aggregate.controller.d.ts +0 -14
  201. package/dist/modules/data-table/data-store-column.repository.js.map +0 -1
  202. package/dist/modules/data-table/data-store-proxy.service.d.ts +0 -20
  203. package/dist/modules/data-table/data-store-rows.repository.d.ts +0 -40
  204. package/dist/modules/data-table/data-store-rows.repository.js.map +0 -1
  205. package/dist/modules/data-table/data-store-size-validator.service.js.map +0 -1
  206. package/dist/modules/data-table/data-store.controller.d.ts +0 -60
  207. package/dist/modules/data-table/data-store.repository.d.ts +0 -34
  208. package/dist/modules/data-table/data-store.repository.js.map +0 -1
  209. package/dist/modules/data-table/data-store.service.d.ts +0 -64
  210. package/dist/modules/data-table/data-store.service.js +0 -323
  211. package/dist/modules/data-table/data-store.service.js.map +0 -1
  212. package/dist/modules/data-table/data-store.types.js.map +0 -1
  213. package/dist/modules/data-table/errors/data-store-column-name-conflict.error.d.ts +0 -4
  214. package/dist/modules/data-table/errors/data-store-column-name-conflict.error.js +0 -13
  215. package/dist/modules/data-table/errors/data-store-column-not-found.error.d.ts +0 -4
  216. package/dist/modules/data-table/errors/data-store-column-not-found.error.js +0 -13
  217. package/dist/modules/data-table/errors/data-store-name-conflict.error.js +0 -13
  218. package/dist/modules/data-table/errors/data-store-not-found.error.d.ts +0 -4
  219. package/dist/modules/data-table/errors/data-store-not-found.error.js +0 -13
  220. package/dist/modules/data-table/errors/data-store-not-found.error.js.map +0 -1
  221. package/dist/modules/data-table/errors/data-store-validation.error.js +0 -13

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.