taxtank-core 0.30.89 → 0.30.91

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.
@@ -1,7 +1,5 @@
1
1
  export declare enum BankConnectionStatusEnum {
2
2
  PENDING = 1,
3
3
  ACTIVE = 2,
4
- INVALID = 3,
5
- RECONNECTING = 4,
6
- INACTIVE = 5
4
+ RECONNECTING = 4
7
5
  }
@@ -5,10 +5,9 @@ export declare class BankConnection extends BankConnectionBase {
5
5
  basiqJob: BasiqJob;
6
6
  bank: Bank;
7
7
  lastSuccessImportDate: Date;
8
- isDisconnected(): boolean;
9
8
  isPending(): boolean;
10
9
  isActive(): boolean;
11
- isInactive(): boolean;
10
+ isReconnecting(): boolean;
12
11
  setPending(): void;
13
12
  isOpenBanking(): boolean;
14
13
  isBasiq(): boolean;
@@ -1,4 +1,5 @@
1
1
  export declare enum BasiqMessagesEnum {
2
- REVOKE_CONFIRM_TITLE = "Are you sure you want to Revoke access?",
3
- REVOKE_CONFIRM_MESSAGE = "This can\u2019t be undone! Revoking access to all Basiq bank feeds will disconnect all currently connected banks, meaning you will no longer receive live bank feeds in TaxTank."
2
+ REVOKE_CONFIRM_TITLE = "Are you sure you want to revoke consent for bank feeds?",
3
+ REVOKE_CONFIRM_MESSAGE = "Revoking consent will stop live feeds and delete all historic bank feed data in TaxTank. This will impede the functionality of both bank feeds and equity graphs. This cannot be undone.",
4
+ REVOKE_SUCCESS = "Consent to bank feeds has been revoked."
4
5
  }
@@ -51,6 +51,7 @@ export declare class BasiqService extends RestService<BankAccountBase, BankAccou
51
51
  * used for upgrade to openBanking and manage shared bank accounts flow
52
52
  */
53
53
  deleteBasiq(connection: BankConnection): Observable<any>;
54
+ revokeConsent(): Observable<any>;
54
55
  /**
55
56
  * Open basiq consent ui to allow user to log in to bank
56
57
  * @param token User's basiq token
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.30.89",
3
+ "version": "0.30.91",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",