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

@@ -17,20 +17,23 @@ export declare const ClaimResultSchema: z.ZodObject<{
updatedAt: z.ZodDate;
status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>;
claimNumber: z.ZodNullable<z.ZodString>;
npiProviderId: z.ZodNullable<z.ZodNumber>;
patient: z.ZodUnknown;
appointment: z.ZodUnknown;
user: z.ZodNullable<z.ZodUnknown>;
staff: z.ZodNullable<z.ZodUnknown>;
npiProvider: z.ZodNullable<z.ZodUnknown>;
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
claimFiles: z.ZodArray<z.ZodUnknown, "many">;
payment: z.ZodNullable<z.ZodUnknown>;
}, "strict", z.ZodTypeAny, {
status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID";
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
npiProviderId: number | null;
appointmentId: number;
userId: number;
staffId: number;
updatedAt: Date;
serviceLines: unknown[];
@@ -43,19 +46,21 @@ export declare const ClaimResultSchema: z.ZodObject<{
insuranceProvider: string;
claimNumber: string | null;
claimFiles: unknown[];
user?: unknown;
patient?: unknown;
appointment?: unknown;
npiProvider?: unknown;
user?: unknown;
staff?: unknown;
payment?: unknown;
missingTeeth?: unknown;
}, {
status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID";
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
npiProviderId: number | null;
appointmentId: number;
userId: number;
staffId: number;
updatedAt: Date;
serviceLines: unknown[];
@@ -68,9 +73,10 @@ export declare const ClaimResultSchema: z.ZodObject<{
insuranceProvider: string;
claimNumber: string | null;
claimFiles: unknown[];
user?: unknown;
patient?: unknown;
appointment?: unknown;
npiProvider?: unknown;
user?: unknown;
staff?: unknown;
payment?: unknown;
missingTeeth?: unknown;