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

@@ -0,0 +1,21 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema';
import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema';
import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema';
import { AppointmentScalarRelationFilterObjectSchema as AppointmentScalarRelationFilterObjectSchema } from './AppointmentScalarRelationFilter.schema';
import { AppointmentWhereInputObjectSchema as AppointmentWhereInputObjectSchema } from './AppointmentWhereInput.schema'
const appointmentfilewhereinputSchema = z.object({
AND: z.union([z.lazy(() => AppointmentFileWhereInputObjectSchema), z.lazy(() => AppointmentFileWhereInputObjectSchema).array()]).optional(),
OR: z.lazy(() => AppointmentFileWhereInputObjectSchema).array().optional(),
NOT: z.union([z.lazy(() => AppointmentFileWhereInputObjectSchema), z.lazy(() => AppointmentFileWhereInputObjectSchema).array()]).optional(),
id: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(),
appointmentId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(),
filename: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(),
mimeType: z.union([z.lazy(() => StringNullableFilterObjectSchema), z.string()]).optional().nullable(),
filePath: z.union([z.lazy(() => StringNullableFilterObjectSchema), z.string()]).optional().nullable(),
appointment: z.union([z.lazy(() => AppointmentScalarRelationFilterObjectSchema), z.lazy(() => AppointmentWhereInputObjectSchema)]).optional()
}).strict();
export const AppointmentFileWhereInputObjectSchema: z.ZodType<Prisma.AppointmentFileWhereInput> = appointmentfilewhereinputSchema as unknown as z.ZodType<Prisma.AppointmentFileWhereInput>;
export const AppointmentFileWhereInputObjectZodSchema = appointmentfilewhereinputSchema;