fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -22,11 +22,10 @@ export declare const AppointmentResultSchema: z.ZodObject<{
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
type: string;
|
||||
status: string;
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
userId: number;
|
||||
date: Date;
|
||||
title: string;
|
||||
createdAt: Date;
|
||||
patientId: number;
|
||||
startTime: string;
|
||||
endTime: string;
|
||||
@@ -34,19 +33,19 @@ export declare const AppointmentResultSchema: z.ZodObject<{
|
||||
procedureCodeNotes: string | null;
|
||||
eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED";
|
||||
procedures: unknown[];
|
||||
userId: number;
|
||||
staffId: number;
|
||||
claims: unknown[];
|
||||
user?: unknown;
|
||||
patient?: unknown;
|
||||
user?: unknown;
|
||||
staff?: unknown;
|
||||
}, {
|
||||
type: string;
|
||||
status: string;
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
userId: number;
|
||||
date: Date;
|
||||
title: string;
|
||||
createdAt: Date;
|
||||
patientId: number;
|
||||
startTime: string;
|
||||
endTime: string;
|
||||
@@ -54,10 +53,11 @@ export declare const AppointmentResultSchema: z.ZodObject<{
|
||||
procedureCodeNotes: string | null;
|
||||
eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED";
|
||||
procedures: unknown[];
|
||||
userId: number;
|
||||
staffId: number;
|
||||
claims: unknown[];
|
||||
user?: unknown;
|
||||
patient?: unknown;
|
||||
user?: unknown;
|
||||
staff?: unknown;
|
||||
}>;
|
||||
export type AppointmentResultType = z.infer<typeof AppointmentResultSchema>;
|
||||
|
||||
Reference in New Issue
Block a user