taxtank-core 0.28.24 → 0.28.26

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.
@@ -5749,6 +5749,16 @@
5749
5749
  enumerable: false,
5750
5750
  configurable: true
5751
5751
  });
5752
+ Object.defineProperty(BankAccount.prototype, "partialAccountNumber", {
5753
+ /**
5754
+ * Get last digits of account number
5755
+ */
5756
+ get: function () {
5757
+ return "xxxx" + this.accountNumber.slice(-4, 0);
5758
+ },
5759
+ enumerable: false,
5760
+ configurable: true
5761
+ });
5752
5762
  /**
5753
5763
  * Get current opening balance amount
5754
5764
  */
@@ -18009,6 +18019,8 @@
18009
18019
  var loan = classTransformer.plainToClass(Loan, Object.assign(bankAccount.loan, { bankAccount: { accountId: bankAccount.accountId } }));
18010
18020
  _this.addControl('loan', new LoanForm(loan));
18011
18021
  }
18022
+ // don't preselect tank type by default
18023
+ _this.get('tankType').setValue(null);
18012
18024
  // basiq account import form should be disabled (unchecked) by default
18013
18025
  _this.disable();
18014
18026
  return _this;