fix: use rendering provider from claim form for MassHealth dentist search, default to Mary Scannell, select first office option
This commit is contained in:
@@ -3,7 +3,7 @@ export declare const PatientCreateResultSchema: z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
firstName: z.ZodString;
|
||||
lastName: z.ZodString;
|
||||
dateOfBirth: z.ZodDate;
|
||||
dateOfBirth: z.ZodOptional<z.ZodDate>;
|
||||
gender: z.ZodString;
|
||||
phone: z.ZodString;
|
||||
email: z.ZodOptional<z.ZodString>;
|
||||
@@ -36,7 +36,6 @@ export declare const PatientCreateResultSchema: z.ZodObject<{
|
||||
phone: string;
|
||||
appointments: unknown[];
|
||||
payment: unknown[];
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
@@ -46,6 +45,7 @@ export declare const PatientCreateResultSchema: z.ZodObject<{
|
||||
status?: unknown;
|
||||
user?: unknown;
|
||||
email?: string | undefined;
|
||||
dateOfBirth?: Date | undefined;
|
||||
insuranceProvider?: string | undefined;
|
||||
address?: string | undefined;
|
||||
city?: string | undefined;
|
||||
@@ -64,7 +64,6 @@ export declare const PatientCreateResultSchema: z.ZodObject<{
|
||||
phone: string;
|
||||
appointments: unknown[];
|
||||
payment: unknown[];
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
@@ -74,6 +73,7 @@ export declare const PatientCreateResultSchema: z.ZodObject<{
|
||||
status?: unknown;
|
||||
user?: unknown;
|
||||
email?: string | undefined;
|
||||
dateOfBirth?: Date | undefined;
|
||||
insuranceProvider?: string | undefined;
|
||||
address?: string | undefined;
|
||||
city?: string | undefined;
|
||||
|
||||
Reference in New Issue
Block a user