@frontmcp/sdk 1.2.1 → 1.3.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/auth/session/session-store.factory.d.ts +25 -5
- package/auth/session/session-store.factory.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/interfaces/skill.interface.d.ts +17 -4
- package/common/interfaces/skill.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/channel.metadata.d.ts +10 -0
- package/common/metadata/channel.metadata.d.ts.map +1 -1
- package/common/metadata/front-mcp.metadata.d.ts +343 -10
- package/common/metadata/front-mcp.metadata.d.ts.map +1 -1
- 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 +10 -0
- package/common/metadata/skill.metadata.d.ts.map +1 -1
- package/common/metadata/tool.metadata.d.ts +10 -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/tokens/front-mcp.tokens.d.ts.map +1 -1
- package/common/tokens/skill.tokens.d.ts +8 -0
- package/common/tokens/skill.tokens.d.ts.map +1 -1
- package/common/types/options/http/interfaces.d.ts +32 -0
- package/common/types/options/http/interfaces.d.ts.map +1 -1
- package/common/types/options/http/schema.d.ts +2 -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/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 +23 -4
- package/common/types/options/transport/schema.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 +2 -2
- package/errors/index.d.ts.map +1 -1
- package/errors/mcp.error.d.ts +43 -2
- 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/esm/index.mjs +2530 -1784
- package/front-mcp/front-mcp.d.ts +9 -0
- package/front-mcp/front-mcp.d.ts.map +1 -1
- package/front-mcp/front-mcp.providers.d.ts +104 -4
- package/front-mcp/front-mcp.providers.d.ts.map +1 -1
- package/index.d.ts +6 -4
- package/index.d.ts.map +1 -1
- package/index.js +3039 -2281
- 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 -10
- 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/scope.instance.d.ts +13 -0
- package/scope/scope.instance.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/server.instance.d.ts +16 -0
- package/server/server.instance.d.ts.map +1 -1
- package/skill/skill.instance.d.ts.map +1 -1
- package/skill/skill.utils.d.ts.map +1 -1
- package/tool/flows/call-tool.flow.d.ts.map +1 -1
- package/tool/tool.registry.d.ts +6 -0
- package/tool/tool.registry.d.ts.map +1 -1
- package/transport/event-stores/event-store.factory.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/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,7 +1,7 @@
|
|
|
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
7
|
export interface FrontMcpBaseMetadata {
|
|
@@ -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.
|
|
@@ -463,6 +491,8 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
463
491
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
464
492
|
}, import("zod/v4/core").$strip>>;
|
|
465
493
|
}, import("zod/v4/core").$strip>>;
|
|
494
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
495
|
+
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
466
496
|
}, import("zod/v4/core").$strip>>;
|
|
467
497
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
468
498
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -614,6 +644,14 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
614
644
|
defaultTtlMs: number;
|
|
615
645
|
password?: string | undefined;
|
|
616
646
|
}>>]>>;
|
|
647
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
648
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
649
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
650
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
651
|
+
}, import("zod/v4/core").$strip>>;
|
|
652
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
653
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
654
|
+
}, import("zod/v4/core").$strip>>;
|
|
617
655
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
618
656
|
}, import("zod/v4/core").$strip>]>>;
|
|
619
657
|
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">]>>>;
|
|
@@ -713,6 +751,14 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
713
751
|
url?: string | undefined;
|
|
714
752
|
token?: string | undefined;
|
|
715
753
|
} | undefined;
|
|
754
|
+
sqlite?: {
|
|
755
|
+
ttlCleanupIntervalMs: number;
|
|
756
|
+
walMode: boolean;
|
|
757
|
+
path?: string | undefined;
|
|
758
|
+
encryption?: {
|
|
759
|
+
secret: string;
|
|
760
|
+
} | undefined;
|
|
761
|
+
} | undefined;
|
|
716
762
|
} | undefined;
|
|
717
763
|
providerCaching?: boolean | undefined;
|
|
718
764
|
eventStore?: {
|
|
@@ -791,6 +837,14 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
791
837
|
url?: string | undefined;
|
|
792
838
|
token?: string | undefined;
|
|
793
839
|
} | undefined;
|
|
840
|
+
sqlite?: {
|
|
841
|
+
ttlCleanupIntervalMs: number;
|
|
842
|
+
walMode: boolean;
|
|
843
|
+
path?: string | undefined;
|
|
844
|
+
encryption?: {
|
|
845
|
+
secret: string;
|
|
846
|
+
} | undefined;
|
|
847
|
+
} | undefined;
|
|
794
848
|
} | undefined;
|
|
795
849
|
providerCaching?: boolean | undefined;
|
|
796
850
|
eventStore?: {
|
|
@@ -961,7 +1015,7 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
961
1015
|
}, import("zod/v4/core").$strip>>;
|
|
962
1016
|
}, import("zod/v4/core").$strip>>;
|
|
963
1017
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
964
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
1018
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
965
1019
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
966
1020
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
967
1021
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1133,6 +1187,21 @@ export declare const frontMcpBaseSchema: import("@frontmcp/lazy-zod").ZodObject<
|
|
|
1133
1187
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
1134
1188
|
}, import("zod/v4/core").$strip>>;
|
|
1135
1189
|
}, import("zod/v4/core").$strip>>;
|
|
1190
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1191
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
1192
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
1193
|
+
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">]>>>;
|
|
1194
|
+
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<{
|
|
1195
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
1196
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
1197
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
1198
|
+
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">]>>>;
|
|
1199
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1200
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1201
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1202
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
1203
|
+
}, import("zod/v4/core").$strip>>;
|
|
1204
|
+
}, import("zod/v4/core").$strip>>;
|
|
1136
1205
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1137
1206
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
1138
1207
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -1264,6 +1333,8 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1264
1333
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
1265
1334
|
}, import("zod/v4/core").$strip>>;
|
|
1266
1335
|
}, import("zod/v4/core").$strip>>;
|
|
1336
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
1337
|
+
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
1267
1338
|
}, import("zod/v4/core").$strip>>;
|
|
1268
1339
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
1269
1340
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -1415,6 +1486,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1415
1486
|
defaultTtlMs: number;
|
|
1416
1487
|
password?: string | undefined;
|
|
1417
1488
|
}>>]>>;
|
|
1489
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1490
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1491
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1492
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
1493
|
+
}, import("zod/v4/core").$strip>>;
|
|
1494
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
1495
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
1496
|
+
}, import("zod/v4/core").$strip>>;
|
|
1418
1497
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
1419
1498
|
}, import("zod/v4/core").$strip>]>>;
|
|
1420
1499
|
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">]>>>;
|
|
@@ -1514,6 +1593,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1514
1593
|
url?: string | undefined;
|
|
1515
1594
|
token?: string | undefined;
|
|
1516
1595
|
} | undefined;
|
|
1596
|
+
sqlite?: {
|
|
1597
|
+
ttlCleanupIntervalMs: number;
|
|
1598
|
+
walMode: boolean;
|
|
1599
|
+
path?: string | undefined;
|
|
1600
|
+
encryption?: {
|
|
1601
|
+
secret: string;
|
|
1602
|
+
} | undefined;
|
|
1603
|
+
} | undefined;
|
|
1517
1604
|
} | undefined;
|
|
1518
1605
|
providerCaching?: boolean | undefined;
|
|
1519
1606
|
eventStore?: {
|
|
@@ -1592,6 +1679,14 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1592
1679
|
url?: string | undefined;
|
|
1593
1680
|
token?: string | undefined;
|
|
1594
1681
|
} | undefined;
|
|
1682
|
+
sqlite?: {
|
|
1683
|
+
ttlCleanupIntervalMs: number;
|
|
1684
|
+
walMode: boolean;
|
|
1685
|
+
path?: string | undefined;
|
|
1686
|
+
encryption?: {
|
|
1687
|
+
secret: string;
|
|
1688
|
+
} | undefined;
|
|
1689
|
+
} | undefined;
|
|
1595
1690
|
} | undefined;
|
|
1596
1691
|
providerCaching?: boolean | undefined;
|
|
1597
1692
|
eventStore?: {
|
|
@@ -1762,7 +1857,7 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1762
1857
|
}, import("zod/v4/core").$strip>>;
|
|
1763
1858
|
}, import("zod/v4/core").$strip>>;
|
|
1764
1859
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1765
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
1860
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
1766
1861
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1767
1862
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
1768
1863
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1934,6 +2029,21 @@ declare const frontMcpMultiAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
1934
2029
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
1935
2030
|
}, import("zod/v4/core").$strip>>;
|
|
1936
2031
|
}, import("zod/v4/core").$strip>>;
|
|
2032
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2033
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
2034
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2035
|
+
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">]>>>;
|
|
2036
|
+
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<{
|
|
2037
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
2038
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
2039
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2040
|
+
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">]>>>;
|
|
2041
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2042
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2043
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2044
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
2045
|
+
}, import("zod/v4/core").$strip>>;
|
|
2046
|
+
}, import("zod/v4/core").$strip>>;
|
|
1937
2047
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
1938
2048
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
1939
2049
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -2318,6 +2428,8 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2318
2428
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
2319
2429
|
}, import("zod/v4/core").$strip>>;
|
|
2320
2430
|
}, import("zod/v4/core").$strip>>;
|
|
2431
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
2432
|
+
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
2321
2433
|
}, import("zod/v4/core").$strip>>;
|
|
2322
2434
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
2323
2435
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -2469,6 +2581,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2469
2581
|
defaultTtlMs: number;
|
|
2470
2582
|
password?: string | undefined;
|
|
2471
2583
|
}>>]>>;
|
|
2584
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2585
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2586
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2587
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2588
|
+
}, import("zod/v4/core").$strip>>;
|
|
2589
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2590
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
2591
|
+
}, import("zod/v4/core").$strip>>;
|
|
2472
2592
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
2473
2593
|
}, import("zod/v4/core").$strip>]>>;
|
|
2474
2594
|
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">]>>>;
|
|
@@ -2568,6 +2688,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2568
2688
|
url?: string | undefined;
|
|
2569
2689
|
token?: string | undefined;
|
|
2570
2690
|
} | undefined;
|
|
2691
|
+
sqlite?: {
|
|
2692
|
+
ttlCleanupIntervalMs: number;
|
|
2693
|
+
walMode: boolean;
|
|
2694
|
+
path?: string | undefined;
|
|
2695
|
+
encryption?: {
|
|
2696
|
+
secret: string;
|
|
2697
|
+
} | undefined;
|
|
2698
|
+
} | undefined;
|
|
2571
2699
|
} | undefined;
|
|
2572
2700
|
providerCaching?: boolean | undefined;
|
|
2573
2701
|
eventStore?: {
|
|
@@ -2646,6 +2774,14 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2646
2774
|
url?: string | undefined;
|
|
2647
2775
|
token?: string | undefined;
|
|
2648
2776
|
} | undefined;
|
|
2777
|
+
sqlite?: {
|
|
2778
|
+
ttlCleanupIntervalMs: number;
|
|
2779
|
+
walMode: boolean;
|
|
2780
|
+
path?: string | undefined;
|
|
2781
|
+
encryption?: {
|
|
2782
|
+
secret: string;
|
|
2783
|
+
} | undefined;
|
|
2784
|
+
} | undefined;
|
|
2649
2785
|
} | undefined;
|
|
2650
2786
|
providerCaching?: boolean | undefined;
|
|
2651
2787
|
eventStore?: {
|
|
@@ -2816,7 +2952,7 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2816
2952
|
}, import("zod/v4/core").$strip>>;
|
|
2817
2953
|
}, import("zod/v4/core").$strip>>;
|
|
2818
2954
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2819
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
2955
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
2820
2956
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2821
2957
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
2822
2958
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2988,6 +3124,21 @@ declare const frontMcpSplitByAppSchema: import("@frontmcp/lazy-zod").ZodObject<{
|
|
|
2988
3124
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
2989
3125
|
}, import("zod/v4/core").$strip>>;
|
|
2990
3126
|
}, import("zod/v4/core").$strip>>;
|
|
3127
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3128
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
3129
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3130
|
+
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">]>>>;
|
|
3131
|
+
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<{
|
|
3132
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
3133
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
3134
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3135
|
+
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">]>>>;
|
|
3136
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3137
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3138
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3139
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
3140
|
+
}, import("zod/v4/core").$strip>>;
|
|
3141
|
+
}, import("zod/v4/core").$strip>>;
|
|
2991
3142
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
2992
3143
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
2993
3144
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -3369,6 +3520,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3369
3520
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
3370
3521
|
}, import("zod/v4/core").$strip>>;
|
|
3371
3522
|
}, import("zod/v4/core").$strip>>;
|
|
3523
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
3524
|
+
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
3372
3525
|
}, import("zod/v4/core").$strip>>;
|
|
3373
3526
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
3374
3527
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -3520,6 +3673,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3520
3673
|
defaultTtlMs: number;
|
|
3521
3674
|
password?: string | undefined;
|
|
3522
3675
|
}>>]>>;
|
|
3676
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3677
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3678
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3679
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
3680
|
+
}, import("zod/v4/core").$strip>>;
|
|
3681
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
3682
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
3683
|
+
}, import("zod/v4/core").$strip>>;
|
|
3523
3684
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
3524
3685
|
}, import("zod/v4/core").$strip>]>>;
|
|
3525
3686
|
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">]>>>;
|
|
@@ -3619,6 +3780,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3619
3780
|
url?: string | undefined;
|
|
3620
3781
|
token?: string | undefined;
|
|
3621
3782
|
} | undefined;
|
|
3783
|
+
sqlite?: {
|
|
3784
|
+
ttlCleanupIntervalMs: number;
|
|
3785
|
+
walMode: boolean;
|
|
3786
|
+
path?: string | undefined;
|
|
3787
|
+
encryption?: {
|
|
3788
|
+
secret: string;
|
|
3789
|
+
} | undefined;
|
|
3790
|
+
} | undefined;
|
|
3622
3791
|
} | undefined;
|
|
3623
3792
|
providerCaching?: boolean | undefined;
|
|
3624
3793
|
eventStore?: {
|
|
@@ -3697,6 +3866,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3697
3866
|
url?: string | undefined;
|
|
3698
3867
|
token?: string | undefined;
|
|
3699
3868
|
} | undefined;
|
|
3869
|
+
sqlite?: {
|
|
3870
|
+
ttlCleanupIntervalMs: number;
|
|
3871
|
+
walMode: boolean;
|
|
3872
|
+
path?: string | undefined;
|
|
3873
|
+
encryption?: {
|
|
3874
|
+
secret: string;
|
|
3875
|
+
} | undefined;
|
|
3876
|
+
} | undefined;
|
|
3700
3877
|
} | undefined;
|
|
3701
3878
|
providerCaching?: boolean | undefined;
|
|
3702
3879
|
eventStore?: {
|
|
@@ -3867,7 +4044,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
3867
4044
|
}, import("zod/v4/core").$strip>>;
|
|
3868
4045
|
}, import("zod/v4/core").$strip>>;
|
|
3869
4046
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3870
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
4047
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
3871
4048
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
3872
4049
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
3873
4050
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -4039,6 +4216,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4039
4216
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4040
4217
|
}, import("zod/v4/core").$strip>>;
|
|
4041
4218
|
}, import("zod/v4/core").$strip>>;
|
|
4219
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4220
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
4221
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4222
|
+
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">]>>>;
|
|
4223
|
+
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<{
|
|
4224
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
4225
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
4226
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4227
|
+
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">]>>>;
|
|
4228
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4229
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4230
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4231
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
4232
|
+
}, import("zod/v4/core").$strip>>;
|
|
4233
|
+
}, import("zod/v4/core").$strip>>;
|
|
4042
4234
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4043
4235
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
4044
4236
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -4418,6 +4610,8 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4418
4610
|
allowedOrigins: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodArray<import("@frontmcp/lazy-zod").ZodString>>;
|
|
4419
4611
|
}, import("zod/v4/core").$strip>>;
|
|
4420
4612
|
}, import("zod/v4/core").$strip>>;
|
|
4613
|
+
bodyLimit: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
4614
|
+
urlencodedLimit: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodNumber, import("@frontmcp/lazy-zod").ZodString]>>;
|
|
4421
4615
|
}, import("zod/v4/core").$strip>>;
|
|
4422
4616
|
redis: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodUnion<readonly [import("@frontmcp/lazy-zod").ZodObject<{
|
|
4423
4617
|
provider: import("@frontmcp/lazy-zod").ZodLiteral<"redis">;
|
|
@@ -4569,6 +4763,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4569
4763
|
defaultTtlMs: number;
|
|
4570
4764
|
password?: string | undefined;
|
|
4571
4765
|
}>>]>>;
|
|
4766
|
+
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4767
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4768
|
+
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4769
|
+
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
4770
|
+
}, import("zod/v4/core").$strip>>;
|
|
4771
|
+
ttlCleanupIntervalMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
4772
|
+
walMode: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
4773
|
+
}, import("zod/v4/core").$strip>>;
|
|
4572
4774
|
defaultTtlMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodNumber>;
|
|
4573
4775
|
}, import("zod/v4/core").$strip>]>>;
|
|
4574
4776
|
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">]>>>;
|
|
@@ -4668,6 +4870,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4668
4870
|
url?: string | undefined;
|
|
4669
4871
|
token?: string | undefined;
|
|
4670
4872
|
} | undefined;
|
|
4873
|
+
sqlite?: {
|
|
4874
|
+
ttlCleanupIntervalMs: number;
|
|
4875
|
+
walMode: boolean;
|
|
4876
|
+
path?: string | undefined;
|
|
4877
|
+
encryption?: {
|
|
4878
|
+
secret: string;
|
|
4879
|
+
} | undefined;
|
|
4880
|
+
} | undefined;
|
|
4671
4881
|
} | undefined;
|
|
4672
4882
|
providerCaching?: boolean | undefined;
|
|
4673
4883
|
eventStore?: {
|
|
@@ -4746,6 +4956,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4746
4956
|
url?: string | undefined;
|
|
4747
4957
|
token?: string | undefined;
|
|
4748
4958
|
} | undefined;
|
|
4959
|
+
sqlite?: {
|
|
4960
|
+
ttlCleanupIntervalMs: number;
|
|
4961
|
+
walMode: boolean;
|
|
4962
|
+
path?: string | undefined;
|
|
4963
|
+
encryption?: {
|
|
4964
|
+
secret: string;
|
|
4965
|
+
} | undefined;
|
|
4966
|
+
} | undefined;
|
|
4749
4967
|
} | undefined;
|
|
4750
4968
|
providerCaching?: boolean | undefined;
|
|
4751
4969
|
eventStore?: {
|
|
@@ -4916,7 +5134,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
4916
5134
|
}, import("zod/v4/core").$strip>>;
|
|
4917
5135
|
}, import("zod/v4/core").$strip>>;
|
|
4918
5136
|
sqlite: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4919
|
-
path: import("@frontmcp/lazy-zod").ZodString
|
|
5137
|
+
path: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>;
|
|
4920
5138
|
encryption: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
4921
5139
|
secret: import("@frontmcp/lazy-zod").ZodString;
|
|
4922
5140
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -5088,6 +5306,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5088
5306
|
timeoutMs: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodNumber>>;
|
|
5089
5307
|
}, import("zod/v4/core").$strip>>;
|
|
5090
5308
|
}, import("zod/v4/core").$strip>>;
|
|
5309
|
+
metrics: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5310
|
+
enabled: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>>;
|
|
5311
|
+
path: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5312
|
+
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">]>>>;
|
|
5313
|
+
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<{
|
|
5314
|
+
token: import("@frontmcp/lazy-zod").ZodString;
|
|
5315
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
5316
|
+
tokenEnv: import("@frontmcp/lazy-zod").ZodDefault<import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodString>>;
|
|
5317
|
+
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">]>>>;
|
|
5318
|
+
process: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5319
|
+
eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5320
|
+
fdCount: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5321
|
+
activeHandles: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodBoolean>;
|
|
5322
|
+
}, import("zod/v4/core").$strip>>;
|
|
5323
|
+
}, import("zod/v4/core").$strip>>;
|
|
5091
5324
|
channels: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodObject<{
|
|
5092
5325
|
enabled: import("@frontmcp/lazy-zod").ZodBoolean;
|
|
5093
5326
|
defaultMeta: import("@frontmcp/lazy-zod").ZodOptional<import("@frontmcp/lazy-zod").ZodRecord<import("@frontmcp/lazy-zod").ZodString, import("@frontmcp/lazy-zod").ZodString>>;
|
|
@@ -5489,6 +5722,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5489
5722
|
url?: string | undefined;
|
|
5490
5723
|
token?: string | undefined;
|
|
5491
5724
|
} | undefined;
|
|
5725
|
+
sqlite?: {
|
|
5726
|
+
ttlCleanupIntervalMs: number;
|
|
5727
|
+
walMode: boolean;
|
|
5728
|
+
path?: string | undefined;
|
|
5729
|
+
encryption?: {
|
|
5730
|
+
secret: string;
|
|
5731
|
+
} | undefined;
|
|
5732
|
+
} | undefined;
|
|
5492
5733
|
} | undefined;
|
|
5493
5734
|
providerCaching?: boolean | undefined;
|
|
5494
5735
|
eventStore?: {
|
|
@@ -5528,6 +5769,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5528
5769
|
http?: {
|
|
5529
5770
|
port: number;
|
|
5530
5771
|
entryPath: string;
|
|
5772
|
+
bodyLimit: string | number;
|
|
5531
5773
|
hostFactory?: any;
|
|
5532
5774
|
socketPath?: string | undefined;
|
|
5533
5775
|
cors?: false | {
|
|
@@ -5544,6 +5786,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5544
5786
|
allowedOrigins?: string[] | undefined;
|
|
5545
5787
|
} | undefined;
|
|
5546
5788
|
} | undefined;
|
|
5789
|
+
urlencodedLimit?: string | number | undefined;
|
|
5547
5790
|
} | undefined;
|
|
5548
5791
|
redis?: {
|
|
5549
5792
|
provider: "redis";
|
|
@@ -5687,9 +5930,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5687
5930
|
} | undefined;
|
|
5688
5931
|
} | undefined;
|
|
5689
5932
|
sqlite?: {
|
|
5690
|
-
path: string;
|
|
5691
5933
|
ttlCleanupIntervalMs: number;
|
|
5692
5934
|
walMode: boolean;
|
|
5935
|
+
path?: string | undefined;
|
|
5693
5936
|
encryption?: {
|
|
5694
5937
|
secret: string;
|
|
5695
5938
|
} | undefined;
|
|
@@ -5812,6 +6055,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
5812
6055
|
enabled?: boolean | undefined;
|
|
5813
6056
|
} | undefined;
|
|
5814
6057
|
} | undefined;
|
|
6058
|
+
metrics?: {
|
|
6059
|
+
enabled: boolean;
|
|
6060
|
+
path: string;
|
|
6061
|
+
format: "json" | "prometheus";
|
|
6062
|
+
auth: "token" | "public" | {
|
|
6063
|
+
token: string;
|
|
6064
|
+
};
|
|
6065
|
+
tokenEnv: string;
|
|
6066
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
6067
|
+
process?: {
|
|
6068
|
+
eventLoopLag?: boolean | undefined;
|
|
6069
|
+
fdCount?: boolean | undefined;
|
|
6070
|
+
activeHandles?: boolean | undefined;
|
|
6071
|
+
} | undefined;
|
|
6072
|
+
} | undefined;
|
|
5815
6073
|
channels?: {
|
|
5816
6074
|
enabled: boolean;
|
|
5817
6075
|
defaultMeta?: Record<string, string> | undefined;
|
|
@@ -6169,6 +6427,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6169
6427
|
url?: string | undefined;
|
|
6170
6428
|
token?: string | undefined;
|
|
6171
6429
|
} | undefined;
|
|
6430
|
+
sqlite?: {
|
|
6431
|
+
ttlCleanupIntervalMs: number;
|
|
6432
|
+
walMode: boolean;
|
|
6433
|
+
path?: string | undefined;
|
|
6434
|
+
encryption?: {
|
|
6435
|
+
secret: string;
|
|
6436
|
+
} | undefined;
|
|
6437
|
+
} | undefined;
|
|
6172
6438
|
} | undefined;
|
|
6173
6439
|
providerCaching?: boolean | undefined;
|
|
6174
6440
|
eventStore?: {
|
|
@@ -6208,6 +6474,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6208
6474
|
http?: {
|
|
6209
6475
|
port: number;
|
|
6210
6476
|
entryPath: string;
|
|
6477
|
+
bodyLimit: string | number;
|
|
6211
6478
|
hostFactory?: any;
|
|
6212
6479
|
socketPath?: string | undefined;
|
|
6213
6480
|
cors?: false | {
|
|
@@ -6224,6 +6491,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6224
6491
|
allowedOrigins?: string[] | undefined;
|
|
6225
6492
|
} | undefined;
|
|
6226
6493
|
} | undefined;
|
|
6494
|
+
urlencodedLimit?: string | number | undefined;
|
|
6227
6495
|
} | undefined;
|
|
6228
6496
|
redis?: {
|
|
6229
6497
|
provider: "redis";
|
|
@@ -6367,9 +6635,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6367
6635
|
} | undefined;
|
|
6368
6636
|
} | undefined;
|
|
6369
6637
|
sqlite?: {
|
|
6370
|
-
path: string;
|
|
6371
6638
|
ttlCleanupIntervalMs: number;
|
|
6372
6639
|
walMode: boolean;
|
|
6640
|
+
path?: string | undefined;
|
|
6373
6641
|
encryption?: {
|
|
6374
6642
|
secret: string;
|
|
6375
6643
|
} | undefined;
|
|
@@ -6492,6 +6760,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6492
6760
|
enabled?: boolean | undefined;
|
|
6493
6761
|
} | undefined;
|
|
6494
6762
|
} | undefined;
|
|
6763
|
+
metrics?: {
|
|
6764
|
+
enabled: boolean;
|
|
6765
|
+
path: string;
|
|
6766
|
+
format: "json" | "prometheus";
|
|
6767
|
+
auth: "token" | "public" | {
|
|
6768
|
+
token: string;
|
|
6769
|
+
};
|
|
6770
|
+
tokenEnv: string;
|
|
6771
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
6772
|
+
process?: {
|
|
6773
|
+
eventLoopLag?: boolean | undefined;
|
|
6774
|
+
fdCount?: boolean | undefined;
|
|
6775
|
+
activeHandles?: boolean | undefined;
|
|
6776
|
+
} | undefined;
|
|
6777
|
+
} | undefined;
|
|
6495
6778
|
channels?: {
|
|
6496
6779
|
enabled: boolean;
|
|
6497
6780
|
defaultMeta?: Record<string, string> | undefined;
|
|
@@ -6849,6 +7132,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6849
7132
|
url?: string | undefined;
|
|
6850
7133
|
token?: string | undefined;
|
|
6851
7134
|
} | undefined;
|
|
7135
|
+
sqlite?: {
|
|
7136
|
+
ttlCleanupIntervalMs: number;
|
|
7137
|
+
walMode: boolean;
|
|
7138
|
+
path?: string | undefined;
|
|
7139
|
+
encryption?: {
|
|
7140
|
+
secret: string;
|
|
7141
|
+
} | undefined;
|
|
7142
|
+
} | undefined;
|
|
6852
7143
|
} | undefined;
|
|
6853
7144
|
providerCaching?: boolean | undefined;
|
|
6854
7145
|
eventStore?: {
|
|
@@ -6888,6 +7179,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6888
7179
|
http?: {
|
|
6889
7180
|
port: number;
|
|
6890
7181
|
entryPath: string;
|
|
7182
|
+
bodyLimit: string | number;
|
|
6891
7183
|
hostFactory?: any;
|
|
6892
7184
|
socketPath?: string | undefined;
|
|
6893
7185
|
cors?: false | {
|
|
@@ -6904,6 +7196,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
6904
7196
|
allowedOrigins?: string[] | undefined;
|
|
6905
7197
|
} | undefined;
|
|
6906
7198
|
} | undefined;
|
|
7199
|
+
urlencodedLimit?: string | number | undefined;
|
|
6907
7200
|
} | undefined;
|
|
6908
7201
|
redis?: {
|
|
6909
7202
|
provider: "redis";
|
|
@@ -7047,9 +7340,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7047
7340
|
} | undefined;
|
|
7048
7341
|
} | undefined;
|
|
7049
7342
|
sqlite?: {
|
|
7050
|
-
path: string;
|
|
7051
7343
|
ttlCleanupIntervalMs: number;
|
|
7052
7344
|
walMode: boolean;
|
|
7345
|
+
path?: string | undefined;
|
|
7053
7346
|
encryption?: {
|
|
7054
7347
|
secret: string;
|
|
7055
7348
|
} | undefined;
|
|
@@ -7172,6 +7465,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7172
7465
|
enabled?: boolean | undefined;
|
|
7173
7466
|
} | undefined;
|
|
7174
7467
|
} | undefined;
|
|
7468
|
+
metrics?: {
|
|
7469
|
+
enabled: boolean;
|
|
7470
|
+
path: string;
|
|
7471
|
+
format: "json" | "prometheus";
|
|
7472
|
+
auth: "token" | "public" | {
|
|
7473
|
+
token: string;
|
|
7474
|
+
};
|
|
7475
|
+
tokenEnv: string;
|
|
7476
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
7477
|
+
process?: {
|
|
7478
|
+
eventLoopLag?: boolean | undefined;
|
|
7479
|
+
fdCount?: boolean | undefined;
|
|
7480
|
+
activeHandles?: boolean | undefined;
|
|
7481
|
+
} | undefined;
|
|
7482
|
+
} | undefined;
|
|
7175
7483
|
channels?: {
|
|
7176
7484
|
enabled: boolean;
|
|
7177
7485
|
defaultMeta?: Record<string, string> | undefined;
|
|
@@ -7529,6 +7837,14 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7529
7837
|
url?: string | undefined;
|
|
7530
7838
|
token?: string | undefined;
|
|
7531
7839
|
} | undefined;
|
|
7840
|
+
sqlite?: {
|
|
7841
|
+
ttlCleanupIntervalMs: number;
|
|
7842
|
+
walMode: boolean;
|
|
7843
|
+
path?: string | undefined;
|
|
7844
|
+
encryption?: {
|
|
7845
|
+
secret: string;
|
|
7846
|
+
} | undefined;
|
|
7847
|
+
} | undefined;
|
|
7532
7848
|
} | undefined;
|
|
7533
7849
|
providerCaching?: boolean | undefined;
|
|
7534
7850
|
eventStore?: {
|
|
@@ -7568,6 +7884,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7568
7884
|
http?: {
|
|
7569
7885
|
port: number;
|
|
7570
7886
|
entryPath: string;
|
|
7887
|
+
bodyLimit: string | number;
|
|
7571
7888
|
hostFactory?: any;
|
|
7572
7889
|
socketPath?: string | undefined;
|
|
7573
7890
|
cors?: false | {
|
|
@@ -7584,6 +7901,7 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7584
7901
|
allowedOrigins?: string[] | undefined;
|
|
7585
7902
|
} | undefined;
|
|
7586
7903
|
} | undefined;
|
|
7904
|
+
urlencodedLimit?: string | number | undefined;
|
|
7587
7905
|
} | undefined;
|
|
7588
7906
|
redis?: {
|
|
7589
7907
|
provider: "redis";
|
|
@@ -7727,9 +8045,9 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7727
8045
|
} | undefined;
|
|
7728
8046
|
} | undefined;
|
|
7729
8047
|
sqlite?: {
|
|
7730
|
-
path: string;
|
|
7731
8048
|
ttlCleanupIntervalMs: number;
|
|
7732
8049
|
walMode: boolean;
|
|
8050
|
+
path?: string | undefined;
|
|
7733
8051
|
encryption?: {
|
|
7734
8052
|
secret: string;
|
|
7735
8053
|
} | undefined;
|
|
@@ -7852,6 +8170,21 @@ export declare const frontMcpMetadataSchema: import("zod").ZodPipe<import("@fron
|
|
|
7852
8170
|
enabled?: boolean | undefined;
|
|
7853
8171
|
} | undefined;
|
|
7854
8172
|
} | undefined;
|
|
8173
|
+
metrics?: {
|
|
8174
|
+
enabled: boolean;
|
|
8175
|
+
path: string;
|
|
8176
|
+
format: "json" | "prometheus";
|
|
8177
|
+
auth: "token" | "public" | {
|
|
8178
|
+
token: string;
|
|
8179
|
+
};
|
|
8180
|
+
tokenEnv: string;
|
|
8181
|
+
include?: ("auth" | "http" | "tools" | "resources" | "skills" | "process" | "storage" | "sessions")[] | undefined;
|
|
8182
|
+
process?: {
|
|
8183
|
+
eventLoopLag?: boolean | undefined;
|
|
8184
|
+
fdCount?: boolean | undefined;
|
|
8185
|
+
activeHandles?: boolean | undefined;
|
|
8186
|
+
} | undefined;
|
|
8187
|
+
} | undefined;
|
|
7855
8188
|
channels?: {
|
|
7856
8189
|
enabled: boolean;
|
|
7857
8190
|
defaultMeta?: Record<string, string> | undefined;
|