Browse Source
Bugfix/resolve data source transformation in export and performance endpoint (#6411)
* Resolve data source transformation in errors of performance endpoint and export functionality
* Update changelog
pull/6418/head
Thomas Kaul
12 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
0 deletions
-
CHANGELOG.md
-
apps/api/src/interceptors/transform-data-source-in-response/transform-data-source-in-response.interceptor.ts
|
|
@ -14,6 +14,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Improved the language localization for Dutch (`nl`) |
|
|
- Improved the language localization for Dutch (`nl`) |
|
|
- Improved the language localization for Italian (`it`) |
|
|
- Improved the language localization for Italian (`it`) |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Resolved the data source transformation in the errors of the performance endpoint |
|
|
|
|
|
- Resolved the data source transformation in the export functionality |
|
|
|
|
|
|
|
|
## 2.244.0 - 2026-02-28 |
|
|
## 2.244.0 - 2026-02-28 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
@ -62,8 +62,10 @@ export class TransformDataSourceInResponseInterceptor< |
|
|
valueMap, |
|
|
valueMap, |
|
|
object: data, |
|
|
object: data, |
|
|
paths: [ |
|
|
paths: [ |
|
|
|
|
|
'activities[*].dataSource', |
|
|
'activities[*].SymbolProfile.dataSource', |
|
|
'activities[*].SymbolProfile.dataSource', |
|
|
'benchmarks[*].dataSource', |
|
|
'benchmarks[*].dataSource', |
|
|
|
|
|
'errors[*].dataSource', |
|
|
'fearAndGreedIndex.CRYPTOCURRENCIES.dataSource', |
|
|
'fearAndGreedIndex.CRYPTOCURRENCIES.dataSource', |
|
|
'fearAndGreedIndex.STOCKS.dataSource', |
|
|
'fearAndGreedIndex.STOCKS.dataSource', |
|
|
'holdings[*].dataSource', |
|
|
'holdings[*].dataSource', |
|
|
|