fix: fix remote browser socket connection and related updates

This commit is contained in:
Gitead
2026-04-30 11:52:58 -04:00
parent 441cfcc8e3
commit d8f852741a
959 changed files with 13338 additions and 2208 deletions

View File

@@ -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();