// This file is auto-generated by scripts/generate-schemas.ts // Do not edit manually. import { z } from "zod"; import { CustomFieldsDraftSchema, LocalizedStringSchema, ProductSelectionModeSchema, ProductSelectionTypeEnumSchema, } from "./common.ts"; export const ProductSelectionDraftSchema = z.object({ key: z.string().nullish(), name: LocalizedStringSchema, custom: CustomFieldsDraftSchema.nullish(), type: ProductSelectionTypeEnumSchema.nullish(), mode: ProductSelectionModeSchema.nullish(), });