- 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
23 lines
666 B
TypeScript
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
|