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 PatientCreateManyInputObjectSchema: z.ZodType<Prisma.PatientCreateManyInput>;
export declare const PatientCreateManyInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
firstName: z.ZodString;
lastName: z.ZodString;
dateOfBirth: z.ZodDate;
gender: z.ZodString;
phone: z.ZodString;
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
zipCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
insuranceProvider: z.ZodNullable<z.ZodOptional<z.ZodString>>;
insuranceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
groupNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
policyHolder: z.ZodNullable<z.ZodOptional<z.ZodString>>;
allergies: z.ZodNullable<z.ZodOptional<z.ZodString>>;
medicalConditions: z.ZodNullable<z.ZodOptional<z.ZodString>>;
status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN"]>>;
userId: z.ZodNumber;
createdAt: z.ZodOptional<z.ZodDate>;
}, "strict", z.ZodTypeAny, {
userId: number;
phone: string;
dateOfBirth: Date;
firstName: string;
lastName: string;
gender: string;
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
createdAt?: Date | undefined;
id?: number | undefined;
email?: string | null | undefined;
insuranceProvider?: string | null | undefined;
address?: string | null | undefined;
city?: string | null | undefined;
zipCode?: string | null | undefined;
insuranceId?: string | null | undefined;
groupNumber?: string | null | undefined;
policyHolder?: string | null | undefined;
allergies?: string | null | undefined;
medicalConditions?: string | null | undefined;
}, {
userId: number;
phone: string;
dateOfBirth: Date;
firstName: string;
lastName: string;
gender: string;
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
createdAt?: Date | undefined;
id?: number | undefined;
email?: string | null | undefined;
insuranceProvider?: string | null | undefined;
address?: string | null | undefined;
city?: string | null | undefined;
zipCode?: string | null | undefined;
insuranceId?: string | null | undefined;
groupNumber?: string | null | undefined;
policyHolder?: string | null | undefined;
allergies?: string | null | undefined;
medicalConditions?: string | null | undefined;
}>;
//# sourceMappingURL=PatientCreateManyInput.schema.d.ts.map