Files
DentalManagementMH06/packages/db/shared/schemas/objects/AppointmentFileOrderByRelationAggregateInput.schema.ts

10 lines
546 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { SortOrderSchema } from '../enums/SortOrder.schema'
const makeSchema = () => z.object({
_count: SortOrderSchema.optional()
}).strict();
export const AppointmentFileOrderByRelationAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentFileOrderByRelationAggregateInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentFileOrderByRelationAggregateInput>;
export const AppointmentFileOrderByRelationAggregateInputObjectZodSchema = makeSchema();