taxtank-core 1.0.51 → 1.0.52

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.2",
@@ -100,4 +100,6 @@ export declare class TransactionCollection extends TransactionBaseCollection<Tra
100
100
  */
101
101
  getBusinessClaimAmount(businessId?: number): number;
102
102
  getTaxable(): this;
103
+ getWorkTaxCredits(): number;
104
+ getHoldingTaxCredits(): number;
103
105
  }
@@ -30,6 +30,7 @@ export declare class TaxSummary {
30
30
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
31
31
  */
32
32
  get workNetTotal(): number;
33
+ get workDepreciations(): number;
33
34
  /**
34
35
  * Property Net Cash (Cash Position) = Rental Income - expenses - interest
35
36
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
@@ -44,12 +45,13 @@ export declare class TaxSummary {
44
45
  * Holdings Net Cash = gross income – expenses – tax withheld - tax instalments
45
46
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
46
47
  */
47
- get holdingsNetCash(): number;
48
+ get holdingsNetTotal(): number;
48
49
  /**
49
50
  * Holding Net Total = Gross income - expenses + tax offsets + tax instalments + franking credits
50
51
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
51
52
  */
52
- get holdingsNetTotal(): number;
53
+ get holdingsNetCash(): number;
54
+ get holdingsTaxCredits(): number;
53
55
  /**
54
56
  * Sole Net Cash = gross income – expenses
55
57
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
@@ -97,4 +97,5 @@ export declare class Transaction extends TransactionBase implements Expense {
97
97
  ignoreSign(): boolean;
98
98
  setParent(transaction: Transaction): void;
99
99
  isEditable(): boolean;
100
+ get claimableTax(): number;
100
101
  }