fix: use rendering provider from claim form for MassHealth dentist search, default to Mary Scannell, select first office option
This commit is contained in:
@@ -4,7 +4,7 @@ export declare const PatientFindManyResultSchema: 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>;
|
||||
@@ -37,7 +37,6 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{
|
||||
phone: string;
|
||||
appointments: unknown[];
|
||||
payment: unknown[];
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
@@ -47,6 +46,7 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{
|
||||
status?: unknown;
|
||||
user?: unknown;
|
||||
email?: string | undefined;
|
||||
dateOfBirth?: Date | undefined;
|
||||
insuranceProvider?: string | undefined;
|
||||
address?: string | undefined;
|
||||
city?: string | undefined;
|
||||
@@ -65,7 +65,6 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{
|
||||
phone: string;
|
||||
appointments: unknown[];
|
||||
payment: unknown[];
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
@@ -75,6 +74,7 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{
|
||||
status?: unknown;
|
||||
user?: unknown;
|
||||
email?: string | undefined;
|
||||
dateOfBirth?: Date | undefined;
|
||||
insuranceProvider?: string | undefined;
|
||||
address?: string | undefined;
|
||||
city?: string | undefined;
|
||||
@@ -117,7 +117,6 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{
|
||||
phone: string;
|
||||
appointments: unknown[];
|
||||
payment: unknown[];
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
@@ -127,6 +126,7 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{
|
||||
status?: unknown;
|
||||
user?: unknown;
|
||||
email?: string | undefined;
|
||||
dateOfBirth?: Date | undefined;
|
||||
insuranceProvider?: string | undefined;
|
||||
address?: string | undefined;
|
||||
city?: string | undefined;
|
||||
@@ -155,7 +155,6 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{
|
||||
phone: string;
|
||||
appointments: unknown[];
|
||||
payment: unknown[];
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
@@ -165,6 +164,7 @@ export declare const PatientFindManyResultSchema: 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