taxtank-core 0.28.23 → 0.28.26

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.
@@ -8,16 +8,13 @@ export declare enum TaxReturnCategoryListEnum {
8
8
  ANNUITIES_SUPER_INCOME_STREAMS = 3,
9
9
  SUPERANNUATION_LUMP_SUM_PAYMENTS = 34,
10
10
  ATTRIBUTED_PSI_INCOME = 4,
11
- WORK_EXPENSES = 7,
12
- GROSS_RENT = 8,
13
- OTHER_RENTAL_DEDUCTIONS = 12,
14
- INTEREST_DEDUCTIONS = 9,
15
- CAPITAL_WORKS = 10,
16
- DEPRECIATION = 11,
17
11
  GROSS_INTEREST = 5,
18
12
  DIVIDENDS = 6,
19
13
  SHARE_SCHEMES = 35,
14
+ GROSS_RENT = 8,
20
15
  PARTNERSHIPS_TRUSTS = 13,
16
+ PARTNERSHIPS = 36,
17
+ TRUSTS = 37,
21
18
  PSI_SBE_INCOME = 14,
22
19
  SOLE_TRADER_BUSINESS_INCOME = 38,
23
20
  CAPITAL_GAINS = 15,
@@ -25,16 +22,37 @@ export declare enum TaxReturnCategoryListEnum {
25
22
  BONUSES_FROM_LIFE_INSURANCE = 17,
26
23
  FORESTRY_MANAGED_INVESTMENT_SCHEMES = 39,
27
24
  OTHER_INCOME = 40,
28
- TAX_CREDITS = 23,
29
- OTHER_DEDUCTIONS = 18,
30
- TAX_OFFSETS = 27,
25
+ GROSS_PAYMENTS_NO_ABN_GIVEN = 42,
26
+ GROSS_PAYMENTS_VOLUNTARY_AGREEMENT = 43,
27
+ GROSS_PAYMENTS_LABOUR_HIRE_OR_OTHER = 44,
28
+ ASSESSABLE_GOVERNMENT_PAYMENTS = 45,
29
+ OTHER_BUSINESS_INCOME = 46,
30
+ WORK_EXPENSES = 7,
31
+ INTEREST_DEDUCTIONS = 9,
32
+ CAPITAL_WORKS = 10,
33
+ PLANT_AND_EQUIPMENT = 11,
31
34
  BORROWING_EXPENSES = 29,
35
+ OTHER_RENTAL_DEDUCTIONS = 12,
36
+ OTHER_DEDUCTIONS = 18,
37
+ PURCHASES_AND_OTHER_COSTS = 48,
38
+ CONTRACTORS_SUBCONTRACTORS_COMMISSION_EXPENSES = 49,
39
+ SUPERANNUATION_EXPENSES = 50,
40
+ BAD_DEBTS = 51,
41
+ LEASE_EXPENSES = 52,
42
+ RENT_EXPENSES = 53,
43
+ INTEREST_EXPENSES_WITHIN_AUSTRALIA = 54,
44
+ INTEREST_EXPENSES_OVERSEAS = 55,
45
+ DEPRECIATION_EXPENSES = 56,
46
+ MOTOR_VEHICLE_EXPENSES = 57,
47
+ ALL_OTHER_EXPENSES = 58,
32
48
  GROSS_TAX_PAYABLE = 19,
33
49
  TAX_ON_TAXABLE_INCOME = 20,
34
50
  MEDICARE = 21,
35
51
  STUDENT_LOAN_REPAYMENT = 22,
52
+ TAX_CREDITS = 23,
36
53
  TAX_WITHHELD = 24,
37
54
  TAX_INSTALMENTS = 25,
38
55
  FRANKING_CREDITS = 26,
56
+ TAX_OFFSETS = 27,
39
57
  TAX_PAYABLE = 28
40
58
  }
@@ -2,5 +2,6 @@ export declare enum TaxReturnCategorySectionEnum {
2
2
  WORK_TANK = 1,
3
3
  PROPERTY_TANK = 2,
4
4
  OTHER_INCOME = 3,
5
- SUMMARY = 4
5
+ SOLE_TANK = 4,
6
+ SUMMARY = 5
6
7
  }
@@ -1,6 +1,7 @@
1
1
  export declare enum TaxSummarySectionEnum {
2
2
  WORK_TANK = 1,
3
3
  PROPERTY_TANK = 2,
4
- OTHER_INCOME = 3,
5
- SUMMARY = 4
4
+ OTHER_TANK = 3,
5
+ SOLE_TANK = 4,
6
+ SUMMARY = 5
6
7
  }
@@ -17,6 +17,10 @@ export declare class BankAccount extends BankAccountBase {
17
17
  get bank(): Bank;
18
18
  get bsb(): string;
19
19
  get number(): string;
20
+ /**
21
+ * Get last digits of account number
22
+ */
23
+ get partialAccountNumber(): string;
20
24
  /**
21
25
  * Get current opening balance amount
22
26
  */
@@ -6,7 +6,8 @@ import { TaxSummarySection } from './tax-summary-section';
6
6
  export declare class TaxSummary {
7
7
  work: TaxSummarySection;
8
8
  property: TaxSummarySection;
9
- otherIncome: TaxSummarySection;
9
+ other: TaxSummarySection;
10
+ sole: TaxSummarySection;
10
11
  summary: TaxSummarySection;
11
12
  projectedTaxPosition: number;
12
13
  get sections(): TaxSummarySection[];
@@ -41,4 +42,16 @@ export declare class TaxSummary {
41
42
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
42
43
  */
43
44
  get otherNetTotal(): number;
45
+ /**
46
+ * @TODO Nicole update documentation + check calculations
47
+ * Sole Net Cash = gross income – expenses
48
+ * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
49
+ */
50
+ get soleNetCash(): number;
51
+ /**
52
+ * @TODO Nicole update documentation + check calculations
53
+ * Sole Net Total = Gross income - expenses
54
+ * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/217677990/Dashboard+Main
55
+ */
56
+ get soleNetTotal(): number;
44
57
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.28.23",
3
+ "version": "0.28.26",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",