n8n 2.21.6 → 2.22.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-workflow-manager.js +4 -0
- package/dist/active-workflow-manager.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/commands/base-command.js +2 -1
- package/dist/commands/base-command.js.map +1 -1
- package/dist/commands/export/entities.d.ts +3 -0
- package/dist/commands/export/entities.js +8 -1
- package/dist/commands/export/entities.js.map +1 -1
- package/dist/concurrency/concurrency-control.service.d.ts +7 -2
- package/dist/concurrency/concurrency-control.service.js +72 -47
- package/dist/concurrency/concurrency-control.service.js.map +1 -1
- package/dist/constants.js +3 -0
- package/dist/constants.js.map +1 -1
- package/dist/controllers/e2e.controller.js +2 -0
- package/dist/controllers/e2e.controller.js.map +1 -1
- package/dist/controllers/users.controller.d.ts +1 -1
- package/dist/credentials/credentials.service.js.map +1 -1
- package/dist/evaluation.ee/evaluation-collection.service.d.ts +38 -0
- package/dist/evaluation.ee/evaluation-collection.service.js +327 -0
- package/dist/evaluation.ee/evaluation-collection.service.js.map +1 -0
- package/dist/evaluation.ee/evaluation-collections.controller.ee.d.ts +50 -0
- package/dist/evaluation.ee/evaluation-collections.controller.ee.js +148 -0
- package/dist/evaluation.ee/evaluation-collections.controller.ee.js.map +1 -0
- package/dist/evaluation.ee/evaluation-concurrency.helper.d.ts +11 -0
- package/dist/evaluation.ee/evaluation-concurrency.helper.js +40 -0
- package/dist/evaluation.ee/evaluation-concurrency.helper.js.map +1 -0
- package/dist/evaluation.ee/test-runner/test-runner.service.ee.d.ts +22 -6
- package/dist/evaluation.ee/test-runner/test-runner.service.ee.js +105 -15
- package/dist/evaluation.ee/test-runner/test-runner.service.ee.js.map +1 -1
- package/dist/evaluation.ee/test-runs.controller.ee.d.ts +5 -6
- package/dist/evaluation.ee/test-runs.controller.ee.js +4 -24
- package/dist/evaluation.ee/test-runs.controller.ee.js.map +1 -1
- package/dist/interfaces.d.ts +6 -0
- package/dist/modules/agents/adapters/agents-credential-provider.d.ts +2 -1
- package/dist/modules/agents/adapters/agents-credential-provider.js +25 -24
- package/dist/modules/agents/adapters/agents-credential-provider.js.map +1 -1
- package/dist/modules/agents/agent-execution.service.js +0 -1
- package/dist/modules/agents/agent-execution.service.js.map +1 -1
- package/dist/modules/agents/agent-skills.service.d.ts +1 -2
- package/dist/modules/agents/agent-skills.service.js.map +1 -1
- package/dist/modules/agents/agent-sse-stream.d.ts +1 -1
- package/dist/modules/agents/agent-sse-stream.js +0 -31
- package/dist/modules/agents/agent-sse-stream.js.map +1 -1
- package/dist/modules/agents/agents.controller.d.ts +64 -37
- package/dist/modules/agents/agents.controller.js +54 -40
- package/dist/modules/agents/agents.controller.js.map +1 -1
- package/dist/modules/agents/agents.service.d.ts +15 -5
- package/dist/modules/agents/agents.service.js +79 -71
- package/dist/modules/agents/agents.service.js.map +1 -1
- package/dist/modules/agents/builder/agent-builder-preview-path.d.ts +1 -0
- package/dist/modules/agents/builder/agent-builder-preview-path.js +9 -0
- package/dist/modules/agents/builder/agent-builder-preview-path.js.map +1 -0
- package/dist/modules/agents/builder/agents-builder-model-recommendations.d.ts +3 -0
- package/dist/modules/agents/builder/agents-builder-model-recommendations.js +106 -0
- package/dist/modules/agents/builder/agents-builder-model-recommendations.js.map +1 -0
- package/dist/modules/agents/builder/agents-builder-prompts.d.ts +12 -11
- package/dist/modules/agents/builder/agents-builder-prompts.js +61 -32
- package/dist/modules/agents/builder/agents-builder-prompts.js.map +1 -1
- package/dist/modules/agents/builder/agents-builder-tools.service.d.ts +1 -1
- package/dist/modules/agents/builder/agents-builder-tools.service.js +7 -8
- package/dist/modules/agents/builder/agents-builder-tools.service.js.map +1 -1
- package/dist/modules/agents/builder/agents-builder.service.js +6 -3
- package/dist/modules/agents/builder/agents-builder.service.js.map +1 -1
- package/dist/modules/agents/builder/interactive/ask-llm.tool.js +1 -1
- package/dist/modules/agents/builder/interactive/ask-llm.tool.js.map +1 -1
- package/dist/modules/agents/builder/interactive/resolve-llm.tool.js +1 -1
- package/dist/modules/agents/builder/interactive/resolve-llm.tool.js.map +1 -1
- package/dist/modules/agents/entities/agent-execution.entity.d.ts +0 -1
- package/dist/modules/agents/entities/agent-execution.entity.js +0 -4
- package/dist/modules/agents/entities/agent-execution.entity.js.map +1 -1
- package/dist/modules/agents/entities/agent-observation-lock.entity.d.ts +2 -0
- package/dist/modules/agents/entities/agent-observation-lock.entity.js +4 -0
- package/dist/modules/agents/entities/agent-observation-lock.entity.js.map +1 -1
- package/dist/modules/agents/entities/agent-observation.entity.d.ts +9 -5
- package/dist/modules/agents/entities/agent-observation.entity.js +21 -11
- package/dist/modules/agents/entities/agent-observation.entity.js.map +1 -1
- package/dist/modules/agents/entities/agent-published-version.entity.d.ts +1 -2
- package/dist/modules/agents/entities/agent-published-version.entity.js.map +1 -1
- package/dist/modules/agents/entities/agent.entity.d.ts +2 -3
- package/dist/modules/agents/entities/agent.entity.js.map +1 -1
- package/dist/modules/agents/execution-recorder.d.ts +1 -8
- package/dist/modules/agents/execution-recorder.js +67 -42
- package/dist/modules/agents/execution-recorder.js.map +1 -1
- package/dist/modules/agents/integrations/agent-chat-bridge.d.ts +6 -4
- package/dist/modules/agents/integrations/agent-chat-bridge.js +22 -13
- package/dist/modules/agents/integrations/agent-chat-bridge.js.map +1 -1
- package/dist/modules/agents/integrations/agent-chat-integration.d.ts +4 -1
- package/dist/modules/agents/integrations/agent-chat-integration.js.map +1 -1
- package/dist/modules/agents/integrations/chat-integration.service.d.ts +17 -8
- package/dist/modules/agents/integrations/chat-integration.service.js +53 -37
- package/dist/modules/agents/integrations/chat-integration.service.js.map +1 -1
- package/dist/modules/agents/integrations/integrations-sync.d.ts +2 -2
- package/dist/modules/agents/integrations/integrations-sync.js +1 -1
- package/dist/modules/agents/integrations/integrations-sync.js.map +1 -1
- package/dist/modules/agents/integrations/n8n-memory.d.ts +31 -35
- package/dist/modules/agents/integrations/n8n-memory.js +121 -127
- package/dist/modules/agents/integrations/n8n-memory.js.map +1 -1
- package/dist/modules/agents/integrations/platforms/telegram-integration.d.ts +9 -2
- package/dist/modules/agents/integrations/platforms/telegram-integration.js +51 -6
- package/dist/modules/agents/integrations/platforms/telegram-integration.js.map +1 -1
- package/dist/modules/agents/json-config/agent-config-composition.d.ts +2 -3
- package/dist/modules/agents/json-config/agent-config-composition.js.map +1 -1
- package/dist/modules/agents/json-config/from-json-config.d.ts +1 -2
- package/dist/modules/agents/json-config/from-json-config.js +31 -34
- package/dist/modules/agents/json-config/from-json-config.js.map +1 -1
- package/dist/modules/agents/observation-log-observer.d.ts +2 -0
- package/dist/modules/agents/observation-log-observer.js +10 -0
- package/dist/modules/agents/observation-log-observer.js.map +1 -0
- package/dist/modules/agents/observation-log-reflector.d.ts +2 -0
- package/dist/modules/agents/observation-log-reflector.js +9 -0
- package/dist/modules/agents/observation-log-reflector.js.map +1 -0
- package/dist/modules/agents/repositories/agent-published-version.repository.d.ts +1 -1
- package/dist/modules/agents/repositories/agent.repository.js +1 -1
- package/dist/modules/agents/repositories/agent.repository.js.map +1 -1
- package/dist/modules/agents/tools/node-tool-factory.d.ts +1 -1
- package/dist/modules/agents/tools/workflow-tool-factory.d.ts +1 -1
- package/dist/modules/agents/tools/workflow-tool-factory.js +40 -2
- package/dist/modules/agents/tools/workflow-tool-factory.js.map +1 -1
- package/dist/modules/agents/utils/execution-to-message-mapper.d.ts +6 -0
- package/dist/modules/agents/utils/execution-to-message-mapper.js +133 -0
- package/dist/modules/agents/utils/execution-to-message-mapper.js.map +1 -0
- package/dist/modules/chat-hub/chat-hub-workflow.service.js +9 -0
- package/dist/modules/chat-hub/chat-hub-workflow.service.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.constants.js +4 -0
- package/dist/modules/chat-hub/chat-hub.constants.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.models.service.d.ts +1 -0
- package/dist/modules/chat-hub/chat-hub.models.service.js +43 -0
- package/dist/modules/chat-hub/chat-hub.models.service.js.map +1 -1
- package/dist/modules/chat-hub/chat-hub.module.d.ts +3 -3
- package/dist/modules/chat-hub/chat-hub.settings.controller.d.ts +7 -7
- package/dist/modules/chat-hub/context-limits.js +1 -0
- package/dist/modules/chat-hub/context-limits.js.map +1 -1
- package/dist/modules/chat-hub/dto/chat-models-request.dto.d.ts +2 -2
- package/dist/modules/community-packages/community-node-types-utils.d.ts +1 -1
- package/dist/modules/community-packages/community-node-types-utils.js +1 -1
- package/dist/modules/community-packages/community-node-types-utils.js.map +1 -1
- package/dist/modules/community-packages/community-node-types.service.js +1 -1
- package/dist/modules/community-packages/community-node-types.service.js.map +1 -1
- package/dist/modules/data-table/utils/sql-utils.d.ts +2 -0
- package/dist/modules/data-table/utils/sql-utils.js +26 -9
- package/dist/modules/data-table/utils/sql-utils.js.map +1 -1
- package/dist/modules/inbound-secrets/inbound-secrets-context-hook.d.ts +10 -0
- package/dist/modules/inbound-secrets/inbound-secrets-context-hook.js +55 -0
- package/dist/modules/inbound-secrets/inbound-secrets-context-hook.js.map +1 -0
- package/dist/modules/inbound-secrets/inbound-secrets.config.d.ts +3 -0
- package/dist/modules/inbound-secrets/inbound-secrets.config.js +27 -0
- package/dist/modules/inbound-secrets/inbound-secrets.config.js.map +1 -0
- package/dist/modules/inbound-secrets/inbound-secrets.module.d.ts +4 -0
- package/dist/modules/inbound-secrets/inbound-secrets.module.js +61 -0
- package/dist/modules/inbound-secrets/inbound-secrets.module.js.map +1 -0
- package/dist/modules/inbound-secrets/inbound-secrets.schemas.d.ts +3 -0
- package/dist/modules/inbound-secrets/inbound-secrets.schemas.js +6 -0
- package/dist/modules/inbound-secrets/inbound-secrets.schemas.js.map +1 -0
- package/dist/modules/inbound-secrets/inbound-secrets.service.d.ts +17 -0
- package/dist/modules/inbound-secrets/inbound-secrets.service.js +76 -0
- package/dist/modules/inbound-secrets/inbound-secrets.service.js.map +1 -0
- package/dist/modules/inbound-secrets/path-traversal.d.ts +4 -0
- package/dist/modules/inbound-secrets/path-traversal.js +51 -0
- package/dist/modules/inbound-secrets/path-traversal.js.map +1 -0
- package/dist/modules/insights/database/repositories/insights-by-period.repository.d.ts +1 -0
- package/dist/modules/insights/database/repositories/insights-by-period.repository.js +19 -4
- package/dist/modules/insights/database/repositories/insights-by-period.repository.js.map +1 -1
- package/dist/modules/insights/database/repositories/insights-raw.repository.js +1 -0
- package/dist/modules/insights/database/repositories/insights-raw.repository.js.map +1 -1
- package/dist/modules/insights/insights-compaction.service.d.ts +5 -0
- package/dist/modules/insights/insights-compaction.service.js +93 -18
- package/dist/modules/insights/insights-compaction.service.js.map +1 -1
- package/dist/modules/insights/insights.config.d.ts +3 -0
- package/dist/modules/insights/insights.config.js +15 -0
- package/dist/modules/insights/insights.config.js.map +1 -1
- package/dist/modules/instance-ai/eval/eval-mocked-credentials-helper.d.ts +17 -0
- package/dist/modules/instance-ai/eval/eval-mocked-credentials-helper.js +61 -0
- package/dist/modules/instance-ai/eval/eval-mocked-credentials-helper.js.map +1 -0
- package/dist/modules/instance-ai/eval/execution.service.js +8 -2
- package/dist/modules/instance-ai/eval/execution.service.js.map +1 -1
- package/dist/modules/instance-ai/eval/mock-handler.d.ts +1 -0
- package/dist/modules/instance-ai/eval/mock-handler.js +116 -72
- package/dist/modules/instance-ai/eval/mock-handler.js.map +1 -1
- package/dist/modules/instance-ai/eval/mock-quirks.d.ts +10 -0
- package/dist/modules/instance-ai/eval/mock-quirks.js +25 -0
- package/dist/modules/instance-ai/eval/mock-quirks.js.map +1 -0
- package/dist/modules/instance-ai/instance-ai-settings.service.js +14 -0
- package/dist/modules/instance-ai/instance-ai-settings.service.js.map +1 -1
- package/dist/modules/instance-ai/instance-ai.adapter.service.js +25 -5
- package/dist/modules/instance-ai/instance-ai.adapter.service.js.map +1 -1
- package/dist/modules/instance-ai/instance-ai.controller.d.ts +10 -3
- package/dist/modules/instance-ai/instance-ai.controller.js +34 -2
- package/dist/modules/instance-ai/instance-ai.controller.js.map +1 -1
- package/dist/modules/instance-ai/instance-ai.service.d.ts +2 -1
- package/dist/modules/instance-ai/instance-ai.service.js +75 -29
- package/dist/modules/instance-ai/instance-ai.service.js.map +1 -1
- package/dist/modules/instance-ai/liveness/index.d.ts +1 -1
- package/dist/modules/instance-ai/liveness/index.js.map +1 -1
- package/dist/modules/instance-ai/liveness/instance-ai-liveness.service.d.ts +12 -3
- package/dist/modules/instance-ai/liveness/instance-ai-liveness.service.js +21 -11
- package/dist/modules/instance-ai/liveness/instance-ai-liveness.service.js.map +1 -1
- package/dist/modules/instance-ai/run-timeout-details.d.ts +8 -0
- package/dist/modules/instance-ai/run-timeout-details.js +3 -0
- package/dist/modules/instance-ai/run-timeout-details.js.map +1 -0
- package/dist/modules/instance-ai/run-trace-metadata.d.ts +15 -0
- package/dist/modules/instance-ai/run-trace-metadata.js +63 -0
- package/dist/modules/instance-ai/run-trace-metadata.js.map +1 -0
- package/dist/modules/instance-version-history/instance-version-history.controller.d.ts +5 -3
- package/dist/modules/instance-version-history/instance-version-history.controller.js +9 -9
- package/dist/modules/instance-version-history/instance-version-history.controller.js.map +1 -1
- package/dist/modules/mcp/mcp-api-key.service.js +1 -0
- package/dist/modules/mcp/mcp-api-key.service.js.map +1 -1
- package/dist/modules/mcp/mcp-oauth-token.service.d.ts +7 -2
- package/dist/modules/mcp/mcp-oauth-token.service.js +16 -6
- package/dist/modules/mcp/mcp-oauth-token.service.js.map +1 -1
- package/dist/modules/mcp/mcp-server-middleware.service.js +2 -0
- package/dist/modules/mcp/mcp-server-middleware.service.js.map +1 -1
- package/dist/modules/mcp/mcp.controller.js +1 -0
- package/dist/modules/mcp/mcp.controller.js.map +1 -1
- package/dist/modules/mcp/mcp.types.d.ts +2 -0
- package/dist/modules/mcp/tools/workflow-builder/credential-validation.d.ts +15 -0
- package/dist/modules/mcp/tools/workflow-builder/credential-validation.js +91 -0
- package/dist/modules/mcp/tools/workflow-builder/credential-validation.js.map +1 -0
- package/dist/modules/mcp/tools/workflow-builder/mcp-instructions.js +1 -1
- package/dist/modules/mcp/tools/workflow-builder/update-workflow.tool.d.ts +228 -3
- package/dist/modules/mcp/tools/workflow-builder/update-workflow.tool.js +74 -60
- package/dist/modules/mcp/tools/workflow-builder/update-workflow.tool.js.map +1 -1
- package/dist/modules/mcp/tools/workflow-builder/workflow-operations.d.ts +251 -0
- package/dist/modules/mcp/tools/workflow-builder/workflow-operations.js +447 -0
- package/dist/modules/mcp/tools/workflow-builder/workflow-operations.js.map +1 -0
- package/dist/modules/mcp-registry/mcp-registry-node-loader.d.ts +4 -3
- package/dist/modules/mcp-registry/mcp-registry-node-loader.js +6 -3
- package/dist/modules/mcp-registry/mcp-registry-node-loader.js.map +1 -1
- package/dist/modules/mcp-registry/mcp-registry-test.controller.d.ts +12 -0
- package/dist/modules/mcp-registry/mcp-registry-test.controller.js +49 -0
- package/dist/modules/mcp-registry/mcp-registry-test.controller.js.map +1 -0
- package/dist/modules/mcp-registry/mcp-registry.module.d.ts +2 -0
- package/dist/modules/mcp-registry/mcp-registry.module.js +12 -2
- package/dist/modules/mcp-registry/mcp-registry.module.js.map +1 -1
- package/dist/modules/mcp-registry/node-description-transform.js +16 -2
- package/dist/modules/mcp-registry/node-description-transform.js.map +1 -1
- package/dist/modules/mcp-registry/registry/mcp-registry-api.client.d.ts +8 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-api.client.js +58 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-api.client.js.map +1 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-server.entity.d.ts +36 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-server.entity.js +46 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-server.entity.js.map +1 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-server.repository.d.ts +5 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-server.repository.js +26 -0
- package/dist/modules/mcp-registry/registry/mcp-registry-server.repository.js.map +1 -0
- package/dist/modules/mcp-registry/registry/mcp-registry.service.d.ts +37 -4
- package/dist/modules/mcp-registry/registry/mcp-registry.service.js +196 -12
- package/dist/modules/mcp-registry/registry/mcp-registry.service.js.map +1 -1
- package/dist/modules/mcp-registry/registry/mcp-registry.types.d.ts +9 -1
- package/dist/modules/mcp-registry/registry/mcp-registry.types.js +29 -0
- package/dist/modules/mcp-registry/registry/mcp-registry.types.js.map +1 -1
- package/dist/modules/mcp-registry/registry/mock-servers.js +2 -0
- package/dist/modules/mcp-registry/registry/mock-servers.js.map +1 -1
- package/dist/modules/otel/execution-level-tracer.js +4 -2
- package/dist/modules/otel/execution-level-tracer.js.map +1 -1
- package/dist/modules/otel/otel.constants.d.ts +1 -0
- package/dist/modules/otel/otel.constants.js +1 -0
- package/dist/modules/otel/otel.constants.js.map +1 -1
- package/dist/modules/otel/otel.module.d.ts +3 -0
- package/dist/modules/otel/otel.module.js +5 -0
- package/dist/modules/otel/otel.module.js.map +1 -1
- package/dist/modules/redaction/executions/execution-redaction.service.js +8 -3
- package/dist/modules/redaction/executions/execution-redaction.service.js.map +1 -1
- package/dist/modules/redaction/instance-redaction-enforcement.service.d.ts +14 -0
- package/dist/modules/redaction/instance-redaction-enforcement.service.js +91 -0
- package/dist/modules/redaction/instance-redaction-enforcement.service.js.map +1 -0
- package/dist/modules/redaction/redaction-enforcement.feature-flag.d.ts +2 -0
- package/dist/modules/redaction/redaction-enforcement.feature-flag.js +9 -0
- package/dist/modules/redaction/redaction-enforcement.feature-flag.js.map +1 -0
- package/dist/modules/redaction/redaction-enforcement.service.d.ts +8 -0
- package/dist/modules/redaction/redaction-enforcement.service.js +38 -0
- package/dist/modules/redaction/redaction-enforcement.service.js.map +1 -0
- package/dist/modules/redaction/redaction.config.d.ts +3 -0
- package/dist/modules/redaction/redaction.config.js +27 -0
- package/dist/modules/redaction/redaction.config.js.map +1 -0
- package/dist/modules/source-control.ee/source-control-import.service.ee.d.ts +3 -1
- package/dist/modules/source-control.ee/source-control-import.service.ee.js +14 -6
- package/dist/modules/source-control.ee/source-control-import.service.ee.js.map +1 -1
- package/dist/modules/source-control.ee/source-control.controller.ee.d.ts +2 -2
- package/dist/modules/source-control.ee/source-control.service.ee.d.ts +1 -1
- package/dist/modules/workflow-index/workflow-index.service.js.map +1 -1
- package/dist/oauth/oauth.service.js +1 -0
- package/dist/oauth/oauth.service.js.map +1 -1
- package/dist/posthog/index.d.ts +0 -1
- package/dist/posthog/index.js +2 -10
- package/dist/posthog/index.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/scaling/constants.d.ts +2 -2
- package/dist/scaling/pubsub/pubsub.event-map.d.ts +6 -3
- package/dist/scaling/pubsub/pubsub.types.d.ts +3 -1
- package/dist/scaling/scaling.service.js +3 -2
- package/dist/scaling/scaling.service.js.map +1 -1
- package/dist/server.d.ts +1 -0
- package/dist/server.js +1 -0
- package/dist/server.js.map +1 -1
- package/dist/services/export.service.d.ts +6 -1
- package/dist/services/export.service.js +97 -1
- package/dist/services/export.service.js.map +1 -1
- package/dist/services/frontend.service.js +3 -1
- package/dist/services/frontend.service.js.map +1 -1
- package/dist/services/import.service.d.ts +2 -1
- package/dist/services/import.service.js +70 -22
- package/dist/services/import.service.js.map +1 -1
- package/dist/telemetry/index.d.ts +13 -1
- package/dist/telemetry/index.js +54 -18
- package/dist/telemetry/index.js.map +1 -1
- package/dist/{modules/community-packages → utils}/strapi-utils.js +2 -2
- package/dist/utils/strapi-utils.js.map +1 -0
- package/dist/workflows/workflow-history/workflow-history.controller.d.ts +9 -0
- package/dist/workflows/workflow-history/workflow-history.controller.js +17 -0
- package/dist/workflows/workflow-history/workflow-history.controller.js.map +1 -1
- package/dist/workflows/workflow-history/workflow-history.service.d.ts +16 -2
- package/dist/workflows/workflow-history/workflow-history.service.js +55 -1
- package/dist/workflows/workflow-history/workflow-history.service.js.map +1 -1
- package/dist/workflows/workflow.service.d.ts +3 -1
- package/dist/workflows/workflow.service.js +6 -2
- package/dist/workflows/workflow.service.js.map +1 -1
- package/package.json +36 -36
- package/dist/modules/agents/json-config/agent-json-config.d.ts +0 -1022
- package/dist/modules/agents/json-config/agent-json-config.js +0 -128
- package/dist/modules/agents/json-config/agent-json-config.js.map +0 -1
- package/dist/modules/agents/json-config/integration-config.d.ts +0 -61
- package/dist/modules/agents/json-config/integration-config.js +0 -33
- package/dist/modules/agents/json-config/integration-config.js.map +0 -1
- package/dist/modules/community-packages/strapi-utils.js.map +0 -1
- package/dist/modules/mcp-registry/mcp-registry-node-loader.test.d.ts +0 -1
- package/dist/modules/mcp-registry/mcp-registry-node-loader.test.js +0 -244
- package/dist/modules/mcp-registry/mcp-registry-node-loader.test.js.map +0 -1
- package/dist/modules/mcp-registry/node-description-transform.test.d.ts +0 -1
- package/dist/modules/mcp-registry/node-description-transform.test.js +0 -286
- package/dist/modules/mcp-registry/node-description-transform.test.js.map +0 -1
- package/dist/modules/mcp-registry/registry/mcp-registry.service.test.d.ts +0 -1
- package/dist/modules/mcp-registry/registry/mcp-registry.service.test.js +0 -41
- package/dist/modules/mcp-registry/registry/mcp-registry.service.test.js.map +0 -1
- /package/dist/{modules/community-packages → utils}/strapi-utils.d.ts +0 -0
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.