Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/NotificationMaxAggregateInput.schema.ts
2026-04-04 22:13:55 -04:00

15 lines
621 B
TypeScript

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 NotificationMaxAggregateInputObjectSchema: z.ZodType<Prisma.NotificationMaxAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.NotificationMaxAggregateInputType>;
export const NotificationMaxAggregateInputObjectZodSchema = makeSchema();