Files
DentalManagementMH05/packages/db/shared/schemas/results/PatientGroupByResult.schema.ts
Gitead 112529155c feat: persist AI conversation state in DB and fix LangGraph flow bugs
- Replace in-memory Maps in aiHandoffStore with DB-backed async functions
  using new patient_conversation table (stage + aiHandoff per patient)
- Add afterHoursEnabled to ai_settings table (persists across restarts)
- Fix runtime crash in reschedule-graph: mon/tue/wed variables were out
  of scope in the next-week fallback branch (ReferenceError)
- Wire rescheduleGreeting and generalFallback chat templates through to
  LangGraph nodes so user-configured messages take effect
- Add otherNode to reminder-graph to handle unclassified patient replies
  (e.g. "I want another appointment") and route to booking flow
- Fetch chatTemplates once per webhook request instead of per stage

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 15:23:55 -04:00

107 lines
3.2 KiB
TypeScript

import * as z from 'zod';
export const PatientGroupByResultSchema = z.array(z.object({
id: z.number().int(),
firstName: z.string(),
lastName: z.string(),
dateOfBirth: z.date(),
gender: z.string(),
phone: z.string(),
email: z.string(),
address: z.string(),
city: z.string(),
zipCode: z.string(),
insuranceProvider: z.string(),
insuranceId: z.string(),
groupNumber: z.string(),
policyHolder: z.string(),
allergies: z.string(),
medicalConditions: z.string(),
preferredLanguage: z.string(),
userId: z.number().int(),
createdAt: z.date(),
updatedAt: z.date(),
_count: z.object({
id: z.number(),
firstName: z.number(),
lastName: z.number(),
dateOfBirth: z.number(),
gender: z.number(),
phone: z.number(),
email: z.number(),
address: z.number(),
city: z.number(),
zipCode: z.number(),
insuranceProvider: z.number(),
insuranceId: z.number(),
groupNumber: z.number(),
policyHolder: z.number(),
allergies: z.number(),
medicalConditions: z.number(),
preferredLanguage: z.number(),
status: z.number(),
userId: z.number(),
createdAt: z.number(),
updatedAt: z.number(),
user: z.number(),
appointments: z.number(),
procedures: z.number(),
claims: z.number(),
groups: z.number(),
payment: z.number(),
communications: z.number(),
documents: z.number(),
conversation: z.number()
}).optional(),
_sum: z.object({
id: z.number().nullable(),
userId: z.number().nullable()
}).nullable().optional(),
_avg: z.object({
id: z.number().nullable(),
userId: z.number().nullable()
}).nullable().optional(),
_min: z.object({
id: z.number().int().nullable(),
firstName: z.string().nullable(),
lastName: z.string().nullable(),
dateOfBirth: z.date().nullable(),
gender: z.string().nullable(),
phone: z.string().nullable(),
email: z.string().nullable(),
address: z.string().nullable(),
city: z.string().nullable(),
zipCode: z.string().nullable(),
insuranceProvider: z.string().nullable(),
insuranceId: z.string().nullable(),
groupNumber: z.string().nullable(),
policyHolder: z.string().nullable(),
allergies: z.string().nullable(),
medicalConditions: z.string().nullable(),
preferredLanguage: z.string().nullable(),
userId: z.number().int().nullable(),
createdAt: z.date().nullable(),
updatedAt: z.date().nullable()
}).nullable().optional(),
_max: z.object({
id: z.number().int().nullable(),
firstName: z.string().nullable(),
lastName: z.string().nullable(),
dateOfBirth: z.date().nullable(),
gender: z.string().nullable(),
phone: z.string().nullable(),
email: z.string().nullable(),
address: z.string().nullable(),
city: z.string().nullable(),
zipCode: z.string().nullable(),
insuranceProvider: z.string().nullable(),
insuranceId: z.string().nullable(),
groupNumber: z.string().nullable(),
policyHolder: z.string().nullable(),
allergies: z.string().nullable(),
medicalConditions: z.string().nullable(),
preferredLanguage: z.string().nullable(),
userId: z.number().int().nullable(),
createdAt: z.date().nullable(),
updatedAt: z.date().nullable()
}).nullable().optional()
}));