@e-trias/woonplan 1.0.29 → 1.0.32
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 +11 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ export interface SignupFormResponse{
|
|
|
97
97
|
export interface CIASignupFormResponse extends SignupFormResponse{}
|
|
98
98
|
export interface MWASignupFormResponse extends SignupFormResponse{}
|
|
99
99
|
|
|
100
|
-
export interface
|
|
100
|
+
export interface IUserdata{
|
|
101
101
|
id:string;
|
|
102
102
|
sourceid:string | null
|
|
103
103
|
contactid:string
|
|
@@ -115,6 +115,10 @@ export interface Userdata{
|
|
|
115
115
|
buildyear?:number
|
|
116
116
|
surface?:number
|
|
117
117
|
usage ?: string
|
|
118
|
+
|
|
119
|
+
diyconstruction ?: boolean
|
|
120
|
+
circularconstruction ?: boolean
|
|
121
|
+
renovationconstruction ?: boolean
|
|
118
122
|
}
|
|
119
123
|
|
|
120
124
|
export interface Solarapicall{
|
|
@@ -193,6 +197,10 @@ export interface IMeasuredata{
|
|
|
193
197
|
collectivebuyquotationpossible?:boolean
|
|
194
198
|
g_value ?: number
|
|
195
199
|
u_value ?: number
|
|
200
|
+
|
|
201
|
+
insulationmethodid ?: string
|
|
202
|
+
insulationlocationid ?: string
|
|
203
|
+
insulationtypeid ?: string
|
|
196
204
|
}
|
|
197
205
|
|
|
198
206
|
export interface IMeasuredatainterestedcontact{
|
|
@@ -400,7 +408,6 @@ export interface IAbstractHouseObjectType{
|
|
|
400
408
|
export interface IFloortype extends IAbstractHouseObjectType{
|
|
401
409
|
lambda ?: number
|
|
402
410
|
rcvalue ?: number
|
|
403
|
-
crawlspaces ?: ICrawlspace[]
|
|
404
411
|
}
|
|
405
412
|
|
|
406
413
|
export interface IRooftype extends IAbstractHouseObjectType{
|
|
@@ -428,6 +435,7 @@ export interface ICrawlspaceinfloor{
|
|
|
428
435
|
export interface IFloor extends IHouseobject{
|
|
429
436
|
floortypeid ?: string
|
|
430
437
|
floortype ?: IFloortype
|
|
438
|
+
crawlspaces ?: ICrawlspace[]
|
|
431
439
|
}
|
|
432
440
|
|
|
433
441
|
|
|
@@ -456,7 +464,7 @@ export interface IRoof extends IHouseobject{
|
|
|
456
464
|
}
|
|
457
465
|
export interface IWindowframe extends IHouseobject{
|
|
458
466
|
userdataid : string
|
|
459
|
-
userdata ?:
|
|
467
|
+
userdata ?: IUserdata
|
|
460
468
|
wall ?: IWall
|
|
461
469
|
sideid : string
|
|
462
470
|
side ?: ISide
|