Files
DentalManagementE/packages/db/shared/schemas/objects/UserMinAggregateInput.schema.ts
2025-05-08 21:27:29 +05:30

14 lines
354 B
TypeScript

import { z } from 'zod';
import type { Prisma } from '../../../generated/prisma';
const Schema: z.ZodType<Prisma.UserMinAggregateInputType> = z
.object({
id: z.literal(true).optional(),
username: z.literal(true).optional(),
password: z.literal(true).optional(),
})
.strict();
export const UserMinAggregateInputObjectSchema = Schema;