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

13 lines
588 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.number().int().optional(),
seq: z.number().int(),
data: z.instanceof(Uint8Array),
createdAt: z.coerce.date().optional()
}).strict();
export const CloudFileChunkUncheckedCreateWithoutFileInputObjectSchema: z.ZodType<Prisma.CloudFileChunkUncheckedCreateWithoutFileInput> = makeSchema() as unknown as z.ZodType<Prisma.CloudFileChunkUncheckedCreateWithoutFileInput>;
export const CloudFileChunkUncheckedCreateWithoutFileInputObjectZodSchema = makeSchema();