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

@@ -3,6 +3,7 @@ export declare const AppointmentProcedureInputSchema: z.ZodObject<{
id: z.ZodNumber;
appointmentId: z.ZodNumber;
patientId: z.ZodNumber;
npiProviderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
procedureCode: z.ZodString;
procedureLabel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -15,14 +16,16 @@ export declare const AppointmentProcedureInputSchema: z.ZodObject<{
createdAt: z.ZodDate;
appointment: z.ZodUnknown;
patient: z.ZodUnknown;
npiProvider: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
}, "strict", z.ZodTypeAny, {
createdAt: Date;
id: number;
createdAt: Date;
patientId: number;
procedureCode: string;
source: "COMBO" | "MANUAL";
appointmentId: number;
patient?: unknown;
npiProviderId?: number | null | undefined;
procedureLabel?: string | null | undefined;
fee?: number | null | undefined;
category?: string | null | undefined;
@@ -31,14 +34,16 @@ export declare const AppointmentProcedureInputSchema: z.ZodObject<{
oralCavityArea?: string | null | undefined;
comboKey?: string | null | undefined;
appointment?: unknown;
npiProvider?: unknown;
}, {
createdAt: Date;
id: number;
createdAt: Date;
patientId: number;
procedureCode: string;
source: "COMBO" | "MANUAL";
appointmentId: number;
patient?: unknown;
npiProviderId?: number | null | undefined;
procedureLabel?: string | null | undefined;
fee?: number | null | undefined;
category?: string | null | undefined;
@@ -47,6 +52,7 @@ export declare const AppointmentProcedureInputSchema: z.ZodObject<{
oralCavityArea?: string | null | undefined;
comboKey?: string | null | undefined;
appointment?: unknown;
npiProvider?: unknown;
}>;
export type AppointmentProcedureInputType = z.infer<typeof AppointmentProcedureInputSchema>;
//# sourceMappingURL=AppointmentProcedure.input.d.ts.map