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,19 +17,21 @@ export declare const ClaimUpdateResultSchema: z.ZodNullable<z.ZodObject<{
updatedAt: z.ZodDate;
status: z.ZodUnknown;
claimNumber: z.ZodOptional<z.ZodString>;
npiProviderId: z.ZodOptional<z.ZodNumber>;
patient: z.ZodUnknown;
appointment: z.ZodUnknown;
user: z.ZodOptional<z.ZodUnknown>;
staff: z.ZodOptional<z.ZodUnknown>;
npiProvider: z.ZodOptional<z.ZodUnknown>;
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
claimFiles: z.ZodArray<z.ZodUnknown, "many">;
payment: z.ZodOptional<z.ZodUnknown>;
}, "strip", z.ZodTypeAny, {
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
appointmentId: number;
userId: number;
staffId: number;
updatedAt: Date;
serviceLines: unknown[];
@@ -41,20 +43,22 @@ export declare const ClaimUpdateResultSchema: z.ZodNullable<z.ZodObject<{
insuranceProvider: string;
claimFiles: unknown[];
status?: unknown;
user?: unknown;
patient?: unknown;
npiProviderId?: number | undefined;
appointment?: unknown;
npiProvider?: unknown;
user?: unknown;
staff?: unknown;
payment?: unknown;
missingTeethStatus?: unknown;
missingTeeth?: unknown;
claimNumber?: string | undefined;
}, {
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
appointmentId: number;
userId: number;
staffId: number;
updatedAt: Date;
serviceLines: unknown[];
@@ -66,9 +70,11 @@ export declare const ClaimUpdateResultSchema: z.ZodNullable<z.ZodObject<{
insuranceProvider: string;
claimFiles: unknown[];
status?: unknown;
user?: unknown;
patient?: unknown;
npiProviderId?: number | undefined;
appointment?: unknown;
npiProvider?: unknown;
user?: unknown;
staff?: unknown;
payment?: unknown;
missingTeethStatus?: unknown;