Variable InitializeRequestParamsSchemaConst
InitializeRequestParamsSchema: ZodObject<
extendShape<
{
_meta: ZodOptional<
ZodObject<
{ progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
"passthrough",
ZodTypeAny,
objectOutputType<
{ progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
ZodTypeAny,
"passthrough",
>,
objectInputType<
{ progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
ZodTypeAny,
"passthrough",
>,
>,
>;
},
{
capabilities: ZodObject<
{
elicitation: ZodIntersection<
ZodOptional<
ZodObject<
{ applyDefaults: ZodOptional<ZodBoolean> },
"strip",
ZodTypeAny,
{ applyDefaults?: boolean },
{ applyDefaults?: boolean },
>,
>,
ZodOptional<ZodRecord<ZodString, ZodUnknown>>,
>;
experimental: ZodOptional<
ZodRecord<ZodString, ZodType<object, ZodTypeDef, object>>,
>;
roots: ZodOptional<
ZodObject<
{ listChanged: ZodOptional<ZodBoolean> },
"strip",
ZodTypeAny,
{ listChanged?: boolean },
{ listChanged?: boolean },
>,
>;
sampling: ZodOptional<ZodType<object, ZodTypeDef, object>>;
},
"strip",
ZodTypeAny,
{
elicitation?: { applyDefaults?: boolean } & Record<string, unknown>;
experimental?: Record<string, object>;
roots?: { listChanged?: boolean };
sampling?: object;
},
{
elicitation?: { applyDefaults?: boolean } & Record<string, unknown>;
experimental?: Record<string, object>;
roots?: { listChanged?: boolean };
sampling?: object;
},
>;
clientInfo: ZodObject<
extendShape<
extendShape<
{ name: ZodString; title: ZodOptional<ZodString> },
{ version: ZodString; websiteUrl: ZodOptional<ZodString> },
>,
{
icons: ZodOptional<
ZodArray<
ZodObject<
{
mimeType: ZodOptional<(...)>;
sizes: ZodOptional<(...)>;
src: ZodString;
},
"strip",
ZodTypeAny,
{ mimeType?: (...)
| (...); sizes?: (...) | (...); src: string },
{ mimeType?: (...) | (...); sizes?: (...) | (...); src: string },
>,
"many",
>,
>;
},
>,
"strip",
ZodTypeAny,
{
icons?: { mimeType?: string; sizes?: string[]; src: string }[];
name: string;
title?: string;
version: string;
websiteUrl?: string;
},
{
icons?: { mimeType?: string; sizes?: string[]; src: string }[];
name: string;
title?: string;
version: string;
websiteUrl?: string;
},
>;
protocolVersion: ZodString;
},
>,
"strip",
ZodTypeAny,
{
_meta?: objectOutputType<
{ progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
ZodTypeAny,
"passthrough",
>;
capabilities: {
elicitation?: { applyDefaults?: boolean } & Record<string, unknown>;
experimental?: Record<string, object>;
roots?: { listChanged?: boolean };
sampling?: object;
};
clientInfo: {
icons?: { mimeType?: string; sizes?: string[]; src: string }[];
name: string;
title?: string;
version: string;
websiteUrl?: string;
};
protocolVersion: string;
},
{
_meta?: objectInputType<
{ progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>> },
ZodTypeAny,
"passthrough",
>;
capabilities: {
elicitation?: { applyDefaults?: boolean } & Record<string, unknown>;
experimental?: Record<string, object>;
roots?: { listChanged?: boolean };
sampling?: object;
};
clientInfo: {
icons?: { mimeType?: string; sizes?: string[]; src: string }[];
name: string;
title?: string;
version: string;
websiteUrl?: string;
};
protocolVersion: string;
},
> = ...