Browse Source

Task/deprecate activities in portfolio holding response (#6147)

* Deprecate activities

* Update changelog
pull/6136/head^2
Thomas Kaul 3 days ago
committed by GitHub
parent
commit
3698c76972
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 2
      libs/common/src/lib/interfaces/responses/portfolio-holding-response.interface.ts

6
CHANGELOG.md

@ -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
### Changed
- Deprecated `activities` in the endpoint `GET api/v1/portfolio/holding/:dataSource/:symbol`
## 2.228.0 - 2026-01-03
### Added

2
libs/common/src/lib/interfaces/responses/portfolio-holding-response.interface.ts

@ -9,7 +9,9 @@ import {
import { Tag } from '@prisma/client';
export interface PortfolioHoldingResponse {
/** @deprecated */
activities: Activity[];
activitiesCount: number;
averagePrice: number;
dataProviderInfo: DataProviderInfo;

Loading…
Cancel
Save