n8n 2.0.3 → 2.1.1
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-executions.js +7 -1
- package/dist/active-executions.js.map +1 -1
- package/dist/active-workflow-manager.d.ts +0 -1
- package/dist/active-workflow-manager.js +5 -8
- package/dist/active-workflow-manager.js.map +1 -1
- package/dist/auth/auth.service.js +1 -7
- package/dist/auth/auth.service.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/commands/base-command.js +1 -2
- package/dist/commands/base-command.js.map +1 -1
- package/dist/commands/start.js +3 -0
- package/dist/commands/start.js.map +1 -1
- package/dist/commands/user-management/reset.js +1 -1
- package/dist/commands/user-management/reset.js.map +1 -1
- package/dist/commands/worker.js +3 -0
- package/dist/commands/worker.js.map +1 -1
- package/dist/concurrency/concurrency-control.service.js +2 -1
- package/dist/concurrency/concurrency-control.service.js.map +1 -1
- package/dist/config/schema.js.map +1 -1
- package/dist/config/types.d.ts +0 -1
- package/dist/controllers/ai.controller.d.ts +3 -0
- package/dist/controllers/ai.controller.js +2 -1
- package/dist/controllers/ai.controller.js.map +1 -1
- package/dist/controllers/api-keys.controller.js +5 -0
- package/dist/controllers/api-keys.controller.js.map +1 -1
- package/dist/controllers/e2e.controller.d.ts +1 -0
- package/dist/controllers/e2e.controller.js +10 -11
- package/dist/controllers/e2e.controller.js.map +1 -1
- package/dist/controllers/invitation.controller.d.ts +3 -1
- package/dist/controllers/invitation.controller.js +6 -7
- package/dist/controllers/invitation.controller.js.map +1 -1
- package/dist/controllers/oauth/oauth1-credential.controller.d.ts +6 -3
- package/dist/controllers/oauth/oauth1-credential.controller.js +39 -57
- package/dist/controllers/oauth/oauth1-credential.controller.js.map +1 -1
- package/dist/controllers/oauth/oauth2-credential.controller.d.ts +8 -5
- package/dist/controllers/oauth/oauth2-credential.controller.js +41 -179
- package/dist/controllers/oauth/oauth2-credential.controller.js.map +1 -1
- package/dist/controllers/owner.controller.d.ts +4 -10
- package/dist/controllers/owner.controller.js +6 -42
- package/dist/controllers/owner.controller.js.map +1 -1
- package/dist/controllers/project.controller.d.ts +4 -0
- package/dist/credentials/credential-resolution-provider.interface.d.ts +12 -0
- package/dist/credentials/credential-resolution-provider.interface.js +3 -0
- package/dist/credentials/credential-resolution-provider.interface.js.map +1 -0
- package/dist/credentials/credentials-finder.service.d.ts +4 -0
- package/dist/credentials/credentials-finder.service.js +3 -0
- package/dist/credentials/credentials-finder.service.js.map +1 -1
- package/dist/credentials/credentials.controller.d.ts +12 -4
- package/dist/credentials/credentials.controller.js +9 -6
- package/dist/credentials/credentials.controller.js.map +1 -1
- package/dist/credentials/credentials.service.d.ts +13 -0
- package/dist/credentials/credentials.service.ee.d.ts +9 -2
- package/dist/credentials/credentials.service.ee.js +4 -1
- package/dist/credentials/credentials.service.ee.js.map +1 -1
- package/dist/credentials/credentials.service.js +10 -6
- package/dist/credentials/credentials.service.js.map +1 -1
- package/dist/credentials/dynamic-credential-storage.interface.d.ts +11 -0
- package/dist/credentials/dynamic-credential-storage.interface.js +3 -0
- package/dist/credentials/dynamic-credential-storage.interface.js.map +1 -0
- package/dist/credentials/dynamic-credentials-proxy.d.ts +14 -0
- package/dist/credentials/dynamic-credentials-proxy.js +50 -0
- package/dist/credentials/dynamic-credentials-proxy.js.map +1 -0
- package/dist/credentials-helper.d.ts +5 -2
- package/dist/credentials-helper.js +25 -7
- package/dist/credentials-helper.js.map +1 -1
- 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 +2 -2
- package/dist/environments.ee/source-control/source-control.controller.ee.d.ts +4 -4
- package/dist/environments.ee/source-control/source-control.service.ee.d.ts +2 -2
- package/dist/environments.ee/source-control/source-control.service.ee.js +67 -39
- package/dist/environments.ee/source-control/source-control.service.ee.js.map +1 -1
- package/dist/errors/single-webhook-trigger.error.d.ts +4 -0
- package/dist/errors/single-webhook-trigger.error.js +11 -0
- package/dist/errors/single-webhook-trigger.error.js.map +1 -0
- package/dist/eventbus/event-message-classes/index.d.ts +2 -2
- package/dist/eventbus/event-message-classes/index.js +1 -0
- package/dist/eventbus/event-message-classes/index.js.map +1 -1
- package/dist/events/maps/relay.event-map.d.ts +6 -1
- package/dist/events/relays/log-streaming.event-relay.d.ts +1 -0
- package/dist/events/relays/log-streaming.event-relay.js +12 -0
- package/dist/events/relays/log-streaming.event-relay.js.map +1 -1
- package/dist/events/relays/telemetry.event-relay.js +14 -3
- package/dist/events/relays/telemetry.event-relay.js.map +1 -1
- package/dist/execution-lifecycle/execution-lifecycle-hooks.d.ts +2 -2
- package/dist/execution-lifecycle/execution-lifecycle-hooks.js +15 -3
- package/dist/execution-lifecycle/execution-lifecycle-hooks.js.map +1 -1
- package/dist/license.d.ts +6 -0
- package/dist/license.js +27 -0
- package/dist/license.js.map +1 -1
- package/dist/load-nodes-and-credentials.d.ts +2 -0
- package/dist/load-nodes-and-credentials.js +97 -86
- package/dist/load-nodes-and-credentials.js.map +1 -1
- package/dist/modules/breaking-changes/rules/index.d.ts +1 -1
- package/dist/modules/breaking-changes/rules/v2/index.d.ts +2 -1
- package/dist/modules/breaking-changes/rules/v2/index.js +2 -0
- package/dist/modules/breaking-changes/rules/v2/index.js.map +1 -1
- package/dist/modules/breaking-changes/rules/v2/pyodide-removed.rule.js +2 -1
- package/dist/modules/breaking-changes/rules/v2/pyodide-removed.rule.js.map +1 -1
- package/dist/modules/breaking-changes/rules/v2/settings-file-permissions.rule.d.ts +3 -3
- package/dist/modules/breaking-changes/rules/v2/settings-file-permissions.rule.js +11 -4
- package/dist/modules/breaking-changes/rules/v2/settings-file-permissions.rule.js.map +1 -1
- package/dist/modules/breaking-changes/rules/v2/start-node-removed.rule.d.ts +11 -0
- package/dist/modules/breaking-changes/rules/v2/start-node-removed.rule.js +63 -0
- package/dist/modules/breaking-changes/rules/v2/start-node-removed.rule.js.map +1 -0
- package/dist/modules/breaking-changes/rules/v2/task-runner-docker-image.rule.d.ts +3 -0
- package/dist/modules/breaking-changes/rules/v2/task-runner-docker-image.rule.js +15 -2
- package/dist/modules/breaking-changes/rules/v2/task-runner-docker-image.rule.js.map +1 -1
- package/dist/modules/breaking-changes/rules/v2/task-runners.rule.d.ts +3 -2
- package/dist/modules/breaking-changes/rules/v2/task-runners.rule.js +11 -2
- package/dist/modules/breaking-changes/rules/v2/task-runners.rule.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub-agent.entity.d.ts +4 -3
- package/dist/modules/chat-hub/chat-hub-agent.entity.js +4 -0
- package/dist/modules/chat-hub/chat-hub-agent.entity.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub-agent.service.d.ts +5 -21
- package/dist/modules/chat-hub/chat-hub-agent.service.js +17 -11
- package/dist/modules/chat-hub/chat-hub-agent.service.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub-credentials.service.js +4 -2
- package/dist/modules/chat-hub/chat-hub-credentials.service.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub-message.entity.js +1 -1
- package/dist/modules/chat-hub/chat-hub-message.entity.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub-session.entity.d.ts +2 -0
- package/dist/modules/chat-hub/chat-hub-session.entity.js +6 -1
- package/dist/modules/chat-hub/chat-hub-session.entity.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub-workflow.service.d.ts +17 -4
- package/dist/modules/chat-hub/chat-hub-workflow.service.js +161 -31
- package/dist/modules/chat-hub/chat-hub-workflow.service.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.attachment.service.d.ts +2 -0
- package/dist/modules/chat-hub/chat-hub.attachment.service.js +12 -0
- package/dist/modules/chat-hub/chat-hub.attachment.service.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.constants.d.ts +7 -3
- package/dist/modules/chat-hub/chat-hub.constants.js +468 -10
- package/dist/modules/chat-hub/chat-hub.constants.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.controller.d.ts +3 -1
- package/dist/modules/chat-hub/chat-hub.controller.js +7 -14
- package/dist/modules/chat-hub/chat-hub.controller.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.models.service.d.ts +35 -0
- package/dist/modules/chat-hub/chat-hub.models.service.js +640 -0
- package/dist/modules/chat-hub/chat-hub.models.service.js.map +1 -0
- package/dist/modules/chat-hub/chat-hub.module.js +0 -8
- package/dist/modules/chat-hub/chat-hub.module.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.service.d.ts +13 -26
- package/dist/modules/chat-hub/chat-hub.service.js +162 -760
- package/dist/modules/chat-hub/chat-hub.service.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.types.d.ts +27 -6
- package/dist/modules/chat-hub/chat-hub.types.js +11 -3
- package/dist/modules/chat-hub/chat-hub.types.js.map +1 -1
- package/dist/modules/chat-hub/chat-session.repository.js +17 -2
- package/dist/modules/chat-hub/chat-session.repository.js.map +1 -1
- package/dist/modules/chat-hub/context-limits.js +62 -5
- package/dist/modules/chat-hub/context-limits.js.map +1 -1
- package/dist/modules/data-table/data-table-column.repository.d.ts +15 -0
- package/dist/modules/data-table/data-table-column.repository.js +33 -17
- package/dist/modules/data-table/data-table-column.repository.js.map +1 -1
- package/dist/modules/data-table/data-table-ddl.service.d.ts +1 -0
- package/dist/modules/data-table/data-table-ddl.service.js +5 -0
- package/dist/modules/data-table/data-table-ddl.service.js.map +1 -1
- package/dist/modules/data-table/data-table-rows.repository.js +1 -1
- package/dist/modules/data-table/data-table-rows.repository.js.map +1 -1
- package/dist/modules/data-table/data-table.controller.d.ts +16 -1
- package/dist/modules/data-table/data-table.controller.js +39 -35
- package/dist/modules/data-table/data-table.controller.js.map +1 -1
- package/dist/modules/data-table/data-table.repository.d.ts +4 -1
- package/dist/modules/data-table/data-table.repository.js +12 -2
- package/dist/modules/data-table/data-table.repository.js.map +1 -1
- package/dist/modules/data-table/data-table.service.d.ts +13 -1
- package/dist/modules/data-table/data-table.service.js +13 -1
- package/dist/modules/data-table/data-table.service.js.map +1 -1
- package/dist/modules/data-table/errors/data-table-column-not-found.error.d.ts +2 -2
- package/dist/modules/data-table/errors/data-table-column-not-found.error.js +3 -5
- package/dist/modules/data-table/errors/data-table-column-not-found.error.js.map +1 -1
- package/dist/modules/data-table/errors/data-table-not-found.error.d.ts +2 -2
- package/dist/modules/data-table/errors/data-table-not-found.error.js +3 -5
- package/dist/modules/data-table/errors/data-table-not-found.error.js.map +1 -1
- package/dist/modules/data-table/utils/sql-utils.d.ts +1 -0
- package/dist/modules/data-table/utils/sql-utils.js +10 -0
- package/dist/modules/data-table/utils/sql-utils.js.map +1 -1
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/bearer-token-extractor.d.ts +9 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/bearer-token-extractor.js +42 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/bearer-token-extractor.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/http-header-extractor.d.ts +9 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/http-header-extractor.js +141 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/http-header-extractor.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/index.d.ts +2 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/index.js +5 -0
- package/dist/modules/dynamic-credentials.ee/context-establishment-hooks/index.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/identifier-interface.d.ts +7 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/identifier-interface.js +7 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/identifier-interface.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-introspection-identifier.d.ts +78 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-introspection-identifier.js +223 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-introspection-identifier.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-userinfo-identifier.d.ts +37 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-userinfo-identifier.js +160 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-userinfo-identifier.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-utils.d.ts +13 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-utils.js +17 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/identifiers/oauth2-utils.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/index.d.ts +2 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/index.js +5 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/index.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/oauth-credential-resolver.d.ts +103 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/oauth-credential-resolver.js +174 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/oauth-credential-resolver.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/dynamic-credential-entry-storage.d.ts +9 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/dynamic-credential-entry-storage.js +56 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/dynamic-credential-entry-storage.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/storage-interface.d.ts +5 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/storage-interface.js +3 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/storage/storage-interface.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/stub-credential-resolver.d.ts +28 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/stub-credential-resolver.js +86 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers/stub-credential-resolver.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers.controller.d.ts +16 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers.controller.js +172 -0
- package/dist/modules/dynamic-credentials.ee/credential-resolvers.controller.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/database/entities/credential-resolver.d.ts +8 -0
- package/dist/modules/dynamic-credentials.ee/database/entities/credential-resolver.js +33 -0
- package/dist/modules/dynamic-credentials.ee/database/entities/credential-resolver.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/database/entities/dynamic-credential-entry.d.ts +11 -0
- package/dist/modules/dynamic-credentials.ee/database/entities/dynamic-credential-entry.js +60 -0
- package/dist/modules/dynamic-credentials.ee/database/entities/dynamic-credential-entry.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/database/repositories/credential-resolver.repository.d.ts +5 -0
- package/dist/modules/dynamic-credentials.ee/database/repositories/credential-resolver.repository.js +26 -0
- package/dist/modules/dynamic-credentials.ee/database/repositories/credential-resolver.repository.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/database/repositories/dynamic-credential-entry.repository.d.ts +5 -0
- package/dist/modules/dynamic-credentials.ee/database/repositories/dynamic-credential-entry.repository.js +26 -0
- package/dist/modules/dynamic-credentials.ee/database/repositories/dynamic-credential-entry.repository.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/dynamic-credentials.controller.d.ts +9 -0
- package/dist/modules/dynamic-credentials.ee/dynamic-credentials.controller.js +61 -0
- package/dist/modules/dynamic-credentials.ee/dynamic-credentials.controller.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/dynamic-credentials.module.d.ts +6 -0
- package/dist/modules/dynamic-credentials.ee/dynamic-credentials.module.js +91 -0
- package/dist/modules/dynamic-credentials.ee/dynamic-credentials.module.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-resolution.error.d.ts +6 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-resolution.error.js +12 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-resolution.error.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-resolver-not-found.error.d.ts +4 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-resolver-not-found.error.js +11 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-resolver-not-found.error.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-storage.error.d.ts +6 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-storage.error.js +12 -0
- package/dist/modules/dynamic-credentials.ee/errors/credential-storage.error.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver-registry.service.d.ts +11 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver-registry.service.js +64 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver-registry.service.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver-workflow.service.d.ts +22 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver-workflow.service.js +150 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver-workflow.service.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver.service.d.ts +33 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver.service.js +118 -0
- package/dist/modules/dynamic-credentials.ee/services/credential-resolver.service.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/services/dynamic-credential-storage.service.d.ts +18 -0
- package/dist/modules/dynamic-credentials.ee/services/dynamic-credential-storage.service.js +94 -0
- package/dist/modules/dynamic-credentials.ee/services/dynamic-credential-storage.service.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/services/dynamic-credential.service.d.ts +20 -0
- package/dist/modules/dynamic-credentials.ee/services/dynamic-credential.service.js +146 -0
- package/dist/modules/dynamic-credentials.ee/services/dynamic-credential.service.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/services/index.d.ts +5 -0
- package/dist/modules/dynamic-credentials.ee/services/index.js +22 -0
- package/dist/modules/dynamic-credentials.ee/services/index.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/services/shared-fields.d.ts +2 -0
- package/dist/modules/dynamic-credentials.ee/services/shared-fields.js +13 -0
- package/dist/modules/dynamic-credentials.ee/services/shared-fields.js.map +1 -0
- package/dist/modules/dynamic-credentials.ee/workflow-status.controller.d.ts +8 -0
- package/dist/modules/dynamic-credentials.ee/workflow-status.controller.js +62 -0
- package/dist/modules/dynamic-credentials.ee/workflow-status.controller.js.map +1 -0
- package/dist/modules/external-secrets.ee/external-secrets-manager.ee.js +40 -24
- package/dist/modules/external-secrets.ee/external-secrets-manager.ee.js.map +1 -1
- package/dist/modules/insights/database/repositories/insights-by-period.repository.d.ts +2 -2
- package/dist/modules/insights/insights-collection.service.d.ts +2 -0
- package/dist/modules/insights/insights-collection.service.js +30 -6
- package/dist/modules/insights/insights-collection.service.js.map +1 -1
- package/dist/modules/insights/insights.service.d.ts +1 -1
- package/dist/modules/workflow-index/workflow-index.service.js +17 -10
- package/dist/modules/workflow-index/workflow-index.service.js.map +1 -1
- package/dist/oauth/oauth.service.d.ts +52 -0
- package/dist/oauth/oauth.service.js +417 -0
- package/dist/oauth/oauth.service.js.map +1 -0
- package/dist/oauth/types.d.ts +28 -0
- package/dist/oauth/types.js +16 -0
- package/dist/oauth/types.js.map +1 -0
- package/dist/public-api/v1/handlers/credentials/credentials.service.js +6 -8
- package/dist/public-api/v1/handlers/credentials/credentials.service.js.map +1 -1
- package/dist/public-api/v1/handlers/workflows/workflows.handler.js +2 -1
- package/dist/public-api/v1/handlers/workflows/workflows.handler.js.map +1 -1
- package/dist/public-api/v1/openapi.yml +4 -0
- package/dist/requests.d.ts +1 -0
- package/dist/scaling/job-processor.js +8 -2
- package/dist/scaling/job-processor.js.map +1 -1
- package/dist/scaling/worker-status.service.ee.js +20 -2
- package/dist/scaling/worker-status.service.ee.js.map +1 -1
- package/dist/server.js +5 -3
- package/dist/server.js.map +1 -1
- package/dist/services/ai-workflow-builder.service.d.ts +1 -0
- package/dist/services/ai-workflow-builder.service.js +5 -3
- package/dist/services/ai-workflow-builder.service.js.map +1 -1
- package/dist/services/ai.service.js +3 -0
- package/dist/services/ai.service.js.map +1 -1
- package/dist/services/cache/cache.service.d.ts +1 -0
- package/dist/services/cache/cache.service.js +4 -0
- package/dist/services/cache/cache.service.js.map +1 -1
- package/dist/services/frontend.service.d.ts +6 -4
- package/dist/services/frontend.service.js +14 -9
- package/dist/services/frontend.service.js.map +1 -1
- package/dist/services/ownership.service.d.ts +13 -3
- package/dist/services/ownership.service.js +59 -4
- package/dist/services/ownership.service.js.map +1 -1
- package/dist/services/project.service.ee.js +1 -1
- package/dist/services/project.service.ee.js.map +1 -1
- package/dist/services/public-api-key.service.d.ts +1 -0
- package/dist/services/public-api-key.service.js +8 -0
- package/dist/services/public-api-key.service.js.map +1 -1
- package/dist/services/user.service.d.ts +4 -3
- package/dist/services/user.service.js +50 -4
- package/dist/services/user.service.js.map +1 -1
- package/dist/telemetry/index.js +1 -0
- package/dist/telemetry/index.js.map +1 -1
- package/dist/webhooks/test-webhook-registrations.service.d.ts +5 -3
- package/dist/webhooks/test-webhook-registrations.service.js +25 -6
- package/dist/webhooks/test-webhook-registrations.service.js.map +1 -1
- package/dist/webhooks/test-webhooks.d.ts +1 -0
- package/dist/webhooks/test-webhooks.js +17 -10
- package/dist/webhooks/test-webhooks.js.map +1 -1
- package/dist/webhooks/waiting-forms.js +2 -0
- package/dist/webhooks/waiting-forms.js.map +1 -1
- package/dist/webhooks/webhook-helpers.js +12 -3
- package/dist/webhooks/webhook-helpers.js.map +1 -1
- package/dist/workflow-execute-additional-data.d.ts +2 -1
- package/dist/workflow-execute-additional-data.js +5 -3
- package/dist/workflow-execute-additional-data.js.map +1 -1
- package/dist/workflow-runner.js +1 -0
- package/dist/workflow-runner.js.map +1 -1
- package/dist/workflows/workflow-execution.service.js +3 -0
- package/dist/workflows/workflow-execution.service.js.map +1 -1
- package/dist/workflows/workflow-history/workflow-history.service.d.ts +1 -1
- package/dist/workflows/workflow-history/workflow-history.service.js +2 -1
- package/dist/workflows/workflow-history/workflow-history.service.js.map +1 -1
- package/dist/workflows/workflow.request.d.ts +2 -0
- package/dist/workflows/workflow.service.d.ts +2 -0
- package/dist/workflows/workflow.service.js +4 -2
- package/dist/workflows/workflow.service.js.map +1 -1
- package/dist/workflows/workflows.controller.js +13 -11
- package/dist/workflows/workflows.controller.js.map +1 -1
- package/package.json +19 -19
- package/templates/form-trigger-completion.handlebars +1 -4
- package/templates/form-trigger.handlebars +1 -2
- package/dist/controllers/oauth/abstract-oauth.controller.d.ts +0 -47
- package/dist/controllers/oauth/abstract-oauth.controller.js +0 -185
- package/dist/controllers/oauth/abstract-oauth.controller.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.