@e-trias/woonplan 1.3.149 → 1.3.151
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 +1 -1
- package/types.d.ts +49 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -936,6 +936,8 @@ export interface IHouselevel{
|
|
|
936
936
|
used: boolean
|
|
937
937
|
haskitchenorlivingroom: boolean
|
|
938
938
|
heatinghours : number
|
|
939
|
+
averagetemp ?: number
|
|
940
|
+
maxovertemp ?: number
|
|
939
941
|
}
|
|
940
942
|
|
|
941
943
|
export interface IHouse{
|
|
@@ -1463,6 +1465,7 @@ export interface EntityEnergyIOExtended extends EnergyIO{
|
|
|
1463
1465
|
id : string
|
|
1464
1466
|
u : number
|
|
1465
1467
|
generatedoutput : number
|
|
1468
|
+
reductionfactor ?: number
|
|
1466
1469
|
}
|
|
1467
1470
|
|
|
1468
1471
|
export interface EnergyIOState{
|
|
@@ -2175,4 +2178,50 @@ export interface IExitingHouseobjectsOnContactCreate{
|
|
|
2175
2178
|
glasstypeid ?: string,
|
|
2176
2179
|
windowframetypeid ?: string
|
|
2177
2180
|
}[]
|
|
2181
|
+
}
|
|
2182
|
+
|
|
2183
|
+
export interface IClimateMonth{
|
|
2184
|
+
temperaturesInCelsius : {
|
|
2185
|
+
sky : number
|
|
2186
|
+
outside : number
|
|
2187
|
+
ground : number
|
|
2188
|
+
}
|
|
2189
|
+
insolationInKwhPerm2 : {
|
|
2190
|
+
n : number
|
|
2191
|
+
w : number
|
|
2192
|
+
e : number
|
|
2193
|
+
s : number
|
|
2194
|
+
horizontal : number
|
|
2195
|
+
}
|
|
2196
|
+
dayNightDivisionInPercentages : {
|
|
2197
|
+
day : number
|
|
2198
|
+
night : number
|
|
2199
|
+
}
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
|
|
2203
|
+
export interface IClimateYear{
|
|
2204
|
+
months : {
|
|
2205
|
+
"1" : IClimateMonth
|
|
2206
|
+
"2" : IClimateMonth
|
|
2207
|
+
"3" : IClimateMonth
|
|
2208
|
+
"4" : IClimateMonth
|
|
2209
|
+
"5" : IClimateMonth
|
|
2210
|
+
"6" : IClimateMonth
|
|
2211
|
+
"7" : IClimateMonth
|
|
2212
|
+
"8" : IClimateMonth
|
|
2213
|
+
"9" : IClimateMonth
|
|
2214
|
+
"10" : IClimateMonth
|
|
2215
|
+
"11" : IClimateMonth
|
|
2216
|
+
"12" : IClimateMonth
|
|
2217
|
+
}
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
export interface IWeatherStation{
|
|
2221
|
+
id : string
|
|
2222
|
+
logged ?: ILogged
|
|
2223
|
+
lat : number
|
|
2224
|
+
long : number
|
|
2225
|
+
height ?: number
|
|
2226
|
+
climateyear ?: JSON
|
|
2178
2227
|
}
|