Variable privateServiceSchemaConst
privateServiceSchema: ZodObject<
{
functions: ZodArray<
ZodObject<
{
description: ZodString;
input_schema: ZodRecord<
ZodString,
ZodType<{} | null, ZodTypeDef, {} | null>,
>;
name: ZodString;
output_schema: ZodOptional<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
>;
},
"strip",
ZodTypeAny,
{
description: string;
input_schema: Record<string, {} | null>;
name: string;
output_schema?: Record<string, {} | null>;
},
{
description: string;
input_schema: Record<string, {} | null>;
name: string;
output_schema?: Record<string, {} | null>;
},
>,
"many",
>;
id: ZodString;
},
"strip",
ZodTypeAny,
{
functions: {
description: string;
input_schema: Record<string, {} | null>;
name: string;
output_schema?: Record<string, {} | null>;
}[];
id: string;
},
{
functions: {
description: string;
input_schema: Record<string, {} | null>;
name: string;
output_schema?: Record<string, {} | null>;
}[];
id: string;
},
> = ...
Runtime validator for PrivateService.