TaskSchema: ZodObject<
{
action: ZodString;
done: ZodString;
files: ZodOptional<ZodArray<ZodString, "many">>;
name: ZodString;
type: ZodEnum<
[
"auto",
"checkpoint:human-verify",
"checkpoint:decision",
"checkpoint:human-action",
],
>;
verify: ZodString;
},
"strip",
ZodTypeAny,
{
action: string;
done: string;
files?: string[];
name: string;
type: | "auto"
| "checkpoint:human-verify"
| "checkpoint:decision"
| "checkpoint:human-action";
verify: string;
},
{
action: string;
done: string;
files?: string[];
name: string;
type: | "auto"
| "checkpoint:human-verify"
| "checkpoint:decision"
| "checkpoint:human-action";
verify: string;
},
> = ...