taxtank-core 0.23.5 → 0.23.6
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.
|
@@ -5414,6 +5414,17 @@
|
|
|
5414
5414
|
return BankAccountCollection;
|
|
5415
5415
|
}(Collection));
|
|
5416
5416
|
|
|
5417
|
+
/**
|
|
5418
|
+
* any event happened in the app, which needs to be handled somehow (distributed to other part of the app)
|
|
5419
|
+
*/
|
|
5420
|
+
var AppEvent = /** @class */ (function () {
|
|
5421
|
+
function AppEvent(type, payload) {
|
|
5422
|
+
this.type = type;
|
|
5423
|
+
this.payload = payload;
|
|
5424
|
+
}
|
|
5425
|
+
return AppEvent;
|
|
5426
|
+
}());
|
|
5427
|
+
|
|
5417
5428
|
/**
|
|
5418
5429
|
* BankConnection means user account at specific bank (usually each user has only one at the same bank)
|
|
5419
5430
|
* service handles BankConnection management
|
|
@@ -5449,6 +5460,7 @@
|
|
|
5449
5460
|
_this.cacheSubject.next(cloneDeep__default["default"](_this.cache));
|
|
5450
5461
|
}
|
|
5451
5462
|
}
|
|
5463
|
+
_this.eventDispatcherService.dispatch(new AppEvent(exports.AppEventTypeEnum.BANK_CONNECTION_ADDED, null));
|
|
5452
5464
|
return classTransformer.plainToClass(BankConnection, connection);
|
|
5453
5465
|
}));
|
|
5454
5466
|
};
|
|
@@ -9034,17 +9046,6 @@
|
|
|
9034
9046
|
classTransformer.Type(function () { return User; })
|
|
9035
9047
|
], EmployeeInvite.prototype, "employee", void 0);
|
|
9036
9048
|
|
|
9037
|
-
/**
|
|
9038
|
-
* any event happened in the app, which needs to be handled somehow (distributed to other part of the app)
|
|
9039
|
-
*/
|
|
9040
|
-
var AppEvent = /** @class */ (function () {
|
|
9041
|
-
function AppEvent(type, payload) {
|
|
9042
|
-
this.type = type;
|
|
9043
|
-
this.payload = payload;
|
|
9044
|
-
}
|
|
9045
|
-
return AppEvent;
|
|
9046
|
-
}());
|
|
9047
|
-
|
|
9048
9049
|
exports.ExportFormatEnum = void 0;
|
|
9049
9050
|
(function (ExportFormatEnum) {
|
|
9050
9051
|
ExportFormatEnum["PDF"] = "PDF";
|