initial commit
This commit is contained in:
17
packages/db/shared/schemas/objects/StaffUpsertWithoutAppointmentsInput.schema.d.ts
vendored
Normal file
17
packages/db/shared/schemas/objects/StaffUpsertWithoutAppointmentsInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const StaffUpsertWithoutAppointmentsInputObjectSchema: z.ZodType<Prisma.StaffUpsertWithoutAppointmentsInput>;
|
||||
export declare const StaffUpsertWithoutAppointmentsInputObjectZodSchema: z.ZodObject<{
|
||||
update: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffUpdateWithoutAppointmentsInput, z.ZodTypeDef, Prisma.StaffUpdateWithoutAppointmentsInput>>, z.ZodLazy<z.ZodType<Prisma.StaffUncheckedUpdateWithoutAppointmentsInput, z.ZodTypeDef, Prisma.StaffUncheckedUpdateWithoutAppointmentsInput>>]>;
|
||||
create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffCreateWithoutAppointmentsInput, z.ZodTypeDef, Prisma.StaffCreateWithoutAppointmentsInput>>, z.ZodLazy<z.ZodType<Prisma.StaffUncheckedCreateWithoutAppointmentsInput, z.ZodTypeDef, Prisma.StaffUncheckedCreateWithoutAppointmentsInput>>]>;
|
||||
where: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffWhereInput, z.ZodTypeDef, Prisma.StaffWhereInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
create: Prisma.StaffCreateWithoutAppointmentsInput | Prisma.StaffUncheckedCreateWithoutAppointmentsInput;
|
||||
update: Prisma.StaffUpdateWithoutAppointmentsInput | Prisma.StaffUncheckedUpdateWithoutAppointmentsInput;
|
||||
where?: Prisma.StaffWhereInput | undefined;
|
||||
}, {
|
||||
create: Prisma.StaffCreateWithoutAppointmentsInput | Prisma.StaffUncheckedCreateWithoutAppointmentsInput;
|
||||
update: Prisma.StaffUpdateWithoutAppointmentsInput | Prisma.StaffUncheckedUpdateWithoutAppointmentsInput;
|
||||
where?: Prisma.StaffWhereInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=StaffUpsertWithoutAppointmentsInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user