fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user