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