taxtank-core 0.12.1 → 0.12.2

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.
@@ -9436,7 +9436,7 @@
9436
9436
  batch.push(this.create(AccountSetupItemsEnum.OTHER_INCOME, this.getIncomeSourcesByType(exports.IncomeSourceTypeEnum.OTHER)));
9437
9437
  }
9438
9438
  // Rental income item is completed when user added at least one property
9439
- if (incomeTypes.rental) {
9439
+ if (incomeTypes.property) {
9440
9440
  batch.push(this.create(AccountSetupItemsEnum.PROPERTY, this.propertyService.get()));
9441
9441
  }
9442
9442
  // Bank feeds item is completed when user added at least one bank account (basiq or manual)
@@ -13427,8 +13427,8 @@
13427
13427
  function ClientIncomeTypesForm(clientIncomeTypes) {
13428
13428
  var _this = _super.call(this, {
13429
13429
  salary: new forms.FormControl(clientIncomeTypes.salary),
13430
- rental: new forms.FormControl(clientIncomeTypes.rental),
13431
- soleTrader: new forms.FormControl(clientIncomeTypes.soleTrader),
13430
+ property: new forms.FormControl(clientIncomeTypes.property),
13431
+ sole: new forms.FormControl(clientIncomeTypes.sole),
13432
13432
  dividends: new forms.FormControl(clientIncomeTypes.dividends),
13433
13433
  other: new forms.FormControl(clientIncomeTypes.other)
13434
13434
  }, atLeastOneCheckedValidator()) || this;