@e-trias/woonplan 1.3.208 → 1.3.210
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 +184 -184
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export interface IContact{
|
|
2
|
-
id?: string
|
|
2
|
+
id?: string
|
|
3
3
|
firstname?: string
|
|
4
|
-
infix?: string
|
|
4
|
+
infix?: string
|
|
5
5
|
lastname?: string
|
|
6
6
|
active?: boolean
|
|
7
7
|
email?: string
|
|
@@ -13,10 +13,10 @@ export interface IContact{
|
|
|
13
13
|
extension?: string
|
|
14
14
|
password?: string
|
|
15
15
|
securityrole ?: ISecurityRole
|
|
16
|
-
securityroleid?: string
|
|
17
|
-
companyid?: string
|
|
18
|
-
areaactionid?: string
|
|
19
|
-
areaactioncollectionid ?: string
|
|
16
|
+
securityroleid?: string
|
|
17
|
+
companyid?: string
|
|
18
|
+
areaactionid?: string
|
|
19
|
+
areaactioncollectionid ?: string
|
|
20
20
|
questionairelocked?: boolean
|
|
21
21
|
wantsnewsletter?: boolean
|
|
22
22
|
coordinates?:string
|
|
@@ -39,14 +39,14 @@ export interface IContact{
|
|
|
39
39
|
weatherstationid ?: string
|
|
40
40
|
}
|
|
41
41
|
export interface INote{
|
|
42
|
-
id?: string
|
|
42
|
+
id?: string
|
|
43
43
|
text ?: string
|
|
44
44
|
contactid ?: string
|
|
45
45
|
logged ?: ILogged
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
export interface ISurveyorNote{
|
|
49
|
-
id?: string
|
|
49
|
+
id?: string
|
|
50
50
|
logged ?: ILogged
|
|
51
51
|
entityclass ?: string
|
|
52
52
|
entityid ?: string
|
|
@@ -81,7 +81,7 @@ export interface IContractor extends ICompany{
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
export interface IAdvice{
|
|
84
|
-
id:string
|
|
84
|
+
id:string ;
|
|
85
85
|
userdataid ?: string;
|
|
86
86
|
status?:string;
|
|
87
87
|
usage?:string
|
|
@@ -96,12 +96,12 @@ export interface IAdvice{
|
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
export interface EtriasDBContact{
|
|
99
|
-
id:string
|
|
99
|
+
id:string ;
|
|
100
100
|
email:string;
|
|
101
101
|
username:string;
|
|
102
102
|
password:string;
|
|
103
|
-
securityroleid:string
|
|
104
|
-
companyid:string
|
|
103
|
+
securityroleid:string ;
|
|
104
|
+
companyid:string ;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
export interface ISecurityRole{
|
|
@@ -329,7 +329,7 @@ export interface IUserdata{
|
|
|
329
329
|
|
|
330
330
|
houselevelamount ?: number
|
|
331
331
|
roofshapeid ?:string
|
|
332
|
-
finishedquestionsets ?:
|
|
332
|
+
finishedquestionsets ?: string[]
|
|
333
333
|
userdatahousewishes ?: IUserdatahousewish[]
|
|
334
334
|
mothermodelid ?: string
|
|
335
335
|
|
|
@@ -457,7 +457,7 @@ export interface IHousetemplateCalculationDataForHousetype{
|
|
|
457
457
|
}
|
|
458
458
|
|
|
459
459
|
export interface IHousetemplate{
|
|
460
|
-
id ?: string
|
|
460
|
+
id ?: string
|
|
461
461
|
calculationdata ?: string
|
|
462
462
|
}
|
|
463
463
|
|
|
@@ -466,13 +466,13 @@ export interface ISolarApicall{
|
|
|
466
466
|
deleted:boolean
|
|
467
467
|
name?:string
|
|
468
468
|
sortorder?:number
|
|
469
|
-
energyconsumption:number
|
|
469
|
+
energyconsumption:number
|
|
470
470
|
max:boolean
|
|
471
471
|
panels:number
|
|
472
472
|
yield:number
|
|
473
473
|
postcode:string
|
|
474
474
|
housenumber:number
|
|
475
|
-
extension:string
|
|
475
|
+
extension:string
|
|
476
476
|
result:string | ISolarApiResponse | ISolarApiResult
|
|
477
477
|
module : number
|
|
478
478
|
}
|
|
@@ -482,8 +482,8 @@ export interface Quotation{
|
|
|
482
482
|
expiredate:Date
|
|
483
483
|
contractorid:string
|
|
484
484
|
adviceid:string
|
|
485
|
-
measuredataid?:string
|
|
486
|
-
quotationrequestid:string
|
|
485
|
+
measuredataid?:string
|
|
486
|
+
quotationrequestid:string
|
|
487
487
|
investment?:number
|
|
488
488
|
status?:string
|
|
489
489
|
accepteddate?:Date
|
|
@@ -500,22 +500,22 @@ export interface IFile{
|
|
|
500
500
|
logged ?: ILogged
|
|
501
501
|
}
|
|
502
502
|
export interface QuotationFile extends IFile{
|
|
503
|
-
quotationid?:string
|
|
504
|
-
quotationrequestid?:string
|
|
503
|
+
quotationid?:string
|
|
504
|
+
quotationrequestid?:string
|
|
505
505
|
}
|
|
506
506
|
export interface IContactFile extends IFile{
|
|
507
|
-
contactid?:string
|
|
507
|
+
contactid?:string
|
|
508
508
|
category ?:string
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
export interface QuotationRequest{
|
|
512
512
|
id:string
|
|
513
513
|
measureid:string
|
|
514
|
-
measuredataid?:string
|
|
515
|
-
contractorid?:string
|
|
514
|
+
measuredataid?:string
|
|
515
|
+
contractorid?:string
|
|
516
516
|
adviceid:string
|
|
517
517
|
status:string
|
|
518
|
-
data:JSON
|
|
518
|
+
data:JSON
|
|
519
519
|
files?:QuotationFile[]
|
|
520
520
|
logged ?: ILogged
|
|
521
521
|
canceldate ?: Date
|
|
@@ -545,9 +545,9 @@ export interface IMeasuredata{
|
|
|
545
545
|
rcvalue?:number
|
|
546
546
|
investment?:number
|
|
547
547
|
savingsfactor?:number
|
|
548
|
-
collectivebuyid?:string
|
|
549
|
-
contractorid?:string
|
|
550
|
-
measureid?:string
|
|
548
|
+
collectivebuyid?:string
|
|
549
|
+
contractorid?:string
|
|
550
|
+
measureid?:string
|
|
551
551
|
requiressurvey?:boolean
|
|
552
552
|
collectivebuystatus?:"now" | "future" | "never"
|
|
553
553
|
collectivebuyquotationpossible?:boolean
|
|
@@ -564,10 +564,10 @@ export interface IMeasuredata{
|
|
|
564
564
|
insulationtype ?: IInsulationtype
|
|
565
565
|
insulationlocation ?: IInsulationlocation
|
|
566
566
|
|
|
567
|
-
insulationmethodid ?: string
|
|
568
|
-
insulationlocationid ?: string
|
|
569
|
-
insulationtypeid ?: string
|
|
570
|
-
glasstypeid ?: string
|
|
567
|
+
insulationmethodid ?: string
|
|
568
|
+
insulationlocationid ?: string
|
|
569
|
+
insulationtypeid ?: string
|
|
570
|
+
glasstypeid ?: string
|
|
571
571
|
glasstype ?: IGlasstype
|
|
572
572
|
|
|
573
573
|
spf_vw ?: number
|
|
@@ -585,10 +585,10 @@ export interface IMeasuredata{
|
|
|
585
585
|
|
|
586
586
|
thickness ?: number
|
|
587
587
|
|
|
588
|
-
floorid ?: string
|
|
589
|
-
wallid ?: string
|
|
590
|
-
roofid ?: string
|
|
591
|
-
windowframepartid ?: string
|
|
588
|
+
floorid ?: string
|
|
589
|
+
wallid ?: string
|
|
590
|
+
roofid ?: string
|
|
591
|
+
windowframepartid ?: string
|
|
592
592
|
partnerid ?: string
|
|
593
593
|
v2 ?: boolean
|
|
594
594
|
electricitycost ?: number
|
|
@@ -619,7 +619,7 @@ export interface IGlasstype{
|
|
|
619
619
|
gvalue : number
|
|
620
620
|
uvalue : number
|
|
621
621
|
name : string
|
|
622
|
-
image ?: string
|
|
622
|
+
image ?: string
|
|
623
623
|
}
|
|
624
624
|
|
|
625
625
|
export interface IMeasuredatainterestedcontact{
|
|
@@ -629,52 +629,52 @@ export interface IMeasuredatainterestedcontact{
|
|
|
629
629
|
|
|
630
630
|
export interface IText{
|
|
631
631
|
id:string
|
|
632
|
-
title: string
|
|
633
|
-
body: string
|
|
634
|
-
localeid?: string
|
|
635
|
-
partnerid?: string
|
|
632
|
+
title: string
|
|
633
|
+
body: string
|
|
634
|
+
localeid?: string
|
|
635
|
+
partnerid?: string
|
|
636
636
|
}
|
|
637
637
|
|
|
638
638
|
export interface IContent{
|
|
639
639
|
id:string
|
|
640
|
-
fullyqualifiedaction : string
|
|
641
|
-
subtitle?: string
|
|
642
|
-
excerpt?: string
|
|
643
|
-
searchbox?: string
|
|
644
|
-
actionsbox?: string
|
|
645
|
-
htmltitle?: string
|
|
646
|
-
htmlkeywords?: string
|
|
647
|
-
htmldescription?: string
|
|
648
|
-
link?: string
|
|
649
|
-
parentid?: string
|
|
650
|
-
areaactionid?: string
|
|
651
|
-
contentimages?: IContentimage[]
|
|
640
|
+
fullyqualifiedaction : string
|
|
641
|
+
subtitle?: string
|
|
642
|
+
excerpt?: string
|
|
643
|
+
searchbox?: string
|
|
644
|
+
actionsbox?: string
|
|
645
|
+
htmltitle?: string
|
|
646
|
+
htmlkeywords?: string
|
|
647
|
+
htmldescription?: string
|
|
648
|
+
link?: string
|
|
649
|
+
parentid?: string
|
|
650
|
+
areaactionid?: string
|
|
651
|
+
contentimages?: IContentimage[]
|
|
652
652
|
}
|
|
653
653
|
|
|
654
654
|
export interface IContentimage {
|
|
655
655
|
id: string
|
|
656
|
-
name?: string
|
|
657
|
-
deleted?: boolean
|
|
658
|
-
sortorder?: number
|
|
659
|
-
contentitem?: IContent
|
|
660
|
-
image?: IImage
|
|
656
|
+
name?: string
|
|
657
|
+
deleted?: boolean
|
|
658
|
+
sortorder?: number
|
|
659
|
+
contentitem?: IContent
|
|
660
|
+
image?: IImage
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
export interface IImage {
|
|
664
664
|
id: string
|
|
665
|
-
path?: string
|
|
666
|
-
alt?: string
|
|
667
|
-
description?: string
|
|
668
|
-
originalname?: string
|
|
669
|
-
contentimages?: IContentimage[]
|
|
670
|
-
metadata?: ILogged
|
|
665
|
+
path?: string
|
|
666
|
+
alt?: string
|
|
667
|
+
description?: string
|
|
668
|
+
originalname?: string
|
|
669
|
+
contentimages?: IContentimage[]
|
|
670
|
+
metadata?: ILogged
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
export interface IMeasuretext{
|
|
674
674
|
id:string
|
|
675
|
-
measureid ?: string
|
|
676
|
-
measuredataid ?: string
|
|
677
|
-
excerpt ?: string
|
|
675
|
+
measureid ?: string
|
|
676
|
+
measuredataid ?: string
|
|
677
|
+
excerpt ?: string
|
|
678
678
|
}
|
|
679
679
|
|
|
680
680
|
export interface QuotationRequestForm{
|
|
@@ -688,8 +688,8 @@ export interface IAppointment{
|
|
|
688
688
|
status?: string
|
|
689
689
|
start?: Date
|
|
690
690
|
end?: Date
|
|
691
|
-
userdataid?: string
|
|
692
|
-
surveyorid?: string
|
|
691
|
+
userdataid?: string
|
|
692
|
+
surveyorid?: string
|
|
693
693
|
needspayment?: true | false
|
|
694
694
|
price? : number
|
|
695
695
|
name?: string
|
|
@@ -1005,7 +1005,7 @@ export interface IHouselevel{
|
|
|
1005
1005
|
id : string
|
|
1006
1006
|
deleted : boolean
|
|
1007
1007
|
sortorder : number
|
|
1008
|
-
userdataid ?: string
|
|
1008
|
+
userdataid ?: string
|
|
1009
1009
|
heated : boolean
|
|
1010
1010
|
walkable: boolean
|
|
1011
1011
|
used: boolean
|
|
@@ -1033,11 +1033,11 @@ export interface IAbstractHouseObjectType{
|
|
|
1033
1033
|
export interface IFloortype extends IAbstractHouseObjectType{
|
|
1034
1034
|
lambda ?: number
|
|
1035
1035
|
rcvalue ?: number
|
|
1036
|
-
image ?: string
|
|
1036
|
+
image ?: string
|
|
1037
1037
|
}
|
|
1038
1038
|
|
|
1039
1039
|
export interface IRooftype extends IAbstractHouseObjectType{
|
|
1040
|
-
image ?: string
|
|
1040
|
+
image ?: string
|
|
1041
1041
|
}
|
|
1042
1042
|
|
|
1043
1043
|
export interface IWalltype extends IAbstractHouseObjectType{
|
|
@@ -1053,7 +1053,7 @@ export interface IWallfinish{
|
|
|
1053
1053
|
id ?: string
|
|
1054
1054
|
sortorder ?: number
|
|
1055
1055
|
name ?: string
|
|
1056
|
-
image ?: string
|
|
1056
|
+
image ?: string
|
|
1057
1057
|
}
|
|
1058
1058
|
export interface IRoofshape{
|
|
1059
1059
|
deleted ?: boolean
|
|
@@ -1068,34 +1068,34 @@ export interface IRoofing{
|
|
|
1068
1068
|
sortorder ?: number
|
|
1069
1069
|
name ?: string
|
|
1070
1070
|
roofs ?: IRoof[]
|
|
1071
|
-
image ?: string
|
|
1071
|
+
image ?: string
|
|
1072
1072
|
}
|
|
1073
1073
|
|
|
1074
1074
|
export interface ICrawlspace{
|
|
1075
1075
|
deleted ?: boolean
|
|
1076
|
-
id ?: string
|
|
1076
|
+
id ?: string
|
|
1077
1077
|
sortorder ?: number
|
|
1078
1078
|
accessible ?: boolean
|
|
1079
1079
|
pumpable ?: boolean
|
|
1080
1080
|
cluttered ?: boolean
|
|
1081
1081
|
height ?: number
|
|
1082
|
-
wet ?: string
|
|
1083
|
-
houselevelid ?: string
|
|
1082
|
+
wet ?: string
|
|
1083
|
+
houselevelid ?: string
|
|
1084
1084
|
|
|
1085
1085
|
crawlspacesinfloor ?: ICrawlspaceinfloor[]
|
|
1086
1086
|
|
|
1087
1087
|
}
|
|
1088
1088
|
export interface ICrawlspaceinfloor{
|
|
1089
1089
|
deleted ?: boolean
|
|
1090
|
-
id ?: string
|
|
1090
|
+
id ?: string
|
|
1091
1091
|
sortorder ?: number
|
|
1092
|
-
floorid ?: string
|
|
1092
|
+
floorid ?: string
|
|
1093
1093
|
crawlspaceid ?: string
|
|
1094
1094
|
surface ?: number
|
|
1095
1095
|
}
|
|
1096
1096
|
export interface IFloorinroom{
|
|
1097
1097
|
deleted ?: boolean
|
|
1098
|
-
id ?: string
|
|
1098
|
+
id ?: string
|
|
1099
1099
|
sortorder ?: number
|
|
1100
1100
|
floorid ?: string
|
|
1101
1101
|
roomid ?: string
|
|
@@ -1104,7 +1104,7 @@ export interface IFloorinroom{
|
|
|
1104
1104
|
}
|
|
1105
1105
|
|
|
1106
1106
|
export interface IFloor extends IHouseobject{
|
|
1107
|
-
floortypeid ?: string
|
|
1107
|
+
floortypeid ?: string
|
|
1108
1108
|
floortype ?: IFloortype
|
|
1109
1109
|
crawlspaces ?: ICrawlspace[]
|
|
1110
1110
|
historic ?: boolean
|
|
@@ -1137,17 +1137,17 @@ export interface IWall extends IHouseobject{
|
|
|
1137
1137
|
shadowpercentage ?: number
|
|
1138
1138
|
angle ?: number
|
|
1139
1139
|
side ?: ISide
|
|
1140
|
-
sideid ?: string
|
|
1141
|
-
walltypeid ?: string
|
|
1140
|
+
sideid ?: string
|
|
1141
|
+
walltypeid ?: string
|
|
1142
1142
|
walltype ?: IWalltype
|
|
1143
1143
|
insulationonownrisk ?: boolean
|
|
1144
|
-
wallfinishid ?: string
|
|
1144
|
+
wallfinishid ?: string
|
|
1145
1145
|
wallfinish ?: IWallfinish
|
|
1146
1146
|
protectedstatus ?: string
|
|
1147
1147
|
aircavity ?: boolean
|
|
1148
1148
|
rcvalue ?: number
|
|
1149
1149
|
thicknesscavity ?: number
|
|
1150
|
-
housetypeid ?: string
|
|
1150
|
+
housetypeid ?: string
|
|
1151
1151
|
grosssurface ?: number
|
|
1152
1152
|
|
|
1153
1153
|
monumentaloutside ?: boolean
|
|
@@ -1176,29 +1176,29 @@ export interface IRoom extends IHouseobject{
|
|
|
1176
1176
|
export interface IRoof extends IHouseobject{
|
|
1177
1177
|
shadowpercentage ?: number
|
|
1178
1178
|
angle ?: number
|
|
1179
|
-
rooftypeid ?: string
|
|
1179
|
+
rooftypeid ?: string
|
|
1180
1180
|
rooftype ?: IRooftype
|
|
1181
1181
|
slope ?: boolean
|
|
1182
1182
|
ridgeheight ?: number
|
|
1183
1183
|
ceilingboarded ?: boolean
|
|
1184
|
-
roofingid ?: string
|
|
1184
|
+
roofingid ?: string
|
|
1185
1185
|
roofing ?: IRoofing
|
|
1186
|
-
sideid ?: string
|
|
1186
|
+
sideid ?: string
|
|
1187
1187
|
side ?: ISide
|
|
1188
1188
|
rcvalue ?: number
|
|
1189
|
-
housetypeid ?: string
|
|
1189
|
+
housetypeid ?: string
|
|
1190
1190
|
|
|
1191
|
-
roomid ?: string
|
|
1191
|
+
roomid ?: string
|
|
1192
1192
|
room ?: IRoom
|
|
1193
1193
|
|
|
1194
1194
|
hasknieschot ?: boolean
|
|
1195
1195
|
knieschotbacksideaccessible ?: boolean
|
|
1196
1196
|
knieschotenoughspace ?: boolean
|
|
1197
1197
|
knieschotrunningmeters ?: number
|
|
1198
|
-
buildyear ?: number
|
|
1199
|
-
protectedstatus ?: string
|
|
1200
|
-
protectedstatusside ?: string
|
|
1201
|
-
roofplanelocation ?: string
|
|
1198
|
+
buildyear ?: number
|
|
1199
|
+
protectedstatus ?: string
|
|
1200
|
+
protectedstatusside ?: string
|
|
1201
|
+
roofplanelocation ?: string
|
|
1202
1202
|
roofboardingthickness ?: number
|
|
1203
1203
|
beamsheight ?: number
|
|
1204
1204
|
flat_edgeheight ?: number
|
|
@@ -1216,20 +1216,20 @@ export interface IRoof extends IHouseobject{
|
|
|
1216
1216
|
}
|
|
1217
1217
|
|
|
1218
1218
|
export interface IWindowframe extends IHouseobject{
|
|
1219
|
-
userdataid ?: string
|
|
1219
|
+
userdataid ?: string
|
|
1220
1220
|
userdata ?: IUserdata
|
|
1221
1221
|
wall ?: IWall
|
|
1222
|
-
sideid ?: string
|
|
1222
|
+
sideid ?: string
|
|
1223
1223
|
side ?: ISide
|
|
1224
|
-
wallid ?: string
|
|
1225
|
-
roomid ?: string
|
|
1226
|
-
houselevelid ?: string
|
|
1227
|
-
windowframetypeid ?: string
|
|
1224
|
+
wallid ?: string
|
|
1225
|
+
roomid ?: string
|
|
1226
|
+
houselevelid ?: string
|
|
1227
|
+
windowframetypeid ?: string
|
|
1228
1228
|
windowframetype ?: IWindowframetype
|
|
1229
1229
|
width : number
|
|
1230
1230
|
height : number
|
|
1231
1231
|
needreplacing ?: boolean
|
|
1232
|
-
housetypeid ?: string
|
|
1232
|
+
housetypeid ?: string
|
|
1233
1233
|
|
|
1234
1234
|
room ?: IRoom
|
|
1235
1235
|
}
|
|
@@ -1245,8 +1245,8 @@ export interface IWindowframepart extends IHouseobject{
|
|
|
1245
1245
|
topstoollength ?: number
|
|
1246
1246
|
shadowpercentage ?: number
|
|
1247
1247
|
|
|
1248
|
-
windowframeparttypeid ?: string
|
|
1249
|
-
windowframeid ?: string
|
|
1248
|
+
windowframeparttypeid ?: string
|
|
1249
|
+
windowframeid ?: string
|
|
1250
1250
|
windowframe ?: IWindowframe
|
|
1251
1251
|
windowframetype ?: IWindowframetype
|
|
1252
1252
|
side ?: ISide
|
|
@@ -1258,26 +1258,26 @@ export interface IWindowframetype extends IAbstractHouseObjectType{
|
|
|
1258
1258
|
|
|
1259
1259
|
export interface IRule{
|
|
1260
1260
|
id : string
|
|
1261
|
-
energylossid ?: string
|
|
1262
|
-
floortypeid ?: string
|
|
1263
|
-
glasstypeid ?: string
|
|
1264
|
-
roofingid ?: string
|
|
1265
|
-
roofshapeid ?: string
|
|
1266
|
-
rooftypeid ?: string
|
|
1267
|
-
wallfinishid ?: string
|
|
1268
|
-
walltypeid ?: string
|
|
1269
|
-
windowframeparttypeid ?: string
|
|
1270
|
-
packageid ?: string
|
|
1271
|
-
rulesetid ?: string
|
|
1272
|
-
ruletypeid ?: string
|
|
1273
|
-
measuredataid ?: string
|
|
1274
|
-
targetMeasureid ?: string
|
|
1275
|
-
gasfreeoptionid ?: string
|
|
1276
|
-
measuretypeid ?: string
|
|
1277
|
-
insulationlocationid ?: string
|
|
1278
|
-
insulationmethodid ?: string
|
|
1279
|
-
insulationtypeid ?: string
|
|
1280
|
-
ventilationsystemtypeid ?: string
|
|
1261
|
+
energylossid ?: string
|
|
1262
|
+
floortypeid ?: string
|
|
1263
|
+
glasstypeid ?: string
|
|
1264
|
+
roofingid ?: string
|
|
1265
|
+
roofshapeid ?: string
|
|
1266
|
+
rooftypeid ?: string
|
|
1267
|
+
wallfinishid ?: string
|
|
1268
|
+
walltypeid ?: string
|
|
1269
|
+
windowframeparttypeid ?: string
|
|
1270
|
+
packageid ?: string
|
|
1271
|
+
rulesetid ?: string
|
|
1272
|
+
ruletypeid ?: string
|
|
1273
|
+
measuredataid ?: string
|
|
1274
|
+
targetMeasureid ?: string
|
|
1275
|
+
gasfreeoptionid ?: string
|
|
1276
|
+
measuretypeid ?: string
|
|
1277
|
+
insulationlocationid ?: string
|
|
1278
|
+
insulationmethodid ?: string
|
|
1279
|
+
insulationtypeid ?: string
|
|
1280
|
+
ventilationsystemtypeid ?: string
|
|
1281
1281
|
field ?: string
|
|
1282
1282
|
operator ?: string
|
|
1283
1283
|
value ?: string
|
|
@@ -1308,7 +1308,7 @@ export interface IMeasure {
|
|
|
1308
1308
|
id : string
|
|
1309
1309
|
gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
|
|
1310
1310
|
measuredatas ?: IMeasuredata[]
|
|
1311
|
-
measuretypeid ?: string
|
|
1311
|
+
measuretypeid ?: string
|
|
1312
1312
|
measuretype ?: IMeasuretype
|
|
1313
1313
|
logged : ILogged
|
|
1314
1314
|
|
|
@@ -1347,8 +1347,8 @@ export interface ISolarApiAddress {
|
|
|
1347
1347
|
street: string
|
|
1348
1348
|
}
|
|
1349
1349
|
export interface ISolarApiBagdata {
|
|
1350
|
-
building_add_on: string
|
|
1351
|
-
building_addition: string
|
|
1350
|
+
building_add_on: string ,
|
|
1351
|
+
building_addition: string ,
|
|
1352
1352
|
building_area: number,
|
|
1353
1353
|
building_function: string
|
|
1354
1354
|
building_number: number,
|
|
@@ -1368,7 +1368,7 @@ export interface ISolarApiCalculationParamaters{
|
|
|
1368
1368
|
costs_other: number
|
|
1369
1369
|
costs_service: number
|
|
1370
1370
|
degradation:number
|
|
1371
|
-
eeg_umlage: any
|
|
1371
|
+
eeg_umlage: any ,
|
|
1372
1372
|
emobility: boolean,
|
|
1373
1373
|
energy_consumption: number,
|
|
1374
1374
|
energy_price:number
|
|
@@ -1447,7 +1447,7 @@ export interface ISolarApiModule {
|
|
|
1447
1447
|
Wp: number,
|
|
1448
1448
|
cost_per_kwp: number,
|
|
1449
1449
|
height: number,
|
|
1450
|
-
ident: number
|
|
1450
|
+
ident: number ,
|
|
1451
1451
|
name: string,
|
|
1452
1452
|
size:number,
|
|
1453
1453
|
width: number
|
|
@@ -1574,9 +1574,9 @@ export interface IHouseObjectWithMeasuredatas extends IHouseobject{
|
|
|
1574
1574
|
|
|
1575
1575
|
export interface IUseranswer{
|
|
1576
1576
|
id : string
|
|
1577
|
-
intakeid ?: string
|
|
1577
|
+
intakeid ?: string
|
|
1578
1578
|
value ?: string
|
|
1579
|
-
answeroptionid ?: string
|
|
1579
|
+
answeroptionid ?: string
|
|
1580
1580
|
answeroption ?: IAnsweroption
|
|
1581
1581
|
question ?: IQuestion
|
|
1582
1582
|
|
|
@@ -1650,7 +1650,7 @@ export interface IHousewish{
|
|
|
1650
1650
|
sortorder : number
|
|
1651
1651
|
userdatahousewishes ?: IUserdatahousewish[]
|
|
1652
1652
|
housewishgroup ?: IHousewishgroup
|
|
1653
|
-
housewishgroupid ?: string
|
|
1653
|
+
housewishgroupid ?: string
|
|
1654
1654
|
}
|
|
1655
1655
|
|
|
1656
1656
|
|
|
@@ -1668,8 +1668,8 @@ export interface IUserdatahousewish{
|
|
|
1668
1668
|
sortorder : number
|
|
1669
1669
|
housewish ?: IHousewish
|
|
1670
1670
|
userdata ?: IUserdata
|
|
1671
|
-
housewishid ?: string
|
|
1672
|
-
userdataid ?: string
|
|
1671
|
+
housewishid ?: string
|
|
1672
|
+
userdataid ?: string
|
|
1673
1673
|
score ?: number
|
|
1674
1674
|
}
|
|
1675
1675
|
|
|
@@ -1717,13 +1717,13 @@ interface IUsage{
|
|
|
1717
1717
|
heatingSource ?: string
|
|
1718
1718
|
warmwaterSource ?: string
|
|
1719
1719
|
existingAppliances ?: {
|
|
1720
|
-
heatingfuel ?: Fuel
|
|
1721
|
-
warmwaterfuel ?: Fuel
|
|
1722
|
-
cookingfuel ?: Fuel
|
|
1720
|
+
heatingfuel ?: Fuel
|
|
1721
|
+
warmwaterfuel ?: Fuel
|
|
1722
|
+
cookingfuel ?: Fuel
|
|
1723
1723
|
name ?: string
|
|
1724
1724
|
savingsfactor ?: number
|
|
1725
1725
|
}[]
|
|
1726
|
-
energylabel ?: IEnergyLabel
|
|
1726
|
+
energylabel ?: IEnergyLabel
|
|
1727
1727
|
}
|
|
1728
1728
|
interface IUsageExtended extends IUsage{
|
|
1729
1729
|
energystreams : {
|
|
@@ -1803,14 +1803,14 @@ interface ICosts{
|
|
|
1803
1803
|
|
|
1804
1804
|
export interface ICustomAdviceCombination{
|
|
1805
1805
|
insulation : {
|
|
1806
|
-
[index:string] : string
|
|
1806
|
+
[index:string] : string | undefined
|
|
1807
1807
|
}
|
|
1808
|
-
draft : string
|
|
1809
|
-
ventilation : string
|
|
1810
|
-
gasfreeoption : string
|
|
1808
|
+
draft : string | undefined
|
|
1809
|
+
ventilation : string | undefined
|
|
1810
|
+
gasfreeoption : string | undefined
|
|
1811
1811
|
solar : {
|
|
1812
|
-
household : string
|
|
1813
|
-
gasfree : string
|
|
1812
|
+
household : string | undefined
|
|
1813
|
+
gasfree : string | undefined
|
|
1814
1814
|
}
|
|
1815
1815
|
years ?: number
|
|
1816
1816
|
loans ?: IPreferredFinancingOption[]
|
|
@@ -1839,21 +1839,21 @@ type Orientation = "z" | "z/w" | "w" | "n/w" | "n" | "n/o" | "o" | "z/o"
|
|
|
1839
1839
|
|
|
1840
1840
|
export interface ITemperaturecalcdata{
|
|
1841
1841
|
logged : ILogged
|
|
1842
|
-
savingsinenergyfactor ?: string
|
|
1843
|
-
returnpercentagefactor ?: string
|
|
1844
|
-
paybackfactor ?: string
|
|
1845
|
-
saving1 ?: string
|
|
1846
|
-
saving2 ?: string
|
|
1847
|
-
rc1 ?: string
|
|
1848
|
-
rc2 ?: string
|
|
1849
|
-
vereffening ?: string
|
|
1850
|
-
operation ?: IOperation
|
|
1851
|
-
openstairs ?: boolean
|
|
1852
|
-
floorheating ?: boolean
|
|
1853
|
-
measureid ?: string
|
|
1854
|
-
roomheated ?: boolean
|
|
1855
|
-
househasonehouselevel ?: boolean
|
|
1856
|
-
noexistingmeasure ?: boolean
|
|
1842
|
+
savingsinenergyfactor ?: string
|
|
1843
|
+
returnpercentagefactor ?: string ,
|
|
1844
|
+
paybackfactor ?: string
|
|
1845
|
+
saving1 ?: string
|
|
1846
|
+
saving2 ?: string
|
|
1847
|
+
rc1 ?: string
|
|
1848
|
+
rc2 ?: string
|
|
1849
|
+
vereffening ?: string
|
|
1850
|
+
operation ?: IOperation
|
|
1851
|
+
openstairs ?: boolean
|
|
1852
|
+
floorheating ?: boolean
|
|
1853
|
+
measureid ?: string
|
|
1854
|
+
roomheated ?: boolean
|
|
1855
|
+
househasonehouselevel ?: boolean
|
|
1856
|
+
noexistingmeasure ?: boolean
|
|
1857
1857
|
}
|
|
1858
1858
|
|
|
1859
1859
|
|
|
@@ -1876,11 +1876,11 @@ export interface Reductionfactors extends HouseObjectSettings{
|
|
|
1876
1876
|
}
|
|
1877
1877
|
export interface HouseContructionParams{
|
|
1878
1878
|
surface:number
|
|
1879
|
-
coldbridgesenergyloss:number
|
|
1880
|
-
graaddagenjaarmethode:number
|
|
1881
|
-
graaddagenmaandmethode:number
|
|
1882
|
-
draftprofile:DraftProfile
|
|
1883
|
-
perimeterenergyloss:number
|
|
1879
|
+
coldbridgesenergyloss:number
|
|
1880
|
+
graaddagenjaarmethode:number
|
|
1881
|
+
graaddagenmaandmethode:number
|
|
1882
|
+
draftprofile:DraftProfile
|
|
1883
|
+
perimeterenergyloss:number
|
|
1884
1884
|
uninsulatedenergylosses : Uninsulatedenergylosses
|
|
1885
1885
|
uninsulatedu : Uninsulatedu
|
|
1886
1886
|
uninsulatedreductionfactors : Reductionfactors
|
|
@@ -1905,7 +1905,7 @@ export interface IAbstractInsulation{
|
|
|
1905
1905
|
|
|
1906
1906
|
export interface IInsulationmethod extends IAbstractInsulation{
|
|
1907
1907
|
insulationtypes ?: IInsulationtype[]
|
|
1908
|
-
image ?: string
|
|
1908
|
+
image ?: string
|
|
1909
1909
|
walltypes ?: IWalltype[]
|
|
1910
1910
|
floortypes ?: IFloortype[]
|
|
1911
1911
|
}
|
|
@@ -1914,14 +1914,14 @@ export interface IInsulationlocation extends IAbstractInsulation{
|
|
|
1914
1914
|
rooftypeid: string
|
|
1915
1915
|
}[]
|
|
1916
1916
|
insulationtypes ?: IInsulationtype[]
|
|
1917
|
-
image ?: string
|
|
1917
|
+
image ?: string
|
|
1918
1918
|
}
|
|
1919
1919
|
export interface IInsulationtype extends IAbstractInsulation{
|
|
1920
|
-
lambda ?: number
|
|
1921
|
-
rcvalue ?: number
|
|
1920
|
+
lambda ?: number
|
|
1921
|
+
rcvalue ?: number
|
|
1922
1922
|
insulationmethods ?: IInsulationmethod[]
|
|
1923
1923
|
insulationlocations ?: IInsulationlocation[]
|
|
1924
|
-
image ?: string
|
|
1924
|
+
image ?: string
|
|
1925
1925
|
walltypes ?: IWalltype[]
|
|
1926
1926
|
floortypes ?: IFloortype[]
|
|
1927
1927
|
rooftypes ?: IRooftype[]
|
|
@@ -1961,17 +1961,17 @@ export interface IQuestionset{
|
|
|
1961
1961
|
|
|
1962
1962
|
export interface IQuestion{
|
|
1963
1963
|
sortorder: number;
|
|
1964
|
-
informationtext: string
|
|
1965
|
-
informationimage: string
|
|
1966
|
-
min: number
|
|
1967
|
-
max: number
|
|
1968
|
-
step: number
|
|
1969
|
-
placeholder: string
|
|
1970
|
-
questiontype: IQuestiontype
|
|
1971
|
-
image: string
|
|
1964
|
+
informationtext: string ;
|
|
1965
|
+
informationimage: string ;
|
|
1966
|
+
min: number ;
|
|
1967
|
+
max: number ;
|
|
1968
|
+
step: number ;
|
|
1969
|
+
placeholder: string ;
|
|
1970
|
+
questiontype: IQuestiontype ;
|
|
1971
|
+
image: string ;
|
|
1972
1972
|
answeroptions: IAnsweroption[];
|
|
1973
|
-
body: string
|
|
1974
|
-
posttext: string
|
|
1973
|
+
body: string ;
|
|
1974
|
+
posttext: string ;
|
|
1975
1975
|
id: string;
|
|
1976
1976
|
status: string;
|
|
1977
1977
|
name: string;
|
|
@@ -1982,7 +1982,7 @@ export interface IQuestion{
|
|
|
1982
1982
|
}
|
|
1983
1983
|
required?:boolean
|
|
1984
1984
|
viewing:boolean
|
|
1985
|
-
shortname : string
|
|
1985
|
+
shortname : string
|
|
1986
1986
|
logged ?: ILogged
|
|
1987
1987
|
}
|
|
1988
1988
|
|
|
@@ -1992,13 +1992,13 @@ export interface IQuestiontype{
|
|
|
1992
1992
|
}
|
|
1993
1993
|
export interface IAnsweroption{
|
|
1994
1994
|
selected: boolean;
|
|
1995
|
-
informationtext: string
|
|
1995
|
+
informationtext: string ;
|
|
1996
1996
|
name: string;
|
|
1997
|
-
informationimage: string
|
|
1998
|
-
image: string
|
|
1997
|
+
informationimage: string ;
|
|
1998
|
+
image: string ;
|
|
1999
1999
|
hasinput: boolean;
|
|
2000
2000
|
id: string;
|
|
2001
|
-
value: string
|
|
2001
|
+
value: string ;
|
|
2002
2002
|
placeholder?: string
|
|
2003
2003
|
min?:number
|
|
2004
2004
|
max?:number
|
|
@@ -2240,8 +2240,8 @@ export interface IAnnexside{
|
|
|
2240
2240
|
attachedtoneighbour : boolean
|
|
2241
2241
|
width : number
|
|
2242
2242
|
height : number
|
|
2243
|
-
deviationtopleft ?: number
|
|
2244
|
-
deviationbottomright ?: number
|
|
2243
|
+
deviationtopleft ?: number
|
|
2244
|
+
deviationbottomright ?: number
|
|
2245
2245
|
sideno : number
|
|
2246
2246
|
}
|
|
2247
2247
|
|