initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import { UserWhereUniqueInputObjectSchema as UserWhereUniqueInputObjectSchema } from './UserWhereUniqueInput.schema';
|
||||
import { UserCreateWithoutCloudFoldersInputObjectSchema as UserCreateWithoutCloudFoldersInputObjectSchema } from './UserCreateWithoutCloudFoldersInput.schema';
|
||||
import { UserUncheckedCreateWithoutCloudFoldersInputObjectSchema as UserUncheckedCreateWithoutCloudFoldersInputObjectSchema } from './UserUncheckedCreateWithoutCloudFoldersInput.schema'
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
where: z.lazy(() => UserWhereUniqueInputObjectSchema),
|
||||
create: z.union([z.lazy(() => UserCreateWithoutCloudFoldersInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutCloudFoldersInputObjectSchema)])
|
||||
}).strict();
|
||||
export const UserCreateOrConnectWithoutCloudFoldersInputObjectSchema: z.ZodType<Prisma.UserCreateOrConnectWithoutCloudFoldersInput> = makeSchema() as unknown as z.ZodType<Prisma.UserCreateOrConnectWithoutCloudFoldersInput>;
|
||||
export const UserCreateOrConnectWithoutCloudFoldersInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user