Browse Source
Bugfix/add unit price in asset profile currency to redacted values (#5547)
* Add unitPriceInAssetProfileCurrency
* Update changelog
pull/5530/merge
Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
0 deletions
-
CHANGELOG.md
-
apps/api/src/interceptors/redact-values-in-response/redact-values-in-response.interceptor.ts
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Refreshed the cryptocurrencies list |
|
|
- Refreshed the cryptocurrencies list |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed an issue with `unitPriceInAssetProfileCurrency` in the value redaction interceptor for the impersonation mode |
|
|
|
|
|
|
|
|
## 2.200.0 - 2025-09-17 |
|
|
## 2.200.0 - 2025-09-17 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
@ -61,6 +61,7 @@ export class RedactValuesInResponseInterceptor<T> |
|
|
'totalInterestInBaseCurrency', |
|
|
'totalInterestInBaseCurrency', |
|
|
'totalValueInBaseCurrency', |
|
|
'totalValueInBaseCurrency', |
|
|
'unitPrice', |
|
|
'unitPrice', |
|
|
|
|
|
'unitPriceInAssetProfileCurrency', |
|
|
'value', |
|
|
'value', |
|
|
'valueInBaseCurrency' |
|
|
'valueInBaseCurrency' |
|
|
].map((attribute) => { |
|
|
].map((attribute) => { |
|
|