taxtank-core 0.33.27 → 0.33.28

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.27",
3
+ "version": "0.33.28",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -11,6 +11,7 @@ interface ITransactionBaseFilterControls extends ControlsInterface {
11
11
  properties: FormControl<Property[]>;
12
12
  dateFrom: FormControl<Date>;
13
13
  dateTo: FormControl<Date>;
14
+ chartAccounts: FormControl<string>;
14
15
  }
15
16
  export declare class TransactionBaseFilterForm extends FormGroup<ITransactionBaseFilterControls> implements IEventListener {
16
17
  constructor(tankType?: TankTypeEnum, business?: SoleBusiness, properties?: Property[]);