@frontmcp/sdk 1.3.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -60
- package/agent/agent.scope.d.ts +164 -0
- package/agent/agent.scope.d.ts.map +1 -1
- package/app/instances/app.esm.instance.d.ts.map +1 -1
- package/app/instances/app.remote.instance.d.ts.map +1 -1
- package/auth/auth-ui/auth-ui.contract.d.ts +149 -0
- package/auth/auth-ui/auth-ui.contract.d.ts.map +1 -0
- package/auth/auth-ui/auth-ui.registry.d.ts +151 -0
- package/auth/auth-ui/auth-ui.registry.d.ts.map +1 -0
- package/auth/auth-ui/auth-ui.render.d.ts +49 -0
- package/auth/auth-ui/auth-ui.render.d.ts.map +1 -0
- package/auth/auth-ui/auth-ui.state.d.ts +62 -0
- package/auth/auth-ui/auth-ui.state.d.ts.map +1 -0
- package/auth/auth-ui/index.d.ts +24 -0
- package/auth/auth-ui/index.d.ts.map +1 -0
- package/auth/auth.registry.d.ts.map +1 -1
- package/auth/authorized-apps.utils.d.ts +51 -0
- package/auth/authorized-apps.utils.d.ts.map +1 -0
- package/auth/consent-tools.helper.d.ts +26 -0
- package/auth/consent-tools.helper.d.ts.map +1 -0
- package/auth/consent.utils.d.ts +62 -0
- package/auth/consent.utils.d.ts.map +1 -0
- package/auth/credentials/credentials.context-extension.d.ts +63 -0
- package/auth/credentials/credentials.context-extension.d.ts.map +1 -0
- package/auth/credentials/credentials.providers.d.ts +40 -0
- package/auth/credentials/credentials.providers.d.ts.map +1 -0
- package/auth/credentials/index.d.ts +3 -0
- package/auth/credentials/index.d.ts.map +1 -0
- package/auth/flows/auth.verify.flow.d.ts.map +1 -1
- package/auth/flows/oauth.auth-ui.flow.d.ts +53 -0
- package/auth/flows/oauth.auth-ui.flow.d.ts.map +1 -0
- package/auth/flows/oauth.authorize.flow.d.ts +51 -9
- package/auth/flows/oauth.authorize.flow.d.ts.map +1 -1
- package/auth/flows/oauth.callback.flow.d.ts +118 -5
- package/auth/flows/oauth.callback.flow.d.ts.map +1 -1
- package/auth/flows/oauth.connect.flow.d.ts +89 -0
- package/auth/flows/oauth.connect.flow.d.ts.map +1 -0
- package/auth/flows/oauth.provider-callback.flow.d.ts +34 -4
- package/auth/flows/oauth.provider-callback.flow.d.ts.map +1 -1
- package/auth/flows/oauth.register.flow.d.ts +16 -20
- package/auth/flows/oauth.register.flow.d.ts.map +1 -1
- package/auth/flows/oauth.token.flow.d.ts +2 -2
- package/auth/flows/oauth.token.flow.d.ts.map +1 -1
- package/auth/flows/oauth.userinfo.flow.d.ts +67 -0
- package/auth/flows/oauth.userinfo.flow.d.ts.map +1 -0
- package/auth/flows/session.verify.flow.d.ts +2 -2
- 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/flows/well-known.prm.flow.d.ts.map +1 -1
- package/auth/instances/instance.local-primary-auth.d.ts +226 -12
- package/auth/instances/instance.local-primary-auth.d.ts.map +1 -1
- package/auth/secure-store/index.d.ts +3 -0
- package/auth/secure-store/index.d.ts.map +1 -0
- package/auth/secure-store/secure-store.context-extension.d.ts +61 -0
- package/auth/secure-store/secure-store.context-extension.d.ts.map +1 -0
- package/auth/secure-store/secure-store.providers.d.ts +36 -0
- package/auth/secure-store/secure-store.providers.d.ts.map +1 -0
- package/common/decorators/agent.decorator.d.ts +32 -0
- package/common/decorators/agent.decorator.d.ts.map +1 -1
- package/common/decorators/app.decorator.d.ts.map +1 -1
- package/common/decorators/front-mcp.decorator.d.ts.map +1 -1
- package/common/decorators/skill.decorator.d.ts.map +1 -1
- package/common/decorators/tool.decorator.d.ts +44 -0
- package/common/decorators/tool.decorator.d.ts.map +1 -1
- package/common/entries/scope.entry.d.ts +7 -0
- package/common/entries/scope.entry.d.ts.map +1 -1
- package/common/entries/skill.entry.d.ts +22 -1
- package/common/entries/skill.entry.d.ts.map +1 -1
- package/common/entries/tool.entry.d.ts +17 -0
- package/common/entries/tool.entry.d.ts.map +1 -1
- package/common/interfaces/internal/primary-auth-provider.interface.d.ts +18 -0
- package/common/interfaces/internal/primary-auth-provider.interface.d.ts.map +1 -1
- package/common/interfaces/tool.interface.d.ts +26 -0
- package/common/interfaces/tool.interface.d.ts.map +1 -1
- package/common/metadata/app.metadata.d.ts +472 -0
- package/common/metadata/app.metadata.d.ts.map +1 -1
- package/common/metadata/front-mcp.metadata.d.ts +1773 -52
- 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/output-policy.d.ts +82 -0
- package/common/metadata/output-policy.d.ts.map +1 -0
- package/common/metadata/skill.metadata.d.ts +45 -1
- package/common/metadata/skill.metadata.d.ts.map +1 -1
- package/common/metadata/tool-ui.metadata.d.ts +1 -1
- package/common/metadata/tool-ui.metadata.d.ts.map +1 -1
- package/common/metadata/tool.metadata.d.ts +65 -0
- package/common/metadata/tool.metadata.d.ts.map +1 -1
- package/common/schemas/http-output.schema.d.ts +25 -25
- package/common/schemas/http-output.schema.d.ts.map +1 -1
- package/common/tokens/app.tokens.d.ts.map +1 -1
- package/common/tokens/front-mcp.tokens.d.ts.map +1 -1
- package/common/tokens/skill.tokens.d.ts +2 -0
- package/common/tokens/skill.tokens.d.ts.map +1 -1
- package/common/tokens/tool.tokens.d.ts +1 -0
- package/common/tokens/tool.tokens.d.ts.map +1 -1
- package/common/types/auth/session.types.d.ts +2 -2
- package/common/types/options/auth/index.d.ts +4 -4
- package/common/types/options/auth/index.d.ts.map +1 -1
- package/common/types/options/auth/interfaces.d.ts +1 -1
- package/common/types/options/auth/interfaces.d.ts.map +1 -1
- package/common/types/options/auth/orchestrated.schema.d.ts +1 -1
- package/common/types/options/auth/orchestrated.schema.d.ts.map +1 -1
- package/common/types/options/auth/shared.schemas.d.ts +2 -2
- package/common/types/options/auth/shared.schemas.d.ts.map +1 -1
- package/common/types/options/http/index.d.ts +1 -1
- package/common/types/options/http/index.d.ts.map +1 -1
- package/common/types/options/http/interfaces.d.ts +56 -1
- package/common/types/options/http/interfaces.d.ts.map +1 -1
- package/common/types/options/http/schema.d.ts +15 -0
- package/common/types/options/http/schema.d.ts.map +1 -1
- package/common/types/options/session/schema.d.ts +3 -3
- package/common/types/options/transport/schema.d.ts +1 -1
- package/common/utils/caller-dir.utils.d.ts +15 -0
- package/common/utils/caller-dir.utils.d.ts.map +1 -0
- package/common/utils/index.d.ts +1 -0
- package/common/utils/index.d.ts.map +1 -1
- package/errors/index.d.ts +3 -1
- package/errors/index.d.ts.map +1 -1
- package/errors/mcp.error.d.ts +36 -2
- package/errors/mcp.error.d.ts.map +1 -1
- package/errors/tool-credentials-required.error.d.ts +70 -0
- package/errors/tool-credentials-required.error.d.ts.map +1 -0
- package/esm/index.mjs +6553 -2688
- package/flows/flow.instance.d.ts.map +1 -1
- package/front-mcp/front-mcp.d.ts +52 -32
- package/front-mcp/front-mcp.d.ts.map +1 -1
- package/front-mcp/front-mcp.providers.d.ts +700 -8
- package/front-mcp/front-mcp.providers.d.ts.map +1 -1
- package/index.d.ts +29 -4
- package/index.d.ts.map +1 -1
- package/index.js +7138 -3307
- package/package.json +28 -29
- package/scope/flows/http.request.flow.d.ts +18 -1
- package/scope/flows/http.request.flow.d.ts.map +1 -1
- package/scope/optional-dependency.util.d.ts +39 -0
- package/scope/optional-dependency.util.d.ts.map +1 -0
- package/scope/scope.instance.d.ts +17 -0
- package/scope/scope.instance.d.ts.map +1 -1
- package/scope/scope.utils.d.ts.map +1 -1
- package/server/adapters/express.host.adapter.d.ts.map +1 -1
- package/server/custom-routes.helper.d.ts +81 -0
- package/server/custom-routes.helper.d.ts.map +1 -0
- package/skill/flows/http/llm-full-txt.flow.d.ts +1 -1
- package/skill/flows/http/llm-txt.flow.d.ts +1 -1
- package/skill/flows/http/skills-api.flow.d.ts +18 -1
- package/skill/flows/http/skills-api.flow.d.ts.map +1 -1
- package/skill/flows/load-skill.flow.d.ts +7 -0
- package/skill/flows/load-skill.flow.d.ts.map +1 -1
- package/skill/flows/search-skills.flow.d.ts +13 -0
- package/skill/flows/search-skills.flow.d.ts.map +1 -1
- package/skill/index.d.ts +1 -0
- package/skill/index.d.ts.map +1 -1
- package/skill/sep-2640/resources/skill-file.resource.d.ts.map +1 -1
- package/skill/sep-2640/resources/skill-index.resource.d.ts.map +1 -1
- package/skill/sep-2640/resources/skill-md.resource.d.ts.map +1 -1
- package/skill/sep-2640/sep-2640.per-skill.d.ts.map +1 -1
- package/skill/skill-authorities.helper.d.ts +100 -0
- package/skill/skill-authorities.helper.d.ts.map +1 -0
- package/skill/skill.instance.d.ts.map +1 -1
- package/skill/skill.registry.d.ts +34 -0
- package/skill/skill.registry.d.ts.map +1 -1
- package/task/helpers/cli-task-runner.d.ts.map +1 -1
- package/tool/flows/call-tool.flow.d.ts +26 -1
- package/tool/flows/call-tool.flow.d.ts.map +1 -1
- package/tool/flows/tool-credentials.gate.d.ts +31 -0
- package/tool/flows/tool-credentials.gate.d.ts.map +1 -0
- package/tool/flows/tools-list.flow.d.ts.map +1 -1
- package/tool/tool.instance.d.ts.map +1 -1
- package/tool/ui/index.d.ts +1 -1
- package/tool/ui/index.d.ts.map +1 -1
- package/tool/ui/ui-resource.handler.d.ts.map +1 -1
- package/tool/ui/ui-shared.d.ts +33 -1
- package/tool/ui/ui-shared.d.ts.map +1 -1
- package/transport/adapters/transport.local.adapter.d.ts.map +1 -1
- package/transport/flows/handle.sse.flow.d.ts +1 -1
- package/transport/flows/handle.streamable-http.flow.d.ts +58 -1
- package/transport/flows/handle.streamable-http.flow.d.ts.map +1 -1
- package/transport/mcp-handlers/call-tool-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/read-resource-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/skills-list-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/skills-load-request.handler.d.ts.map +1 -1
- package/transport/mcp-handlers/skills-search-request.handler.d.ts.map +1 -1
|
@@ -4,6 +4,7 @@ import type { AppType, PluginType, ProviderType, ResourceType, SkillType, ToolTy
|
|
|
4
4
|
import { type AuthOptions, type AuthOptionsInput, type ElicitationOptionsInput, type ExtAppsOptionsInput, type HealthOptionsInput, type HttpOptionsInput, type LoggingOptionsInput, type MetricsOptionsInput, type ObservabilityOptionsInterface, type PaginationOptions, type PubsubOptionsInput, type RedisOptionsInput, type ServerInfoOptions, type SkillsConfigOptionsInput, type SqliteOptionsInput, type TransportOptionsInput } from '../types';
|
|
5
5
|
import { type PackageLoader } from './app.metadata';
|
|
6
6
|
import { type ChannelsConfigInput } from './channel.metadata';
|
|
7
|
+
import { type OutputPolicy } from './output-policy';
|
|
7
8
|
export interface FrontMcpBaseMetadata {
|
|
8
9
|
info: ServerInfoOptions;
|
|
9
10
|
apps: AppType[];
|
|
@@ -187,18 +188,17 @@ export interface FrontMcpBaseMetadata {
|
|
|
187
188
|
cdnOverrides?: Record<string, string>;
|
|
188
189
|
};
|
|
189
190
|
/**
|
|
190
|
-
* Output
|
|
191
|
+
* Output policy applied to every tool (overridable per `@App` / `@Tool`):
|
|
191
192
|
*
|
|
192
|
-
* `allowNonFinite
|
|
193
|
-
*
|
|
194
|
-
*
|
|
195
|
-
* `
|
|
193
|
+
* - `allowNonFinite`: lets `Infinity` / `-Infinity` / `NaN` reach JSON serialization
|
|
194
|
+
* (where they become `null`). Default `false` — non-finite output throws
|
|
195
|
+
* `InvalidOutputError`, surfacing silent `JSON.stringify` corruption.
|
|
196
|
+
* - `schemaMode`: how `outputSchema` is exposed in `tools/list` — `'definition'`
|
|
197
|
+
* (default) / `'description'` / `'both'` / `'none'`.
|
|
196
198
|
*
|
|
197
|
-
* @default { allowNonFinite: false }
|
|
199
|
+
* @default { allowNonFinite: false, schemaMode: 'definition' }
|
|
198
200
|
*/
|
|
199
|
-
output?:
|
|
200
|
-
allowNonFinite?: boolean;
|
|
201
|
-
};
|
|
201
|
+
output?: OutputPolicy;
|
|
202
202
|
/**
|
|
203
203
|
* Jobs and workflows configuration.
|
|
204
204
|
* Enables the jobs/workflows system for saved, discoverable, triggerable executions.
|
|
@@ -464,6 +464,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
464
464
|
}>>;
|
|
465
465
|
}, import("zod/v4/core").$strip>>>;
|
|
466
466
|
}, import("zod/v4/core").$strip>;
|
|
467
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
467
468
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
468
469
|
providers: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
469
470
|
tools: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<string | import("libs/di/dist/interfaces/base.interface").Type<unknown>, string | import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
@@ -493,6 +494,20 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
493
494
|
}, import("zod/v4/core").$strip>>;
|
|
494
495
|
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
495
496
|
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
497
|
+
routes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
498
|
+
method: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
499
|
+
GET: "GET";
|
|
500
|
+
POST: "POST";
|
|
501
|
+
PUT: "PUT";
|
|
502
|
+
PATCH: "PATCH";
|
|
503
|
+
DELETE: "DELETE";
|
|
504
|
+
OPTIONS: "OPTIONS";
|
|
505
|
+
HEAD: "HEAD";
|
|
506
|
+
}>;
|
|
507
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
508
|
+
handler: import("zod").ZodCustom<import("../interfaces").ServerRequestHandler, import("../interfaces").ServerRequestHandler>;
|
|
509
|
+
auth: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
510
|
+
}, import("zod/v4/core").$strip>>>;
|
|
496
511
|
}, import("zod/v4/core").$strip>>;
|
|
497
512
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
498
513
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -577,11 +592,11 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
577
592
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
578
593
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
579
594
|
unknown: "unknown";
|
|
595
|
+
continue: "continue";
|
|
580
596
|
openai: "openai";
|
|
581
597
|
claude: "claude";
|
|
582
598
|
gemini: "gemini";
|
|
583
599
|
cursor: "cursor";
|
|
584
|
-
continue: "continue";
|
|
585
600
|
cody: "cody";
|
|
586
601
|
"generic-mcp": "generic-mcp";
|
|
587
602
|
"ext-apps": "ext-apps";
|
|
@@ -721,7 +736,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
721
736
|
customOnly: boolean;
|
|
722
737
|
mappings?: {
|
|
723
738
|
pattern: string | RegExp;
|
|
724
|
-
platform: "unknown" | "
|
|
739
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
725
740
|
}[] | undefined;
|
|
726
741
|
} | undefined;
|
|
727
742
|
persistence?: false | {
|
|
@@ -807,7 +822,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
807
822
|
customOnly: boolean;
|
|
808
823
|
mappings?: {
|
|
809
824
|
pattern: string | RegExp;
|
|
810
|
-
platform: "unknown" | "
|
|
825
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
811
826
|
}[] | undefined;
|
|
812
827
|
} | undefined;
|
|
813
828
|
persistence?: false | {
|
|
@@ -1026,7 +1041,17 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
1026
1041
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
1027
1042
|
}, import("zod/v4/core").$strip>>;
|
|
1028
1043
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1029
|
-
allowNonFinite: import("@frontmcp/lazy-zod").
|
|
1044
|
+
allowNonFinite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1045
|
+
schemaMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
1046
|
+
description: "description";
|
|
1047
|
+
definition: "definition";
|
|
1048
|
+
both: "both";
|
|
1049
|
+
none: "none";
|
|
1050
|
+
}>>;
|
|
1051
|
+
schemaDescriptionFormat: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
1052
|
+
summary: "summary";
|
|
1053
|
+
jsonSchema: "jsonSchema";
|
|
1054
|
+
}>>;
|
|
1030
1055
|
}, import("zod/v4/core").$strip>>;
|
|
1031
1056
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1032
1057
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -1306,6 +1331,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1306
1331
|
}>>;
|
|
1307
1332
|
}, import("zod/v4/core").$strip>>>;
|
|
1308
1333
|
}, import("zod/v4/core").$strip>;
|
|
1334
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1309
1335
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1310
1336
|
providers: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
1311
1337
|
tools: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<string | import("libs/di/dist/interfaces/base.interface").Type<unknown>, string | import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
@@ -1335,6 +1361,20 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1335
1361
|
}, import("zod/v4/core").$strip>>;
|
|
1336
1362
|
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
1337
1363
|
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
1364
|
+
routes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1365
|
+
method: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
1366
|
+
GET: "GET";
|
|
1367
|
+
POST: "POST";
|
|
1368
|
+
PUT: "PUT";
|
|
1369
|
+
PATCH: "PATCH";
|
|
1370
|
+
DELETE: "DELETE";
|
|
1371
|
+
OPTIONS: "OPTIONS";
|
|
1372
|
+
HEAD: "HEAD";
|
|
1373
|
+
}>;
|
|
1374
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
1375
|
+
handler: import("zod").ZodCustom<import("../interfaces").ServerRequestHandler, import("../interfaces").ServerRequestHandler>;
|
|
1376
|
+
auth: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1377
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1338
1378
|
}, import("zod/v4/core").$strip>>;
|
|
1339
1379
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
1340
1380
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -1419,11 +1459,11 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1419
1459
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
1420
1460
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
1421
1461
|
unknown: "unknown";
|
|
1462
|
+
continue: "continue";
|
|
1422
1463
|
openai: "openai";
|
|
1423
1464
|
claude: "claude";
|
|
1424
1465
|
gemini: "gemini";
|
|
1425
1466
|
cursor: "cursor";
|
|
1426
|
-
continue: "continue";
|
|
1427
1467
|
cody: "cody";
|
|
1428
1468
|
"generic-mcp": "generic-mcp";
|
|
1429
1469
|
"ext-apps": "ext-apps";
|
|
@@ -1563,7 +1603,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1563
1603
|
customOnly: boolean;
|
|
1564
1604
|
mappings?: {
|
|
1565
1605
|
pattern: string | RegExp;
|
|
1566
|
-
platform: "unknown" | "
|
|
1606
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
1567
1607
|
}[] | undefined;
|
|
1568
1608
|
} | undefined;
|
|
1569
1609
|
persistence?: false | {
|
|
@@ -1649,7 +1689,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1649
1689
|
customOnly: boolean;
|
|
1650
1690
|
mappings?: {
|
|
1651
1691
|
pattern: string | RegExp;
|
|
1652
|
-
platform: "unknown" | "
|
|
1692
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
1653
1693
|
}[] | undefined;
|
|
1654
1694
|
} | undefined;
|
|
1655
1695
|
persistence?: false | {
|
|
@@ -1868,7 +1908,17 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1868
1908
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
1869
1909
|
}, import("zod/v4/core").$strip>>;
|
|
1870
1910
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1871
|
-
allowNonFinite: import("@frontmcp/lazy-zod").
|
|
1911
|
+
allowNonFinite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1912
|
+
schemaMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
1913
|
+
description: "description";
|
|
1914
|
+
definition: "definition";
|
|
1915
|
+
both: "both";
|
|
1916
|
+
none: "none";
|
|
1917
|
+
}>>;
|
|
1918
|
+
schemaDescriptionFormat: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
1919
|
+
summary: "summary";
|
|
1920
|
+
jsonSchema: "jsonSchema";
|
|
1921
|
+
}>>;
|
|
1872
1922
|
}, import("zod/v4/core").$strip>>;
|
|
1873
1923
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1874
1924
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -2171,6 +2221,76 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2171
2221
|
}, import("zod/v4/core").$strip>>;
|
|
2172
2222
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
2173
2223
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2224
|
+
requireEmail: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2225
|
+
anonymousSubject: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodString>;
|
|
2226
|
+
login: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2227
|
+
title: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2228
|
+
subtitle: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2229
|
+
logoUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2230
|
+
fields: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2231
|
+
type: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2232
|
+
text: "text";
|
|
2233
|
+
password: "password";
|
|
2234
|
+
email: "email";
|
|
2235
|
+
select: "select";
|
|
2236
|
+
hidden: "hidden";
|
|
2237
|
+
}>;
|
|
2238
|
+
label: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2239
|
+
required: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2240
|
+
placeholder: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2241
|
+
options: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2242
|
+
value: import("@frontmcp/lazy-zod").ZodString;
|
|
2243
|
+
label: import("@frontmcp/lazy-zod").ZodString;
|
|
2244
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2245
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2246
|
+
render: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<(ctx: import("@frontmcp/auth").LoginRenderContext) => string, (ctx: import("@frontmcp/auth").LoginRenderContext) => string>>;
|
|
2247
|
+
subject: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2248
|
+
fromField: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2249
|
+
strategy: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2250
|
+
"per-session": "per-session";
|
|
2251
|
+
"per-account": "per-account";
|
|
2252
|
+
}>>;
|
|
2253
|
+
}, import("zod/v4/core").$strip>>;
|
|
2254
|
+
}, import("zod/v4/core").$strip>>;
|
|
2255
|
+
authenticate: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<import("@frontmcp/auth").AuthenticateFn, import("@frontmcp/auth").AuthenticateFn>>;
|
|
2256
|
+
providers: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2257
|
+
id: import("@frontmcp/lazy-zod").ZodString;
|
|
2258
|
+
name: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2259
|
+
authorizationEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2260
|
+
authorizeUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2261
|
+
tokenEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2262
|
+
tokenUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2263
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
2264
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2265
|
+
scopes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2266
|
+
userInfoEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2267
|
+
jwksUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2268
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2269
|
+
dcr: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2270
|
+
enabled: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2271
|
+
allowedRedirectUris: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2272
|
+
allowedClientIds: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2273
|
+
initialAccessToken: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2274
|
+
clients: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2275
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
2276
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2277
|
+
redirectUris: import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>;
|
|
2278
|
+
clientName: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2279
|
+
tokenEndpointAuthMethod: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2280
|
+
none: "none";
|
|
2281
|
+
client_secret_basic: "client_secret_basic";
|
|
2282
|
+
client_secret_post: "client_secret_post";
|
|
2283
|
+
}>>;
|
|
2284
|
+
grantTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2285
|
+
authorization_code: "authorization_code";
|
|
2286
|
+
refresh_token: "refresh_token";
|
|
2287
|
+
}>>>;
|
|
2288
|
+
responseTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2289
|
+
code: "code";
|
|
2290
|
+
}>>>;
|
|
2291
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2292
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2293
|
+
}, import("zod/v4/core").$strip>>;
|
|
2174
2294
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2175
2295
|
signKey: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<[z.ZodType<import("@frontmcp/auth").JWK, unknown>, import("zod").ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
2176
2296
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -2188,6 +2308,74 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2188
2308
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2189
2309
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2190
2310
|
}, import("zod/v4/core").$strip>;
|
|
2311
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2312
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
2313
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
2314
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2315
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2316
|
+
}, import("zod/v4/core").$strip>>;
|
|
2317
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2318
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2319
|
+
}, import("zod/v4/core").$strip>;
|
|
2320
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
2321
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2322
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2323
|
+
user: "user";
|
|
2324
|
+
session: "session";
|
|
2325
|
+
global: "global";
|
|
2326
|
+
}>>;
|
|
2327
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2328
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2329
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2330
|
+
}, import("zod/v4/core").$strip>>;
|
|
2331
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
2332
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
2333
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2334
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2335
|
+
}, import("zod/v4/core").$strip>>;
|
|
2336
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2337
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2338
|
+
}, import("zod/v4/core").$strip>;
|
|
2339
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2340
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2341
|
+
user: "user";
|
|
2342
|
+
session: "session";
|
|
2343
|
+
global: "global";
|
|
2344
|
+
}>>;
|
|
2345
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2346
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2347
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2348
|
+
}, import("zod/v4/core").$strip>>;
|
|
2349
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
2350
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
2351
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2352
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2353
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2354
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
2355
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2356
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2357
|
+
}, import("zod/v4/core").$strip>;
|
|
2358
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2359
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2360
|
+
user: "user";
|
|
2361
|
+
session: "session";
|
|
2362
|
+
global: "global";
|
|
2363
|
+
}>>;
|
|
2364
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2365
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2366
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2367
|
+
}, import("zod/v4/core").$strip>>;
|
|
2368
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
2369
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2370
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2371
|
+
user: "user";
|
|
2372
|
+
session: "session";
|
|
2373
|
+
global: "global";
|
|
2374
|
+
}>>;
|
|
2375
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2376
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2377
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2378
|
+
}, import("zod/v4/core").$strip>>;
|
|
2191
2379
|
}, import("zod/v4/core").$strip>]>>;
|
|
2192
2380
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2193
2381
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -2212,6 +2400,8 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2212
2400
|
format: "format";
|
|
2213
2401
|
strict: "strict";
|
|
2214
2402
|
}>>;
|
|
2403
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2404
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2215
2405
|
}, import("zod/v4/core").$strip>>;
|
|
2216
2406
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2217
2407
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -2265,6 +2455,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2265
2455
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2266
2456
|
}, import("zod/v4/core").$strip>>;
|
|
2267
2457
|
}, import("zod/v4/core").$strip>>;
|
|
2458
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2459
|
+
error: "error";
|
|
2460
|
+
login: "login";
|
|
2461
|
+
consent: "consent";
|
|
2462
|
+
incremental: "incremental";
|
|
2463
|
+
federated: "federated";
|
|
2464
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
2465
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
2268
2466
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
2269
2467
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2270
2468
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -2284,6 +2482,74 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2284
2482
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2285
2483
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2286
2484
|
}, import("zod/v4/core").$strip>;
|
|
2485
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2486
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
2487
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
2488
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2489
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2490
|
+
}, import("zod/v4/core").$strip>>;
|
|
2491
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2492
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2493
|
+
}, import("zod/v4/core").$strip>;
|
|
2494
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
2495
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2496
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2497
|
+
user: "user";
|
|
2498
|
+
session: "session";
|
|
2499
|
+
global: "global";
|
|
2500
|
+
}>>;
|
|
2501
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2502
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2503
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2504
|
+
}, import("zod/v4/core").$strip>>;
|
|
2505
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
2506
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
2507
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2508
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2509
|
+
}, import("zod/v4/core").$strip>>;
|
|
2510
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2511
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2512
|
+
}, import("zod/v4/core").$strip>;
|
|
2513
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2514
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2515
|
+
user: "user";
|
|
2516
|
+
session: "session";
|
|
2517
|
+
global: "global";
|
|
2518
|
+
}>>;
|
|
2519
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2520
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2521
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2522
|
+
}, import("zod/v4/core").$strip>>;
|
|
2523
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
2524
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
2525
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2526
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2527
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2528
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
2529
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2530
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2531
|
+
}, import("zod/v4/core").$strip>;
|
|
2532
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2533
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2534
|
+
user: "user";
|
|
2535
|
+
session: "session";
|
|
2536
|
+
global: "global";
|
|
2537
|
+
}>>;
|
|
2538
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2539
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2540
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2541
|
+
}, import("zod/v4/core").$strip>>;
|
|
2542
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
2543
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2544
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2545
|
+
user: "user";
|
|
2546
|
+
session: "session";
|
|
2547
|
+
global: "global";
|
|
2548
|
+
}>>;
|
|
2549
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2550
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2551
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2552
|
+
}, import("zod/v4/core").$strip>>;
|
|
2287
2553
|
}, import("zod/v4/core").$strip>]>>;
|
|
2288
2554
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2289
2555
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -2308,6 +2574,8 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2308
2574
|
format: "format";
|
|
2309
2575
|
strict: "strict";
|
|
2310
2576
|
}>>;
|
|
2577
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2578
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2311
2579
|
}, import("zod/v4/core").$strip>>;
|
|
2312
2580
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2313
2581
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -2361,6 +2629,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2361
2629
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2362
2630
|
}, import("zod/v4/core").$strip>>;
|
|
2363
2631
|
}, import("zod/v4/core").$strip>>;
|
|
2632
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2633
|
+
error: "error";
|
|
2634
|
+
login: "login";
|
|
2635
|
+
consent: "consent";
|
|
2636
|
+
incremental: "incremental";
|
|
2637
|
+
federated: "federated";
|
|
2638
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
2639
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
2364
2640
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
2365
2641
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2366
2642
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -2401,6 +2677,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2401
2677
|
}>>;
|
|
2402
2678
|
}, import("zod/v4/core").$strip>>>;
|
|
2403
2679
|
}, import("zod/v4/core").$strip>;
|
|
2680
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2404
2681
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2405
2682
|
providers: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
2406
2683
|
tools: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<string | import("libs/di/dist/interfaces/base.interface").Type<unknown>, string | import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
@@ -2430,6 +2707,20 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2430
2707
|
}, import("zod/v4/core").$strip>>;
|
|
2431
2708
|
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
2432
2709
|
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
2710
|
+
routes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2711
|
+
method: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2712
|
+
GET: "GET";
|
|
2713
|
+
POST: "POST";
|
|
2714
|
+
PUT: "PUT";
|
|
2715
|
+
PATCH: "PATCH";
|
|
2716
|
+
DELETE: "DELETE";
|
|
2717
|
+
OPTIONS: "OPTIONS";
|
|
2718
|
+
HEAD: "HEAD";
|
|
2719
|
+
}>;
|
|
2720
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
2721
|
+
handler: import("zod").ZodCustom<import("../interfaces").ServerRequestHandler, import("../interfaces").ServerRequestHandler>;
|
|
2722
|
+
auth: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2723
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2433
2724
|
}, import("zod/v4/core").$strip>>;
|
|
2434
2725
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
2435
2726
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -2514,11 +2805,11 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2514
2805
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
2515
2806
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2516
2807
|
unknown: "unknown";
|
|
2808
|
+
continue: "continue";
|
|
2517
2809
|
openai: "openai";
|
|
2518
2810
|
claude: "claude";
|
|
2519
2811
|
gemini: "gemini";
|
|
2520
2812
|
cursor: "cursor";
|
|
2521
|
-
continue: "continue";
|
|
2522
2813
|
cody: "cody";
|
|
2523
2814
|
"generic-mcp": "generic-mcp";
|
|
2524
2815
|
"ext-apps": "ext-apps";
|
|
@@ -2658,7 +2949,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2658
2949
|
customOnly: boolean;
|
|
2659
2950
|
mappings?: {
|
|
2660
2951
|
pattern: string | RegExp;
|
|
2661
|
-
platform: "unknown" | "
|
|
2952
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
2662
2953
|
}[] | undefined;
|
|
2663
2954
|
} | undefined;
|
|
2664
2955
|
persistence?: false | {
|
|
@@ -2744,7 +3035,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2744
3035
|
customOnly: boolean;
|
|
2745
3036
|
mappings?: {
|
|
2746
3037
|
pattern: string | RegExp;
|
|
2747
|
-
platform: "unknown" | "
|
|
3038
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
2748
3039
|
}[] | undefined;
|
|
2749
3040
|
} | undefined;
|
|
2750
3041
|
persistence?: false | {
|
|
@@ -2963,7 +3254,17 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2963
3254
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
2964
3255
|
}, import("zod/v4/core").$strip>>;
|
|
2965
3256
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2966
|
-
allowNonFinite: import("@frontmcp/lazy-zod").
|
|
3257
|
+
allowNonFinite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3258
|
+
schemaMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3259
|
+
description: "description";
|
|
3260
|
+
definition: "definition";
|
|
3261
|
+
both: "both";
|
|
3262
|
+
none: "none";
|
|
3263
|
+
}>>;
|
|
3264
|
+
schemaDescriptionFormat: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3265
|
+
summary: "summary";
|
|
3266
|
+
jsonSchema: "jsonSchema";
|
|
3267
|
+
}>>;
|
|
2967
3268
|
}, import("zod/v4/core").$strip>>;
|
|
2968
3269
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2969
3270
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -3266,6 +3567,76 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3266
3567
|
}, import("zod/v4/core").$strip>>;
|
|
3267
3568
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
3268
3569
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3570
|
+
requireEmail: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3571
|
+
anonymousSubject: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodString>;
|
|
3572
|
+
login: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3573
|
+
title: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3574
|
+
subtitle: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3575
|
+
logoUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3576
|
+
fields: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3577
|
+
type: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3578
|
+
text: "text";
|
|
3579
|
+
password: "password";
|
|
3580
|
+
email: "email";
|
|
3581
|
+
select: "select";
|
|
3582
|
+
hidden: "hidden";
|
|
3583
|
+
}>;
|
|
3584
|
+
label: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3585
|
+
required: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3586
|
+
placeholder: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3587
|
+
options: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3588
|
+
value: import("@frontmcp/lazy-zod").ZodString;
|
|
3589
|
+
label: import("@frontmcp/lazy-zod").ZodString;
|
|
3590
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3591
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3592
|
+
render: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<(ctx: import("@frontmcp/auth").LoginRenderContext) => string, (ctx: import("@frontmcp/auth").LoginRenderContext) => string>>;
|
|
3593
|
+
subject: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3594
|
+
fromField: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3595
|
+
strategy: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3596
|
+
"per-session": "per-session";
|
|
3597
|
+
"per-account": "per-account";
|
|
3598
|
+
}>>;
|
|
3599
|
+
}, import("zod/v4/core").$strip>>;
|
|
3600
|
+
}, import("zod/v4/core").$strip>>;
|
|
3601
|
+
authenticate: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<import("@frontmcp/auth").AuthenticateFn, import("@frontmcp/auth").AuthenticateFn>>;
|
|
3602
|
+
providers: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3603
|
+
id: import("@frontmcp/lazy-zod").ZodString;
|
|
3604
|
+
name: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3605
|
+
authorizationEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3606
|
+
authorizeUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3607
|
+
tokenEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3608
|
+
tokenUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3609
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
3610
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3611
|
+
scopes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3612
|
+
userInfoEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3613
|
+
jwksUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3614
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3615
|
+
dcr: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3616
|
+
enabled: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3617
|
+
allowedRedirectUris: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3618
|
+
allowedClientIds: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3619
|
+
initialAccessToken: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3620
|
+
clients: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3621
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
3622
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3623
|
+
redirectUris: import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>;
|
|
3624
|
+
clientName: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3625
|
+
tokenEndpointAuthMethod: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3626
|
+
none: "none";
|
|
3627
|
+
client_secret_basic: "client_secret_basic";
|
|
3628
|
+
client_secret_post: "client_secret_post";
|
|
3629
|
+
}>>;
|
|
3630
|
+
grantTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3631
|
+
authorization_code: "authorization_code";
|
|
3632
|
+
refresh_token: "refresh_token";
|
|
3633
|
+
}>>>;
|
|
3634
|
+
responseTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3635
|
+
code: "code";
|
|
3636
|
+
}>>>;
|
|
3637
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3638
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3639
|
+
}, import("zod/v4/core").$strip>>;
|
|
3269
3640
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3270
3641
|
signKey: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<[z.ZodType<import("@frontmcp/auth").JWK, unknown>, import("zod").ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
3271
3642
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -3283,6 +3654,74 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3283
3654
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3284
3655
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3285
3656
|
}, import("zod/v4/core").$strip>;
|
|
3657
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3658
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
3659
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
3660
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3661
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
3662
|
+
}, import("zod/v4/core").$strip>>;
|
|
3663
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3664
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3665
|
+
}, import("zod/v4/core").$strip>;
|
|
3666
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
3667
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3668
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3669
|
+
user: "user";
|
|
3670
|
+
session: "session";
|
|
3671
|
+
global: "global";
|
|
3672
|
+
}>>;
|
|
3673
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3674
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3675
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3676
|
+
}, import("zod/v4/core").$strip>>;
|
|
3677
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
3678
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
3679
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3680
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
3681
|
+
}, import("zod/v4/core").$strip>>;
|
|
3682
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3683
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3684
|
+
}, import("zod/v4/core").$strip>;
|
|
3685
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3686
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3687
|
+
user: "user";
|
|
3688
|
+
session: "session";
|
|
3689
|
+
global: "global";
|
|
3690
|
+
}>>;
|
|
3691
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3692
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3693
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3694
|
+
}, import("zod/v4/core").$strip>>;
|
|
3695
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
3696
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
3697
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3698
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3699
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3700
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
3701
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3702
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3703
|
+
}, import("zod/v4/core").$strip>;
|
|
3704
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3705
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3706
|
+
user: "user";
|
|
3707
|
+
session: "session";
|
|
3708
|
+
global: "global";
|
|
3709
|
+
}>>;
|
|
3710
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3711
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3712
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3713
|
+
}, import("zod/v4/core").$strip>>;
|
|
3714
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
3715
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3716
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3717
|
+
user: "user";
|
|
3718
|
+
session: "session";
|
|
3719
|
+
global: "global";
|
|
3720
|
+
}>>;
|
|
3721
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3722
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3723
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3724
|
+
}, import("zod/v4/core").$strip>>;
|
|
3286
3725
|
}, import("zod/v4/core").$strip>]>>;
|
|
3287
3726
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3288
3727
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -3307,6 +3746,8 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3307
3746
|
format: "format";
|
|
3308
3747
|
strict: "strict";
|
|
3309
3748
|
}>>;
|
|
3749
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3750
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3310
3751
|
}, import("zod/v4/core").$strip>>;
|
|
3311
3752
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3312
3753
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -3360,6 +3801,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3360
3801
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3361
3802
|
}, import("zod/v4/core").$strip>>;
|
|
3362
3803
|
}, import("zod/v4/core").$strip>>;
|
|
3804
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3805
|
+
error: "error";
|
|
3806
|
+
login: "login";
|
|
3807
|
+
consent: "consent";
|
|
3808
|
+
incremental: "incremental";
|
|
3809
|
+
federated: "federated";
|
|
3810
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
3811
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
3363
3812
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
3364
3813
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3365
3814
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -3379,6 +3828,74 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3379
3828
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3380
3829
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3381
3830
|
}, import("zod/v4/core").$strip>;
|
|
3831
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3832
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
3833
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
3834
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3835
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
3836
|
+
}, import("zod/v4/core").$strip>>;
|
|
3837
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3838
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3839
|
+
}, import("zod/v4/core").$strip>;
|
|
3840
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
3841
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3842
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3843
|
+
user: "user";
|
|
3844
|
+
session: "session";
|
|
3845
|
+
global: "global";
|
|
3846
|
+
}>>;
|
|
3847
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3848
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3849
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3850
|
+
}, import("zod/v4/core").$strip>>;
|
|
3851
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
3852
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
3853
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3854
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
3855
|
+
}, import("zod/v4/core").$strip>>;
|
|
3856
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3857
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3858
|
+
}, import("zod/v4/core").$strip>;
|
|
3859
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3860
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3861
|
+
user: "user";
|
|
3862
|
+
session: "session";
|
|
3863
|
+
global: "global";
|
|
3864
|
+
}>>;
|
|
3865
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3866
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3867
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3868
|
+
}, import("zod/v4/core").$strip>>;
|
|
3869
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
3870
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
3871
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3872
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3873
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3874
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
3875
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3876
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3877
|
+
}, import("zod/v4/core").$strip>;
|
|
3878
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3879
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3880
|
+
user: "user";
|
|
3881
|
+
session: "session";
|
|
3882
|
+
global: "global";
|
|
3883
|
+
}>>;
|
|
3884
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3885
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3886
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3887
|
+
}, import("zod/v4/core").$strip>>;
|
|
3888
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
3889
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3890
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3891
|
+
user: "user";
|
|
3892
|
+
session: "session";
|
|
3893
|
+
global: "global";
|
|
3894
|
+
}>>;
|
|
3895
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3896
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3897
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3898
|
+
}, import("zod/v4/core").$strip>>;
|
|
3382
3899
|
}, import("zod/v4/core").$strip>]>>;
|
|
3383
3900
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3384
3901
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -3403,6 +3920,8 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3403
3920
|
format: "format";
|
|
3404
3921
|
strict: "strict";
|
|
3405
3922
|
}>>;
|
|
3923
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3924
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3406
3925
|
}, import("zod/v4/core").$strip>>;
|
|
3407
3926
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3408
3927
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -3456,6 +3975,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3456
3975
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3457
3976
|
}, import("zod/v4/core").$strip>>;
|
|
3458
3977
|
}, import("zod/v4/core").$strip>>;
|
|
3978
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3979
|
+
error: "error";
|
|
3980
|
+
login: "login";
|
|
3981
|
+
consent: "consent";
|
|
3982
|
+
incremental: "incremental";
|
|
3983
|
+
federated: "federated";
|
|
3984
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
3985
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
3459
3986
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
3460
3987
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3461
3988
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -3493,6 +4020,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3493
4020
|
}>>;
|
|
3494
4021
|
}, import("zod/v4/core").$strip>>>;
|
|
3495
4022
|
}, import("zod/v4/core").$strip>;
|
|
4023
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3496
4024
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3497
4025
|
providers: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
3498
4026
|
tools: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<string | import("libs/di/dist/interfaces/base.interface").Type<unknown>, string | import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
@@ -3522,6 +4050,20 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3522
4050
|
}, import("zod/v4/core").$strip>>;
|
|
3523
4051
|
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
3524
4052
|
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
4053
|
+
routes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4054
|
+
method: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4055
|
+
GET: "GET";
|
|
4056
|
+
POST: "POST";
|
|
4057
|
+
PUT: "PUT";
|
|
4058
|
+
PATCH: "PATCH";
|
|
4059
|
+
DELETE: "DELETE";
|
|
4060
|
+
OPTIONS: "OPTIONS";
|
|
4061
|
+
HEAD: "HEAD";
|
|
4062
|
+
}>;
|
|
4063
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
4064
|
+
handler: import("zod").ZodCustom<import("../interfaces").ServerRequestHandler, import("../interfaces").ServerRequestHandler>;
|
|
4065
|
+
auth: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4066
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3525
4067
|
}, import("zod/v4/core").$strip>>;
|
|
3526
4068
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
3527
4069
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -3606,11 +4148,11 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3606
4148
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
3607
4149
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3608
4150
|
unknown: "unknown";
|
|
4151
|
+
continue: "continue";
|
|
3609
4152
|
openai: "openai";
|
|
3610
4153
|
claude: "claude";
|
|
3611
4154
|
gemini: "gemini";
|
|
3612
4155
|
cursor: "cursor";
|
|
3613
|
-
continue: "continue";
|
|
3614
4156
|
cody: "cody";
|
|
3615
4157
|
"generic-mcp": "generic-mcp";
|
|
3616
4158
|
"ext-apps": "ext-apps";
|
|
@@ -3750,7 +4292,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3750
4292
|
customOnly: boolean;
|
|
3751
4293
|
mappings?: {
|
|
3752
4294
|
pattern: string | RegExp;
|
|
3753
|
-
platform: "unknown" | "
|
|
4295
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
3754
4296
|
}[] | undefined;
|
|
3755
4297
|
} | undefined;
|
|
3756
4298
|
persistence?: false | {
|
|
@@ -3836,7 +4378,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3836
4378
|
customOnly: boolean;
|
|
3837
4379
|
mappings?: {
|
|
3838
4380
|
pattern: string | RegExp;
|
|
3839
|
-
platform: "unknown" | "
|
|
4381
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
3840
4382
|
}[] | undefined;
|
|
3841
4383
|
} | undefined;
|
|
3842
4384
|
persistence?: false | {
|
|
@@ -4055,7 +4597,17 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4055
4597
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
4056
4598
|
}, import("zod/v4/core").$strip>>;
|
|
4057
4599
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4058
|
-
allowNonFinite: import("@frontmcp/lazy-zod").
|
|
4600
|
+
allowNonFinite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4601
|
+
schemaMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4602
|
+
description: "description";
|
|
4603
|
+
definition: "definition";
|
|
4604
|
+
both: "both";
|
|
4605
|
+
none: "none";
|
|
4606
|
+
}>>;
|
|
4607
|
+
schemaDescriptionFormat: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4608
|
+
summary: "summary";
|
|
4609
|
+
jsonSchema: "jsonSchema";
|
|
4610
|
+
}>>;
|
|
4059
4611
|
}, import("zod/v4/core").$strip>>;
|
|
4060
4612
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4061
4613
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -4358,6 +4910,76 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4358
4910
|
}, import("zod/v4/core").$strip>>;
|
|
4359
4911
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
4360
4912
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
4913
|
+
requireEmail: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4914
|
+
anonymousSubject: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodString>;
|
|
4915
|
+
login: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4916
|
+
title: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4917
|
+
subtitle: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4918
|
+
logoUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4919
|
+
fields: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodObject<{
|
|
4920
|
+
type: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4921
|
+
text: "text";
|
|
4922
|
+
password: "password";
|
|
4923
|
+
email: "email";
|
|
4924
|
+
select: "select";
|
|
4925
|
+
hidden: "hidden";
|
|
4926
|
+
}>;
|
|
4927
|
+
label: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4928
|
+
required: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4929
|
+
placeholder: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4930
|
+
options: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4931
|
+
value: import("@frontmcp/lazy-zod").ZodString;
|
|
4932
|
+
label: import("@frontmcp/lazy-zod").ZodString;
|
|
4933
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4934
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4935
|
+
render: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<(ctx: import("@frontmcp/auth").LoginRenderContext) => string, (ctx: import("@frontmcp/auth").LoginRenderContext) => string>>;
|
|
4936
|
+
subject: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4937
|
+
fromField: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4938
|
+
strategy: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4939
|
+
"per-session": "per-session";
|
|
4940
|
+
"per-account": "per-account";
|
|
4941
|
+
}>>;
|
|
4942
|
+
}, import("zod/v4/core").$strip>>;
|
|
4943
|
+
}, import("zod/v4/core").$strip>>;
|
|
4944
|
+
authenticate: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<import("@frontmcp/auth").AuthenticateFn, import("@frontmcp/auth").AuthenticateFn>>;
|
|
4945
|
+
providers: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4946
|
+
id: import("@frontmcp/lazy-zod").ZodString;
|
|
4947
|
+
name: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4948
|
+
authorizationEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4949
|
+
authorizeUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4950
|
+
tokenEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4951
|
+
tokenUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4952
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
4953
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4954
|
+
scopes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4955
|
+
userInfoEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4956
|
+
jwksUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4957
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4958
|
+
dcr: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4959
|
+
enabled: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4960
|
+
allowedRedirectUris: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4961
|
+
allowedClientIds: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4962
|
+
initialAccessToken: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4963
|
+
clients: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4964
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
4965
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4966
|
+
redirectUris: import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>;
|
|
4967
|
+
clientName: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4968
|
+
tokenEndpointAuthMethod: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4969
|
+
none: "none";
|
|
4970
|
+
client_secret_basic: "client_secret_basic";
|
|
4971
|
+
client_secret_post: "client_secret_post";
|
|
4972
|
+
}>>;
|
|
4973
|
+
grantTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4974
|
+
authorization_code: "authorization_code";
|
|
4975
|
+
refresh_token: "refresh_token";
|
|
4976
|
+
}>>>;
|
|
4977
|
+
responseTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4978
|
+
code: "code";
|
|
4979
|
+
}>>>;
|
|
4980
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4981
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4982
|
+
}, import("zod/v4/core").$strip>>;
|
|
4361
4983
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4362
4984
|
signKey: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<[z.ZodType<import("@frontmcp/auth").JWK, unknown>, import("zod").ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
4363
4985
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -4375,22 +4997,90 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4375
4997
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4376
4998
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4377
4999
|
}, import("zod/v4/core").$strip>;
|
|
5000
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5001
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
5002
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
5003
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5004
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
5005
|
+
}, import("zod/v4/core").$strip>>;
|
|
5006
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5007
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5008
|
+
}, import("zod/v4/core").$strip>;
|
|
4378
5009
|
}, import("zod/v4/core").$strip>]>>;
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
|
|
5010
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5011
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5012
|
+
user: "user";
|
|
5013
|
+
session: "session";
|
|
5014
|
+
global: "global";
|
|
5015
|
+
}>>;
|
|
5016
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5017
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5018
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5019
|
+
}, import("zod/v4/core").$strip>>;
|
|
5020
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
5021
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
5022
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5023
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
5024
|
+
}, import("zod/v4/core").$strip>>;
|
|
5025
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5026
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5027
|
+
}, import("zod/v4/core").$strip>;
|
|
5028
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5029
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5030
|
+
user: "user";
|
|
5031
|
+
session: "session";
|
|
5032
|
+
global: "global";
|
|
5033
|
+
}>>;
|
|
5034
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5035
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5036
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5037
|
+
}, import("zod/v4/core").$strip>>;
|
|
5038
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
5039
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
5040
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5041
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5042
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5043
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
5044
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5045
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5046
|
+
}, import("zod/v4/core").$strip>;
|
|
5047
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5048
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5049
|
+
user: "user";
|
|
5050
|
+
session: "session";
|
|
5051
|
+
global: "global";
|
|
5052
|
+
}>>;
|
|
5053
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5054
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5055
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5056
|
+
}, import("zod/v4/core").$strip>>;
|
|
5057
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
5058
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5059
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5060
|
+
user: "user";
|
|
5061
|
+
session: "session";
|
|
5062
|
+
global: "global";
|
|
5063
|
+
}>>;
|
|
5064
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5065
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5066
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5067
|
+
}, import("zod/v4/core").$strip>>;
|
|
5068
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
5069
|
+
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5070
|
+
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5071
|
+
publicAccess: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5072
|
+
tools: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"all">, import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>]>>;
|
|
5073
|
+
prompts: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"all">, import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>]>>;
|
|
5074
|
+
rateLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5075
|
+
}, import("zod/v4/core").$strip>>;
|
|
5076
|
+
consent: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5077
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5078
|
+
groupByApp: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5079
|
+
showDescriptions: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5080
|
+
allowSelectAll: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5081
|
+
requireSelection: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5082
|
+
customMessage: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5083
|
+
rememberConsent: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4394
5084
|
excludedTools: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4395
5085
|
defaultSelectedTools: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4396
5086
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -4399,6 +5089,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4399
5089
|
format: "format";
|
|
4400
5090
|
strict: "strict";
|
|
4401
5091
|
}>>;
|
|
5092
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5093
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4402
5094
|
}, import("zod/v4/core").$strip>>;
|
|
4403
5095
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4404
5096
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -4452,6 +5144,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4452
5144
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
4453
5145
|
}, import("zod/v4/core").$strip>>;
|
|
4454
5146
|
}, import("zod/v4/core").$strip>>;
|
|
5147
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5148
|
+
error: "error";
|
|
5149
|
+
login: "login";
|
|
5150
|
+
consent: "consent";
|
|
5151
|
+
incremental: "incremental";
|
|
5152
|
+
federated: "federated";
|
|
5153
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
5154
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
4455
5155
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
4456
5156
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
4457
5157
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -4471,6 +5171,74 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4471
5171
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4472
5172
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4473
5173
|
}, import("zod/v4/core").$strip>;
|
|
5174
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5175
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
5176
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
5177
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5178
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
5179
|
+
}, import("zod/v4/core").$strip>>;
|
|
5180
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5181
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5182
|
+
}, import("zod/v4/core").$strip>;
|
|
5183
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
5184
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5185
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5186
|
+
user: "user";
|
|
5187
|
+
session: "session";
|
|
5188
|
+
global: "global";
|
|
5189
|
+
}>>;
|
|
5190
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5191
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5192
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5193
|
+
}, import("zod/v4/core").$strip>>;
|
|
5194
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
5195
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
5196
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5197
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
5198
|
+
}, import("zod/v4/core").$strip>>;
|
|
5199
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5200
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5201
|
+
}, import("zod/v4/core").$strip>;
|
|
5202
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5203
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5204
|
+
user: "user";
|
|
5205
|
+
session: "session";
|
|
5206
|
+
global: "global";
|
|
5207
|
+
}>>;
|
|
5208
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5209
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5210
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5211
|
+
}, import("zod/v4/core").$strip>>;
|
|
5212
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
5213
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
5214
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5215
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5216
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5217
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
5218
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5219
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5220
|
+
}, import("zod/v4/core").$strip>;
|
|
5221
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5222
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5223
|
+
user: "user";
|
|
5224
|
+
session: "session";
|
|
5225
|
+
global: "global";
|
|
5226
|
+
}>>;
|
|
5227
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5228
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5229
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5230
|
+
}, import("zod/v4/core").$strip>>;
|
|
5231
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
5232
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5233
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5234
|
+
user: "user";
|
|
5235
|
+
session: "session";
|
|
5236
|
+
global: "global";
|
|
5237
|
+
}>>;
|
|
5238
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5239
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5240
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5241
|
+
}, import("zod/v4/core").$strip>>;
|
|
4474
5242
|
}, import("zod/v4/core").$strip>]>>;
|
|
4475
5243
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4476
5244
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -4495,6 +5263,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4495
5263
|
format: "format";
|
|
4496
5264
|
strict: "strict";
|
|
4497
5265
|
}>>;
|
|
5266
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5267
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4498
5268
|
}, import("zod/v4/core").$strip>>;
|
|
4499
5269
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4500
5270
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -4548,6 +5318,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4548
5318
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
4549
5319
|
}, import("zod/v4/core").$strip>>;
|
|
4550
5320
|
}, import("zod/v4/core").$strip>>;
|
|
5321
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5322
|
+
error: "error";
|
|
5323
|
+
login: "login";
|
|
5324
|
+
consent: "consent";
|
|
5325
|
+
incremental: "incremental";
|
|
5326
|
+
federated: "federated";
|
|
5327
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
5328
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
4551
5329
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
4552
5330
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4553
5331
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -4583,6 +5361,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4583
5361
|
}>>;
|
|
4584
5362
|
}, import("zod/v4/core").$strip>>>;
|
|
4585
5363
|
}, import("zod/v4/core").$strip>;
|
|
5364
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4586
5365
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4587
5366
|
providers: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<import("libs/di/dist/interfaces/base.interface").Type<unknown>, import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
4588
5367
|
tools: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("zod").ZodCustom<string | import("libs/di/dist/interfaces/base.interface").Type<unknown>, string | import("libs/di/dist/interfaces/base.interface").Type<unknown>>>>>;
|
|
@@ -4612,6 +5391,20 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4612
5391
|
}, import("zod/v4/core").$strip>>;
|
|
4613
5392
|
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
4614
5393
|
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
5394
|
+
routes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5395
|
+
method: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5396
|
+
GET: "GET";
|
|
5397
|
+
POST: "POST";
|
|
5398
|
+
PUT: "PUT";
|
|
5399
|
+
PATCH: "PATCH";
|
|
5400
|
+
DELETE: "DELETE";
|
|
5401
|
+
OPTIONS: "OPTIONS";
|
|
5402
|
+
HEAD: "HEAD";
|
|
5403
|
+
}>;
|
|
5404
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
5405
|
+
handler: import("zod").ZodCustom<import("../interfaces").ServerRequestHandler, import("../interfaces").ServerRequestHandler>;
|
|
5406
|
+
auth: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5407
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4615
5408
|
}, import("zod/v4/core").$strip>>;
|
|
4616
5409
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
4617
5410
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -4696,11 +5489,11 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4696
5489
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
4697
5490
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4698
5491
|
unknown: "unknown";
|
|
5492
|
+
continue: "continue";
|
|
4699
5493
|
openai: "openai";
|
|
4700
5494
|
claude: "claude";
|
|
4701
5495
|
gemini: "gemini";
|
|
4702
5496
|
cursor: "cursor";
|
|
4703
|
-
continue: "continue";
|
|
4704
5497
|
cody: "cody";
|
|
4705
5498
|
"generic-mcp": "generic-mcp";
|
|
4706
5499
|
"ext-apps": "ext-apps";
|
|
@@ -4840,7 +5633,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4840
5633
|
customOnly: boolean;
|
|
4841
5634
|
mappings?: {
|
|
4842
5635
|
pattern: string | RegExp;
|
|
4843
|
-
platform: "unknown" | "
|
|
5636
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
4844
5637
|
}[] | undefined;
|
|
4845
5638
|
} | undefined;
|
|
4846
5639
|
persistence?: false | {
|
|
@@ -4926,7 +5719,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4926
5719
|
customOnly: boolean;
|
|
4927
5720
|
mappings?: {
|
|
4928
5721
|
pattern: string | RegExp;
|
|
4929
|
-
platform: "unknown" | "
|
|
5722
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
4930
5723
|
}[] | undefined;
|
|
4931
5724
|
} | undefined;
|
|
4932
5725
|
persistence?: false | {
|
|
@@ -5145,7 +5938,17 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5145
5938
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
5146
5939
|
}, import("zod/v4/core").$strip>>;
|
|
5147
5940
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5148
|
-
allowNonFinite: import("@frontmcp/lazy-zod").
|
|
5941
|
+
allowNonFinite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5942
|
+
schemaMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5943
|
+
description: "description";
|
|
5944
|
+
definition: "definition";
|
|
5945
|
+
both: "both";
|
|
5946
|
+
none: "none";
|
|
5947
|
+
}>>;
|
|
5948
|
+
schemaDescriptionFormat: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
5949
|
+
summary: "summary";
|
|
5950
|
+
jsonSchema: "jsonSchema";
|
|
5951
|
+
}>>;
|
|
5149
5952
|
}, import("zod/v4/core").$strip>>;
|
|
5150
5953
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5151
5954
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -5448,6 +6251,76 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5448
6251
|
}, import("zod/v4/core").$strip>>;
|
|
5449
6252
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
5450
6253
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6254
|
+
requireEmail: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6255
|
+
anonymousSubject: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodString>;
|
|
6256
|
+
login: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6257
|
+
title: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6258
|
+
subtitle: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6259
|
+
logoUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6260
|
+
fields: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6261
|
+
type: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6262
|
+
text: "text";
|
|
6263
|
+
password: "password";
|
|
6264
|
+
email: "email";
|
|
6265
|
+
select: "select";
|
|
6266
|
+
hidden: "hidden";
|
|
6267
|
+
}>;
|
|
6268
|
+
label: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6269
|
+
required: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6270
|
+
placeholder: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6271
|
+
options: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6272
|
+
value: import("@frontmcp/lazy-zod").ZodString;
|
|
6273
|
+
label: import("@frontmcp/lazy-zod").ZodString;
|
|
6274
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6275
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6276
|
+
render: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<(ctx: import("@frontmcp/auth").LoginRenderContext) => string, (ctx: import("@frontmcp/auth").LoginRenderContext) => string>>;
|
|
6277
|
+
subject: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6278
|
+
fromField: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6279
|
+
strategy: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6280
|
+
"per-session": "per-session";
|
|
6281
|
+
"per-account": "per-account";
|
|
6282
|
+
}>>;
|
|
6283
|
+
}, import("zod/v4/core").$strip>>;
|
|
6284
|
+
}, import("zod/v4/core").$strip>>;
|
|
6285
|
+
authenticate: import("@frontmcp/lazy-zod").ZodOptional<import("zod").ZodCustom<import("@frontmcp/auth").AuthenticateFn, import("@frontmcp/auth").AuthenticateFn>>;
|
|
6286
|
+
providers: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6287
|
+
id: import("@frontmcp/lazy-zod").ZodString;
|
|
6288
|
+
name: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6289
|
+
authorizationEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6290
|
+
authorizeUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6291
|
+
tokenEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6292
|
+
tokenUrl: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6293
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
6294
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6295
|
+
scopes: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
6296
|
+
userInfoEndpoint: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6297
|
+
jwksUri: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6298
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6299
|
+
dcr: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6300
|
+
enabled: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6301
|
+
allowedRedirectUris: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
6302
|
+
allowedClientIds: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
6303
|
+
initialAccessToken: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6304
|
+
clients: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6305
|
+
clientId: import("@frontmcp/lazy-zod").ZodString;
|
|
6306
|
+
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6307
|
+
redirectUris: import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>;
|
|
6308
|
+
clientName: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6309
|
+
tokenEndpointAuthMethod: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6310
|
+
none: "none";
|
|
6311
|
+
client_secret_basic: "client_secret_basic";
|
|
6312
|
+
client_secret_post: "client_secret_post";
|
|
6313
|
+
}>>;
|
|
6314
|
+
grantTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6315
|
+
authorization_code: "authorization_code";
|
|
6316
|
+
refresh_token: "refresh_token";
|
|
6317
|
+
}>>>;
|
|
6318
|
+
responseTypes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6319
|
+
code: "code";
|
|
6320
|
+
}>>>;
|
|
6321
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6322
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6323
|
+
}, import("zod/v4/core").$strip>>;
|
|
5451
6324
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5452
6325
|
signKey: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<[z.ZodType<import("@frontmcp/auth").JWK, unknown>, import("zod").ZodCustom<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>>]>>;
|
|
5453
6326
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -5465,6 +6338,74 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5465
6338
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5466
6339
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5467
6340
|
}, import("zod/v4/core").$strip>;
|
|
6341
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6342
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
6343
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
6344
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6345
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
6346
|
+
}, import("zod/v4/core").$strip>>;
|
|
6347
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6348
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6349
|
+
}, import("zod/v4/core").$strip>;
|
|
6350
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
6351
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6352
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6353
|
+
user: "user";
|
|
6354
|
+
session: "session";
|
|
6355
|
+
global: "global";
|
|
6356
|
+
}>>;
|
|
6357
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6358
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6359
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6360
|
+
}, import("zod/v4/core").$strip>>;
|
|
6361
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
6362
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
6363
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6364
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
6365
|
+
}, import("zod/v4/core").$strip>>;
|
|
6366
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6367
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6368
|
+
}, import("zod/v4/core").$strip>;
|
|
6369
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6370
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6371
|
+
user: "user";
|
|
6372
|
+
session: "session";
|
|
6373
|
+
global: "global";
|
|
6374
|
+
}>>;
|
|
6375
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6376
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6377
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6378
|
+
}, import("zod/v4/core").$strip>>;
|
|
6379
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
6380
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
6381
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
6382
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6383
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
6384
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
6385
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
6386
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
6387
|
+
}, import("zod/v4/core").$strip>;
|
|
6388
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6389
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6390
|
+
user: "user";
|
|
6391
|
+
session: "session";
|
|
6392
|
+
global: "global";
|
|
6393
|
+
}>>;
|
|
6394
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6395
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6396
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6397
|
+
}, import("zod/v4/core").$strip>>;
|
|
6398
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
6399
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6400
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6401
|
+
user: "user";
|
|
6402
|
+
session: "session";
|
|
6403
|
+
global: "global";
|
|
6404
|
+
}>>;
|
|
6405
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6406
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6407
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6408
|
+
}, import("zod/v4/core").$strip>>;
|
|
5468
6409
|
}, import("zod/v4/core").$strip>]>>;
|
|
5469
6410
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5470
6411
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -5489,6 +6430,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5489
6430
|
format: "format";
|
|
5490
6431
|
strict: "strict";
|
|
5491
6432
|
}>>;
|
|
6433
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6434
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5492
6435
|
}, import("zod/v4/core").$strip>>;
|
|
5493
6436
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5494
6437
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -5542,6 +6485,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5542
6485
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5543
6486
|
}, import("zod/v4/core").$strip>>;
|
|
5544
6487
|
}, import("zod/v4/core").$strip>>;
|
|
6488
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6489
|
+
error: "error";
|
|
6490
|
+
login: "login";
|
|
6491
|
+
consent: "consent";
|
|
6492
|
+
incremental: "incremental";
|
|
6493
|
+
federated: "federated";
|
|
6494
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
6495
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
5545
6496
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
5546
6497
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5547
6498
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -5561,6 +6512,74 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5561
6512
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5562
6513
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5563
6514
|
}, import("zod/v4/core").$strip>;
|
|
6515
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6516
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
6517
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
6518
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6519
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
6520
|
+
}, import("zod/v4/core").$strip>>;
|
|
6521
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6522
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6523
|
+
}, import("zod/v4/core").$strip>;
|
|
6524
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
6525
|
+
secureStore: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"memory">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6526
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6527
|
+
user: "user";
|
|
6528
|
+
session: "session";
|
|
6529
|
+
global: "global";
|
|
6530
|
+
}>>;
|
|
6531
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6532
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6533
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6534
|
+
}, import("zod/v4/core").$strip>>;
|
|
6535
|
+
sqlite: import("@frontmcp/lazy-zod").ZodObject<{
|
|
6536
|
+
path: import("@frontmcp/lazy-zod").ZodString;
|
|
6537
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6538
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
6539
|
+
}, import("zod/v4/core").$strip>>;
|
|
6540
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6541
|
+
walMode: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6542
|
+
}, import("zod/v4/core").$strip>;
|
|
6543
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6544
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6545
|
+
user: "user";
|
|
6546
|
+
session: "session";
|
|
6547
|
+
global: "global";
|
|
6548
|
+
}>>;
|
|
6549
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6550
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6551
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6552
|
+
}, import("zod/v4/core").$strip>>;
|
|
6553
|
+
redis: import("@frontmcp/lazy-zod").ZodObject<{
|
|
6554
|
+
host: import("@frontmcp/lazy-zod").ZodString;
|
|
6555
|
+
port: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
6556
|
+
password: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6557
|
+
db: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
6558
|
+
tls: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
6559
|
+
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
6560
|
+
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
6561
|
+
}, import("zod/v4/core").$strip>;
|
|
6562
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6563
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6564
|
+
user: "user";
|
|
6565
|
+
session: "session";
|
|
6566
|
+
global: "global";
|
|
6567
|
+
}>>;
|
|
6568
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6569
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6570
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6571
|
+
}, import("zod/v4/core").$strip>>;
|
|
6572
|
+
backend: import("zod").ZodCustom<import("@frontmcp/auth").SecureStoreCustomBackend, import("@frontmcp/auth").SecureStoreCustomBackend>;
|
|
6573
|
+
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6574
|
+
scope: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6575
|
+
user: "user";
|
|
6576
|
+
session: "session";
|
|
6577
|
+
global: "global";
|
|
6578
|
+
}>>;
|
|
6579
|
+
ttlMs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6580
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6581
|
+
pepper: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
6582
|
+
}, import("zod/v4/core").$strip>>;
|
|
5564
6583
|
}, import("zod/v4/core").$strip>]>>;
|
|
5565
6584
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5566
6585
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -5585,6 +6604,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5585
6604
|
format: "format";
|
|
5586
6605
|
strict: "strict";
|
|
5587
6606
|
}>>;
|
|
6607
|
+
minProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
6608
|
+
requiredProviders: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5588
6609
|
}, import("zod/v4/core").$strip>>;
|
|
5589
6610
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5590
6611
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -5638,6 +6659,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5638
6659
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5639
6660
|
}, import("zod/v4/core").$strip>>;
|
|
5640
6661
|
}, import("zod/v4/core").$strip>>;
|
|
6662
|
+
ui: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodEnum<{
|
|
6663
|
+
error: "error";
|
|
6664
|
+
login: "login";
|
|
6665
|
+
consent: "consent";
|
|
6666
|
+
incremental: "incremental";
|
|
6667
|
+
federated: "federated";
|
|
6668
|
+
}> & import("zod/v4/core").$partial, import("@frontmcp/lazy-zod").ZodString>>;
|
|
6669
|
+
extras: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<import("@frontmcp/auth").AuthExtraHandler, import("@frontmcp/auth").AuthExtraHandler>>>;
|
|
5641
6670
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
5642
6671
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5643
6672
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -5692,7 +6721,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5692
6721
|
customOnly: boolean;
|
|
5693
6722
|
mappings?: {
|
|
5694
6723
|
pattern: string | RegExp;
|
|
5695
|
-
platform: "unknown" | "
|
|
6724
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
5696
6725
|
}[] | undefined;
|
|
5697
6726
|
} | undefined;
|
|
5698
6727
|
persistence?: false | {
|
|
@@ -5765,6 +6794,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5765
6794
|
} | undefined;
|
|
5766
6795
|
};
|
|
5767
6796
|
splitByApp: false;
|
|
6797
|
+
__sourceDir?: string | undefined;
|
|
5768
6798
|
instructions?: string | undefined;
|
|
5769
6799
|
http?: {
|
|
5770
6800
|
port: number;
|
|
@@ -5787,6 +6817,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5787
6817
|
} | undefined;
|
|
5788
6818
|
} | undefined;
|
|
5789
6819
|
urlencodedLimit?: string | number | undefined;
|
|
6820
|
+
routes?: {
|
|
6821
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "OPTIONS" | "HEAD";
|
|
6822
|
+
path: string;
|
|
6823
|
+
handler: import("../interfaces").ServerRequestHandler;
|
|
6824
|
+
auth?: boolean | undefined;
|
|
6825
|
+
}[] | undefined;
|
|
5790
6826
|
} | undefined;
|
|
5791
6827
|
redis?: {
|
|
5792
6828
|
provider: "redis";
|
|
@@ -5941,7 +6977,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5941
6977
|
cdnOverrides?: Record<string, string> | undefined;
|
|
5942
6978
|
} | undefined;
|
|
5943
6979
|
output?: {
|
|
5944
|
-
allowNonFinite
|
|
6980
|
+
allowNonFinite?: boolean | undefined;
|
|
6981
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
6982
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
5945
6983
|
} | undefined;
|
|
5946
6984
|
jobs?: {
|
|
5947
6985
|
enabled: boolean;
|
|
@@ -6179,6 +7217,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6179
7217
|
userInfoEndpoint?: string | undefined;
|
|
6180
7218
|
} | undefined;
|
|
6181
7219
|
} | {
|
|
7220
|
+
requireEmail: boolean;
|
|
7221
|
+
anonymousSubject: string;
|
|
6182
7222
|
tokenStorage: "memory" | {
|
|
6183
7223
|
redis: {
|
|
6184
7224
|
host: string;
|
|
@@ -6189,10 +7229,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6189
7229
|
defaultTtlMs: number;
|
|
6190
7230
|
password?: string | undefined;
|
|
6191
7231
|
};
|
|
7232
|
+
} | {
|
|
7233
|
+
sqlite: {
|
|
7234
|
+
path: string;
|
|
7235
|
+
encryption?: {
|
|
7236
|
+
secret: string;
|
|
7237
|
+
} | undefined;
|
|
7238
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
7239
|
+
walMode?: boolean | undefined;
|
|
7240
|
+
};
|
|
6192
7241
|
};
|
|
6193
7242
|
allowDefaultPublic: boolean;
|
|
6194
7243
|
anonymousScopes: string[];
|
|
6195
7244
|
mode: "local";
|
|
7245
|
+
login?: {
|
|
7246
|
+
title?: string | undefined;
|
|
7247
|
+
subtitle?: string | undefined;
|
|
7248
|
+
logoUri?: string | undefined;
|
|
7249
|
+
fields?: Record<string, {
|
|
7250
|
+
type: "text" | "email" | "password" | "select" | "hidden";
|
|
7251
|
+
label?: string | undefined;
|
|
7252
|
+
required?: boolean | undefined;
|
|
7253
|
+
placeholder?: string | undefined;
|
|
7254
|
+
options?: {
|
|
7255
|
+
value: string;
|
|
7256
|
+
label: string;
|
|
7257
|
+
}[] | undefined;
|
|
7258
|
+
}> | undefined;
|
|
7259
|
+
render?: ((ctx: import("@frontmcp/auth").LoginRenderContext) => string) | undefined;
|
|
7260
|
+
subject?: {
|
|
7261
|
+
fromField?: string | undefined;
|
|
7262
|
+
strategy?: "per-session" | "per-account" | undefined;
|
|
7263
|
+
} | undefined;
|
|
7264
|
+
} | undefined;
|
|
7265
|
+
authenticate?: import("@frontmcp/auth").AuthenticateFn | undefined;
|
|
7266
|
+
providers?: {
|
|
7267
|
+
id: string;
|
|
7268
|
+
clientId: string;
|
|
7269
|
+
name?: string | undefined;
|
|
7270
|
+
authorizationEndpoint?: string | undefined;
|
|
7271
|
+
authorizeUrl?: string | undefined;
|
|
7272
|
+
tokenEndpoint?: string | undefined;
|
|
7273
|
+
tokenUrl?: string | undefined;
|
|
7274
|
+
clientSecret?: string | undefined;
|
|
7275
|
+
scopes?: string[] | undefined;
|
|
7276
|
+
userInfoEndpoint?: string | undefined;
|
|
7277
|
+
jwksUri?: string | undefined;
|
|
7278
|
+
}[] | undefined;
|
|
7279
|
+
dcr?: {
|
|
7280
|
+
enabled?: boolean | undefined;
|
|
7281
|
+
allowedRedirectUris?: string[] | undefined;
|
|
7282
|
+
allowedClientIds?: string[] | undefined;
|
|
7283
|
+
initialAccessToken?: string | undefined;
|
|
7284
|
+
clients?: {
|
|
7285
|
+
clientId: string;
|
|
7286
|
+
redirectUris: string[];
|
|
7287
|
+
tokenEndpointAuthMethod: "none" | "client_secret_basic" | "client_secret_post";
|
|
7288
|
+
grantTypes: ("authorization_code" | "refresh_token")[];
|
|
7289
|
+
responseTypes: "code"[];
|
|
7290
|
+
clientSecret?: string | undefined;
|
|
7291
|
+
clientName?: string | undefined;
|
|
7292
|
+
scope?: string | undefined;
|
|
7293
|
+
}[] | undefined;
|
|
7294
|
+
} | undefined;
|
|
6196
7295
|
local?: {
|
|
6197
7296
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
6198
7297
|
jwks?: {
|
|
@@ -6200,6 +7299,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6200
7299
|
} | undefined;
|
|
6201
7300
|
issuer?: string | undefined;
|
|
6202
7301
|
} | undefined;
|
|
7302
|
+
secureStore?: "memory" | {
|
|
7303
|
+
sqlite: {
|
|
7304
|
+
path: string;
|
|
7305
|
+
encryption?: {
|
|
7306
|
+
secret: string;
|
|
7307
|
+
} | undefined;
|
|
7308
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
7309
|
+
walMode?: boolean | undefined;
|
|
7310
|
+
};
|
|
7311
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7312
|
+
ttlMs?: number | undefined;
|
|
7313
|
+
encryption?: {
|
|
7314
|
+
pepper?: string | undefined;
|
|
7315
|
+
} | undefined;
|
|
7316
|
+
} | {
|
|
7317
|
+
redis: {
|
|
7318
|
+
host: string;
|
|
7319
|
+
port: number;
|
|
7320
|
+
db: number;
|
|
7321
|
+
tls: boolean;
|
|
7322
|
+
keyPrefix: string;
|
|
7323
|
+
defaultTtlMs: number;
|
|
7324
|
+
password?: string | undefined;
|
|
7325
|
+
};
|
|
7326
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7327
|
+
ttlMs?: number | undefined;
|
|
7328
|
+
encryption?: {
|
|
7329
|
+
pepper?: string | undefined;
|
|
7330
|
+
} | undefined;
|
|
7331
|
+
} | {
|
|
7332
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
7333
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7334
|
+
ttlMs?: number | undefined;
|
|
7335
|
+
encryption?: {
|
|
7336
|
+
pepper?: string | undefined;
|
|
7337
|
+
} | undefined;
|
|
7338
|
+
} | {
|
|
7339
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7340
|
+
ttlMs?: number | undefined;
|
|
7341
|
+
encryption?: {
|
|
7342
|
+
pepper?: string | undefined;
|
|
7343
|
+
} | undefined;
|
|
7344
|
+
} | undefined;
|
|
6203
7345
|
publicAccess?: {
|
|
6204
7346
|
tools: string[] | "all";
|
|
6205
7347
|
prompts: string[] | "all";
|
|
@@ -6218,6 +7360,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6218
7360
|
} | undefined;
|
|
6219
7361
|
federatedAuth?: {
|
|
6220
7362
|
stateValidation: "format" | "strict";
|
|
7363
|
+
minProviders?: number | undefined;
|
|
7364
|
+
requiredProviders?: string[] | undefined;
|
|
6221
7365
|
} | undefined;
|
|
6222
7366
|
refresh?: {
|
|
6223
7367
|
enabled: boolean;
|
|
@@ -6261,6 +7405,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6261
7405
|
maxRedirects: number;
|
|
6262
7406
|
} | undefined;
|
|
6263
7407
|
} | undefined;
|
|
7408
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
7409
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
6264
7410
|
} | {
|
|
6265
7411
|
tokenStorage: "memory" | {
|
|
6266
7412
|
redis: {
|
|
@@ -6272,6 +7418,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6272
7418
|
defaultTtlMs: number;
|
|
6273
7419
|
password?: string | undefined;
|
|
6274
7420
|
};
|
|
7421
|
+
} | {
|
|
7422
|
+
sqlite: {
|
|
7423
|
+
path: string;
|
|
7424
|
+
encryption?: {
|
|
7425
|
+
secret: string;
|
|
7426
|
+
} | undefined;
|
|
7427
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
7428
|
+
walMode?: boolean | undefined;
|
|
7429
|
+
};
|
|
6275
7430
|
};
|
|
6276
7431
|
allowDefaultPublic: boolean;
|
|
6277
7432
|
anonymousScopes: string[];
|
|
@@ -6284,6 +7439,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6284
7439
|
} | undefined;
|
|
6285
7440
|
issuer?: string | undefined;
|
|
6286
7441
|
} | undefined;
|
|
7442
|
+
secureStore?: "memory" | {
|
|
7443
|
+
sqlite: {
|
|
7444
|
+
path: string;
|
|
7445
|
+
encryption?: {
|
|
7446
|
+
secret: string;
|
|
7447
|
+
} | undefined;
|
|
7448
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
7449
|
+
walMode?: boolean | undefined;
|
|
7450
|
+
};
|
|
7451
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7452
|
+
ttlMs?: number | undefined;
|
|
7453
|
+
encryption?: {
|
|
7454
|
+
pepper?: string | undefined;
|
|
7455
|
+
} | undefined;
|
|
7456
|
+
} | {
|
|
7457
|
+
redis: {
|
|
7458
|
+
host: string;
|
|
7459
|
+
port: number;
|
|
7460
|
+
db: number;
|
|
7461
|
+
tls: boolean;
|
|
7462
|
+
keyPrefix: string;
|
|
7463
|
+
defaultTtlMs: number;
|
|
7464
|
+
password?: string | undefined;
|
|
7465
|
+
};
|
|
7466
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7467
|
+
ttlMs?: number | undefined;
|
|
7468
|
+
encryption?: {
|
|
7469
|
+
pepper?: string | undefined;
|
|
7470
|
+
} | undefined;
|
|
7471
|
+
} | {
|
|
7472
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
7473
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7474
|
+
ttlMs?: number | undefined;
|
|
7475
|
+
encryption?: {
|
|
7476
|
+
pepper?: string | undefined;
|
|
7477
|
+
} | undefined;
|
|
7478
|
+
} | {
|
|
7479
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
7480
|
+
ttlMs?: number | undefined;
|
|
7481
|
+
encryption?: {
|
|
7482
|
+
pepper?: string | undefined;
|
|
7483
|
+
} | undefined;
|
|
7484
|
+
} | undefined;
|
|
6287
7485
|
publicAccess?: {
|
|
6288
7486
|
tools: string[] | "all";
|
|
6289
7487
|
prompts: string[] | "all";
|
|
@@ -6302,6 +7500,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6302
7500
|
} | undefined;
|
|
6303
7501
|
federatedAuth?: {
|
|
6304
7502
|
stateValidation: "format" | "strict";
|
|
7503
|
+
minProviders?: number | undefined;
|
|
7504
|
+
requiredProviders?: string[] | undefined;
|
|
6305
7505
|
} | undefined;
|
|
6306
7506
|
refresh?: {
|
|
6307
7507
|
enabled: boolean;
|
|
@@ -6345,6 +7545,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6345
7545
|
maxRedirects: number;
|
|
6346
7546
|
} | undefined;
|
|
6347
7547
|
} | undefined;
|
|
7548
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
7549
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
6348
7550
|
clientId?: string | undefined;
|
|
6349
7551
|
clientSecret?: string | undefined;
|
|
6350
7552
|
scopes?: string[] | undefined;
|
|
@@ -6397,7 +7599,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6397
7599
|
customOnly: boolean;
|
|
6398
7600
|
mappings?: {
|
|
6399
7601
|
pattern: string | RegExp;
|
|
6400
|
-
platform: "unknown" | "
|
|
7602
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
6401
7603
|
}[] | undefined;
|
|
6402
7604
|
} | undefined;
|
|
6403
7605
|
persistence?: false | {
|
|
@@ -6470,6 +7672,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6470
7672
|
} | undefined;
|
|
6471
7673
|
};
|
|
6472
7674
|
splitByApp: true;
|
|
7675
|
+
__sourceDir?: string | undefined;
|
|
6473
7676
|
instructions?: string | undefined;
|
|
6474
7677
|
http?: {
|
|
6475
7678
|
port: number;
|
|
@@ -6492,6 +7695,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6492
7695
|
} | undefined;
|
|
6493
7696
|
} | undefined;
|
|
6494
7697
|
urlencodedLimit?: string | number | undefined;
|
|
7698
|
+
routes?: {
|
|
7699
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "OPTIONS" | "HEAD";
|
|
7700
|
+
path: string;
|
|
7701
|
+
handler: import("../interfaces").ServerRequestHandler;
|
|
7702
|
+
auth?: boolean | undefined;
|
|
7703
|
+
}[] | undefined;
|
|
6495
7704
|
} | undefined;
|
|
6496
7705
|
redis?: {
|
|
6497
7706
|
provider: "redis";
|
|
@@ -6646,7 +7855,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6646
7855
|
cdnOverrides?: Record<string, string> | undefined;
|
|
6647
7856
|
} | undefined;
|
|
6648
7857
|
output?: {
|
|
6649
|
-
allowNonFinite
|
|
7858
|
+
allowNonFinite?: boolean | undefined;
|
|
7859
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
7860
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
6650
7861
|
} | undefined;
|
|
6651
7862
|
jobs?: {
|
|
6652
7863
|
enabled: boolean;
|
|
@@ -6884,6 +8095,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6884
8095
|
userInfoEndpoint?: string | undefined;
|
|
6885
8096
|
} | undefined;
|
|
6886
8097
|
} | {
|
|
8098
|
+
requireEmail: boolean;
|
|
8099
|
+
anonymousSubject: string;
|
|
6887
8100
|
tokenStorage: "memory" | {
|
|
6888
8101
|
redis: {
|
|
6889
8102
|
host: string;
|
|
@@ -6894,10 +8107,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6894
8107
|
defaultTtlMs: number;
|
|
6895
8108
|
password?: string | undefined;
|
|
6896
8109
|
};
|
|
8110
|
+
} | {
|
|
8111
|
+
sqlite: {
|
|
8112
|
+
path: string;
|
|
8113
|
+
encryption?: {
|
|
8114
|
+
secret: string;
|
|
8115
|
+
} | undefined;
|
|
8116
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8117
|
+
walMode?: boolean | undefined;
|
|
8118
|
+
};
|
|
6897
8119
|
};
|
|
6898
8120
|
allowDefaultPublic: boolean;
|
|
6899
8121
|
anonymousScopes: string[];
|
|
6900
8122
|
mode: "local";
|
|
8123
|
+
login?: {
|
|
8124
|
+
title?: string | undefined;
|
|
8125
|
+
subtitle?: string | undefined;
|
|
8126
|
+
logoUri?: string | undefined;
|
|
8127
|
+
fields?: Record<string, {
|
|
8128
|
+
type: "text" | "email" | "password" | "select" | "hidden";
|
|
8129
|
+
label?: string | undefined;
|
|
8130
|
+
required?: boolean | undefined;
|
|
8131
|
+
placeholder?: string | undefined;
|
|
8132
|
+
options?: {
|
|
8133
|
+
value: string;
|
|
8134
|
+
label: string;
|
|
8135
|
+
}[] | undefined;
|
|
8136
|
+
}> | undefined;
|
|
8137
|
+
render?: ((ctx: import("@frontmcp/auth").LoginRenderContext) => string) | undefined;
|
|
8138
|
+
subject?: {
|
|
8139
|
+
fromField?: string | undefined;
|
|
8140
|
+
strategy?: "per-session" | "per-account" | undefined;
|
|
8141
|
+
} | undefined;
|
|
8142
|
+
} | undefined;
|
|
8143
|
+
authenticate?: import("@frontmcp/auth").AuthenticateFn | undefined;
|
|
8144
|
+
providers?: {
|
|
8145
|
+
id: string;
|
|
8146
|
+
clientId: string;
|
|
8147
|
+
name?: string | undefined;
|
|
8148
|
+
authorizationEndpoint?: string | undefined;
|
|
8149
|
+
authorizeUrl?: string | undefined;
|
|
8150
|
+
tokenEndpoint?: string | undefined;
|
|
8151
|
+
tokenUrl?: string | undefined;
|
|
8152
|
+
clientSecret?: string | undefined;
|
|
8153
|
+
scopes?: string[] | undefined;
|
|
8154
|
+
userInfoEndpoint?: string | undefined;
|
|
8155
|
+
jwksUri?: string | undefined;
|
|
8156
|
+
}[] | undefined;
|
|
8157
|
+
dcr?: {
|
|
8158
|
+
enabled?: boolean | undefined;
|
|
8159
|
+
allowedRedirectUris?: string[] | undefined;
|
|
8160
|
+
allowedClientIds?: string[] | undefined;
|
|
8161
|
+
initialAccessToken?: string | undefined;
|
|
8162
|
+
clients?: {
|
|
8163
|
+
clientId: string;
|
|
8164
|
+
redirectUris: string[];
|
|
8165
|
+
tokenEndpointAuthMethod: "none" | "client_secret_basic" | "client_secret_post";
|
|
8166
|
+
grantTypes: ("authorization_code" | "refresh_token")[];
|
|
8167
|
+
responseTypes: "code"[];
|
|
8168
|
+
clientSecret?: string | undefined;
|
|
8169
|
+
clientName?: string | undefined;
|
|
8170
|
+
scope?: string | undefined;
|
|
8171
|
+
}[] | undefined;
|
|
8172
|
+
} | undefined;
|
|
6901
8173
|
local?: {
|
|
6902
8174
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
6903
8175
|
jwks?: {
|
|
@@ -6905,6 +8177,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6905
8177
|
} | undefined;
|
|
6906
8178
|
issuer?: string | undefined;
|
|
6907
8179
|
} | undefined;
|
|
8180
|
+
secureStore?: "memory" | {
|
|
8181
|
+
sqlite: {
|
|
8182
|
+
path: string;
|
|
8183
|
+
encryption?: {
|
|
8184
|
+
secret: string;
|
|
8185
|
+
} | undefined;
|
|
8186
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8187
|
+
walMode?: boolean | undefined;
|
|
8188
|
+
};
|
|
8189
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8190
|
+
ttlMs?: number | undefined;
|
|
8191
|
+
encryption?: {
|
|
8192
|
+
pepper?: string | undefined;
|
|
8193
|
+
} | undefined;
|
|
8194
|
+
} | {
|
|
8195
|
+
redis: {
|
|
8196
|
+
host: string;
|
|
8197
|
+
port: number;
|
|
8198
|
+
db: number;
|
|
8199
|
+
tls: boolean;
|
|
8200
|
+
keyPrefix: string;
|
|
8201
|
+
defaultTtlMs: number;
|
|
8202
|
+
password?: string | undefined;
|
|
8203
|
+
};
|
|
8204
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8205
|
+
ttlMs?: number | undefined;
|
|
8206
|
+
encryption?: {
|
|
8207
|
+
pepper?: string | undefined;
|
|
8208
|
+
} | undefined;
|
|
8209
|
+
} | {
|
|
8210
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
8211
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8212
|
+
ttlMs?: number | undefined;
|
|
8213
|
+
encryption?: {
|
|
8214
|
+
pepper?: string | undefined;
|
|
8215
|
+
} | undefined;
|
|
8216
|
+
} | {
|
|
8217
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8218
|
+
ttlMs?: number | undefined;
|
|
8219
|
+
encryption?: {
|
|
8220
|
+
pepper?: string | undefined;
|
|
8221
|
+
} | undefined;
|
|
8222
|
+
} | undefined;
|
|
6908
8223
|
publicAccess?: {
|
|
6909
8224
|
tools: string[] | "all";
|
|
6910
8225
|
prompts: string[] | "all";
|
|
@@ -6923,6 +8238,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6923
8238
|
} | undefined;
|
|
6924
8239
|
federatedAuth?: {
|
|
6925
8240
|
stateValidation: "format" | "strict";
|
|
8241
|
+
minProviders?: number | undefined;
|
|
8242
|
+
requiredProviders?: string[] | undefined;
|
|
6926
8243
|
} | undefined;
|
|
6927
8244
|
refresh?: {
|
|
6928
8245
|
enabled: boolean;
|
|
@@ -6966,6 +8283,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6966
8283
|
maxRedirects: number;
|
|
6967
8284
|
} | undefined;
|
|
6968
8285
|
} | undefined;
|
|
8286
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
8287
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
6969
8288
|
} | {
|
|
6970
8289
|
tokenStorage: "memory" | {
|
|
6971
8290
|
redis: {
|
|
@@ -6977,6 +8296,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6977
8296
|
defaultTtlMs: number;
|
|
6978
8297
|
password?: string | undefined;
|
|
6979
8298
|
};
|
|
8299
|
+
} | {
|
|
8300
|
+
sqlite: {
|
|
8301
|
+
path: string;
|
|
8302
|
+
encryption?: {
|
|
8303
|
+
secret: string;
|
|
8304
|
+
} | undefined;
|
|
8305
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8306
|
+
walMode?: boolean | undefined;
|
|
8307
|
+
};
|
|
6980
8308
|
};
|
|
6981
8309
|
allowDefaultPublic: boolean;
|
|
6982
8310
|
anonymousScopes: string[];
|
|
@@ -6989,6 +8317,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6989
8317
|
} | undefined;
|
|
6990
8318
|
issuer?: string | undefined;
|
|
6991
8319
|
} | undefined;
|
|
8320
|
+
secureStore?: "memory" | {
|
|
8321
|
+
sqlite: {
|
|
8322
|
+
path: string;
|
|
8323
|
+
encryption?: {
|
|
8324
|
+
secret: string;
|
|
8325
|
+
} | undefined;
|
|
8326
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8327
|
+
walMode?: boolean | undefined;
|
|
8328
|
+
};
|
|
8329
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8330
|
+
ttlMs?: number | undefined;
|
|
8331
|
+
encryption?: {
|
|
8332
|
+
pepper?: string | undefined;
|
|
8333
|
+
} | undefined;
|
|
8334
|
+
} | {
|
|
8335
|
+
redis: {
|
|
8336
|
+
host: string;
|
|
8337
|
+
port: number;
|
|
8338
|
+
db: number;
|
|
8339
|
+
tls: boolean;
|
|
8340
|
+
keyPrefix: string;
|
|
8341
|
+
defaultTtlMs: number;
|
|
8342
|
+
password?: string | undefined;
|
|
8343
|
+
};
|
|
8344
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8345
|
+
ttlMs?: number | undefined;
|
|
8346
|
+
encryption?: {
|
|
8347
|
+
pepper?: string | undefined;
|
|
8348
|
+
} | undefined;
|
|
8349
|
+
} | {
|
|
8350
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
8351
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8352
|
+
ttlMs?: number | undefined;
|
|
8353
|
+
encryption?: {
|
|
8354
|
+
pepper?: string | undefined;
|
|
8355
|
+
} | undefined;
|
|
8356
|
+
} | {
|
|
8357
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
8358
|
+
ttlMs?: number | undefined;
|
|
8359
|
+
encryption?: {
|
|
8360
|
+
pepper?: string | undefined;
|
|
8361
|
+
} | undefined;
|
|
8362
|
+
} | undefined;
|
|
6992
8363
|
publicAccess?: {
|
|
6993
8364
|
tools: string[] | "all";
|
|
6994
8365
|
prompts: string[] | "all";
|
|
@@ -7007,6 +8378,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7007
8378
|
} | undefined;
|
|
7008
8379
|
federatedAuth?: {
|
|
7009
8380
|
stateValidation: "format" | "strict";
|
|
8381
|
+
minProviders?: number | undefined;
|
|
8382
|
+
requiredProviders?: string[] | undefined;
|
|
7010
8383
|
} | undefined;
|
|
7011
8384
|
refresh?: {
|
|
7012
8385
|
enabled: boolean;
|
|
@@ -7050,6 +8423,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7050
8423
|
maxRedirects: number;
|
|
7051
8424
|
} | undefined;
|
|
7052
8425
|
} | undefined;
|
|
8426
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
8427
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
7053
8428
|
clientId?: string | undefined;
|
|
7054
8429
|
clientSecret?: string | undefined;
|
|
7055
8430
|
scopes?: string[] | undefined;
|
|
@@ -7102,7 +8477,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7102
8477
|
customOnly: boolean;
|
|
7103
8478
|
mappings?: {
|
|
7104
8479
|
pattern: string | RegExp;
|
|
7105
|
-
platform: "unknown" | "
|
|
8480
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
7106
8481
|
}[] | undefined;
|
|
7107
8482
|
} | undefined;
|
|
7108
8483
|
persistence?: false | {
|
|
@@ -7175,6 +8550,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7175
8550
|
} | undefined;
|
|
7176
8551
|
};
|
|
7177
8552
|
splitByApp: false;
|
|
8553
|
+
__sourceDir?: string | undefined;
|
|
7178
8554
|
instructions?: string | undefined;
|
|
7179
8555
|
http?: {
|
|
7180
8556
|
port: number;
|
|
@@ -7197,6 +8573,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7197
8573
|
} | undefined;
|
|
7198
8574
|
} | undefined;
|
|
7199
8575
|
urlencodedLimit?: string | number | undefined;
|
|
8576
|
+
routes?: {
|
|
8577
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "OPTIONS" | "HEAD";
|
|
8578
|
+
path: string;
|
|
8579
|
+
handler: import("../interfaces").ServerRequestHandler;
|
|
8580
|
+
auth?: boolean | undefined;
|
|
8581
|
+
}[] | undefined;
|
|
7200
8582
|
} | undefined;
|
|
7201
8583
|
redis?: {
|
|
7202
8584
|
provider: "redis";
|
|
@@ -7351,7 +8733,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7351
8733
|
cdnOverrides?: Record<string, string> | undefined;
|
|
7352
8734
|
} | undefined;
|
|
7353
8735
|
output?: {
|
|
7354
|
-
allowNonFinite
|
|
8736
|
+
allowNonFinite?: boolean | undefined;
|
|
8737
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
8738
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
7355
8739
|
} | undefined;
|
|
7356
8740
|
jobs?: {
|
|
7357
8741
|
enabled: boolean;
|
|
@@ -7589,6 +8973,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7589
8973
|
userInfoEndpoint?: string | undefined;
|
|
7590
8974
|
} | undefined;
|
|
7591
8975
|
} | {
|
|
8976
|
+
requireEmail: boolean;
|
|
8977
|
+
anonymousSubject: string;
|
|
7592
8978
|
tokenStorage: "memory" | {
|
|
7593
8979
|
redis: {
|
|
7594
8980
|
host: string;
|
|
@@ -7599,10 +8985,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7599
8985
|
defaultTtlMs: number;
|
|
7600
8986
|
password?: string | undefined;
|
|
7601
8987
|
};
|
|
8988
|
+
} | {
|
|
8989
|
+
sqlite: {
|
|
8990
|
+
path: string;
|
|
8991
|
+
encryption?: {
|
|
8992
|
+
secret: string;
|
|
8993
|
+
} | undefined;
|
|
8994
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8995
|
+
walMode?: boolean | undefined;
|
|
8996
|
+
};
|
|
7602
8997
|
};
|
|
7603
8998
|
allowDefaultPublic: boolean;
|
|
7604
8999
|
anonymousScopes: string[];
|
|
7605
9000
|
mode: "local";
|
|
9001
|
+
login?: {
|
|
9002
|
+
title?: string | undefined;
|
|
9003
|
+
subtitle?: string | undefined;
|
|
9004
|
+
logoUri?: string | undefined;
|
|
9005
|
+
fields?: Record<string, {
|
|
9006
|
+
type: "text" | "email" | "password" | "select" | "hidden";
|
|
9007
|
+
label?: string | undefined;
|
|
9008
|
+
required?: boolean | undefined;
|
|
9009
|
+
placeholder?: string | undefined;
|
|
9010
|
+
options?: {
|
|
9011
|
+
value: string;
|
|
9012
|
+
label: string;
|
|
9013
|
+
}[] | undefined;
|
|
9014
|
+
}> | undefined;
|
|
9015
|
+
render?: ((ctx: import("@frontmcp/auth").LoginRenderContext) => string) | undefined;
|
|
9016
|
+
subject?: {
|
|
9017
|
+
fromField?: string | undefined;
|
|
9018
|
+
strategy?: "per-session" | "per-account" | undefined;
|
|
9019
|
+
} | undefined;
|
|
9020
|
+
} | undefined;
|
|
9021
|
+
authenticate?: import("@frontmcp/auth").AuthenticateFn | undefined;
|
|
9022
|
+
providers?: {
|
|
9023
|
+
id: string;
|
|
9024
|
+
clientId: string;
|
|
9025
|
+
name?: string | undefined;
|
|
9026
|
+
authorizationEndpoint?: string | undefined;
|
|
9027
|
+
authorizeUrl?: string | undefined;
|
|
9028
|
+
tokenEndpoint?: string | undefined;
|
|
9029
|
+
tokenUrl?: string | undefined;
|
|
9030
|
+
clientSecret?: string | undefined;
|
|
9031
|
+
scopes?: string[] | undefined;
|
|
9032
|
+
userInfoEndpoint?: string | undefined;
|
|
9033
|
+
jwksUri?: string | undefined;
|
|
9034
|
+
}[] | undefined;
|
|
9035
|
+
dcr?: {
|
|
9036
|
+
enabled?: boolean | undefined;
|
|
9037
|
+
allowedRedirectUris?: string[] | undefined;
|
|
9038
|
+
allowedClientIds?: string[] | undefined;
|
|
9039
|
+
initialAccessToken?: string | undefined;
|
|
9040
|
+
clients?: {
|
|
9041
|
+
clientId: string;
|
|
9042
|
+
redirectUris: string[];
|
|
9043
|
+
tokenEndpointAuthMethod: "none" | "client_secret_basic" | "client_secret_post";
|
|
9044
|
+
grantTypes: ("authorization_code" | "refresh_token")[];
|
|
9045
|
+
responseTypes: "code"[];
|
|
9046
|
+
clientSecret?: string | undefined;
|
|
9047
|
+
clientName?: string | undefined;
|
|
9048
|
+
scope?: string | undefined;
|
|
9049
|
+
}[] | undefined;
|
|
9050
|
+
} | undefined;
|
|
7606
9051
|
local?: {
|
|
7607
9052
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
7608
9053
|
jwks?: {
|
|
@@ -7610,6 +9055,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7610
9055
|
} | undefined;
|
|
7611
9056
|
issuer?: string | undefined;
|
|
7612
9057
|
} | undefined;
|
|
9058
|
+
secureStore?: "memory" | {
|
|
9059
|
+
sqlite: {
|
|
9060
|
+
path: string;
|
|
9061
|
+
encryption?: {
|
|
9062
|
+
secret: string;
|
|
9063
|
+
} | undefined;
|
|
9064
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
9065
|
+
walMode?: boolean | undefined;
|
|
9066
|
+
};
|
|
9067
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9068
|
+
ttlMs?: number | undefined;
|
|
9069
|
+
encryption?: {
|
|
9070
|
+
pepper?: string | undefined;
|
|
9071
|
+
} | undefined;
|
|
9072
|
+
} | {
|
|
9073
|
+
redis: {
|
|
9074
|
+
host: string;
|
|
9075
|
+
port: number;
|
|
9076
|
+
db: number;
|
|
9077
|
+
tls: boolean;
|
|
9078
|
+
keyPrefix: string;
|
|
9079
|
+
defaultTtlMs: number;
|
|
9080
|
+
password?: string | undefined;
|
|
9081
|
+
};
|
|
9082
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9083
|
+
ttlMs?: number | undefined;
|
|
9084
|
+
encryption?: {
|
|
9085
|
+
pepper?: string | undefined;
|
|
9086
|
+
} | undefined;
|
|
9087
|
+
} | {
|
|
9088
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
9089
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9090
|
+
ttlMs?: number | undefined;
|
|
9091
|
+
encryption?: {
|
|
9092
|
+
pepper?: string | undefined;
|
|
9093
|
+
} | undefined;
|
|
9094
|
+
} | {
|
|
9095
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9096
|
+
ttlMs?: number | undefined;
|
|
9097
|
+
encryption?: {
|
|
9098
|
+
pepper?: string | undefined;
|
|
9099
|
+
} | undefined;
|
|
9100
|
+
} | undefined;
|
|
7613
9101
|
publicAccess?: {
|
|
7614
9102
|
tools: string[] | "all";
|
|
7615
9103
|
prompts: string[] | "all";
|
|
@@ -7628,6 +9116,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7628
9116
|
} | undefined;
|
|
7629
9117
|
federatedAuth?: {
|
|
7630
9118
|
stateValidation: "format" | "strict";
|
|
9119
|
+
minProviders?: number | undefined;
|
|
9120
|
+
requiredProviders?: string[] | undefined;
|
|
7631
9121
|
} | undefined;
|
|
7632
9122
|
refresh?: {
|
|
7633
9123
|
enabled: boolean;
|
|
@@ -7671,6 +9161,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7671
9161
|
maxRedirects: number;
|
|
7672
9162
|
} | undefined;
|
|
7673
9163
|
} | undefined;
|
|
9164
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
9165
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
7674
9166
|
} | {
|
|
7675
9167
|
tokenStorage: "memory" | {
|
|
7676
9168
|
redis: {
|
|
@@ -7682,6 +9174,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7682
9174
|
defaultTtlMs: number;
|
|
7683
9175
|
password?: string | undefined;
|
|
7684
9176
|
};
|
|
9177
|
+
} | {
|
|
9178
|
+
sqlite: {
|
|
9179
|
+
path: string;
|
|
9180
|
+
encryption?: {
|
|
9181
|
+
secret: string;
|
|
9182
|
+
} | undefined;
|
|
9183
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
9184
|
+
walMode?: boolean | undefined;
|
|
9185
|
+
};
|
|
7685
9186
|
};
|
|
7686
9187
|
allowDefaultPublic: boolean;
|
|
7687
9188
|
anonymousScopes: string[];
|
|
@@ -7694,6 +9195,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7694
9195
|
} | undefined;
|
|
7695
9196
|
issuer?: string | undefined;
|
|
7696
9197
|
} | undefined;
|
|
9198
|
+
secureStore?: "memory" | {
|
|
9199
|
+
sqlite: {
|
|
9200
|
+
path: string;
|
|
9201
|
+
encryption?: {
|
|
9202
|
+
secret: string;
|
|
9203
|
+
} | undefined;
|
|
9204
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
9205
|
+
walMode?: boolean | undefined;
|
|
9206
|
+
};
|
|
9207
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9208
|
+
ttlMs?: number | undefined;
|
|
9209
|
+
encryption?: {
|
|
9210
|
+
pepper?: string | undefined;
|
|
9211
|
+
} | undefined;
|
|
9212
|
+
} | {
|
|
9213
|
+
redis: {
|
|
9214
|
+
host: string;
|
|
9215
|
+
port: number;
|
|
9216
|
+
db: number;
|
|
9217
|
+
tls: boolean;
|
|
9218
|
+
keyPrefix: string;
|
|
9219
|
+
defaultTtlMs: number;
|
|
9220
|
+
password?: string | undefined;
|
|
9221
|
+
};
|
|
9222
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9223
|
+
ttlMs?: number | undefined;
|
|
9224
|
+
encryption?: {
|
|
9225
|
+
pepper?: string | undefined;
|
|
9226
|
+
} | undefined;
|
|
9227
|
+
} | {
|
|
9228
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
9229
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9230
|
+
ttlMs?: number | undefined;
|
|
9231
|
+
encryption?: {
|
|
9232
|
+
pepper?: string | undefined;
|
|
9233
|
+
} | undefined;
|
|
9234
|
+
} | {
|
|
9235
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9236
|
+
ttlMs?: number | undefined;
|
|
9237
|
+
encryption?: {
|
|
9238
|
+
pepper?: string | undefined;
|
|
9239
|
+
} | undefined;
|
|
9240
|
+
} | undefined;
|
|
7697
9241
|
publicAccess?: {
|
|
7698
9242
|
tools: string[] | "all";
|
|
7699
9243
|
prompts: string[] | "all";
|
|
@@ -7712,6 +9256,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7712
9256
|
} | undefined;
|
|
7713
9257
|
federatedAuth?: {
|
|
7714
9258
|
stateValidation: "format" | "strict";
|
|
9259
|
+
minProviders?: number | undefined;
|
|
9260
|
+
requiredProviders?: string[] | undefined;
|
|
7715
9261
|
} | undefined;
|
|
7716
9262
|
refresh?: {
|
|
7717
9263
|
enabled: boolean;
|
|
@@ -7755,6 +9301,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7755
9301
|
maxRedirects: number;
|
|
7756
9302
|
} | undefined;
|
|
7757
9303
|
} | undefined;
|
|
9304
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
9305
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
7758
9306
|
clientId?: string | undefined;
|
|
7759
9307
|
clientSecret?: string | undefined;
|
|
7760
9308
|
scopes?: string[] | undefined;
|
|
@@ -7807,7 +9355,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7807
9355
|
customOnly: boolean;
|
|
7808
9356
|
mappings?: {
|
|
7809
9357
|
pattern: string | RegExp;
|
|
7810
|
-
platform: "unknown" | "
|
|
9358
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
7811
9359
|
}[] | undefined;
|
|
7812
9360
|
} | undefined;
|
|
7813
9361
|
persistence?: false | {
|
|
@@ -7880,6 +9428,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7880
9428
|
} | undefined;
|
|
7881
9429
|
};
|
|
7882
9430
|
splitByApp: true;
|
|
9431
|
+
__sourceDir?: string | undefined;
|
|
7883
9432
|
instructions?: string | undefined;
|
|
7884
9433
|
http?: {
|
|
7885
9434
|
port: number;
|
|
@@ -7902,6 +9451,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7902
9451
|
} | undefined;
|
|
7903
9452
|
} | undefined;
|
|
7904
9453
|
urlencodedLimit?: string | number | undefined;
|
|
9454
|
+
routes?: {
|
|
9455
|
+
method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "OPTIONS" | "HEAD";
|
|
9456
|
+
path: string;
|
|
9457
|
+
handler: import("../interfaces").ServerRequestHandler;
|
|
9458
|
+
auth?: boolean | undefined;
|
|
9459
|
+
}[] | undefined;
|
|
7905
9460
|
} | undefined;
|
|
7906
9461
|
redis?: {
|
|
7907
9462
|
provider: "redis";
|
|
@@ -8056,7 +9611,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8056
9611
|
cdnOverrides?: Record<string, string> | undefined;
|
|
8057
9612
|
} | undefined;
|
|
8058
9613
|
output?: {
|
|
8059
|
-
allowNonFinite
|
|
9614
|
+
allowNonFinite?: boolean | undefined;
|
|
9615
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
9616
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
8060
9617
|
} | undefined;
|
|
8061
9618
|
jobs?: {
|
|
8062
9619
|
enabled: boolean;
|
|
@@ -8294,6 +9851,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8294
9851
|
userInfoEndpoint?: string | undefined;
|
|
8295
9852
|
} | undefined;
|
|
8296
9853
|
} | {
|
|
9854
|
+
requireEmail: boolean;
|
|
9855
|
+
anonymousSubject: string;
|
|
8297
9856
|
tokenStorage: "memory" | {
|
|
8298
9857
|
redis: {
|
|
8299
9858
|
host: string;
|
|
@@ -8304,10 +9863,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8304
9863
|
defaultTtlMs: number;
|
|
8305
9864
|
password?: string | undefined;
|
|
8306
9865
|
};
|
|
9866
|
+
} | {
|
|
9867
|
+
sqlite: {
|
|
9868
|
+
path: string;
|
|
9869
|
+
encryption?: {
|
|
9870
|
+
secret: string;
|
|
9871
|
+
} | undefined;
|
|
9872
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
9873
|
+
walMode?: boolean | undefined;
|
|
9874
|
+
};
|
|
8307
9875
|
};
|
|
8308
9876
|
allowDefaultPublic: boolean;
|
|
8309
9877
|
anonymousScopes: string[];
|
|
8310
9878
|
mode: "local";
|
|
9879
|
+
login?: {
|
|
9880
|
+
title?: string | undefined;
|
|
9881
|
+
subtitle?: string | undefined;
|
|
9882
|
+
logoUri?: string | undefined;
|
|
9883
|
+
fields?: Record<string, {
|
|
9884
|
+
type: "text" | "email" | "password" | "select" | "hidden";
|
|
9885
|
+
label?: string | undefined;
|
|
9886
|
+
required?: boolean | undefined;
|
|
9887
|
+
placeholder?: string | undefined;
|
|
9888
|
+
options?: {
|
|
9889
|
+
value: string;
|
|
9890
|
+
label: string;
|
|
9891
|
+
}[] | undefined;
|
|
9892
|
+
}> | undefined;
|
|
9893
|
+
render?: ((ctx: import("@frontmcp/auth").LoginRenderContext) => string) | undefined;
|
|
9894
|
+
subject?: {
|
|
9895
|
+
fromField?: string | undefined;
|
|
9896
|
+
strategy?: "per-session" | "per-account" | undefined;
|
|
9897
|
+
} | undefined;
|
|
9898
|
+
} | undefined;
|
|
9899
|
+
authenticate?: import("@frontmcp/auth").AuthenticateFn | undefined;
|
|
9900
|
+
providers?: {
|
|
9901
|
+
id: string;
|
|
9902
|
+
clientId: string;
|
|
9903
|
+
name?: string | undefined;
|
|
9904
|
+
authorizationEndpoint?: string | undefined;
|
|
9905
|
+
authorizeUrl?: string | undefined;
|
|
9906
|
+
tokenEndpoint?: string | undefined;
|
|
9907
|
+
tokenUrl?: string | undefined;
|
|
9908
|
+
clientSecret?: string | undefined;
|
|
9909
|
+
scopes?: string[] | undefined;
|
|
9910
|
+
userInfoEndpoint?: string | undefined;
|
|
9911
|
+
jwksUri?: string | undefined;
|
|
9912
|
+
}[] | undefined;
|
|
9913
|
+
dcr?: {
|
|
9914
|
+
enabled?: boolean | undefined;
|
|
9915
|
+
allowedRedirectUris?: string[] | undefined;
|
|
9916
|
+
allowedClientIds?: string[] | undefined;
|
|
9917
|
+
initialAccessToken?: string | undefined;
|
|
9918
|
+
clients?: {
|
|
9919
|
+
clientId: string;
|
|
9920
|
+
redirectUris: string[];
|
|
9921
|
+
tokenEndpointAuthMethod: "none" | "client_secret_basic" | "client_secret_post";
|
|
9922
|
+
grantTypes: ("authorization_code" | "refresh_token")[];
|
|
9923
|
+
responseTypes: "code"[];
|
|
9924
|
+
clientSecret?: string | undefined;
|
|
9925
|
+
clientName?: string | undefined;
|
|
9926
|
+
scope?: string | undefined;
|
|
9927
|
+
}[] | undefined;
|
|
9928
|
+
} | undefined;
|
|
8311
9929
|
local?: {
|
|
8312
9930
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
8313
9931
|
jwks?: {
|
|
@@ -8315,6 +9933,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8315
9933
|
} | undefined;
|
|
8316
9934
|
issuer?: string | undefined;
|
|
8317
9935
|
} | undefined;
|
|
9936
|
+
secureStore?: "memory" | {
|
|
9937
|
+
sqlite: {
|
|
9938
|
+
path: string;
|
|
9939
|
+
encryption?: {
|
|
9940
|
+
secret: string;
|
|
9941
|
+
} | undefined;
|
|
9942
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
9943
|
+
walMode?: boolean | undefined;
|
|
9944
|
+
};
|
|
9945
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9946
|
+
ttlMs?: number | undefined;
|
|
9947
|
+
encryption?: {
|
|
9948
|
+
pepper?: string | undefined;
|
|
9949
|
+
} | undefined;
|
|
9950
|
+
} | {
|
|
9951
|
+
redis: {
|
|
9952
|
+
host: string;
|
|
9953
|
+
port: number;
|
|
9954
|
+
db: number;
|
|
9955
|
+
tls: boolean;
|
|
9956
|
+
keyPrefix: string;
|
|
9957
|
+
defaultTtlMs: number;
|
|
9958
|
+
password?: string | undefined;
|
|
9959
|
+
};
|
|
9960
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9961
|
+
ttlMs?: number | undefined;
|
|
9962
|
+
encryption?: {
|
|
9963
|
+
pepper?: string | undefined;
|
|
9964
|
+
} | undefined;
|
|
9965
|
+
} | {
|
|
9966
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
9967
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9968
|
+
ttlMs?: number | undefined;
|
|
9969
|
+
encryption?: {
|
|
9970
|
+
pepper?: string | undefined;
|
|
9971
|
+
} | undefined;
|
|
9972
|
+
} | {
|
|
9973
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
9974
|
+
ttlMs?: number | undefined;
|
|
9975
|
+
encryption?: {
|
|
9976
|
+
pepper?: string | undefined;
|
|
9977
|
+
} | undefined;
|
|
9978
|
+
} | undefined;
|
|
8318
9979
|
publicAccess?: {
|
|
8319
9980
|
tools: string[] | "all";
|
|
8320
9981
|
prompts: string[] | "all";
|
|
@@ -8333,6 +9994,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8333
9994
|
} | undefined;
|
|
8334
9995
|
federatedAuth?: {
|
|
8335
9996
|
stateValidation: "format" | "strict";
|
|
9997
|
+
minProviders?: number | undefined;
|
|
9998
|
+
requiredProviders?: string[] | undefined;
|
|
8336
9999
|
} | undefined;
|
|
8337
10000
|
refresh?: {
|
|
8338
10001
|
enabled: boolean;
|
|
@@ -8376,6 +10039,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8376
10039
|
maxRedirects: number;
|
|
8377
10040
|
} | undefined;
|
|
8378
10041
|
} | undefined;
|
|
10042
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
10043
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
8379
10044
|
} | {
|
|
8380
10045
|
tokenStorage: "memory" | {
|
|
8381
10046
|
redis: {
|
|
@@ -8387,6 +10052,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8387
10052
|
defaultTtlMs: number;
|
|
8388
10053
|
password?: string | undefined;
|
|
8389
10054
|
};
|
|
10055
|
+
} | {
|
|
10056
|
+
sqlite: {
|
|
10057
|
+
path: string;
|
|
10058
|
+
encryption?: {
|
|
10059
|
+
secret: string;
|
|
10060
|
+
} | undefined;
|
|
10061
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
10062
|
+
walMode?: boolean | undefined;
|
|
10063
|
+
};
|
|
8390
10064
|
};
|
|
8391
10065
|
allowDefaultPublic: boolean;
|
|
8392
10066
|
anonymousScopes: string[];
|
|
@@ -8399,6 +10073,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8399
10073
|
} | undefined;
|
|
8400
10074
|
issuer?: string | undefined;
|
|
8401
10075
|
} | undefined;
|
|
10076
|
+
secureStore?: "memory" | {
|
|
10077
|
+
sqlite: {
|
|
10078
|
+
path: string;
|
|
10079
|
+
encryption?: {
|
|
10080
|
+
secret: string;
|
|
10081
|
+
} | undefined;
|
|
10082
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
10083
|
+
walMode?: boolean | undefined;
|
|
10084
|
+
};
|
|
10085
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
10086
|
+
ttlMs?: number | undefined;
|
|
10087
|
+
encryption?: {
|
|
10088
|
+
pepper?: string | undefined;
|
|
10089
|
+
} | undefined;
|
|
10090
|
+
} | {
|
|
10091
|
+
redis: {
|
|
10092
|
+
host: string;
|
|
10093
|
+
port: number;
|
|
10094
|
+
db: number;
|
|
10095
|
+
tls: boolean;
|
|
10096
|
+
keyPrefix: string;
|
|
10097
|
+
defaultTtlMs: number;
|
|
10098
|
+
password?: string | undefined;
|
|
10099
|
+
};
|
|
10100
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
10101
|
+
ttlMs?: number | undefined;
|
|
10102
|
+
encryption?: {
|
|
10103
|
+
pepper?: string | undefined;
|
|
10104
|
+
} | undefined;
|
|
10105
|
+
} | {
|
|
10106
|
+
backend: import("@frontmcp/auth").SecureStoreCustomBackend;
|
|
10107
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
10108
|
+
ttlMs?: number | undefined;
|
|
10109
|
+
encryption?: {
|
|
10110
|
+
pepper?: string | undefined;
|
|
10111
|
+
} | undefined;
|
|
10112
|
+
} | {
|
|
10113
|
+
scope?: "user" | "session" | "global" | undefined;
|
|
10114
|
+
ttlMs?: number | undefined;
|
|
10115
|
+
encryption?: {
|
|
10116
|
+
pepper?: string | undefined;
|
|
10117
|
+
} | undefined;
|
|
10118
|
+
} | undefined;
|
|
8402
10119
|
publicAccess?: {
|
|
8403
10120
|
tools: string[] | "all";
|
|
8404
10121
|
prompts: string[] | "all";
|
|
@@ -8417,6 +10134,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8417
10134
|
} | undefined;
|
|
8418
10135
|
federatedAuth?: {
|
|
8419
10136
|
stateValidation: "format" | "strict";
|
|
10137
|
+
minProviders?: number | undefined;
|
|
10138
|
+
requiredProviders?: string[] | undefined;
|
|
8420
10139
|
} | undefined;
|
|
8421
10140
|
refresh?: {
|
|
8422
10141
|
enabled: boolean;
|
|
@@ -8460,6 +10179,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8460
10179
|
maxRedirects: number;
|
|
8461
10180
|
} | undefined;
|
|
8462
10181
|
} | undefined;
|
|
10182
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
10183
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
8463
10184
|
clientId?: string | undefined;
|
|
8464
10185
|
clientSecret?: string | undefined;
|
|
8465
10186
|
scopes?: string[] | undefined;
|