Variable TextEditor20250728CommandSchemaConst
TextEditor20250728CommandSchema: ZodDiscriminatedUnion<
[
ZodObject<
{
command: ZodLiteral<"view">;
path: ZodString;
view_range: ZodOptional<ZodTuple<[ZodNumber, ZodNumber], null>>;
},
$strip,
>,
ZodObject<
{
command: ZodLiteral<"str_replace">;
new_str: ZodString;
old_str: ZodString;
path: ZodString;
},
$strip,
>,
ZodObject<
{
command: ZodLiteral<"create">;
file_text: ZodString;
path: ZodString;
},
$strip,
>,
ZodObject<
{
command: ZodLiteral<"insert">;
insert_line: ZodNumber;
new_str: ZodString;
path: ZodString;
},
$strip,
>,
],
"command",
> = ...