taxtank-core 1.0.12 → 1.0.14

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": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.2",
@@ -1,5 +1,5 @@
1
1
  export declare enum SharesightDetailsMessagesEnum {
2
- HOLDING_CONNECTED = "We're syncing your ShareSight trades, which might take a few minutes.",
2
+ HOLDING_CONNECTED = "We're retrieving your Sharesight portfolio details. To choose which ones to share with TaxTank, head to the Integrations tab and click the 'Manage Portfolios' button.",
3
3
  PROPERTY_CONNECTED = "We're syncing your properties, which might take a few minutes.",
4
4
  DISCONNECTED = "Sharesight disconnected",
5
5
  DISCONNECT_CONFIRM = "Disconnecting ShareSight means we can no longer sync data. Any trades already imported will become editable in TaxTank.",
@@ -5,4 +5,5 @@ export declare class SharesightPortfolio extends AbstractModel implements Shares
5
5
  sharesightDetails: SharesightDetails;
6
6
  name: string;
7
7
  externalId: string;
8
+ isTaxFree: boolean;
8
9
  }
@@ -3,4 +3,5 @@ export interface SharesightPortfolioInterface {
3
3
  sharesightDetails: SharesightDetails;
4
4
  name: string;
5
5
  externalId: string;
6
+ isTaxFree: boolean;
6
7
  }
@@ -1,3 +1,3 @@
1
1
  export declare enum SharesightPortfolioMessages {
2
- PUT = "Portfolios updated"
2
+ PUT = "We\u2019re syncing your Sharesight trades, which might take a few minutes. We\u2019ll let you know when they\u2019re ready."
3
3
  }