initial commit
This commit is contained in:
50
packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.d.ts
vendored
Normal file
50
packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentMaxAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentMaxAggregateInputType>;
|
||||
export declare const AppointmentMaxAggregateInputObjectZodSchema: 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=AppointmentMaxAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user