initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: z.number().int().optional(),
|
||||
userId: z.number().int(),
|
||||
name: z.string(),
|
||||
createdAt: z.coerce.date().optional(),
|
||||
updatedAt: z.coerce.date().optional()
|
||||
}).strict();
|
||||
export const CloudFolderCreateManyParentInputObjectSchema: z.ZodType<Prisma.CloudFolderCreateManyParentInput> = makeSchema() as unknown as z.ZodType<Prisma.CloudFolderCreateManyParentInput>;
|
||||
export const CloudFolderCreateManyParentInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user