fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -22,42 +22,42 @@ export declare const AppointmentInputSchema: 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;
|
||||
eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED";
|
||||
procedures: unknown[];
|
||||
userId: number;
|
||||
staffId: number;
|
||||
claims: unknown[];
|
||||
user?: unknown;
|
||||
patient?: unknown;
|
||||
notes?: string | null | undefined;
|
||||
procedureCodeNotes?: string | null | undefined;
|
||||
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;
|
||||
eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED";
|
||||
procedures: unknown[];
|
||||
userId: number;
|
||||
staffId: number;
|
||||
claims: unknown[];
|
||||
user?: unknown;
|
||||
patient?: unknown;
|
||||
notes?: string | null | undefined;
|
||||
procedureCodeNotes?: string | null | undefined;
|
||||
user?: unknown;
|
||||
staff?: unknown;
|
||||
}>;
|
||||
export type AppointmentInputType = z.infer<typeof AppointmentInputSchema>;
|
||||
|
||||
Reference in New Issue
Block a user