initial commit
This commit is contained in:
23
packages/db/shared/schemas/upsertOneAppointment.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/upsertOneAppointment.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const AppointmentUpsertOneSchema: z.ZodType<Prisma.AppointmentUpsertArgs>;
|
||||
export declare const AppointmentUpsertOneZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodOptional<z.ZodType<Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
where: z.ZodType<Prisma.AppointmentWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentWhereUniqueInput>;
|
||||
create: z.ZodUnion<[z.ZodType<Prisma.AppointmentCreateInput, z.ZodTypeDef, Prisma.AppointmentCreateInput>, z.ZodType<Prisma.AppointmentUncheckedCreateInput, z.ZodTypeDef, Prisma.AppointmentUncheckedCreateInput>]>;
|
||||
update: z.ZodUnion<[z.ZodType<Prisma.AppointmentUpdateInput, z.ZodTypeDef, Prisma.AppointmentUpdateInput>, z.ZodType<Prisma.AppointmentUncheckedUpdateInput, z.ZodTypeDef, Prisma.AppointmentUncheckedUpdateInput>]>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
create: Prisma.AppointmentUncheckedCreateInput | Prisma.AppointmentCreateInput;
|
||||
where: Prisma.AppointmentWhereUniqueInput;
|
||||
update: Prisma.AppointmentUpdateInput | Prisma.AppointmentUncheckedUpdateInput;
|
||||
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
create: Prisma.AppointmentUncheckedCreateInput | Prisma.AppointmentCreateInput;
|
||||
where: Prisma.AppointmentWhereUniqueInput;
|
||||
update: Prisma.AppointmentUpdateInput | Prisma.AppointmentUncheckedUpdateInput;
|
||||
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=upsertOneAppointment.schema.d.ts.map
|
||||
Reference in New Issue
Block a user