61 lines
3.8 KiB
TypeScript
61 lines
3.8 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const PdfGroupFindManySelectSchema: z.ZodType<Prisma.PdfGroupSelect>;
|
|
export declare const PdfGroupFindManySelectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
title: z.ZodOptional<z.ZodBoolean>;
|
|
titleKey: z.ZodOptional<z.ZodBoolean>;
|
|
createdAt: z.ZodOptional<z.ZodBoolean>;
|
|
patientId: z.ZodOptional<z.ZodBoolean>;
|
|
patient: z.ZodOptional<z.ZodBoolean>;
|
|
pdfs: z.ZodOptional<z.ZodBoolean>;
|
|
_count: z.ZodOptional<z.ZodBoolean>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
title?: boolean | undefined;
|
|
titleKey?: boolean | undefined;
|
|
pdfs?: boolean | undefined;
|
|
patientId?: boolean | undefined;
|
|
patient?: boolean | undefined;
|
|
_count?: boolean | undefined;
|
|
}, {
|
|
createdAt?: boolean | undefined;
|
|
id?: boolean | undefined;
|
|
title?: boolean | undefined;
|
|
titleKey?: boolean | undefined;
|
|
pdfs?: boolean | undefined;
|
|
patientId?: boolean | undefined;
|
|
patient?: boolean | undefined;
|
|
_count?: boolean | undefined;
|
|
}>;
|
|
export declare const PdfGroupFindManySchema: z.ZodType<Prisma.PdfGroupFindManyArgs>;
|
|
export declare const PdfGroupFindManyZodSchema: z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodType<Prisma.PdfGroupSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PdfGroupSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
|
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.PdfGroupOrderByWithRelationInput, z.ZodTypeDef, Prisma.PdfGroupOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.PdfGroupOrderByWithRelationInput, z.ZodTypeDef, Prisma.PdfGroupOrderByWithRelationInput>, "many">]>>;
|
|
where: z.ZodOptional<z.ZodType<Prisma.PdfGroupWhereInput, z.ZodTypeDef, Prisma.PdfGroupWhereInput>>;
|
|
cursor: z.ZodOptional<z.ZodType<Prisma.PdfGroupWhereUniqueInput, z.ZodTypeDef, Prisma.PdfGroupWhereUniqueInput>>;
|
|
take: z.ZodOptional<z.ZodNumber>;
|
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "title", "titleKey", "createdAt", "patientId"]>, z.ZodArray<z.ZodEnum<["id", "title", "titleKey", "createdAt", "patientId"]>, "many">]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
where?: Prisma.PdfGroupWhereInput | undefined;
|
|
include?: Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PdfGroupSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
orderBy?: Prisma.PdfGroupOrderByWithRelationInput | Prisma.PdfGroupOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
|
|
}, {
|
|
where?: Prisma.PdfGroupWhereInput | undefined;
|
|
include?: Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
select?: Prisma.PdfGroupSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
orderBy?: Prisma.PdfGroupOrderByWithRelationInput | Prisma.PdfGroupOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
|
|
}>;
|
|
//# sourceMappingURL=findManyPdfGroup.schema.d.ts.map
|