@e-trias/woonplan 1.3.148 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +49 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.3.148",
5
+ "version": "1.3.150",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
package/types.d.ts CHANGED
@@ -710,6 +710,7 @@ export interface ISettings {
710
710
  solarpanelmodule ?: string
711
711
  notAvailableMeasures ?: string
712
712
  canChangeSoundInsulating ?: "1" | "0"
713
+ canChangeDIYInsulating ?: "1" | "0"
713
714
 
714
715
  municipalFinancingText ?: string
715
716
  municipalFinancingTitle ?: string
@@ -935,6 +936,8 @@ export interface IHouselevel{
935
936
  used: boolean
936
937
  haskitchenorlivingroom: boolean
937
938
  heatinghours : number
939
+ averagetemp ?: number
940
+ maxovertemp ?: number
938
941
  }
939
942
 
940
943
  export interface IHouse{
@@ -2174,4 +2177,50 @@ export interface IExitingHouseobjectsOnContactCreate{
2174
2177
  glasstypeid ?: string,
2175
2178
  windowframetypeid ?: string
2176
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
2177
2226
  }