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