Files
DentalManagementMH06/packages/db/shared/schemas/results/ClaimAggregateResult.schema.ts
Gitead cf85750d90 feat: add PreAuth tab, preauth selenium flow, and PreAuth No column
- Insurance Forms modal: split into Insurance Claim / PreAuth tabs
- PreAuth tab: same patient info + service lines, no toggle/direct combos
- Excluded Recalls & New Patients, Composite Fillings (Front/Back), Pedo from PreAuth combos
- Extractions: replaced Simple/Surg/Baby Teeth EXT with Full Bony EXT (D7240)
- MH PreAuth button: rewritten selenium worker to use masshealth-dental.org,
  selects Dental Prior Authorization (2nd option), skips Date of Service field
- agent.py: convert pdf_path to pdf_url for /claim-pre-auth endpoint
- nginx + Express: raise body size limit to 50mb (fix 413 errors)
- DB schema: appointmentId optional on Claim, add preAuthNumber field, add PREAUTH status
- Backend: create PREAUTH claim record on preauth submit, save preAuthNumber on completion
- Claims table: add PreAuth No column (blue) next to Claim No

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-16 22:53:41 -04:00

82 lines
2.7 KiB
TypeScript

import * as z from 'zod';
export const ClaimAggregateResultSchema = z.object({ _count: z.object({
id: z.number(),
patientId: z.number(),
appointmentId: z.number(),
userId: z.number(),
staffId: z.number(),
patientName: z.number(),
memberId: z.number(),
dateOfBirth: z.number(),
remarks: z.number(),
missingTeethStatus: z.number(),
missingTeeth: z.number(),
serviceDate: z.number(),
insuranceProvider: z.number(),
createdAt: z.number(),
updatedAt: z.number(),
status: z.number(),
claimNumber: z.number(),
preAuthNumber: z.number(),
npiProviderId: z.number(),
patient: z.number(),
appointment: z.number(),
user: z.number(),
staff: z.number(),
npiProvider: z.number(),
serviceLines: z.number(),
claimFiles: z.number(),
payment: z.number()
}).optional(),
_sum: z.object({
id: z.number().nullable(),
patientId: z.number().nullable(),
appointmentId: z.number().nullable(),
userId: z.number().nullable(),
staffId: z.number().nullable(),
npiProviderId: z.number().nullable()
}).nullable().optional(),
_avg: z.object({
id: z.number().nullable(),
patientId: z.number().nullable(),
appointmentId: z.number().nullable(),
userId: z.number().nullable(),
staffId: z.number().nullable(),
npiProviderId: z.number().nullable()
}).nullable().optional(),
_min: z.object({
id: z.number().int().nullable(),
patientId: z.number().int().nullable(),
appointmentId: z.number().int().nullable(),
userId: z.number().int().nullable(),
staffId: z.number().int().nullable(),
patientName: z.string().nullable(),
memberId: z.string().nullable(),
dateOfBirth: z.date().nullable(),
remarks: z.string().nullable(),
serviceDate: z.date().nullable(),
insuranceProvider: z.string().nullable(),
createdAt: z.date().nullable(),
updatedAt: z.date().nullable(),
claimNumber: z.string().nullable(),
preAuthNumber: z.string().nullable(),
npiProviderId: z.number().int().nullable()
}).nullable().optional(),
_max: z.object({
id: z.number().int().nullable(),
patientId: z.number().int().nullable(),
appointmentId: z.number().int().nullable(),
userId: z.number().int().nullable(),
staffId: z.number().int().nullable(),
patientName: z.string().nullable(),
memberId: z.string().nullable(),
dateOfBirth: z.date().nullable(),
remarks: z.string().nullable(),
serviceDate: z.date().nullable(),
insuranceProvider: z.string().nullable(),
createdAt: z.date().nullable(),
updatedAt: z.date().nullable(),
claimNumber: z.string().nullable(),
preAuthNumber: z.string().nullable(),
npiProviderId: z.number().int().nullable()
}).nullable().optional()});