initial commit
This commit is contained in:
56
packages/db/shared/schemas/objects/CloudFileWhereInput.schema.d.ts
vendored
Normal file
56
packages/db/shared/schemas/objects/CloudFileWhereInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const CloudFileWhereInputObjectSchema: z.ZodType<Prisma.CloudFileWhereInput>;
|
||||
export declare const CloudFileWhereInputObjectZodSchema: z.ZodObject<{
|
||||
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFileWhereInput, z.ZodTypeDef, Prisma.CloudFileWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileWhereInput, z.ZodTypeDef, Prisma.CloudFileWhereInput>>, "many">]>>;
|
||||
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileWhereInput, z.ZodTypeDef, Prisma.CloudFileWhereInput>>, "many">>;
|
||||
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFileWhereInput, z.ZodTypeDef, Prisma.CloudFileWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CloudFileWhereInput, z.ZodTypeDef, Prisma.CloudFileWhereInput>>, "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]>>;
|
||||
user: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserScalarRelationFilter, z.ZodTypeDef, Prisma.UserScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>]>>;
|
||||
folder: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CloudFolderNullableScalarRelationFilter, z.ZodTypeDef, Prisma.CloudFolderNullableScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.CloudFolderWhereInput, z.ZodTypeDef, Prisma.CloudFolderWhereInput>>]>>;
|
||||
chunks: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileChunkListRelationFilter, z.ZodTypeDef, Prisma.CloudFileChunkListRelationFilter>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.CloudFileWhereInput | Prisma.CloudFileWhereInput[] | undefined;
|
||||
OR?: Prisma.CloudFileWhereInput[] | undefined;
|
||||
NOT?: Prisma.CloudFileWhereInput | Prisma.CloudFileWhereInput[] | undefined;
|
||||
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | 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;
|
||||
chunks?: Prisma.CloudFileChunkListRelationFilter | undefined;
|
||||
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
||||
folder?: Prisma.CloudFolderNullableScalarRelationFilter | Prisma.CloudFolderWhereInput | undefined;
|
||||
}, {
|
||||
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
||||
id?: number | Prisma.IntFilter<never> | undefined;
|
||||
userId?: number | Prisma.IntFilter<never> | undefined;
|
||||
AND?: Prisma.CloudFileWhereInput | Prisma.CloudFileWhereInput[] | undefined;
|
||||
OR?: Prisma.CloudFileWhereInput[] | undefined;
|
||||
NOT?: Prisma.CloudFileWhereInput | Prisma.CloudFileWhereInput[] | undefined;
|
||||
user?: Prisma.UserWhereInput | Prisma.UserScalarRelationFilter | 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;
|
||||
chunks?: Prisma.CloudFileChunkListRelationFilter | undefined;
|
||||
folderId?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
||||
folder?: Prisma.CloudFolderNullableScalarRelationFilter | Prisma.CloudFolderWhereInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=CloudFileWhereInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user