fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -6,7 +6,8 @@ import { PatientOrderByWithRelationInputObjectSchema as PatientOrderByWithRelati
|
||||
import { UserOrderByWithRelationInputObjectSchema as UserOrderByWithRelationInputObjectSchema } from './UserOrderByWithRelationInput.schema';
|
||||
import { StaffOrderByWithRelationInputObjectSchema as StaffOrderByWithRelationInputObjectSchema } from './StaffOrderByWithRelationInput.schema';
|
||||
import { AppointmentProcedureOrderByRelationAggregateInputObjectSchema as AppointmentProcedureOrderByRelationAggregateInputObjectSchema } from './AppointmentProcedureOrderByRelationAggregateInput.schema';
|
||||
import { ClaimOrderByRelationAggregateInputObjectSchema as ClaimOrderByRelationAggregateInputObjectSchema } from './ClaimOrderByRelationAggregateInput.schema'
|
||||
import { ClaimOrderByRelationAggregateInputObjectSchema as ClaimOrderByRelationAggregateInputObjectSchema } from './ClaimOrderByRelationAggregateInput.schema';
|
||||
import { AppointmentFileOrderByRelationAggregateInputObjectSchema as AppointmentFileOrderByRelationAggregateInputObjectSchema } from './AppointmentFileOrderByRelationAggregateInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: SortOrderSchema.optional(),
|
||||
@@ -27,7 +28,8 @@ const makeSchema = () => z.object({
|
||||
user: z.lazy(() => UserOrderByWithRelationInputObjectSchema).optional(),
|
||||
staff: z.lazy(() => StaffOrderByWithRelationInputObjectSchema).optional(),
|
||||
procedures: z.lazy(() => AppointmentProcedureOrderByRelationAggregateInputObjectSchema).optional(),
|
||||
claims: z.lazy(() => ClaimOrderByRelationAggregateInputObjectSchema).optional()
|
||||
claims: z.lazy(() => ClaimOrderByRelationAggregateInputObjectSchema).optional(),
|
||||
files: z.lazy(() => AppointmentFileOrderByRelationAggregateInputObjectSchema).optional()
|
||||
}).strict();
|
||||
export const AppointmentOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.AppointmentOrderByWithRelationInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentOrderByWithRelationInput>;
|
||||
export const AppointmentOrderByWithRelationInputObjectZodSchema = makeSchema();
|
||||
|
||||
Reference in New Issue
Block a user