@e-trias/woonplan 1.3.149 → 1.3.150
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 +48 -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{
|
|
@@ -2175,4 +2177,50 @@ export interface IExitingHouseobjectsOnContactCreate{
|
|
|
2175
2177
|
glasstypeid ?: string,
|
|
2176
2178
|
windowframetypeid ?: string
|
|
2177
2179
|
}[]
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
export interface IClimateMonth{
|
|
2183
|
+
temperaturesInCelsius : {
|
|
2184
|
+
sky : number
|
|
2185
|
+
outside : number
|
|
2186
|
+
ground : number
|
|
2187
|
+
}
|
|
2188
|
+
insolationInKwhPerm2 : {
|
|
2189
|
+
n : number
|
|
2190
|
+
w : number
|
|
2191
|
+
e : number
|
|
2192
|
+
s : number
|
|
2193
|
+
horizontal : number
|
|
2194
|
+
}
|
|
2195
|
+
dayNightDivisionInPercentages : {
|
|
2196
|
+
day : number
|
|
2197
|
+
night : number
|
|
2198
|
+
}
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
export interface IClimateYear{
|
|
2203
|
+
months : {
|
|
2204
|
+
"1" : IClimateMonth
|
|
2205
|
+
"2" : IClimateMonth
|
|
2206
|
+
"3" : IClimateMonth
|
|
2207
|
+
"4" : IClimateMonth
|
|
2208
|
+
"5" : IClimateMonth
|
|
2209
|
+
"6" : IClimateMonth
|
|
2210
|
+
"7" : IClimateMonth
|
|
2211
|
+
"8" : IClimateMonth
|
|
2212
|
+
"9" : IClimateMonth
|
|
2213
|
+
"10" : IClimateMonth
|
|
2214
|
+
"11" : IClimateMonth
|
|
2215
|
+
"12" : IClimateMonth
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
export interface IWeatherStation{
|
|
2220
|
+
id : string
|
|
2221
|
+
logged ?: ILogged
|
|
2222
|
+
lat : number
|
|
2223
|
+
long : number
|
|
2224
|
+
height ?: number
|
|
2225
|
+
climateyear ?: JSON
|
|
2178
2226
|
}
|