initial commit
This commit is contained in:
14
packages/db/shared/schemas/objects/StaffCreateOrConnectWithoutUserInput.schema.d.ts
vendored
Normal file
14
packages/db/shared/schemas/objects/StaffCreateOrConnectWithoutUserInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const StaffCreateOrConnectWithoutUserInputObjectSchema: z.ZodType<Prisma.StaffCreateOrConnectWithoutUserInput>;
|
||||
export declare const StaffCreateOrConnectWithoutUserInputObjectZodSchema: z.ZodObject<{
|
||||
where: z.ZodLazy<z.ZodType<Prisma.StaffWhereUniqueInput, z.ZodTypeDef, Prisma.StaffWhereUniqueInput>>;
|
||||
create: z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StaffCreateWithoutUserInput, z.ZodTypeDef, Prisma.StaffCreateWithoutUserInput>>, z.ZodLazy<z.ZodType<Prisma.StaffUncheckedCreateWithoutUserInput, z.ZodTypeDef, Prisma.StaffUncheckedCreateWithoutUserInput>>]>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
create: Prisma.StaffUncheckedCreateWithoutUserInput | Prisma.StaffCreateWithoutUserInput;
|
||||
where: Prisma.StaffWhereUniqueInput;
|
||||
}, {
|
||||
create: Prisma.StaffUncheckedCreateWithoutUserInput | Prisma.StaffCreateWithoutUserInput;
|
||||
where: Prisma.StaffWhereUniqueInput;
|
||||
}>;
|
||||
//# sourceMappingURL=StaffCreateOrConnectWithoutUserInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user