17 lines
1.6 KiB
TypeScript
17 lines
1.6 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const AppointmentCreateOneSchema: z.ZodType<Prisma.AppointmentCreateArgs>;
|
|
export declare const AppointmentCreateOneZodSchema: 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>>>;
|
|
data: z.ZodUnion<[z.ZodType<Prisma.AppointmentCreateInput, z.ZodTypeDef, Prisma.AppointmentCreateInput>, z.ZodType<Prisma.AppointmentUncheckedCreateInput, z.ZodTypeDef, Prisma.AppointmentUncheckedCreateInput>]>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
data: Prisma.AppointmentUncheckedCreateInput | Prisma.AppointmentCreateInput;
|
|
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}, {
|
|
data: Prisma.AppointmentUncheckedCreateInput | Prisma.AppointmentCreateInput;
|
|
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.AppointmentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}>;
|
|
//# sourceMappingURL=createOneAppointment.schema.d.ts.map
|