taxtank-core 0.33.6 → 0.33.7

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 (30) hide show
  1. package/esm2022/src/lib/collections/bank-account.collection.mjs +5 -41
  2. package/esm2022/src/lib/collections/depreciation.collection.mjs +6 -18
  3. package/esm2022/src/lib/collections/property/property.collection.mjs +8 -4
  4. package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +3 -15
  5. package/esm2022/src/lib/db/Enums/bank/bank-account-type.enum.mjs +2 -2
  6. package/esm2022/src/lib/db/Models/bank/bank-account.mjs +1 -1
  7. package/esm2022/src/lib/db/Models/transaction/transaction-base.mjs +6 -40
  8. package/esm2022/src/lib/forms/property/property-share.form.mjs +2 -2
  9. package/esm2022/src/lib/models/bank/bank-account.mjs +6 -3
  10. package/esm2022/src/lib/models/bank/type-loan.const.mjs +2 -5
  11. package/esm2022/src/lib/models/depreciation/depreciation.mjs +8 -22
  12. package/esm2022/src/lib/models/property/property.mjs +1 -4
  13. package/esm2022/src/lib/models/report/reports.const.mjs +17 -17
  14. package/esm2022/src/lib/models/transaction/transaction.mjs +1 -19
  15. package/esm2022/src/lib/services/http/transaction/transaction.service.mjs +1 -18
  16. package/fesm2022/taxtank-core.mjs +53 -195
  17. package/fesm2022/taxtank-core.mjs.map +1 -1
  18. package/package.json +1 -1
  19. package/src/lib/collections/bank-account.collection.d.ts +1 -21
  20. package/src/lib/collections/depreciation.collection.d.ts +1 -1
  21. package/src/lib/collections/property/property.collection.d.ts +1 -1
  22. package/src/lib/db/Enums/bank/bank-account-type.enum.d.ts +1 -0
  23. package/src/lib/db/Models/bank/bank-account.d.ts +0 -1
  24. package/src/lib/db/Models/transaction/transaction-base.d.ts +0 -9
  25. package/src/lib/models/bank/bank-account.d.ts +1 -0
  26. package/src/lib/models/bank/type-loan.const.d.ts +0 -3
  27. package/src/lib/models/depreciation/depreciation.d.ts +3 -11
  28. package/src/lib/models/property/property.d.ts +0 -1
  29. package/src/lib/models/transaction/transaction.d.ts +1 -6
  30. package/src/lib/services/http/transaction/transaction.service.d.ts +0 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.6",
3
+ "version": "0.33.7",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -1,5 +1,4 @@
1
1
  import { Collection } from './collection';
2
- import { BankAccountTypeEnum } from '../db/Enums';
3
2
  import { TankTypeEnum } from '../db/Enums/tank-type.enum';
4
3
  import { BankAccount, BankAccountProperty, Property } from '../models';
5
4
  import { CollectionDictionary } from './collection-dictionary';
@@ -8,14 +7,6 @@ import { LoanCollection } from './loan';
8
7
  * Collection of bank accounts.
9
8
  */
10
9
  export declare class BankAccountCollection extends Collection<BankAccount> {
11
- /**
12
- * get list of bank accounts with passed types
13
- */
14
- getByType(types: BankAccountTypeEnum | BankAccountTypeEnum[], isExclude?: boolean): BankAccount[];
15
- /**
16
- * get amount of current loans
17
- */
18
- getCurrentLoanAmount(): number;
19
10
  /**
20
11
  * get collection filtered by property id
21
12
  */
@@ -30,23 +21,12 @@ export declare class BankAccountCollection extends Collection<BankAccount> {
30
21
  * get collection of active bank accounts
31
22
  */
32
23
  getActive(): BankAccountCollection;
33
- /**
34
- * Get collection of loan bank accounts
35
- */
36
24
  getLoanAccounts(): BankAccountCollection;
25
+ getDebitAccounts(): BankAccountCollection;
37
26
  get loans(): LoanCollection;
38
- getSavingsAccounts(): BankAccountCollection;
39
27
  getOpeningBalance(): number;
40
28
  get currentBalance(): number;
41
29
  get bankShortNames(): string;
42
- /**
43
- * Get Collection of bank accounts with property tank type
44
- */
45
- getPropertyBankAccounts(): BankAccountCollection;
46
- /**
47
- * Get Collection of bank accounts with work tank type
48
- */
49
- getWorkBankAccounts(): BankAccountCollection;
50
30
  /**
51
31
  * Get Collection of bank accounts by tank type
52
32
  */
@@ -7,7 +7,7 @@ import { ChartAccountsCategoryEnum } from '../db/Enums';
7
7
  import { VehicleClaim } from '../models';
8
8
  export declare class DepreciationCollection extends Collection<Depreciation> {
9
9
  getSoleDepreciations(): this;
10
- getNew(): this;
10
+ getCurrentYearBuy(): this;
11
11
  /**
12
12
  * Get total amount of all depreciations in the collection
13
13
  */
@@ -20,7 +20,7 @@ export declare class PropertyCollection extends Collection<Property> {
20
20
  get purchasePrice(): number;
21
21
  get growthPercent(): number;
22
22
  get marketValue(): number;
23
- get marketValueGrowth(): number;
23
+ get sharedMarketValue(): number;
24
24
  /**
25
25
  * Get list of unique property categories from collection
26
26
  */
@@ -2,6 +2,7 @@ export declare enum BankAccountTypeEnum {
2
2
  TRANSACTION = 1,
3
3
  SAVINGS = 2,
4
4
  CREDIT_CARD = 3,
5
+ MORTGAGE = 4,
5
6
  LOAN = 5,
6
7
  INVESTMENT = 6,
7
8
  TERM_DEPOSIT = 7,
@@ -16,7 +16,6 @@ export declare class BankAccount extends ObservableModel {
16
16
  accountNumber?: string;
17
17
  currentBalance?: number;
18
18
  currency?: string;
19
- isManual?: boolean;
20
19
  migrateFrom?: Date;
21
20
  migrateTo?: Date;
22
21
  lastTransactionDate?: Date;
@@ -25,17 +25,8 @@ export declare abstract class TransactionBase extends ObservableModel {
25
25
  * @TODO remove when AllocateForm is refactored and not merging with Transaction class which cause the issue
26
26
  */
27
27
  set tankType(tankType: TankTypeEnum);
28
- /**
29
- * Check if current tank is Property
30
- */
31
28
  isPropertyTank(): boolean;
32
- /**
33
- * Check if current tank is Work
34
- */
35
29
  isWorkTank(): boolean;
36
- /**
37
- * Check if current tank is Sole
38
- */
39
30
  isSoleTank(): boolean;
40
31
  isHoldingTank(): boolean;
41
32
  isOtherTank(): boolean;
@@ -92,4 +92,5 @@ export declare class BankAccount extends BankAccountBase {
92
92
  * Loan is paid if it has no unallocated transactions and the bank balance is $0.
93
93
  */
94
94
  isLoanPaid(taxTankBalance: number): boolean;
95
+ isManual(): boolean;
95
96
  }
@@ -1,5 +1,2 @@
1
1
  import { BankAccountTypeEnum } from '../../db/Enums';
2
- /**
3
- * @TODO credit card has nothing to do with loan
4
- */
5
2
  export declare const TYPE_LOAN: BankAccountTypeEnum[];
@@ -10,8 +10,8 @@ import { Expense } from '../../interfaces';
10
10
  * @TODO Alex: clarify grouping rules and refactor
11
11
  */
12
12
  export declare class Depreciation extends DepreciationBase implements Expense {
13
- static WRITTEN_OFF_THRESHOLD: number;
14
- static LOW_VALUE_POOL_THRESHOLD: number;
13
+ static writtenOffThreshold: number;
14
+ static lowValuePoolThreshold: number;
15
15
  purchaseDate: Date;
16
16
  date: Date;
17
17
  lowValuePoolDate: Date;
@@ -22,9 +22,6 @@ export declare class Depreciation extends DepreciationBase implements Expense {
22
22
  chartAccounts: ChartAccounts;
23
23
  bankTransaction: BankTransaction;
24
24
  type: DepreciationTypeEnum;
25
- /**
26
- * @TODO remove after ? signs removed from db models
27
- */
28
25
  amount: number;
29
26
  isCapital(): boolean;
30
27
  isBorrowingExpense(): boolean;
@@ -41,10 +38,6 @@ export declare class Depreciation extends DepreciationBase implements Expense {
41
38
  * Check if depreciation chart accounts heading related to vehicles category
42
39
  */
43
40
  isVehicleDepreciation(): boolean;
44
- /**
45
- * Get depreciation purchase date
46
- */
47
- getDate(): Date;
48
41
  /**
49
42
  * @TODO Vik: Research a problem with depreciations without current year forecast
50
43
  */
@@ -52,7 +45,6 @@ export declare class Depreciation extends DepreciationBase implements Expense {
52
45
  getForecastByYear(year: number): DepreciationForecast;
53
46
  getClaimAmountByYear(year: number): number;
54
47
  getCloseBalanceByYear(year: number): number;
55
- isBuildingAtCost(): boolean;
56
48
  /**
57
49
  * Create a new transaction from current depreciation
58
50
  */
@@ -66,5 +58,5 @@ export declare class Depreciation extends DepreciationBase implements Expense {
66
58
  /**
67
59
  * assets purchased in the current financial year
68
60
  */
69
- isNew(): boolean;
61
+ isCurrentYearBuy(): boolean;
70
62
  }
@@ -49,7 +49,6 @@ export declare class Property extends PropertyBase {
49
49
  get forecastedRentalReturn(): number;
50
50
  get forecastedTaxPosition(): number;
51
51
  get forecastedCashPosition(): number;
52
- get marketValueGrowth(): number;
53
52
  get myShare(): PropertyShare;
54
53
  get claimPercent(): number;
55
54
  get claimCoefficient(): number;
@@ -1,5 +1,5 @@
1
1
  import { Transaction as TransactionBase } from '../../db/Models/transaction/transaction';
2
- import { ChartAccountsCategoryEnum, ChartAccountsMetaFieldListEnum } from '../../db/Enums';
2
+ import { ChartAccountsMetaFieldListEnum } from '../../db/Enums';
3
3
  import { TransactionOperationEnum } from '../../db/Enums/transaction-operation.enum';
4
4
  import { Property } from '../property';
5
5
  import { ChartAccounts } from '../chart-accounts';
@@ -43,11 +43,6 @@ export declare class Transaction extends TransactionBase implements Expense {
43
43
  isExpense(): boolean;
44
44
  isPersonal(): boolean;
45
45
  isInterest(): boolean;
46
- get chartAccountsCategories(): ChartAccountsCategoryEnum[];
47
- /**
48
- * Get transaction date
49
- */
50
- getDate(): Date;
51
46
  /**
52
47
  * Check if transaction type is vehicle
53
48
  */
@@ -69,12 +69,6 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
69
69
  * @param model
70
70
  */
71
71
  delete(model: Transaction): Observable<void>;
72
- /**
73
- * @TODO Alex wrong place for this logic, move to model
74
- * calculate gross income amount based on transaction amount and taxes (fees)
75
- * @param transaction Transaction instance for calculation
76
- */
77
- calculateGrossAmount(transaction: Transaction): number;
78
72
  /**
79
73
  * Listen to EventDispatcherService event related to Depreciation changing
80
74
  */