initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const ClaimUncheckedCreateWithoutAppointmentInputObjectSchema: z.ZodType<Prisma.ClaimUncheckedCreateWithoutAppointmentInput>;
export declare const ClaimUncheckedCreateWithoutAppointmentInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
patientId: 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>>>;
claimFiles: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileUncheckedCreateNestedManyWithoutClaimInput, z.ZodTypeDef, Prisma.ClaimFileUncheckedCreateNestedManyWithoutClaimInput>>>;
payment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentUncheckedCreateNestedOneWithoutClaimInput, z.ZodTypeDef, Prisma.PaymentUncheckedCreateNestedOneWithoutClaimInput>>>;
}, "strict", z.ZodTypeAny, {
userId: number;
patientId: 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;
claimFiles?: Prisma.ClaimFileUncheckedCreateNestedManyWithoutClaimInput | undefined;
}, {
userId: number;
patientId: 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;
claimFiles?: Prisma.ClaimFileUncheckedCreateNestedManyWithoutClaimInput | undefined;
}>;
//# sourceMappingURL=ClaimUncheckedCreateWithoutAppointmentInput.schema.d.ts.map