initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { UserUpdateWithoutBackupsInputObjectSchema as UserUpdateWithoutBackupsInputObjectSchema } from './UserUpdateWithoutBackupsInput.schema';
|
||||
import { UserUncheckedUpdateWithoutBackupsInputObjectSchema as UserUncheckedUpdateWithoutBackupsInputObjectSchema } from './UserUncheckedUpdateWithoutBackupsInput.schema';
|
||||
import { UserCreateWithoutBackupsInputObjectSchema as UserCreateWithoutBackupsInputObjectSchema } from './UserCreateWithoutBackupsInput.schema';
|
||||
import { UserUncheckedCreateWithoutBackupsInputObjectSchema as UserUncheckedCreateWithoutBackupsInputObjectSchema } from './UserUncheckedCreateWithoutBackupsInput.schema';
|
||||
import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './UserWhereInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
update: z.union([z.lazy(() => UserUpdateWithoutBackupsInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutBackupsInputObjectSchema)]),
|
||||
create: z.union([z.lazy(() => UserCreateWithoutBackupsInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutBackupsInputObjectSchema)]),
|
||||
where: z.lazy(() => UserWhereInputObjectSchema).optional()
|
||||
}).strict();
|
||||
export const UserUpsertWithoutBackupsInputObjectSchema: z.ZodType<Prisma.UserUpsertWithoutBackupsInput> = makeSchema() as unknown as z.ZodType<Prisma.UserUpsertWithoutBackupsInput>;
|
||||
export const UserUpsertWithoutBackupsInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user