taxtank-core 0.33.73 → 0.33.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.73",
3
+ "version": "0.33.74",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -5,4 +5,5 @@ export declare class HoldingTradeImport extends ObservableModel {
5
5
  createdAt: Date;
6
6
  updatedAt: Date;
7
7
  holdings?: HoldingTrade[];
8
+ skippedTickers?: string[];
8
9
  }
@@ -3,5 +3,6 @@ export declare enum HoldingTradeImportMessagesEnum {
3
3
  UPDATED = "Import updated successfully",
4
4
  CONFIRM_DELETE = "Are you sure you want to delete this import?",
5
5
  DELETED = "Import deleted successfully",
6
- DELETE_ERROR = "Import including sold assets can not be deleted"
6
+ DELETE_ERROR = "Import including sold assets can not be deleted",
7
+ SKIPPED = "We were unable to match these tickers: %list%. Please check and try again, or contact support for assistance."
7
8
  }