Browse Source
Bugfix/country mapping of Congo in FMP service (#7811)
* Fix missing country mapping
* Update changelog
pull/7809/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
8 additions and
0 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts
|
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the missing country mapping of _Congo (Dem. Rep. of the)_ and _Congo (Rep. of)_ in the _Financial Modeling Prep_ service |
|
|
|
|
|
|
|
## 3.66.0 - 2026-09-03 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
@ -54,6 +54,8 @@ export class FinancialModelingPrepService |
|
|
|
implements DataProviderInterface, OnModuleInit |
|
|
|
{ |
|
|
|
private static countriesMapping = { |
|
|
|
'Congo (Dem. Rep. of the)': 'CD', |
|
|
|
'Congo (Rep. of)': 'CG', |
|
|
|
'Czech Republic': 'CZ', |
|
|
|
'Korea (the Republic of)': 'KR', |
|
|
|
Macau: 'MO', |
|
|
|
|