refactor(sp31): rename Match strategy 'auto' to 'pcn-exact' for audit clarity

This commit is contained in:
Nora
2026-07-02 14:59:49 -06:00
parent 6624a0bafd
commit 75a2800a9d
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -455,7 +455,7 @@ export interface Match {
id: number;
claim_id: string;
remittance_id: string;
strategy: "auto" | "manual";
strategy: "pcn-exact" | "score-auto" | "manual";
matched_at: string;
prior_claim_state?: ClaimState | null;
is_reversal: boolean;
@@ -507,7 +507,7 @@ export interface UnmatchedResponse {
export interface MatchResponse {
claim: UnmatchedClaim;
match: { id: number; strategy: "auto" | "manual" };
match: { id: number; strategy: "pcn-exact" | "score-auto" | "manual" };
}
// ---------------------------------------------------------------------------