Browse Source
Bugfix/add missing country mapping for Czech Republic in FMP service (#7619)
* Add missing country mapping for Czech Republic
* Update changelog
pull/7620/head^2
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
0 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts
|
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed the cash balance update related to activities in a custom currency |
|
|
- Fixed the cash balance update related to activities in a custom currency |
|
|
|
|
|
- Fixed the missing mapping for Czech Republic in the country weightings of the _Financial Modeling Prep_ service |
|
|
|
|
|
|
|
|
## 3.50.0 - 2026-08-13 |
|
|
## 3.50.0 - 2026-08-13 |
|
|
|
|
|
|
|
|
|
|
|
@ -54,6 +54,7 @@ export class FinancialModelingPrepService |
|
|
implements DataProviderInterface, OnModuleInit |
|
|
implements DataProviderInterface, OnModuleInit |
|
|
{ |
|
|
{ |
|
|
private static countriesMapping = { |
|
|
private static countriesMapping = { |
|
|
|
|
|
'Czech Republic': 'CZ', |
|
|
'Korea (the Republic of)': 'KR', |
|
|
'Korea (the Republic of)': 'KR', |
|
|
'Russian Federation': 'RU', |
|
|
'Russian Federation': 'RU', |
|
|
'Taiwan (Province of China)': 'TW', |
|
|
'Taiwan (Province of China)': 'TW', |
|
|
|