From 804e557a49c130591b28cf0b08161f57d2beb863 Mon Sep 17 00:00:00 2001 From: Tyler Date: Sun, 21 Jun 2026 05:05:20 -0600 Subject: [PATCH] docs: list claims.py in api_routers/ Project layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Another router extraction landed: api_routers/claims.py now owns the five /api/claims[...] routes (list, stream, detail, serialize-837, line-reconciliation). Pure code-organization move from api.py — no new endpoints, no new functionality. Update the Project layout block to list claims.py alongside the other 8 routers with the routes it owns. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a8e2022..3d8b059 100644 --- a/README.md +++ b/README.md @@ -482,6 +482,8 @@ backup API). │ │ │ ├── ta1_acks.py # GET /api/ta1-acks, /api/ta1-acks/{id} │ │ │ ├── activity.py # GET /api/activity, /api/activity/stream │ │ │ ├── batches.py # GET /api/batches, /api/batches/{id}, /api/batch-diff +│ │ │ ├── claims.py # GET /api/claims, /api/claims/stream, /api/claims/{id}, +│ │ │ │ # /api/claims/{id}/serialize-837, /api/claims/{id}/line-reconciliation │ │ │ ├── providers.py # GET /api/providers │ │ │ ├── clearhouse.py # GET /api/clearhouse, POST /api/clearhouse/submit │ │ │ └── config.py # /api/config/providers[/...], /api/config/payers[/...], /api/admin/reload-config