@frontmcp/sdk 0.7.2 → 0.8.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/adapters/adapter.factory.d.ts +27 -18
- package/agent/adapters/adapter.factory.d.ts.map +1 -1
- package/agent/agent.instance.d.ts +5 -0
- package/agent/agent.instance.d.ts.map +1 -1
- package/agent/agent.scope.d.ts +54 -72
- package/agent/agent.scope.d.ts.map +1 -1
- package/agent/flows/call-agent.flow.d.ts +1 -0
- package/agent/flows/call-agent.flow.d.ts.map +1 -1
- package/app/instances/app.local.instance.d.ts +3 -0
- package/app/instances/app.local.instance.d.ts.map +1 -1
- package/app/instances/app.remote.instance.d.ts +3 -0
- package/app/instances/app.remote.instance.d.ts.map +1 -1
- package/auth/auth.registry.d.ts.map +1 -1
- package/auth/authorization/authorization.types.d.ts +7 -180
- package/auth/authorization/authorization.types.d.ts.map +1 -1
- package/auth/authorization/index.d.ts +2 -0
- package/auth/authorization/index.d.ts.map +1 -1
- package/auth/authorization/orchestrated.accessor.d.ts +161 -0
- package/auth/authorization/orchestrated.accessor.d.ts.map +1 -0
- package/auth/authorization/orchestrated.authorization.d.ts +19 -4
- package/auth/authorization/orchestrated.authorization.d.ts.map +1 -1
- package/auth/authorization/orchestrated.context-extension.d.ts +108 -0
- package/auth/authorization/orchestrated.context-extension.d.ts.map +1 -0
- package/auth/cimd/index.d.ts +14 -0
- package/auth/cimd/index.d.ts.map +1 -0
- package/auth/flows/auth.verify.flow.d.ts.map +1 -1
- package/auth/flows/oauth.authorize.flow.d.ts +30 -3
- package/auth/flows/oauth.authorize.flow.d.ts.map +1 -1
- package/auth/flows/oauth.callback.flow.d.ts +11 -3
- package/auth/flows/oauth.callback.flow.d.ts.map +1 -1
- package/auth/flows/oauth.provider-callback.flow.d.ts +118 -0
- package/auth/flows/oauth.provider-callback.flow.d.ts.map +1 -0
- package/auth/flows/oauth.register.flow.d.ts +1 -1
- package/auth/flows/oauth.token.flow.d.ts +1 -1
- package/auth/flows/session.verify.flow.d.ts +8 -0
- package/auth/flows/session.verify.flow.d.ts.map +1 -1
- package/auth/flows/well-known.jwks.flow.d.ts +3 -3
- package/auth/flows/well-known.oauth-authorization-server.flow.d.ts +3 -2
- package/auth/flows/well-known.oauth-authorization-server.flow.d.ts.map +1 -1
- package/auth/flows/well-known.prm.flow.d.ts +1 -1
- package/auth/instances/instance.local-primary-auth.d.ts +88 -1
- package/auth/instances/instance.local-primary-auth.d.ts.map +1 -1
- package/auth/machine-id.d.ts +14 -0
- package/auth/machine-id.d.ts.map +1 -1
- package/auth/session/encrypted-authorization-vault.d.ts +2 -3
- package/auth/session/encrypted-authorization-vault.d.ts.map +1 -1
- package/auth/session/federated-auth.session.d.ts +252 -0
- package/auth/session/federated-auth.session.d.ts.map +1 -0
- package/auth/session/index.d.ts +6 -2
- package/auth/session/index.d.ts.map +1 -1
- package/auth/session/orchestrated-token.store.d.ts +155 -0
- package/auth/session/orchestrated-token.store.d.ts.map +1 -0
- package/auth/session/record/session.base.d.ts +7 -7
- package/auth/session/record/session.base.d.ts.map +1 -1
- package/auth/session/record/session.mcp.d.ts +11 -0
- package/auth/session/record/session.mcp.d.ts.map +1 -0
- package/auth/session/redis-session.store.d.ts +10 -5
- package/auth/session/redis-session.store.d.ts.map +1 -1
- package/auth/session/session-crypto.d.ts +6 -9
- package/auth/session/session-crypto.d.ts.map +1 -1
- package/{store/store.factory.d.ts → auth/session/session-store.factory.d.ts} +10 -36
- package/auth/session/session-store.factory.d.ts.map +1 -0
- package/auth/session/session.service.d.ts +4 -8
- package/auth/session/session.service.d.ts.map +1 -1
- package/auth/session/session.transport.d.ts +8 -2
- package/auth/session/session.transport.d.ts.map +1 -1
- package/auth/session/session.types.d.ts +5 -5
- package/auth/session/session.types.d.ts.map +1 -1
- package/auth/session/token.refresh.d.ts +1 -2
- package/auth/session/token.refresh.d.ts.map +1 -1
- package/auth/session/transport-session.manager.d.ts +7 -6
- package/auth/session/transport-session.manager.d.ts.map +1 -1
- package/auth/session/utils/session-id.utils.d.ts +18 -1
- package/auth/session/utils/session-id.utils.d.ts.map +1 -1
- package/auth/session/vercel-kv-session.store.d.ts +16 -16
- package/auth/session/vercel-kv-session.store.d.ts.map +1 -1
- package/auth/utils/authorization-id.utils.d.ts +12 -0
- package/auth/utils/authorization-id.utils.d.ts.map +1 -0
- package/auth/utils/index.d.ts +1 -2
- package/auth/utils/index.d.ts.map +1 -1
- package/auth/vault/auth-providers.accessor.d.ts +153 -0
- package/auth/vault/auth-providers.accessor.d.ts.map +1 -0
- package/auth/vault/auth-providers.accessor.impl.d.ts +52 -0
- package/auth/vault/auth-providers.accessor.impl.d.ts.map +1 -0
- package/auth/vault/auth-providers.context-extension.d.ts +68 -0
- package/auth/vault/auth-providers.context-extension.d.ts.map +1 -0
- package/auth/vault/auth-providers.providers.d.ts +40 -0
- package/auth/vault/auth-providers.providers.d.ts.map +1 -0
- package/auth/vault/auth-providers.registry.d.ts +110 -0
- package/auth/vault/auth-providers.registry.d.ts.map +1 -0
- package/auth/vault/auth-providers.vault.d.ts +93 -0
- package/auth/vault/auth-providers.vault.d.ts.map +1 -0
- package/auth/vault/credential-cache.d.ts +13 -0
- package/auth/vault/credential-cache.d.ts.map +1 -0
- package/auth/vault/credential-loaders/eager-loader.d.ts +46 -0
- package/auth/vault/credential-loaders/eager-loader.d.ts.map +1 -0
- package/auth/vault/credential-loaders/index.d.ts +7 -0
- package/auth/vault/credential-loaders/index.d.ts.map +1 -0
- package/auth/vault/credential-loaders/lazy-loader.d.ts +53 -0
- package/auth/vault/credential-loaders/lazy-loader.d.ts.map +1 -0
- package/auth/vault/index.d.ts +56 -0
- package/auth/vault/index.d.ts.map +1 -0
- package/builtin/config/config-resolver.d.ts +162 -0
- package/builtin/config/config-resolver.d.ts.map +1 -0
- package/builtin/config/config.plugin.d.ts +63 -0
- package/builtin/config/config.plugin.d.ts.map +1 -0
- package/builtin/config/config.symbols.d.ts +7 -0
- package/builtin/config/config.symbols.d.ts.map +1 -0
- package/builtin/config/config.types.d.ts +71 -0
- package/builtin/config/config.types.d.ts.map +1 -0
- package/builtin/config/index.d.ts +68 -0
- package/builtin/config/index.d.ts.map +1 -0
- package/builtin/config/providers/config-loader.d.ts +36 -0
- package/builtin/config/providers/config-loader.d.ts.map +1 -0
- package/builtin/config/providers/config.service.d.ts +108 -0
- package/builtin/config/providers/config.service.d.ts.map +1 -0
- package/builtin/config/providers/env-loader.d.ts +76 -0
- package/builtin/config/providers/env-loader.d.ts.map +1 -0
- package/builtin/index.d.ts +7 -0
- package/builtin/index.d.ts.map +1 -0
- package/common/decorators/front-mcp.decorator.d.ts.map +1 -1
- package/common/decorators/hook.decorator.d.ts +0 -10
- package/common/decorators/hook.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/skill.decorator.d.ts +105 -0
- package/common/decorators/skill.decorator.d.ts.map +1 -0
- package/common/dynamic/dynamic.adapter.d.ts +14 -4
- package/common/dynamic/dynamic.adapter.d.ts.map +1 -1
- package/common/entries/app.entry.d.ts +2 -0
- package/common/entries/app.entry.d.ts.map +1 -1
- package/common/entries/index.d.ts +1 -0
- package/common/entries/index.d.ts.map +1 -1
- package/common/entries/prompt.entry.d.ts +0 -6
- package/common/entries/prompt.entry.d.ts.map +1 -1
- package/common/entries/resource.entry.d.ts +0 -6
- package/common/entries/resource.entry.d.ts.map +1 -1
- package/common/entries/scope.entry.d.ts +2 -0
- package/common/entries/scope.entry.d.ts.map +1 -1
- package/common/entries/skill.entry.d.ts +95 -0
- package/common/entries/skill.entry.d.ts.map +1 -0
- package/common/entries/tool.entry.d.ts +17 -9
- package/common/entries/tool.entry.d.ts.map +1 -1
- package/common/interfaces/agent.interface.d.ts +35 -6
- package/common/interfaces/agent.interface.d.ts.map +1 -1
- package/common/interfaces/execution-context.interface.d.ts +14 -0
- package/common/interfaces/execution-context.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/primary-auth-provider.interface.d.ts +1 -7
- package/common/interfaces/internal/primary-auth-provider.interface.d.ts.map +1 -1
- package/common/interfaces/internal/registry.interface.d.ts +4 -1
- package/common/interfaces/internal/registry.interface.d.ts.map +1 -1
- package/common/interfaces/skill.interface.d.ts +91 -0
- package/common/interfaces/skill.interface.d.ts.map +1 -0
- package/common/interfaces/tool.interface.d.ts +39 -0
- package/common/interfaces/tool.interface.d.ts.map +1 -1
- package/common/metadata/agent.metadata.d.ts +62 -2
- package/common/metadata/agent.metadata.d.ts.map +1 -1
- package/common/metadata/app.metadata.d.ts +168 -169
- package/common/metadata/app.metadata.d.ts.map +1 -1
- package/common/metadata/front-mcp.metadata.d.ts +2182 -721
- 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/plugin.metadata.d.ts +8 -1
- package/common/metadata/plugin.metadata.d.ts.map +1 -1
- package/common/metadata/skill.metadata.d.ts +366 -0
- package/common/metadata/skill.metadata.d.ts.map +1 -0
- package/common/metadata/tool.metadata.d.ts +71 -0
- package/common/metadata/tool.metadata.d.ts.map +1 -1
- package/common/records/index.d.ts +1 -0
- package/common/records/index.d.ts.map +1 -1
- package/common/records/skill.record.d.ts +55 -0
- package/common/records/skill.record.d.ts.map +1 -0
- package/common/schemas/annotated-class.schema.d.ts +1 -0
- package/common/schemas/annotated-class.schema.d.ts.map +1 -1
- package/common/schemas/http-output.schema.d.ts +24 -24
- package/common/tokens/app.tokens.d.ts.map +1 -1
- 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/plugin.tokens.d.ts +1 -0
- package/common/tokens/plugin.tokens.d.ts.map +1 -1
- package/common/tokens/skill.tokens.d.ts +18 -0
- package/common/tokens/skill.tokens.d.ts.map +1 -0
- package/common/tokens/tool.tokens.d.ts +2 -0
- package/common/tokens/tool.tokens.d.ts.map +1 -1
- package/common/types/auth/session.types.d.ts +21 -0
- package/common/types/auth/session.types.d.ts.map +1 -1
- package/common/types/options/auth/app-auth.schema.d.ts +80 -84
- package/common/types/options/auth/app-auth.schema.d.ts.map +1 -1
- package/common/types/options/auth/index.d.ts +6 -8
- package/common/types/options/auth/index.d.ts.map +1 -1
- package/common/types/options/auth/{auth.interfaces.d.ts → interfaces.d.ts} +17 -48
- package/common/types/options/auth/interfaces.d.ts.map +1 -0
- package/common/types/options/auth/orchestrated.schema.d.ts +160 -84
- package/common/types/options/auth/orchestrated.schema.d.ts.map +1 -1
- package/common/types/options/auth/public.schema.d.ts +0 -21
- package/common/types/options/auth/public.schema.d.ts.map +1 -1
- package/common/types/options/auth/{auth.schema.d.ts → schema.d.ts} +81 -85
- package/common/types/options/auth/schema.d.ts.map +1 -0
- package/common/types/options/auth/shared.schemas.d.ts +12 -0
- package/common/types/options/auth/shared.schemas.d.ts.map +1 -1
- package/common/types/options/auth/transparent.schema.d.ts +0 -21
- package/common/types/options/auth/transparent.schema.d.ts.map +1 -1
- package/common/types/options/auth/typecheck.d.ts +2 -0
- package/common/types/options/auth/typecheck.d.ts.map +1 -0
- package/common/types/options/auth/{auth.utils.d.ts → utils.d.ts} +2 -2
- package/common/types/options/auth/utils.d.ts.map +1 -0
- package/common/types/options/elicitation/index.d.ts +4 -0
- package/common/types/options/elicitation/index.d.ts.map +1 -0
- package/common/types/options/elicitation/interfaces.d.ts +80 -0
- package/common/types/options/elicitation/interfaces.d.ts.map +1 -0
- package/common/types/options/elicitation/schema.d.ts +75 -0
- package/common/types/options/elicitation/schema.d.ts.map +1 -0
- package/common/types/options/ext-apps/index.d.ts +3 -0
- package/common/types/options/ext-apps/index.d.ts.map +1 -0
- package/common/types/options/ext-apps/interfaces.d.ts +2 -0
- package/common/types/options/ext-apps/interfaces.d.ts.map +1 -0
- package/common/types/options/ext-apps/schema.d.ts +80 -0
- package/common/types/options/ext-apps/schema.d.ts.map +1 -0
- package/common/types/options/http/index.d.ts +4 -0
- package/common/types/options/http/index.d.ts.map +1 -0
- package/common/types/options/http/interfaces.d.ts +23 -0
- package/common/types/options/http/interfaces.d.ts.map +1 -0
- package/common/types/options/http/schema.d.ts +18 -0
- package/common/types/options/http/schema.d.ts.map +1 -0
- package/common/types/options/index.d.ts +10 -6
- package/common/types/options/index.d.ts.map +1 -1
- package/common/types/options/logging/index.d.ts +5 -0
- package/common/types/options/logging/index.d.ts.map +1 -0
- package/common/types/options/logging/interfaces.d.ts +41 -0
- package/common/types/options/logging/interfaces.d.ts.map +1 -0
- package/common/types/options/logging/schema.d.ts +24 -0
- package/common/types/options/logging/schema.d.ts.map +1 -0
- package/common/types/options/pagination/index.d.ts +4 -0
- package/common/types/options/pagination/index.d.ts.map +1 -0
- package/common/types/options/pagination/interfaces.d.ts +43 -0
- package/common/types/options/pagination/interfaces.d.ts.map +1 -0
- package/common/types/options/pagination/schema.d.ts +41 -0
- package/common/types/options/pagination/schema.d.ts.map +1 -0
- package/common/types/options/redis/index.d.ts +4 -0
- package/common/types/options/redis/index.d.ts.map +1 -0
- package/common/types/options/redis/interfaces.d.ts +81 -0
- package/common/types/options/redis/interfaces.d.ts.map +1 -0
- package/common/types/options/{redis.options.d.ts → redis/schema.d.ts} +2 -2
- package/common/types/options/redis/schema.d.ts.map +1 -0
- package/common/types/options/server-info/index.d.ts +4 -0
- package/common/types/options/server-info/index.d.ts.map +1 -0
- package/common/types/options/server-info/interfaces.d.ts +27 -0
- package/common/types/options/server-info/interfaces.d.ts.map +1 -0
- package/common/types/options/{server-info.options.d.ts → server-info/schema.d.ts} +13 -10
- package/common/types/options/server-info/schema.d.ts.map +1 -0
- package/common/types/options/session/index.d.ts +4 -0
- package/common/types/options/session/index.d.ts.map +1 -0
- package/common/types/options/session/interfaces.d.ts +66 -0
- package/common/types/options/session/interfaces.d.ts.map +1 -0
- package/common/types/options/session/schema.d.ts +79 -0
- package/common/types/options/session/schema.d.ts.map +1 -0
- package/common/types/options/skills-http/index.d.ts +4 -0
- package/common/types/options/skills-http/index.d.ts.map +1 -0
- package/common/types/options/skills-http/interfaces.d.ts +321 -0
- package/common/types/options/skills-http/interfaces.d.ts.map +1 -0
- package/common/types/options/skills-http/schema.d.ts +139 -0
- package/common/types/options/skills-http/schema.d.ts.map +1 -0
- package/common/types/options/transport/index.d.ts +4 -0
- package/common/types/options/transport/index.d.ts.map +1 -0
- package/common/types/options/transport/interfaces.d.ts +354 -0
- package/common/types/options/transport/interfaces.d.ts.map +1 -0
- package/common/types/options/transport/schema.d.ts +309 -0
- package/common/types/options/transport/schema.d.ts.map +1 -0
- package/common/types/options/transport/typecheck.d.ts +2 -0
- package/common/types/options/transport/typecheck.d.ts.map +1 -0
- package/common/utils/decide-request-intent.utils.d.ts +3 -3
- package/common/utils/decide-request-intent.utils.d.ts.map +1 -1
- package/context/context-extension.d.ts +1 -28
- package/context/context-extension.d.ts.map +1 -1
- package/context/frontmcp-context-storage.d.ts.map +1 -1
- package/context/frontmcp-context.d.ts +36 -39
- package/context/frontmcp-context.d.ts.map +1 -1
- package/context/frontmcp-context.provider.d.ts +3 -9
- package/context/frontmcp-context.provider.d.ts.map +1 -1
- package/context/index.d.ts +5 -20
- package/context/index.d.ts.map +1 -1
- package/context/metadata.utils.d.ts +24 -0
- package/context/metadata.utils.d.ts.map +1 -0
- package/direct/client.types.d.ts +447 -0
- package/direct/client.types.d.ts.map +1 -0
- package/direct/connect.d.ts +188 -0
- package/direct/connect.d.ts.map +1 -0
- package/direct/direct-client.d.ts +7 -0
- package/direct/direct-client.d.ts.map +1 -0
- package/direct/direct-server.d.ts +38 -0
- package/direct/direct-server.d.ts.map +1 -0
- package/direct/direct.types.d.ts +134 -0
- package/direct/direct.types.d.ts.map +1 -0
- package/direct/index.d.ts +15 -0
- package/direct/index.d.ts.map +1 -0
- package/direct/llm-platform.d.ts +94 -0
- package/direct/llm-platform.d.ts.map +1 -0
- package/elicitation/elicitation-fallback.schema.d.ts +32 -0
- package/elicitation/elicitation-fallback.schema.d.ts.map +1 -0
- package/elicitation/elicitation.types.d.ts +160 -0
- package/elicitation/elicitation.types.d.ts.map +1 -0
- package/elicitation/flows/elicitation-request.flow.d.ts +98 -0
- package/elicitation/flows/elicitation-request.flow.d.ts.map +1 -0
- package/elicitation/flows/elicitation-result.flow.d.ts +79 -0
- package/elicitation/flows/elicitation-result.flow.d.ts.map +1 -0
- package/elicitation/flows/index.d.ts +10 -0
- package/elicitation/flows/index.d.ts.map +1 -0
- package/elicitation/helpers/elicit.helper.d.ts +65 -0
- package/elicitation/helpers/elicit.helper.d.ts.map +1 -0
- package/elicitation/helpers/extend-output-schema.d.ts +31 -0
- package/elicitation/helpers/extend-output-schema.d.ts.map +1 -0
- package/elicitation/helpers/fallback.helper.d.ts +60 -0
- package/elicitation/helpers/fallback.helper.d.ts.map +1 -0
- package/elicitation/helpers/index.d.ts +12 -0
- package/elicitation/helpers/index.d.ts.map +1 -0
- package/elicitation/helpers/validate-elicitation-content.d.ts +52 -0
- package/elicitation/helpers/validate-elicitation-content.d.ts.map +1 -0
- package/elicitation/hooks/elicitation.hooks.d.ts +66 -0
- package/elicitation/hooks/elicitation.hooks.d.ts.map +1 -0
- package/elicitation/hooks/index.d.ts +9 -0
- package/elicitation/hooks/index.d.ts.map +1 -0
- package/elicitation/index.d.ts +18 -0
- package/elicitation/index.d.ts.map +1 -0
- package/elicitation/send-elicitation-result.tool.d.ts +18 -0
- package/elicitation/send-elicitation-result.tool.d.ts.map +1 -0
- package/elicitation/store/elicitation-encryption.d.ts +134 -0
- package/elicitation/store/elicitation-encryption.d.ts.map +1 -0
- package/elicitation/store/elicitation-store.factory.d.ts +197 -0
- package/elicitation/store/elicitation-store.factory.d.ts.map +1 -0
- package/elicitation/store/elicitation.store.d.ts +191 -0
- package/elicitation/store/elicitation.store.d.ts.map +1 -0
- package/elicitation/store/encrypted-elicitation.store.d.ts +121 -0
- package/elicitation/store/encrypted-elicitation.store.d.ts.map +1 -0
- package/elicitation/store/index.d.ts +14 -0
- package/elicitation/store/index.d.ts.map +1 -0
- package/elicitation/store/storage-elicitation.store.d.ts +118 -0
- package/elicitation/store/storage-elicitation.store.d.ts.map +1 -0
- package/errors/elicitation.error.d.ts +115 -0
- package/errors/elicitation.error.d.ts.map +1 -0
- package/errors/index.d.ts +1 -0
- package/errors/index.d.ts.map +1 -1
- package/esm/index.mjs +30824 -19537
- package/esm/package.json +13 -7
- package/ext-apps/ext-apps.handler.d.ts +177 -0
- package/ext-apps/ext-apps.handler.d.ts.map +1 -0
- package/ext-apps/ext-apps.types.d.ts +273 -0
- package/ext-apps/ext-apps.types.d.ts.map +1 -0
- package/ext-apps/index.d.ts +13 -0
- package/ext-apps/index.d.ts.map +1 -0
- package/flows/flow.instance.d.ts.map +1 -1
- package/front-mcp/front-mcp.d.ts +64 -2
- package/front-mcp/front-mcp.d.ts.map +1 -1
- package/front-mcp/front-mcp.providers.d.ts +604 -236
- package/front-mcp/front-mcp.providers.d.ts.map +1 -1
- package/index.d.ts +17 -0
- package/index.d.ts.map +1 -1
- package/index.js +31066 -19707
- package/notification/index.d.ts +1 -1
- package/notification/index.d.ts.map +1 -1
- package/notification/notification.service.d.ts +18 -0
- package/notification/notification.service.d.ts.map +1 -1
- package/package.json +13 -7
- package/plugin/plugin.registry.d.ts +2 -0
- package/plugin/plugin.registry.d.ts.map +1 -1
- package/provider/provider.registry.d.ts +8 -3
- package/provider/provider.registry.d.ts.map +1 -1
- package/scope/flows/http.request.flow.d.ts +4 -0
- package/scope/flows/http.request.flow.d.ts.map +1 -1
- package/scope/scope.instance.d.ts +74 -0
- package/scope/scope.instance.d.ts.map +1 -1
- package/server/server.instance.d.ts +3 -3
- package/server/server.instance.d.ts.map +1 -1
- package/skill/auth/index.d.ts +10 -0
- package/skill/auth/index.d.ts.map +1 -0
- package/skill/auth/skill-http-auth.d.ts +112 -0
- package/skill/auth/skill-http-auth.d.ts.map +1 -0
- package/skill/cache/index.d.ts +13 -0
- package/skill/cache/index.d.ts.map +1 -0
- package/skill/cache/skill-http-cache.d.ts +144 -0
- package/skill/cache/skill-http-cache.d.ts.map +1 -0
- package/skill/cache/skill-http-cache.factory.d.ts +83 -0
- package/skill/cache/skill-http-cache.factory.d.ts.map +1 -0
- package/skill/cache/skill-http-cache.holder.d.ts +35 -0
- package/skill/cache/skill-http-cache.holder.d.ts.map +1 -0
- package/skill/errors/index.d.ts +3 -0
- package/skill/errors/index.d.ts.map +1 -0
- package/skill/errors/skill-validation.error.d.ts +110 -0
- package/skill/errors/skill-validation.error.d.ts.map +1 -0
- package/skill/errors/tool-not-allowed.error.d.ts +66 -0
- package/skill/errors/tool-not-allowed.error.d.ts.map +1 -0
- package/skill/flows/http/index.d.ts +12 -0
- package/skill/flows/http/index.d.ts.map +1 -0
- package/skill/flows/http/llm-full-txt.flow.d.ts +70 -0
- package/skill/flows/http/llm-full-txt.flow.d.ts.map +1 -0
- package/skill/flows/http/llm-txt.flow.d.ts +77 -0
- package/skill/flows/http/llm-txt.flow.d.ts.map +1 -0
- package/skill/flows/http/skills-api.flow.d.ts +81 -0
- package/skill/flows/http/skills-api.flow.d.ts.map +1 -0
- package/skill/flows/index.d.ts +13 -0
- package/skill/flows/index.d.ts.map +1 -0
- package/skill/flows/load-skill.flow.d.ts +169 -0
- package/skill/flows/load-skill.flow.d.ts.map +1 -0
- package/skill/flows/search-skills.flow.d.ts +101 -0
- package/skill/flows/search-skills.flow.d.ts.map +1 -0
- package/skill/guards/index.d.ts +2 -0
- package/skill/guards/index.d.ts.map +1 -0
- package/skill/guards/tool-authorization.guard.d.ts +87 -0
- package/skill/guards/tool-authorization.guard.d.ts.map +1 -0
- package/skill/hooks/index.d.ts +2 -0
- package/skill/hooks/index.d.ts.map +1 -0
- package/skill/hooks/skill-tool.hook.d.ts +52 -0
- package/skill/hooks/skill-tool.hook.d.ts.map +1 -0
- package/skill/index.d.ts +74 -0
- package/skill/index.d.ts.map +1 -0
- package/skill/providers/external-skill.provider.d.ts +240 -0
- package/skill/providers/external-skill.provider.d.ts.map +1 -0
- package/skill/providers/index.d.ts +12 -0
- package/skill/providers/index.d.ts.map +1 -0
- package/skill/providers/memory-skill.provider.d.ts +97 -0
- package/skill/providers/memory-skill.provider.d.ts.map +1 -0
- package/skill/session/index.d.ts +4 -0
- package/skill/session/index.d.ts.map +1 -0
- package/skill/session/skill-session-store.interface.d.ts +79 -0
- package/skill/session/skill-session-store.interface.d.ts.map +1 -0
- package/skill/session/skill-session.manager.d.ts +137 -0
- package/skill/session/skill-session.manager.d.ts.map +1 -0
- package/skill/session/skill-session.types.d.ts +303 -0
- package/skill/session/skill-session.types.d.ts.map +1 -0
- package/skill/skill-http.utils.d.ts +107 -0
- package/skill/skill-http.utils.d.ts.map +1 -0
- package/skill/skill-mode.utils.d.ts +53 -0
- package/skill/skill-mode.utils.d.ts.map +1 -0
- package/skill/skill-scope.helper.d.ts +55 -0
- package/skill/skill-scope.helper.d.ts.map +1 -0
- package/skill/skill-storage.factory.d.ts +194 -0
- package/skill/skill-storage.factory.d.ts.map +1 -0
- package/skill/skill-storage.interface.d.ts +230 -0
- package/skill/skill-storage.interface.d.ts.map +1 -0
- package/skill/skill-validator.d.ts +63 -0
- package/skill/skill-validator.d.ts.map +1 -0
- package/skill/skill.events.d.ts +88 -0
- package/skill/skill.events.d.ts.map +1 -0
- package/skill/skill.instance.d.ts +92 -0
- package/skill/skill.instance.d.ts.map +1 -0
- package/skill/skill.registry.d.ts +309 -0
- package/skill/skill.registry.d.ts.map +1 -0
- package/skill/skill.utils.d.ts +90 -0
- package/skill/skill.utils.d.ts.map +1 -0
- package/skill/sync/index.d.ts +16 -0
- package/skill/sync/index.d.ts.map +1 -0
- package/skill/sync/memory-sync-state.store.d.ts +49 -0
- package/skill/sync/memory-sync-state.store.d.ts.map +1 -0
- package/skill/sync/skill-hash.d.ts +65 -0
- package/skill/sync/skill-hash.d.ts.map +1 -0
- package/skill/sync/sync-state.interface.d.ts +125 -0
- package/skill/sync/sync-state.interface.d.ts.map +1 -0
- package/skill/tools/index.d.ts +21 -0
- package/skill/tools/index.d.ts.map +1 -0
- package/skill/tools/load-skills.tool.d.ts +76 -0
- package/skill/tools/load-skills.tool.d.ts.map +1 -0
- package/skill/tools/search-skills.tool.d.ts +61 -0
- package/skill/tools/search-skills.tool.d.ts.map +1 -0
- package/tool/flows/call-tool.flow.d.ts +1 -0
- package/tool/flows/call-tool.flow.d.ts.map +1 -1
- package/tool/flows/tools-list.flow.d.ts +15 -0
- package/tool/flows/tools-list.flow.d.ts.map +1 -1
- package/tool/tool.instance.d.ts +8 -0
- package/tool/tool.instance.d.ts.map +1 -1
- package/tool/tool.registry.d.ts +11 -0
- package/tool/tool.registry.d.ts.map +1 -1
- package/tool/tool.utils.d.ts.map +1 -1
- package/tool/ui/template-helpers.d.ts +0 -5
- package/tool/ui/template-helpers.d.ts.map +1 -1
- package/transport/adapters/streamable-http-transport.d.ts.map +1 -1
- package/transport/adapters/transport.local.adapter.d.ts +54 -9
- package/transport/adapters/transport.local.adapter.d.ts.map +1 -1
- package/transport/adapters/transport.sse.adapter.d.ts +11 -2
- package/transport/adapters/transport.sse.adapter.d.ts.map +1 -1
- package/transport/adapters/transport.streamable-http.adapter.d.ts +21 -2
- package/transport/adapters/transport.streamable-http.adapter.d.ts.map +1 -1
- package/transport/event-stores/event-store.factory.d.ts +96 -0
- package/transport/event-stores/event-store.factory.d.ts.map +1 -0
- package/transport/event-stores/index.d.ts +47 -0
- package/transport/event-stores/index.d.ts.map +1 -0
- package/transport/event-stores/memory.event-store.d.ts +51 -0
- package/transport/event-stores/memory.event-store.d.ts.map +1 -0
- package/transport/event-stores/redis.event-store.d.ts +79 -0
- package/transport/event-stores/redis.event-store.d.ts.map +1 -0
- package/transport/flows/handle.sse.flow.d.ts.map +1 -1
- package/transport/flows/handle.streamable-http.flow.d.ts +3 -1
- package/transport/flows/handle.streamable-http.flow.d.ts.map +1 -1
- package/transport/in-memory-server.d.ts +85 -0
- package/transport/in-memory-server.d.ts.map +1 -0
- package/transport/index.d.ts +47 -0
- package/transport/index.d.ts.map +1 -1
- package/transport/mcp-handlers/complete-request.handler.d.ts +3 -84
- package/transport/mcp-handlers/complete-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/get-prompt-request.handler.d.ts +3 -128
- package/transport/mcp-handlers/get-prompt-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/index.d.ts +463 -490
- 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/list-prompts-request.handler.d.ts +3 -70
- package/transport/mcp-handlers/list-prompts-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/list-resource-templates-request.handler.d.ts +3 -72
- package/transport/mcp-handlers/list-resource-templates-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/list-resources-request.handler.d.ts +3 -72
- package/transport/mcp-handlers/list-resources-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/list-tools-request.handler.d.ts +3 -85
- package/transport/mcp-handlers/list-tools-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/read-resource-request.handler.d.ts +3 -61
- package/transport/mcp-handlers/read-resource-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/skills-list-request.handler.d.ts +9 -0
- package/transport/mcp-handlers/skills-list-request.handler.d.ts.map +1 -0
- package/transport/mcp-handlers/skills-load-request.handler.d.ts +9 -0
- package/transport/mcp-handlers/skills-load-request.handler.d.ts.map +1 -0
- package/transport/mcp-handlers/skills-mcp.types.d.ts +157 -0
- package/transport/mcp-handlers/skills-mcp.types.d.ts.map +1 -0
- package/transport/mcp-handlers/skills-search-request.handler.d.ts +9 -0
- package/transport/mcp-handlers/skills-search-request.handler.d.ts.map +1 -0
- package/transport/transport.registry.d.ts +9 -1
- package/transport/transport.registry.d.ts.map +1 -1
- package/transport/transport.types.d.ts +1 -8
- package/transport/transport.types.d.ts.map +1 -1
- package/auth/jwks/dev-key-persistence.d.ts +0 -64
- package/auth/jwks/dev-key-persistence.d.ts.map +0 -1
- package/auth/jwks/index.d.ts +0 -4
- package/auth/jwks/index.d.ts.map +0 -1
- package/auth/jwks/jwks.service.d.ts +0 -58
- package/auth/jwks/jwks.service.d.ts.map +0 -1
- package/auth/jwks/jwks.types.d.ts +0 -33
- package/auth/jwks/jwks.types.d.ts.map +0 -1
- package/auth/jwks/jwks.utils.d.ts +0 -5
- package/auth/jwks/jwks.utils.d.ts.map +0 -1
- package/auth/oauth/flows/oauth.authorize.flow.d.ts +0 -32
- package/auth/oauth/flows/oauth.authorize.flow.d.ts.map +0 -1
- package/auth/oauth/flows/oauth.device-authorization.flow.d.ts +0 -47
- package/auth/oauth/flows/oauth.device-authorization.flow.d.ts.map +0 -1
- package/auth/oauth/flows/oauth.introspect.flow.d.ts +0 -27
- package/auth/oauth/flows/oauth.introspect.flow.d.ts.map +0 -1
- package/auth/oauth/flows/oauth.par.flow.d.ts +0 -28
- package/auth/oauth/flows/oauth.par.flow.d.ts.map +0 -1
- package/auth/oauth/flows/oauth.revoke.flow.d.ts +0 -26
- package/auth/oauth/flows/oauth.revoke.flow.d.ts.map +0 -1
- package/auth/oauth/flows/oauth.token.flow.d.ts +0 -58
- package/auth/oauth/flows/oauth.token.flow.d.ts.map +0 -1
- package/auth/oauth/flows/oauth.userinfo.flow.d.ts +0 -23
- package/auth/oauth/flows/oauth.userinfo.flow.d.ts.map +0 -1
- package/auth/oauth/flows/oidc.logout.flow.d.ts +0 -19
- package/auth/oauth/flows/oidc.logout.flow.d.ts.map +0 -1
- package/auth/session/authorization-vault.d.ts +0 -612
- package/auth/session/authorization-vault.d.ts.map +0 -1
- package/auth/session/authorization.store.d.ts +0 -302
- package/auth/session/authorization.store.d.ts.map +0 -1
- package/auth/session/record/session.stateful.d.ts +0 -21
- package/auth/session/record/session.stateful.d.ts.map +0 -1
- package/auth/session/record/session.stateless.d.ts +0 -18
- package/auth/session/record/session.stateless.d.ts.map +0 -1
- package/auth/session/record/session.transparent.d.ts +0 -18
- package/auth/session/record/session.transparent.d.ts.map +0 -1
- package/auth/session/session.crypto.d.ts +0 -8
- package/auth/session/session.crypto.d.ts.map +0 -1
- package/auth/session/session.schema.d.ts +0 -6
- package/auth/session/session.schema.d.ts.map +0 -1
- package/auth/session/token.store.d.ts +0 -36
- package/auth/session/token.store.d.ts.map +0 -1
- package/auth/session/token.vault.d.ts +0 -27
- package/auth/session/token.vault.d.ts.map +0 -1
- package/auth/session/vault-encryption.d.ts +0 -190
- package/auth/session/vault-encryption.d.ts.map +0 -1
- package/auth/utils/audience.validator.d.ts +0 -130
- package/auth/utils/audience.validator.d.ts.map +0 -1
- package/auth/utils/www-authenticate.utils.d.ts +0 -98
- package/auth/utils/www-authenticate.utils.d.ts.map +0 -1
- package/common/migrate/auth-transport.migrate.d.ts +0 -63
- package/common/migrate/auth-transport.migrate.d.ts.map +0 -1
- package/common/migrate/index.d.ts +0 -2
- package/common/migrate/index.d.ts.map +0 -1
- package/common/types/options/auth/auth.interfaces.d.ts.map +0 -1
- package/common/types/options/auth/auth.schema.d.ts.map +0 -1
- package/common/types/options/auth/auth.typecheck.d.ts +0 -2
- package/common/types/options/auth/auth.typecheck.d.ts.map +0 -1
- package/common/types/options/auth/auth.utils.d.ts.map +0 -1
- package/common/types/options/auth/transport.deprecated.d.ts +0 -64
- package/common/types/options/auth/transport.deprecated.d.ts.map +0 -1
- package/common/types/options/http.options.d.ts +0 -15
- package/common/types/options/http.options.d.ts.map +0 -1
- package/common/types/options/logging.options.d.ts +0 -29
- package/common/types/options/logging.options.d.ts.map +0 -1
- package/common/types/options/redis.options.d.ts.map +0 -1
- package/common/types/options/server-info.options.d.ts.map +0 -1
- package/common/types/options/session.options.d.ts +0 -148
- package/common/types/options/session.options.d.ts.map +0 -1
- package/common/types/options/transport.options.d.ts +0 -178
- package/common/types/options/transport.options.d.ts.map +0 -1
- package/context/request-context-storage.d.ts +0 -90
- package/context/request-context-storage.d.ts.map +0 -1
- package/context/request-context.d.ts +0 -185
- package/context/request-context.d.ts.map +0 -1
- package/context/request-context.provider.d.ts +0 -38
- package/context/request-context.provider.d.ts.map +0 -1
- package/context/session-key.provider.d.ts +0 -46
- package/context/session-key.provider.d.ts.map +0 -1
- package/store/adapters/store.base.adapter.d.ts +0 -22
- package/store/adapters/store.base.adapter.d.ts.map +0 -1
- package/store/adapters/store.memory.adapter.d.ts +0 -27
- package/store/adapters/store.memory.adapter.d.ts.map +0 -1
- package/store/adapters/store.redis.adapter.d.ts +0 -34
- package/store/adapters/store.redis.adapter.d.ts.map +0 -1
- package/store/adapters/store.vercel-kv.adapter.d.ts +0 -87
- package/store/adapters/store.vercel-kv.adapter.d.ts.map +0 -1
- package/store/index.d.ts +0 -11
- package/store/index.d.ts.map +0 -1
- package/store/store.factory.d.ts.map +0 -1
- package/store/store.helpers.d.ts +0 -10
- package/store/store.helpers.d.ts.map +0 -1
- package/store/store.registry.d.ts +0 -14
- package/store/store.registry.d.ts.map +0 -1
- package/store/store.tokens.d.ts +0 -4
- package/store/store.tokens.d.ts.map +0 -1
- package/store/store.types.d.ts +0 -65
- package/store/store.types.d.ts.map +0 -1
- package/store/store.utils.d.ts +0 -9
- package/store/store.utils.d.ts.map +0 -1
- package/transport/transport.event-store.d.ts +0 -11
- package/transport/transport.event-store.d.ts.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { AuthOptionsInput } from '../types';
|
|
3
|
-
import { AgentType, ProviderType, PromptType, ResourceType, ToolType, AuthProviderType, PluginType, AdapterType } from '../interfaces';
|
|
3
|
+
import { AgentType, ProviderType, PromptType, ResourceType, ToolType, AuthProviderType, PluginType, AdapterType, SkillType } from '../interfaces';
|
|
4
4
|
/**
|
|
5
5
|
* Declarative metadata describing what a local mcp app contributes at app scope.
|
|
6
6
|
*
|
|
@@ -72,6 +72,12 @@ export interface LocalAppMetadata {
|
|
|
72
72
|
* and even other agents.
|
|
73
73
|
*/
|
|
74
74
|
agents?: AgentType[];
|
|
75
|
+
/**
|
|
76
|
+
* Skills that teach AI how to perform multi-step tasks using tools.
|
|
77
|
+
* Skills are workflow guides that combine multiple tools into coherent
|
|
78
|
+
* recipes. They can be discovered via searchSkills and loaded via loadSkill.
|
|
79
|
+
*/
|
|
80
|
+
skills?: SkillType[];
|
|
75
81
|
/**
|
|
76
82
|
* Configures the app's default authentication provider.
|
|
77
83
|
* If not provided, the app will use the gateway's default auth provider.
|
|
@@ -97,6 +103,7 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
97
103
|
resources: z.ZodOptional<z.ZodArray<z.ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>;
|
|
98
104
|
prompts: z.ZodOptional<z.ZodArray<z.ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>;
|
|
99
105
|
agents: z.ZodOptional<z.ZodArray<z.ZodCustom<AgentType, AgentType>>>;
|
|
106
|
+
skills: z.ZodOptional<z.ZodArray<z.ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>;
|
|
100
107
|
auth: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
101
108
|
mode: z.ZodLiteral<"public">;
|
|
102
109
|
issuer: z.ZodOptional<z.ZodString>;
|
|
@@ -111,27 +118,6 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
111
118
|
keys: z.ZodArray<z.ZodType<import("../types").JWK, unknown, z.core.$ZodTypeInternals<import("../types").JWK, unknown>>>;
|
|
112
119
|
}, z.core.$strip>>;
|
|
113
120
|
signKey: z.ZodOptional<z.ZodUnion<[z.ZodType<import("../types").JWK, unknown, z.core.$ZodTypeInternals<import("../types").JWK, unknown>>, z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
114
|
-
transport: z.ZodOptional<z.ZodObject<{
|
|
115
|
-
enableLegacySSE: z.ZodDefault<z.ZodBoolean>;
|
|
116
|
-
enableSseListener: z.ZodDefault<z.ZodBoolean>;
|
|
117
|
-
enableStreamableHttp: z.ZodDefault<z.ZodBoolean>;
|
|
118
|
-
enableStatelessHttp: z.ZodDefault<z.ZodBoolean>;
|
|
119
|
-
enableStatefulHttp: z.ZodDefault<z.ZodBoolean>;
|
|
120
|
-
requireSessionForStreamable: z.ZodDefault<z.ZodBoolean>;
|
|
121
|
-
recreation: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
122
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
123
|
-
redis: z.ZodOptional<z.ZodObject<{
|
|
124
|
-
host: z.ZodString;
|
|
125
|
-
port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
126
|
-
password: z.ZodOptional<z.ZodString>;
|
|
127
|
-
db: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
128
|
-
tls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
129
|
-
keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
130
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
131
|
-
}, z.core.$strip>>;
|
|
132
|
-
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
133
|
-
}, z.core.$strip>>>;
|
|
134
|
-
}, z.core.$strip>>;
|
|
135
121
|
}, z.core.$strip>, z.ZodObject<{
|
|
136
122
|
mode: z.ZodLiteral<"transparent">;
|
|
137
123
|
remote: z.ZodObject<{
|
|
@@ -160,27 +146,6 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
160
146
|
prompts: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"all">, z.ZodArray<z.ZodString>]>>;
|
|
161
147
|
rateLimit: z.ZodDefault<z.ZodNumber>;
|
|
162
148
|
}, z.core.$strip>>;
|
|
163
|
-
transport: z.ZodOptional<z.ZodObject<{
|
|
164
|
-
enableLegacySSE: z.ZodDefault<z.ZodBoolean>;
|
|
165
|
-
enableSseListener: z.ZodDefault<z.ZodBoolean>;
|
|
166
|
-
enableStreamableHttp: z.ZodDefault<z.ZodBoolean>;
|
|
167
|
-
enableStatelessHttp: z.ZodDefault<z.ZodBoolean>;
|
|
168
|
-
enableStatefulHttp: z.ZodDefault<z.ZodBoolean>;
|
|
169
|
-
requireSessionForStreamable: z.ZodDefault<z.ZodBoolean>;
|
|
170
|
-
recreation: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
171
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
172
|
-
redis: z.ZodOptional<z.ZodObject<{
|
|
173
|
-
host: z.ZodString;
|
|
174
|
-
port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
175
|
-
password: z.ZodOptional<z.ZodString>;
|
|
176
|
-
db: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
177
|
-
tls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
178
|
-
keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
179
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
180
|
-
}, z.core.$strip>>;
|
|
181
|
-
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
182
|
-
}, z.core.$strip>>>;
|
|
183
|
-
}, z.core.$strip>>;
|
|
184
149
|
}, z.core.$strip>, z.ZodObject<{
|
|
185
150
|
local: z.ZodOptional<z.ZodObject<{
|
|
186
151
|
signKey: z.ZodOptional<z.ZodUnion<[z.ZodType<import("../types").JWK, unknown, z.core.$ZodTypeInternals<import("../types").JWK, unknown>>, z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
@@ -203,10 +168,6 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
203
168
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
204
169
|
}, z.core.$strip>;
|
|
205
170
|
}, z.core.$strip>], "type">>;
|
|
206
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
207
|
-
stateful: "stateful";
|
|
208
|
-
stateless: "stateless";
|
|
209
|
-
}>>;
|
|
210
171
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
211
172
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
212
173
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -225,6 +186,12 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
225
186
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
226
187
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
227
188
|
}, z.core.$strip>>;
|
|
189
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
190
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
191
|
+
format: "format";
|
|
192
|
+
strict: "strict";
|
|
193
|
+
}>>;
|
|
194
|
+
}, z.core.$strip>>;
|
|
228
195
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
229
196
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
230
197
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -239,26 +206,43 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
239
206
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
240
207
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
241
208
|
}, z.core.$strip>>;
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
209
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
210
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
211
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
212
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
213
|
+
memory: "memory";
|
|
214
|
+
redis: "redis";
|
|
215
|
+
}>>;
|
|
216
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
217
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
218
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
251
219
|
redis: z.ZodOptional<z.ZodObject<{
|
|
252
|
-
|
|
253
|
-
|
|
220
|
+
url: z.ZodOptional<z.ZodString>;
|
|
221
|
+
host: z.ZodOptional<z.ZodString>;
|
|
222
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
254
223
|
password: z.ZodOptional<z.ZodString>;
|
|
255
|
-
db: z.
|
|
256
|
-
tls: z.
|
|
257
|
-
keyPrefix: z.ZodDefault<z.
|
|
258
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
224
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
225
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
226
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
259
227
|
}, z.core.$strip>>;
|
|
260
|
-
|
|
261
|
-
|
|
228
|
+
}, z.core.$strip>>;
|
|
229
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
230
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
231
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
232
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
233
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
234
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
235
|
+
}, z.core.$strip>>;
|
|
236
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
237
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
238
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
239
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
240
|
+
deny: "deny";
|
|
241
|
+
"same-origin": "same-origin";
|
|
242
|
+
allow: "allow";
|
|
243
|
+
}>>;
|
|
244
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
245
|
+
}, z.core.$strip>>;
|
|
262
246
|
}, z.core.$strip>>;
|
|
263
247
|
mode: z.ZodLiteral<"orchestrated">;
|
|
264
248
|
type: z.ZodLiteral<"local">;
|
|
@@ -284,10 +268,6 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
284
268
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
285
269
|
}, z.core.$strip>;
|
|
286
270
|
}, z.core.$strip>], "type">>;
|
|
287
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
288
|
-
stateful: "stateful";
|
|
289
|
-
stateless: "stateless";
|
|
290
|
-
}>>;
|
|
291
271
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
292
272
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
293
273
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -306,6 +286,12 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
306
286
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
307
287
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
308
288
|
}, z.core.$strip>>;
|
|
289
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
290
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
291
|
+
format: "format";
|
|
292
|
+
strict: "strict";
|
|
293
|
+
}>>;
|
|
294
|
+
}, z.core.$strip>>;
|
|
309
295
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
310
296
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
311
297
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -320,26 +306,43 @@ export declare const frontMcpLocalAppMetadataSchema: z.ZodObject<{
|
|
|
320
306
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
321
307
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
322
308
|
}, z.core.$strip>>;
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
309
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
310
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
311
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
312
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
313
|
+
memory: "memory";
|
|
314
|
+
redis: "redis";
|
|
315
|
+
}>>;
|
|
316
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
317
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
318
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
332
319
|
redis: z.ZodOptional<z.ZodObject<{
|
|
333
|
-
|
|
334
|
-
|
|
320
|
+
url: z.ZodOptional<z.ZodString>;
|
|
321
|
+
host: z.ZodOptional<z.ZodString>;
|
|
322
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
335
323
|
password: z.ZodOptional<z.ZodString>;
|
|
336
|
-
db: z.
|
|
337
|
-
tls: z.
|
|
338
|
-
keyPrefix: z.ZodDefault<z.
|
|
339
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
324
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
325
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
326
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
340
327
|
}, z.core.$strip>>;
|
|
341
|
-
|
|
342
|
-
|
|
328
|
+
}, z.core.$strip>>;
|
|
329
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
330
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
331
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
332
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
333
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
334
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
335
|
+
}, z.core.$strip>>;
|
|
336
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
337
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
338
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
339
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
340
|
+
deny: "deny";
|
|
341
|
+
"same-origin": "same-origin";
|
|
342
|
+
allow: "allow";
|
|
343
|
+
}>>;
|
|
344
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
345
|
+
}, z.core.$strip>>;
|
|
343
346
|
}, z.core.$strip>>;
|
|
344
347
|
mode: z.ZodLiteral<"orchestrated">;
|
|
345
348
|
type: z.ZodLiteral<"remote">;
|
|
@@ -563,27 +566,6 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
563
566
|
keys: z.ZodArray<z.ZodType<import("../types").JWK, unknown, z.core.$ZodTypeInternals<import("../types").JWK, unknown>>>;
|
|
564
567
|
}, z.core.$strip>>;
|
|
565
568
|
signKey: z.ZodOptional<z.ZodUnion<[z.ZodType<import("../types").JWK, unknown, z.core.$ZodTypeInternals<import("../types").JWK, unknown>>, z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
566
|
-
transport: z.ZodOptional<z.ZodObject<{
|
|
567
|
-
enableLegacySSE: z.ZodDefault<z.ZodBoolean>;
|
|
568
|
-
enableSseListener: z.ZodDefault<z.ZodBoolean>;
|
|
569
|
-
enableStreamableHttp: z.ZodDefault<z.ZodBoolean>;
|
|
570
|
-
enableStatelessHttp: z.ZodDefault<z.ZodBoolean>;
|
|
571
|
-
enableStatefulHttp: z.ZodDefault<z.ZodBoolean>;
|
|
572
|
-
requireSessionForStreamable: z.ZodDefault<z.ZodBoolean>;
|
|
573
|
-
recreation: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
574
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
575
|
-
redis: z.ZodOptional<z.ZodObject<{
|
|
576
|
-
host: z.ZodString;
|
|
577
|
-
port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
578
|
-
password: z.ZodOptional<z.ZodString>;
|
|
579
|
-
db: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
580
|
-
tls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
581
|
-
keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
582
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
583
|
-
}, z.core.$strip>>;
|
|
584
|
-
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
585
|
-
}, z.core.$strip>>>;
|
|
586
|
-
}, z.core.$strip>>;
|
|
587
569
|
}, z.core.$strip>, z.ZodObject<{
|
|
588
570
|
mode: z.ZodLiteral<"transparent">;
|
|
589
571
|
remote: z.ZodObject<{
|
|
@@ -612,27 +594,6 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
612
594
|
prompts: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"all">, z.ZodArray<z.ZodString>]>>;
|
|
613
595
|
rateLimit: z.ZodDefault<z.ZodNumber>;
|
|
614
596
|
}, z.core.$strip>>;
|
|
615
|
-
transport: z.ZodOptional<z.ZodObject<{
|
|
616
|
-
enableLegacySSE: z.ZodDefault<z.ZodBoolean>;
|
|
617
|
-
enableSseListener: z.ZodDefault<z.ZodBoolean>;
|
|
618
|
-
enableStreamableHttp: z.ZodDefault<z.ZodBoolean>;
|
|
619
|
-
enableStatelessHttp: z.ZodDefault<z.ZodBoolean>;
|
|
620
|
-
enableStatefulHttp: z.ZodDefault<z.ZodBoolean>;
|
|
621
|
-
requireSessionForStreamable: z.ZodDefault<z.ZodBoolean>;
|
|
622
|
-
recreation: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
623
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
624
|
-
redis: z.ZodOptional<z.ZodObject<{
|
|
625
|
-
host: z.ZodString;
|
|
626
|
-
port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
627
|
-
password: z.ZodOptional<z.ZodString>;
|
|
628
|
-
db: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
629
|
-
tls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
630
|
-
keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
631
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
632
|
-
}, z.core.$strip>>;
|
|
633
|
-
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
634
|
-
}, z.core.$strip>>>;
|
|
635
|
-
}, z.core.$strip>>;
|
|
636
597
|
}, z.core.$strip>, z.ZodObject<{
|
|
637
598
|
local: z.ZodOptional<z.ZodObject<{
|
|
638
599
|
signKey: z.ZodOptional<z.ZodUnion<[z.ZodType<import("../types").JWK, unknown, z.core.$ZodTypeInternals<import("../types").JWK, unknown>>, z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
@@ -655,10 +616,6 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
655
616
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
656
617
|
}, z.core.$strip>;
|
|
657
618
|
}, z.core.$strip>], "type">>;
|
|
658
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
659
|
-
stateful: "stateful";
|
|
660
|
-
stateless: "stateless";
|
|
661
|
-
}>>;
|
|
662
619
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
663
620
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
664
621
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -677,6 +634,12 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
677
634
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
678
635
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
679
636
|
}, z.core.$strip>>;
|
|
637
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
638
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
639
|
+
format: "format";
|
|
640
|
+
strict: "strict";
|
|
641
|
+
}>>;
|
|
642
|
+
}, z.core.$strip>>;
|
|
680
643
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
681
644
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
682
645
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -691,26 +654,43 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
691
654
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
692
655
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
693
656
|
}, z.core.$strip>>;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
657
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
658
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
659
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
660
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
661
|
+
memory: "memory";
|
|
662
|
+
redis: "redis";
|
|
663
|
+
}>>;
|
|
664
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
665
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
666
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
703
667
|
redis: z.ZodOptional<z.ZodObject<{
|
|
704
|
-
|
|
705
|
-
|
|
668
|
+
url: z.ZodOptional<z.ZodString>;
|
|
669
|
+
host: z.ZodOptional<z.ZodString>;
|
|
670
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
706
671
|
password: z.ZodOptional<z.ZodString>;
|
|
707
|
-
db: z.
|
|
708
|
-
tls: z.
|
|
709
|
-
keyPrefix: z.ZodDefault<z.
|
|
710
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
672
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
673
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
674
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
711
675
|
}, z.core.$strip>>;
|
|
712
|
-
|
|
713
|
-
|
|
676
|
+
}, z.core.$strip>>;
|
|
677
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
678
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
679
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
680
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
681
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
682
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
683
|
+
}, z.core.$strip>>;
|
|
684
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
685
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
686
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
687
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
688
|
+
deny: "deny";
|
|
689
|
+
"same-origin": "same-origin";
|
|
690
|
+
allow: "allow";
|
|
691
|
+
}>>;
|
|
692
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
693
|
+
}, z.core.$strip>>;
|
|
714
694
|
}, z.core.$strip>>;
|
|
715
695
|
mode: z.ZodLiteral<"orchestrated">;
|
|
716
696
|
type: z.ZodLiteral<"local">;
|
|
@@ -736,10 +716,6 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
736
716
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
737
717
|
}, z.core.$strip>;
|
|
738
718
|
}, z.core.$strip>], "type">>;
|
|
739
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
740
|
-
stateful: "stateful";
|
|
741
|
-
stateless: "stateless";
|
|
742
|
-
}>>;
|
|
743
719
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
744
720
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
745
721
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -758,6 +734,12 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
758
734
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
759
735
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
760
736
|
}, z.core.$strip>>;
|
|
737
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
738
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
739
|
+
format: "format";
|
|
740
|
+
strict: "strict";
|
|
741
|
+
}>>;
|
|
742
|
+
}, z.core.$strip>>;
|
|
761
743
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
762
744
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
763
745
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -772,26 +754,43 @@ export declare const frontMcpRemoteAppMetadataSchema: z.ZodObject<{
|
|
|
772
754
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
773
755
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
774
756
|
}, z.core.$strip>>;
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
757
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
758
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
759
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
760
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
761
|
+
memory: "memory";
|
|
762
|
+
redis: "redis";
|
|
763
|
+
}>>;
|
|
764
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
765
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
766
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
784
767
|
redis: z.ZodOptional<z.ZodObject<{
|
|
785
|
-
|
|
786
|
-
|
|
768
|
+
url: z.ZodOptional<z.ZodString>;
|
|
769
|
+
host: z.ZodOptional<z.ZodString>;
|
|
770
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
787
771
|
password: z.ZodOptional<z.ZodString>;
|
|
788
|
-
db: z.
|
|
789
|
-
tls: z.
|
|
790
|
-
keyPrefix: z.ZodDefault<z.
|
|
791
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
772
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
773
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
774
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
792
775
|
}, z.core.$strip>>;
|
|
793
|
-
|
|
794
|
-
|
|
776
|
+
}, z.core.$strip>>;
|
|
777
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
778
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
779
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
780
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
781
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
782
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
783
|
+
}, z.core.$strip>>;
|
|
784
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
785
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
786
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
787
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
788
|
+
deny: "deny";
|
|
789
|
+
"same-origin": "same-origin";
|
|
790
|
+
allow: "allow";
|
|
791
|
+
}>>;
|
|
792
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
793
|
+
}, z.core.$strip>>;
|
|
795
794
|
}, z.core.$strip>>;
|
|
796
795
|
mode: z.ZodLiteral<"orchestrated">;
|
|
797
796
|
type: z.ZodLiteral<"remote">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.metadata.d.ts","sourceRoot":"","sources":["../../../src/common/metadata/app.metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAkC,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5E,OAAO,EACL,SAAS,EACT,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,QAAQ,EACR,gBAAgB,EAChB,UAAU,EACV,WAAW,
|
|
1
|
+
{"version":3,"file":"app.metadata.d.ts","sourceRoot":"","sources":["../../../src/common/metadata/app.metadata.ts"],"names":[],"mappings":"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"}
|