taxtank-core 2.1.28 → 2.1.30

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/index.d.ts CHANGED
@@ -1792,7 +1792,7 @@ declare class SoleBusiness$1 extends ObservableModel {
1792
1792
  file: File$1;
1793
1793
  isTaxFree: boolean;
1794
1794
  abn?: string;
1795
- isGST?: boolean;
1795
+ isGST: boolean;
1796
1796
  }
1797
1797
 
1798
1798
  declare enum MyAccountHistoryInitiatedByEnum {
@@ -10333,10 +10333,11 @@ declare class SoleBusinessLossReport extends AbstractModel {
10333
10333
  */
10334
10334
  declare class SolePlItem {
10335
10335
  chartAccounts: ChartAccounts;
10336
+ name: string;
10336
10337
  amount: number;
10337
10338
  priorAmount: number;
10338
10339
  varianceRatio: number;
10339
- constructor(transactions: TransactionCollection, priorTransactions: TransactionCollection);
10340
+ constructor(transactions: TransactionCollection, data?: Partial<SolePlItem>);
10340
10341
  }
10341
10342
 
10342
10343
  /**
@@ -11639,7 +11640,7 @@ declare class BudgetRuleItemCollection extends Collection<BudgetRuleItem> {
11639
11640
  }
11640
11641
 
11641
11642
  declare class SolePlItemCollection extends Collection<SolePlItem> {
11642
- static fromTransactions(transactions: TransactionCollection, priorTransactions: TransactionCollection): SolePlItemCollection;
11643
+ static fromTransactions(transactions: TransactionCollection): SolePlItemCollection;
11643
11644
  get amount(): number;
11644
11645
  get priorAmount(): number;
11645
11646
  get varianceRatio(): number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "2.1.28",
3
+ "version": "2.1.30",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.1.3",