taxtank-core 0.28.62 → 0.28.63

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.
@@ -7,6 +7,6 @@ export declare enum AccountSetupItemsEnum {
7
7
  PROPERTY = 2,
8
8
  BANK_FEEDS = 3,
9
9
  WORK_LOGBOOK = 4,
10
- SOLE_INCOME = 5,
11
- TRANSACTION = 6
10
+ TRANSACTION = 5,
11
+ SOLE_BUSINESS = 6
12
12
  }
@@ -9,6 +9,7 @@ import { Observable, ReplaySubject } from 'rxjs';
9
9
  import { AccountSetupItemCollection } from '../../collections/account-setup-item.collection';
10
10
  import { VehicleClaimService } from '../http/vehicle/vehicle-claim.service';
11
11
  import { TransactionService } from '../http/transaction/transaction.service';
12
+ import { SoleBusinessService } from '../http';
12
13
  import * as i0 from "@angular/core";
13
14
  /**
14
15
  * Service handling user's account setup process.
@@ -22,10 +23,11 @@ export declare class AccountSetupService {
22
23
  private transactionAllocationService;
23
24
  private vehicleClaimService;
24
25
  private transactionService;
26
+ private soleBusinessService;
25
27
  cache: AccountSetupItemCollection;
26
28
  cacheSubject: ReplaySubject<AccountSetupItemCollection>;
27
29
  clientIncomeTypesId: number;
28
- constructor(clientIncomeTypesService: ClientIncomeTypesService, propertyService: PropertyService, incomeSourceService: IncomeSourceService, bankAccountsService: BankAccountService, transactionAllocationService: TransactionAllocationService, vehicleClaimService: VehicleClaimService, transactionService: TransactionService);
30
+ constructor(clientIncomeTypesService: ClientIncomeTypesService, propertyService: PropertyService, incomeSourceService: IncomeSourceService, bankAccountsService: BankAccountService, transactionAllocationService: TransactionAllocationService, vehicleClaimService: VehicleClaimService, transactionService: TransactionService, soleBusinessService: SoleBusinessService);
29
31
  /**
30
32
  * Get list of account setup items for current user
31
33
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.28.62",
3
+ "version": "0.28.63",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",