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

@@ -13,7 +13,8 @@ import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './User
import { StaffNullableScalarRelationFilterObjectSchema as StaffNullableScalarRelationFilterObjectSchema } from './StaffNullableScalarRelationFilter.schema';
import { StaffWhereInputObjectSchema as StaffWhereInputObjectSchema } from './StaffWhereInput.schema';
import { AppointmentProcedureListRelationFilterObjectSchema as AppointmentProcedureListRelationFilterObjectSchema } from './AppointmentProcedureListRelationFilter.schema';
import { ClaimListRelationFilterObjectSchema as ClaimListRelationFilterObjectSchema } from './ClaimListRelationFilter.schema'
import { ClaimListRelationFilterObjectSchema as ClaimListRelationFilterObjectSchema } from './ClaimListRelationFilter.schema';
import { AppointmentFileListRelationFilterObjectSchema as AppointmentFileListRelationFilterObjectSchema } from './AppointmentFileListRelationFilter.schema'
const appointmentwhereinputSchema = z.object({
AND: z.union([z.lazy(() => AppointmentWhereInputObjectSchema), z.lazy(() => AppointmentWhereInputObjectSchema).array()]).optional(),
@@ -37,7 +38,8 @@ const appointmentwhereinputSchema = z.object({
user: z.union([z.lazy(() => UserScalarRelationFilterObjectSchema), z.lazy(() => UserWhereInputObjectSchema)]).optional(),
staff: z.union([z.lazy(() => StaffNullableScalarRelationFilterObjectSchema), z.lazy(() => StaffWhereInputObjectSchema)]).optional(),
procedures: z.lazy(() => AppointmentProcedureListRelationFilterObjectSchema).optional(),
claims: z.lazy(() => ClaimListRelationFilterObjectSchema).optional()
claims: z.lazy(() => ClaimListRelationFilterObjectSchema).optional(),
files: z.lazy(() => AppointmentFileListRelationFilterObjectSchema).optional()
}).strict();
export const AppointmentWhereInputObjectSchema: z.ZodType<Prisma.AppointmentWhereInput> = appointmentwhereinputSchema as unknown as z.ZodType<Prisma.AppointmentWhereInput>;
export const AppointmentWhereInputObjectZodSchema = appointmentwhereinputSchema;