47 lines
4.3 KiB
TypeScript
47 lines
4.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CloudFileScalarWhereInputObjectSchema: z.ZodType<Prisma.CloudFileScalarWhereInput>;
|
|
export declare const CloudFileScalarWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFileScalarWhereInput, z.ZodTypeDef, Prisma.CloudFileScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileScalarWhereInput, z.ZodTypeDef, Prisma.CloudFileScalarWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileScalarWhereInput, z.ZodTypeDef, Prisma.CloudFileScalarWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFileScalarWhereInput, z.ZodTypeDef, Prisma.CloudFileScalarWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileScalarWhereInput, z.ZodTypeDef, Prisma.CloudFileScalarWhereInput>>, "many">]>>;
|
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
userId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
name: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
mimeType: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
fileSize: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BigIntFilter<never>, z.ZodTypeDef, Prisma.BigIntFilter<never>>>, z.ZodBigInt]>>;
|
|
folderId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
isComplete: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.BoolFilter<never>, z.ZodTypeDef, Prisma.BoolFilter<never>>>, z.ZodBoolean]>>;
|
|
totalChunks: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.CloudFileScalarWhereInput | Prisma.CloudFileScalarWhereInput[] | undefined;
|
|
OR?: Prisma.CloudFileScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.CloudFileScalarWhereInput | Prisma.CloudFileScalarWhereInput[] | undefined;
|
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
mimeType?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
fileSize?: bigint | Prisma.BigIntFilter<never> | undefined;
|
|
isComplete?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
totalChunks?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
}, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
userId?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.CloudFileScalarWhereInput | Prisma.CloudFileScalarWhereInput[] | undefined;
|
|
OR?: Prisma.CloudFileScalarWhereInput[] | undefined;
|
|
NOT?: Prisma.CloudFileScalarWhereInput | Prisma.CloudFileScalarWhereInput[] | undefined;
|
|
name?: string | Prisma.StringFilter<never> | undefined;
|
|
mimeType?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
fileSize?: bigint | Prisma.BigIntFilter<never> | undefined;
|
|
isComplete?: boolean | Prisma.BoolFilter<never> | undefined;
|
|
totalChunks?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CloudFileScalarWhereInput.schema.d.ts.map
|