// This file is auto-generated by scripts/generate-schemas.ts // Do not edit manually. import { z } from "zod"; import { CustomFieldsDraftSchema, OrderReferenceSchema, StagedOrderUpdateActionSchema, } from "./common.ts"; export const OrderEditDraftSchema = z.object({ key: z.string().nullish(), resource: OrderReferenceSchema, stagedActions: z.array(StagedOrderUpdateActionSchema).nullish(), custom: CustomFieldsDraftSchema.nullish(), comment: z.string().nullish(), dryRun: z.boolean().nullish(), });