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.
- package/dist/active-workflow-manager.js +5 -3
- package/dist/active-workflow-manager.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/chat/chat-execution-manager.js +1 -1
- package/dist/chat/chat-execution-manager.js.map +1 -1
- package/dist/commands/import/credentials.js.map +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +2 -2
- package/dist/constants.js.map +1 -1
- package/dist/controllers/ai.controller.js +3 -3
- package/dist/controllers/ai.controller.js.map +1 -1
- package/dist/controllers/dynamic-node-parameters.controller.js +29 -7
- package/dist/controllers/dynamic-node-parameters.controller.js.map +1 -1
- package/dist/controllers/posthog.controller.d.ts +17 -0
- package/dist/controllers/posthog.controller.js +131 -0
- package/dist/controllers/posthog.controller.js.map +1 -0
- package/dist/controllers/users.controller.d.ts +2 -2
- package/dist/credentials/credentials.service.js.map +1 -1
- package/dist/credentials-helper.js.map +1 -1
- package/dist/environments.ee/source-control/source-control-import.service.ee.d.ts +10 -4
- package/dist/environments.ee/source-control/source-control-import.service.ee.js +69 -9
- package/dist/environments.ee/source-control/source-control-import.service.ee.js.map +1 -1
- package/dist/environments.ee/source-control/source-control-status.service.ee.d.ts +10 -1
- package/dist/environments.ee/source-control/source-control-status.service.ee.js +112 -2
- package/dist/environments.ee/source-control/source-control-status.service.ee.js.map +1 -1
- package/dist/environments.ee/source-control/source-control.controller.ee.d.ts +10 -0
- package/dist/environments.ee/source-control/source-control.service.ee.d.ts +5 -0
- package/dist/environments.ee/source-control/types/exportable-project.d.ts +5 -2
- package/dist/environments.ee/source-control/types/resource-owner.d.ts +4 -2
- package/dist/environments.ee/variables/variables.service.ee.js +3 -1
- package/dist/environments.ee/variables/variables.service.ee.js.map +1 -1
- package/dist/events/relays/telemetry.event-relay.d.ts +1 -1
- package/dist/events/relays/telemetry.event-relay.js +2 -1
- package/dist/events/relays/telemetry.event-relay.js.map +1 -1
- package/dist/interfaces.d.ts +1 -0
- package/dist/modules/chat-hub/chat-hub.controller.d.ts +17 -0
- package/dist/modules/chat-hub/chat-hub.controller.js +106 -0
- package/dist/modules/chat-hub/chat-hub.controller.js.map +1 -0
- package/dist/modules/chat-hub/chat-hub.module.d.ts +8 -0
- package/dist/modules/chat-hub/chat-hub.module.js +78 -0
- package/dist/modules/chat-hub/chat-hub.module.js.map +1 -0
- package/dist/modules/chat-hub/chat-hub.service.d.ts +34 -0
- package/dist/modules/chat-hub/chat-hub.service.js +549 -0
- package/dist/modules/chat-hub/chat-hub.service.js.map +1 -0
- package/dist/modules/chat-hub/chat-hub.settings.controller.d.ts +16 -0
- package/dist/modules/chat-hub/chat-hub.settings.controller.js +66 -0
- package/dist/modules/chat-hub/chat-hub.settings.controller.js.map +1 -0
- package/dist/modules/chat-hub/chat-hub.settings.service.d.ts +7 -0
- package/dist/modules/chat-hub/chat-hub.settings.service.js +36 -0
- package/dist/modules/chat-hub/chat-hub.settings.service.js.map +1 -0
- package/dist/modules/chat-hub/chat-hub.types.d.ts +17 -0
- package/dist/modules/chat-hub/chat-hub.types.js +3 -0
- package/dist/modules/chat-hub/chat-hub.types.js.map +1 -0
- package/dist/modules/chat-hub/dto/chat-message-request.dto.d.ts +9 -0
- package/dist/modules/chat-hub/dto/chat-message-request.dto.js +12 -0
- package/dist/modules/chat-hub/dto/chat-message-request.dto.js.map +1 -0
- package/dist/modules/chat-hub/dto/chat-models-request.dto.d.ts +7 -0
- package/dist/modules/chat-hub/dto/chat-models-request.dto.js +9 -0
- package/dist/modules/chat-hub/dto/chat-models-request.dto.js.map +1 -0
- package/dist/modules/chat-hub/dto/update-chat-settings.dto.d.ts +8 -0
- package/dist/modules/chat-hub/dto/update-chat-settings.dto.js +11 -0
- package/dist/modules/chat-hub/dto/update-chat-settings.dto.js.map +1 -0
- package/dist/modules/data-table/data-table-aggregate.controller.d.ts +14 -0
- package/dist/modules/data-table/{data-store-aggregate.controller.js → data-table-aggregate.controller.js} +21 -21
- package/dist/modules/data-table/{data-store-aggregate.controller.js.map → data-table-aggregate.controller.js.map} +1 -1
- package/dist/modules/data-table/{data-store-aggregate.service.d.ts → data-table-aggregate.service.d.ts} +6 -6
- package/dist/modules/data-table/{data-store-aggregate.service.js → data-table-aggregate.service.js} +11 -11
- package/dist/modules/data-table/{data-store-aggregate.service.js.map → data-table-aggregate.service.js.map} +1 -1
- package/dist/modules/data-table/{data-store-column.repository.d.ts → data-table-column.repository.d.ts} +7 -7
- package/dist/modules/data-table/{data-store-column.repository.js → data-table-column.repository.js} +23 -23
- package/dist/modules/data-table/data-table-column.repository.js.map +1 -0
- package/dist/modules/data-table/data-table-ddl.service.d.ts +10 -0
- package/dist/modules/data-table/data-table-ddl.service.js +56 -0
- package/dist/modules/data-table/data-table-ddl.service.js.map +1 -0
- package/dist/modules/data-table/data-table-proxy.service.d.ts +20 -0
- package/dist/modules/data-table/{data-store-proxy.service.js → data-table-proxy.service.js} +34 -34
- package/dist/modules/data-table/{data-store-proxy.service.js.map → data-table-proxy.service.js.map} +1 -1
- package/dist/modules/data-table/data-table-rows.repository.d.ts +31 -0
- package/dist/modules/data-table/{data-store-rows.repository.js → data-table-rows.repository.js} +39 -68
- package/dist/modules/data-table/data-table-rows.repository.js.map +1 -0
- package/dist/modules/data-table/{data-store-size-validator.service.d.ts → data-table-size-validator.service.d.ts} +4 -2
- package/dist/modules/data-table/{data-store-size-validator.service.js → data-table-size-validator.service.js} +20 -11
- package/dist/modules/data-table/data-table-size-validator.service.js.map +1 -0
- package/dist/modules/data-table/data-table.controller.d.ts +55 -0
- package/dist/modules/data-table/{data-store.controller.js → data-table.controller.js} +119 -119
- package/dist/modules/data-table/{data-store.controller.js.map → data-table.controller.js.map} +1 -1
- package/dist/modules/data-table/data-table.module.d.ts +2 -2
- package/dist/modules/data-table/data-table.module.js +18 -18
- package/dist/modules/data-table/data-table.module.js.map +1 -1
- package/dist/modules/data-table/data-table.repository.d.ts +34 -0
- package/dist/modules/data-table/{data-store.repository.js → data-table.repository.js} +44 -44
- package/dist/modules/data-table/data-table.repository.js.map +1 -0
- package/dist/modules/data-table/data-table.service.d.ts +62 -0
- package/dist/modules/data-table/data-table.service.js +331 -0
- package/dist/modules/data-table/data-table.service.js.map +1 -0
- package/dist/modules/data-table/{data-store.types.d.ts → data-table.types.d.ts} +1 -1
- package/dist/modules/data-table/{data-store.types.js → data-table.types.js} +1 -1
- package/dist/modules/data-table/data-table.types.js.map +1 -0
- package/dist/modules/data-table/errors/data-table-column-name-conflict.error.d.ts +4 -0
- package/dist/modules/data-table/errors/data-table-column-name-conflict.error.js +13 -0
- package/dist/modules/data-table/errors/{data-store-column-name-conflict.error.js.map → data-table-column-name-conflict.error.js.map} +1 -1
- package/dist/modules/data-table/errors/data-table-column-not-found.error.d.ts +4 -0
- package/dist/modules/data-table/errors/data-table-column-not-found.error.js +13 -0
- package/dist/modules/data-table/errors/{data-store-column-not-found.error.js.map → data-table-column-not-found.error.js.map} +1 -1
- package/dist/modules/data-table/errors/{data-store-name-conflict.error.d.ts → data-table-name-conflict.error.d.ts} +1 -1
- package/dist/modules/data-table/errors/data-table-name-conflict.error.js +13 -0
- package/dist/modules/data-table/errors/{data-store-name-conflict.error.js.map → data-table-name-conflict.error.js.map} +1 -1
- package/dist/modules/data-table/errors/data-table-not-found.error.d.ts +4 -0
- package/dist/modules/data-table/errors/data-table-not-found.error.js +13 -0
- package/dist/modules/data-table/errors/data-table-not-found.error.js.map +1 -0
- 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
- package/dist/modules/data-table/errors/{data-store-system-column-name-conflict.error.js → data-table-system-column-name-conflict.error.js} +4 -4
- 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
- package/dist/modules/data-table/errors/{data-store-validation.error.d.ts → data-table-validation.error.d.ts} +1 -1
- package/dist/modules/data-table/errors/data-table-validation.error.js +13 -0
- package/dist/modules/data-table/errors/{data-store-validation.error.js.map → data-table-validation.error.js.map} +1 -1
- package/dist/modules/data-table/utils/sql-utils.d.ts +11 -16
- package/dist/modules/data-table/utils/sql-utils.js +53 -45
- package/dist/modules/data-table/utils/sql-utils.js.map +1 -1
- package/dist/modules/insights/database/entities/insights-by-period.js.map +1 -1
- package/dist/modules/insights/database/entities/insights-raw.js.map +1 -1
- package/dist/modules/insights/database/repositories/insights-by-period-query.helper.d.ts +6 -0
- package/dist/modules/insights/database/repositories/insights-by-period-query.helper.js +76 -0
- package/dist/modules/insights/database/repositories/insights-by-period-query.helper.js.map +1 -0
- package/dist/modules/insights/database/repositories/insights-by-period.repository.d.ts +1 -3
- package/dist/modules/insights/database/repositories/insights-by-period.repository.js +8 -58
- package/dist/modules/insights/database/repositories/insights-by-period.repository.js.map +1 -1
- package/dist/modules/insights/insights.controller.js +3 -1
- package/dist/modules/insights/insights.controller.js.map +1 -1
- package/dist/modules/insights/insights.service.js +1 -1
- package/dist/modules/insights/insights.service.js.map +1 -1
- package/dist/modules/mcp/dto/update-workflow-availability.dto.d.ts +8 -0
- package/dist/modules/mcp/dto/update-workflow-availability.dto.js +11 -0
- package/dist/modules/mcp/dto/update-workflow-availability.dto.js.map +1 -0
- package/dist/modules/mcp/mcp.controller.js +1 -1
- package/dist/modules/mcp/mcp.settings.controller.d.ts +12 -1
- package/dist/modules/mcp/mcp.settings.controller.js +55 -4
- package/dist/modules/mcp/mcp.settings.controller.js.map +1 -1
- package/dist/modules/mcp/tools/get-workflow-details.tool.js +1 -1
- package/dist/modules/mcp/tools/get-workflow-details.tool.js.map +1 -1
- package/dist/public-api/v1/handlers/variables/variables.handler.d.ts +1 -2
- package/dist/public-api/v1/handlers/variables/variables.handler.js +7 -1
- package/dist/public-api/v1/handlers/variables/variables.handler.js.map +1 -1
- package/dist/public-api/v1/handlers/workflows/workflows.service.js.map +1 -1
- package/dist/public-api/v1/openapi.yml +44 -5
- package/dist/requests.d.ts +8 -1
- package/dist/scaling/job-processor.d.ts +1 -1
- package/dist/scaling/job-processor.js +4 -1
- package/dist/scaling/job-processor.js.map +1 -1
- package/dist/server.js +1 -0
- package/dist/server.js.map +1 -1
- package/dist/services/credentials-tester.service.d.ts +1 -1
- package/dist/services/credentials-tester.service.js +11 -4
- package/dist/services/credentials-tester.service.js.map +1 -1
- package/dist/services/dynamic-node-parameters.service.js +1 -1
- package/dist/services/frontend.service.js +1 -0
- package/dist/services/frontend.service.js.map +1 -1
- package/dist/services/import.service.d.ts +3 -1
- package/dist/services/import.service.js +8 -2
- package/dist/services/import.service.js.map +1 -1
- package/dist/services/project.service.ee.js +4 -4
- package/dist/services/project.service.ee.js.map +1 -1
- package/dist/services/public-api-key.service.js.map +1 -1
- package/dist/task-runners/task-broker/task-broker-ws-server.js +1 -1
- package/dist/task-runners/task-broker/task-broker-ws-server.js.map +1 -1
- package/dist/telemetry/index.d.ts +2 -0
- package/dist/telemetry/index.js +11 -2
- package/dist/telemetry/index.js.map +1 -1
- package/dist/utils/compression.util.js +2 -1
- package/dist/utils/compression.util.js.map +1 -1
- package/dist/wait-tracker.js +2 -1
- package/dist/wait-tracker.js.map +1 -1
- package/dist/webhooks/live-webhooks.d.ts +1 -1
- package/dist/webhooks/live-webhooks.js +7 -3
- package/dist/webhooks/live-webhooks.js.map +1 -1
- package/dist/webhooks/test-webhooks.d.ts +2 -2
- package/dist/webhooks/test-webhooks.js +8 -5
- package/dist/webhooks/test-webhooks.js.map +1 -1
- package/dist/webhooks/waiting-webhooks.d.ts +1 -1
- package/dist/webhooks/waiting-webhooks.js +5 -3
- package/dist/webhooks/waiting-webhooks.js.map +1 -1
- package/dist/webhooks/webhook-helpers.js +4 -2
- package/dist/webhooks/webhook-helpers.js.map +1 -1
- package/dist/workflow-execute-additional-data.d.ts +7 -1
- package/dist/workflow-execute-additional-data.js +2 -2
- package/dist/workflow-execute-additional-data.js.map +1 -1
- package/dist/workflow-helpers.d.ts +3 -2
- package/dist/workflow-helpers.js +27 -5
- package/dist/workflow-helpers.js.map +1 -1
- package/dist/workflow-runner.js +5 -1
- package/dist/workflow-runner.js.map +1 -1
- package/dist/workflows/workflow-execution.service.d.ts +2 -1
- package/dist/workflows/workflow-execution.service.js +7 -2
- package/dist/workflows/workflow-execution.service.js.map +1 -1
- package/dist/workflows/workflow-finder.service.d.ts +1 -1
- package/dist/workflows/workflow.service.ee.js.map +1 -1
- package/dist/workflows/workflows.controller.d.ts +4 -4
- package/dist/workflows/workflows.controller.js.map +1 -1
- package/package.json +17 -17
- package/dist/modules/data-table/data-store-aggregate.controller.d.ts +0 -14
- package/dist/modules/data-table/data-store-column.repository.js.map +0 -1
- package/dist/modules/data-table/data-store-proxy.service.d.ts +0 -20
- package/dist/modules/data-table/data-store-rows.repository.d.ts +0 -40
- package/dist/modules/data-table/data-store-rows.repository.js.map +0 -1
- package/dist/modules/data-table/data-store-size-validator.service.js.map +0 -1
- package/dist/modules/data-table/data-store.controller.d.ts +0 -60
- package/dist/modules/data-table/data-store.repository.d.ts +0 -34
- package/dist/modules/data-table/data-store.repository.js.map +0 -1
- package/dist/modules/data-table/data-store.service.d.ts +0 -64
- package/dist/modules/data-table/data-store.service.js +0 -323
- package/dist/modules/data-table/data-store.service.js.map +0 -1
- package/dist/modules/data-table/data-store.types.js.map +0 -1
- package/dist/modules/data-table/errors/data-store-column-name-conflict.error.d.ts +0 -4
- package/dist/modules/data-table/errors/data-store-column-name-conflict.error.js +0 -13
- package/dist/modules/data-table/errors/data-store-column-not-found.error.d.ts +0 -4
- package/dist/modules/data-table/errors/data-store-column-not-found.error.js +0 -13
- package/dist/modules/data-table/errors/data-store-name-conflict.error.js +0 -13
- package/dist/modules/data-table/errors/data-store-not-found.error.d.ts +0 -4
- package/dist/modules/data-table/errors/data-store-not-found.error.js +0 -13
- package/dist/modules/data-table/errors/data-store-not-found.error.js.map +0 -1
- 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.