taxtank-core 0.31.34 → 0.31.35

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.
@@ -12,6 +12,7 @@ export declare class AllocationRuleTransactionForm extends AbstractForm<Allocati
12
12
  */
13
13
  get metaFieldsArray(): UntypedFormArray;
14
14
  get childTransactionsArray(): UntypedFormArray;
15
+ get isSplit(): boolean;
15
16
  addChildTransactionForm(): void;
16
17
  submit(): AllocationRuleTransaction;
17
18
  listenEvents(): void;
@@ -14,7 +14,12 @@ export declare class AllocationRuleTransaction extends AllocationRuleTransaction
14
14
  childTransactions: AllocationRuleTransaction[];
15
15
  claimPercent: number;
16
16
  tax: number;
17
+ amount: number;
17
18
  calculateClaimPercent(): number;
19
+ /**
20
+ * If rule transaction has amount then split enabled. There is 0 when split disabled
21
+ */
22
+ isSplit(): boolean;
18
23
  /**
19
24
  * Create Transaction instance based on passed bank transaction and rule transaction
20
25
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.31.34",
3
+ "version": "0.31.35",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",