@frontmcp/sdk 1.2.1 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/auth/session/session-store.factory.d.ts +25 -5
- package/auth/session/session-store.factory.d.ts.map +1 -1
- 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 +26 -9
- 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/skill.interface.d.ts +17 -4
- package/common/interfaces/skill.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/agent.metadata.d.ts +10 -0
- package/common/metadata/agent.metadata.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/channel.metadata.d.ts +10 -0
- package/common/metadata/channel.metadata.d.ts.map +1 -1
- package/common/metadata/front-mcp.metadata.d.ts +2103 -49
- 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/prompt.metadata.d.ts +10 -0
- package/common/metadata/prompt.metadata.d.ts.map +1 -1
- package/common/metadata/resource.metadata.d.ts +20 -0
- package/common/metadata/resource.metadata.d.ts.map +1 -1
- package/common/metadata/skill.metadata.d.ts +55 -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 +75 -0
- package/common/metadata/tool.metadata.d.ts.map +1 -1
- package/common/records/skill.record.d.ts +2 -0
- package/common/records/skill.record.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 +10 -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 +88 -1
- package/common/types/options/http/interfaces.d.ts.map +1 -1
- package/common/types/options/http/schema.d.ts +17 -0
- package/common/types/options/http/schema.d.ts.map +1 -1
- package/common/types/options/index.d.ts +1 -0
- package/common/types/options/index.d.ts.map +1 -1
- package/common/types/options/metrics/index.d.ts +3 -0
- package/common/types/options/metrics/index.d.ts.map +1 -0
- package/common/types/options/metrics/interfaces.d.ts +154 -0
- package/common/types/options/metrics/interfaces.d.ts.map +1 -0
- package/common/types/options/metrics/schema.d.ts +33 -0
- package/common/types/options/metrics/schema.d.ts.map +1 -0
- package/common/types/options/session/schema.d.ts +3 -3
- package/common/types/options/sqlite/index.d.ts +2 -0
- package/common/types/options/sqlite/index.d.ts.map +1 -1
- package/common/types/options/sqlite/interfaces.d.ts +7 -2
- package/common/types/options/sqlite/interfaces.d.ts.map +1 -1
- package/common/types/options/sqlite/resolve.d.ts +29 -0
- package/common/types/options/sqlite/resolve.d.ts.map +1 -0
- package/common/types/options/sqlite/schema.d.ts +1 -1
- package/common/types/options/sqlite/schema.d.ts.map +1 -1
- package/common/types/options/transport/interfaces.d.ts +23 -7
- package/common/types/options/transport/interfaces.d.ts.map +1 -1
- package/common/types/options/transport/schema.d.ts +24 -5
- package/common/types/options/transport/schema.d.ts.map +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/direct/client.types.d.ts +10 -0
- package/direct/client.types.d.ts.map +1 -1
- package/elicitation/store/elicitation-store.factory.d.ts +19 -5
- package/elicitation/store/elicitation-store.factory.d.ts.map +1 -1
- package/errors/index.d.ts +4 -2
- package/errors/index.d.ts.map +1 -1
- package/errors/mcp.error.d.ts +79 -4
- package/errors/mcp.error.d.ts.map +1 -1
- package/errors/sdk.errors.d.ts +13 -0
- package/errors/sdk.errors.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 +7689 -3080
- package/flows/flow.instance.d.ts.map +1 -1
- package/front-mcp/front-mcp.d.ts +61 -32
- package/front-mcp/front-mcp.d.ts.map +1 -1
- package/front-mcp/front-mcp.providers.d.ts +804 -12
- package/front-mcp/front-mcp.providers.d.ts.map +1 -1
- package/index.d.ts +35 -8
- package/index.d.ts.map +1 -1
- package/index.js +8264 -3675
- package/job/index.d.ts +1 -0
- package/job/index.d.ts.map +1 -1
- package/metrics/index.d.ts +4 -0
- package/metrics/index.d.ts.map +1 -0
- package/metrics/metrics.errors.d.ts +18 -0
- package/metrics/metrics.errors.d.ts.map +1 -0
- package/metrics/metrics.routes.d.ts +30 -0
- package/metrics/metrics.routes.d.ts.map +1 -0
- package/metrics/metrics.service.d.ts +66 -0
- package/metrics/metrics.service.d.ts.map +1 -0
- package/package.json +30 -11
- package/prompt/prompt.registry.d.ts +5 -0
- package/prompt/prompt.registry.d.ts.map +1 -1
- package/resource/resource.registry.d.ts +5 -0
- package/resource/resource.registry.d.ts.map +1 -1
- 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 +30 -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 +16 -0
- package/server/adapters/express.host.adapter.d.ts.map +1 -1
- package/server/adapters/polyfills/browser-express-host.d.ts +3 -0
- package/server/adapters/polyfills/browser-express-host.d.ts.map +1 -1
- package/server/adapters/polyfills/node-express-host.d.ts +1 -1
- package/server/adapters/polyfills/node-express-host.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/server/server.instance.d.ts +16 -0
- package/server/server.instance.d.ts.map +1 -1
- 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/skill/skill.utils.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/tool.registry.d.ts +6 -0
- package/tool/tool.registry.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/event-stores/event-store.factory.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/index.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
- package/transport/transport.registry.d.ts +24 -3
- package/transport/transport.registry.d.ts.map +1 -1
- package/workflow/index.d.ts +1 -0
- package/workflow/index.d.ts.map +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { type GuardConfig } from '@frontmcp/guard';
|
|
2
2
|
import { z } from '@frontmcp/lazy-zod';
|
|
3
3
|
import type { AppType, PluginType, ProviderType, ResourceType, SkillType, ToolType } from '../interfaces';
|
|
4
|
-
import { type AuthOptions, type AuthOptionsInput, type ElicitationOptionsInput, type ExtAppsOptionsInput, type HealthOptionsInput, type HttpOptionsInput, type LoggingOptionsInput, type ObservabilityOptionsInterface, type PaginationOptions, type PubsubOptionsInput, type RedisOptionsInput, type ServerInfoOptions, type SkillsConfigOptionsInput, type SqliteOptionsInput, type TransportOptionsInput } from '../types';
|
|
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.
|
|
@@ -282,6 +282,34 @@ export interface FrontMcpBaseMetadata {
|
|
|
282
282
|
* ```
|
|
283
283
|
*/
|
|
284
284
|
health?: HealthOptionsInput;
|
|
285
|
+
/**
|
|
286
|
+
* `/metrics` endpoint configuration (issue #397).
|
|
287
|
+
*
|
|
288
|
+
* OFF by default. When `enabled: true`, registers a `GET /metrics`
|
|
289
|
+
* endpoint on the same HTTP listener as `/healthz` that emits Prometheus
|
|
290
|
+
* text exposition (or JSON, via `format: 'json'`) covering:
|
|
291
|
+
* - process metrics — CPU, RSS, heap, event-loop lag, fd count
|
|
292
|
+
* - every `@frontmcp/observability` counter (`frontmcp_*_total`)
|
|
293
|
+
*
|
|
294
|
+
* Re-uses the in-memory counter snapshot store from
|
|
295
|
+
* `@frontmcp/observability`, so counters emitted via `createCounter()`
|
|
296
|
+
* are scraped without needing an OTel push pipeline.
|
|
297
|
+
*
|
|
298
|
+
* @example Enable with defaults
|
|
299
|
+
* ```typescript
|
|
300
|
+
* metrics: { enabled: true }
|
|
301
|
+
* ```
|
|
302
|
+
*
|
|
303
|
+
* @example Token-gated for internet-exposed deployments
|
|
304
|
+
* ```typescript
|
|
305
|
+
* metrics: {
|
|
306
|
+
* enabled: true,
|
|
307
|
+
* auth: 'token',
|
|
308
|
+
* tokenEnv: 'FRONTMCP_METRICS_TOKEN',
|
|
309
|
+
* }
|
|
310
|
+
* ```
|
|
311
|
+
*/
|
|
312
|
+
metrics?: MetricsOptionsInput;
|
|
285
313
|
/**
|
|
286
314
|
* Observability configuration — OpenTelemetry tracing, structured logging,
|
|
287
315
|
* and per-request log collection.
|
|
@@ -436,6 +464,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
436
464
|
}>>;
|
|
437
465
|
}, import("zod/v4/core").$strip>>>;
|
|
438
466
|
}, import("zod/v4/core").$strip>;
|
|
467
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
439
468
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
440
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>>>>>;
|
|
441
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>>>>>;
|
|
@@ -463,6 +492,22 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
463
492
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
464
493
|
}, import("zod/v4/core").$strip>>;
|
|
465
494
|
}, import("zod/v4/core").$strip>>;
|
|
495
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
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>>>;
|
|
466
511
|
}, import("zod/v4/core").$strip>>;
|
|
467
512
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
468
513
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -547,11 +592,11 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
547
592
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
548
593
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
549
594
|
unknown: "unknown";
|
|
595
|
+
continue: "continue";
|
|
550
596
|
openai: "openai";
|
|
551
597
|
claude: "claude";
|
|
552
598
|
gemini: "gemini";
|
|
553
599
|
cursor: "cursor";
|
|
554
|
-
continue: "continue";
|
|
555
600
|
cody: "cody";
|
|
556
601
|
"generic-mcp": "generic-mcp";
|
|
557
602
|
"ext-apps": "ext-apps";
|
|
@@ -614,6 +659,14 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
614
659
|
defaultTtlMs: number;
|
|
615
660
|
password?: string | undefined;
|
|
616
661
|
}>>]>>;
|
|
662
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
663
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
664
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
665
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
666
|
+
}, import("zod/v4/core").$strip>>;
|
|
667
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
668
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
669
|
+
}, import("zod/v4/core").$strip>>;
|
|
617
670
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
618
671
|
}, import("zod/v4/core").$strip>]>>;
|
|
619
672
|
distributedMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodBoolean, import("@frontmcp/lazy-zod").ZodLiteral<"auto">]>>>;
|
|
@@ -683,7 +736,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
683
736
|
customOnly: boolean;
|
|
684
737
|
mappings?: {
|
|
685
738
|
pattern: string | RegExp;
|
|
686
|
-
platform: "unknown" | "
|
|
739
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
687
740
|
}[] | undefined;
|
|
688
741
|
} | undefined;
|
|
689
742
|
persistence?: false | {
|
|
@@ -713,6 +766,14 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
713
766
|
url?: string | undefined;
|
|
714
767
|
token?: string | undefined;
|
|
715
768
|
} | undefined;
|
|
769
|
+
sqlite?: {
|
|
770
|
+
ttlCleanupIntervalMs: number;
|
|
771
|
+
walMode: boolean;
|
|
772
|
+
path?: string | undefined;
|
|
773
|
+
encryption?: {
|
|
774
|
+
secret: string;
|
|
775
|
+
} | undefined;
|
|
776
|
+
} | undefined;
|
|
716
777
|
} | undefined;
|
|
717
778
|
providerCaching?: boolean | undefined;
|
|
718
779
|
eventStore?: {
|
|
@@ -761,7 +822,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
761
822
|
customOnly: boolean;
|
|
762
823
|
mappings?: {
|
|
763
824
|
pattern: string | RegExp;
|
|
764
|
-
platform: "unknown" | "
|
|
825
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
765
826
|
}[] | undefined;
|
|
766
827
|
} | undefined;
|
|
767
828
|
persistence?: false | {
|
|
@@ -791,6 +852,14 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
791
852
|
url?: string | undefined;
|
|
792
853
|
token?: string | undefined;
|
|
793
854
|
} | undefined;
|
|
855
|
+
sqlite?: {
|
|
856
|
+
ttlCleanupIntervalMs: number;
|
|
857
|
+
walMode: boolean;
|
|
858
|
+
path?: string | undefined;
|
|
859
|
+
encryption?: {
|
|
860
|
+
secret: string;
|
|
861
|
+
} | undefined;
|
|
862
|
+
} | undefined;
|
|
794
863
|
} | undefined;
|
|
795
864
|
providerCaching?: boolean | undefined;
|
|
796
865
|
eventStore?: {
|
|
@@ -961,7 +1030,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
961
1030
|
}, import("zod/v4/core").$strip>>;
|
|
962
1031
|
}, import("zod/v4/core").$strip>>;
|
|
963
1032
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
964
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
1033
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
965
1034
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
966
1035
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
967
1036
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -972,7 +1041,17 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
972
1041
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
973
1042
|
}, import("zod/v4/core").$strip>>;
|
|
974
1043
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
975
|
-
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
|
+
}>>;
|
|
976
1055
|
}, import("zod/v4/core").$strip>>;
|
|
977
1056
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
978
1057
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -1133,6 +1212,21 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
1133
1212
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
1134
1213
|
}, import("zod/v4/core").$strip>>;
|
|
1135
1214
|
}, import("zod/v4/core").$strip>>;
|
|
1215
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1216
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
1217
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
1218
|
+
format: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"prometheus">, import("@frontmcp/lazy-zod").ZodLiteral<"json">]>>>;
|
|
1219
|
+
auth: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"public">, import("@frontmcp/lazy-zod").ZodLiteral<"token">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
1220
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
1221
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
1222
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
1223
|
+
include: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"process">, import("@frontmcp/lazy-zod").ZodLiteral<"tools">, import("@frontmcp/lazy-zod").ZodLiteral<"resources">, import("@frontmcp/lazy-zod").ZodLiteral<"http">, import("@frontmcp/lazy-zod").ZodLiteral<"storage">, import("@frontmcp/lazy-zod").ZodLiteral<"skills">, import("@frontmcp/lazy-zod").ZodLiteral<"auth">, import("@frontmcp/lazy-zod").ZodLiteral<"sessions">]>>>;
|
|
1224
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1225
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1226
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1227
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1228
|
+
}, import("zod/v4/core").$strip>>;
|
|
1229
|
+
}, import("zod/v4/core").$strip>>;
|
|
1136
1230
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1137
1231
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
1138
1232
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -1237,6 +1331,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1237
1331
|
}>>;
|
|
1238
1332
|
}, import("zod/v4/core").$strip>>>;
|
|
1239
1333
|
}, import("zod/v4/core").$strip>;
|
|
1334
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1240
1335
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1241
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>>>>>;
|
|
1242
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>>>>>;
|
|
@@ -1264,6 +1359,22 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1264
1359
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
1265
1360
|
}, import("zod/v4/core").$strip>>;
|
|
1266
1361
|
}, import("zod/v4/core").$strip>>;
|
|
1362
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
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>>>;
|
|
1267
1378
|
}, import("zod/v4/core").$strip>>;
|
|
1268
1379
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
1269
1380
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -1348,11 +1459,11 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1348
1459
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
1349
1460
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
1350
1461
|
unknown: "unknown";
|
|
1462
|
+
continue: "continue";
|
|
1351
1463
|
openai: "openai";
|
|
1352
1464
|
claude: "claude";
|
|
1353
1465
|
gemini: "gemini";
|
|
1354
1466
|
cursor: "cursor";
|
|
1355
|
-
continue: "continue";
|
|
1356
1467
|
cody: "cody";
|
|
1357
1468
|
"generic-mcp": "generic-mcp";
|
|
1358
1469
|
"ext-apps": "ext-apps";
|
|
@@ -1415,6 +1526,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1415
1526
|
defaultTtlMs: number;
|
|
1416
1527
|
password?: string | undefined;
|
|
1417
1528
|
}>>]>>;
|
|
1529
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1530
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1531
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1532
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
1533
|
+
}, import("zod/v4/core").$strip>>;
|
|
1534
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
1535
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
1536
|
+
}, import("zod/v4/core").$strip>>;
|
|
1418
1537
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
1419
1538
|
}, import("zod/v4/core").$strip>]>>;
|
|
1420
1539
|
distributedMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodBoolean, import("@frontmcp/lazy-zod").ZodLiteral<"auto">]>>>;
|
|
@@ -1484,7 +1603,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1484
1603
|
customOnly: boolean;
|
|
1485
1604
|
mappings?: {
|
|
1486
1605
|
pattern: string | RegExp;
|
|
1487
|
-
platform: "unknown" | "
|
|
1606
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
1488
1607
|
}[] | undefined;
|
|
1489
1608
|
} | undefined;
|
|
1490
1609
|
persistence?: false | {
|
|
@@ -1514,6 +1633,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1514
1633
|
url?: string | undefined;
|
|
1515
1634
|
token?: string | undefined;
|
|
1516
1635
|
} | undefined;
|
|
1636
|
+
sqlite?: {
|
|
1637
|
+
ttlCleanupIntervalMs: number;
|
|
1638
|
+
walMode: boolean;
|
|
1639
|
+
path?: string | undefined;
|
|
1640
|
+
encryption?: {
|
|
1641
|
+
secret: string;
|
|
1642
|
+
} | undefined;
|
|
1643
|
+
} | undefined;
|
|
1517
1644
|
} | undefined;
|
|
1518
1645
|
providerCaching?: boolean | undefined;
|
|
1519
1646
|
eventStore?: {
|
|
@@ -1562,7 +1689,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1562
1689
|
customOnly: boolean;
|
|
1563
1690
|
mappings?: {
|
|
1564
1691
|
pattern: string | RegExp;
|
|
1565
|
-
platform: "unknown" | "
|
|
1692
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
1566
1693
|
}[] | undefined;
|
|
1567
1694
|
} | undefined;
|
|
1568
1695
|
persistence?: false | {
|
|
@@ -1592,6 +1719,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1592
1719
|
url?: string | undefined;
|
|
1593
1720
|
token?: string | undefined;
|
|
1594
1721
|
} | undefined;
|
|
1722
|
+
sqlite?: {
|
|
1723
|
+
ttlCleanupIntervalMs: number;
|
|
1724
|
+
walMode: boolean;
|
|
1725
|
+
path?: string | undefined;
|
|
1726
|
+
encryption?: {
|
|
1727
|
+
secret: string;
|
|
1728
|
+
} | undefined;
|
|
1729
|
+
} | undefined;
|
|
1595
1730
|
} | undefined;
|
|
1596
1731
|
providerCaching?: boolean | undefined;
|
|
1597
1732
|
eventStore?: {
|
|
@@ -1762,7 +1897,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1762
1897
|
}, import("zod/v4/core").$strip>>;
|
|
1763
1898
|
}, import("zod/v4/core").$strip>>;
|
|
1764
1899
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1765
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
1900
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1766
1901
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1767
1902
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
1768
1903
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1773,7 +1908,17 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1773
1908
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
1774
1909
|
}, import("zod/v4/core").$strip>>;
|
|
1775
1910
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1776
|
-
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
|
+
}>>;
|
|
1777
1922
|
}, import("zod/v4/core").$strip>>;
|
|
1778
1923
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1779
1924
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -1934,6 +2079,21 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1934
2079
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
1935
2080
|
}, import("zod/v4/core").$strip>>;
|
|
1936
2081
|
}, import("zod/v4/core").$strip>>;
|
|
2082
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2083
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
2084
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2085
|
+
format: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"prometheus">, import("@frontmcp/lazy-zod").ZodLiteral<"json">]>>>;
|
|
2086
|
+
auth: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"public">, import("@frontmcp/lazy-zod").ZodLiteral<"token">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2087
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
2088
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
2089
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2090
|
+
include: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"process">, import("@frontmcp/lazy-zod").ZodLiteral<"tools">, import("@frontmcp/lazy-zod").ZodLiteral<"resources">, import("@frontmcp/lazy-zod").ZodLiteral<"http">, import("@frontmcp/lazy-zod").ZodLiteral<"storage">, import("@frontmcp/lazy-zod").ZodLiteral<"skills">, import("@frontmcp/lazy-zod").ZodLiteral<"auth">, import("@frontmcp/lazy-zod").ZodLiteral<"sessions">]>>>;
|
|
2091
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2092
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2093
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2094
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2095
|
+
}, import("zod/v4/core").$strip>>;
|
|
2096
|
+
}, import("zod/v4/core").$strip>>;
|
|
1937
2097
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1938
2098
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
1939
2099
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -2061,6 +2221,76 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2061
2221
|
}, import("zod/v4/core").$strip>>;
|
|
2062
2222
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
2063
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>>;
|
|
2064
2294
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2065
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>>]>>;
|
|
2066
2296
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -2078,6 +2308,74 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2078
2308
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2079
2309
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2080
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>>;
|
|
2081
2379
|
}, import("zod/v4/core").$strip>]>>;
|
|
2082
2380
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2083
2381
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -2102,6 +2400,8 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2102
2400
|
format: "format";
|
|
2103
2401
|
strict: "strict";
|
|
2104
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>>;
|
|
2105
2405
|
}, import("zod/v4/core").$strip>>;
|
|
2106
2406
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2107
2407
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -2155,6 +2455,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2155
2455
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2156
2456
|
}, import("zod/v4/core").$strip>>;
|
|
2157
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>>>;
|
|
2158
2466
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
2159
2467
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
2160
2468
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -2174,6 +2482,74 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2174
2482
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2175
2483
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2176
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>>;
|
|
2177
2553
|
}, import("zod/v4/core").$strip>]>>;
|
|
2178
2554
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2179
2555
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -2198,6 +2574,8 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2198
2574
|
format: "format";
|
|
2199
2575
|
strict: "strict";
|
|
2200
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>>;
|
|
2201
2579
|
}, import("zod/v4/core").$strip>>;
|
|
2202
2580
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2203
2581
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -2251,6 +2629,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2251
2629
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2252
2630
|
}, import("zod/v4/core").$strip>>;
|
|
2253
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>>>;
|
|
2254
2640
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
2255
2641
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2256
2642
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -2291,6 +2677,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2291
2677
|
}>>;
|
|
2292
2678
|
}, import("zod/v4/core").$strip>>>;
|
|
2293
2679
|
}, import("zod/v4/core").$strip>;
|
|
2680
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2294
2681
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2295
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>>>>>;
|
|
2296
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>>>>>;
|
|
@@ -2318,6 +2705,22 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2318
2705
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2319
2706
|
}, import("zod/v4/core").$strip>>;
|
|
2320
2707
|
}, import("zod/v4/core").$strip>>;
|
|
2708
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
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>>>;
|
|
2321
2724
|
}, import("zod/v4/core").$strip>>;
|
|
2322
2725
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
2323
2726
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -2402,11 +2805,11 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2402
2805
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
2403
2806
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
2404
2807
|
unknown: "unknown";
|
|
2808
|
+
continue: "continue";
|
|
2405
2809
|
openai: "openai";
|
|
2406
2810
|
claude: "claude";
|
|
2407
2811
|
gemini: "gemini";
|
|
2408
2812
|
cursor: "cursor";
|
|
2409
|
-
continue: "continue";
|
|
2410
2813
|
cody: "cody";
|
|
2411
2814
|
"generic-mcp": "generic-mcp";
|
|
2412
2815
|
"ext-apps": "ext-apps";
|
|
@@ -2469,6 +2872,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2469
2872
|
defaultTtlMs: number;
|
|
2470
2873
|
password?: string | undefined;
|
|
2471
2874
|
}>>]>>;
|
|
2875
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2876
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2877
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2878
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2879
|
+
}, import("zod/v4/core").$strip>>;
|
|
2880
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2881
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
2882
|
+
}, import("zod/v4/core").$strip>>;
|
|
2472
2883
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2473
2884
|
}, import("zod/v4/core").$strip>]>>;
|
|
2474
2885
|
distributedMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodBoolean, import("@frontmcp/lazy-zod").ZodLiteral<"auto">]>>>;
|
|
@@ -2538,7 +2949,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2538
2949
|
customOnly: boolean;
|
|
2539
2950
|
mappings?: {
|
|
2540
2951
|
pattern: string | RegExp;
|
|
2541
|
-
platform: "unknown" | "
|
|
2952
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
2542
2953
|
}[] | undefined;
|
|
2543
2954
|
} | undefined;
|
|
2544
2955
|
persistence?: false | {
|
|
@@ -2568,6 +2979,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2568
2979
|
url?: string | undefined;
|
|
2569
2980
|
token?: string | undefined;
|
|
2570
2981
|
} | undefined;
|
|
2982
|
+
sqlite?: {
|
|
2983
|
+
ttlCleanupIntervalMs: number;
|
|
2984
|
+
walMode: boolean;
|
|
2985
|
+
path?: string | undefined;
|
|
2986
|
+
encryption?: {
|
|
2987
|
+
secret: string;
|
|
2988
|
+
} | undefined;
|
|
2989
|
+
} | undefined;
|
|
2571
2990
|
} | undefined;
|
|
2572
2991
|
providerCaching?: boolean | undefined;
|
|
2573
2992
|
eventStore?: {
|
|
@@ -2616,7 +3035,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2616
3035
|
customOnly: boolean;
|
|
2617
3036
|
mappings?: {
|
|
2618
3037
|
pattern: string | RegExp;
|
|
2619
|
-
platform: "unknown" | "
|
|
3038
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
2620
3039
|
}[] | undefined;
|
|
2621
3040
|
} | undefined;
|
|
2622
3041
|
persistence?: false | {
|
|
@@ -2646,6 +3065,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2646
3065
|
url?: string | undefined;
|
|
2647
3066
|
token?: string | undefined;
|
|
2648
3067
|
} | undefined;
|
|
3068
|
+
sqlite?: {
|
|
3069
|
+
ttlCleanupIntervalMs: number;
|
|
3070
|
+
walMode: boolean;
|
|
3071
|
+
path?: string | undefined;
|
|
3072
|
+
encryption?: {
|
|
3073
|
+
secret: string;
|
|
3074
|
+
} | undefined;
|
|
3075
|
+
} | undefined;
|
|
2649
3076
|
} | undefined;
|
|
2650
3077
|
providerCaching?: boolean | undefined;
|
|
2651
3078
|
eventStore?: {
|
|
@@ -2816,7 +3243,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2816
3243
|
}, import("zod/v4/core").$strip>>;
|
|
2817
3244
|
}, import("zod/v4/core").$strip>>;
|
|
2818
3245
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2819
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
3246
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2820
3247
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2821
3248
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2822
3249
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2827,7 +3254,17 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2827
3254
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
2828
3255
|
}, import("zod/v4/core").$strip>>;
|
|
2829
3256
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2830
|
-
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
|
+
}>>;
|
|
2831
3268
|
}, import("zod/v4/core").$strip>>;
|
|
2832
3269
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2833
3270
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -2988,6 +3425,21 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2988
3425
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2989
3426
|
}, import("zod/v4/core").$strip>>;
|
|
2990
3427
|
}, import("zod/v4/core").$strip>>;
|
|
3428
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3429
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
3430
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3431
|
+
format: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"prometheus">, import("@frontmcp/lazy-zod").ZodLiteral<"json">]>>>;
|
|
3432
|
+
auth: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"public">, import("@frontmcp/lazy-zod").ZodLiteral<"token">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3433
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
3434
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
3435
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3436
|
+
include: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"process">, import("@frontmcp/lazy-zod").ZodLiteral<"tools">, import("@frontmcp/lazy-zod").ZodLiteral<"resources">, import("@frontmcp/lazy-zod").ZodLiteral<"http">, import("@frontmcp/lazy-zod").ZodLiteral<"storage">, import("@frontmcp/lazy-zod").ZodLiteral<"skills">, import("@frontmcp/lazy-zod").ZodLiteral<"auth">, import("@frontmcp/lazy-zod").ZodLiteral<"sessions">]>>>;
|
|
3437
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3438
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3439
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3440
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3441
|
+
}, import("zod/v4/core").$strip>>;
|
|
3442
|
+
}, import("zod/v4/core").$strip>>;
|
|
2991
3443
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2992
3444
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
2993
3445
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -3115,6 +3567,76 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3115
3567
|
}, import("zod/v4/core").$strip>>;
|
|
3116
3568
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
3117
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>>;
|
|
3118
3640
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3119
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>>]>>;
|
|
3120
3642
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -3132,6 +3654,74 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3132
3654
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3133
3655
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3134
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>>;
|
|
3135
3725
|
}, import("zod/v4/core").$strip>]>>;
|
|
3136
3726
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3137
3727
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -3156,6 +3746,8 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3156
3746
|
format: "format";
|
|
3157
3747
|
strict: "strict";
|
|
3158
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>>;
|
|
3159
3751
|
}, import("zod/v4/core").$strip>>;
|
|
3160
3752
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3161
3753
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -3209,6 +3801,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3209
3801
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3210
3802
|
}, import("zod/v4/core").$strip>>;
|
|
3211
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>>>;
|
|
3212
3812
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
3213
3813
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
3214
3814
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -3228,6 +3828,74 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3228
3828
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3229
3829
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3230
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>>;
|
|
3231
3899
|
}, import("zod/v4/core").$strip>]>>;
|
|
3232
3900
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3233
3901
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -3252,6 +3920,8 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3252
3920
|
format: "format";
|
|
3253
3921
|
strict: "strict";
|
|
3254
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>>;
|
|
3255
3925
|
}, import("zod/v4/core").$strip>>;
|
|
3256
3926
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3257
3927
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -3305,6 +3975,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
3305
3975
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3306
3976
|
}, import("zod/v4/core").$strip>>;
|
|
3307
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>>>;
|
|
3308
3986
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
3309
3987
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3310
3988
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -3342,6 +4020,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3342
4020
|
}>>;
|
|
3343
4021
|
}, import("zod/v4/core").$strip>>>;
|
|
3344
4022
|
}, import("zod/v4/core").$strip>;
|
|
4023
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3345
4024
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3346
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>>>>>;
|
|
3347
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>>>>>;
|
|
@@ -3369,6 +4048,22 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3369
4048
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3370
4049
|
}, import("zod/v4/core").$strip>>;
|
|
3371
4050
|
}, import("zod/v4/core").$strip>>;
|
|
4051
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
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>>>;
|
|
3372
4067
|
}, import("zod/v4/core").$strip>>;
|
|
3373
4068
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
3374
4069
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -3453,11 +4148,11 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3453
4148
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
3454
4149
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
3455
4150
|
unknown: "unknown";
|
|
4151
|
+
continue: "continue";
|
|
3456
4152
|
openai: "openai";
|
|
3457
4153
|
claude: "claude";
|
|
3458
4154
|
gemini: "gemini";
|
|
3459
4155
|
cursor: "cursor";
|
|
3460
|
-
continue: "continue";
|
|
3461
4156
|
cody: "cody";
|
|
3462
4157
|
"generic-mcp": "generic-mcp";
|
|
3463
4158
|
"ext-apps": "ext-apps";
|
|
@@ -3520,6 +4215,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3520
4215
|
defaultTtlMs: number;
|
|
3521
4216
|
password?: string | undefined;
|
|
3522
4217
|
}>>]>>;
|
|
4218
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4219
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4220
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4221
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
4222
|
+
}, import("zod/v4/core").$strip>>;
|
|
4223
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4224
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
4225
|
+
}, import("zod/v4/core").$strip>>;
|
|
3523
4226
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3524
4227
|
}, import("zod/v4/core").$strip>]>>;
|
|
3525
4228
|
distributedMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodBoolean, import("@frontmcp/lazy-zod").ZodLiteral<"auto">]>>>;
|
|
@@ -3589,7 +4292,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3589
4292
|
customOnly: boolean;
|
|
3590
4293
|
mappings?: {
|
|
3591
4294
|
pattern: string | RegExp;
|
|
3592
|
-
platform: "unknown" | "
|
|
4295
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
3593
4296
|
}[] | undefined;
|
|
3594
4297
|
} | undefined;
|
|
3595
4298
|
persistence?: false | {
|
|
@@ -3619,6 +4322,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3619
4322
|
url?: string | undefined;
|
|
3620
4323
|
token?: string | undefined;
|
|
3621
4324
|
} | undefined;
|
|
4325
|
+
sqlite?: {
|
|
4326
|
+
ttlCleanupIntervalMs: number;
|
|
4327
|
+
walMode: boolean;
|
|
4328
|
+
path?: string | undefined;
|
|
4329
|
+
encryption?: {
|
|
4330
|
+
secret: string;
|
|
4331
|
+
} | undefined;
|
|
4332
|
+
} | undefined;
|
|
3622
4333
|
} | undefined;
|
|
3623
4334
|
providerCaching?: boolean | undefined;
|
|
3624
4335
|
eventStore?: {
|
|
@@ -3667,7 +4378,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3667
4378
|
customOnly: boolean;
|
|
3668
4379
|
mappings?: {
|
|
3669
4380
|
pattern: string | RegExp;
|
|
3670
|
-
platform: "unknown" | "
|
|
4381
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
3671
4382
|
}[] | undefined;
|
|
3672
4383
|
} | undefined;
|
|
3673
4384
|
persistence?: false | {
|
|
@@ -3697,6 +4408,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3697
4408
|
url?: string | undefined;
|
|
3698
4409
|
token?: string | undefined;
|
|
3699
4410
|
} | undefined;
|
|
4411
|
+
sqlite?: {
|
|
4412
|
+
ttlCleanupIntervalMs: number;
|
|
4413
|
+
walMode: boolean;
|
|
4414
|
+
path?: string | undefined;
|
|
4415
|
+
encryption?: {
|
|
4416
|
+
secret: string;
|
|
4417
|
+
} | undefined;
|
|
4418
|
+
} | undefined;
|
|
3700
4419
|
} | undefined;
|
|
3701
4420
|
providerCaching?: boolean | undefined;
|
|
3702
4421
|
eventStore?: {
|
|
@@ -3867,7 +4586,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3867
4586
|
}, import("zod/v4/core").$strip>>;
|
|
3868
4587
|
}, import("zod/v4/core").$strip>>;
|
|
3869
4588
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3870
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
4589
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3871
4590
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3872
4591
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
3873
4592
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -3878,7 +4597,17 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3878
4597
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
3879
4598
|
}, import("zod/v4/core").$strip>>;
|
|
3880
4599
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3881
|
-
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
|
+
}>>;
|
|
3882
4611
|
}, import("zod/v4/core").$strip>>;
|
|
3883
4612
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3884
4613
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -4039,8 +4768,23 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4039
4768
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4040
4769
|
}, import("zod/v4/core").$strip>>;
|
|
4041
4770
|
}, import("zod/v4/core").$strip>>;
|
|
4042
|
-
|
|
4043
|
-
enabled: import("@frontmcp/lazy-zod").ZodBoolean
|
|
4771
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4772
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
4773
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4774
|
+
format: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"prometheus">, import("@frontmcp/lazy-zod").ZodLiteral<"json">]>>>;
|
|
4775
|
+
auth: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"public">, import("@frontmcp/lazy-zod").ZodLiteral<"token">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
4776
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
4777
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
4778
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4779
|
+
include: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"process">, import("@frontmcp/lazy-zod").ZodLiteral<"tools">, import("@frontmcp/lazy-zod").ZodLiteral<"resources">, import("@frontmcp/lazy-zod").ZodLiteral<"http">, import("@frontmcp/lazy-zod").ZodLiteral<"storage">, import("@frontmcp/lazy-zod").ZodLiteral<"skills">, import("@frontmcp/lazy-zod").ZodLiteral<"auth">, import("@frontmcp/lazy-zod").ZodLiteral<"sessions">]>>>;
|
|
4780
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4781
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4782
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4783
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4784
|
+
}, import("zod/v4/core").$strip>>;
|
|
4785
|
+
}, import("zod/v4/core").$strip>>;
|
|
4786
|
+
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4787
|
+
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
4044
4788
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
4045
4789
|
}, import("zod/v4/core").$strip>>;
|
|
4046
4790
|
authorities: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -4166,6 +4910,76 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4166
4910
|
}, import("zod/v4/core").$strip>>;
|
|
4167
4911
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
4168
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>>;
|
|
4169
4983
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4170
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>>]>>;
|
|
4171
4985
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -4183,6 +4997,74 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4183
4997
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4184
4998
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4185
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>;
|
|
5009
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
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>>;
|
|
4186
5068
|
}, import("zod/v4/core").$strip>]>>;
|
|
4187
5069
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4188
5070
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -4207,6 +5089,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4207
5089
|
format: "format";
|
|
4208
5090
|
strict: "strict";
|
|
4209
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>>;
|
|
4210
5094
|
}, import("zod/v4/core").$strip>>;
|
|
4211
5095
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4212
5096
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -4260,6 +5144,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4260
5144
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
4261
5145
|
}, import("zod/v4/core").$strip>>;
|
|
4262
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>>>;
|
|
4263
5155
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
4264
5156
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
4265
5157
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -4279,6 +5171,74 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4279
5171
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4280
5172
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4281
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>>;
|
|
4282
5242
|
}, import("zod/v4/core").$strip>]>>;
|
|
4283
5243
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4284
5244
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -4303,6 +5263,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4303
5263
|
format: "format";
|
|
4304
5264
|
strict: "strict";
|
|
4305
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>>;
|
|
4306
5268
|
}, import("zod/v4/core").$strip>>;
|
|
4307
5269
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4308
5270
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -4356,6 +5318,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4356
5318
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
4357
5319
|
}, import("zod/v4/core").$strip>>;
|
|
4358
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>>>;
|
|
4359
5329
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
4360
5330
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4361
5331
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -4391,6 +5361,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4391
5361
|
}>>;
|
|
4392
5362
|
}, import("zod/v4/core").$strip>>>;
|
|
4393
5363
|
}, import("zod/v4/core").$strip>;
|
|
5364
|
+
__sourceDir: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4394
5365
|
instructions: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4395
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>>>>>;
|
|
4396
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>>>>>;
|
|
@@ -4418,6 +5389,22 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4418
5389
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4419
5390
|
}, import("zod/v4/core").$strip>>;
|
|
4420
5391
|
}, import("zod/v4/core").$strip>>;
|
|
5392
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
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>>>;
|
|
4421
5408
|
}, import("zod/v4/core").$strip>>;
|
|
4422
5409
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
4423
5410
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -4502,11 +5489,11 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4502
5489
|
pattern: import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodString, import("zod").ZodCustom<RegExp, RegExp>]>;
|
|
4503
5490
|
platform: import("@frontmcp/lazy-zod").ZodEnum<{
|
|
4504
5491
|
unknown: "unknown";
|
|
5492
|
+
continue: "continue";
|
|
4505
5493
|
openai: "openai";
|
|
4506
5494
|
claude: "claude";
|
|
4507
5495
|
gemini: "gemini";
|
|
4508
5496
|
cursor: "cursor";
|
|
4509
|
-
continue: "continue";
|
|
4510
5497
|
cody: "cody";
|
|
4511
5498
|
"generic-mcp": "generic-mcp";
|
|
4512
5499
|
"ext-apps": "ext-apps";
|
|
@@ -4569,6 +5556,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4569
5556
|
defaultTtlMs: number;
|
|
4570
5557
|
password?: string | undefined;
|
|
4571
5558
|
}>>]>>;
|
|
5559
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5560
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5561
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5562
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
5563
|
+
}, import("zod/v4/core").$strip>>;
|
|
5564
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5565
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
5566
|
+
}, import("zod/v4/core").$strip>>;
|
|
4572
5567
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
4573
5568
|
}, import("zod/v4/core").$strip>]>>;
|
|
4574
5569
|
distributedMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodBoolean, import("@frontmcp/lazy-zod").ZodLiteral<"auto">]>>>;
|
|
@@ -4638,7 +5633,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4638
5633
|
customOnly: boolean;
|
|
4639
5634
|
mappings?: {
|
|
4640
5635
|
pattern: string | RegExp;
|
|
4641
|
-
platform: "unknown" | "
|
|
5636
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
4642
5637
|
}[] | undefined;
|
|
4643
5638
|
} | undefined;
|
|
4644
5639
|
persistence?: false | {
|
|
@@ -4668,6 +5663,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4668
5663
|
url?: string | undefined;
|
|
4669
5664
|
token?: string | undefined;
|
|
4670
5665
|
} | undefined;
|
|
5666
|
+
sqlite?: {
|
|
5667
|
+
ttlCleanupIntervalMs: number;
|
|
5668
|
+
walMode: boolean;
|
|
5669
|
+
path?: string | undefined;
|
|
5670
|
+
encryption?: {
|
|
5671
|
+
secret: string;
|
|
5672
|
+
} | undefined;
|
|
5673
|
+
} | undefined;
|
|
4671
5674
|
} | undefined;
|
|
4672
5675
|
providerCaching?: boolean | undefined;
|
|
4673
5676
|
eventStore?: {
|
|
@@ -4716,7 +5719,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4716
5719
|
customOnly: boolean;
|
|
4717
5720
|
mappings?: {
|
|
4718
5721
|
pattern: string | RegExp;
|
|
4719
|
-
platform: "unknown" | "
|
|
5722
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
4720
5723
|
}[] | undefined;
|
|
4721
5724
|
} | undefined;
|
|
4722
5725
|
persistence?: false | {
|
|
@@ -4746,6 +5749,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4746
5749
|
url?: string | undefined;
|
|
4747
5750
|
token?: string | undefined;
|
|
4748
5751
|
} | undefined;
|
|
5752
|
+
sqlite?: {
|
|
5753
|
+
ttlCleanupIntervalMs: number;
|
|
5754
|
+
walMode: boolean;
|
|
5755
|
+
path?: string | undefined;
|
|
5756
|
+
encryption?: {
|
|
5757
|
+
secret: string;
|
|
5758
|
+
} | undefined;
|
|
5759
|
+
} | undefined;
|
|
4749
5760
|
} | undefined;
|
|
4750
5761
|
providerCaching?: boolean | undefined;
|
|
4751
5762
|
eventStore?: {
|
|
@@ -4916,7 +5927,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4916
5927
|
}, import("zod/v4/core").$strip>>;
|
|
4917
5928
|
}, import("zod/v4/core").$strip>>;
|
|
4918
5929
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4919
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
5930
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4920
5931
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4921
5932
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
4922
5933
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -4927,7 +5938,17 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4927
5938
|
cdnOverrides: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
4928
5939
|
}, import("zod/v4/core").$strip>>;
|
|
4929
5940
|
output: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4930
|
-
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
|
+
}>>;
|
|
4931
5952
|
}, import("zod/v4/core").$strip>>;
|
|
4932
5953
|
jobs: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4933
5954
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
@@ -5088,6 +6109,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5088
6109
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5089
6110
|
}, import("zod/v4/core").$strip>>;
|
|
5090
6111
|
}, import("zod/v4/core").$strip>>;
|
|
6112
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6113
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
6114
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
6115
|
+
format: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"prometheus">, import("@frontmcp/lazy-zod").ZodLiteral<"json">]>>>;
|
|
6116
|
+
auth: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"public">, import("@frontmcp/lazy-zod").ZodLiteral<"token">, import("@frontmcp/lazy-zod").ZodObject<{
|
|
6117
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
6118
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
6119
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
6120
|
+
include: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodLiteral<"process">, import("@frontmcp/lazy-zod").ZodLiteral<"tools">, import("@frontmcp/lazy-zod").ZodLiteral<"resources">, import("@frontmcp/lazy-zod").ZodLiteral<"http">, import("@frontmcp/lazy-zod").ZodLiteral<"storage">, import("@frontmcp/lazy-zod").ZodLiteral<"skills">, import("@frontmcp/lazy-zod").ZodLiteral<"auth">, import("@frontmcp/lazy-zod").ZodLiteral<"sessions">]>>>;
|
|
6121
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
6122
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6123
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6124
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
6125
|
+
}, import("zod/v4/core").$strip>>;
|
|
6126
|
+
}, import("zod/v4/core").$strip>>;
|
|
5091
6127
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5092
6128
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
5093
6129
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -5215,6 +6251,76 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5215
6251
|
}, import("zod/v4/core").$strip>>;
|
|
5216
6252
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"transparent">;
|
|
5217
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>>;
|
|
5218
6324
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5219
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>>]>>;
|
|
5220
6326
|
jwks: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -5232,6 +6338,74 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5232
6338
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5233
6339
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5234
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>>;
|
|
5235
6409
|
}, import("zod/v4/core").$strip>]>>;
|
|
5236
6410
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5237
6411
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -5256,6 +6430,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5256
6430
|
format: "format";
|
|
5257
6431
|
strict: "strict";
|
|
5258
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>>;
|
|
5259
6435
|
}, import("zod/v4/core").$strip>>;
|
|
5260
6436
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5261
6437
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -5309,6 +6485,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5309
6485
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5310
6486
|
}, import("zod/v4/core").$strip>>;
|
|
5311
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>>>;
|
|
5312
6496
|
mode: import("@frontmcp/lazy-zod").ZodLiteral<"local">;
|
|
5313
6497
|
}, import("zod/v4/core").$strip>, import("@frontmcp/lazy-zod").ZodObject<{
|
|
5314
6498
|
local: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
@@ -5328,6 +6512,74 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5328
6512
|
keyPrefix: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5329
6513
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5330
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>>;
|
|
5331
6583
|
}, import("zod/v4/core").$strip>]>>;
|
|
5332
6584
|
allowDefaultPublic: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5333
6585
|
anonymousScopes: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -5352,6 +6604,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5352
6604
|
format: "format";
|
|
5353
6605
|
strict: "strict";
|
|
5354
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>>;
|
|
5355
6609
|
}, import("zod/v4/core").$strip>>;
|
|
5356
6610
|
refresh: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5357
6611
|
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
@@ -5405,6 +6659,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5405
6659
|
maxRedirects: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
5406
6660
|
}, import("zod/v4/core").$strip>>;
|
|
5407
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>>>;
|
|
5408
6670
|
provider: import("@frontmcp/lazy-zod").ZodString;
|
|
5409
6671
|
clientId: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
5410
6672
|
clientSecret: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
@@ -5459,7 +6721,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5459
6721
|
customOnly: boolean;
|
|
5460
6722
|
mappings?: {
|
|
5461
6723
|
pattern: string | RegExp;
|
|
5462
|
-
platform: "unknown" | "
|
|
6724
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
5463
6725
|
}[] | undefined;
|
|
5464
6726
|
} | undefined;
|
|
5465
6727
|
persistence?: false | {
|
|
@@ -5489,6 +6751,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5489
6751
|
url?: string | undefined;
|
|
5490
6752
|
token?: string | undefined;
|
|
5491
6753
|
} | undefined;
|
|
6754
|
+
sqlite?: {
|
|
6755
|
+
ttlCleanupIntervalMs: number;
|
|
6756
|
+
walMode: boolean;
|
|
6757
|
+
path?: string | undefined;
|
|
6758
|
+
encryption?: {
|
|
6759
|
+
secret: string;
|
|
6760
|
+
} | undefined;
|
|
6761
|
+
} | undefined;
|
|
5492
6762
|
} | undefined;
|
|
5493
6763
|
providerCaching?: boolean | undefined;
|
|
5494
6764
|
eventStore?: {
|
|
@@ -5524,10 +6794,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5524
6794
|
} | undefined;
|
|
5525
6795
|
};
|
|
5526
6796
|
splitByApp: false;
|
|
6797
|
+
__sourceDir?: string | undefined;
|
|
5527
6798
|
instructions?: string | undefined;
|
|
5528
6799
|
http?: {
|
|
5529
6800
|
port: number;
|
|
5530
6801
|
entryPath: string;
|
|
6802
|
+
bodyLimit: string | number;
|
|
5531
6803
|
hostFactory?: any;
|
|
5532
6804
|
socketPath?: string | undefined;
|
|
5533
6805
|
cors?: false | {
|
|
@@ -5544,6 +6816,13 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5544
6816
|
allowedOrigins?: string[] | undefined;
|
|
5545
6817
|
} | undefined;
|
|
5546
6818
|
} | undefined;
|
|
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;
|
|
5547
6826
|
} | undefined;
|
|
5548
6827
|
redis?: {
|
|
5549
6828
|
provider: "redis";
|
|
@@ -5687,9 +6966,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5687
6966
|
} | undefined;
|
|
5688
6967
|
} | undefined;
|
|
5689
6968
|
sqlite?: {
|
|
5690
|
-
path: string;
|
|
5691
6969
|
ttlCleanupIntervalMs: number;
|
|
5692
6970
|
walMode: boolean;
|
|
6971
|
+
path?: string | undefined;
|
|
5693
6972
|
encryption?: {
|
|
5694
6973
|
secret: string;
|
|
5695
6974
|
} | undefined;
|
|
@@ -5698,7 +6977,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5698
6977
|
cdnOverrides?: Record<string, string> | undefined;
|
|
5699
6978
|
} | undefined;
|
|
5700
6979
|
output?: {
|
|
5701
|
-
allowNonFinite
|
|
6980
|
+
allowNonFinite?: boolean | undefined;
|
|
6981
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
6982
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
5702
6983
|
} | undefined;
|
|
5703
6984
|
jobs?: {
|
|
5704
6985
|
enabled: boolean;
|
|
@@ -5812,6 +7093,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5812
7093
|
enabled?: boolean | undefined;
|
|
5813
7094
|
} | undefined;
|
|
5814
7095
|
} | undefined;
|
|
7096
|
+
metrics?: {
|
|
7097
|
+
enabled: boolean;
|
|
7098
|
+
path: string;
|
|
7099
|
+
format: "json" | "prometheus";
|
|
7100
|
+
auth: "token" | "public" | {
|
|
7101
|
+
token: string;
|
|
7102
|
+
};
|
|
7103
|
+
tokenEnv: string;
|
|
7104
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
7105
|
+
process?: {
|
|
7106
|
+
eventLoopLag?: boolean | undefined;
|
|
7107
|
+
fdCount?: boolean | undefined;
|
|
7108
|
+
activeHandles?: boolean | undefined;
|
|
7109
|
+
} | undefined;
|
|
7110
|
+
} | undefined;
|
|
5815
7111
|
channels?: {
|
|
5816
7112
|
enabled: boolean;
|
|
5817
7113
|
defaultMeta?: Record<string, string> | undefined;
|
|
@@ -5921,6 +7217,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5921
7217
|
userInfoEndpoint?: string | undefined;
|
|
5922
7218
|
} | undefined;
|
|
5923
7219
|
} | {
|
|
7220
|
+
requireEmail: boolean;
|
|
7221
|
+
anonymousSubject: string;
|
|
5924
7222
|
tokenStorage: "memory" | {
|
|
5925
7223
|
redis: {
|
|
5926
7224
|
host: string;
|
|
@@ -5931,10 +7229,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5931
7229
|
defaultTtlMs: number;
|
|
5932
7230
|
password?: string | undefined;
|
|
5933
7231
|
};
|
|
7232
|
+
} | {
|
|
7233
|
+
sqlite: {
|
|
7234
|
+
path: string;
|
|
7235
|
+
encryption?: {
|
|
7236
|
+
secret: string;
|
|
7237
|
+
} | undefined;
|
|
7238
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
7239
|
+
walMode?: boolean | undefined;
|
|
7240
|
+
};
|
|
5934
7241
|
};
|
|
5935
7242
|
allowDefaultPublic: boolean;
|
|
5936
7243
|
anonymousScopes: string[];
|
|
5937
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;
|
|
5938
7295
|
local?: {
|
|
5939
7296
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
5940
7297
|
jwks?: {
|
|
@@ -5942,6 +7299,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5942
7299
|
} | undefined;
|
|
5943
7300
|
issuer?: string | undefined;
|
|
5944
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;
|
|
5945
7345
|
publicAccess?: {
|
|
5946
7346
|
tools: string[] | "all";
|
|
5947
7347
|
prompts: string[] | "all";
|
|
@@ -5960,6 +7360,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5960
7360
|
} | undefined;
|
|
5961
7361
|
federatedAuth?: {
|
|
5962
7362
|
stateValidation: "format" | "strict";
|
|
7363
|
+
minProviders?: number | undefined;
|
|
7364
|
+
requiredProviders?: string[] | undefined;
|
|
5963
7365
|
} | undefined;
|
|
5964
7366
|
refresh?: {
|
|
5965
7367
|
enabled: boolean;
|
|
@@ -6003,6 +7405,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6003
7405
|
maxRedirects: number;
|
|
6004
7406
|
} | undefined;
|
|
6005
7407
|
} | undefined;
|
|
7408
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
7409
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
6006
7410
|
} | {
|
|
6007
7411
|
tokenStorage: "memory" | {
|
|
6008
7412
|
redis: {
|
|
@@ -6014,6 +7418,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6014
7418
|
defaultTtlMs: number;
|
|
6015
7419
|
password?: string | undefined;
|
|
6016
7420
|
};
|
|
7421
|
+
} | {
|
|
7422
|
+
sqlite: {
|
|
7423
|
+
path: string;
|
|
7424
|
+
encryption?: {
|
|
7425
|
+
secret: string;
|
|
7426
|
+
} | undefined;
|
|
7427
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
7428
|
+
walMode?: boolean | undefined;
|
|
7429
|
+
};
|
|
6017
7430
|
};
|
|
6018
7431
|
allowDefaultPublic: boolean;
|
|
6019
7432
|
anonymousScopes: string[];
|
|
@@ -6026,6 +7439,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6026
7439
|
} | undefined;
|
|
6027
7440
|
issuer?: string | undefined;
|
|
6028
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;
|
|
6029
7485
|
publicAccess?: {
|
|
6030
7486
|
tools: string[] | "all";
|
|
6031
7487
|
prompts: string[] | "all";
|
|
@@ -6044,6 +7500,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6044
7500
|
} | undefined;
|
|
6045
7501
|
federatedAuth?: {
|
|
6046
7502
|
stateValidation: "format" | "strict";
|
|
7503
|
+
minProviders?: number | undefined;
|
|
7504
|
+
requiredProviders?: string[] | undefined;
|
|
6047
7505
|
} | undefined;
|
|
6048
7506
|
refresh?: {
|
|
6049
7507
|
enabled: boolean;
|
|
@@ -6087,6 +7545,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6087
7545
|
maxRedirects: number;
|
|
6088
7546
|
} | undefined;
|
|
6089
7547
|
} | undefined;
|
|
7548
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
7549
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
6090
7550
|
clientId?: string | undefined;
|
|
6091
7551
|
clientSecret?: string | undefined;
|
|
6092
7552
|
scopes?: string[] | undefined;
|
|
@@ -6139,7 +7599,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6139
7599
|
customOnly: boolean;
|
|
6140
7600
|
mappings?: {
|
|
6141
7601
|
pattern: string | RegExp;
|
|
6142
|
-
platform: "unknown" | "
|
|
7602
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
6143
7603
|
}[] | undefined;
|
|
6144
7604
|
} | undefined;
|
|
6145
7605
|
persistence?: false | {
|
|
@@ -6169,6 +7629,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6169
7629
|
url?: string | undefined;
|
|
6170
7630
|
token?: string | undefined;
|
|
6171
7631
|
} | undefined;
|
|
7632
|
+
sqlite?: {
|
|
7633
|
+
ttlCleanupIntervalMs: number;
|
|
7634
|
+
walMode: boolean;
|
|
7635
|
+
path?: string | undefined;
|
|
7636
|
+
encryption?: {
|
|
7637
|
+
secret: string;
|
|
7638
|
+
} | undefined;
|
|
7639
|
+
} | undefined;
|
|
6172
7640
|
} | undefined;
|
|
6173
7641
|
providerCaching?: boolean | undefined;
|
|
6174
7642
|
eventStore?: {
|
|
@@ -6204,10 +7672,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6204
7672
|
} | undefined;
|
|
6205
7673
|
};
|
|
6206
7674
|
splitByApp: true;
|
|
7675
|
+
__sourceDir?: string | undefined;
|
|
6207
7676
|
instructions?: string | undefined;
|
|
6208
7677
|
http?: {
|
|
6209
7678
|
port: number;
|
|
6210
7679
|
entryPath: string;
|
|
7680
|
+
bodyLimit: string | number;
|
|
6211
7681
|
hostFactory?: any;
|
|
6212
7682
|
socketPath?: string | undefined;
|
|
6213
7683
|
cors?: false | {
|
|
@@ -6224,6 +7694,13 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6224
7694
|
allowedOrigins?: string[] | undefined;
|
|
6225
7695
|
} | undefined;
|
|
6226
7696
|
} | undefined;
|
|
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;
|
|
6227
7704
|
} | undefined;
|
|
6228
7705
|
redis?: {
|
|
6229
7706
|
provider: "redis";
|
|
@@ -6367,9 +7844,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6367
7844
|
} | undefined;
|
|
6368
7845
|
} | undefined;
|
|
6369
7846
|
sqlite?: {
|
|
6370
|
-
path: string;
|
|
6371
7847
|
ttlCleanupIntervalMs: number;
|
|
6372
7848
|
walMode: boolean;
|
|
7849
|
+
path?: string | undefined;
|
|
6373
7850
|
encryption?: {
|
|
6374
7851
|
secret: string;
|
|
6375
7852
|
} | undefined;
|
|
@@ -6378,7 +7855,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6378
7855
|
cdnOverrides?: Record<string, string> | undefined;
|
|
6379
7856
|
} | undefined;
|
|
6380
7857
|
output?: {
|
|
6381
|
-
allowNonFinite
|
|
7858
|
+
allowNonFinite?: boolean | undefined;
|
|
7859
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
7860
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
6382
7861
|
} | undefined;
|
|
6383
7862
|
jobs?: {
|
|
6384
7863
|
enabled: boolean;
|
|
@@ -6492,6 +7971,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6492
7971
|
enabled?: boolean | undefined;
|
|
6493
7972
|
} | undefined;
|
|
6494
7973
|
} | undefined;
|
|
7974
|
+
metrics?: {
|
|
7975
|
+
enabled: boolean;
|
|
7976
|
+
path: string;
|
|
7977
|
+
format: "json" | "prometheus";
|
|
7978
|
+
auth: "token" | "public" | {
|
|
7979
|
+
token: string;
|
|
7980
|
+
};
|
|
7981
|
+
tokenEnv: string;
|
|
7982
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
7983
|
+
process?: {
|
|
7984
|
+
eventLoopLag?: boolean | undefined;
|
|
7985
|
+
fdCount?: boolean | undefined;
|
|
7986
|
+
activeHandles?: boolean | undefined;
|
|
7987
|
+
} | undefined;
|
|
7988
|
+
} | undefined;
|
|
6495
7989
|
channels?: {
|
|
6496
7990
|
enabled: boolean;
|
|
6497
7991
|
defaultMeta?: Record<string, string> | undefined;
|
|
@@ -6601,6 +8095,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6601
8095
|
userInfoEndpoint?: string | undefined;
|
|
6602
8096
|
} | undefined;
|
|
6603
8097
|
} | {
|
|
8098
|
+
requireEmail: boolean;
|
|
8099
|
+
anonymousSubject: string;
|
|
6604
8100
|
tokenStorage: "memory" | {
|
|
6605
8101
|
redis: {
|
|
6606
8102
|
host: string;
|
|
@@ -6611,10 +8107,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6611
8107
|
defaultTtlMs: number;
|
|
6612
8108
|
password?: string | undefined;
|
|
6613
8109
|
};
|
|
8110
|
+
} | {
|
|
8111
|
+
sqlite: {
|
|
8112
|
+
path: string;
|
|
8113
|
+
encryption?: {
|
|
8114
|
+
secret: string;
|
|
8115
|
+
} | undefined;
|
|
8116
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8117
|
+
walMode?: boolean | undefined;
|
|
8118
|
+
};
|
|
6614
8119
|
};
|
|
6615
8120
|
allowDefaultPublic: boolean;
|
|
6616
8121
|
anonymousScopes: string[];
|
|
6617
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;
|
|
6618
8173
|
local?: {
|
|
6619
8174
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
6620
8175
|
jwks?: {
|
|
@@ -6622,6 +8177,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6622
8177
|
} | undefined;
|
|
6623
8178
|
issuer?: string | undefined;
|
|
6624
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;
|
|
6625
8223
|
publicAccess?: {
|
|
6626
8224
|
tools: string[] | "all";
|
|
6627
8225
|
prompts: string[] | "all";
|
|
@@ -6640,6 +8238,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6640
8238
|
} | undefined;
|
|
6641
8239
|
federatedAuth?: {
|
|
6642
8240
|
stateValidation: "format" | "strict";
|
|
8241
|
+
minProviders?: number | undefined;
|
|
8242
|
+
requiredProviders?: string[] | undefined;
|
|
6643
8243
|
} | undefined;
|
|
6644
8244
|
refresh?: {
|
|
6645
8245
|
enabled: boolean;
|
|
@@ -6683,6 +8283,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6683
8283
|
maxRedirects: number;
|
|
6684
8284
|
} | undefined;
|
|
6685
8285
|
} | undefined;
|
|
8286
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
8287
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
6686
8288
|
} | {
|
|
6687
8289
|
tokenStorage: "memory" | {
|
|
6688
8290
|
redis: {
|
|
@@ -6694,6 +8296,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6694
8296
|
defaultTtlMs: number;
|
|
6695
8297
|
password?: string | undefined;
|
|
6696
8298
|
};
|
|
8299
|
+
} | {
|
|
8300
|
+
sqlite: {
|
|
8301
|
+
path: string;
|
|
8302
|
+
encryption?: {
|
|
8303
|
+
secret: string;
|
|
8304
|
+
} | undefined;
|
|
8305
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8306
|
+
walMode?: boolean | undefined;
|
|
8307
|
+
};
|
|
6697
8308
|
};
|
|
6698
8309
|
allowDefaultPublic: boolean;
|
|
6699
8310
|
anonymousScopes: string[];
|
|
@@ -6706,6 +8317,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6706
8317
|
} | undefined;
|
|
6707
8318
|
issuer?: string | undefined;
|
|
6708
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;
|
|
6709
8363
|
publicAccess?: {
|
|
6710
8364
|
tools: string[] | "all";
|
|
6711
8365
|
prompts: string[] | "all";
|
|
@@ -6724,6 +8378,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6724
8378
|
} | undefined;
|
|
6725
8379
|
federatedAuth?: {
|
|
6726
8380
|
stateValidation: "format" | "strict";
|
|
8381
|
+
minProviders?: number | undefined;
|
|
8382
|
+
requiredProviders?: string[] | undefined;
|
|
6727
8383
|
} | undefined;
|
|
6728
8384
|
refresh?: {
|
|
6729
8385
|
enabled: boolean;
|
|
@@ -6767,6 +8423,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6767
8423
|
maxRedirects: number;
|
|
6768
8424
|
} | undefined;
|
|
6769
8425
|
} | undefined;
|
|
8426
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
8427
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
6770
8428
|
clientId?: string | undefined;
|
|
6771
8429
|
clientSecret?: string | undefined;
|
|
6772
8430
|
scopes?: string[] | undefined;
|
|
@@ -6819,7 +8477,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6819
8477
|
customOnly: boolean;
|
|
6820
8478
|
mappings?: {
|
|
6821
8479
|
pattern: string | RegExp;
|
|
6822
|
-
platform: "unknown" | "
|
|
8480
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
6823
8481
|
}[] | undefined;
|
|
6824
8482
|
} | undefined;
|
|
6825
8483
|
persistence?: false | {
|
|
@@ -6849,6 +8507,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6849
8507
|
url?: string | undefined;
|
|
6850
8508
|
token?: string | undefined;
|
|
6851
8509
|
} | undefined;
|
|
8510
|
+
sqlite?: {
|
|
8511
|
+
ttlCleanupIntervalMs: number;
|
|
8512
|
+
walMode: boolean;
|
|
8513
|
+
path?: string | undefined;
|
|
8514
|
+
encryption?: {
|
|
8515
|
+
secret: string;
|
|
8516
|
+
} | undefined;
|
|
8517
|
+
} | undefined;
|
|
6852
8518
|
} | undefined;
|
|
6853
8519
|
providerCaching?: boolean | undefined;
|
|
6854
8520
|
eventStore?: {
|
|
@@ -6884,10 +8550,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6884
8550
|
} | undefined;
|
|
6885
8551
|
};
|
|
6886
8552
|
splitByApp: false;
|
|
8553
|
+
__sourceDir?: string | undefined;
|
|
6887
8554
|
instructions?: string | undefined;
|
|
6888
8555
|
http?: {
|
|
6889
8556
|
port: number;
|
|
6890
8557
|
entryPath: string;
|
|
8558
|
+
bodyLimit: string | number;
|
|
6891
8559
|
hostFactory?: any;
|
|
6892
8560
|
socketPath?: string | undefined;
|
|
6893
8561
|
cors?: false | {
|
|
@@ -6904,6 +8572,13 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6904
8572
|
allowedOrigins?: string[] | undefined;
|
|
6905
8573
|
} | undefined;
|
|
6906
8574
|
} | undefined;
|
|
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;
|
|
6907
8582
|
} | undefined;
|
|
6908
8583
|
redis?: {
|
|
6909
8584
|
provider: "redis";
|
|
@@ -7047,9 +8722,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7047
8722
|
} | undefined;
|
|
7048
8723
|
} | undefined;
|
|
7049
8724
|
sqlite?: {
|
|
7050
|
-
path: string;
|
|
7051
8725
|
ttlCleanupIntervalMs: number;
|
|
7052
8726
|
walMode: boolean;
|
|
8727
|
+
path?: string | undefined;
|
|
7053
8728
|
encryption?: {
|
|
7054
8729
|
secret: string;
|
|
7055
8730
|
} | undefined;
|
|
@@ -7058,7 +8733,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7058
8733
|
cdnOverrides?: Record<string, string> | undefined;
|
|
7059
8734
|
} | undefined;
|
|
7060
8735
|
output?: {
|
|
7061
|
-
allowNonFinite
|
|
8736
|
+
allowNonFinite?: boolean | undefined;
|
|
8737
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
8738
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
7062
8739
|
} | undefined;
|
|
7063
8740
|
jobs?: {
|
|
7064
8741
|
enabled: boolean;
|
|
@@ -7172,6 +8849,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7172
8849
|
enabled?: boolean | undefined;
|
|
7173
8850
|
} | undefined;
|
|
7174
8851
|
} | undefined;
|
|
8852
|
+
metrics?: {
|
|
8853
|
+
enabled: boolean;
|
|
8854
|
+
path: string;
|
|
8855
|
+
format: "json" | "prometheus";
|
|
8856
|
+
auth: "token" | "public" | {
|
|
8857
|
+
token: string;
|
|
8858
|
+
};
|
|
8859
|
+
tokenEnv: string;
|
|
8860
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
8861
|
+
process?: {
|
|
8862
|
+
eventLoopLag?: boolean | undefined;
|
|
8863
|
+
fdCount?: boolean | undefined;
|
|
8864
|
+
activeHandles?: boolean | undefined;
|
|
8865
|
+
} | undefined;
|
|
8866
|
+
} | undefined;
|
|
7175
8867
|
channels?: {
|
|
7176
8868
|
enabled: boolean;
|
|
7177
8869
|
defaultMeta?: Record<string, string> | undefined;
|
|
@@ -7281,6 +8973,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7281
8973
|
userInfoEndpoint?: string | undefined;
|
|
7282
8974
|
} | undefined;
|
|
7283
8975
|
} | {
|
|
8976
|
+
requireEmail: boolean;
|
|
8977
|
+
anonymousSubject: string;
|
|
7284
8978
|
tokenStorage: "memory" | {
|
|
7285
8979
|
redis: {
|
|
7286
8980
|
host: string;
|
|
@@ -7291,10 +8985,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7291
8985
|
defaultTtlMs: number;
|
|
7292
8986
|
password?: string | undefined;
|
|
7293
8987
|
};
|
|
8988
|
+
} | {
|
|
8989
|
+
sqlite: {
|
|
8990
|
+
path: string;
|
|
8991
|
+
encryption?: {
|
|
8992
|
+
secret: string;
|
|
8993
|
+
} | undefined;
|
|
8994
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
8995
|
+
walMode?: boolean | undefined;
|
|
8996
|
+
};
|
|
7294
8997
|
};
|
|
7295
8998
|
allowDefaultPublic: boolean;
|
|
7296
8999
|
anonymousScopes: string[];
|
|
7297
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;
|
|
7298
9051
|
local?: {
|
|
7299
9052
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
7300
9053
|
jwks?: {
|
|
@@ -7302,6 +9055,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7302
9055
|
} | undefined;
|
|
7303
9056
|
issuer?: string | undefined;
|
|
7304
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;
|
|
7305
9101
|
publicAccess?: {
|
|
7306
9102
|
tools: string[] | "all";
|
|
7307
9103
|
prompts: string[] | "all";
|
|
@@ -7320,6 +9116,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7320
9116
|
} | undefined;
|
|
7321
9117
|
federatedAuth?: {
|
|
7322
9118
|
stateValidation: "format" | "strict";
|
|
9119
|
+
minProviders?: number | undefined;
|
|
9120
|
+
requiredProviders?: string[] | undefined;
|
|
7323
9121
|
} | undefined;
|
|
7324
9122
|
refresh?: {
|
|
7325
9123
|
enabled: boolean;
|
|
@@ -7363,6 +9161,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7363
9161
|
maxRedirects: number;
|
|
7364
9162
|
} | undefined;
|
|
7365
9163
|
} | undefined;
|
|
9164
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
9165
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
7366
9166
|
} | {
|
|
7367
9167
|
tokenStorage: "memory" | {
|
|
7368
9168
|
redis: {
|
|
@@ -7374,6 +9174,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7374
9174
|
defaultTtlMs: number;
|
|
7375
9175
|
password?: string | undefined;
|
|
7376
9176
|
};
|
|
9177
|
+
} | {
|
|
9178
|
+
sqlite: {
|
|
9179
|
+
path: string;
|
|
9180
|
+
encryption?: {
|
|
9181
|
+
secret: string;
|
|
9182
|
+
} | undefined;
|
|
9183
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
9184
|
+
walMode?: boolean | undefined;
|
|
9185
|
+
};
|
|
7377
9186
|
};
|
|
7378
9187
|
allowDefaultPublic: boolean;
|
|
7379
9188
|
anonymousScopes: string[];
|
|
@@ -7386,6 +9195,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7386
9195
|
} | undefined;
|
|
7387
9196
|
issuer?: string | undefined;
|
|
7388
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;
|
|
7389
9241
|
publicAccess?: {
|
|
7390
9242
|
tools: string[] | "all";
|
|
7391
9243
|
prompts: string[] | "all";
|
|
@@ -7404,6 +9256,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7404
9256
|
} | undefined;
|
|
7405
9257
|
federatedAuth?: {
|
|
7406
9258
|
stateValidation: "format" | "strict";
|
|
9259
|
+
minProviders?: number | undefined;
|
|
9260
|
+
requiredProviders?: string[] | undefined;
|
|
7407
9261
|
} | undefined;
|
|
7408
9262
|
refresh?: {
|
|
7409
9263
|
enabled: boolean;
|
|
@@ -7447,6 +9301,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7447
9301
|
maxRedirects: number;
|
|
7448
9302
|
} | undefined;
|
|
7449
9303
|
} | undefined;
|
|
9304
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
9305
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
7450
9306
|
clientId?: string | undefined;
|
|
7451
9307
|
clientSecret?: string | undefined;
|
|
7452
9308
|
scopes?: string[] | undefined;
|
|
@@ -7499,7 +9355,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7499
9355
|
customOnly: boolean;
|
|
7500
9356
|
mappings?: {
|
|
7501
9357
|
pattern: string | RegExp;
|
|
7502
|
-
platform: "unknown" | "
|
|
9358
|
+
platform: "unknown" | "continue" | "openai" | "claude" | "gemini" | "cursor" | "cody" | "generic-mcp" | "ext-apps";
|
|
7503
9359
|
}[] | undefined;
|
|
7504
9360
|
} | undefined;
|
|
7505
9361
|
persistence?: false | {
|
|
@@ -7529,6 +9385,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7529
9385
|
url?: string | undefined;
|
|
7530
9386
|
token?: string | undefined;
|
|
7531
9387
|
} | undefined;
|
|
9388
|
+
sqlite?: {
|
|
9389
|
+
ttlCleanupIntervalMs: number;
|
|
9390
|
+
walMode: boolean;
|
|
9391
|
+
path?: string | undefined;
|
|
9392
|
+
encryption?: {
|
|
9393
|
+
secret: string;
|
|
9394
|
+
} | undefined;
|
|
9395
|
+
} | undefined;
|
|
7532
9396
|
} | undefined;
|
|
7533
9397
|
providerCaching?: boolean | undefined;
|
|
7534
9398
|
eventStore?: {
|
|
@@ -7564,10 +9428,12 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7564
9428
|
} | undefined;
|
|
7565
9429
|
};
|
|
7566
9430
|
splitByApp: true;
|
|
9431
|
+
__sourceDir?: string | undefined;
|
|
7567
9432
|
instructions?: string | undefined;
|
|
7568
9433
|
http?: {
|
|
7569
9434
|
port: number;
|
|
7570
9435
|
entryPath: string;
|
|
9436
|
+
bodyLimit: string | number;
|
|
7571
9437
|
hostFactory?: any;
|
|
7572
9438
|
socketPath?: string | undefined;
|
|
7573
9439
|
cors?: false | {
|
|
@@ -7584,6 +9450,13 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7584
9450
|
allowedOrigins?: string[] | undefined;
|
|
7585
9451
|
} | undefined;
|
|
7586
9452
|
} | undefined;
|
|
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;
|
|
7587
9460
|
} | undefined;
|
|
7588
9461
|
redis?: {
|
|
7589
9462
|
provider: "redis";
|
|
@@ -7727,9 +9600,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7727
9600
|
} | undefined;
|
|
7728
9601
|
} | undefined;
|
|
7729
9602
|
sqlite?: {
|
|
7730
|
-
path: string;
|
|
7731
9603
|
ttlCleanupIntervalMs: number;
|
|
7732
9604
|
walMode: boolean;
|
|
9605
|
+
path?: string | undefined;
|
|
7733
9606
|
encryption?: {
|
|
7734
9607
|
secret: string;
|
|
7735
9608
|
} | undefined;
|
|
@@ -7738,7 +9611,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7738
9611
|
cdnOverrides?: Record<string, string> | undefined;
|
|
7739
9612
|
} | undefined;
|
|
7740
9613
|
output?: {
|
|
7741
|
-
allowNonFinite
|
|
9614
|
+
allowNonFinite?: boolean | undefined;
|
|
9615
|
+
schemaMode?: "description" | "definition" | "both" | "none" | undefined;
|
|
9616
|
+
schemaDescriptionFormat?: "summary" | "jsonSchema" | undefined;
|
|
7742
9617
|
} | undefined;
|
|
7743
9618
|
jobs?: {
|
|
7744
9619
|
enabled: boolean;
|
|
@@ -7852,6 +9727,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7852
9727
|
enabled?: boolean | undefined;
|
|
7853
9728
|
} | undefined;
|
|
7854
9729
|
} | undefined;
|
|
9730
|
+
metrics?: {
|
|
9731
|
+
enabled: boolean;
|
|
9732
|
+
path: string;
|
|
9733
|
+
format: "json" | "prometheus";
|
|
9734
|
+
auth: "token" | "public" | {
|
|
9735
|
+
token: string;
|
|
9736
|
+
};
|
|
9737
|
+
tokenEnv: string;
|
|
9738
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
9739
|
+
process?: {
|
|
9740
|
+
eventLoopLag?: boolean | undefined;
|
|
9741
|
+
fdCount?: boolean | undefined;
|
|
9742
|
+
activeHandles?: boolean | undefined;
|
|
9743
|
+
} | undefined;
|
|
9744
|
+
} | undefined;
|
|
7855
9745
|
channels?: {
|
|
7856
9746
|
enabled: boolean;
|
|
7857
9747
|
defaultMeta?: Record<string, string> | undefined;
|
|
@@ -7961,6 +9851,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7961
9851
|
userInfoEndpoint?: string | undefined;
|
|
7962
9852
|
} | undefined;
|
|
7963
9853
|
} | {
|
|
9854
|
+
requireEmail: boolean;
|
|
9855
|
+
anonymousSubject: string;
|
|
7964
9856
|
tokenStorage: "memory" | {
|
|
7965
9857
|
redis: {
|
|
7966
9858
|
host: string;
|
|
@@ -7971,10 +9863,69 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7971
9863
|
defaultTtlMs: number;
|
|
7972
9864
|
password?: string | undefined;
|
|
7973
9865
|
};
|
|
9866
|
+
} | {
|
|
9867
|
+
sqlite: {
|
|
9868
|
+
path: string;
|
|
9869
|
+
encryption?: {
|
|
9870
|
+
secret: string;
|
|
9871
|
+
} | undefined;
|
|
9872
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
9873
|
+
walMode?: boolean | undefined;
|
|
9874
|
+
};
|
|
7974
9875
|
};
|
|
7975
9876
|
allowDefaultPublic: boolean;
|
|
7976
9877
|
anonymousScopes: string[];
|
|
7977
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;
|
|
7978
9929
|
local?: {
|
|
7979
9930
|
signKey?: Uint8Array<ArrayBuffer> | import("@frontmcp/auth").JWK | undefined;
|
|
7980
9931
|
jwks?: {
|
|
@@ -7982,6 +9933,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7982
9933
|
} | undefined;
|
|
7983
9934
|
issuer?: string | undefined;
|
|
7984
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;
|
|
7985
9979
|
publicAccess?: {
|
|
7986
9980
|
tools: string[] | "all";
|
|
7987
9981
|
prompts: string[] | "all";
|
|
@@ -8000,6 +9994,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8000
9994
|
} | undefined;
|
|
8001
9995
|
federatedAuth?: {
|
|
8002
9996
|
stateValidation: "format" | "strict";
|
|
9997
|
+
minProviders?: number | undefined;
|
|
9998
|
+
requiredProviders?: string[] | undefined;
|
|
8003
9999
|
} | undefined;
|
|
8004
10000
|
refresh?: {
|
|
8005
10001
|
enabled: boolean;
|
|
@@ -8043,6 +10039,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8043
10039
|
maxRedirects: number;
|
|
8044
10040
|
} | undefined;
|
|
8045
10041
|
} | undefined;
|
|
10042
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
10043
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
8046
10044
|
} | {
|
|
8047
10045
|
tokenStorage: "memory" | {
|
|
8048
10046
|
redis: {
|
|
@@ -8054,6 +10052,15 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8054
10052
|
defaultTtlMs: number;
|
|
8055
10053
|
password?: string | undefined;
|
|
8056
10054
|
};
|
|
10055
|
+
} | {
|
|
10056
|
+
sqlite: {
|
|
10057
|
+
path: string;
|
|
10058
|
+
encryption?: {
|
|
10059
|
+
secret: string;
|
|
10060
|
+
} | undefined;
|
|
10061
|
+
ttlCleanupIntervalMs?: number | undefined;
|
|
10062
|
+
walMode?: boolean | undefined;
|
|
10063
|
+
};
|
|
8057
10064
|
};
|
|
8058
10065
|
allowDefaultPublic: boolean;
|
|
8059
10066
|
anonymousScopes: string[];
|
|
@@ -8066,6 +10073,49 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8066
10073
|
} | undefined;
|
|
8067
10074
|
issuer?: string | undefined;
|
|
8068
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;
|
|
8069
10119
|
publicAccess?: {
|
|
8070
10120
|
tools: string[] | "all";
|
|
8071
10121
|
prompts: string[] | "all";
|
|
@@ -8084,6 +10134,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8084
10134
|
} | undefined;
|
|
8085
10135
|
federatedAuth?: {
|
|
8086
10136
|
stateValidation: "format" | "strict";
|
|
10137
|
+
minProviders?: number | undefined;
|
|
10138
|
+
requiredProviders?: string[] | undefined;
|
|
8087
10139
|
} | undefined;
|
|
8088
10140
|
refresh?: {
|
|
8089
10141
|
enabled: boolean;
|
|
@@ -8127,6 +10179,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
8127
10179
|
maxRedirects: number;
|
|
8128
10180
|
} | undefined;
|
|
8129
10181
|
} | undefined;
|
|
10182
|
+
ui?: Partial<Record<"error" | "login" | "consent" | "incremental" | "federated", string>> | undefined;
|
|
10183
|
+
extras?: Record<string, import("@frontmcp/auth").AuthExtraHandler> | undefined;
|
|
8130
10184
|
clientId?: string | undefined;
|
|
8131
10185
|
clientSecret?: string | undefined;
|
|
8132
10186
|
scopes?: string[] | undefined;
|