fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp
|
||||
import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema';
|
||||
import { PatientStatusSchema } from '../enums/PatientStatus.schema';
|
||||
import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientStatusFieldUpdateOperationsInputObjectSchema } from './EnumPatientStatusFieldUpdateOperationsInput.schema';
|
||||
import { ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutAppointmentNestedInput.schema'
|
||||
import { ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutAppointmentNestedInput.schema';
|
||||
import { AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(),
|
||||
@@ -23,7 +24,8 @@ const makeSchema = () => z.object({
|
||||
status: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(),
|
||||
createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(),
|
||||
eligibilityStatus: z.union([PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(),
|
||||
claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional()
|
||||
claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(),
|
||||
files: z.lazy(() => AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional()
|
||||
}).strict();
|
||||
export const AppointmentUncheckedUpdateWithoutProceduresInputObjectSchema: z.ZodType<Prisma.AppointmentUncheckedUpdateWithoutProceduresInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentUncheckedUpdateWithoutProceduresInput>;
|
||||
export const AppointmentUncheckedUpdateWithoutProceduresInputObjectZodSchema = makeSchema();
|
||||
|
||||
Reference in New Issue
Block a user