feat(sp7): inbox API types include matched/total line counts
This commit is contained in:
@@ -29,6 +29,16 @@ export type InboxClaimRow = {
|
||||
score?: number | null;
|
||||
score_tier?: ScoreTier | 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 = {
|
||||
|
||||
Reference in New Issue
Block a user