@e-trias/woonplan 1.3.159 → 1.3.161

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 +21 -6
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.159",
5
+ "version": "1.3.161",
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
@@ -1649,12 +1649,26 @@ interface IUsage{
1649
1649
  }[]
1650
1650
  }
1651
1651
  interface IUsageExtended extends IUsage{
1652
- fuels : {
1653
- warmwater : Fuel[]
1654
- heating : Fuel[]
1655
- cooking : Fuel[]
1656
- household : Fuel[]
1657
- }
1652
+ energystreams : {
1653
+ warmwater : {
1654
+ calculated ?: FuelDistribution,
1655
+ actual : FuelDistribution
1656
+ }
1657
+ heating : {
1658
+ calculated ?: FuelDistribution,
1659
+ actual : FuelDistribution
1660
+ }
1661
+ cooking : {
1662
+ calculated ?: FuelDistribution,
1663
+ actual : FuelDistribution
1664
+ }
1665
+ household : {
1666
+ calculated ?: FuelDistribution,
1667
+ actual : FuelDistribution
1668
+ }
1669
+ },
1670
+ applianceextras ?: FuelDistribution,
1671
+ appliancesavings ?: FuelDistribution,
1658
1672
  }
1659
1673
 
1660
1674
  interface ICosts{
@@ -1971,6 +1985,7 @@ export interface IAppliance{
1971
1985
 
1972
1986
  connectedtoheating ?: boolean
1973
1987
  connectedtowarmwater ?: boolean
1988
+ amount ?: number
1974
1989
  }
1975
1990
  export interface IVentilationsystem{
1976
1991
  name : string