import type { Prisma } from '../../generated/prisma'; import * as z from 'zod'; import { StaffWhereInputObjectSchema as StaffWhereInputObjectSchema } from './objects/StaffWhereInput.schema'; export const StaffDeleteManySchema: z.ZodType = z.object({ where: StaffWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; export const StaffDeleteManyZodSchema = z.object({ where: StaffWhereInputObjectSchema.optional() }).strict();