taxtank-core 0.32.108 → 0.32.109

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.
@@ -1,8 +1,8 @@
1
1
  import { Collection } from '../../collection';
2
- import { ChartAccounts } from '../../../models/chart-accounts/chart-accounts';
2
+ import { ChartAccounts } from '../../../models';
3
3
  import { DepreciationCollection } from '../../depreciation.collection';
4
4
  import { PropertyReportItemCollection } from './property-report-item.collection';
5
- import { PropertyCollection } from '../../property/property.collection';
5
+ import { PropertyCollection } from '../../property';
6
6
  /**
7
7
  * Collection to work with depreciation-based property report items
8
8
  */
@@ -1,8 +1,8 @@
1
1
  import { Collection } from '../../collection';
2
- import { TransactionCollection } from '../../transaction/transaction.collection';
3
- import { ChartAccounts } from '../../../models/chart-accounts/chart-accounts';
2
+ import { TransactionCollection } from '../../transaction';
3
+ import { ChartAccounts } from '../../../models';
4
4
  import { PropertyReportItemCollection } from './property-report-item.collection';
5
- import { PropertyCollection } from '../../property/property.collection';
5
+ import { PropertyCollection } from '../../property';
6
6
  /**
7
7
  * Collection to work with transaction-based property report items
8
8
  */
@@ -1,5 +1,5 @@
1
1
  import { Collection } from '../../collection';
2
- import { PropertyReportItem } from '../../../models/report/property/property-report-item';
2
+ import { PropertyReportItem } from '../../../models/report';
3
3
  /**
4
4
  * Base collection to work with property report items
5
5
  */
@@ -1,7 +1,7 @@
1
1
  import { PropertyReportItem } from './property-report-item';
2
- import { TransactionCollection } from '../../../collections/transaction/transaction.collection';
3
- import { Property } from '../../property/property';
4
- import { ChartAccounts } from '../../chart-accounts/chart-accounts';
2
+ import { TransactionCollection } from '../../../collections';
3
+ import { Property } from '../../property';
4
+ import { ChartAccounts } from '../../chart-accounts';
5
5
  /**
6
6
  * Class with transaction-based property transactions report entities
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { ChartAccountsService, DepreciationService, PropertyService, TransactionService } from '../../http';
2
2
  import { Observable } from 'rxjs';
3
- import { Property } from '../../../models';
4
- import { ChartAccountsCollection, CollectionDictionary, DepreciationCollection, PropertyReportItemCollection, TransactionCollection } from '../../../collections';
3
+ import { ChartAccountsCollection, CollectionDictionary, DepreciationCollection, PropertyCollection, PropertyReportItemCollection, TransactionCollection } from '../../../collections';
4
+ import { TransactionBaseFilterForm } from '../../../forms';
5
5
  import * as i0 from "@angular/core";
6
6
  /**
7
7
  * Service to handle Property transactions report items data (get income / expense report items, e.t.c.)
@@ -11,7 +11,7 @@ export declare class PropertyTransactionReportService {
11
11
  private transactionService;
12
12
  private depreciationService;
13
13
  private chartAccountsService;
14
- properties: Property[];
14
+ properties: PropertyCollection;
15
15
  transactions: TransactionCollection;
16
16
  depreciations: DepreciationCollection;
17
17
  chartAccounts: ChartAccountsCollection;
@@ -20,6 +20,7 @@ export declare class PropertyTransactionReportService {
20
20
  * Get collection of report items based on transactions & depreciations
21
21
  */
22
22
  get(): Observable<CollectionDictionary<PropertyReportItemCollection>>;
23
+ filter(filterForm: TransactionBaseFilterForm): CollectionDictionary<PropertyReportItemCollection>;
23
24
  private create;
24
25
  /**
25
26
  * Get collection of property transactions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.32.108",
3
+ "version": "0.32.109",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",