@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
|
@@ -18,8 +18,8 @@ export declare const HttpCookieSchema: z.ZodObject<{
|
|
|
18
18
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
19
19
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
20
20
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
21
|
-
lax: "lax";
|
|
22
21
|
strict: "strict";
|
|
22
|
+
lax: "lax";
|
|
23
23
|
none: "none";
|
|
24
24
|
}>>;
|
|
25
25
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -34,8 +34,8 @@ export declare const HttpCookies: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
|
34
34
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
35
35
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
36
36
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
37
|
-
lax: "lax";
|
|
38
37
|
strict: "strict";
|
|
38
|
+
lax: "lax";
|
|
39
39
|
none: "none";
|
|
40
40
|
}>>;
|
|
41
41
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -57,8 +57,8 @@ export declare const HttpRedirectSchema: z.ZodObject<{
|
|
|
57
57
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
58
58
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
59
59
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
60
|
-
lax: "lax";
|
|
61
60
|
strict: "strict";
|
|
61
|
+
lax: "lax";
|
|
62
62
|
none: "none";
|
|
63
63
|
}>>;
|
|
64
64
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -82,8 +82,8 @@ export declare const HttpJsonSchema: z.ZodObject<{
|
|
|
82
82
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
83
83
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
84
84
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
85
|
-
lax: "lax";
|
|
86
85
|
strict: "strict";
|
|
86
|
+
lax: "lax";
|
|
87
87
|
none: "none";
|
|
88
88
|
}>>;
|
|
89
89
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -116,8 +116,8 @@ export declare const HttpTextSchema: z.ZodObject<{
|
|
|
116
116
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
117
117
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
118
118
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
119
|
-
lax: "lax";
|
|
120
119
|
strict: "strict";
|
|
120
|
+
lax: "lax";
|
|
121
121
|
none: "none";
|
|
122
122
|
}>>;
|
|
123
123
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -139,8 +139,8 @@ export declare const HttpHtmlSchema: z.ZodObject<{
|
|
|
139
139
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
140
140
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
141
141
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
142
|
-
lax: "lax";
|
|
143
142
|
strict: "strict";
|
|
143
|
+
lax: "lax";
|
|
144
144
|
none: "none";
|
|
145
145
|
}>>;
|
|
146
146
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -176,8 +176,8 @@ export declare const HttpBinarySchema: z.ZodObject<{
|
|
|
176
176
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
177
177
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
178
178
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
179
|
-
lax: "lax";
|
|
180
179
|
strict: "strict";
|
|
180
|
+
lax: "lax";
|
|
181
181
|
none: "none";
|
|
182
182
|
}>>;
|
|
183
183
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -208,8 +208,8 @@ export declare const HttpImageSchema: z.ZodObject<{
|
|
|
208
208
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
209
209
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
210
210
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
211
|
-
lax: "lax";
|
|
212
211
|
strict: "strict";
|
|
212
|
+
lax: "lax";
|
|
213
213
|
none: "none";
|
|
214
214
|
}>>;
|
|
215
215
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -253,8 +253,8 @@ export declare const HttpStreamSchema: z.ZodObject<{
|
|
|
253
253
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
254
254
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
255
255
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
256
|
-
lax: "lax";
|
|
257
256
|
strict: "strict";
|
|
257
|
+
lax: "lax";
|
|
258
258
|
none: "none";
|
|
259
259
|
}>>;
|
|
260
260
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -281,8 +281,8 @@ export declare const HttpSseSchema: z.ZodObject<{
|
|
|
281
281
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
282
282
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
283
283
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
284
|
-
lax: "lax";
|
|
285
284
|
strict: "strict";
|
|
285
|
+
lax: "lax";
|
|
286
286
|
none: "none";
|
|
287
287
|
}>>;
|
|
288
288
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -335,8 +335,8 @@ export declare const HttpJsonRpcSchema: z.ZodObject<{
|
|
|
335
335
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
336
336
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
337
337
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
338
|
-
lax: "lax";
|
|
339
338
|
strict: "strict";
|
|
339
|
+
lax: "lax";
|
|
340
340
|
none: "none";
|
|
341
341
|
}>>;
|
|
342
342
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -362,8 +362,8 @@ export declare const HttpProblemSchema: z.ZodObject<{
|
|
|
362
362
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
363
363
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
364
364
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
365
|
-
lax: "lax";
|
|
366
365
|
strict: "strict";
|
|
366
|
+
lax: "lax";
|
|
367
367
|
none: "none";
|
|
368
368
|
}>>;
|
|
369
369
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -385,8 +385,8 @@ export declare const HttpEmptySchema: z.ZodObject<{
|
|
|
385
385
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
386
386
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
387
387
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
388
|
-
lax: "lax";
|
|
389
388
|
strict: "strict";
|
|
389
|
+
lax: "lax";
|
|
390
390
|
none: "none";
|
|
391
391
|
}>>;
|
|
392
392
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -409,8 +409,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
409
409
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
410
410
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
411
411
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
412
|
-
lax: "lax";
|
|
413
412
|
strict: "strict";
|
|
413
|
+
lax: "lax";
|
|
414
414
|
none: "none";
|
|
415
415
|
}>>;
|
|
416
416
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -430,8 +430,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
430
430
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
431
431
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
432
432
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
433
|
-
lax: "lax";
|
|
434
433
|
strict: "strict";
|
|
434
|
+
lax: "lax";
|
|
435
435
|
none: "none";
|
|
436
436
|
}>>;
|
|
437
437
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -451,8 +451,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
451
451
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
452
452
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
453
453
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
454
|
-
lax: "lax";
|
|
455
454
|
strict: "strict";
|
|
455
|
+
lax: "lax";
|
|
456
456
|
none: "none";
|
|
457
457
|
}>>;
|
|
458
458
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -470,8 +470,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
470
470
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
471
471
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
472
472
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
473
|
-
lax: "lax";
|
|
474
473
|
strict: "strict";
|
|
474
|
+
lax: "lax";
|
|
475
475
|
none: "none";
|
|
476
476
|
}>>;
|
|
477
477
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -502,8 +502,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
502
502
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
503
503
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
504
504
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
505
|
-
lax: "lax";
|
|
506
505
|
strict: "strict";
|
|
506
|
+
lax: "lax";
|
|
507
507
|
none: "none";
|
|
508
508
|
}>>;
|
|
509
509
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -530,8 +530,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
530
530
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
531
531
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
532
532
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
533
|
-
lax: "lax";
|
|
534
533
|
strict: "strict";
|
|
534
|
+
lax: "lax";
|
|
535
535
|
none: "none";
|
|
536
536
|
}>>;
|
|
537
537
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -568,8 +568,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
568
568
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
569
569
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
570
570
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
571
|
-
lax: "lax";
|
|
572
571
|
strict: "strict";
|
|
572
|
+
lax: "lax";
|
|
573
573
|
none: "none";
|
|
574
574
|
}>>;
|
|
575
575
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -592,8 +592,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
592
592
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
593
593
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
594
594
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
595
|
-
lax: "lax";
|
|
596
595
|
strict: "strict";
|
|
596
|
+
lax: "lax";
|
|
597
597
|
none: "none";
|
|
598
598
|
}>>;
|
|
599
599
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -642,8 +642,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
642
642
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
643
643
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
644
644
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
645
|
-
lax: "lax";
|
|
646
645
|
strict: "strict";
|
|
646
|
+
lax: "lax";
|
|
647
647
|
none: "none";
|
|
648
648
|
}>>;
|
|
649
649
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -665,8 +665,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
665
665
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
666
666
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
667
667
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
668
|
-
lax: "lax";
|
|
669
668
|
strict: "strict";
|
|
669
|
+
lax: "lax";
|
|
670
670
|
none: "none";
|
|
671
671
|
}>>;
|
|
672
672
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -684,8 +684,8 @@ export declare const httpOutputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
684
684
|
httpOnly: z.ZodDefault<z.ZodBoolean>;
|
|
685
685
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
686
686
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
687
|
-
lax: "lax";
|
|
688
687
|
strict: "strict";
|
|
688
|
+
lax: "lax";
|
|
689
689
|
none: "none";
|
|
690
690
|
}>>;
|
|
691
691
|
maxAge: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/app.tokens.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAElE,eAAO,MAAM,sBAAsB,EAAE,gBAAgB,CAAC,gBAAgB,
|
|
1
|
+
{"version":3,"file":"app.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/app.tokens.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAElE,eAAO,MAAM,sBAAsB,EAAE,gBAAgB,CAAC,gBAAgB,CAgB5D,CAAC;AAEX,eAAO,MAAM,uBAAuB,EAAE,gBAAgB,CAAC,iBAAiB,CAc9D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"front-mcp.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/front-mcp.tokens.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAE/C,eAAO,MAAM,cAAc,EAAE,gBAAgB,CAAC,gBAAgB,
|
|
1
|
+
{"version":3,"file":"front-mcp.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/front-mcp.tokens.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAE/C,eAAO,MAAM,cAAc,EAAE,gBAAgB,CAAC,gBAAgB,CAgC7D,CAAC"}
|
package/common/tokens/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/plugin.tokens.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"plugin.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/plugin.tokens.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;CAeoB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const FrontMcpSkillTokens: {
|
|
2
|
+
readonly type: symbol;
|
|
3
|
+
readonly id: symbol;
|
|
4
|
+
readonly name: symbol;
|
|
5
|
+
readonly description: symbol;
|
|
6
|
+
readonly instructions: symbol;
|
|
7
|
+
readonly tools: symbol;
|
|
8
|
+
readonly tags: symbol;
|
|
9
|
+
readonly parameters: symbol;
|
|
10
|
+
readonly examples: symbol;
|
|
11
|
+
readonly priority: symbol;
|
|
12
|
+
readonly hideFromDiscovery: symbol;
|
|
13
|
+
readonly toolValidation: symbol;
|
|
14
|
+
readonly visibility: symbol;
|
|
15
|
+
readonly metadata: symbol;
|
|
16
|
+
};
|
|
17
|
+
export declare const extendedSkillMetadata: symbol;
|
|
18
|
+
//# sourceMappingURL=skill.tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"skill.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/skill.tokens.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;CAeiD,CAAC;AAElF,eAAO,MAAM,qBAAqB,QAA6C,CAAC"}
|
|
@@ -6,12 +6,14 @@ export declare const FrontMcpToolTokens: {
|
|
|
6
6
|
readonly inputSchema: symbol;
|
|
7
7
|
readonly rawInputSchema: symbol;
|
|
8
8
|
readonly outputSchema: symbol;
|
|
9
|
+
readonly rawOutputSchema: symbol;
|
|
9
10
|
readonly tags: symbol;
|
|
10
11
|
readonly annotations: symbol;
|
|
11
12
|
readonly hideFromDiscovery: symbol;
|
|
12
13
|
readonly examples: symbol;
|
|
13
14
|
readonly ui: symbol;
|
|
14
15
|
readonly metadata: symbol;
|
|
16
|
+
readonly authProviders: symbol;
|
|
15
17
|
};
|
|
16
18
|
export declare const extendedToolMetadata: symbol;
|
|
17
19
|
//# sourceMappingURL=tool.tokens.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/tool.tokens.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"tool.tokens.d.ts","sourceRoot":"","sources":["../../../src/common/tokens/tool.tokens.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;CAgBgD,CAAC;AAEhF,eAAO,MAAM,oBAAoB,QAA4C,CAAC"}
|
|
@@ -59,6 +59,15 @@ export type SessionIdPayload = {
|
|
|
59
59
|
protocol?: TransportProtocolType;
|
|
60
60
|
isPublic?: boolean;
|
|
61
61
|
platformType?: AIPlatformType;
|
|
62
|
+
clientName?: string;
|
|
63
|
+
clientVersion?: string;
|
|
64
|
+
supportsElicitation?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Whether this session is in skills-only mode.
|
|
67
|
+
* When true, tools/list returns empty array but skills/search and skills/load work normally.
|
|
68
|
+
* This is useful for planner agents that only need skill information.
|
|
69
|
+
*/
|
|
70
|
+
skillsOnlyMode?: boolean;
|
|
62
71
|
};
|
|
63
72
|
export declare const sessionIdPayloadSchema: z.ZodObject<{
|
|
64
73
|
nodeId: z.ZodString;
|
|
@@ -84,6 +93,10 @@ export declare const sessionIdPayloadSchema: z.ZodObject<{
|
|
|
84
93
|
"generic-mcp": "generic-mcp";
|
|
85
94
|
"ext-apps": "ext-apps";
|
|
86
95
|
}>>;
|
|
96
|
+
clientName: z.ZodOptional<z.ZodString>;
|
|
97
|
+
clientVersion: z.ZodOptional<z.ZodString>;
|
|
98
|
+
supportsElicitation: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
skillsOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
87
100
|
}, z.core.$strip>;
|
|
88
101
|
export interface Authorization {
|
|
89
102
|
token: string;
|
|
@@ -120,6 +133,10 @@ export declare const sessionIdSchema: z.ZodObject<{
|
|
|
120
133
|
"generic-mcp": "generic-mcp";
|
|
121
134
|
"ext-apps": "ext-apps";
|
|
122
135
|
}>>;
|
|
136
|
+
clientName: z.ZodOptional<z.ZodString>;
|
|
137
|
+
clientVersion: z.ZodOptional<z.ZodString>;
|
|
138
|
+
supportsElicitation: z.ZodOptional<z.ZodBoolean>;
|
|
139
|
+
skillsOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
123
140
|
}, z.core.$strip>>;
|
|
124
141
|
}, z.core.$strip>;
|
|
125
142
|
export declare const authorizationSchema: z.ZodObject<{
|
|
@@ -150,6 +167,10 @@ export declare const authorizationSchema: z.ZodObject<{
|
|
|
150
167
|
"generic-mcp": "generic-mcp";
|
|
151
168
|
"ext-apps": "ext-apps";
|
|
152
169
|
}>>;
|
|
170
|
+
clientName: z.ZodOptional<z.ZodString>;
|
|
171
|
+
clientVersion: z.ZodOptional<z.ZodString>;
|
|
172
|
+
supportsElicitation: z.ZodOptional<z.ZodBoolean>;
|
|
173
|
+
skillsOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
153
174
|
}, z.core.$strip>>;
|
|
154
175
|
}, z.core.$strip>>;
|
|
155
176
|
user: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session.types.d.ts","sourceRoot":"","sources":["../../../../src/common/types/auth/session.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,YAAY,GAAG,KAAK,GAAG,iBAAiB,GAAG,eAAe,GAAG,gBAAgB,CAAC;AAElH;;;GAGG;AACH,MAAM,MAAM,cAAc,GACtB,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,UAAU,GACV,MAAM,GACN,aAAa,GACb,UAAU,GACV,SAAS,CAAC;AAEd;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;EAU/B,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG;IACtB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AACF,eAAO,MAAM,eAAe;;;;;;;;;;;;iBAcZ,CAAC;AAEjB,MAAM,MAAM,gBAAgB,GAAG;IAE7B,MAAM,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,MAAM,CAAC;IAEhB,IAAI,EAAE,MAAM,CAAC;IAEb,GAAG,EAAE,MAAM,CAAC;IAEZ,QAAQ,CAAC,EAAE,qBAAqB,CAAC;IAEjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,YAAY,CAAC,EAAE,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"session.types.d.ts","sourceRoot":"","sources":["../../../../src/common/types/auth/session.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,YAAY,GAAG,KAAK,GAAG,iBAAiB,GAAG,eAAe,GAAG,gBAAgB,CAAC;AAElH;;;GAGG;AACH,MAAM,MAAM,cAAc,GACtB,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,UAAU,GACV,MAAM,GACN,aAAa,GACb,UAAU,GACV,SAAS,CAAC;AAEd;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;EAU/B,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG;IACtB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AACF,eAAO,MAAM,eAAe;;;;;;;;;;;;iBAcZ,CAAC;AAEjB,MAAM,MAAM,gBAAgB,GAAG;IAE7B,MAAM,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,MAAM,CAAC;IAEhB,IAAI,EAAE,MAAM,CAAC;IAEb,GAAG,EAAE,MAAM,CAAC;IAEZ,QAAQ,CAAC,EAAE,qBAAqB,CAAC;IAEjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,YAAY,CAAC,EAAE,cAAc,CAAC;IAE9B,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AACF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAYO,CAAC;AAE3C,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,CAAC,EAAE;QACR,EAAE,EAAE,MAAM,CAAC;QACX,oGAAoG;QACpG,OAAO,CAAC,EAAE,gBAAgB,CAAC;KAC5B,CAAC;CACH;AAED,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIwC,CAAC;AAErE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIO,CAAC"}
|
|
@@ -13,27 +13,6 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
13
13
|
keys: z.ZodArray<z.ZodType<import("@frontmcp/sdk").JWK, unknown, z.core.$ZodTypeInternals<import("@frontmcp/sdk").JWK, unknown>>>;
|
|
14
14
|
}, z.core.$strip>>;
|
|
15
15
|
signKey: z.ZodOptional<z.ZodUnion<[z.ZodType<import("@frontmcp/sdk").JWK, unknown, z.core.$ZodTypeInternals<import("@frontmcp/sdk").JWK, unknown>>, z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
16
|
-
transport: z.ZodOptional<z.ZodObject<{
|
|
17
|
-
enableLegacySSE: z.ZodDefault<z.ZodBoolean>;
|
|
18
|
-
enableSseListener: z.ZodDefault<z.ZodBoolean>;
|
|
19
|
-
enableStreamableHttp: z.ZodDefault<z.ZodBoolean>;
|
|
20
|
-
enableStatelessHttp: z.ZodDefault<z.ZodBoolean>;
|
|
21
|
-
enableStatefulHttp: z.ZodDefault<z.ZodBoolean>;
|
|
22
|
-
requireSessionForStreamable: z.ZodDefault<z.ZodBoolean>;
|
|
23
|
-
recreation: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
24
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
25
|
-
redis: z.ZodOptional<z.ZodObject<{
|
|
26
|
-
host: z.ZodString;
|
|
27
|
-
port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
28
|
-
password: z.ZodOptional<z.ZodString>;
|
|
29
|
-
db: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
30
|
-
tls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
31
|
-
keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
32
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
33
|
-
}, z.core.$strip>>;
|
|
34
|
-
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
35
|
-
}, z.core.$strip>>>;
|
|
36
|
-
}, z.core.$strip>>;
|
|
37
16
|
standalone: z.ZodOptional<z.ZodBoolean>;
|
|
38
17
|
excludeFromParent: z.ZodOptional<z.ZodBoolean>;
|
|
39
18
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -64,27 +43,6 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
64
43
|
prompts: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"all">, z.ZodArray<z.ZodString>]>>;
|
|
65
44
|
rateLimit: z.ZodDefault<z.ZodNumber>;
|
|
66
45
|
}, z.core.$strip>>;
|
|
67
|
-
transport: z.ZodOptional<z.ZodObject<{
|
|
68
|
-
enableLegacySSE: z.ZodDefault<z.ZodBoolean>;
|
|
69
|
-
enableSseListener: z.ZodDefault<z.ZodBoolean>;
|
|
70
|
-
enableStreamableHttp: z.ZodDefault<z.ZodBoolean>;
|
|
71
|
-
enableStatelessHttp: z.ZodDefault<z.ZodBoolean>;
|
|
72
|
-
enableStatefulHttp: z.ZodDefault<z.ZodBoolean>;
|
|
73
|
-
requireSessionForStreamable: z.ZodDefault<z.ZodBoolean>;
|
|
74
|
-
recreation: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
75
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
76
|
-
redis: z.ZodOptional<z.ZodObject<{
|
|
77
|
-
host: z.ZodString;
|
|
78
|
-
port: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
79
|
-
password: z.ZodOptional<z.ZodString>;
|
|
80
|
-
db: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
81
|
-
tls: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
82
|
-
keyPrefix: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
83
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
84
|
-
}, z.core.$strip>>;
|
|
85
|
-
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
86
|
-
}, z.core.$strip>>>;
|
|
87
|
-
}, z.core.$strip>>;
|
|
88
46
|
standalone: z.ZodOptional<z.ZodBoolean>;
|
|
89
47
|
excludeFromParent: z.ZodOptional<z.ZodBoolean>;
|
|
90
48
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -109,10 +67,6 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
109
67
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
110
68
|
}, z.core.$strip>;
|
|
111
69
|
}, z.core.$strip>], "type">>;
|
|
112
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
113
|
-
stateful: "stateful";
|
|
114
|
-
stateless: "stateless";
|
|
115
|
-
}>>;
|
|
116
70
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
117
71
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
118
72
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -131,6 +85,12 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
131
85
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
132
86
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
133
87
|
}, z.core.$strip>>;
|
|
88
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
89
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
90
|
+
format: "format";
|
|
91
|
+
strict: "strict";
|
|
92
|
+
}>>;
|
|
93
|
+
}, z.core.$strip>>;
|
|
134
94
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
135
95
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
136
96
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -145,26 +105,43 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
145
105
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
146
106
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
147
107
|
}, z.core.$strip>>;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
108
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
109
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
110
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
111
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
112
|
+
memory: "memory";
|
|
113
|
+
redis: "redis";
|
|
114
|
+
}>>;
|
|
115
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
116
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
117
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
157
118
|
redis: z.ZodOptional<z.ZodObject<{
|
|
158
|
-
|
|
159
|
-
|
|
119
|
+
url: z.ZodOptional<z.ZodString>;
|
|
120
|
+
host: z.ZodOptional<z.ZodString>;
|
|
121
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
160
122
|
password: z.ZodOptional<z.ZodString>;
|
|
161
|
-
db: z.
|
|
162
|
-
tls: z.
|
|
163
|
-
keyPrefix: z.ZodDefault<z.
|
|
164
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
123
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
124
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
125
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
165
126
|
}, z.core.$strip>>;
|
|
166
|
-
|
|
167
|
-
|
|
127
|
+
}, z.core.$strip>>;
|
|
128
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
129
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
130
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
131
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
132
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
133
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
134
|
+
}, z.core.$strip>>;
|
|
135
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
136
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
137
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
138
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
139
|
+
deny: "deny";
|
|
140
|
+
"same-origin": "same-origin";
|
|
141
|
+
allow: "allow";
|
|
142
|
+
}>>;
|
|
143
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
144
|
+
}, z.core.$strip>>;
|
|
168
145
|
}, z.core.$strip>>;
|
|
169
146
|
mode: z.ZodLiteral<"orchestrated">;
|
|
170
147
|
type: z.ZodLiteral<"local">;
|
|
@@ -192,10 +169,6 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
192
169
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
193
170
|
}, z.core.$strip>;
|
|
194
171
|
}, z.core.$strip>], "type">>;
|
|
195
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
196
|
-
stateful: "stateful";
|
|
197
|
-
stateless: "stateless";
|
|
198
|
-
}>>;
|
|
199
172
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
200
173
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
201
174
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -214,6 +187,12 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
214
187
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
215
188
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
216
189
|
}, z.core.$strip>>;
|
|
190
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
191
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
192
|
+
format: "format";
|
|
193
|
+
strict: "strict";
|
|
194
|
+
}>>;
|
|
195
|
+
}, z.core.$strip>>;
|
|
217
196
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
218
197
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
219
198
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -228,26 +207,43 @@ export declare const appAuthOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
228
207
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
229
208
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
230
209
|
}, z.core.$strip>>;
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
210
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
211
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
212
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
213
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
214
|
+
memory: "memory";
|
|
215
|
+
redis: "redis";
|
|
216
|
+
}>>;
|
|
217
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
218
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
219
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
240
220
|
redis: z.ZodOptional<z.ZodObject<{
|
|
241
|
-
|
|
242
|
-
|
|
221
|
+
url: z.ZodOptional<z.ZodString>;
|
|
222
|
+
host: z.ZodOptional<z.ZodString>;
|
|
223
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
243
224
|
password: z.ZodOptional<z.ZodString>;
|
|
244
|
-
db: z.
|
|
245
|
-
tls: z.
|
|
246
|
-
keyPrefix: z.ZodDefault<z.
|
|
247
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
225
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
226
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
227
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
248
228
|
}, z.core.$strip>>;
|
|
249
|
-
|
|
250
|
-
|
|
229
|
+
}, z.core.$strip>>;
|
|
230
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
231
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
232
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
233
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
234
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
235
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
236
|
+
}, z.core.$strip>>;
|
|
237
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
238
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
239
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
240
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
241
|
+
deny: "deny";
|
|
242
|
+
"same-origin": "same-origin";
|
|
243
|
+
allow: "allow";
|
|
244
|
+
}>>;
|
|
245
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
246
|
+
}, z.core.$strip>>;
|
|
251
247
|
}, z.core.$strip>>;
|
|
252
248
|
mode: z.ZodLiteral<"orchestrated">;
|
|
253
249
|
type: z.ZodLiteral<"remote">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-auth.schema.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/app-auth.schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoCxB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"app-auth.schema.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/app-auth.schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoCxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAK/B,CAAC;AAMH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|
|
@@ -1,17 +1,15 @@
|
|
|
1
|
-
export type { PublicAccessConfig, LocalSigningConfig, RemoteProviderConfig, TokenStorageConfig, TokenStorageMemory, TokenStorageRedis, TokenRefreshConfig, SkippedAppBehavior, ConsentConfig,
|
|
2
|
-
export { publicAccessConfigSchema, localSigningConfigSchema, remoteProviderConfigSchema, tokenStorageConfigSchema, tokenRefreshConfigSchema, skippedAppBehaviorSchema, consentConfigSchema, incrementalAuthConfigSchema, } from './shared.schemas';
|
|
3
|
-
export type { PublicAccessConfig as PublicAccessConfigZod, PublicAccessConfigInput, LocalSigningConfig as LocalSigningConfigZod, LocalSigningConfigInput, RemoteProviderConfig as RemoteProviderConfigZod, RemoteProviderConfigInput, TokenStorageConfig as TokenStorageConfigZod, TokenStorageConfigInput, TokenRefreshConfig as TokenRefreshConfigZod, TokenRefreshConfigInput, SkippedAppBehavior as SkippedAppBehaviorZod, ConsentConfig as ConsentConfigZod, ConsentConfigInput, IncrementalAuthConfig as IncrementalAuthConfigZod, IncrementalAuthConfigInput, RedisConfig, } from './shared.schemas';
|
|
1
|
+
export type { PublicAccessConfig, LocalSigningConfig, RemoteProviderConfig, TokenStorageConfig, TokenStorageMemory, TokenStorageRedis, TokenRefreshConfig, SkippedAppBehavior, ConsentConfig, FederatedAuthConfig, IncrementalAuthConfig, PublicAuthOptionsInterface, TransparentAuthOptionsInterface, OrchestratedLocalOptionsInterface, OrchestratedRemoteOptionsInterface, OrchestratedAuthOptionsInterface, AuthOptionsInterface, AuthMode, OrchestratedType, } from './interfaces';
|
|
2
|
+
export { publicAccessConfigSchema, localSigningConfigSchema, remoteProviderConfigSchema, tokenStorageConfigSchema, tokenRefreshConfigSchema, skippedAppBehaviorSchema, consentConfigSchema, federatedAuthConfigSchema, incrementalAuthConfigSchema, } from './shared.schemas';
|
|
3
|
+
export type { PublicAccessConfig as PublicAccessConfigZod, PublicAccessConfigInput, LocalSigningConfig as LocalSigningConfigZod, LocalSigningConfigInput, RemoteProviderConfig as RemoteProviderConfigZod, RemoteProviderConfigInput, TokenStorageConfig as TokenStorageConfigZod, TokenStorageConfigInput, TokenRefreshConfig as TokenRefreshConfigZod, TokenRefreshConfigInput, SkippedAppBehavior as SkippedAppBehaviorZod, ConsentConfig as ConsentConfigZod, ConsentConfigInput, FederatedAuthConfig as FederatedAuthConfigZod, FederatedAuthConfigInput, IncrementalAuthConfig as IncrementalAuthConfigZod, IncrementalAuthConfigInput, RedisConfig, } from './shared.schemas';
|
|
4
4
|
export { publicAuthOptionsSchema } from './public.schema';
|
|
5
5
|
export type { PublicAuthOptions, PublicAuthOptionsInput } from './public.schema';
|
|
6
6
|
export { transparentAuthOptionsSchema } from './transparent.schema';
|
|
7
7
|
export type { TransparentAuthOptions, TransparentAuthOptionsInput } from './transparent.schema';
|
|
8
8
|
export { orchestratedLocalSchema, orchestratedRemoteSchema, orchestratedAuthOptionsSchema, } from './orchestrated.schema';
|
|
9
9
|
export type { OrchestratedLocalOptions, OrchestratedLocalOptionsInput, OrchestratedRemoteOptions, OrchestratedRemoteOptionsInput, OrchestratedAuthOptions, OrchestratedAuthOptionsInput, OrchestratedType as OrchestratedTypeZod, } from './orchestrated.schema';
|
|
10
|
-
export { authOptionsSchema } from './
|
|
11
|
-
export type { AuthOptions, AuthOptionsInput, AuthMode as AuthModeZod } from './
|
|
10
|
+
export { authOptionsSchema } from './schema';
|
|
11
|
+
export type { AuthOptions, AuthOptionsInput, AuthMode as AuthModeZod } from './schema';
|
|
12
12
|
export { appAuthOptionsSchema } from './app-auth.schema';
|
|
13
13
|
export type { AppAuthOptions, AppAuthOptionsInput } from './app-auth.schema';
|
|
14
|
-
export { parseAuthOptions, isPublicMode, isTransparentMode, isOrchestratedMode, isOrchestratedLocal, isOrchestratedRemote, allowsPublicAccess, } from './
|
|
15
|
-
export { transportConfigSchema, transportRecreationConfigSchema, DEFAULT_TRANSPORT_CONFIG, } from './transport.deprecated';
|
|
16
|
-
export type { TransportConfig as TransportConfigZod, TransportConfigInput, TransportRecreationConfig as TransportRecreationConfigZod, TransportRecreationConfigInput, } from './transport.deprecated';
|
|
14
|
+
export { parseAuthOptions, isPublicMode, isTransparentMode, isOrchestratedMode, isOrchestratedLocal, isOrchestratedRemote, allowsPublicAccess, } from './utils';
|
|
17
15
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/index.ts"],"names":[],"mappings":"AAMA,YAAY,EAEV,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,aAAa,EACb,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/index.ts"],"names":[],"mappings":"AAMA,YAAY,EAEV,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,aAAa,EACb,mBAAmB,EACnB,qBAAqB,EAErB,0BAA0B,EAC1B,+BAA+B,EAC/B,iCAAiC,EACjC,kCAAkC,EAClC,gCAAgC,EAChC,oBAAoB,EACpB,QAAQ,EACR,gBAAgB,GACjB,MAAM,cAAc,CAAC;AAKtB,OAAO,EAEL,wBAAwB,EACxB,wBAAwB,EACxB,0BAA0B,EAC1B,wBAAwB,EACxB,wBAAwB,EACxB,wBAAwB,EACxB,mBAAmB,EACnB,yBAAyB,EACzB,2BAA2B,GAC5B,MAAM,kBAAkB,CAAC;AAG1B,YAAY,EACV,kBAAkB,IAAI,qBAAqB,EAC3C,uBAAuB,EACvB,kBAAkB,IAAI,qBAAqB,EAC3C,uBAAuB,EACvB,oBAAoB,IAAI,uBAAuB,EAC/C,yBAAyB,EACzB,kBAAkB,IAAI,qBAAqB,EAC3C,uBAAuB,EACvB,kBAAkB,IAAI,qBAAqB,EAC3C,uBAAuB,EACvB,kBAAkB,IAAI,qBAAqB,EAC3C,aAAa,IAAI,gBAAgB,EACjC,kBAAkB,EAClB,mBAAmB,IAAI,sBAAsB,EAC7C,wBAAwB,EACxB,qBAAqB,IAAI,wBAAwB,EACjD,0BAA0B,EAC1B,WAAW,GACZ,MAAM,kBAAkB,CAAC;AAK1B,OAAO,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAC1D,YAAY,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAKjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,sBAAsB,CAAC;AACpE,YAAY,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,MAAM,sBAAsB,CAAC;AAKhG,OAAO,EACL,uBAAuB,EACvB,wBAAwB,EACxB,6BAA6B,GAC9B,MAAM,uBAAuB,CAAC;AAC/B,YAAY,EACV,wBAAwB,EACxB,6BAA6B,EAC7B,yBAAyB,EACzB,8BAA8B,EAC9B,uBAAuB,EACvB,4BAA4B,EAC5B,gBAAgB,IAAI,mBAAmB,GACxC,MAAM,uBAAuB,CAAC;AAK/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAC7C,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,QAAQ,IAAI,WAAW,EAAE,MAAM,UAAU,CAAC;AAKvF,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAK7E,OAAO,EACL,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,kBAAkB,GACnB,MAAM,SAAS,CAAC"}
|