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

16 lines
628 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.literal(true).optional(),
userId: z.literal(true).optional(),
name: z.literal(true).optional(),
email: z.literal(true).optional(),
role: z.literal(true).optional(),
phone: z.literal(true).optional(),
createdAt: z.literal(true).optional()
}).strict();
export const StaffMaxAggregateInputObjectSchema: z.ZodType<Prisma.StaffMaxAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.StaffMaxAggregateInputType>;
export const StaffMaxAggregateInputObjectZodSchema = makeSchema();