@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,5 +1,5 @@
|
|
|
1
1
|
import { JSONWebKeySet, JWK } from '../../auth';
|
|
2
|
-
import { RedisConfig } from '../../../../auth/session/transport-session.types';
|
|
2
|
+
import type { RedisConfig } from '../../../../auth/session/transport-session.types';
|
|
3
3
|
/**
|
|
4
4
|
* Public access configuration for tools/prompts
|
|
5
5
|
*/
|
|
@@ -160,6 +160,17 @@ export interface ConsentConfig {
|
|
|
160
160
|
/** Tools to always include in consent (pre-selected) */
|
|
161
161
|
defaultSelectedTools?: string[];
|
|
162
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* Federated authentication configuration
|
|
165
|
+
*/
|
|
166
|
+
export interface FederatedAuthConfig {
|
|
167
|
+
/**
|
|
168
|
+
* How strictly to validate the OAuth state parameter on provider callbacks.
|
|
169
|
+
* - 'strict': Validates the full state parameter matches the session (recommended)
|
|
170
|
+
* - 'format': Only validates the state format is correct
|
|
171
|
+
*/
|
|
172
|
+
stateValidation: 'strict' | 'format';
|
|
173
|
+
}
|
|
163
174
|
/**
|
|
164
175
|
* Progressive/Incremental authorization configuration
|
|
165
176
|
*/
|
|
@@ -185,26 +196,6 @@ export interface IncrementalAuthConfig {
|
|
|
185
196
|
*/
|
|
186
197
|
showAllAppsAtOnce?: boolean;
|
|
187
198
|
}
|
|
188
|
-
/**
|
|
189
|
-
* @deprecated Use top-level transport config instead
|
|
190
|
-
*/
|
|
191
|
-
export interface TransportRecreationConfig {
|
|
192
|
-
enabled?: boolean;
|
|
193
|
-
redis?: RedisConfig;
|
|
194
|
-
defaultTtlMs?: number;
|
|
195
|
-
}
|
|
196
|
-
/**
|
|
197
|
-
* @deprecated Use top-level transport config instead
|
|
198
|
-
*/
|
|
199
|
-
export interface TransportConfig {
|
|
200
|
-
enableLegacySSE?: boolean;
|
|
201
|
-
enableSseListener?: boolean;
|
|
202
|
-
enableStreamableHttp?: boolean;
|
|
203
|
-
enableStatelessHttp?: boolean;
|
|
204
|
-
enableStatefulHttp?: boolean;
|
|
205
|
-
requireSessionForStreamable?: boolean;
|
|
206
|
-
recreation?: TransportRecreationConfig;
|
|
207
|
-
}
|
|
208
199
|
/**
|
|
209
200
|
* Public mode - No authentication required
|
|
210
201
|
*
|
|
@@ -248,10 +239,6 @@ export interface PublicAuthOptionsInterface {
|
|
|
248
239
|
* @default auto-generated
|
|
249
240
|
*/
|
|
250
241
|
signKey?: JWK | Uint8Array;
|
|
251
|
-
/**
|
|
252
|
-
* @deprecated Use top-level transport config instead
|
|
253
|
-
*/
|
|
254
|
-
transport?: TransportConfig;
|
|
255
242
|
}
|
|
256
243
|
/**
|
|
257
244
|
* Transparent mode - Pass-through OAuth tokens from remote provider
|
|
@@ -292,10 +279,6 @@ export interface TransparentAuthOptionsInterface {
|
|
|
292
279
|
anonymousScopes?: string[];
|
|
293
280
|
/** Public access config for anonymous users */
|
|
294
281
|
publicAccess?: PublicAccessConfig;
|
|
295
|
-
/**
|
|
296
|
-
* @deprecated Use top-level transport config instead
|
|
297
|
-
*/
|
|
298
|
-
transport?: TransportConfig;
|
|
299
282
|
}
|
|
300
283
|
/**
|
|
301
284
|
* Orchestrated local mode - Full local authentication
|
|
@@ -322,11 +305,6 @@ export interface OrchestratedLocalOptionsInterface {
|
|
|
322
305
|
* @default { type: 'memory' }
|
|
323
306
|
*/
|
|
324
307
|
tokenStorage?: TokenStorageConfig;
|
|
325
|
-
/**
|
|
326
|
-
* Session storage mode
|
|
327
|
-
* @default 'stateful'
|
|
328
|
-
*/
|
|
329
|
-
sessionMode?: 'stateful' | 'stateless';
|
|
330
308
|
/**
|
|
331
309
|
* Allow default public access for unauthenticated requests
|
|
332
310
|
* @default false
|
|
@@ -341,16 +319,14 @@ export interface OrchestratedLocalOptionsInterface {
|
|
|
341
319
|
publicAccess?: PublicAccessConfig;
|
|
342
320
|
/** Consent flow configuration */
|
|
343
321
|
consent?: ConsentConfig;
|
|
322
|
+
/** Federated auth configuration */
|
|
323
|
+
federatedAuth?: FederatedAuthConfig;
|
|
344
324
|
/** Token refresh settings */
|
|
345
325
|
refresh?: TokenRefreshConfig;
|
|
346
326
|
/** Expected token audience */
|
|
347
327
|
expectedAudience?: string | string[];
|
|
348
328
|
/** Incremental authorization configuration */
|
|
349
329
|
incrementalAuth?: IncrementalAuthConfig;
|
|
350
|
-
/**
|
|
351
|
-
* @deprecated Use top-level transport config instead
|
|
352
|
-
*/
|
|
353
|
-
transport?: TransportConfig;
|
|
354
330
|
}
|
|
355
331
|
/**
|
|
356
332
|
* Orchestrated remote mode - Proxy to remote OAuth provider
|
|
@@ -382,11 +358,6 @@ export interface OrchestratedRemoteOptionsInterface {
|
|
|
382
358
|
* @default { type: 'memory' }
|
|
383
359
|
*/
|
|
384
360
|
tokenStorage?: TokenStorageConfig;
|
|
385
|
-
/**
|
|
386
|
-
* Session storage mode
|
|
387
|
-
* @default 'stateful'
|
|
388
|
-
*/
|
|
389
|
-
sessionMode?: 'stateful' | 'stateless';
|
|
390
361
|
/**
|
|
391
362
|
* Allow default public access for unauthenticated requests
|
|
392
363
|
* @default false
|
|
@@ -401,16 +372,14 @@ export interface OrchestratedRemoteOptionsInterface {
|
|
|
401
372
|
publicAccess?: PublicAccessConfig;
|
|
402
373
|
/** Consent flow configuration */
|
|
403
374
|
consent?: ConsentConfig;
|
|
375
|
+
/** Federated auth configuration */
|
|
376
|
+
federatedAuth?: FederatedAuthConfig;
|
|
404
377
|
/** Token refresh settings */
|
|
405
378
|
refresh?: TokenRefreshConfig;
|
|
406
379
|
/** Expected token audience */
|
|
407
380
|
expectedAudience?: string | string[];
|
|
408
381
|
/** Incremental authorization configuration */
|
|
409
382
|
incrementalAuth?: IncrementalAuthConfig;
|
|
410
|
-
/**
|
|
411
|
-
* @deprecated Use top-level transport config instead
|
|
412
|
-
*/
|
|
413
|
-
transport?: TransportConfig;
|
|
414
383
|
}
|
|
415
384
|
/**
|
|
416
385
|
* Authentication configuration for @FrontMcp decorator
|
|
@@ -459,4 +428,4 @@ export type AuthMode = 'public' | 'transparent' | 'orchestrated';
|
|
|
459
428
|
* Orchestrated type
|
|
460
429
|
*/
|
|
461
430
|
export type OrchestratedType = 'local' | 'remote';
|
|
462
|
-
//# sourceMappingURL=
|
|
431
|
+
//# sourceMappingURL=interfaces.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/interfaces.ts"],"names":[],"mappings":"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"}
|
|
@@ -21,10 +21,6 @@ export declare const orchestratedLocalSchema: z.ZodObject<{
|
|
|
21
21
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
22
22
|
}, z.core.$strip>;
|
|
23
23
|
}, z.core.$strip>], "type">>;
|
|
24
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
25
|
-
stateful: "stateful";
|
|
26
|
-
stateless: "stateless";
|
|
27
|
-
}>>;
|
|
28
24
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
29
25
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
30
26
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -43,6 +39,12 @@ export declare const orchestratedLocalSchema: z.ZodObject<{
|
|
|
43
39
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
44
40
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
45
41
|
}, z.core.$strip>>;
|
|
42
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
43
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
44
|
+
format: "format";
|
|
45
|
+
strict: "strict";
|
|
46
|
+
}>>;
|
|
47
|
+
}, z.core.$strip>>;
|
|
46
48
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
47
49
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
48
50
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -57,26 +59,43 @@ export declare const orchestratedLocalSchema: z.ZodObject<{
|
|
|
57
59
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
58
60
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
59
61
|
}, z.core.$strip>>;
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
62
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
63
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
64
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
65
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
66
|
+
memory: "memory";
|
|
67
|
+
redis: "redis";
|
|
68
|
+
}>>;
|
|
69
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
70
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
71
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
69
72
|
redis: z.ZodOptional<z.ZodObject<{
|
|
70
|
-
|
|
71
|
-
|
|
73
|
+
url: z.ZodOptional<z.ZodString>;
|
|
74
|
+
host: z.ZodOptional<z.ZodString>;
|
|
75
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
72
76
|
password: z.ZodOptional<z.ZodString>;
|
|
73
|
-
db: z.
|
|
74
|
-
tls: z.
|
|
75
|
-
keyPrefix: z.ZodDefault<z.
|
|
76
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
77
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
78
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
79
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
77
80
|
}, z.core.$strip>>;
|
|
78
|
-
|
|
79
|
-
|
|
81
|
+
}, z.core.$strip>>;
|
|
82
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
83
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
84
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
85
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
86
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
87
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
88
|
+
}, z.core.$strip>>;
|
|
89
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
90
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
91
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
92
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
93
|
+
deny: "deny";
|
|
94
|
+
"same-origin": "same-origin";
|
|
95
|
+
allow: "allow";
|
|
96
|
+
}>>;
|
|
97
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
98
|
+
}, z.core.$strip>>;
|
|
80
99
|
}, z.core.$strip>>;
|
|
81
100
|
mode: z.ZodLiteral<"orchestrated">;
|
|
82
101
|
type: z.ZodLiteral<"local">;
|
|
@@ -103,10 +122,6 @@ export declare const orchestratedRemoteSchema: z.ZodObject<{
|
|
|
103
122
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
104
123
|
}, z.core.$strip>;
|
|
105
124
|
}, z.core.$strip>], "type">>;
|
|
106
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
107
|
-
stateful: "stateful";
|
|
108
|
-
stateless: "stateless";
|
|
109
|
-
}>>;
|
|
110
125
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
111
126
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
112
127
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -125,6 +140,12 @@ export declare const orchestratedRemoteSchema: z.ZodObject<{
|
|
|
125
140
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
126
141
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
127
142
|
}, z.core.$strip>>;
|
|
143
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
144
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
145
|
+
format: "format";
|
|
146
|
+
strict: "strict";
|
|
147
|
+
}>>;
|
|
148
|
+
}, z.core.$strip>>;
|
|
128
149
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
129
150
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
130
151
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -139,26 +160,43 @@ export declare const orchestratedRemoteSchema: z.ZodObject<{
|
|
|
139
160
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
140
161
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
141
162
|
}, z.core.$strip>>;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
163
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
164
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
165
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
166
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
167
|
+
memory: "memory";
|
|
168
|
+
redis: "redis";
|
|
169
|
+
}>>;
|
|
170
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
171
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
172
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
151
173
|
redis: z.ZodOptional<z.ZodObject<{
|
|
152
|
-
|
|
153
|
-
|
|
174
|
+
url: z.ZodOptional<z.ZodString>;
|
|
175
|
+
host: z.ZodOptional<z.ZodString>;
|
|
176
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
154
177
|
password: z.ZodOptional<z.ZodString>;
|
|
155
|
-
db: z.
|
|
156
|
-
tls: z.
|
|
157
|
-
keyPrefix: z.ZodDefault<z.
|
|
158
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
178
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
179
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
180
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
159
181
|
}, z.core.$strip>>;
|
|
160
|
-
|
|
161
|
-
|
|
182
|
+
}, z.core.$strip>>;
|
|
183
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
184
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
185
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
186
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
187
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
188
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
189
|
+
}, z.core.$strip>>;
|
|
190
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
191
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
192
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
193
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
194
|
+
deny: "deny";
|
|
195
|
+
"same-origin": "same-origin";
|
|
196
|
+
allow: "allow";
|
|
197
|
+
}>>;
|
|
198
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
199
|
+
}, z.core.$strip>>;
|
|
162
200
|
}, z.core.$strip>>;
|
|
163
201
|
mode: z.ZodLiteral<"orchestrated">;
|
|
164
202
|
type: z.ZodLiteral<"remote">;
|
|
@@ -202,10 +240,6 @@ export declare const orchestratedAuthOptionsSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
202
240
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
203
241
|
}, z.core.$strip>;
|
|
204
242
|
}, z.core.$strip>], "type">>;
|
|
205
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
206
|
-
stateful: "stateful";
|
|
207
|
-
stateless: "stateless";
|
|
208
|
-
}>>;
|
|
209
243
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
210
244
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
211
245
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -224,6 +258,12 @@ export declare const orchestratedAuthOptionsSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
224
258
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
225
259
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
226
260
|
}, z.core.$strip>>;
|
|
261
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
262
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
263
|
+
format: "format";
|
|
264
|
+
strict: "strict";
|
|
265
|
+
}>>;
|
|
266
|
+
}, z.core.$strip>>;
|
|
227
267
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
228
268
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
229
269
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -238,26 +278,43 @@ export declare const orchestratedAuthOptionsSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
238
278
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
239
279
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
240
280
|
}, z.core.$strip>>;
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
281
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
282
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
283
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
284
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
285
|
+
memory: "memory";
|
|
286
|
+
redis: "redis";
|
|
287
|
+
}>>;
|
|
288
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
289
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
290
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
250
291
|
redis: z.ZodOptional<z.ZodObject<{
|
|
251
|
-
|
|
252
|
-
|
|
292
|
+
url: z.ZodOptional<z.ZodString>;
|
|
293
|
+
host: z.ZodOptional<z.ZodString>;
|
|
294
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
253
295
|
password: z.ZodOptional<z.ZodString>;
|
|
254
|
-
db: z.
|
|
255
|
-
tls: z.
|
|
256
|
-
keyPrefix: z.ZodDefault<z.
|
|
257
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
296
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
297
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
298
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
258
299
|
}, z.core.$strip>>;
|
|
259
|
-
|
|
260
|
-
|
|
300
|
+
}, z.core.$strip>>;
|
|
301
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
302
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
303
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
304
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
305
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
306
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
307
|
+
}, z.core.$strip>>;
|
|
308
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
309
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
310
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
311
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
312
|
+
deny: "deny";
|
|
313
|
+
"same-origin": "same-origin";
|
|
314
|
+
allow: "allow";
|
|
315
|
+
}>>;
|
|
316
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
317
|
+
}, z.core.$strip>>;
|
|
261
318
|
}, z.core.$strip>>;
|
|
262
319
|
mode: z.ZodLiteral<"orchestrated">;
|
|
263
320
|
type: z.ZodLiteral<"local">;
|
|
@@ -283,10 +340,6 @@ export declare const orchestratedAuthOptionsSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
283
340
|
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
284
341
|
}, z.core.$strip>;
|
|
285
342
|
}, z.core.$strip>], "type">>;
|
|
286
|
-
sessionMode: z.ZodDefault<z.ZodEnum<{
|
|
287
|
-
stateful: "stateful";
|
|
288
|
-
stateless: "stateless";
|
|
289
|
-
}>>;
|
|
290
343
|
allowDefaultPublic: z.ZodDefault<z.ZodBoolean>;
|
|
291
344
|
anonymousScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
292
345
|
publicAccess: z.ZodOptional<z.ZodObject<{
|
|
@@ -305,6 +358,12 @@ export declare const orchestratedAuthOptionsSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
305
358
|
excludedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
306
359
|
defaultSelectedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
307
360
|
}, z.core.$strip>>;
|
|
361
|
+
federatedAuth: z.ZodOptional<z.ZodObject<{
|
|
362
|
+
stateValidation: z.ZodDefault<z.ZodEnum<{
|
|
363
|
+
format: "format";
|
|
364
|
+
strict: "strict";
|
|
365
|
+
}>>;
|
|
366
|
+
}, z.core.$strip>>;
|
|
308
367
|
refresh: z.ZodOptional<z.ZodObject<{
|
|
309
368
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
310
369
|
skewSeconds: z.ZodDefault<z.ZodNumber>;
|
|
@@ -319,26 +378,43 @@ export declare const orchestratedAuthOptionsSchema: z.ZodDiscriminatedUnion<[z.Z
|
|
|
319
378
|
allowSkip: z.ZodDefault<z.ZodBoolean>;
|
|
320
379
|
showAllAppsAtOnce: z.ZodDefault<z.ZodBoolean>;
|
|
321
380
|
}, z.core.$strip>>;
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
381
|
+
cimd: z.ZodOptional<z.ZodObject<{
|
|
382
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
383
|
+
cache: z.ZodOptional<z.ZodObject<{
|
|
384
|
+
type: z.ZodDefault<z.ZodEnum<{
|
|
385
|
+
memory: "memory";
|
|
386
|
+
redis: "redis";
|
|
387
|
+
}>>;
|
|
388
|
+
defaultTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
389
|
+
maxTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
390
|
+
minTtlMs: z.ZodDefault<z.ZodNumber>;
|
|
331
391
|
redis: z.ZodOptional<z.ZodObject<{
|
|
332
|
-
|
|
333
|
-
|
|
392
|
+
url: z.ZodOptional<z.ZodString>;
|
|
393
|
+
host: z.ZodOptional<z.ZodString>;
|
|
394
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
334
395
|
password: z.ZodOptional<z.ZodString>;
|
|
335
|
-
db: z.
|
|
336
|
-
tls: z.
|
|
337
|
-
keyPrefix: z.ZodDefault<z.
|
|
338
|
-
defaultTtlMs: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
396
|
+
db: z.ZodOptional<z.ZodNumber>;
|
|
397
|
+
tls: z.ZodOptional<z.ZodBoolean>;
|
|
398
|
+
keyPrefix: z.ZodDefault<z.ZodString>;
|
|
339
399
|
}, z.core.$strip>>;
|
|
340
|
-
|
|
341
|
-
|
|
400
|
+
}, z.core.$strip>>;
|
|
401
|
+
security: z.ZodOptional<z.ZodObject<{
|
|
402
|
+
blockPrivateIPs: z.ZodDefault<z.ZodBoolean>;
|
|
403
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
404
|
+
blockedDomains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
405
|
+
warnOnLocalhostRedirects: z.ZodDefault<z.ZodBoolean>;
|
|
406
|
+
allowInsecureForTesting: z.ZodDefault<z.ZodBoolean>;
|
|
407
|
+
}, z.core.$strip>>;
|
|
408
|
+
network: z.ZodOptional<z.ZodObject<{
|
|
409
|
+
timeoutMs: z.ZodDefault<z.ZodNumber>;
|
|
410
|
+
maxResponseSizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
411
|
+
redirectPolicy: z.ZodDefault<z.ZodEnum<{
|
|
412
|
+
deny: "deny";
|
|
413
|
+
"same-origin": "same-origin";
|
|
414
|
+
allow: "allow";
|
|
415
|
+
}>>;
|
|
416
|
+
maxRedirects: z.ZodDefault<z.ZodNumber>;
|
|
417
|
+
}, z.core.$strip>>;
|
|
342
418
|
}, z.core.$strip>>;
|
|
343
419
|
mode: z.ZodLiteral<"orchestrated">;
|
|
344
420
|
type: z.ZodLiteral<"remote">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestrated.schema.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/orchestrated.schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"orchestrated.schema.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/orchestrated.schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAkGxB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAIlC,CAAC;AAOH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAUnC,CAAC;AAMH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAGxC,CAAC;AAMH;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAEpF;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACjF,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEtF;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AACpF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEzF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,OAAO,GAAG,QAAQ,CAAC"}
|
|
@@ -13,27 +13,6 @@ export declare const publicAuthOptionsSchema: z.ZodObject<{
|
|
|
13
13
|
keys: z.ZodArray<z.ZodType<import("../../auth").JWK, unknown, z.core.$ZodTypeInternals<import("../../auth").JWK, unknown>>>;
|
|
14
14
|
}, z.core.$strip>>;
|
|
15
15
|
signKey: z.ZodOptional<z.ZodUnion<[z.ZodType<import("../../auth").JWK, unknown, z.core.$ZodTypeInternals<import("../../auth").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
|
}, z.core.$strip>;
|
|
38
17
|
/**
|
|
39
18
|
* Public mode options (output type with defaults applied)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public.schema.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/public.schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"public.schema.d.ts","sourceRoot":"","sources":["../../../../../src/common/types/options/auth/public.schema.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;iBAqClC,CAAC;AAMH;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
|