- 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>
27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.literal(true).optional(),
|
|
patientId: z.literal(true).optional(),
|
|
appointmentId: z.literal(true).optional(),
|
|
userId: z.literal(true).optional(),
|
|
staffId: z.literal(true).optional(),
|
|
patientName: z.literal(true).optional(),
|
|
memberId: z.literal(true).optional(),
|
|
dateOfBirth: z.literal(true).optional(),
|
|
remarks: z.literal(true).optional(),
|
|
missingTeethStatus: z.literal(true).optional(),
|
|
serviceDate: z.literal(true).optional(),
|
|
insuranceProvider: z.literal(true).optional(),
|
|
createdAt: z.literal(true).optional(),
|
|
updatedAt: z.literal(true).optional(),
|
|
status: z.literal(true).optional(),
|
|
claimNumber: z.literal(true).optional(),
|
|
preAuthNumber: z.literal(true).optional(),
|
|
npiProviderId: z.literal(true).optional()
|
|
}).strict();
|
|
export const ClaimMinAggregateInputObjectSchema: z.ZodType<Prisma.ClaimMinAggregateInputType> = makeSchema() as unknown as z.ZodType<Prisma.ClaimMinAggregateInputType>;
|
|
export const ClaimMinAggregateInputObjectZodSchema = makeSchema();
|