- Add missing pacs008.ts, pacs009.ts, pain001.ts files - Add missing config.ts, threshold.ts, documentation.ts files - Fix property access errors (orderingCustomerTaxId -> orderingCustomer.taxId) - Add contractActive property to FXContractCheckResult type - Fix undefined handling in validateBrazilianTaxId calls - Update web app tsconfig to exclude dist folders - Remove tsc from web build (Vite handles TypeScript)
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
|