initial commit
This commit is contained in:
55
packages/db/shared/schemas/findFirstOrThrowCloudFileChunk.schema.d.ts
vendored
Normal file
55
packages/db/shared/schemas/findFirstOrThrowCloudFileChunk.schema.d.ts
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const CloudFileChunkFindFirstOrThrowSelectSchema: z.ZodType<Prisma.CloudFileChunkSelect>;
|
||||
export declare const CloudFileChunkFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
fileId: z.ZodOptional<z.ZodBoolean>;
|
||||
seq: z.ZodOptional<z.ZodBoolean>;
|
||||
data: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
file: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
data?: boolean | undefined;
|
||||
seq?: boolean | undefined;
|
||||
fileId?: boolean | undefined;
|
||||
file?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
data?: boolean | undefined;
|
||||
seq?: boolean | undefined;
|
||||
fileId?: boolean | undefined;
|
||||
file?: boolean | undefined;
|
||||
}>;
|
||||
export declare const CloudFileChunkFindFirstOrThrowSchema: z.ZodType<Prisma.CloudFileChunkFindFirstOrThrowArgs>;
|
||||
export declare const CloudFileChunkFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.CloudFileChunkOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFileChunkOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.CloudFileChunkOrderByWithRelationInput, z.ZodTypeDef, Prisma.CloudFileChunkOrderByWithRelationInput>, "many">]>>;
|
||||
where: z.ZodOptional<z.ZodType<Prisma.CloudFileChunkWhereInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereInput>>;
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFileChunkWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFileChunkWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "fileId", "seq", "data", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "fileId", "seq", "data", "createdAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.CloudFileChunkWhereInput | undefined;
|
||||
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.CloudFileChunkOrderByWithRelationInput | Prisma.CloudFileChunkOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFileChunkWhereInput | undefined;
|
||||
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.CloudFileChunkSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.CloudFileChunkOrderByWithRelationInput | Prisma.CloudFileChunkOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowCloudFileChunk.schema.d.ts.map
|
||||
Reference in New Issue
Block a user