initial commit
This commit is contained in:
50
packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.d.ts
vendored
Normal file
50
packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentUpdateWithoutUserInputObjectSchema: z.ZodType<Prisma.AppointmentUpdateWithoutUserInput>;
|
||||
export declare const AppointmentUpdateWithoutUserInputObjectZodSchema: z.ZodObject<{
|
||||
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
||||
date: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
||||
startTime: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
||||
endTime: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
||||
type: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
||||
notes: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
||||
procedureCodeNotes: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
||||
status: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
|
||||
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
||||
eligibilityStatus: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN"]>, z.ZodLazy<z.ZodType<Prisma.EnumPatientStatusFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.EnumPatientStatusFieldUpdateOperationsInput>>]>>;
|
||||
patient: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientUpdateOneRequiredWithoutAppointmentsNestedInput, z.ZodTypeDef, Prisma.PatientUpdateOneRequiredWithoutAppointmentsNestedInput>>>;
|
||||
staff: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffUpdateOneWithoutAppointmentsNestedInput, z.ZodTypeDef, Prisma.StaffUpdateOneWithoutAppointmentsNestedInput>>>;
|
||||
procedures: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureUpdateManyWithoutAppointmentNestedInput, z.ZodTypeDef, Prisma.AppointmentProcedureUpdateManyWithoutAppointmentNestedInput>>>;
|
||||
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimUpdateManyWithoutAppointmentNestedInput, z.ZodTypeDef, Prisma.ClaimUpdateManyWithoutAppointmentNestedInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
type?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
status?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
||||
date?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
||||
title?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
patient?: Prisma.PatientUpdateOneRequiredWithoutAppointmentsNestedInput | undefined;
|
||||
startTime?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
endTime?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
notes?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
procedureCodeNotes?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFieldUpdateOperationsInput | undefined;
|
||||
staff?: Prisma.StaffUpdateOneWithoutAppointmentsNestedInput | undefined;
|
||||
procedures?: Prisma.AppointmentProcedureUpdateManyWithoutAppointmentNestedInput | undefined;
|
||||
claims?: Prisma.ClaimUpdateManyWithoutAppointmentNestedInput | undefined;
|
||||
}, {
|
||||
type?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
status?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
||||
date?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
||||
title?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
patient?: Prisma.PatientUpdateOneRequiredWithoutAppointmentsNestedInput | undefined;
|
||||
startTime?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
endTime?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
notes?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
procedureCodeNotes?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | Prisma.EnumPatientStatusFieldUpdateOperationsInput | undefined;
|
||||
staff?: Prisma.StaffUpdateOneWithoutAppointmentsNestedInput | undefined;
|
||||
procedures?: Prisma.AppointmentProcedureUpdateManyWithoutAppointmentNestedInput | undefined;
|
||||
claims?: Prisma.ClaimUpdateManyWithoutAppointmentNestedInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentUpdateWithoutUserInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user