Files
DentalManagementMH06/packages/db/shared/schemas/objects/ClaimCreateWithoutPaymentInput.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

40 lines
3.1 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import { MissingTeethStatusSchema } from '../enums/MissingTeethStatus.schema';
import { NullableJsonNullValueInputSchema } from '../enums/NullableJsonNullValueInput.schema';
import { ClaimStatusSchema } from '../enums/ClaimStatus.schema';
import { PatientCreateNestedOneWithoutClaimsInputObjectSchema as PatientCreateNestedOneWithoutClaimsInputObjectSchema } from './PatientCreateNestedOneWithoutClaimsInput.schema';
import { AppointmentCreateNestedOneWithoutClaimsInputObjectSchema as AppointmentCreateNestedOneWithoutClaimsInputObjectSchema } from './AppointmentCreateNestedOneWithoutClaimsInput.schema';
import { UserCreateNestedOneWithoutClaimsInputObjectSchema as UserCreateNestedOneWithoutClaimsInputObjectSchema } from './UserCreateNestedOneWithoutClaimsInput.schema';
import { StaffCreateNestedOneWithoutClaimsInputObjectSchema as StaffCreateNestedOneWithoutClaimsInputObjectSchema } from './StaffCreateNestedOneWithoutClaimsInput.schema';
import { NpiProviderCreateNestedOneWithoutClaimsInputObjectSchema as NpiProviderCreateNestedOneWithoutClaimsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutClaimsInput.schema';
import { ServiceLineCreateNestedManyWithoutClaimInputObjectSchema as ServiceLineCreateNestedManyWithoutClaimInputObjectSchema } from './ServiceLineCreateNestedManyWithoutClaimInput.schema';
import { ClaimFileCreateNestedManyWithoutClaimInputObjectSchema as ClaimFileCreateNestedManyWithoutClaimInputObjectSchema } from './ClaimFileCreateNestedManyWithoutClaimInput.schema'
import { JsonValueSchema as jsonSchema } from '../../helpers/json-helpers';
const makeSchema = () => z.object({
patientName: z.string(),
memberId: z.string(),
dateOfBirth: z.coerce.date(),
remarks: z.string(),
missingTeethStatus: MissingTeethStatusSchema.optional(),
missingTeeth: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(),
serviceDate: z.coerce.date(),
insuranceProvider: z.string(),
createdAt: z.coerce.date().optional(),
updatedAt: z.coerce.date().optional(),
status: ClaimStatusSchema.optional(),
claimNumber: z.string().optional().nullable(),
preAuthNumber: z.string().optional().nullable(),
patient: z.lazy(() => PatientCreateNestedOneWithoutClaimsInputObjectSchema),
appointment: z.lazy(() => AppointmentCreateNestedOneWithoutClaimsInputObjectSchema).optional(),
user: z.lazy(() => UserCreateNestedOneWithoutClaimsInputObjectSchema).optional(),
staff: z.lazy(() => StaffCreateNestedOneWithoutClaimsInputObjectSchema).optional(),
npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutClaimsInputObjectSchema).optional(),
serviceLines: z.lazy(() => ServiceLineCreateNestedManyWithoutClaimInputObjectSchema).optional(),
claimFiles: z.lazy(() => ClaimFileCreateNestedManyWithoutClaimInputObjectSchema).optional()
}).strict();
export const ClaimCreateWithoutPaymentInputObjectSchema: z.ZodType<Prisma.ClaimCreateWithoutPaymentInput> = makeSchema() as unknown as z.ZodType<Prisma.ClaimCreateWithoutPaymentInput>;
export const ClaimCreateWithoutPaymentInputObjectZodSchema = makeSchema();