taxtank-core 0.33.112 → 0.33.114

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.112",
3
+ "version": "0.33.114",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -103,4 +103,5 @@ export declare class Property extends PropertyBase {
103
103
  get monthlyExpense(): number;
104
104
  get corelogicNextDate(): Date;
105
105
  isCorelogicAvailable(): boolean;
106
+ getGrowth(): number;
106
107
  }
@@ -2,7 +2,6 @@ import { PropertyDocument as PropertyDocumentBase } from '../../../../db/Models'
2
2
  import { RestMethod, RestService } from '../../rest';
3
3
  import { PropertyDocument } from '../../../../models';
4
4
  import { Collection } from '../../../../collections';
5
- import { Observable } from 'rxjs';
6
5
  import * as i0 from "@angular/core";
7
6
  /**
8
7
  * Class for work with Property Documents
@@ -12,10 +11,6 @@ export declare class PropertyDocumentService extends RestService<PropertyDocumen
12
11
  collectionClass: typeof Collection;
13
12
  endpointUri: string;
14
13
  disabledMethods: RestMethod[];
15
- /**
16
- * @TODO vik remove when TT-3850 is ready
17
- */
18
- get(): Observable<Collection<PropertyDocument>>;
19
14
  static ɵfac: i0.ɵɵFactoryDeclaration<PropertyDocumentService, never>;
20
15
  static ɵprov: i0.ɵɵInjectableDeclaration<PropertyDocumentService>;
21
16
  }