initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
|
||||
|
||||
const makeSchema = () => z.object({
|
||||
id: z.literal(true).optional(),
|
||||
userId: z.literal(true).optional(),
|
||||
type: z.literal(true).optional(),
|
||||
message: z.literal(true).optional(),
|
||||
createdAt: z.literal(true).optional(),
|
||||
read: z.literal(true).optional()
|
||||
}).strict();
|
||||
export const NotificationMinAggregateInputObjectSchema: z.ZodType<Prisma.NotificationMinAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.NotificationMinAggregateInputType>;
|
||||
export const NotificationMinAggregateInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user