From e54459776c27468e1dd623c7c2d9088d5e83e670 Mon Sep 17 00:00:00 2001 From: justin Date: Sun, 7 Jun 2026 18:57:26 -0500 Subject: [PATCH] fix(healthcare): apply the +$200 increase to the API price catalog (was display-only) The healthcare +$200 raise (commit 3859557) updated the displayed prices (intake_manifest + service pages) but NOT the API COMPLIANCE_SERVICES catalog, which is what actually charges. Customers saw $599 but were charged $399. npi-revalidation $399 -> $599 npi-reactivation $249 -> $449 nppes-update $149 -> $349 medicare-enrollment $499 -> $699 oig-sam-screening $99 -> $299 provider-compliance-bundle $699 -> $899 checkout.ts charges order.service_fee_cents (set from this catalog at order creation), so this makes charged = displayed for all 6 provider services. --- api/src/routes/compliance-orders.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/api/src/routes/compliance-orders.ts b/api/src/routes/compliance-orders.ts index 320e44c..ff8e4cc 100644 --- a/api/src/routes/compliance-orders.ts +++ b/api/src/routes/compliance-orders.ts @@ -472,37 +472,37 @@ const COMPLIANCE_SERVICES: Record< // overdue signal from the free CMS revalidation list). "npi-revalidation": { name: "Medicare PECOS Revalidation Filing", - price_cents: 39900, + price_cents: 59900, erpnext_item: "NPI-REVALIDATION", discountable: true, }, "npi-reactivation": { name: "NPI Reactivation", - price_cents: 24900, + price_cents: 44900, erpnext_item: "NPI-REACTIVATION", discountable: true, }, "nppes-update": { name: "NPPES Data Update / Attestation", - price_cents: 14900, + price_cents: 34900, erpnext_item: "NPPES-UPDATE", discountable: true, }, "medicare-enrollment": { name: "Medicare Enrollment (PECOS)", - price_cents: 49900, + price_cents: 69900, erpnext_item: "MEDICARE-ENROLLMENT", discountable: true, }, "oig-sam-screening": { name: "OIG/SAM Exclusion Screening (Annual)", - price_cents: 9900, + price_cents: 29900, erpnext_item: "OIG-SAM-SCREENING", discountable: false, }, "provider-compliance-bundle": { name: "Provider Compliance Bundle (Annual)", - price_cents: 69900, + price_cents: 89900, erpnext_item: "PROVIDER-COMPLIANCE-BUNDLE", discountable: true, },