fix: use rendering provider from claim form for MassHealth dentist search, default to Mary Scannell, select first office option

This commit is contained in:
Gitead
2026-04-23 00:25:11 -04:00
parent 1414ec11fd
commit ca7797841f
798 changed files with 2565 additions and 21785 deletions

View File

@@ -3,7 +3,7 @@ export declare const PatientFindFirstResultSchema: z.ZodNullable<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 PatientFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
phone: string;
appointments: unknown[];
payment: unknown[];
dateOfBirth: Date;
firstName: string;
lastName: string;
gender: string;
@@ -46,6 +45,7 @@ export declare const PatientFindFirstResultSchema: z.ZodNullable<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 PatientFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
phone: string;
appointments: unknown[];
payment: unknown[];
dateOfBirth: Date;
firstName: string;
lastName: string;
gender: string;
@@ -74,6 +73,7 @@ export declare const PatientFindFirstResultSchema: z.ZodNullable<z.ZodObject<{
status?: unknown;
user?: unknown;
email?: string | undefined;
dateOfBirth?: Date | undefined;
insuranceProvider?: string | undefined;
address?: string | undefined;
city?: string | undefined;