taxtank-core 2.0.84 → 2.0.85
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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +13 -13
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +2 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10596,8 +10596,7 @@ declare class TransactionBaseFilter {
|
|
|
10596
10596
|
tankType: TankTypeEnum;
|
|
10597
10597
|
business: SoleBusiness;
|
|
10598
10598
|
properties: Property$1[];
|
|
10599
|
-
|
|
10600
|
-
dateTo: Date;
|
|
10599
|
+
dateRange: Date[];
|
|
10601
10600
|
chartAccounts: string;
|
|
10602
10601
|
}
|
|
10603
10602
|
|
|
@@ -10605,8 +10604,7 @@ interface ITransactionBaseFilterControls extends ControlsInterface {
|
|
|
10605
10604
|
tankType: FormControl<TankTypeEnum>;
|
|
10606
10605
|
business: FormControl<SoleBusiness>;
|
|
10607
10606
|
properties: FormControl<Property$1[]>;
|
|
10608
|
-
|
|
10609
|
-
dateTo: FormControl<Date>;
|
|
10607
|
+
dateRange: FormControl<Date[]>;
|
|
10610
10608
|
chartAccounts: FormControl<string>;
|
|
10611
10609
|
}
|
|
10612
10610
|
declare class TransactionBaseFilterForm extends FormGroup<ITransactionBaseFilterControls> implements IEventListener {
|