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

38 lines
1.4 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFileCreateManyInputObjectSchema: z.ZodType<Prisma.CloudFileCreateManyInput>;
export declare const CloudFileCreateManyInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
userId: z.ZodNumber;
name: z.ZodString;
mimeType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
fileSize: z.ZodBigInt;
folderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
isComplete: z.ZodOptional<z.ZodBoolean>;
totalChunks: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
createdAt: z.ZodOptional<z.ZodDate>;
updatedAt: z.ZodOptional<z.ZodDate>;
}, "strict", z.ZodTypeAny, {
userId: number;
name: string;
fileSize: bigint;
createdAt?: Date | undefined;
id?: number | undefined;
mimeType?: string | null | undefined;
updatedAt?: Date | undefined;
isComplete?: boolean | undefined;
totalChunks?: number | null | undefined;
folderId?: number | null | undefined;
}, {
userId: number;
name: string;
fileSize: bigint;
createdAt?: Date | undefined;
id?: number | undefined;
mimeType?: string | null | undefined;
updatedAt?: Date | undefined;
isComplete?: boolean | undefined;
totalChunks?: number | null | undefined;
folderId?: number | null | undefined;
}>;
//# sourceMappingURL=CloudFileCreateManyInput.schema.d.ts.map