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

83 lines
4.8 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PatientUncheckedCreateWithoutProceduresInputObjectSchema: z.ZodType<Prisma.PatientUncheckedCreateWithoutProceduresInput>;
export declare const PatientUncheckedCreateWithoutProceduresInputObjectZodSchema: 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>;
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentUncheckedCreateNestedManyWithoutPatientInput, z.ZodTypeDef, Prisma.AppointmentUncheckedCreateNestedManyWithoutPatientInput>>>;
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimUncheckedCreateNestedManyWithoutPatientInput, z.ZodTypeDef, Prisma.ClaimUncheckedCreateNestedManyWithoutPatientInput>>>;
groups: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfGroupUncheckedCreateNestedManyWithoutPatientInput, z.ZodTypeDef, Prisma.PdfGroupUncheckedCreateNestedManyWithoutPatientInput>>>;
payment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentUncheckedCreateNestedManyWithoutPatientInput, z.ZodTypeDef, Prisma.PaymentUncheckedCreateNestedManyWithoutPatientInput>>>;
communications: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationUncheckedCreateNestedManyWithoutPatientInput, z.ZodTypeDef, Prisma.CommunicationUncheckedCreateNestedManyWithoutPatientInput>>>;
documents: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientDocumentUncheckedCreateNestedManyWithoutPatientInput, z.ZodTypeDef, Prisma.PatientDocumentUncheckedCreateNestedManyWithoutPatientInput>>>;
}, "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;
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutPatientInput | undefined;
email?: string | null | undefined;
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutPatientInput | undefined;
payment?: Prisma.PaymentUncheckedCreateNestedManyWithoutPatientInput | 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;
groups?: Prisma.PdfGroupUncheckedCreateNestedManyWithoutPatientInput | undefined;
documents?: Prisma.PatientDocumentUncheckedCreateNestedManyWithoutPatientInput | undefined;
communications?: Prisma.CommunicationUncheckedCreateNestedManyWithoutPatientInput | undefined;
}, {
userId: number;
phone: string;
dateOfBirth: Date;
firstName: string;
lastName: string;
gender: string;
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
createdAt?: Date | undefined;
id?: number | undefined;
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutPatientInput | undefined;
email?: string | null | undefined;
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutPatientInput | undefined;
payment?: Prisma.PaymentUncheckedCreateNestedManyWithoutPatientInput | 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;
groups?: Prisma.PdfGroupUncheckedCreateNestedManyWithoutPatientInput | undefined;
documents?: Prisma.PatientDocumentUncheckedCreateNestedManyWithoutPatientInput | undefined;
communications?: Prisma.CommunicationUncheckedCreateNestedManyWithoutPatientInput | undefined;
}>;
//# sourceMappingURL=PatientUncheckedCreateWithoutProceduresInput.schema.d.ts.map