// This file is auto-generated by scripts/generate-schemas.ts // Do not edit manually. import { z } from "zod"; import { CustomFieldsDraftSchema, StagedQuoteResourceIdentifierSchema, StateReferenceSchema, } from "./common.ts"; export const QuoteDraftSchema = z.object({ key: z.string().nullish(), stagedQuote: StagedQuoteResourceIdentifierSchema, stagedQuoteVersion: z.number().int(), stagedQuoteStateToSent: z.boolean().nullish(), state: StateReferenceSchema.nullish(), custom: CustomFieldsDraftSchema.nullish(), });