feat(sp7): MatchedRemitCard — line-count badge

This commit is contained in:
Tyler
2026-06-20 19:47:11 -06:00
parent 00cdd068fc
commit b538c0939b
3 changed files with 80 additions and 0 deletions
+7
View File
@@ -537,6 +537,13 @@ export interface ClaimDetailMatchedRemittance {
/** Mirrors the same `"received" | "reconciled"` mapping as the list endpoint. */
status: string;
receivedAt: string; // ISO Z
/**
* SP7: per-line counts for the badge. Optional for backward
* compatibility — older claim-detail responses (pre-SP7) won't have
* these fields. The card omits the badge when undefined.
*/
matchedLines?: number;
totalLines?: number;
}
export interface ClaimDetailStateHistoryEvent {