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

80 lines
9.0 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PatientUpdateWithoutAppointmentsInputObjectSchema: z.ZodType<Prisma.PatientUpdateWithoutAppointmentsInput>;
export declare const PatientUpdateWithoutAppointmentsInputObjectZodSchema: z.ZodObject<{
firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
dateOfBirth: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
gender: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
phone: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
email: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
address: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
city: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
zipCode: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
insuranceProvider: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
insuranceId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
groupNumber: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
policyHolder: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
allergies: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
medicalConditions: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN"]>, z.ZodLazy<z.ZodType<Prisma.EnumPatientStatusFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.EnumPatientStatusFieldUpdateOperationsInput>>]>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserUpdateOneRequiredWithoutPatientsNestedInput, z.ZodTypeDef, Prisma.UserUpdateOneRequiredWithoutPatientsNestedInput>>>;
procedures: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.AppointmentProcedureUpdateManyWithoutPatientNestedInput>>>;
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.ClaimUpdateManyWithoutPatientNestedInput>>>;
groups: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfGroupUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.PdfGroupUpdateManyWithoutPatientNestedInput>>>;
payment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.PaymentUpdateManyWithoutPatientNestedInput>>>;
communications: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.CommunicationUpdateManyWithoutPatientNestedInput>>>;
documents: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientDocumentUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.PatientDocumentUpdateManyWithoutPatientNestedInput>>>;
}, "strict", z.ZodTypeAny, {
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFieldUpdateOperationsInput | undefined;
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
user?: Prisma.UserUpdateOneRequiredWithoutPatientsNestedInput | undefined;
procedures?: Prisma.AppointmentProcedureUpdateManyWithoutPatientNestedInput | undefined;
claims?: Prisma.ClaimUpdateManyWithoutPatientNestedInput | undefined;
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
phone?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
payment?: Prisma.PaymentUpdateManyWithoutPatientNestedInput | undefined;
dateOfBirth?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
insuranceProvider?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
gender?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
address?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
city?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
zipCode?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
insuranceId?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
groupNumber?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
policyHolder?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
allergies?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
medicalConditions?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
groups?: Prisma.PdfGroupUpdateManyWithoutPatientNestedInput | undefined;
documents?: Prisma.PatientDocumentUpdateManyWithoutPatientNestedInput | undefined;
communications?: Prisma.CommunicationUpdateManyWithoutPatientNestedInput | undefined;
}, {
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFieldUpdateOperationsInput | undefined;
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
user?: Prisma.UserUpdateOneRequiredWithoutPatientsNestedInput | undefined;
procedures?: Prisma.AppointmentProcedureUpdateManyWithoutPatientNestedInput | undefined;
claims?: Prisma.ClaimUpdateManyWithoutPatientNestedInput | undefined;
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
phone?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
payment?: Prisma.PaymentUpdateManyWithoutPatientNestedInput | undefined;
dateOfBirth?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
insuranceProvider?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
firstName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
lastName?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
gender?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
address?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
city?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
zipCode?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
insuranceId?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
groupNumber?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
policyHolder?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
allergies?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
medicalConditions?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
groups?: Prisma.PdfGroupUpdateManyWithoutPatientNestedInput | undefined;
documents?: Prisma.PatientDocumentUpdateManyWithoutPatientNestedInput | undefined;
communications?: Prisma.CommunicationUpdateManyWithoutPatientNestedInput | undefined;
}>;
//# sourceMappingURL=PatientUpdateWithoutAppointmentsInput.schema.d.ts.map