feat(sp7): inbox API types include matched/total line counts

This commit is contained in:
Tyler
2026-06-20 19:44:45 -06:00
parent 391a07f877
commit 2432ca0ec4
+10
View File
@@ -29,6 +29,16 @@ export type InboxClaimRow = {
score?: number | null; score?: number | null;
score_tier?: ScoreTier | null; score_tier?: ScoreTier | null;
score_breakdown?: ScoreBreakdown | null; score_breakdown?: ScoreBreakdown | null;
/**
* SP7: populated on `rejected` / `done_today` claim rows when the claim
* has a matched remittance. Carries the line-count badge the
* `MatchedRemitCard` displays (``3/4 matched lines``).
*/
matched_remittance?: {
id: string;
matched_lines: number;
total_lines: number;
} | null;
}; };
export type InboxCandidateRow = { export type InboxCandidateRow = {