@frontmcp/sdk 1.0.4 → 1.1.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/agent/agent.instance.d.ts +5 -7
- package/agent/agent.instance.d.ts.map +1 -1
- package/agent/agent.scope.d.ts +4 -4
- package/agent/flows/call-agent.flow.d.ts +211 -205
- package/agent/flows/call-agent.flow.d.ts.map +1 -1
- package/agent/hooks/agent.hooks.d.ts +4 -4
- package/agent/hooks/agent.hooks.d.ts.map +1 -1
- package/agent/index.d.ts +1 -1
- package/auth/flows/auth.verify.flow.d.ts +48 -44
- package/auth/flows/auth.verify.flow.d.ts.map +1 -1
- package/auth/flows/oauth.authorize.flow.d.ts +119 -137
- package/auth/flows/oauth.authorize.flow.d.ts.map +1 -1
- package/auth/flows/oauth.callback.flow.d.ts +64 -64
- package/auth/flows/oauth.callback.flow.d.ts.map +1 -1
- package/auth/flows/oauth.provider-callback.flow.d.ts +52 -52
- package/auth/flows/oauth.provider-callback.flow.d.ts.map +1 -1
- package/auth/flows/oauth.register.flow.d.ts +35 -48
- package/auth/flows/oauth.register.flow.d.ts.map +1 -1
- package/auth/flows/oauth.token.flow.d.ts +53 -80
- package/auth/flows/oauth.token.flow.d.ts.map +1 -1
- package/auth/flows/session.verify.flow.d.ts +86 -83
- package/auth/flows/session.verify.flow.d.ts.map +1 -1
- package/auth/flows/well-known.jwks.flow.d.ts +61 -61
- package/auth/flows/well-known.jwks.flow.d.ts.map +1 -1
- package/auth/flows/well-known.oauth-authorization-server.flow.d.ts +66 -66
- package/auth/flows/well-known.oauth-authorization-server.flow.d.ts.map +1 -1
- package/auth/flows/well-known.prm.flow.d.ts +35 -36
- package/auth/flows/well-known.prm.flow.d.ts.map +1 -1
- package/auth/session/transport-session.manager.d.ts +1 -1
- package/auth/session/transport-session.manager.d.ts.map +1 -1
- package/auth/session/utils/session-id.utils.d.ts +2 -2
- package/auth/session/utils/session-id.utils.d.ts.map +1 -1
- package/builtin/authorities/authorities.plugin.d.ts +25 -0
- package/builtin/authorities/authorities.plugin.d.ts.map +1 -0
- package/builtin/authorities/authorities.plugin.options.d.ts +45 -0
- package/builtin/authorities/authorities.plugin.options.d.ts.map +1 -0
- package/builtin/authorities/index.d.ts +3 -0
- package/builtin/authorities/index.d.ts.map +1 -0
- package/builtin/config/config.plugin.d.ts +2 -2
- package/builtin/config/config.plugin.d.ts.map +1 -1
- package/builtin/config/config.types.d.ts +1 -1
- package/builtin/config/config.types.d.ts.map +1 -1
- package/builtin/config/index.d.ts +2 -2
- package/builtin/config/index.d.ts.map +1 -1
- package/builtin/config/providers/config-loader.d.ts +1 -1
- package/builtin/config/providers/config-loader.d.ts.map +1 -1
- package/builtin/config/providers/config.service.d.ts +2 -2
- package/builtin/config/providers/config.service.d.ts.map +1 -1
- package/builtin/config/providers/env-loader.d.ts +1 -1
- package/builtin/config/providers/env-loader.d.ts.map +1 -1
- package/channel/channel-notification.service.d.ts +52 -0
- package/channel/channel-notification.service.d.ts.map +1 -0
- package/channel/channel-scope.helper.d.ts +37 -0
- package/channel/channel-scope.helper.d.ts.map +1 -0
- package/channel/channel.events.d.ts +25 -0
- package/channel/channel.events.d.ts.map +1 -0
- package/channel/channel.instance.d.ts +105 -0
- package/channel/channel.instance.d.ts.map +1 -0
- package/channel/channel.registry.d.ts +65 -0
- package/channel/channel.registry.d.ts.map +1 -0
- package/channel/channel.types.d.ts +14 -0
- package/channel/channel.types.d.ts.map +1 -0
- package/channel/channel.utils.d.ts +19 -0
- package/channel/channel.utils.d.ts.map +1 -0
- package/channel/flows/list-channels.flow.d.ts +41 -0
- package/channel/flows/list-channels.flow.d.ts.map +1 -0
- package/channel/flows/send-channel-notification.flow.d.ts +38 -0
- package/channel/flows/send-channel-notification.flow.d.ts.map +1 -0
- package/channel/index.d.ts +14 -0
- package/channel/index.d.ts.map +1 -0
- package/channel/reply/channel-reply.tool.d.ts +15 -0
- package/channel/reply/channel-reply.tool.d.ts.map +1 -0
- package/channel/reply/reply.types.d.ts +14 -0
- package/channel/reply/reply.types.d.ts.map +1 -0
- package/channel/sources/agent-completion.source.d.ts +29 -0
- package/channel/sources/agent-completion.source.d.ts.map +1 -0
- package/channel/sources/app-event.source.d.ts +57 -0
- package/channel/sources/app-event.source.d.ts.map +1 -0
- package/channel/sources/index.d.ts +5 -0
- package/channel/sources/index.d.ts.map +1 -0
- package/channel/sources/job-completion.source.d.ts +28 -0
- package/channel/sources/job-completion.source.d.ts.map +1 -0
- package/channel/sources/webhook.source.d.ts +42 -0
- package/channel/sources/webhook.source.d.ts.map +1 -0
- package/common/common.schema.d.ts +11 -11
- package/common/common.schema.d.ts.map +1 -1
- package/common/decorators/agent.decorator.d.ts +4 -4
- package/common/decorators/agent.decorator.d.ts.map +1 -1
- package/common/decorators/channel.decorator.d.ts +59 -0
- package/common/decorators/channel.decorator.d.ts.map +1 -0
- package/common/decorators/front-mcp.decorator.d.ts +1 -1
- package/common/decorators/front-mcp.decorator.d.ts.map +1 -1
- package/common/decorators/index.d.ts +1 -0
- package/common/decorators/index.d.ts.map +1 -1
- package/common/decorators/job.decorator.d.ts +13 -9
- package/common/decorators/job.decorator.d.ts.map +1 -1
- package/common/decorators/tool.decorator.d.ts +12 -7
- package/common/decorators/tool.decorator.d.ts.map +1 -1
- package/common/entries/agent.entry.d.ts +6 -6
- package/common/entries/agent.entry.d.ts.map +1 -1
- package/common/entries/channel.entry.d.ts +58 -0
- package/common/entries/channel.entry.d.ts.map +1 -0
- package/common/entries/index.d.ts +1 -0
- package/common/entries/index.d.ts.map +1 -1
- package/common/entries/job.entry.d.ts +7 -7
- package/common/entries/job.entry.d.ts.map +1 -1
- package/common/entries/scope.entry.d.ts +32 -14
- package/common/entries/scope.entry.d.ts.map +1 -1
- package/common/entries/tool.entry.d.ts +12 -8
- package/common/entries/tool.entry.d.ts.map +1 -1
- package/common/flow/flow.utils.d.ts +1 -1
- package/common/flow/flow.utils.d.ts.map +1 -1
- package/common/interfaces/agent.interface.d.ts +8 -8
- package/common/interfaces/agent.interface.d.ts.map +1 -1
- package/common/interfaces/channel.interface.d.ts +131 -0
- package/common/interfaces/channel.interface.d.ts.map +1 -0
- package/common/interfaces/execution-context.interface.d.ts +27 -8
- package/common/interfaces/execution-context.interface.d.ts.map +1 -1
- package/common/interfaces/flow.interface.d.ts +6 -6
- package/common/interfaces/flow.interface.d.ts.map +1 -1
- package/common/interfaces/index.d.ts +1 -0
- package/common/interfaces/index.d.ts.map +1 -1
- package/common/interfaces/internal/flow.utils.d.ts +2 -2
- package/common/interfaces/internal/flow.utils.d.ts.map +1 -1
- package/common/interfaces/internal/registry.interface.d.ts +3 -1
- package/common/interfaces/internal/registry.interface.d.ts.map +1 -1
- package/common/interfaces/resource.interface.d.ts +7 -0
- package/common/interfaces/resource.interface.d.ts.map +1 -1
- package/common/interfaces/server.interface.d.ts +5 -3
- package/common/interfaces/server.interface.d.ts.map +1 -1
- package/common/interfaces/tool.interface.d.ts +18 -6
- package/common/interfaces/tool.interface.d.ts.map +1 -1
- package/common/metadata/adapter.metadata.d.ts +5 -6
- package/common/metadata/adapter.metadata.d.ts.map +1 -1
- package/common/metadata/agent.metadata.d.ts +94 -95
- package/common/metadata/agent.metadata.d.ts.map +1 -1
- package/common/metadata/app-filter.metadata.d.ts +21 -22
- package/common/metadata/app-filter.metadata.d.ts.map +1 -1
- package/common/metadata/app.metadata.d.ts +554 -547
- package/common/metadata/app.metadata.d.ts.map +1 -1
- package/common/metadata/auth-provider.metadata.d.ts +6 -7
- package/common/metadata/auth-provider.metadata.d.ts.map +1 -1
- package/common/metadata/channel.metadata.d.ts +286 -0
- package/common/metadata/channel.metadata.d.ts.map +1 -0
- package/common/metadata/flow.metadata.d.ts +14 -14
- package/common/metadata/flow.metadata.d.ts.map +1 -1
- package/common/metadata/front-mcp.metadata.d.ts +3591 -2715
- package/common/metadata/front-mcp.metadata.d.ts.map +1 -1
- package/common/metadata/index.d.ts +1 -0
- package/common/metadata/index.d.ts.map +1 -1
- package/common/metadata/job.metadata.d.ts +26 -27
- package/common/metadata/job.metadata.d.ts.map +1 -1
- package/common/metadata/logger.metadata.d.ts +5 -6
- package/common/metadata/logger.metadata.d.ts.map +1 -1
- package/common/metadata/plugin.metadata.d.ts +21 -22
- package/common/metadata/plugin.metadata.d.ts.map +1 -1
- package/common/metadata/prompt.metadata.d.ts +24 -25
- package/common/metadata/prompt.metadata.d.ts.map +1 -1
- package/common/metadata/provider.metadata.d.ts +6 -7
- package/common/metadata/provider.metadata.d.ts.map +1 -1
- package/common/metadata/resource.metadata.d.ts +40 -41
- package/common/metadata/resource.metadata.d.ts.map +1 -1
- package/common/metadata/skill.metadata.d.ts +57 -57
- package/common/metadata/skill.metadata.d.ts.map +1 -1
- package/common/metadata/tool.metadata.d.ts +145 -120
- package/common/metadata/tool.metadata.d.ts.map +1 -1
- package/common/metadata/workflow.metadata.d.ts +43 -44
- package/common/metadata/workflow.metadata.d.ts.map +1 -1
- package/common/records/channel.record.d.ts +52 -0
- package/common/records/channel.record.d.ts.map +1 -0
- package/common/records/index.d.ts +1 -0
- package/common/records/index.d.ts.map +1 -1
- package/common/schemas/annotated-class.schema.d.ts +15 -15
- package/common/schemas/annotated-class.schema.d.ts.map +1 -1
- package/common/schemas/http-input.schema.d.ts +8 -9
- package/common/schemas/http-input.schema.d.ts.map +1 -1
- package/common/schemas/http-output.schema.d.ts +500 -496
- package/common/schemas/http-output.schema.d.ts.map +1 -1
- package/common/schemas/session-header.schema.d.ts +1 -2
- package/common/schemas/session-header.schema.d.ts.map +1 -1
- package/common/tokens/app.tokens.d.ts.map +1 -1
- package/common/tokens/channel.tokens.d.ts +14 -0
- package/common/tokens/channel.tokens.d.ts.map +1 -0
- package/common/tokens/front-mcp.tokens.d.ts +2 -2
- package/common/tokens/front-mcp.tokens.d.ts.map +1 -1
- package/common/tokens/index.d.ts +1 -0
- package/common/tokens/index.d.ts.map +1 -1
- package/common/tokens/tool.tokens.d.ts +1 -0
- package/common/tokens/tool.tokens.d.ts.map +1 -1
- package/common/types/auth/session.types.d.ts +49 -50
- package/common/types/auth/session.types.d.ts.map +1 -1
- package/common/types/common.types.d.ts +1 -1
- package/common/types/common.types.d.ts.map +1 -1
- package/common/types/options/elicitation/schema.d.ts +28 -28
- package/common/types/options/elicitation/schema.d.ts.map +1 -1
- package/common/types/options/ext-apps/schema.d.ts +20 -20
- package/common/types/options/ext-apps/schema.d.ts.map +1 -1
- package/common/types/options/ext-apps/typecheck.d.ts.map +1 -1
- package/common/types/options/health/schema.d.ts +16 -16
- package/common/types/options/health/schema.d.ts.map +1 -1
- package/common/types/options/http/index.d.ts +1 -1
- package/common/types/options/http/index.d.ts.map +1 -1
- package/common/types/options/http/interfaces.d.ts +41 -1
- package/common/types/options/http/interfaces.d.ts.map +1 -1
- package/common/types/options/http/schema.d.ts +21 -12
- package/common/types/options/http/schema.d.ts.map +1 -1
- package/common/types/options/http/typecheck.d.ts.map +1 -1
- package/common/types/options/logging/schema.d.ts +8 -8
- package/common/types/options/logging/schema.d.ts.map +1 -1
- package/common/types/options/observability/schema.d.ts +6 -6
- package/common/types/options/observability/schema.d.ts.map +1 -1
- package/common/types/options/pagination/schema.d.ts +13 -13
- package/common/types/options/pagination/schema.d.ts.map +1 -1
- package/common/types/options/redis/schema.d.ts +62 -62
- package/common/types/options/redis/schema.d.ts.map +1 -1
- package/common/types/options/redis/typecheck.d.ts.map +1 -1
- package/common/types/options/server-info/schema.d.ts +13 -13
- package/common/types/options/server-info/schema.d.ts.map +1 -1
- package/common/types/options/session/schema.d.ts +22 -22
- package/common/types/options/session/schema.d.ts.map +1 -1
- package/common/types/options/skills-http/schema.d.ts +63 -63
- package/common/types/options/skills-http/schema.d.ts.map +1 -1
- package/common/types/options/skills-http/typecheck.d.ts.map +1 -1
- package/common/types/options/sqlite/schema.d.ts +9 -9
- package/common/types/options/sqlite/schema.d.ts.map +1 -1
- package/common/types/options/sqlite/typecheck.d.ts.map +1 -1
- package/common/types/options/transport/schema.d.ts +140 -140
- package/common/types/options/transport/schema.d.ts.map +1 -1
- package/common/types/options/transport/typecheck.d.ts.map +1 -1
- package/common/utils/decide-request-intent.utils.d.ts +16 -17
- package/common/utils/decide-request-intent.utils.d.ts.map +1 -1
- package/common/utils/path.utils.d.ts +10 -1
- package/common/utils/path.utils.d.ts.map +1 -1
- package/completion/flows/complete.flow.d.ts +68 -69
- package/completion/flows/complete.flow.d.ts.map +1 -1
- package/context/frontmcp-context.d.ts +9 -7
- package/context/frontmcp-context.d.ts.map +1 -1
- package/direct/create.d.ts +1 -1
- package/direct/create.d.ts.map +1 -1
- package/elicitation/elicitation.types.d.ts +2 -2
- package/elicitation/elicitation.types.d.ts.map +1 -1
- package/elicitation/flows/elicitation-request.flow.d.ts +40 -40
- package/elicitation/flows/elicitation-request.flow.d.ts.map +1 -1
- package/elicitation/flows/elicitation-result.flow.d.ts +23 -23
- package/elicitation/flows/elicitation-result.flow.d.ts.map +1 -1
- package/elicitation/helpers/elicit.helper.d.ts +4 -4
- package/elicitation/helpers/elicit.helper.d.ts.map +1 -1
- package/elicitation/helpers/extend-output-schema.d.ts.map +1 -1
- package/elicitation/send-elicitation-result.tool.d.ts.map +1 -1
- package/errors/authorization-required.error.d.ts +44 -44
- package/errors/authorization-required.error.d.ts.map +1 -1
- package/errors/index.d.ts +3 -2
- package/errors/index.d.ts.map +1 -1
- package/errors/sdk.errors.d.ts +6 -0
- package/errors/sdk.errors.d.ts.map +1 -1
- package/errors/task.error.d.ts +55 -0
- package/errors/task.error.d.ts.map +1 -0
- package/errors/transport.errors.d.ts +6 -0
- package/errors/transport.errors.d.ts.map +1 -1
- package/esm/index.mjs +42394 -36842
- package/esm-loader/esm-auth.types.d.ts +5 -6
- package/esm-loader/esm-auth.types.d.ts.map +1 -1
- package/esm-loader/esm-manifest.d.ts +13 -14
- package/esm-loader/esm-manifest.d.ts.map +1 -1
- package/esm-loader/factories/esm-record-builders.d.ts +2 -2
- package/esm-loader/factories/esm-record-builders.d.ts.map +1 -1
- package/front-mcp/front-mcp.d.ts +3 -3
- package/front-mcp/front-mcp.d.ts.map +1 -1
- package/front-mcp/front-mcp.providers.d.ts +328 -28
- package/front-mcp/front-mcp.providers.d.ts.map +1 -1
- package/ha/ha-manager.d.ts +119 -0
- package/ha/ha-manager.d.ts.map +1 -0
- package/ha/ha.constants.d.ts +11 -0
- package/ha/ha.constants.d.ts.map +1 -0
- package/ha/ha.types.d.ts +42 -0
- package/ha/ha.types.d.ts.map +1 -0
- package/ha/heartbeat.service.d.ts +44 -0
- package/ha/heartbeat.service.d.ts.map +1 -0
- package/ha/index.d.ts +8 -0
- package/ha/index.d.ts.map +1 -0
- package/ha/notification-relay.d.ts +60 -0
- package/ha/notification-relay.d.ts.map +1 -0
- package/ha/session-takeover.d.ts +28 -0
- package/ha/session-takeover.d.ts.map +1 -0
- package/health/health.service.d.ts +5 -0
- package/health/health.service.d.ts.map +1 -1
- package/index.d.ts +45 -28
- package/index.d.ts.map +1 -1
- package/index.js +43391 -37819
- package/job/job.instance.d.ts +6 -8
- package/job/job.instance.d.ts.map +1 -1
- package/job/tools/execute-job.tool.d.ts.map +1 -1
- package/job/tools/get-job-status.tool.d.ts.map +1 -1
- package/job/tools/list-jobs.tool.d.ts.map +1 -1
- package/job/tools/register-job.tool.d.ts.map +1 -1
- package/job/tools/remove-job.tool.d.ts.map +1 -1
- package/logging/flows/set-level.flow.d.ts +38 -39
- package/logging/flows/set-level.flow.d.ts.map +1 -1
- package/notification/index.d.ts +1 -1
- package/notification/index.d.ts.map +1 -1
- package/notification/notification.service.d.ts +68 -4
- package/notification/notification.service.d.ts.map +1 -1
- package/package.json +18 -14
- package/prompt/flows/get-prompt.flow.d.ts +194 -189
- package/prompt/flows/get-prompt.flow.d.ts.map +1 -1
- package/prompt/flows/prompts-list.flow.d.ts +60 -56
- package/prompt/flows/prompts-list.flow.d.ts.map +1 -1
- package/resource/flows/read-resource.flow.d.ts +91 -86
- package/resource/flows/read-resource.flow.d.ts.map +1 -1
- package/resource/flows/resource-templates-list.flow.d.ts +62 -58
- package/resource/flows/resource-templates-list.flow.d.ts.map +1 -1
- package/resource/flows/resources-list.flow.d.ts +62 -58
- package/resource/flows/resources-list.flow.d.ts.map +1 -1
- package/resource/flows/subscribe-resource.flow.d.ts +38 -39
- package/resource/flows/subscribe-resource.flow.d.ts.map +1 -1
- package/resource/flows/unsubscribe-resource.flow.d.ts +38 -39
- package/resource/flows/unsubscribe-resource.flow.d.ts.map +1 -1
- package/resource/resource.events.d.ts +2 -0
- package/resource/resource.events.d.ts.map +1 -1
- package/resource/resource.registry.d.ts +7 -0
- package/resource/resource.registry.d.ts.map +1 -1
- package/scope/flows/http.request.flow.d.ts +58 -56
- package/scope/flows/http.request.flow.d.ts.map +1 -1
- package/scope/scope.instance.d.ts +81 -15
- package/scope/scope.instance.d.ts.map +1 -1
- package/server/adapters/base.host.adapter.d.ts +4 -1
- package/server/adapters/base.host.adapter.d.ts.map +1 -1
- package/server/adapters/express.host.adapter.d.ts +8 -2
- package/server/adapters/express.host.adapter.d.ts.map +1 -1
- package/server/middleware/csp.middleware.d.ts +64 -0
- package/server/middleware/csp.middleware.d.ts.map +1 -0
- package/server/middleware/host-validation.middleware.d.ts +25 -0
- package/server/middleware/host-validation.middleware.d.ts.map +1 -0
- package/server/security/security-audit.d.ts +66 -0
- package/server/security/security-audit.d.ts.map +1 -0
- package/server/server.instance.d.ts +4 -4
- package/server/server.instance.d.ts.map +1 -1
- package/skill/flows/http/llm-full-txt.flow.d.ts +27 -32
- package/skill/flows/http/llm-full-txt.flow.d.ts.map +1 -1
- package/skill/flows/http/llm-txt.flow.d.ts +27 -32
- package/skill/flows/http/llm-txt.flow.d.ts.map +1 -1
- package/skill/flows/http/skills-api.flow.d.ts +33 -38
- package/skill/flows/http/skills-api.flow.d.ts.map +1 -1
- package/skill/flows/load-skill.flow.d.ts +100 -100
- package/skill/flows/load-skill.flow.d.ts.map +1 -1
- package/skill/flows/search-skills.flow.d.ts +56 -57
- package/skill/flows/search-skills.flow.d.ts.map +1 -1
- package/task/flows/tasks-cancel.flow.d.ts +72 -0
- package/task/flows/tasks-cancel.flow.d.ts.map +1 -0
- package/task/flows/tasks-get.flow.d.ts +69 -0
- package/task/flows/tasks-get.flow.d.ts.map +1 -0
- package/task/flows/tasks-list.flow.d.ts +73 -0
- package/task/flows/tasks-list.flow.d.ts.map +1 -0
- package/task/flows/tasks-result.flow.d.ts +93 -0
- package/task/flows/tasks-result.flow.d.ts.map +1 -0
- package/task/helpers/cli-task-runner.d.ts +46 -0
- package/task/helpers/cli-task-runner.d.ts.map +1 -0
- package/task/helpers/in-process-task-runner.d.ts +28 -0
- package/task/helpers/in-process-task-runner.d.ts.map +1 -0
- package/task/helpers/process-liveness.d.ts +16 -0
- package/task/helpers/process-liveness.d.ts.map +1 -0
- package/task/helpers/task-id.d.ts +10 -0
- package/task/helpers/task-id.d.ts.map +1 -0
- package/task/helpers/task-notifier.d.ts +20 -0
- package/task/helpers/task-notifier.d.ts.map +1 -0
- package/task/helpers/task-runner.d.ts +47 -0
- package/task/helpers/task-runner.d.ts.map +1 -0
- package/task/helpers/task-runner.types.d.ts +32 -0
- package/task/helpers/task-runner.types.d.ts.map +1 -0
- package/task/index.d.ts +24 -0
- package/task/index.d.ts.map +1 -0
- package/task/runtime/execute-task-flag.d.ts +11 -0
- package/task/runtime/execute-task-flag.d.ts.map +1 -0
- package/task/runtime/execute-task.d.ts +21 -0
- package/task/runtime/execute-task.d.ts.map +1 -0
- package/task/store/index.d.ts +4 -0
- package/task/store/index.d.ts.map +1 -0
- package/task/store/storage-task.store.d.ts +42 -0
- package/task/store/storage-task.store.d.ts.map +1 -0
- package/task/store/task-store.factory.d.ts +58 -0
- package/task/store/task-store.factory.d.ts.map +1 -0
- package/task/store/task.store.d.ts +76 -0
- package/task/store/task.store.d.ts.map +1 -0
- package/task/task-scope.helper.d.ts +18 -0
- package/task/task-scope.helper.d.ts.map +1 -0
- package/task/task.registry.d.ts +68 -0
- package/task/task.registry.d.ts.map +1 -0
- package/task/task.types.d.ts +201 -0
- package/task/task.types.d.ts.map +1 -0
- package/tool/flows/call-tool.flow.d.ts +216 -197
- package/tool/flows/call-tool.flow.d.ts.map +1 -1
- package/tool/flows/tools-list.flow.d.ts +82 -76
- package/tool/flows/tools-list.flow.d.ts.map +1 -1
- package/tool/tool.instance.d.ts +4 -6
- package/tool/tool.instance.d.ts.map +1 -1
- package/tool/tool.utils.d.ts +2 -2
- package/tool/tool.utils.d.ts.map +1 -1
- package/transport/adapters/transport.local.adapter.d.ts +10 -11
- package/transport/adapters/transport.local.adapter.d.ts.map +1 -1
- package/transport/adapters/transport.sse.adapter.d.ts +5 -5
- package/transport/adapters/transport.sse.adapter.d.ts.map +1 -1
- package/transport/adapters/transport.streamable-http.adapter.d.ts +7 -7
- package/transport/adapters/transport.streamable-http.adapter.d.ts.map +1 -1
- package/transport/bus/index.d.ts +3 -0
- package/transport/bus/index.d.ts.map +1 -0
- package/transport/bus/redis-transport-bus.d.ts +90 -0
- package/transport/bus/redis-transport-bus.d.ts.map +1 -0
- package/transport/flows/handle.sse.flow.d.ts +17 -18
- package/transport/flows/handle.sse.flow.d.ts.map +1 -1
- package/transport/flows/handle.stateless-http.flow.d.ts +6 -7
- package/transport/flows/handle.stateless-http.flow.d.ts.map +1 -1
- package/transport/flows/handle.streamable-http.flow.d.ts +19 -19
- package/transport/flows/handle.streamable-http.flow.d.ts.map +1 -1
- package/transport/in-memory-server.d.ts +2 -3
- package/transport/in-memory-server.d.ts.map +1 -1
- package/transport/mcp-handlers/call-tool-request.handler.d.ts +2 -2
- package/transport/mcp-handlers/call-tool-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/index.d.ts +719 -565
- package/transport/mcp-handlers/index.d.ts.map +1 -1
- package/transport/mcp-handlers/initialize-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/mcp-error.utils.d.ts +15 -0
- package/transport/mcp-handlers/mcp-error.utils.d.ts.map +1 -0
- package/transport/mcp-handlers/mcp-handlers.types.d.ts +3 -3
- package/transport/mcp-handlers/mcp-handlers.types.d.ts.map +1 -1
- package/transport/mcp-handlers/skills-mcp.types.d.ts +97 -97
- package/transport/mcp-handlers/skills-mcp.types.d.ts.map +1 -1
- package/transport/mcp-handlers/tasks-cancel-request.handler.d.ts +4 -0
- package/transport/mcp-handlers/tasks-cancel-request.handler.d.ts.map +1 -0
- package/transport/mcp-handlers/tasks-get-request.handler.d.ts +4 -0
- package/transport/mcp-handlers/tasks-get-request.handler.d.ts.map +1 -0
- package/transport/mcp-handlers/tasks-list-request.handler.d.ts +4 -0
- package/transport/mcp-handlers/tasks-list-request.handler.d.ts.map +1 -0
- package/transport/mcp-handlers/tasks-result-request.handler.d.ts +4 -0
- package/transport/mcp-handlers/tasks-result-request.handler.d.ts.map +1 -0
- package/transport/transport.registry.d.ts +9 -4
- package/transport/transport.registry.d.ts.map +1 -1
- package/types/zod.types.d.ts +1 -1
- package/types/zod.types.d.ts.map +1 -1
- package/workflow/tools/execute-workflow.tool.d.ts.map +1 -1
- package/workflow/tools/get-workflow-status.tool.d.ts.map +1 -1
- package/workflow/tools/list-workflows.tool.d.ts.map +1 -1
- package/workflow/tools/register-workflow.tool.d.ts.map +1 -1
- package/workflow/tools/remove-workflow.tool.d.ts.map +1 -1
package/job/job.instance.d.ts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import { EntryOwnerRef, ToolInputType, ToolOutputType } from '../common';
|
|
1
|
+
import { type EntryOwnerRef, type ScopeEntry, type ToolInputType, type ToolOutputType } from '../common';
|
|
2
|
+
import { type ToolInputOf, type ToolOutputOf } from '../common/decorators';
|
|
2
3
|
import { JobEntry } from '../common/entries/job.entry';
|
|
3
|
-
import { JobRecord } from '../common/records/job.record';
|
|
4
4
|
import { JobContext } from '../common/interfaces/job.interface';
|
|
5
|
-
import {
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import HookRegistry from '../hooks/hook.registry';
|
|
9
|
-
import { ScopeEntry } from '../common';
|
|
5
|
+
import { type JobRecord } from '../common/records/job.record';
|
|
6
|
+
import type HookRegistry from '../hooks/hook.registry';
|
|
7
|
+
import type ProviderRegistry from '../provider/provider.registry';
|
|
10
8
|
/**
|
|
11
9
|
* Concrete implementation of a job that can be executed.
|
|
12
10
|
*/
|
|
@@ -21,7 +19,7 @@ export declare class JobInstance<InSchema extends ToolInputType = ToolInputType,
|
|
|
21
19
|
constructor(record: JobRecord, providers: ProviderRegistry, owner: EntryOwnerRef);
|
|
22
20
|
protected initialize(): Promise<void>;
|
|
23
21
|
getMetadata(): import("../common").JobMetadata<Readonly<{
|
|
24
|
-
[k: string]:
|
|
22
|
+
[k: string]: import("zod/v4/core").$ZodType<unknown, unknown, import("zod/v4/core").$ZodTypeInternals<unknown, unknown>>;
|
|
25
23
|
}>, ToolOutputType>;
|
|
26
24
|
get providers(): ProviderRegistry;
|
|
27
25
|
create(input: In, extra: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"job.instance.d.ts","sourceRoot":"","sources":["../../src/job/job.instance.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"job.instance.d.ts","sourceRoot":"","sources":["../../src/job/job.instance.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,KAAK,UAAU,EAAE,KAAK,aAAa,EAAE,KAAK,cAAc,EAAE,MAAM,WAAW,CAAC;AACzG,OAAO,EAAE,KAAK,WAAW,EAAE,KAAK,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC3E,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAAE,UAAU,EAAoB,MAAM,oCAAoC,CAAC;AAClF,OAAO,EAAwC,KAAK,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAGpG,OAAO,KAAK,YAAY,MAAM,wBAAwB,CAAC;AAEvD,OAAO,KAAK,gBAAgB,MAAM,+BAA+B,CAAC;AAElE;;GAEG;AACH,qBAAa,WAAW,CACtB,QAAQ,SAAS,aAAa,GAAG,aAAa,EAC9C,SAAS,SAAS,cAAc,GAAG,cAAc,EACjD,EAAE,GAAG,WAAW,CAAC;IAAE,WAAW,EAAE,QAAQ,CAAA;CAAE,CAAC,EAC3C,GAAG,GAAG,YAAY,CAAC;IAAE,YAAY,EAAE,SAAS,CAAA;CAAE,CAAC,CAC/C,SAAQ,QAAQ,CAAC,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,GAAG,CAAC;IAC9C,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAmB;IAC9C,QAAQ,CAAC,KAAK,EAAE,UAAU,CAAC;IAC3B,QAAQ,CAAC,KAAK,EAAE,YAAY,CAAC;gBAEjB,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,gBAAgB,EAAE,KAAK,EAAE,aAAa;cAkBhE,UAAU;IA0B1B,WAAW;;;IAIX,IAAI,SAAS,IAAI,gBAAgB,CAEhC;IAEQ,MAAM,CACb,KAAK,EAAE,EAAE,EACT,KAAK,EAAE;QAAE,QAAQ,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;QAAC,gBAAgB,CAAC,EAAE,OAAO,CAAA;KAAE,GAChF,UAAU,CAAC,QAAQ,EAAE,SAAS,EAAE,EAAE,EAAE,GAAG,CAAC;IA4BlC,UAAU,CAAC,KAAK,EAAE,OAAO,GAAG,EAAE;IAK9B,WAAW,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,GAAG,OAAO;IAa7C,eAAe,CACtB,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,GACtB;QAAE,OAAO,EAAE,IAAI,CAAC;QAAC,IAAI,EAAE,OAAO,CAAA;KAAE,GAAG;QAAE,OAAO,EAAE,KAAK,CAAC;QAAC,KAAK,EAAE,KAAK,CAAA;KAAE;CAOvE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-job.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/execute-job.tool.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"execute-job.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/execute-job.tool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAQ,WAAW,EAAE,MAAM,cAAc,CAAC;AAmBjD,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,WAAW;IAC/C,OAAO,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE;CAsB5F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-job-status.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/get-job-status.tool.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-job-status.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/get-job-status.tool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAQ,WAAW,EAAE,MAAM,cAAc,CAAC;AA2BjD,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,WAAW;IACjD,OAAO,CAAC,KAAK,EAAE;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;;;;CAyBvC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-jobs.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/list-jobs.tool.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-jobs.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/list-jobs.tool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAQ,WAAW,EAAE,MAAM,cAAc,CAAC;AA0BjD,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,WAAW;IAC7C,OAAO,CAAC,KAAK,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;CAwB1F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register-job.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/register-job.tool.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"register-job.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/register-job.tool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAQ,WAAW,EAAE,MAAM,cAAc,CAAC;AAsBjD,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,WAAW;IAChD,OAAO,CAAC,KAAK,EAAE;QACnB,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,MAAM,EAAE,MAAM,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QACtC,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QACvC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;KACjB;;;;CAkCF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remove-job.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/remove-job.tool.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"remove-job.tool.d.ts","sourceRoot":"","sources":["../../../src/job/tools/remove-job.tool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAQ,WAAW,EAAE,MAAM,cAAc,CAAC;AAejD,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,WAAW;IAC9C,OAAO,CAAC,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE;;;;CAuBtC"}
|
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
import { FlowBase, FlowRunOptions } from '../../common';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
level: z.ZodEnum<{
|
|
1
|
+
import { FlowBase, type FlowRunOptions } from '../../common';
|
|
2
|
+
declare const inputSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
3
|
+
request: import("@frontmcp/lazy-zod").ZodObject<{
|
|
4
|
+
method: import("@frontmcp/lazy-zod").ZodLiteral<"logging/setLevel">;
|
|
5
|
+
params: import("@frontmcp/lazy-zod").ZodObject<{
|
|
6
|
+
_meta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
7
|
+
progressToken: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodNumber]>>;
|
|
8
|
+
"io.modelcontextprotocol/related-task": import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
9
|
+
taskId: import("@frontmcp/lazy-zod").ZodString;
|
|
10
|
+
}, import("zod/v4/core").$strip>>;
|
|
11
|
+
}, import("zod/v4/core").$loose>>;
|
|
12
|
+
level: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
14
13
|
error: "error";
|
|
15
14
|
debug: "debug";
|
|
16
15
|
info: "info";
|
|
@@ -20,21 +19,21 @@ declare const inputSchema: z.ZodObject<{
|
|
|
20
19
|
alert: "alert";
|
|
21
20
|
emergency: "emergency";
|
|
22
21
|
}>;
|
|
23
|
-
},
|
|
24
|
-
},
|
|
25
|
-
ctx:
|
|
26
|
-
},
|
|
27
|
-
declare const outputSchema:
|
|
28
|
-
_meta:
|
|
29
|
-
progressToken:
|
|
30
|
-
"io.modelcontextprotocol/related-task":
|
|
31
|
-
taskId:
|
|
32
|
-
},
|
|
33
|
-
},
|
|
34
|
-
},
|
|
35
|
-
declare const stateSchema:
|
|
36
|
-
input:
|
|
37
|
-
level:
|
|
22
|
+
}, import("zod/v4/core").$strip>;
|
|
23
|
+
}, import("zod/v4/core").$strip>;
|
|
24
|
+
ctx: import("@frontmcp/lazy-zod").ZodUnknown;
|
|
25
|
+
}, import("zod/v4/core").$strip>;
|
|
26
|
+
declare const outputSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
27
|
+
_meta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
28
|
+
progressToken: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodNumber]>>;
|
|
29
|
+
"io.modelcontextprotocol/related-task": import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
30
|
+
taskId: import("@frontmcp/lazy-zod").ZodString;
|
|
31
|
+
}, import("zod/v4/core").$strip>>;
|
|
32
|
+
}, import("zod/v4/core").$loose>>;
|
|
33
|
+
}, import("zod/v4/core").$strict>;
|
|
34
|
+
declare const stateSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
35
|
+
input: import("@frontmcp/lazy-zod").ZodObject<{
|
|
36
|
+
level: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
38
37
|
error: "error";
|
|
39
38
|
debug: "debug";
|
|
40
39
|
info: "info";
|
|
@@ -44,17 +43,17 @@ declare const stateSchema: z.ZodObject<{
|
|
|
44
43
|
alert: "alert";
|
|
45
44
|
emergency: "emergency";
|
|
46
45
|
}>;
|
|
47
|
-
},
|
|
48
|
-
sessionId:
|
|
49
|
-
output:
|
|
50
|
-
_meta:
|
|
51
|
-
progressToken:
|
|
52
|
-
"io.modelcontextprotocol/related-task":
|
|
53
|
-
taskId:
|
|
54
|
-
},
|
|
55
|
-
},
|
|
56
|
-
},
|
|
57
|
-
},
|
|
46
|
+
}, import("zod/v4/core").$strip>;
|
|
47
|
+
sessionId: import("@frontmcp/lazy-zod").ZodString;
|
|
48
|
+
output: import("@frontmcp/lazy-zod").ZodObject<{
|
|
49
|
+
_meta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
50
|
+
progressToken: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodNumber]>>;
|
|
51
|
+
"io.modelcontextprotocol/related-task": import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
52
|
+
taskId: import("@frontmcp/lazy-zod").ZodString;
|
|
53
|
+
}, import("zod/v4/core").$strip>>;
|
|
54
|
+
}, import("zod/v4/core").$loose>>;
|
|
55
|
+
}, import("zod/v4/core").$strict>;
|
|
56
|
+
}, import("zod/v4/core").$strip>;
|
|
58
57
|
declare const plan: {
|
|
59
58
|
readonly pre: ["parseInput"];
|
|
60
59
|
readonly execute: ["setLevel"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"set-level.flow.d.ts","sourceRoot":"","sources":["../../../src/logging/flows/set-level.flow.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"set-level.flow.d.ts","sourceRoot":"","sources":["../../../src/logging/flows/set-level.flow.ts"],"names":[],"mappings":"AAKA,OAAO,EAAQ,QAAQ,EAA8B,KAAK,cAAc,EAAE,MAAM,cAAc,CAAC;AAG/F,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;gCAGf,CAAC;AAEH,QAAA,MAAM,YAAY;;;;;;;iCAAoB,CAAC;AAEvC,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;gCAMf,CAAC;AAEH,QAAA,MAAM,IAAI;;;;CAI2B,CAAC;AAEtC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,WAAW;QACnB,mBAAmB,EAAE,cAAc,CACjC,YAAY,EACZ,OAAO,IAAI,EACX,OAAO,WAAW,EAClB,OAAO,YAAY,EACnB,OAAO,WAAW,CACnB,CAAC;KACH;CACF;AAED,QAAA,MAAM,IAAI,EAAG,mBAA4B,CAAC;AAU1C,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,QAAQ,CAAC,OAAO,IAAI,CAAC;IAC7D,MAAM,wCAA0C;IAG1C,UAAU;IAgCV,QAAQ;IAoBR,QAAQ;CAMf"}
|
package/notification/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { NotificationService, type McpNotificationMethod, type RegisteredServer, type McpLoggingLevel, MCP_LOGGING_LEVEL_PRIORITY, type Root, type ClientCapabilities, type ClientInfo, type AIPlatformType, detectAIPlatform, detectPlatformFromUserAgent, detectPlatformFromCapabilities, hasMcpAppsExtension, MCP_APPS_EXTENSION_KEY, supportsElicitation, } from './notification.service';
|
|
1
|
+
export { NotificationService, type McpNotificationMethod, type RegisteredServer, type McpLoggingLevel, MCP_LOGGING_LEVEL_PRIORITY, type Root, type ClientCapabilities, type ClientInfo, type AIPlatformType, detectAIPlatform, detectPlatformFromUserAgent, detectPlatformFromCapabilities, hasMcpAppsExtension, MCP_APPS_EXTENSION_KEY, supportsElicitation, supportsChannels, } from './notification.service';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/notification/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,mBAAmB,EACnB,KAAK,qBAAqB,EAC1B,KAAK,gBAAgB,EACrB,KAAK,eAAe,EACpB,0BAA0B,EAC1B,KAAK,IAAI,EACT,KAAK,kBAAkB,EACvB,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,gBAAgB,EAChB,2BAA2B,EAC3B,8BAA8B,EAC9B,mBAAmB,EACnB,sBAAsB,EACtB,mBAAmB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/notification/index.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,mBAAmB,EACnB,KAAK,qBAAqB,EAC1B,KAAK,gBAAgB,EACrB,KAAK,eAAe,EACpB,0BAA0B,EAC1B,KAAK,IAAI,EACT,KAAK,kBAAkB,EACvB,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,gBAAgB,EAChB,2BAA2B,EAC3B,8BAA8B,EAC9B,mBAAmB,EACnB,sBAAsB,EACtB,mBAAmB,EACnB,gBAAgB,GACjB,MAAM,wBAAwB,CAAC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import
|
|
3
|
-
import { type AIPlatformType, type PlatformDetectionConfig } from '../common';
|
|
1
|
+
import { type LoggingLevel, type McpServer, type ProgressToken, type Root } from '@frontmcp/protocol';
|
|
2
|
+
import type { AIPlatformType, PlatformDetectionConfig } from '../common';
|
|
4
3
|
import type { Scope } from '../scope';
|
|
5
4
|
/**
|
|
6
5
|
* Re-export Root from MCP SDK for convenience.
|
|
@@ -100,6 +99,12 @@ export declare function detectPlatformFromUserAgent(userAgent?: string, config?:
|
|
|
100
99
|
* @returns The detected platform type
|
|
101
100
|
*/
|
|
102
101
|
export declare function detectAIPlatform(clientInfo?: ClientInfo, config?: PlatformDetectionConfig): AIPlatformType;
|
|
102
|
+
/**
|
|
103
|
+
* Check if client capabilities include Claude Code channels support.
|
|
104
|
+
* @param capabilities - Client capabilities from initialize request
|
|
105
|
+
* @returns true if the client supports the claude/channel experimental extension
|
|
106
|
+
*/
|
|
107
|
+
export declare function supportsChannels(capabilities?: ClientCapabilities): boolean;
|
|
103
108
|
/**
|
|
104
109
|
* MCP logging level priority (lower number = more verbose).
|
|
105
110
|
* Uses LoggingLevel from MCP SDK for type safety.
|
|
@@ -108,7 +113,7 @@ export declare const MCP_LOGGING_LEVEL_PRIORITY: Record<LoggingLevel, number>;
|
|
|
108
113
|
/**
|
|
109
114
|
* MCP notification method types per the 2025-11-25 specification.
|
|
110
115
|
*/
|
|
111
|
-
export type McpNotificationMethod = 'notifications/resources/list_changed' | 'notifications/tools/list_changed' | 'notifications/prompts/list_changed' | 'notifications/resources/updated' | 'notifications/message' | 'notifications/progress';
|
|
116
|
+
export type McpNotificationMethod = 'notifications/resources/list_changed' | 'notifications/tools/list_changed' | 'notifications/prompts/list_changed' | 'notifications/resources/updated' | 'notifications/message' | 'notifications/progress' | 'notifications/tasks/status';
|
|
112
117
|
/**
|
|
113
118
|
* Information about a registered MCP server/transport connection.
|
|
114
119
|
*/
|
|
@@ -160,6 +165,8 @@ export declare class NotificationService {
|
|
|
160
165
|
private readonly unsubscribers;
|
|
161
166
|
/** Maps session ID to set of subscribed resource URIs */
|
|
162
167
|
private readonly subscriptions;
|
|
168
|
+
/** Maps session ID to set of subscribed channel names */
|
|
169
|
+
private readonly channelSubscriptions;
|
|
163
170
|
/** Maps session ID to minimum log level for that session */
|
|
164
171
|
private readonly logLevels;
|
|
165
172
|
/**
|
|
@@ -275,6 +282,46 @@ export declare class NotificationService {
|
|
|
275
282
|
* @param uri - The resource URI that was updated
|
|
276
283
|
*/
|
|
277
284
|
notifyResourceUpdated(uri: string): void;
|
|
285
|
+
/**
|
|
286
|
+
* Subscribe a session to receive notifications from a specific channel.
|
|
287
|
+
* Only sessions subscribed to a channel will receive its notifications.
|
|
288
|
+
*
|
|
289
|
+
* @param sessionId - The session to subscribe
|
|
290
|
+
* @param channelName - The channel name to subscribe to
|
|
291
|
+
* @returns true if this is a new subscription
|
|
292
|
+
*/
|
|
293
|
+
subscribeChannel(sessionId: string, channelName: string): boolean;
|
|
294
|
+
/**
|
|
295
|
+
* Unsubscribe a session from a specific channel.
|
|
296
|
+
*
|
|
297
|
+
* @param sessionId - The session to unsubscribe
|
|
298
|
+
* @param channelName - The channel name
|
|
299
|
+
* @returns true if the subscription was removed
|
|
300
|
+
*/
|
|
301
|
+
unsubscribeChannel(sessionId: string, channelName: string): boolean;
|
|
302
|
+
/**
|
|
303
|
+
* Subscribe a session to ALL available channels at once.
|
|
304
|
+
* Convenience method called during initialization when a session has claude/channel capability.
|
|
305
|
+
*
|
|
306
|
+
* @param sessionId - The session to subscribe
|
|
307
|
+
* @param channelNames - Array of all channel names to subscribe to
|
|
308
|
+
*/
|
|
309
|
+
subscribeAllChannels(sessionId: string, channelNames: string[]): void;
|
|
310
|
+
/**
|
|
311
|
+
* Check if a session is subscribed to a specific channel.
|
|
312
|
+
*/
|
|
313
|
+
isChannelSubscribed(sessionId: string, channelName: string): boolean;
|
|
314
|
+
/**
|
|
315
|
+
* Get all sessions subscribed to a specific channel.
|
|
316
|
+
*
|
|
317
|
+
* @param channelName - The channel name
|
|
318
|
+
* @returns Array of session IDs subscribed to this channel
|
|
319
|
+
*/
|
|
320
|
+
getSubscribersForChannel(channelName: string): string[];
|
|
321
|
+
/**
|
|
322
|
+
* Get all channel names a session is subscribed to.
|
|
323
|
+
*/
|
|
324
|
+
getChannelSubscriptions(sessionId: string): string[];
|
|
278
325
|
/**
|
|
279
326
|
* Get the number of registered servers.
|
|
280
327
|
*/
|
|
@@ -413,6 +460,23 @@ export declare class NotificationService {
|
|
|
413
460
|
* Clean up subscriptions and resources.
|
|
414
461
|
*/
|
|
415
462
|
destroy(): Promise<void>;
|
|
463
|
+
/**
|
|
464
|
+
* Send a custom/experimental notification to sessions matching an optional filter.
|
|
465
|
+
* Used for non-standard notification methods like 'notifications/claude/channel'.
|
|
466
|
+
*
|
|
467
|
+
* @param method - The notification method string (can be non-standard)
|
|
468
|
+
* @param params - Notification parameters
|
|
469
|
+
* @param filter - Optional filter function to select which sessions receive the notification
|
|
470
|
+
*/
|
|
471
|
+
sendCustomNotification(method: string, params: Record<string, unknown>, filter?: (session: RegisteredServer) => boolean): void;
|
|
472
|
+
/**
|
|
473
|
+
* Get a registered server by session ID.
|
|
474
|
+
* Used by ChannelNotificationService for targeted sends.
|
|
475
|
+
*
|
|
476
|
+
* @param sessionId - The session ID
|
|
477
|
+
* @returns The registered server info, or undefined if not found
|
|
478
|
+
*/
|
|
479
|
+
getRegisteredServer(sessionId: string): RegisteredServer | undefined;
|
|
416
480
|
private sendNotificationToServer;
|
|
417
481
|
}
|
|
418
482
|
//# sourceMappingURL=notification.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification.service.d.ts","sourceRoot":"","sources":["../../src/notification/notification.service.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"notification.service.d.ts","sourceRoot":"","sources":["../../src/notification/notification.service.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontmcp/sdk",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "FrontMCP SDK",
|
|
5
5
|
"author": "AgentFront <info@agentfront.dev>",
|
|
6
6
|
"homepage": "https://docs.agentfront.dev",
|
|
@@ -73,11 +73,12 @@
|
|
|
73
73
|
"raw-body": "^3.0.0",
|
|
74
74
|
"content-type": "^1.0.5",
|
|
75
75
|
"@vercel/kv": "^3.0.0",
|
|
76
|
-
"@frontmcp/storage-sqlite": "1.0
|
|
77
|
-
"@enclave-vm/core": "^2.13.0",
|
|
76
|
+
"@frontmcp/storage-sqlite": "1.1.0",
|
|
78
77
|
"openai": "^4.0.0 || ^5.0.0 || ^6.0.0",
|
|
79
78
|
"@anthropic-ai/sdk": "^0.30.0 || ^0.78.0",
|
|
80
|
-
"@frontmcp/observability": "1.0
|
|
79
|
+
"@frontmcp/observability": "1.1.0",
|
|
80
|
+
"@enclave-vm/core": "^2.13.0",
|
|
81
|
+
"vectoriadb": "^2.2.0",
|
|
81
82
|
"@opentelemetry/api": "^1.9.0",
|
|
82
83
|
"@opentelemetry/sdk-trace-base": "^1.25.0"
|
|
83
84
|
},
|
|
@@ -88,9 +89,6 @@
|
|
|
88
89
|
"@frontmcp/storage-sqlite": {
|
|
89
90
|
"optional": true
|
|
90
91
|
},
|
|
91
|
-
"@enclave-vm/core": {
|
|
92
|
-
"optional": true
|
|
93
|
-
},
|
|
94
92
|
"openai": {
|
|
95
93
|
"optional": true
|
|
96
94
|
},
|
|
@@ -100,6 +98,12 @@
|
|
|
100
98
|
"@frontmcp/observability": {
|
|
101
99
|
"optional": true
|
|
102
100
|
},
|
|
101
|
+
"@enclave-vm/core": {
|
|
102
|
+
"optional": true
|
|
103
|
+
},
|
|
104
|
+
"vectoriadb": {
|
|
105
|
+
"optional": true
|
|
106
|
+
},
|
|
103
107
|
"@opentelemetry/api": {
|
|
104
108
|
"optional": true
|
|
105
109
|
},
|
|
@@ -109,14 +113,14 @@
|
|
|
109
113
|
},
|
|
110
114
|
"dependencies": {
|
|
111
115
|
"@types/cors": "^2.8.17",
|
|
112
|
-
"@frontmcp/utils": "1.0
|
|
113
|
-
"@frontmcp/guard": "1.0
|
|
114
|
-
"@frontmcp/di": "1.0
|
|
115
|
-
"@frontmcp/
|
|
116
|
-
"@frontmcp/
|
|
117
|
-
"@frontmcp/
|
|
116
|
+
"@frontmcp/utils": "1.1.0",
|
|
117
|
+
"@frontmcp/guard": "1.1.0",
|
|
118
|
+
"@frontmcp/di": "1.1.0",
|
|
119
|
+
"@frontmcp/lazy-zod": "1.1.0",
|
|
120
|
+
"@frontmcp/uipack": "1.1.0",
|
|
121
|
+
"@frontmcp/auth": "1.1.0",
|
|
122
|
+
"@frontmcp/protocol": "1.1.0",
|
|
118
123
|
"ioredis": "^5.8.0",
|
|
119
|
-
"vectoriadb": "^2.2.0",
|
|
120
124
|
"js-yaml": "^4.1.1",
|
|
121
125
|
"jose": "^6.1.3",
|
|
122
126
|
"reflect-metadata": "^0.2.2",
|