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

50 lines
1.9 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const AppointmentMinAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentMinAggregateInputType>;
export declare const AppointmentMinAggregateInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodLiteral<true>>;
patientId: z.ZodOptional<z.ZodLiteral<true>>;
userId: z.ZodOptional<z.ZodLiteral<true>>;
staffId: z.ZodOptional<z.ZodLiteral<true>>;
title: z.ZodOptional<z.ZodLiteral<true>>;
date: z.ZodOptional<z.ZodLiteral<true>>;
startTime: z.ZodOptional<z.ZodLiteral<true>>;
endTime: z.ZodOptional<z.ZodLiteral<true>>;
type: z.ZodOptional<z.ZodLiteral<true>>;
notes: z.ZodOptional<z.ZodLiteral<true>>;
procedureCodeNotes: z.ZodOptional<z.ZodLiteral<true>>;
status: z.ZodOptional<z.ZodLiteral<true>>;
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
eligibilityStatus: z.ZodOptional<z.ZodLiteral<true>>;
}, "strict", z.ZodTypeAny, {
type?: true | undefined;
status?: true | undefined;
createdAt?: true | undefined;
id?: true | undefined;
userId?: true | undefined;
date?: true | undefined;
title?: true | undefined;
patientId?: true | undefined;
startTime?: true | undefined;
endTime?: true | undefined;
notes?: true | undefined;
procedureCodeNotes?: true | undefined;
eligibilityStatus?: true | undefined;
staffId?: true | undefined;
}, {
type?: true | undefined;
status?: true | undefined;
createdAt?: true | undefined;
id?: true | undefined;
userId?: true | undefined;
date?: true | undefined;
title?: true | undefined;
patientId?: true | undefined;
startTime?: true | undefined;
endTime?: true | undefined;
notes?: true | undefined;
procedureCodeNotes?: true | undefined;
eligibilityStatus?: true | undefined;
staffId?: true | undefined;
}>;
//# sourceMappingURL=AppointmentMinAggregateInput.schema.d.ts.map