taxtank-core 1.0.37 → 1.0.38

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.
Files changed (37) hide show
  1. package/fesm2022/taxtank-core-common.mjs +1 -1
  2. package/fesm2022/taxtank-core-common.mjs.map +1 -1
  3. package/fesm2022/taxtank-core.mjs +222 -383
  4. package/fesm2022/taxtank-core.mjs.map +1 -1
  5. package/package.json +1 -1
  6. package/public-api.d.ts +0 -2
  7. package/src/lib/collections/account-setup-item.collection.d.ts +1 -5
  8. package/src/lib/collections/bank-account.collection.d.ts +1 -1
  9. package/src/lib/collections/subscription/service-subscription.collection.d.ts +0 -6
  10. package/src/lib/collections/tax-summary/tax-return-categories.const.d.ts +0 -3
  11. package/src/lib/db/Enums/index.d.ts +0 -1
  12. package/src/lib/db/Enums/setup-item-type.enum.d.ts +2 -9
  13. package/src/lib/db/Enums/tax-return/tax-return-category-list.enum.d.ts +3 -4
  14. package/src/lib/db/Enums/tax-summary-section.enum.d.ts +3 -4
  15. package/src/lib/db/Models/property/property.d.ts +0 -1
  16. package/src/lib/db/Models/setup-item.d.ts +1 -4
  17. package/src/lib/db/Models/sole/sole-business.d.ts +1 -0
  18. package/src/lib/forms/abstract.form.d.ts +0 -3
  19. package/src/lib/models/account-setup/account-setup-item.d.ts +12 -5
  20. package/src/lib/models/account-setup/account-setup-items.enum.d.ts +11 -31
  21. package/src/lib/models/index.d.ts +0 -1
  22. package/src/lib/models/tax-summary/tax-summary.d.ts +5 -5
  23. package/src/lib/models/user/user.d.ts +1 -2
  24. package/src/lib/services/account-setup/account-setup.service.d.ts +15 -33
  25. package/src/lib/services/http/firm/firm.service.d.ts +4 -0
  26. package/src/lib/services/http/loan/borrowing-expense/borrowing-expense.service.d.ts +1 -2
  27. package/src/lib/services/http/rest/rest-old.service.d.ts +0 -1
  28. package/src/lib/services/http/rest/rest.service.d.ts +0 -1
  29. package/src/lib/services/http/setup-item/setup-item.service.d.ts +1 -1
  30. package/src/lib/services/http/subscription/service-subscription/subscription.service.d.ts +0 -1
  31. package/src/lib/services/http/user/user.service.d.ts +2 -3
  32. package/src/lib/db/Enums/youtube-videos.enum.d.ts +0 -18
  33. package/src/lib/models/account-setup/account-setup-item-status.enum.d.ts +0 -5
  34. package/src/lib/models/account-setup/index.d.ts +0 -3
  35. package/src/lib/resolvers/business/business.resolver.d.ts +0 -11
  36. package/src/lib/resolvers/business/sole-details.resolver.d.ts +0 -11
  37. package/src/lib/resolvers/index.d.ts +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.2",
package/public-api.d.ts CHANGED
@@ -37,7 +37,6 @@ export * from './src/lib/db/Enums/depreciation-write-off-amount.enum';
37
37
  export * from './src/lib/db/Enums/firm/firm-type.enum';
38
38
  export * from './src/lib/db/Enums/income-source';
39
39
  export * from './src/lib/db/Enums/invite-status.enum';
40
- export * from './src/lib/db/Enums/youtube-videos.enum';
41
40
  export * from './src/lib/db/Enums/bank/loan';
42
41
  export * from './src/lib/db/Enums/phone-type.enum';
43
42
  export * from './src/lib/db/Enums/property/property-depreciation-calculation.enum';
@@ -157,7 +156,6 @@ export * from './src/lib/models/user-event/user-event-type';
157
156
  * Services
158
157
  */
159
158
  export * from './src/lib/services';
160
- export * from './src/lib/resolvers';
161
159
  /**
162
160
  * Interfaces
163
161
  */
@@ -1,10 +1,6 @@
1
- import { AccountSetupItem } from '../models';
1
+ import { AccountSetupItem } from '../models/account-setup/account-setup-item';
2
2
  import { Collection } from './collection';
3
- import { User } from '../models';
4
3
  export declare class AccountSetupItemCollection extends Collection<AccountSetupItem> {
5
4
  constructor(items: AccountSetupItem[]);
6
5
  isCompleted(): boolean;
7
- getByUser(user: User): this;
8
- getScore(): number;
9
- setUrlId(id: string): void;
10
6
  }
@@ -31,7 +31,7 @@ export declare class BankAccountCollection extends Collection<BankAccount> {
31
31
  /**
32
32
  * Get Collection of bank accounts by tank type
33
33
  */
34
- getByTankType(tankType?: TankTypeEnum): BankAccountCollection;
34
+ getByTankType(tankType: TankTypeEnum): BankAccountCollection;
35
35
  /**
36
36
  * Get list of all bank account properties
37
37
  */
@@ -10,11 +10,6 @@ export declare class ServiceSubscriptionCollection extends Collection<ServiceSub
10
10
  getExpiredTrials(): this;
11
11
  getExpiredAfter(date?: Date): this;
12
12
  getPaid(): this;
13
- getRoles(): UserRolesEnum[];
14
- /**
15
- * search roles including hierarchy
16
- */
17
- hasRoles(roles: UserRolesEnum | UserRolesEnum[]): boolean;
18
13
  getActivePaid(): ServiceSubscription;
19
14
  /**
20
15
  * @TODO vik remove trials replaced by paid item
@@ -24,6 +19,5 @@ export declare class ServiceSubscriptionCollection extends Collection<ServiceSub
24
19
  findByProduct(product: ServiceProduct): ServiceSubscription;
25
20
  filterByProduct(product: ServiceProduct): this;
26
21
  filterByRole(role: UserRolesEnum): this;
27
- findByRole(role: UserRolesEnum): ServiceSubscription;
28
22
  hasPropertyTank(): boolean;
29
23
  }
@@ -1,7 +1,4 @@
1
1
  import { TaxReturnCategoryListEnum } from '../../db/Enums';
2
- /**
3
- * @TODO vik check (tax_return_category/tax_return_item/chart_accounts)
4
- */
5
2
  export declare const TAX_RETURN_CATEGORIES: {
6
3
  [key: string]: {
7
4
  [key: string]: TaxReturnCategoryListEnum[];
@@ -10,4 +10,3 @@ export * from './subscription';
10
10
  export * from './user';
11
11
  export * from './sole';
12
12
  export * from './home-office';
13
- export * from './setup-item-type.enum';
@@ -1,11 +1,4 @@
1
1
  export declare enum SetupItemTypeEnum {
2
- EMPLOYEE = 0,
3
- WORK = 1,
4
- PROPERTIES = 2,
5
- PROPERTY = 3,
6
- BUSINESSES = 4,
7
- HOLDING = 5,
8
- BANK_ACCOUNTS = 6,
9
- BANK_ACCOUNT = 7,
10
- BUSINESS = 8
2
+ CLIENT = 1,
3
+ EMPLOYEE = 2
11
4
  }
@@ -12,10 +12,13 @@ export declare enum TaxReturnCategoryListEnum {
12
12
  DIVIDENDS = 6,
13
13
  SHARE_SCHEMES = 35,
14
14
  GROSS_RENT = 8,
15
+ PARTNERSHIPS_TRUSTS = 13,
15
16
  PARTNERSHIPS = 36,
16
17
  TRUSTS = 37,
17
18
  PSI_SBE_INCOME = 14,
19
+ SOLE_TRADER_BUSINESS_INCOME = 38,
18
20
  CAPITAL_GAINS = 15,
21
+ FOREIGN_SOURCE_INCOME = 16,
19
22
  BONUSES_FROM_LIFE_INSURANCE = 17,
20
23
  FORESTRY_MANAGED_INVESTMENT_SCHEMES = 39,
21
24
  OTHER_INCOME = 40,
@@ -42,7 +45,6 @@ export declare enum TaxReturnCategoryListEnum {
42
45
  DEPRECIATION_EXPENSES = 56,
43
46
  MOTOR_VEHICLE_EXPENSES = 57,
44
47
  ALL_OTHER_EXPENSES = 58,
45
- WORK_RELATED_DEPRECIATION = 69,
46
48
  GROSS_TAX_PAYABLE = 19,
47
49
  TAX_ON_TAXABLE_INCOME = 20,
48
50
  MEDICARE = 21,
@@ -58,8 +60,5 @@ export declare enum TaxReturnCategoryListEnum {
58
60
  TAX_PAYABLE = 28,
59
61
  BUSINESS_INCOME_OR_LOSS = 59,
60
62
  DEFERRED_BUSINESS_LOSSES = 60,
61
- TAX_OFFSET_LOW = 61,
62
- tAX_OFFSET_MIDDLE = 62,
63
- TAX_OFFSET_SOLE = 63,
64
63
  DEFERRED_BUSINESS_LOSSES_FROM_PRIOR_YEAR = 64
65
64
  }
@@ -1,8 +1,7 @@
1
1
  export declare enum TaxSummarySectionEnum {
2
2
  WORK_TANK = 1,
3
3
  PROPERTY_TANK = 2,
4
- HOLDINGS_TANK = 3,
5
- CAPITAL_GAINS = 4,
6
- SOLE_TANK = 5,
7
- SUMMARY = 6
4
+ OTHER_TANK = 3,
5
+ SOLE_TANK = 4,
6
+ SUMMARY = 5
8
7
  }
@@ -42,5 +42,4 @@ export declare class Property extends ObservableModel {
42
42
  depreciations?: Depreciation[];
43
43
  file: File;
44
44
  corelogicLastRequest: Date;
45
- get capitalCosts(): number;
46
45
  }
@@ -1,4 +1,4 @@
1
- import { SetupItemTypeEnum } from '../Enums';
1
+ import { SetupItemTypeEnum } from '../Enums/setup-item-type.enum';
2
2
  import { UserRolesEnum } from 'taxtank-core/common';
3
3
  import { AbstractModel } from './abstract-model';
4
4
  export declare class SetupItem extends AbstractModel {
@@ -7,8 +7,5 @@ export declare class SetupItem extends AbstractModel {
7
7
  description?: string;
8
8
  url?: string;
9
9
  urlFragment?: string;
10
- isRequired?: boolean;
11
- order?: number;
12
- score?: number;
13
10
  roles?: UserRolesEnum;
14
11
  }
@@ -16,6 +16,7 @@ export declare class SoleBusiness extends ObservableModel {
16
16
  name?: string;
17
17
  description?: string;
18
18
  website?: string;
19
+ logo?: string;
19
20
  deletedAt?: Date;
20
21
  user?: User;
21
22
  activity?: SoleBusinessActivity;
@@ -61,9 +61,6 @@ export declare abstract class AbstractForm<Model, Controls extends ControlsInter
61
61
  * upgraded version of patchValue to skip duplicated changes
62
62
  */
63
63
  patchField(name: string, value: any): void;
64
- patch(fields: {
65
- [key: string]: any;
66
- }): void;
67
64
  fieldChanged(name: string): boolean;
68
65
  addValidators(validators: ValidatorFn | ValidatorFn[], controls?: AbstractControl[]): void;
69
66
  removeValidators(validators: ValidatorFn | ValidatorFn[], controls?: AbstractControl[]): void;
@@ -1,8 +1,15 @@
1
1
  import { SetupItem } from '../../db/Models/setup-item';
2
2
  export declare class AccountSetupItem extends SetupItem {
3
- status: number;
4
- get isPending(): boolean;
5
- get isAchieved(): boolean;
6
- get isCompleted(): boolean;
7
- get isSkipped(): boolean;
3
+ isCompleted: boolean;
4
+ get isSalary(): boolean;
5
+ get isOtherIncome(): boolean;
6
+ get isProperty(): boolean;
7
+ get isBankFeeds(): boolean;
8
+ get isWorkLogbook(): boolean;
9
+ get isTransactionAllocate(): boolean;
10
+ get isSoleBusiness(): boolean;
11
+ get isHoldings(): boolean;
12
+ get isFirmDetails(): boolean;
13
+ get isInviteTeam(): boolean;
14
+ get isInviteClients(): boolean;
8
15
  }
@@ -1,37 +1,17 @@
1
1
  /**
2
- * TODO remove
2
+ * Enum list of all possible account setup items ids. Using with [ACCOUNT_SETUP_ITEMS]{@link ACCOUNT_SETUP_ITEMS}
3
+ * @TODO Vik/Nikita: Do we need to generate it from backend? If some ids changed?
3
4
  */
4
5
  export declare enum AccountSetupItemsEnum {
5
- FIRM_DETAILS = 9,
6
- FIRM_EMPLOYEES = 10,
7
- FIRM_CLIENTS = 11,
8
- WORK_SALARY = 1,
9
- WORK_OTHER_INCOME = 2,
10
- WORK_VEHICLE_CLAIM = 5,
11
- WORK_HOME_OFFICE = 13,
12
- WORK_BANK_ACCOUNT = 14,
13
- WORK_DEPRECIATION = 15,
6
+ SALARY = 1,
7
+ OTHER_INCOME = 2,
14
8
  PROPERTY = 3,
15
- PROPERTIES = 29,
16
- PROPERTIES_BANK_ACCOUNT = 30,
17
- PROPERTY_CAPITAL_COST = 17,
18
- PROPERTY_RENT_INCOME = 18,
19
- PROPERTY_DEPRECIATION = 19,
20
- PROPERTY_CO_OWNER = 20,
9
+ BANK_FEEDS = 4,
10
+ WORK_LOGBOOK = 5,
11
+ TRANSACTION_ALLOCATE = 6,
21
12
  SOLE_BUSINESS = 7,
22
- SOLE_BUSINESSES = 33,
23
- SOLE_VEHICLE_CLAIM = 12,
24
- SOLE_HOME_OFFICE = 21,
25
- SOLE_DEPRECIATION = 22,
26
- SOLE_BANK_ACCOUNT = 23,
27
- SOLE_LOGO = 16,
28
- HOLDING_TRADE = 8,
29
- HOLDING_INTEGRATION = 25,
30
- HOLDING_REPORTS = 36,
31
- BANK_CONNECTION = 4,
32
- BANK_ACCOUNT = 26,
33
- BANK_TRANSACTION = 24,
34
- BANK_ALLOCATION = 6,
35
- BANK_RULE = 27,
36
- BANK_BORROWING_EXPENSE = 28
13
+ HOLDINGS = 8,
14
+ FIRM_DETAILS = 9,
15
+ INVITE_TEAM = 10,
16
+ INVITE_CLIENTS = 11
37
17
  }
@@ -29,4 +29,3 @@ export * from './firm';
29
29
  export * from './home-office';
30
30
  export * from './aussie';
31
31
  export * from './date-range';
32
- export * from './account-setup';
@@ -8,7 +8,7 @@ import { SoleBusiness } from '../sole';
8
8
  export declare class TaxSummary {
9
9
  work: TaxSummarySection;
10
10
  property: TaxSummarySection;
11
- holdings: TaxSummarySection;
11
+ other: TaxSummarySection;
12
12
  sole: TaxSummarySection;
13
13
  summary: TaxSummarySection;
14
14
  projectedTaxPosition: number;
@@ -40,15 +40,15 @@ export declare class TaxSummary {
40
40
  */
41
41
  get propertyNetTotal(): number;
42
42
  /**
43
- * Holdings Net Cash = gross income – expenses – tax withheld - tax instalments
43
+ * Other Net Cash = gross income – expenses – tax withheld - tax instalments
44
44
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
45
45
  */
46
- get holdingsNetCash(): number;
46
+ get otherNetCash(): number;
47
47
  /**
48
- * Holding Net Total = Gross income - expenses + tax offsets + tax instalments + franking credits
48
+ * Other Net Total = Gross income - expenses + tax offsets + tax instalments + franking credits
49
49
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
50
50
  */
51
- get holdingsNetTotal(): number;
51
+ get otherNetTotal(): number;
52
52
  /**
53
53
  * Sole Net Cash = gross income – expenses
54
54
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
@@ -7,7 +7,7 @@ import { Phone } from '../phone/phone';
7
7
  import { ServiceSubscription } from '../service-subscription';
8
8
  import { SoleDetails } from '../sole';
9
9
  import { AppFile } from '../file';
10
- import { AccountSetupItem } from '../account-setup';
10
+ import { AccountSetupItem } from '../account-setup/account-setup-item';
11
11
  import { TankTypeEnum } from '../../db/Enums/tank-type.enum';
12
12
  export declare class User extends BaseUser {
13
13
  subscriptions: ServiceSubscription[];
@@ -29,7 +29,6 @@ export declare class User extends BaseUser {
29
29
  *
30
30
  */
31
31
  get position(): string;
32
- addRoles(roles?: UserRolesEnum[]): void;
33
32
  /**
34
33
  * search roles including hierarchy
35
34
  */
@@ -1,7 +1,8 @@
1
- import { BankAccount, Property, SoleBusiness, User } from '../../models';
2
- import { AllocationRuleService, BankAccountService, BankConnectionService, BankTransactionService, ClientInviteService, ClientMovementService, DepreciationService, EmployeeInviteService, EmployeeService, FirmService, HoldingTradeService, HomeOfficeClaimService, IncomeSourceService, LoanService, PropertyService, PropertyShareService, SharesightDetailsService, SoleBusinessService, TransactionAllocationService, TransactionService, UserService, VehicleClaimService } from '../http';
1
+ import { BankAccountService, ClientInviteService, ClientMovementService, EmployeeInviteService, EmployeeService, FirmService, HoldingTradeService, IncomeSourceService, PropertyService, SoleBusinessService, TransactionAllocationService, TransactionService, UserService, VehicleClaimService } from '../http';
2
+ import { User } from '../../models';
3
3
  import { AccountSetupItemCollection } from '../../collections';
4
4
  import { Observable } from 'rxjs';
5
+ import { SetupItemTypeEnum } from '../../db/Enums/setup-item-type.enum';
5
6
  import { SetupItemService } from '../http/setup-item/setup-item.service';
6
7
  import * as i0 from "@angular/core";
7
8
  /**
@@ -12,17 +13,11 @@ export declare class AccountSetupService {
12
13
  private setupItemService;
13
14
  private propertyService;
14
15
  private incomeSourceService;
15
- private bankConnectionService;
16
16
  private bankAccountsService;
17
- private bankTransactionService;
18
- private loanService;
19
- private allocationRuleService;
20
17
  private transactionAllocationService;
21
18
  private vehicleClaimService;
22
- private homeOfficeClaimService;
23
19
  private transactionService;
24
- private depreciationService;
25
- private businessService;
20
+ private soleBusinessService;
26
21
  private holdingService;
27
22
  private userService;
28
23
  private clientMovementService;
@@ -30,45 +25,32 @@ export declare class AccountSetupService {
30
25
  private employeeService;
31
26
  private employeeInviteService;
32
27
  private firmService;
33
- private sharesightDetailsService;
34
- private propertyShareService;
35
28
  items: AccountSetupItemCollection;
36
29
  user: User;
37
- constructor(setupItemService: SetupItemService, propertyService: PropertyService, incomeSourceService: IncomeSourceService, bankConnectionService: BankConnectionService, bankAccountsService: BankAccountService, bankTransactionService: BankTransactionService, loanService: LoanService, allocationRuleService: AllocationRuleService, transactionAllocationService: TransactionAllocationService, vehicleClaimService: VehicleClaimService, homeOfficeClaimService: HomeOfficeClaimService, transactionService: TransactionService, depreciationService: DepreciationService, businessService: SoleBusinessService, holdingService: HoldingTradeService, userService: UserService, clientMovementService: ClientMovementService, clientInviteService: ClientInviteService, employeeService: EmployeeService, employeeInviteService: EmployeeInviteService, firmService: FirmService, sharesightDetailsService: SharesightDetailsService, propertyShareService: PropertyShareService);
30
+ constructor(setupItemService: SetupItemService, propertyService: PropertyService, incomeSourceService: IncomeSourceService, bankAccountsService: BankAccountService, transactionAllocationService: TransactionAllocationService, vehicleClaimService: VehicleClaimService, transactionService: TransactionService, soleBusinessService: SoleBusinessService, holdingService: HoldingTradeService, userService: UserService, clientMovementService: ClientMovementService, clientInviteService: ClientInviteService, employeeService: EmployeeService, employeeInviteService: EmployeeInviteService, firmService: FirmService);
38
31
  /**
39
32
  * Get list of account setup items for current user/firm
40
33
  */
41
- get(property?: Property, business?: SoleBusiness, bankAccount?: BankAccount): Observable<AccountSetupItemCollection>;
42
- setItemsStatus(property?: Property, business?: SoleBusiness, bankAccount?: BankAccount): Observable<AccountSetupItemCollection>;
34
+ get(type: SetupItemTypeEnum): Observable<AccountSetupItemCollection>;
35
+ getClientItems$(): Observable<AccountSetupItemCollection>;
36
+ getFirmItems$(): Observable<AccountSetupItemCollection>;
43
37
  /**
44
38
  * Check and update isCompleted flag for passed item
45
39
  */
46
40
  private setItemStatus;
47
- private getAllocations;
48
- private getTransactions;
49
- private getCoOwners;
50
41
  /**
51
- * AccountSetupItemsEnum.FIRM_CLIENTS completed when client invites sent or accepted
52
- */
53
- private getClients;
54
- /**
55
- * AccountSetupItemsEnum.FIRM_EMPLOYEES completed when employee invites sent or accepted
42
+ * @TODO Alex: work with collection when services refactored
43
+ * @TODO Vik: waiting for income sources refactoring
56
44
  */
57
- private getEmployees;
45
+ private getIncomeSources;
58
46
  /**
59
- * AccountSetupItemsEnum.FIRM_DETAILS when firm data filled
47
+ * Show logbook item when user has at least 1 vehicle transaction
60
48
  */
61
- private getFirms;
49
+ private getLogbookItem;
62
50
  /**
63
- * @TODO Alex: work with collection when services refactored
64
- * @TODO Vik: waiting for income sources refactoring
51
+ * Hide bank feeds item when user has only holding tank
65
52
  */
66
- private getIncomeSources;
67
- private getVehicleClaims;
68
- private getHomeOfficeClaims;
69
- private getBankAccounts;
70
- private getDepreciations;
71
- private getSharesightDetails;
53
+ private getBankFeedsItem;
72
54
  static ɵfac: i0.ɵɵFactoryDeclaration<AccountSetupService, never>;
73
55
  static ɵprov: i0.ɵɵInjectableDeclaration<AccountSetupService>;
74
56
  }
@@ -9,6 +9,10 @@ export declare class FirmService {
9
9
  firm: Firm;
10
10
  firmSubject: ReplaySubject<Firm>;
11
11
  constructor(http: HttpClient, environment: any);
12
+ /**
13
+ * Register new firm
14
+ * @param data: firm and firm owner data to register
15
+ */
12
16
  register(data: Firm): Observable<Firm>;
13
17
  get(): Observable<Firm>;
14
18
  update(firm: Firm): Observable<void>;
@@ -2,7 +2,6 @@ import { Observable, ReplaySubject } from 'rxjs';
2
2
  import { HttpClient } from '@angular/common/http';
3
3
  import { BorrowingExpense } from '../../../../models/borrowing-expense/borrowing-expense';
4
4
  import { Loan } from '../../../../models/loan/loan';
5
- import { BorrowingExpenseLoan } from '../../../../models/borrowing-expense/borrowing-expense-loan';
6
5
  import * as i0 from "@angular/core";
7
6
  /**
8
7
  * @TODO Alex (TT-1777): Refactor with rest service
@@ -17,7 +16,7 @@ export declare class BorrowingExpenseService {
17
16
  * Get borrowing expenses
18
17
  */
19
18
  get(): Observable<BorrowingExpense[]>;
20
- getLoanBorrowingExpenses(loan?: Loan): Observable<BorrowingExpenseLoan[]>;
19
+ getLoanBorrowingExpenses(loan?: Loan): Observable<any>;
21
20
  static ɵfac: i0.ɵɵFactoryDeclaration<BorrowingExpenseService, never>;
22
21
  static ɵprov: i0.ɵɵInjectableDeclaration<BorrowingExpenseService>;
23
22
  }
@@ -13,7 +13,6 @@ import * as i0 from "@angular/core";
13
13
  */
14
14
  export declare abstract class RestService<BaseModel, Model extends BaseModel> {
15
15
  protected environment: any;
16
- private inFlight$?;
17
16
  protected toastService: ToastService;
18
17
  protected http: HttpClient;
19
18
  protected eventDispatcherService: EventDispatcherService;
@@ -19,7 +19,6 @@ import * as i0 from "@angular/core";
19
19
  */
20
20
  export declare abstract class RestService<BaseModel, Model extends AbstractModel, CollectionModel extends Collection<Model>> extends DataService<BaseModel, Model, CollectionModel> {
21
21
  protected environment: any;
22
- private inFlight$?;
23
22
  /**
24
23
  * Url part for service entity API
25
24
  */
@@ -1,6 +1,6 @@
1
1
  import { AccountSetupItemCollection } from '../../../collections';
2
2
  import { SetupItem } from '../../../db/Models/setup-item';
3
- import { AccountSetupItem } from '../../../models';
3
+ import { AccountSetupItem } from '../../../models/account-setup/account-setup-item';
4
4
  import { RestMethod, RestService } from '../rest';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class SetupItemService extends RestService<SetupItem, AccountSetupItem, AccountSetupItemCollection> {
@@ -36,7 +36,6 @@ export declare class SubscriptionService extends RestService<ServiceSubscription
36
36
  cancel(subscription: ServiceSubscription): Observable<object>;
37
37
  renew(subscription: ServiceSubscription): Observable<object>;
38
38
  getCoupon(code: string): Observable<any>;
39
- setCache(data: any[], next?: boolean): void;
40
39
  static ɵfac: i0.ɵɵFactoryDeclaration<SubscriptionService, never>;
41
40
  static ɵprov: i0.ɵɵInjectableDeclaration<SubscriptionService>;
42
41
  }
@@ -1,8 +1,9 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { User as UserBase } from '../../../db/Models/user/user';
3
- import { AccountSetupItem, User } from '../../../models';
3
+ import { User } from '../../../models';
4
4
  import { RestMethod, RestService } from '../rest';
5
5
  import { Collection } from '../../../collections';
6
+ import { AccountSetupItem } from '../../../models/account-setup/account-setup-item';
6
7
  import { IEventListener } from '../../../interfaces';
7
8
  import { MixpanelService } from 'taxtank-core/common';
8
9
  import * as i0 from "@angular/core";
@@ -34,9 +35,7 @@ export declare class UserService extends RestService<UserBase, User, Collection<
34
35
  updatePhoto(photo: FormData): Observable<void>;
35
36
  createBasiq(): Observable<string>;
36
37
  skipSetupItem(item: AccountSetupItem): Observable<User>;
37
- restoreSetupItem(item: AccountSetupItem): Observable<User>;
38
38
  /**
39
- * @TODO stop using user for roles
40
39
  * Update cache when user's service subscription is updated
41
40
  */
42
41
  private listenServiceSubscriptionUpdated;
@@ -1,18 +0,0 @@
1
- export declare enum YoutubeVideosEnum {
2
- HOLDING_ONBOARDING = "r3RhObELk-E",
3
- MONEY_ONBOARDING = "E9NU14ndjhc",
4
- PROPERTY_ONBOARDING = "llUV98-EMdI",
5
- SOLE_ONBOARDING = "rqfTQFGwkUM",
6
- WORK_ONBOARDING = "QEKolzS1B0U",
7
- PROPERTY_RENTAL = "E9NU14ndjhc",
8
- PROPERTY_DEPRECIATION = "_34lK9ooFzc",
9
- VEHICLE_CLAIM = "4-6WaM83cw0",
10
- SOLE_DEPRECIATION = "Bw3tx4miFF8",
11
- SOLE_HOME_OFFICE = "fF8_kJHEKRE",
12
- WORK_DEPRECIATION = "gNa9M4xovuI",
13
- WORK_HOME_OFFICE = "qrQu4Yl72bU",
14
- BANK_FEEDS = "meQmpw7ZY7c",
15
- BANK_ACCOUNT_TRANSACTION = "meQmpw7ZY7c",
16
- BANK_ALLOCATION_RULE = "meQmpw7ZY7c",
17
- ALLOCATE_TRANSACTION = "meQmpw7ZY7c"
18
- }
@@ -1,5 +0,0 @@
1
- export declare enum AccountSetupItemStatusEnum {
2
- PENDING = 1,
3
- ACHIEVED = 2,
4
- SKIPPED = 3
5
- }
@@ -1,3 +0,0 @@
1
- export * from './account-setup-item';
2
- export * from './account-setup-items.enum';
3
- export * from './account-setup-item-status.enum';
@@ -1,11 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- import { SoleDetails } from '../../models';
3
- import { SoleDetailsService } from '../../services';
4
- import * as i0 from "@angular/core";
5
- export declare class BusinessResolver {
6
- private soleDetailsService;
7
- constructor(soleDetailsService: SoleDetailsService);
8
- resolve(): Observable<SoleDetails>;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<BusinessResolver, never>;
10
- static ɵprov: i0.ɵɵInjectableDeclaration<BusinessResolver>;
11
- }
@@ -1,11 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- import { SoleDetails } from '../../models';
3
- import { SoleDetailsService } from '../../services';
4
- import * as i0 from "@angular/core";
5
- export declare class SoleDetailsResolver {
6
- private soleDetails;
7
- constructor(soleDetails: SoleDetailsService);
8
- resolve(): Observable<SoleDetails>;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<SoleDetailsResolver, never>;
10
- static ɵprov: i0.ɵɵInjectableDeclaration<SoleDetailsResolver>;
11
- }
@@ -1,2 +0,0 @@
1
- export * from './business/business.resolver';
2
- export * from './business/sole-details.resolver';