@e-trias/woonplan 1.3.155 → 1.3.157

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 +12 -1
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.155",
5
+ "version": "1.3.157",
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
@@ -278,6 +278,8 @@ export interface IUserdata{
278
278
  preferessoundinsulating ?: boolean
279
279
  forcerecalculation ?: boolean | null
280
280
 
281
+ experimentalfunctions ?: JSON
282
+
281
283
  }
282
284
 
283
285
  export interface IAnnualreport{
@@ -1605,7 +1607,7 @@ export interface IUserdatahousewish{
1605
1607
 
1606
1608
 
1607
1609
 
1608
- type Fuel = "gas" | "electricity" | "heatingnetwork" | "wood" | "oil" | "pellets"
1610
+ type Fuel = "gas" | "electricity" | "heatnetwork" | "wood" | "oil" | "pellets"
1609
1611
 
1610
1612
  type FuelDistribution = {
1611
1613
  [k in Fuel]: number
@@ -1646,6 +1648,15 @@ interface IUsage{
1646
1648
  savingsfactor ?: number
1647
1649
  }[]
1648
1650
  }
1651
+ interface IUsageExtended extends IUsage{
1652
+ fuels : {
1653
+ warmwater : Fuel[]
1654
+ heating : Fuel[]
1655
+ cooking : Fuel[]
1656
+ household : Fuel[]
1657
+ }
1658
+ }
1659
+
1649
1660
  interface ICosts{
1650
1661
  id : string
1651
1662
  gasstandingcharge ?: number