fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -8,7 +8,8 @@ import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientS
|
||||
import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema';
|
||||
import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema';
|
||||
import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema';
|
||||
import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'
|
||||
import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema';
|
||||
import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(),
|
||||
@@ -24,7 +25,8 @@ const makeSchema = () => z.object({
|
||||
patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(),
|
||||
user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(),
|
||||
staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(),
|
||||
claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional()
|
||||
claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(),
|
||||
files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional()
|
||||
}).strict();
|
||||
export const AppointmentUpdateWithoutProceduresInputObjectSchema: z.ZodType<Prisma.AppointmentUpdateWithoutProceduresInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentUpdateWithoutProceduresInput>;
|
||||
export const AppointmentUpdateWithoutProceduresInputObjectZodSchema = makeSchema();
|
||||
|
||||
Reference in New Issue
Block a user