@likewatt/models 1.4.4 → 1.4.5
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.
|
@@ -2,9 +2,10 @@ import { BoundingBox } from './bounding-box';
|
|
|
2
2
|
import { ImageryDate } from './imagery-date';
|
|
3
3
|
import { SolarPotential } from './solar-potential';
|
|
4
4
|
import { ImageryQuality } from '../enums/ImageryQuality';
|
|
5
|
+
import { LatLng } from './lat-lng';
|
|
5
6
|
export declare class BuildingData {
|
|
6
7
|
boundingBox: BoundingBox;
|
|
7
|
-
center:
|
|
8
|
+
center: LatLng;
|
|
8
9
|
imageryDate: ImageryDate;
|
|
9
10
|
imageryProcessedDate: ImageryDate;
|
|
10
11
|
imageryQuality: ImageryQuality;
|
|
@@ -15,6 +15,7 @@ const bounding_box_1 = require("./bounding-box");
|
|
|
15
15
|
const imagery_date_1 = require("./imagery-date");
|
|
16
16
|
const solar_potential_1 = require("./solar-potential");
|
|
17
17
|
const ImageryQuality_1 = require("../enums/ImageryQuality");
|
|
18
|
+
const lat_lng_1 = require("./lat-lng");
|
|
18
19
|
let BuildingData = class BuildingData {
|
|
19
20
|
};
|
|
20
21
|
exports.BuildingData = BuildingData;
|
|
@@ -23,8 +24,8 @@ __decorate([
|
|
|
23
24
|
__metadata("design:type", bounding_box_1.BoundingBox)
|
|
24
25
|
], BuildingData.prototype, "boundingBox", void 0);
|
|
25
26
|
__decorate([
|
|
26
|
-
(0, mongoose_1.Prop)(
|
|
27
|
-
__metadata("design:type",
|
|
27
|
+
(0, mongoose_1.Prop)({ type: lat_lng_1.LatLng, required: true }),
|
|
28
|
+
__metadata("design:type", lat_lng_1.LatLng)
|
|
28
29
|
], BuildingData.prototype, "center", void 0);
|
|
29
30
|
__decorate([
|
|
30
31
|
(0, mongoose_1.Prop)(imagery_date_1.ImageryDate),
|