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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +33 -9
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/collections/transaction/transaction.collection.d.ts +2 -0
- package/src/lib/models/tax-summary/tax-summary.d.ts +4 -2
- package/src/lib/models/transaction/transaction.d.ts +1 -0
package/package.json
CHANGED
@@ -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
|
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
|
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
|