taxtank-core 1.0.14 → 1.0.15
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.
@@ -10852,11 +10852,12 @@ __decorate([
|
|
10852
10852
|
Type(() => Date)
|
10853
10853
|
], SharesightDetails.prototype, "sharesightLastExportDate", void 0);
|
10854
10854
|
|
10855
|
-
class SharesightPortfolio extends
|
10855
|
+
class SharesightPortfolio extends ObservableModel {
|
10856
10856
|
constructor() {
|
10857
10857
|
super(...arguments);
|
10858
10858
|
this.isTaxFree = false;
|
10859
10859
|
}
|
10860
|
+
static { this.className = 'SharesightPortfolio'; }
|
10860
10861
|
}
|
10861
10862
|
__decorate([
|
10862
10863
|
Type(() => SharesightDetails)
|
@@ -16611,6 +16612,7 @@ class HoldingTradeService extends RestService$1 {
|
|
16611
16612
|
}
|
16612
16613
|
listenEvents() {
|
16613
16614
|
this.listenCSE(HoldingTradeImport, this.refreshCache, ['post', 'delete']);
|
16615
|
+
this.listenCSE(SharesightPortfolio, this.refreshCache, ['put', 'delete']);
|
16614
16616
|
}
|
16615
16617
|
listenNotifications() {
|
16616
16618
|
this.eventDispatcherService.on(AppEventTypeEnum.NOTIFICATION_ADDED).subscribe((notification) => {
|