Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/EnumCommunicationChannelFieldUpdateOperationsInput.schema.ts
2026-04-04 22:13:55 -04:00

10 lines
600 B
TypeScript

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<Prisma.EnumCommunicationChannelFieldUpdateOperationsInput> = makeSchema() as unknown as z.ZodType<Prisma.EnumCommunicationChannelFieldUpdateOperationsInput>;
export const EnumCommunicationChannelFieldUpdateOperationsInputObjectZodSchema = makeSchema();