83 lines
4.9 KiB
TypeScript
83 lines
4.9 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PatientUncheckedCreateWithoutClaimsInputObjectSchema: z.ZodType<Prisma.PatientUncheckedCreateWithoutClaimsInput>;
|
|
export declare const PatientUncheckedCreateWithoutClaimsInputObjectZodSchema: 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>>>;
|
|
procedures: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutPatientInput, z.ZodTypeDef, Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutPatientInput>>>;
|
|
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;
|
|
procedures?: Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutPatientInput | 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;
|
|
procedures?: Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutPatientInput | 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=PatientUncheckedCreateWithoutClaimsInput.schema.d.ts.map
|