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