initial commit
This commit is contained in:
13
packages/db/shared/schemas/upsertOneAppointment.schema.ts
Normal file
13
packages/db/shared/schemas/upsertOneAppointment.schema.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentSelectObjectSchema as AppointmentSelectObjectSchema } from './objects/AppointmentSelect.schema';
|
||||
import { AppointmentIncludeObjectSchema as AppointmentIncludeObjectSchema } from './objects/AppointmentInclude.schema';
|
||||
import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './objects/AppointmentWhereUniqueInput.schema';
|
||||
import { AppointmentCreateInputObjectSchema as AppointmentCreateInputObjectSchema } from './objects/AppointmentCreateInput.schema';
|
||||
import { AppointmentUncheckedCreateInputObjectSchema as AppointmentUncheckedCreateInputObjectSchema } from './objects/AppointmentUncheckedCreateInput.schema';
|
||||
import { AppointmentUpdateInputObjectSchema as AppointmentUpdateInputObjectSchema } from './objects/AppointmentUpdateInput.schema';
|
||||
import { AppointmentUncheckedUpdateInputObjectSchema as AppointmentUncheckedUpdateInputObjectSchema } from './objects/AppointmentUncheckedUpdateInput.schema';
|
||||
|
||||
export const AppointmentUpsertOneSchema: z.ZodType<Prisma.AppointmentUpsertArgs> = z.object({ select: AppointmentSelectObjectSchema.optional(), include: AppointmentIncludeObjectSchema.optional(), where: AppointmentWhereUniqueInputObjectSchema, create: z.union([ AppointmentCreateInputObjectSchema, AppointmentUncheckedCreateInputObjectSchema ]), update: z.union([ AppointmentUpdateInputObjectSchema, AppointmentUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType<Prisma.AppointmentUpsertArgs>;
|
||||
|
||||
export const AppointmentUpsertOneZodSchema = z.object({ select: AppointmentSelectObjectSchema.optional(), include: AppointmentIncludeObjectSchema.optional(), where: AppointmentWhereUniqueInputObjectSchema, create: z.union([ AppointmentCreateInputObjectSchema, AppointmentUncheckedCreateInputObjectSchema ]), update: z.union([ AppointmentUpdateInputObjectSchema, AppointmentUncheckedUpdateInputObjectSchema ]) }).strict();
|
||||
Reference in New Issue
Block a user