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

35 lines
3.2 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CloudFileChunkWhereInputObjectSchema: z.ZodType<Prisma.CloudFileChunkWhereInput>;
export declare const CloudFileChunkWhereInputObjectZodSchema: z.ZodObject<{
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFileChunkWhereInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkWhereInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereInput>>, "many">]>>;
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkWhereInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereInput>>, "many">>;
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFileChunkWhereInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkWhereInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereInput>>, "many">]>>;
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
fileId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
seq: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
data: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BytesFilter<never>, z.ZodTypeDef, Prisma.BytesFilter<never>>>, z.ZodType<Uint8Array<ArrayBuffer>, z.ZodTypeDef, Uint8Array<ArrayBuffer>>]>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
file: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFileScalarRelationFilter, z.ZodTypeDef, Prisma.CloudFileScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.CloudFileWhereInput, z.ZodTypeDef, Prisma.CloudFileWhereInput>>]>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.CloudFileChunkWhereInput | Prisma.CloudFileChunkWhereInput[] | undefined;
OR?: Prisma.CloudFileChunkWhereInput[] | undefined;
NOT?: Prisma.CloudFileChunkWhereInput | Prisma.CloudFileChunkWhereInput[] | undefined;
data?: Uint8Array<ArrayBuffer> | Prisma.BytesFilter<never> | undefined;
seq?: number | Prisma.IntFilter<never> | undefined;
fileId?: number | Prisma.IntFilter<never> | undefined;
file?: Prisma.CloudFileScalarRelationFilter | Prisma.CloudFileWhereInput | undefined;
}, {
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
id?: number | Prisma.IntFilter<never> | undefined;
AND?: Prisma.CloudFileChunkWhereInput | Prisma.CloudFileChunkWhereInput[] | undefined;
OR?: Prisma.CloudFileChunkWhereInput[] | undefined;
NOT?: Prisma.CloudFileChunkWhereInput | Prisma.CloudFileChunkWhereInput[] | undefined;
data?: Uint8Array<ArrayBuffer> | Prisma.BytesFilter<never> | undefined;
seq?: number | Prisma.IntFilter<never> | undefined;
fileId?: number | Prisma.IntFilter<never> | undefined;
file?: Prisma.CloudFileScalarRelationFilter | Prisma.CloudFileWhereInput | undefined;
}>;
//# sourceMappingURL=CloudFileChunkWhereInput.schema.d.ts.map