initial commit
This commit is contained in:
80
packages/db/shared/schemas/objects/PatientUpdateWithoutClaimsInput.schema.d.ts
vendored
Normal file
80
packages/db/shared/schemas/objects/PatientUpdateWithoutClaimsInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const PatientUpdateWithoutClaimsInputObjectSchema: z.ZodType<Prisma.PatientUpdateWithoutClaimsInput>;
|
||||
export declare const PatientUpdateWithoutClaimsInputObjectZodSchema: 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>>>;
|
||||
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.AppointmentUpdateManyWithoutPatientNestedInput>>>;
|
||||
procedures: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureUpdateManyWithoutPatientNestedInput, z.ZodTypeDef, Prisma.AppointmentProcedureUpdateManyWithoutPatientNestedInput>>>;
|
||||
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;
|
||||
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
phone?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
appointments?: Prisma.AppointmentUpdateManyWithoutPatientNestedInput | 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;
|
||||
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
phone?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
appointments?: Prisma.AppointmentUpdateManyWithoutPatientNestedInput | 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=PatientUpdateWithoutClaimsInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user