taxtank-core 0.28.48 → 0.28.49
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/bundles/taxtank-core.umd.js +7 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/services/http/bank/bank-connection/bank-connection.service.js +7 -1
- package/fesm2015/taxtank-core.js +6 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/services/http/bank/bank-connection/bank-connection.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6608,6 +6608,7 @@
|
|
|
6608
6608
|
BankConnectionService.prototype.listenEvents = function () {
|
|
6609
6609
|
this.listenToAddedBankAccounts();
|
|
6610
6610
|
this.listenNotifications();
|
|
6611
|
+
this.listenBasiqLogin();
|
|
6611
6612
|
};
|
|
6612
6613
|
BankConnectionService.prototype.add = function (bankConnection) {
|
|
6613
6614
|
var _this = this;
|
|
@@ -6654,6 +6655,12 @@
|
|
|
6654
6655
|
}
|
|
6655
6656
|
});
|
|
6656
6657
|
};
|
|
6658
|
+
BankConnectionService.prototype.listenBasiqLogin = function () {
|
|
6659
|
+
var _this = this;
|
|
6660
|
+
this.eventDispatcherService.on(exports.AppEventTypeEnum.BASIQ_LOGIN_FINISHED).subscribe(function () {
|
|
6661
|
+
_this.resetCache();
|
|
6662
|
+
});
|
|
6663
|
+
};
|
|
6657
6664
|
return BankConnectionService;
|
|
6658
6665
|
}(RestService));
|
|
6659
6666
|
BankConnectionService.userEventTypes = [
|