import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { CommunicationChannelSchema } from '../enums/CommunicationChannel.schema' const makeSchema = () => z.object({ set: CommunicationChannelSchema.optional() }).strict(); export const EnumCommunicationChannelFieldUpdateOperationsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const EnumCommunicationChannelFieldUpdateOperationsInputObjectZodSchema = makeSchema();