initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PatientMaxAggregateInputObjectSchema: z.ZodType<Prisma.PatientMaxAggregateInputType>;
export declare const PatientMaxAggregateInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodLiteral<true>>;
firstName: z.ZodOptional<z.ZodLiteral<true>>;
lastName: z.ZodOptional<z.ZodLiteral<true>>;
dateOfBirth: z.ZodOptional<z.ZodLiteral<true>>;
gender: z.ZodOptional<z.ZodLiteral<true>>;
phone: z.ZodOptional<z.ZodLiteral<true>>;
email: z.ZodOptional<z.ZodLiteral<true>>;
address: z.ZodOptional<z.ZodLiteral<true>>;
city: z.ZodOptional<z.ZodLiteral<true>>;
zipCode: z.ZodOptional<z.ZodLiteral<true>>;
insuranceProvider: z.ZodOptional<z.ZodLiteral<true>>;
insuranceId: z.ZodOptional<z.ZodLiteral<true>>;
groupNumber: z.ZodOptional<z.ZodLiteral<true>>;
policyHolder: z.ZodOptional<z.ZodLiteral<true>>;
allergies: z.ZodOptional<z.ZodLiteral<true>>;
medicalConditions: z.ZodOptional<z.ZodLiteral<true>>;
status: z.ZodOptional<z.ZodLiteral<true>>;
userId: z.ZodOptional<z.ZodLiteral<true>>;
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
}, "strict", z.ZodTypeAny, {
status?: true | undefined;
createdAt?: true | undefined;
id?: true | undefined;
userId?: true | undefined;
email?: true | undefined;
phone?: true | undefined;
dateOfBirth?: true | undefined;
insuranceProvider?: true | undefined;
firstName?: true | undefined;
lastName?: true | undefined;
gender?: true | undefined;
address?: true | undefined;
city?: true | undefined;
zipCode?: true | undefined;
insuranceId?: true | undefined;
groupNumber?: true | undefined;
policyHolder?: true | undefined;
allergies?: true | undefined;
medicalConditions?: true | undefined;
}, {
status?: true | undefined;
createdAt?: true | undefined;
id?: true | undefined;
userId?: true | undefined;
email?: true | undefined;
phone?: true | undefined;
dateOfBirth?: true | undefined;
insuranceProvider?: true | undefined;
firstName?: true | undefined;
lastName?: true | undefined;
gender?: true | undefined;
address?: true | undefined;
city?: true | undefined;
zipCode?: true | undefined;
insuranceId?: true | undefined;
groupNumber?: true | undefined;
policyHolder?: true | undefined;
allergies?: true | undefined;
medicalConditions?: true | undefined;
}>;
//# sourceMappingURL=PatientMaxAggregateInput.schema.d.ts.map