@likewatt/models 1.70.0 → 1.70.1
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.
|
@@ -17,10 +17,10 @@ export declare class CollectiveSite {
|
|
|
17
17
|
TCSPE?: number;
|
|
18
18
|
TURPE_VERSION?: number;
|
|
19
19
|
TMYstatus?: number;
|
|
20
|
-
addressDepartementNum
|
|
20
|
+
addressDepartementNum?: number;
|
|
21
21
|
addressZipCode: string;
|
|
22
22
|
addressCity: string;
|
|
23
|
-
addressDepartement
|
|
23
|
+
addressDepartement?: string;
|
|
24
24
|
user: string;
|
|
25
25
|
country: string;
|
|
26
26
|
isVisible: boolean;
|
|
@@ -123,7 +123,7 @@ __decorate([
|
|
|
123
123
|
], CollectiveSite.prototype, "TMYstatus", void 0);
|
|
124
124
|
__decorate([
|
|
125
125
|
(0, swagger_1.ApiProperty)(),
|
|
126
|
-
(0, mongoose_1.Prop)({ required:
|
|
126
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
127
127
|
(0, class_validator_1.IsNumber)(),
|
|
128
128
|
__metadata("design:type", Number)
|
|
129
129
|
], CollectiveSite.prototype, "addressDepartementNum", void 0);
|
|
@@ -141,7 +141,7 @@ __decorate([
|
|
|
141
141
|
], CollectiveSite.prototype, "addressCity", void 0);
|
|
142
142
|
__decorate([
|
|
143
143
|
(0, swagger_1.ApiProperty)(),
|
|
144
|
-
(0, mongoose_1.Prop)({ required:
|
|
144
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
145
145
|
(0, class_validator_1.IsString)(),
|
|
146
146
|
__metadata("design:type", String)
|
|
147
147
|
], CollectiveSite.prototype, "addressDepartement", void 0);
|
package/dist/core/Site.d.ts
CHANGED
|
@@ -30,11 +30,11 @@ export declare class Site {
|
|
|
30
30
|
owner?: string;
|
|
31
31
|
name: string;
|
|
32
32
|
isC_AND_I: boolean;
|
|
33
|
-
addressDepartementNum
|
|
33
|
+
addressDepartementNum?: number;
|
|
34
34
|
addressZipCode: string;
|
|
35
35
|
subscribedPowers: EnergyPrice[];
|
|
36
36
|
addressCity: string;
|
|
37
|
-
addressDepartement
|
|
37
|
+
addressDepartement?: string;
|
|
38
38
|
reportURL?: string;
|
|
39
39
|
enedisNumber?: string;
|
|
40
40
|
strasbourgNumber?: string;
|
package/dist/core/Site.js
CHANGED
|
@@ -150,7 +150,7 @@ __decorate([
|
|
|
150
150
|
], Site.prototype, "isC_AND_I", void 0);
|
|
151
151
|
__decorate([
|
|
152
152
|
(0, swagger_1.ApiProperty)(),
|
|
153
|
-
(0, mongoose_1.Prop)({ required:
|
|
153
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
154
154
|
(0, class_validator_1.IsNumber)(),
|
|
155
155
|
__metadata("design:type", Number)
|
|
156
156
|
], Site.prototype, "addressDepartementNum", void 0);
|
|
@@ -169,13 +169,13 @@ __decorate([
|
|
|
169
169
|
], Site.prototype, "subscribedPowers", void 0);
|
|
170
170
|
__decorate([
|
|
171
171
|
(0, swagger_1.ApiProperty)(),
|
|
172
|
-
(0, mongoose_1.Prop)({ required:
|
|
172
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
173
173
|
(0, class_validator_1.IsString)(),
|
|
174
174
|
__metadata("design:type", String)
|
|
175
175
|
], Site.prototype, "addressCity", void 0);
|
|
176
176
|
__decorate([
|
|
177
177
|
(0, swagger_1.ApiProperty)(),
|
|
178
|
-
(0, mongoose_1.Prop)({ required:
|
|
178
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
179
179
|
(0, class_validator_1.IsString)(),
|
|
180
180
|
__metadata("design:type", String)
|
|
181
181
|
], Site.prototype, "addressDepartement", void 0);
|