Variable scriptRunResultSchemaConst
scriptRunResultSchema: ZodObject<
{
error: ZodOptional<ZodString>;
findings: ZodOptional<
ZodArray<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
"many",
>,
>;
output: ZodOptional<
ZodArray<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
"many",
>,
>;
result: ZodOptional<ZodType<{} | null, ZodTypeDef, {} | null>>;
},
"strip",
ZodTypeAny,
{
error?: string;
findings?: Record<string, {} | null>[];
output?: Record<string, {} | null>[];
result?: {} | null;
},
{
error?: string;
findings?: Record<string, {} | null>[];
output?: Record<string, {} | null>[];
result?: {} | null;
},
> = ...
Runtime validator for ScriptRunResult.