taxtank-core 0.28.101 → 0.28.103

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.
@@ -1,4 +1,5 @@
1
1
  import { TransactionCollection } from '../../../../../collections/transaction/transaction.collection';
2
+ import { TaxSummary } from '../../../../tax-summary/tax-summary';
2
3
  /**
3
4
  * Sole business information related to income transactions
4
5
  * https://taxtank.atlassian.net/wiki/spaces/TAXTANK/pages/4644110466/Tax+Return+MyTax+-+Online+Form (section "Business income or losses")
@@ -25,5 +26,5 @@ export declare class MyTaxBusinessIncome {
25
26
  assessibleGovernmentPaymentsAmount: number;
26
27
  otherBusinessIncomeAmount: number;
27
28
  nonPrimaryProductionTotalAmount: number;
28
- constructor(psiIncome: TransactionCollection, soleIncome: TransactionCollection);
29
+ constructor(psiIncome: TransactionCollection, soleIncome: TransactionCollection, taxSummary: TaxSummary);
29
30
  }
@@ -4,6 +4,10 @@ import { DeductionClothingTypeEnum } from './deduction-clothing-type.enum';
4
4
  import { DeductionSelfEducationTypeEnum } from './deduction-self-education-type.enum';
5
5
  import { VehicleClaim, VehicleClaimDetails } from '../../../vehicle';
6
6
  export declare class MyTaxDeductions {
7
+ /**
8
+ * can't claim the first $250 of self-education expenses (Item code D4)
9
+ */
10
+ static selfEducationNotDeductibleAmount: number;
7
11
  transactions: TransactionCollection;
8
12
  depreciations: DepreciationCollection;
9
13
  vehicleClaim: VehicleClaim;
@@ -38,4 +42,5 @@ export declare class MyTaxDeductions {
38
42
  * Total amount from Other work related expenses and Tools & equipment depreciations
39
43
  */
40
44
  private setOtherWorkRelatedExpensesTotalAmount;
45
+ private calculateWorkRelatedSelfEducationTotalAmount;
41
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.28.101",
3
+ "version": "0.28.103",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",