Files
brazil-swift-ops/packages/rules-engine/src/config.d.ts
defiQUG ecb1bb148e Fix all placeholders and hardcoded values
- Make transactionId and batchId required parameters in E&O uplift functions
- Move BIC code to configurable institution-config in utils package
- Update effective dates to use current date instead of hardcoded 2024-01-01
- Add placeholder review documentation
- Comment out console.log in retention policy (production TODO)
- All critical placeholders resolved
2026-01-23 16:15:48 -08:00

23 lines
666 B
TypeScript

export interface RulesConfig {
threshold: {
usdReportingThreshold: number;
};
iof: {
inboundRate: number;
outboundRate: number;
rateVersion: string;
effectiveDate: Date;
};
aml: {
singleTransactionThreshold: number;
structuringWindowDays: number;
structuringThreshold: number;
};
ruleSetVersion: string;
effectiveDate: Date;
}
export declare const DEFAULT_CONFIG: RulesConfig;
export declare function getConfig(): RulesConfig;
export declare function setConfig(config: RulesConfig): void;
export declare function resetConfig(): void;
//# sourceMappingURL=config.d.ts.map