fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user