taxtank-core 0.33.27 → 0.33.29

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.29",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -7,7 +7,7 @@ export declare class PropertyCollection extends Collection<Property> {
7
7
  /**
8
8
  * Get new property collection filtered by active status
9
9
  */
10
- getActiveProperties(): PropertyCollection;
10
+ getActive(): PropertyCollection;
11
11
  getCreatedProperties(): PropertyCollection;
12
12
  /**
13
13
  * Get new property collection filtered by shared
@@ -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[]);
@@ -19,6 +19,8 @@ export declare class PropertyService extends RestService<PropertyBase, Property,
19
19
  disabledMethods: RestMethod[];
20
20
  roles: UserRolesEnum[];
21
21
  constructor(environment: any);
22
+ get(): Observable<PropertyCollection>;
23
+ getAll(): Observable<PropertyCollection>;
22
24
  /**
23
25
  * @TODO remove when forecast moved to separated api
24
26
  */