@e-trias/woonplan 1.3.156 → 1.3.158
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 +17 -0
package/package.json
CHANGED
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{
|
|
@@ -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
|
|
@@ -1665,6 +1676,12 @@ interface ICosts{
|
|
|
1665
1676
|
interest ?: number
|
|
1666
1677
|
settings ?: JSON
|
|
1667
1678
|
userdataid ?: string
|
|
1679
|
+
oilprice ?: number
|
|
1680
|
+
oilpriceincrease ?: number
|
|
1681
|
+
woodprice ?: number
|
|
1682
|
+
woodpriceincrease ?: number
|
|
1683
|
+
pelletsprice ?: number
|
|
1684
|
+
pelletspriceincrease ?: number
|
|
1668
1685
|
}
|
|
1669
1686
|
|
|
1670
1687
|
export interface ICustomAdviceCombination{
|