- Filter patient list by userId so each user sees only their own patients - Sort patients by updatedAt DESC so recently checked patients appear first - Add updatedAt field to Patient model (DB migration via raw SQL + db:generate) - Fix DDMA name extraction: read from detail page "Name:" label, not search results row text which included appended dates - Fix PDF capture: use driver.get() instead of click() to avoid race condition that was saving the search results page instead of the patient detail page - Strip trailing bare dates from extracted names (e.g. "Rodriguez 04/27/2026") - Handle "Last, First" comma format and single-word last names in splitName - Normalize insuranceId consistently in createOrUpdatePatientByInsuranceId - Fix OTP persistent session: stop clearing LocalStorage/IndexedDB on startup (these hold the DDMA device trust token that skips OTP on subsequent logins) - Increase post-navigation wait time for full page render before PDF generation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
3.0 KiB
TypeScript
40 lines
3.0 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { SortOrderSchema } from '../enums/SortOrder.schema';
|
|
import { SortOrderInputObjectSchema as SortOrderInputObjectSchema } from './SortOrderInput.schema';
|
|
import { PatientCountOrderByAggregateInputObjectSchema as PatientCountOrderByAggregateInputObjectSchema } from './PatientCountOrderByAggregateInput.schema';
|
|
import { PatientAvgOrderByAggregateInputObjectSchema as PatientAvgOrderByAggregateInputObjectSchema } from './PatientAvgOrderByAggregateInput.schema';
|
|
import { PatientMaxOrderByAggregateInputObjectSchema as PatientMaxOrderByAggregateInputObjectSchema } from './PatientMaxOrderByAggregateInput.schema';
|
|
import { PatientMinOrderByAggregateInputObjectSchema as PatientMinOrderByAggregateInputObjectSchema } from './PatientMinOrderByAggregateInput.schema';
|
|
import { PatientSumOrderByAggregateInputObjectSchema as PatientSumOrderByAggregateInputObjectSchema } from './PatientSumOrderByAggregateInput.schema'
|
|
|
|
const makeSchema = () => z.object({
|
|
id: SortOrderSchema.optional(),
|
|
firstName: SortOrderSchema.optional(),
|
|
lastName: SortOrderSchema.optional(),
|
|
dateOfBirth: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
gender: SortOrderSchema.optional(),
|
|
phone: SortOrderSchema.optional(),
|
|
email: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
address: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
city: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
zipCode: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
insuranceProvider: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
insuranceId: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
groupNumber: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
policyHolder: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
allergies: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
medicalConditions: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(),
|
|
status: SortOrderSchema.optional(),
|
|
userId: SortOrderSchema.optional(),
|
|
createdAt: SortOrderSchema.optional(),
|
|
updatedAt: SortOrderSchema.optional(),
|
|
_count: z.lazy(() => PatientCountOrderByAggregateInputObjectSchema).optional(),
|
|
_avg: z.lazy(() => PatientAvgOrderByAggregateInputObjectSchema).optional(),
|
|
_max: z.lazy(() => PatientMaxOrderByAggregateInputObjectSchema).optional(),
|
|
_min: z.lazy(() => PatientMinOrderByAggregateInputObjectSchema).optional(),
|
|
_sum: z.lazy(() => PatientSumOrderByAggregateInputObjectSchema).optional()
|
|
}).strict();
|
|
export const PatientOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.PatientOrderByWithAggregationInput> = makeSchema() as unknown as z.ZodType<Prisma.PatientOrderByWithAggregationInput>;
|
|
export const PatientOrderByWithAggregationInputObjectZodSchema = makeSchema();
|