/** * Orchestrates fetching all configured sources and upserting into the DB. * On any source failure, that source's records remain at last known good * state — partial outages don't wipe data. */ import { SanctionsDb } from './db.js'; export interface RefreshSummary { source: string; ok: boolean; fetched: number; added: number; modified: number; removed: number; error?: string; } export declare function refreshAll(db: SanctionsDb): Promise; //# sourceMappingURL=refresh.d.ts.map