@e-trias/woonplan 0.0.41 → 0.0.45
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 +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ export interface Contact{
|
|
|
15
15
|
securityroleid:string | null;
|
|
16
16
|
companyid:string | null;
|
|
17
17
|
areaactioncollectionid:string | null;
|
|
18
|
+
questionairelocked?:boolean
|
|
19
|
+
wantsnewsletter?:boolean
|
|
18
20
|
}
|
|
19
21
|
export interface Advice{
|
|
20
22
|
id:string | null;
|
|
@@ -96,6 +98,7 @@ export interface Userdata{
|
|
|
96
98
|
showerprofile?:number
|
|
97
99
|
cookingprofile?:number
|
|
98
100
|
draftprofile?:number
|
|
101
|
+
maxinvestment?:number
|
|
99
102
|
cooksongas?:boolean
|
|
100
103
|
}
|
|
101
104
|
|
|
@@ -104,12 +107,12 @@ export interface Solarapicall{
|
|
|
104
107
|
deleted:boolean
|
|
105
108
|
name?:string
|
|
106
109
|
sortorder?:number
|
|
107
|
-
energyconsumption
|
|
110
|
+
energyconsumption:number | null
|
|
108
111
|
max:boolean
|
|
109
112
|
panels:number
|
|
110
113
|
yield:number
|
|
111
114
|
postcode:string
|
|
112
115
|
housenumber:number
|
|
113
|
-
extension
|
|
116
|
+
extension:string | null
|
|
114
117
|
result:string
|
|
115
118
|
}
|