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,63 @@
import * as z from 'zod';
export declare const PaymentCreateResultSchema: z.ZodObject<{
id: z.ZodNumber;
claimId: z.ZodOptional<z.ZodNumber>;
patientId: z.ZodNumber;
userId: z.ZodNumber;
updatedById: z.ZodOptional<z.ZodNumber>;
totalBilled: z.ZodNumber;
totalPaid: z.ZodNumber;
totalAdjusted: z.ZodNumber;
totalDue: z.ZodNumber;
status: z.ZodUnknown;
notes: z.ZodOptional<z.ZodString>;
icn: z.ZodOptional<z.ZodString>;
createdAt: z.ZodDate;
updatedAt: z.ZodDate;
claim: z.ZodOptional<z.ZodUnknown>;
patient: z.ZodUnknown;
updatedBy: z.ZodOptional<z.ZodUnknown>;
serviceLineTransactions: z.ZodArray<z.ZodUnknown, "many">;
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
}, "strip", z.ZodTypeAny, {
createdAt: Date;
id: number;
userId: number;
patientId: number;
totalBilled: number;
totalPaid: number;
totalAdjusted: number;
totalDue: number;
serviceLineTransactions: unknown[];
updatedAt: Date;
serviceLines: unknown[];
status?: unknown;
patient?: unknown;
notes?: string | undefined;
claimId?: number | undefined;
claim?: unknown;
icn?: string | undefined;
updatedBy?: unknown;
updatedById?: number | undefined;
}, {
createdAt: Date;
id: number;
userId: number;
patientId: number;
totalBilled: number;
totalPaid: number;
totalAdjusted: number;
totalDue: number;
serviceLineTransactions: unknown[];
updatedAt: Date;
serviceLines: unknown[];
status?: unknown;
patient?: unknown;
notes?: string | undefined;
claimId?: number | undefined;
claim?: unknown;
icn?: string | undefined;
updatedBy?: unknown;
updatedById?: number | undefined;
}>;
//# sourceMappingURL=PaymentCreateResult.schema.d.ts.map