@e-trias/woonplan 0.0.39 → 0.0.43
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/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -96,19 +96,21 @@ export interface Userdata{
|
|
|
96
96
|
showerprofile?:number
|
|
97
97
|
cookingprofile?:number
|
|
98
98
|
draftprofile?:number
|
|
99
|
+
maxinvestment?:number
|
|
99
100
|
cooksongas?:boolean
|
|
100
101
|
}
|
|
101
102
|
|
|
102
103
|
export interface Solarapicall{
|
|
103
104
|
id:string
|
|
105
|
+
deleted:boolean
|
|
104
106
|
name?:string
|
|
105
107
|
sortorder?:number
|
|
106
|
-
energyconsumption:number
|
|
108
|
+
energyconsumption:number | null
|
|
107
109
|
max:boolean
|
|
108
110
|
panels:number
|
|
109
111
|
yield:number
|
|
110
112
|
postcode:string
|
|
111
113
|
housenumber:number
|
|
112
|
-
extension
|
|
114
|
+
extension:string | null
|
|
113
115
|
result:string
|
|
114
116
|
}
|