fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -5,7 +5,8 @@ import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCr
|
||||
import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema';
|
||||
import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema';
|
||||
import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema';
|
||||
import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema'
|
||||
import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema';
|
||||
import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
title: z.string(),
|
||||
@@ -22,7 +23,8 @@ const makeSchema = () => z.object({
|
||||
user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema),
|
||||
staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(),
|
||||
procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(),
|
||||
claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional()
|
||||
claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(),
|
||||
files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional()
|
||||
}).strict();
|
||||
export const AppointmentCreateInputObjectSchema: z.ZodType<Prisma.AppointmentCreateInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentCreateInput>;
|
||||
export const AppointmentCreateInputObjectZodSchema = makeSchema();
|
||||
|
||||
Reference in New Issue
Block a user