Variable JSONRPCNotificationSchemaConst
JSONRPCNotificationSchema: ZodObject<
extendShape<
{ jsonrpc: ZodLiteral<"2.0"> },
{
method: ZodString;
params: ZodOptional<
ZodObject<
{ _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
"passthrough",
ZodTypeAny,
objectOutputType<
{ _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
ZodTypeAny,
"passthrough",
>,
objectInputType<
{ _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
ZodTypeAny,
"passthrough",
>,
>,
>;
},
>,
"strict",
ZodTypeAny,
{
jsonrpc: "2.0";
method: string;
params?: objectOutputType<
{ _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
ZodTypeAny,
"passthrough",
>;
},
{
jsonrpc: "2.0";
method: string;
params?: objectInputType<
{ _meta: ZodOptional<ZodRecord<ZodString, ZodUnknown>> },
ZodTypeAny,
"passthrough",
>;
},
> = ...
A notification which does not expect a response.