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.
- package/esm2020/lib/db/Enums/bank/bank-connection-status.enum.mjs +1 -3
- package/esm2020/lib/forms/holding/holding-reinvest.form.mjs +3 -5
- package/esm2020/lib/models/bank/bank-connection.mjs +4 -7
- package/esm2020/lib/services/http/bank/basiq/basiq-messages.enum.mjs +4 -3
- package/esm2020/lib/services/http/bank/basiq/basiq.service.mjs +5 -2
- package/fesm2015/taxtank-core.mjs +12 -13
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +12 -13
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/db/Enums/bank/bank-connection-status.enum.d.ts +1 -3
- package/lib/models/bank/bank-connection.d.ts +1 -2
- package/lib/services/http/bank/basiq/basiq-messages.enum.d.ts +3 -2
- package/lib/services/http/bank/basiq/basiq.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
|
3
|
-
REVOKE_CONFIRM_MESSAGE = "
|
|
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
|