taxtank-core 0.32.71 → 0.32.72

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.
@@ -31,6 +31,9 @@ export declare class Transaction extends TransactionBase {
31
31
  chartAccounts?: ChartAccounts;
32
32
  incomeSource?: IncomeSource;
33
33
  parentTransaction?: Transaction;
34
+ /**
35
+ * list of child transactions (fees)
36
+ */
34
37
  childTransactions?: Transaction[];
35
38
  property?: Property;
36
39
  metaFields?: TransactionMetaField[];
@@ -30,4 +30,13 @@ export declare class AllocationRuleForm extends AbstractForm<AllocationRule> imp
30
30
  get tankTypeLabel(): string;
31
31
  private setupFieldsByType;
32
32
  private setupFieldsByTankType;
33
+ isIncome(): boolean;
34
+ isExpense(): boolean;
35
+ isTransfer(): boolean;
36
+ isPropertyTank(): boolean;
37
+ isWorkTank(): boolean;
38
+ isSoleTank(): boolean;
39
+ isPropertyIncome(): boolean;
40
+ isWorkIncome(): boolean;
41
+ isSoleIncome(): boolean;
33
42
  }
@@ -13,6 +13,9 @@ import { Expense } from '../../interfaces';
13
13
  import { SoleInvoiceItem } from '../sole';
14
14
  export declare class Transaction extends TransactionBase implements Expense {
15
15
  static className: string;
16
+ /**
17
+ * @TODO rename to childTransactions
18
+ */
16
19
  transactions: Transaction[];
17
20
  property: Property;
18
21
  chartAccounts: ChartAccounts;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.32.71",
3
+ "version": "0.32.72",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",