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,57 @@
import * as z from 'zod';
export declare const ServiceLineFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
id: z.ZodNumber;
claimId: z.ZodOptional<z.ZodNumber>;
paymentId: z.ZodOptional<z.ZodNumber>;
procedureCode: z.ZodString;
procedureDate: z.ZodDate;
quad: z.ZodOptional<z.ZodString>;
arch: z.ZodOptional<z.ZodString>;
toothNumber: z.ZodOptional<z.ZodString>;
toothSurface: z.ZodOptional<z.ZodString>;
totalBilled: z.ZodNumber;
totalPaid: z.ZodNumber;
totalAdjusted: z.ZodNumber;
totalDue: z.ZodNumber;
status: z.ZodUnknown;
claim: z.ZodOptional<z.ZodUnknown>;
payment: z.ZodOptional<z.ZodUnknown>;
serviceLineTransactions: z.ZodArray<z.ZodUnknown, "many">;
}, "strip", z.ZodTypeAny, {
id: number;
procedureCode: string;
procedureDate: Date;
totalBilled: number;
totalPaid: number;
totalAdjusted: number;
totalDue: number;
serviceLineTransactions: unknown[];
status?: unknown;
toothNumber?: string | undefined;
toothSurface?: string | undefined;
claimId?: number | undefined;
claim?: unknown;
paymentId?: number | undefined;
payment?: unknown;
quad?: string | undefined;
arch?: string | undefined;
}, {
id: number;
procedureCode: string;
procedureDate: Date;
totalBilled: number;
totalPaid: number;
totalAdjusted: number;
totalDue: number;
serviceLineTransactions: unknown[];
status?: unknown;
toothNumber?: string | undefined;
toothSurface?: string | undefined;
claimId?: number | undefined;
claim?: unknown;
paymentId?: number | undefined;
payment?: unknown;
quad?: string | undefined;
arch?: string | undefined;
}>>;
//# sourceMappingURL=ServiceLineFindFirstResult.schema.d.ts.map