fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -3,6 +3,7 @@ export declare const AppointmentProcedureResultSchema: z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
appointmentId: z.ZodNumber;
|
||||
patientId: z.ZodNumber;
|
||||
npiProviderId: z.ZodNullable<z.ZodNumber>;
|
||||
procedureCode: z.ZodString;
|
||||
procedureLabel: z.ZodNullable<z.ZodString>;
|
||||
fee: z.ZodNullable<z.ZodNumber>;
|
||||
@@ -15,10 +16,12 @@ export declare const AppointmentProcedureResultSchema: z.ZodObject<{
|
||||
createdAt: z.ZodDate;
|
||||
appointment: z.ZodUnknown;
|
||||
patient: z.ZodUnknown;
|
||||
npiProvider: z.ZodNullable<z.ZodUnknown>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
createdAt: Date;
|
||||
patientId: number;
|
||||
npiProviderId: number | null;
|
||||
procedureCode: string;
|
||||
procedureLabel: string | null;
|
||||
fee: number | null;
|
||||
@@ -31,10 +34,12 @@ export declare const AppointmentProcedureResultSchema: z.ZodObject<{
|
||||
appointmentId: number;
|
||||
patient?: unknown;
|
||||
appointment?: unknown;
|
||||
npiProvider?: unknown;
|
||||
}, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
createdAt: Date;
|
||||
patientId: number;
|
||||
npiProviderId: number | null;
|
||||
procedureCode: string;
|
||||
procedureLabel: string | null;
|
||||
fee: number | null;
|
||||
@@ -47,6 +52,7 @@ export declare const AppointmentProcedureResultSchema: z.ZodObject<{
|
||||
appointmentId: number;
|
||||
patient?: unknown;
|
||||
appointment?: unknown;
|
||||
npiProvider?: unknown;
|
||||
}>;
|
||||
export type AppointmentProcedureResultType = z.infer<typeof AppointmentProcedureResultSchema>;
|
||||
//# sourceMappingURL=AppointmentProcedure.result.d.ts.map
|
||||
Reference in New Issue
Block a user