fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { AppointmentArgsObjectSchema as AppointmentArgsObjectSchema } from './AppointmentArgs.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
appointment: z.union([z.boolean(), z.lazy(() => AppointmentArgsObjectSchema)]).optional()
|
||||
}).strict();
|
||||
export const AppointmentFileSelectObjectSchema: z.ZodType<Prisma.AppointmentFileSelect> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentFileSelect>;
|
||||
export const AppointmentFileSelectObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user