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
parent
commit
4ec3dc3472
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 1
      apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts

1
CHANGELOG.md

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- 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

1
apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts

@ -54,6 +54,7 @@ export class FinancialModelingPrepService
implements DataProviderInterface, OnModuleInit
{
private static countriesMapping = {
'Czech Republic': 'CZ',
'Korea (the Republic of)': 'KR',
'Russian Federation': 'RU',
'Taiwan (Province of China)': 'TW',

Loading…
Cancel
Save