65 lines
3.2 KiB
TypeScript
65 lines
3.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ClaimUncheckedCreateWithoutClaimFilesInputObjectSchema: z.ZodType<Prisma.ClaimUncheckedCreateWithoutClaimFilesInput>;
|
|
export declare const ClaimUncheckedCreateWithoutClaimFilesInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
patientId: z.ZodNumber;
|
|
appointmentId: z.ZodNumber;
|
|
userId: z.ZodNumber;
|
|
staffId: z.ZodNumber;
|
|
patientName: z.ZodString;
|
|
memberId: z.ZodString;
|
|
dateOfBirth: z.ZodDate;
|
|
remarks: z.ZodString;
|
|
missingTeethStatus: z.ZodOptional<z.ZodEnum<["No_missing", "endentulous", "Yes_missing"]>>;
|
|
missingTeeth: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["DbNull", "JsonNull"]>, z.ZodType<import("../../helpers/json-helpers").JsonValue, z.ZodTypeDef, import("../../helpers/json-helpers").JsonValue>]>>;
|
|
serviceDate: z.ZodDate;
|
|
insuranceProvider: z.ZodString;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
status: z.ZodOptional<z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>>;
|
|
claimNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
serviceLines: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineUncheckedCreateNestedManyWithoutClaimInput, z.ZodTypeDef, Prisma.ServiceLineUncheckedCreateNestedManyWithoutClaimInput>>>;
|
|
payment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentUncheckedCreateNestedOneWithoutClaimInput, z.ZodTypeDef, Prisma.PaymentUncheckedCreateNestedOneWithoutClaimInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
userId: number;
|
|
patientId: number;
|
|
appointmentId: number;
|
|
staffId: number;
|
|
patientName: string;
|
|
memberId: string;
|
|
dateOfBirth: Date;
|
|
remarks: string;
|
|
serviceDate: Date;
|
|
insuranceProvider: string;
|
|
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
payment?: Prisma.PaymentUncheckedCreateNestedOneWithoutClaimInput | undefined;
|
|
updatedAt?: Date | undefined;
|
|
serviceLines?: Prisma.ServiceLineUncheckedCreateNestedManyWithoutClaimInput | undefined;
|
|
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
|
|
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
|
|
claimNumber?: string | null | undefined;
|
|
}, {
|
|
userId: number;
|
|
patientId: number;
|
|
appointmentId: number;
|
|
staffId: number;
|
|
patientName: string;
|
|
memberId: string;
|
|
dateOfBirth: Date;
|
|
remarks: string;
|
|
serviceDate: Date;
|
|
insuranceProvider: string;
|
|
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
payment?: Prisma.PaymentUncheckedCreateNestedOneWithoutClaimInput | undefined;
|
|
updatedAt?: Date | undefined;
|
|
serviceLines?: Prisma.ServiceLineUncheckedCreateNestedManyWithoutClaimInput | undefined;
|
|
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
|
|
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
|
|
claimNumber?: string | null | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ClaimUncheckedCreateWithoutClaimFilesInput.schema.d.ts.map
|