fix: fix remote browser socket connection and related updates

This commit is contained in:
Gitead
2026-04-30 11:52:58 -04:00
parent 441cfcc8e3
commit d8f852741a
959 changed files with 13338 additions and 2208 deletions

View File

@@ -21,10 +21,10 @@ export declare const PaymentInputSchema: z.ZodObject<{
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
}, "strict", z.ZodTypeAny, {
status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED";
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
userId: number;
totalBilled: number;
totalPaid: number;
totalAdjusted: number;
@@ -41,10 +41,10 @@ export declare const PaymentInputSchema: z.ZodObject<{
updatedById?: number | null | undefined;
}, {
status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED";
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
userId: number;
totalBilled: number;
totalPaid: number;
totalAdjusted: number;