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

23 lines
1.4 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PdfGroupUncheckedCreateWithoutPatientInputObjectSchema: z.ZodType<Prisma.PdfGroupUncheckedCreateWithoutPatientInput>;
export declare const PdfGroupUncheckedCreateWithoutPatientInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
title: z.ZodString;
titleKey: z.ZodOptional<z.ZodEnum<["INSURANCE_CLAIM", "INSURANCE_CLAIM_PREAUTH", "ELIGIBILITY_STATUS", "CLAIM_STATUS", "OTHER"]>>;
createdAt: z.ZodOptional<z.ZodDate>;
pdfs: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfFileUncheckedCreateNestedManyWithoutGroupInput, z.ZodTypeDef, Prisma.PdfFileUncheckedCreateNestedManyWithoutGroupInput>>>;
}, "strict", z.ZodTypeAny, {
title: string;
createdAt?: Date | undefined;
id?: number | undefined;
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | undefined;
pdfs?: Prisma.PdfFileUncheckedCreateNestedManyWithoutGroupInput | undefined;
}, {
title: string;
createdAt?: Date | undefined;
id?: number | undefined;
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | undefined;
pdfs?: Prisma.PdfFileUncheckedCreateNestedManyWithoutGroupInput | undefined;
}>;
//# sourceMappingURL=PdfGroupUncheckedCreateWithoutPatientInput.schema.d.ts.map