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,22 @@ export declare const ClaimInputSchema: z.ZodObject<{
updatedAt: z.ZodDate;
status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>;
claimNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
npiProviderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
patient: z.ZodUnknown;
appointment: z.ZodUnknown;
user: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
staff: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
npiProvider: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
claimFiles: z.ZodArray<z.ZodUnknown, "many">;
payment: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
}, "strict", z.ZodTypeAny, {
status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID";
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
appointmentId: number;
userId: number;
staffId: number;
updatedAt: Date;
serviceLines: unknown[];
@@ -42,20 +44,22 @@ export declare const ClaimInputSchema: z.ZodObject<{
serviceDate: Date;
insuranceProvider: string;
claimFiles: unknown[];
user?: unknown;
patient?: unknown;
npiProviderId?: number | null | undefined;
appointment?: unknown;
npiProvider?: unknown;
user?: unknown;
staff?: unknown;
payment?: unknown;
missingTeeth?: unknown;
claimNumber?: string | null | undefined;
}, {
status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID";
createdAt: Date;
id: number;
userId: number;
createdAt: Date;
patientId: number;
appointmentId: number;
userId: number;
staffId: number;
updatedAt: Date;
serviceLines: unknown[];
@@ -67,9 +71,11 @@ export declare const ClaimInputSchema: z.ZodObject<{
serviceDate: Date;
insuranceProvider: string;
claimFiles: unknown[];
user?: unknown;
patient?: unknown;
npiProviderId?: number | null | undefined;
appointment?: unknown;
npiProvider?: unknown;
user?: unknown;
staff?: unknown;
payment?: unknown;
missingTeeth?: unknown;