Browse Source

Bugfix/country mapping of Macau in FMP service (#7719)

* Fix country mapping of Macau

* Update changelog
pull/7717/head
Thomas Kaul 3 days ago
committed by GitHub
parent
commit
b75ebb2c1d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 1
      apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts

4
CHANGELOG.md

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migrated the create and edit access dialogs to dedicated routes - Migrated the create and edit access dialogs to dedicated routes
### Fixed
- Fixed the country mapping of Macau in the _Financial Modeling Prep_ service
## 3.60.0 - 2026-08-24 ## 3.60.0 - 2026-08-24
### Added ### Added

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

@ -56,6 +56,7 @@ export class FinancialModelingPrepService
private static countriesMapping = { private static countriesMapping = {
'Czech Republic': 'CZ', 'Czech Republic': 'CZ',
'Korea (the Republic of)': 'KR', 'Korea (the Republic of)': 'KR',
Macau: 'MO',
'Russian Federation': 'RU', 'Russian Federation': 'RU',
'Taiwan (Province of China)': 'TW', 'Taiwan (Province of China)': 'TW',
Turkey: 'TR' Turkey: 'TR'

Loading…
Cancel
Save