Deletes a matching rule
(ctx context.Context, reconciliationID string, progress model.ReconciliationProgress)
| 164 | UpdateMatchingRule(ctx context.Context, rule *model.MatchingRule) error // Updates a matching rule |
| 165 | DeleteMatchingRule(ctx context.Context, id string) error // Deletes a matching rule |
| 166 | SaveReconciliationProgress(ctx context.Context, reconciliationID string, progress model.ReconciliationProgress) error // Saves reconciliation progress |
| 167 | LoadReconciliationProgress(ctx context.Context, reconciliationID string) (model.ReconciliationProgress, error) // Loads reconciliation progress |
| 168 | RecordMatches(ctx context.Context, reconciliationID string, matches []model.Match) error // Records matches for a reconciliation |
| 169 | RecordUnmatched(ctx context.Context, reconciliationID string, results []string) error // Records unmatched results for a reconciliation |