@e-trias/woonplan 1.1.48 → 1.1.50
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 +6 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -275,7 +275,7 @@ export interface Solarapicall{
|
|
|
275
275
|
postcode:string
|
|
276
276
|
housenumber:number
|
|
277
277
|
extension:string | null
|
|
278
|
-
result:string | ZonatlasResponse
|
|
278
|
+
result:string | ZonatlasResponse | ZonatlasResponse
|
|
279
279
|
module : number
|
|
280
280
|
}
|
|
281
281
|
|
|
@@ -1182,8 +1182,13 @@ interface IEnergyDistribution{
|
|
|
1182
1182
|
}
|
|
1183
1183
|
|
|
1184
1184
|
|
|
1185
|
+
|
|
1186
|
+
|
|
1185
1187
|
interface IUsage{
|
|
1186
1188
|
consumption : IEnergyconsumption
|
|
1187
1189
|
distribution : IEnergyDistribution
|
|
1188
1190
|
energyfactor : number
|
|
1191
|
+
m3gasToKwhFactor : number
|
|
1192
|
+
cooksongas : boolean
|
|
1193
|
+
calculatedEnergyUse : number
|
|
1189
1194
|
}
|