20 lines
1.2 KiB
TypeScript
20 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PdfGroupCreateWithoutPdfsInputObjectSchema: z.ZodType<Prisma.PdfGroupCreateWithoutPdfsInput>;
|
|
export declare const PdfGroupCreateWithoutPdfsInputObjectZodSchema: z.ZodObject<{
|
|
title: z.ZodString;
|
|
titleKey: z.ZodOptional<z.ZodEnum<["INSURANCE_CLAIM", "INSURANCE_CLAIM_PREAUTH", "ELIGIBILITY_STATUS", "CLAIM_STATUS", "OTHER"]>>;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
patient: z.ZodLazy<z.ZodType<Prisma.PatientCreateNestedOneWithoutGroupsInput, z.ZodTypeDef, Prisma.PatientCreateNestedOneWithoutGroupsInput>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
title: string;
|
|
patient: Prisma.PatientCreateNestedOneWithoutGroupsInput;
|
|
createdAt?: Date | undefined;
|
|
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | undefined;
|
|
}, {
|
|
title: string;
|
|
patient: Prisma.PatientCreateNestedOneWithoutGroupsInput;
|
|
createdAt?: Date | undefined;
|
|
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PdfGroupCreateWithoutPdfsInput.schema.d.ts.map
|