initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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(),
|
||||
name: z.literal(true).optional(),
|
||||
email: z.literal(true).optional(),
|
||||
role: z.literal(true).optional(),
|
||||
phone: z.literal(true).optional(),
|
||||
createdAt: z.literal(true).optional()
|
||||
}).strict();
|
||||
export const StaffMinAggregateInputObjectSchema: z.ZodType<Prisma.StaffMinAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.StaffMinAggregateInputType>;
|
||||
export const StaffMinAggregateInputObjectZodSchema = makeSchema();
|
||||
Reference in New Issue
Block a user