fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -3,6 +3,7 @@ export declare const AppointmentProcedureCreateResultSchema: z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
appointmentId: z.ZodNumber;
|
||||
patientId: z.ZodNumber;
|
||||
npiProviderId: z.ZodOptional<z.ZodNumber>;
|
||||
procedureCode: z.ZodString;
|
||||
procedureLabel: z.ZodOptional<z.ZodString>;
|
||||
fee: z.ZodOptional<z.ZodNumber>;
|
||||
@@ -15,13 +16,15 @@ export declare const AppointmentProcedureCreateResultSchema: z.ZodObject<{
|
||||
createdAt: z.ZodDate;
|
||||
appointment: z.ZodUnknown;
|
||||
patient: z.ZodUnknown;
|
||||
npiProvider: z.ZodOptional<z.ZodUnknown>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
createdAt: Date;
|
||||
patientId: number;
|
||||
procedureCode: string;
|
||||
appointmentId: number;
|
||||
patient?: unknown;
|
||||
npiProviderId?: number | undefined;
|
||||
procedureLabel?: string | undefined;
|
||||
fee?: number | undefined;
|
||||
category?: string | undefined;
|
||||
@@ -31,13 +34,15 @@ export declare const AppointmentProcedureCreateResultSchema: z.ZodObject<{
|
||||
source?: unknown;
|
||||
comboKey?: string | undefined;
|
||||
appointment?: unknown;
|
||||
npiProvider?: unknown;
|
||||
}, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
createdAt: Date;
|
||||
patientId: number;
|
||||
procedureCode: string;
|
||||
appointmentId: number;
|
||||
patient?: unknown;
|
||||
npiProviderId?: number | undefined;
|
||||
procedureLabel?: string | undefined;
|
||||
fee?: number | undefined;
|
||||
category?: string | undefined;
|
||||
@@ -47,5 +52,6 @@ export declare const AppointmentProcedureCreateResultSchema: z.ZodObject<{
|
||||
source?: unknown;
|
||||
comboKey?: string | undefined;
|
||||
appointment?: unknown;
|
||||
npiProvider?: unknown;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentProcedureCreateResult.schema.d.ts.map
|
||||
Reference in New Issue
Block a user