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/esm2022/src/lib/collections/property/property.collection.mjs +2 -2
- package/esm2022/src/lib/models/property/property-equity-chart-data.mjs +8 -2
- package/esm2022/src/lib/models/property/property.mjs +4 -1
- package/esm2022/src/lib/services/http/property/property-document/property-document.service.mjs +1 -8
- package/fesm2022/taxtank-core.mjs +11 -8
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/models/property/property.d.ts +1 -0
- package/src/lib/services/http/property/property-document/property-document.service.d.ts +0 -5
package/package.json
CHANGED
@@ -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
|
}
|