@e-trias/woonplan 1.3.209 → 1.3.211

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +199 -215
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.3.209",
5
+ "version": "1.3.211",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json",
package/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export interface IContact{
2
- id?: string | null
2
+ id?: string
3
3
  firstname?: string
4
- infix?: string | null
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 | null
17
- companyid?: string | null
18
- areaactionid?: string | null
19
- areaactioncollectionid ?: string | null
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 | null
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 | null
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 | null;
84
+ id?:string ;
85
85
  userdataid ?: string;
86
86
  status?:string;
87
87
  usage?:string
@@ -96,16 +96,16 @@ export interface IAdvice{
96
96
  }
97
97
 
98
98
  export interface EtriasDBContact{
99
- id:string | null;
99
+ id?:string ;
100
100
  email:string;
101
101
  username:string;
102
102
  password:string;
103
- securityroleid:string | null;
104
- companyid:string | null;
103
+ securityroleid:string ;
104
+ companyid:string ;
105
105
  }
106
106
 
107
107
  export interface ISecurityRole{
108
- id:string;
108
+ id?:string;
109
109
  name:string;
110
110
  deleted:boolean;
111
111
  menulist ?: string
@@ -113,7 +113,7 @@ export interface ISecurityRole{
113
113
  }
114
114
 
115
115
  export interface IPermission{
116
- id:string
116
+ id ?: string
117
117
  name:string
118
118
  deleted:boolean
119
119
  sortorder : number
@@ -129,7 +129,7 @@ export interface IPermission{
129
129
 
130
130
 
131
131
  export interface IAreaactionPermission{
132
- id:string
132
+ id?:string
133
133
  name:string
134
134
  deleted:boolean
135
135
  sortorder : number
@@ -143,29 +143,13 @@ export interface IAreaactionPermission{
143
143
  }
144
144
 
145
145
 
146
- export interface IPermission{
147
- id:string
148
- name:string
149
- deleted:boolean
150
- sortorder : number
151
- section ?: string
152
- create : boolean
153
- view : boolean
154
- change : boolean
155
- delete : boolean
156
- execute : boolean
157
- securityroleid ?: string
158
- securityrole ?: ISecurityRole
159
- }
160
-
161
-
162
146
  export interface Article{
163
- id:string;
147
+ id?:string;
164
148
  title:string;
165
149
  body: string;
166
150
  }
167
151
  export interface ILogged{
168
- id: string;
152
+ id?: string;
169
153
  name:string;
170
154
  deleted:boolean;
171
155
  sortorder:number;
@@ -293,7 +277,7 @@ export interface CIASignupFormResponse extends SignupFormResponse{}
293
277
  export interface MWASignupFormResponse extends SignupFormResponse{}
294
278
 
295
279
  export interface IUserdata{
296
- id:string;
280
+ id ?: string;
297
281
  sourceid ?:string
298
282
  contactid ?: string
299
283
  maxpanels?:number
@@ -457,33 +441,33 @@ export interface IHousetemplateCalculationDataForHousetype{
457
441
  }
458
442
 
459
443
  export interface IHousetemplate{
460
- id ?: string | null
444
+ id ?: string
461
445
  calculationdata ?: string
462
446
  }
463
447
 
464
448
  export interface ISolarApicall{
465
- id:string
449
+ id?:string
466
450
  deleted:boolean
467
451
  name?:string
468
452
  sortorder?:number
469
- energyconsumption:number | null
453
+ energyconsumption:number
470
454
  max:boolean
471
455
  panels:number
472
456
  yield:number
473
457
  postcode:string
474
458
  housenumber:number
475
- extension:string | null
459
+ extension:string
476
460
  result:string | ISolarApiResponse | ISolarApiResult
477
461
  module : number
478
462
  }
479
463
 
480
464
  export interface Quotation{
481
- id:string
465
+ id?:string
482
466
  expiredate:Date
483
467
  contractorid:string
484
468
  adviceid:string
485
- measuredataid?:string | null
486
- quotationrequestid:string | null
469
+ measuredataid?:string
470
+ quotationrequestid:string
487
471
  investment?:number
488
472
  status?:string
489
473
  accepteddate?:Date
@@ -492,7 +476,7 @@ export interface Quotation{
492
476
  }
493
477
 
494
478
  export interface IFile{
495
- id:string
479
+ id?:string
496
480
  originalfilename:string
497
481
  folder?:string
498
482
  bucket?:string
@@ -500,29 +484,29 @@ export interface IFile{
500
484
  logged ?: ILogged
501
485
  }
502
486
  export interface QuotationFile extends IFile{
503
- quotationid?:string | null
504
- quotationrequestid?:string | null
487
+ quotationid?:string
488
+ quotationrequestid?:string
505
489
  }
506
490
  export interface IContactFile extends IFile{
507
- contactid?:string | null
491
+ contactid?:string
508
492
  category ?:string
509
493
  }
510
494
 
511
495
  export interface QuotationRequest{
512
- id:string
496
+ id?:string
513
497
  measureid:string
514
- measuredataid?:string | null
515
- contractorid?:string | null
498
+ measuredataid?:string
499
+ contractorid?:string
516
500
  adviceid:string
517
501
  status:string
518
- data:JSON | null
502
+ data:JSON
519
503
  files?:QuotationFile[]
520
504
  logged ?: ILogged
521
505
  canceldate ?: Date
522
506
  }
523
507
 
524
508
  export interface Collectivebuy{
525
- id:string
509
+ id?:string
526
510
  expiredate:Date
527
511
  partnerid:string
528
512
  }
@@ -532,7 +516,7 @@ export interface ISaving{
532
516
  }
533
517
 
534
518
  export interface IMeasuredata{
535
- id:string
519
+ id?:string
536
520
  name:string
537
521
  deleted:boolean
538
522
  sortorder?:number
@@ -545,9 +529,9 @@ export interface IMeasuredata{
545
529
  rcvalue?:number
546
530
  investment?:number
547
531
  savingsfactor?:number
548
- collectivebuyid?:string | null
549
- contractorid?:string | null
550
- measureid?:string | null
532
+ collectivebuyid?:string
533
+ contractorid?:string
534
+ measureid?:string
551
535
  requiressurvey?:boolean
552
536
  collectivebuystatus?:"now" | "future" | "never"
553
537
  collectivebuyquotationpossible?:boolean
@@ -564,10 +548,10 @@ export interface IMeasuredata{
564
548
  insulationtype ?: IInsulationtype
565
549
  insulationlocation ?: IInsulationlocation
566
550
 
567
- insulationmethodid ?: string | null
568
- insulationlocationid ?: string | null
569
- insulationtypeid ?: string | null
570
- glasstypeid ?: string | null
551
+ insulationmethodid ?: string
552
+ insulationlocationid ?: string
553
+ insulationtypeid ?: string
554
+ glasstypeid ?: string
571
555
  glasstype ?: IGlasstype
572
556
 
573
557
  spf_vw ?: number
@@ -585,10 +569,10 @@ export interface IMeasuredata{
585
569
 
586
570
  thickness ?: number
587
571
 
588
- floorid ?: string | null
589
- wallid ?: string | null
590
- roofid ?: string | null
591
- windowframepartid ?: string | null
572
+ floorid ?: string
573
+ wallid ?: string
574
+ roofid ?: string
575
+ windowframepartid ?: string
592
576
  partnerid ?: string
593
577
  v2 ?: boolean
594
578
  electricitycost ?: number
@@ -619,7 +603,7 @@ export interface IGlasstype{
619
603
  gvalue : number
620
604
  uvalue : number
621
605
  name : string
622
- image ?: string | null
606
+ image ?: string
623
607
  }
624
608
 
625
609
  export interface IMeasuredatainterestedcontact{
@@ -628,53 +612,53 @@ export interface IMeasuredatainterestedcontact{
628
612
  }
629
613
 
630
614
  export interface IText{
631
- id:string
632
- title: string | null
633
- body: string | null
634
- localeid?: string | null
635
- partnerid?: string | null
615
+ id?:string
616
+ title: string
617
+ body: string
618
+ localeid?: string
619
+ partnerid?: string
636
620
  }
637
621
 
638
622
  export interface IContent{
639
- id:string
640
- fullyqualifiedaction : string | null
641
- subtitle?: string | null
642
- excerpt?: string | null
643
- searchbox?: string | null
644
- actionsbox?: string | null
645
- htmltitle?: string | null
646
- htmlkeywords?: string | null
647
- htmldescription?: string | null
648
- link?: string | null
649
- parentid?: string | null
650
- areaactionid?: string | null
651
- contentimages?: IContentimage[] | null
623
+ id?:string
624
+ fullyqualifiedaction : string
625
+ subtitle?: string
626
+ excerpt?: string
627
+ searchbox?: string
628
+ actionsbox?: string
629
+ htmltitle?: string
630
+ htmlkeywords?: string
631
+ htmldescription?: string
632
+ link?: string
633
+ parentid?: string
634
+ areaactionid?: string
635
+ contentimages?: IContentimage[]
652
636
  }
653
637
 
654
638
  export interface IContentimage {
655
639
  id: string
656
- name?: string | null
657
- deleted?: boolean | null
658
- sortorder?: number | null
659
- contentitem?: IContent | null
660
- image?: IImage | null
640
+ name?: string
641
+ deleted?: boolean
642
+ sortorder?: number
643
+ contentitem?: IContent
644
+ image?: IImage
661
645
  }
662
646
 
663
647
  export interface IImage {
664
648
  id: string
665
- path?: string | null
666
- alt?: string | null
667
- description?: string | null
668
- originalname?: string | null
669
- contentimages?: IContentimage[] | null
670
- metadata?: ILogged | null
649
+ path?: string
650
+ alt?: string
651
+ description?: string
652
+ originalname?: string
653
+ contentimages?: IContentimage[]
654
+ metadata?: ILogged
671
655
  }
672
656
 
673
657
  export interface IMeasuretext{
674
- id:string
675
- measureid ?: string | null
676
- measuredataid ?: string | null
677
- excerpt ?: string | null
658
+ id?:string
659
+ measureid ?: string
660
+ measuredataid ?: string
661
+ excerpt ?: string
678
662
  }
679
663
 
680
664
  export interface QuotationRequestForm{
@@ -684,12 +668,12 @@ export interface QuotationRequestForm{
684
668
  }
685
669
 
686
670
  export interface IAppointment{
687
- id: string
671
+ id?: string
688
672
  status?: string
689
673
  start?: Date
690
674
  end?: Date
691
- userdataid?: string | null
692
- surveyorid?: string | null
675
+ userdataid?: string
676
+ surveyorid?: string
693
677
  needspayment?: true | false
694
678
  price? : number
695
679
  name?: string
@@ -1005,7 +989,7 @@ export interface IHouselevel{
1005
989
  id : string
1006
990
  deleted : boolean
1007
991
  sortorder : number
1008
- userdataid ?: string | null
992
+ userdataid ?: string
1009
993
  heated : boolean
1010
994
  walkable: boolean
1011
995
  used: boolean
@@ -1033,11 +1017,11 @@ export interface IAbstractHouseObjectType{
1033
1017
  export interface IFloortype extends IAbstractHouseObjectType{
1034
1018
  lambda ?: number
1035
1019
  rcvalue ?: number
1036
- image ?: string | null
1020
+ image ?: string
1037
1021
  }
1038
1022
 
1039
1023
  export interface IRooftype extends IAbstractHouseObjectType{
1040
- image ?: string | null
1024
+ image ?: string
1041
1025
  }
1042
1026
 
1043
1027
  export interface IWalltype extends IAbstractHouseObjectType{
@@ -1053,7 +1037,7 @@ export interface IWallfinish{
1053
1037
  id ?: string
1054
1038
  sortorder ?: number
1055
1039
  name ?: string
1056
- image ?: string | null
1040
+ image ?: string
1057
1041
  }
1058
1042
  export interface IRoofshape{
1059
1043
  deleted ?: boolean
@@ -1068,34 +1052,34 @@ export interface IRoofing{
1068
1052
  sortorder ?: number
1069
1053
  name ?: string
1070
1054
  roofs ?: IRoof[]
1071
- image ?: string | null
1055
+ image ?: string
1072
1056
  }
1073
1057
 
1074
1058
  export interface ICrawlspace{
1075
1059
  deleted ?: boolean
1076
- id ?: string | null
1060
+ id ?: string
1077
1061
  sortorder ?: number
1078
1062
  accessible ?: boolean
1079
1063
  pumpable ?: boolean
1080
1064
  cluttered ?: boolean
1081
1065
  height ?: number
1082
- wet ?: string | null
1083
- houselevelid ?: string | null
1066
+ wet ?: string
1067
+ houselevelid ?: string
1084
1068
 
1085
1069
  crawlspacesinfloor ?: ICrawlspaceinfloor[]
1086
1070
 
1087
1071
  }
1088
1072
  export interface ICrawlspaceinfloor{
1089
1073
  deleted ?: boolean
1090
- id ?: string | null
1074
+ id ?: string
1091
1075
  sortorder ?: number
1092
- floorid ?: string | null
1076
+ floorid ?: string
1093
1077
  crawlspaceid ?: string
1094
1078
  surface ?: number
1095
1079
  }
1096
1080
  export interface IFloorinroom{
1097
1081
  deleted ?: boolean
1098
- id ?: string | null
1082
+ id ?: string
1099
1083
  sortorder ?: number
1100
1084
  floorid ?: string
1101
1085
  roomid ?: string
@@ -1104,7 +1088,7 @@ export interface IFloorinroom{
1104
1088
  }
1105
1089
 
1106
1090
  export interface IFloor extends IHouseobject{
1107
- floortypeid ?: string | null
1091
+ floortypeid ?: string
1108
1092
  floortype ?: IFloortype
1109
1093
  crawlspaces ?: ICrawlspace[]
1110
1094
  historic ?: boolean
@@ -1137,17 +1121,17 @@ export interface IWall extends IHouseobject{
1137
1121
  shadowpercentage ?: number
1138
1122
  angle ?: number
1139
1123
  side ?: ISide
1140
- sideid ?: string | null
1141
- walltypeid ?: string | null
1124
+ sideid ?: string
1125
+ walltypeid ?: string
1142
1126
  walltype ?: IWalltype
1143
1127
  insulationonownrisk ?: boolean
1144
- wallfinishid ?: string | null
1128
+ wallfinishid ?: string
1145
1129
  wallfinish ?: IWallfinish
1146
1130
  protectedstatus ?: string
1147
1131
  aircavity ?: boolean
1148
1132
  rcvalue ?: number
1149
1133
  thicknesscavity ?: number
1150
- housetypeid ?: string | null
1134
+ housetypeid ?: string
1151
1135
  grosssurface ?: number
1152
1136
 
1153
1137
  monumentaloutside ?: boolean
@@ -1176,29 +1160,29 @@ export interface IRoom extends IHouseobject{
1176
1160
  export interface IRoof extends IHouseobject{
1177
1161
  shadowpercentage ?: number
1178
1162
  angle ?: number
1179
- rooftypeid ?: string | null
1163
+ rooftypeid ?: string
1180
1164
  rooftype ?: IRooftype
1181
1165
  slope ?: boolean
1182
1166
  ridgeheight ?: number
1183
1167
  ceilingboarded ?: boolean
1184
- roofingid ?: string | null
1168
+ roofingid ?: string
1185
1169
  roofing ?: IRoofing
1186
- sideid ?: string | null
1170
+ sideid ?: string
1187
1171
  side ?: ISide
1188
1172
  rcvalue ?: number
1189
- housetypeid ?: string | null
1173
+ housetypeid ?: string
1190
1174
 
1191
- roomid ?: string | null
1175
+ roomid ?: string
1192
1176
  room ?: IRoom
1193
1177
 
1194
1178
  hasknieschot ?: boolean
1195
1179
  knieschotbacksideaccessible ?: boolean
1196
1180
  knieschotenoughspace ?: boolean
1197
1181
  knieschotrunningmeters ?: number
1198
- buildyear ?: number | null
1199
- protectedstatus ?: string | null
1200
- protectedstatusside ?: string | null
1201
- roofplanelocation ?: string | null
1182
+ buildyear ?: number
1183
+ protectedstatus ?: string
1184
+ protectedstatusside ?: string
1185
+ roofplanelocation ?: string
1202
1186
  roofboardingthickness ?: number
1203
1187
  beamsheight ?: number
1204
1188
  flat_edgeheight ?: number
@@ -1216,20 +1200,20 @@ export interface IRoof extends IHouseobject{
1216
1200
  }
1217
1201
 
1218
1202
  export interface IWindowframe extends IHouseobject{
1219
- userdataid ?: string | null
1203
+ userdataid ?: string
1220
1204
  userdata ?: IUserdata
1221
1205
  wall ?: IWall
1222
- sideid ?: string | null
1206
+ sideid ?: string
1223
1207
  side ?: ISide
1224
- wallid ?: string | null
1225
- roomid ?: string | null
1226
- houselevelid ?: string | null
1227
- windowframetypeid ?: string | null
1208
+ wallid ?: string
1209
+ roomid ?: string
1210
+ houselevelid ?: string
1211
+ windowframetypeid ?: string
1228
1212
  windowframetype ?: IWindowframetype
1229
1213
  width : number
1230
1214
  height : number
1231
1215
  needreplacing ?: boolean
1232
- housetypeid ?: string | null
1216
+ housetypeid ?: string
1233
1217
 
1234
1218
  room ?: IRoom
1235
1219
  }
@@ -1245,8 +1229,8 @@ export interface IWindowframepart extends IHouseobject{
1245
1229
  topstoollength ?: number
1246
1230
  shadowpercentage ?: number
1247
1231
 
1248
- windowframeparttypeid ?: string | null
1249
- windowframeid ?: string | null
1232
+ windowframeparttypeid ?: string
1233
+ windowframeid ?: string
1250
1234
  windowframe ?: IWindowframe
1251
1235
  windowframetype ?: IWindowframetype
1252
1236
  side ?: ISide
@@ -1258,26 +1242,26 @@ export interface IWindowframetype extends IAbstractHouseObjectType{
1258
1242
 
1259
1243
  export interface IRule{
1260
1244
  id : string
1261
- energylossid ?: string | null
1262
- floortypeid ?: string | null
1263
- glasstypeid ?: string | null
1264
- roofingid ?: string | null
1265
- roofshapeid ?: string | null
1266
- rooftypeid ?: string | null
1267
- wallfinishid ?: string | null
1268
- walltypeid ?: string | null
1269
- windowframeparttypeid ?: string | null
1270
- packageid ?: string | null
1271
- rulesetid ?: string | null
1272
- ruletypeid ?: string | null
1273
- measuredataid ?: string | null
1274
- targetMeasureid ?: string | null
1275
- gasfreeoptionid ?: string | null
1276
- measuretypeid ?: string | null
1277
- insulationlocationid ?: string | null
1278
- insulationmethodid ?: string | null
1279
- insulationtypeid ?: string | null
1280
- ventilationsystemtypeid ?: string | null
1245
+ energylossid ?: string
1246
+ floortypeid ?: string
1247
+ glasstypeid ?: string
1248
+ roofingid ?: string
1249
+ roofshapeid ?: string
1250
+ rooftypeid ?: string
1251
+ wallfinishid ?: string
1252
+ walltypeid ?: string
1253
+ windowframeparttypeid ?: string
1254
+ packageid ?: string
1255
+ rulesetid ?: string
1256
+ ruletypeid ?: string
1257
+ measuredataid ?: string
1258
+ targetMeasureid ?: string
1259
+ gasfreeoptionid ?: string
1260
+ measuretypeid ?: string
1261
+ insulationlocationid ?: string
1262
+ insulationmethodid ?: string
1263
+ insulationtypeid ?: string
1264
+ ventilationsystemtypeid ?: string
1281
1265
  field ?: string
1282
1266
  operator ?: string
1283
1267
  value ?: string
@@ -1308,7 +1292,7 @@ export interface IMeasure {
1308
1292
  id : string
1309
1293
  gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
1310
1294
  measuredatas ?: IMeasuredata[]
1311
- measuretypeid ?: string | null
1295
+ measuretypeid ?: string
1312
1296
  measuretype ?: IMeasuretype
1313
1297
  logged : ILogged
1314
1298
 
@@ -1347,8 +1331,8 @@ export interface ISolarApiAddress {
1347
1331
  street: string
1348
1332
  }
1349
1333
  export interface ISolarApiBagdata {
1350
- building_add_on: string | null,
1351
- building_addition: string | null,
1334
+ building_add_on: string ,
1335
+ building_addition: string ,
1352
1336
  building_area: number,
1353
1337
  building_function: string
1354
1338
  building_number: number,
@@ -1368,7 +1352,7 @@ export interface ISolarApiCalculationParamaters{
1368
1352
  costs_other: number
1369
1353
  costs_service: number
1370
1354
  degradation:number
1371
- eeg_umlage: any | null,
1355
+ eeg_umlage: any ,
1372
1356
  emobility: boolean,
1373
1357
  energy_consumption: number,
1374
1358
  energy_price:number
@@ -1447,7 +1431,7 @@ export interface ISolarApiModule {
1447
1431
  Wp: number,
1448
1432
  cost_per_kwp: number,
1449
1433
  height: number,
1450
- ident: number | null,
1434
+ ident: number ,
1451
1435
  name: string,
1452
1436
  size:number,
1453
1437
  width: number
@@ -1574,9 +1558,9 @@ export interface IHouseObjectWithMeasuredatas extends IHouseobject{
1574
1558
 
1575
1559
  export interface IUseranswer{
1576
1560
  id : string
1577
- intakeid ?: string | null
1561
+ intakeid ?: string
1578
1562
  value ?: string
1579
- answeroptionid ?: string | null
1563
+ answeroptionid ?: string
1580
1564
  answeroption ?: IAnsweroption
1581
1565
  question ?: IQuestion
1582
1566
 
@@ -1650,7 +1634,7 @@ export interface IHousewish{
1650
1634
  sortorder : number
1651
1635
  userdatahousewishes ?: IUserdatahousewish[]
1652
1636
  housewishgroup ?: IHousewishgroup
1653
- housewishgroupid ?: string | null
1637
+ housewishgroupid ?: string
1654
1638
  }
1655
1639
 
1656
1640
 
@@ -1668,8 +1652,8 @@ export interface IUserdatahousewish{
1668
1652
  sortorder : number
1669
1653
  housewish ?: IHousewish
1670
1654
  userdata ?: IUserdata
1671
- housewishid ?: string | null
1672
- userdataid ?: string | null
1655
+ housewishid ?: string
1656
+ userdataid ?: string
1673
1657
  score ?: number
1674
1658
  }
1675
1659
 
@@ -1717,13 +1701,13 @@ interface IUsage{
1717
1701
  heatingSource ?: string
1718
1702
  warmwaterSource ?: string
1719
1703
  existingAppliances ?: {
1720
- heatingfuel ?: Fuel | null
1721
- warmwaterfuel ?: Fuel | null
1722
- cookingfuel ?: Fuel | null
1704
+ heatingfuel ?: Fuel
1705
+ warmwaterfuel ?: Fuel
1706
+ cookingfuel ?: Fuel
1723
1707
  name ?: string
1724
1708
  savingsfactor ?: number
1725
1709
  }[]
1726
- energylabel ?: IEnergyLabel | null
1710
+ energylabel ?: IEnergyLabel
1727
1711
  }
1728
1712
  interface IUsageExtended extends IUsage{
1729
1713
  energystreams : {
@@ -1803,14 +1787,14 @@ interface ICosts{
1803
1787
 
1804
1788
  export interface ICustomAdviceCombination{
1805
1789
  insulation : {
1806
- [index:string] : string | null | undefined
1790
+ [index:string] : string | undefined
1807
1791
  }
1808
- draft : string | null | undefined
1809
- ventilation : string | null | undefined
1810
- gasfreeoption : string | null | undefined
1792
+ draft : string | undefined
1793
+ ventilation : string | undefined
1794
+ gasfreeoption : string | undefined
1811
1795
  solar : {
1812
- household : string | null | undefined
1813
- gasfree : string | null | undefined
1796
+ household : string | undefined
1797
+ gasfree : string | undefined
1814
1798
  }
1815
1799
  years ?: number
1816
1800
  loans ?: IPreferredFinancingOption[]
@@ -1839,21 +1823,21 @@ type Orientation = "z" | "z/w" | "w" | "n/w" | "n" | "n/o" | "o" | "z/o"
1839
1823
 
1840
1824
  export interface ITemperaturecalcdata{
1841
1825
  logged : ILogged
1842
- savingsinenergyfactor ?: string | null
1843
- returnpercentagefactor ?: string | null,
1844
- paybackfactor ?: string | null
1845
- saving1 ?: string | null
1846
- saving2 ?: string | null
1847
- rc1 ?: string | null
1848
- rc2 ?: string | null
1849
- vereffening ?: string | null
1850
- operation ?: IOperation | null
1851
- openstairs ?: boolean | null
1852
- floorheating ?: boolean | null
1853
- measureid ?: string | null
1854
- roomheated ?: boolean | null
1855
- househasonehouselevel ?: boolean | null
1856
- noexistingmeasure ?: boolean | null
1826
+ savingsinenergyfactor ?: string
1827
+ returnpercentagefactor ?: string ,
1828
+ paybackfactor ?: string
1829
+ saving1 ?: string
1830
+ saving2 ?: string
1831
+ rc1 ?: string
1832
+ rc2 ?: string
1833
+ vereffening ?: string
1834
+ operation ?: IOperation
1835
+ openstairs ?: boolean
1836
+ floorheating ?: boolean
1837
+ measureid ?: string
1838
+ roomheated ?: boolean
1839
+ househasonehouselevel ?: boolean
1840
+ noexistingmeasure ?: boolean
1857
1841
  }
1858
1842
 
1859
1843
 
@@ -1876,11 +1860,11 @@ export interface Reductionfactors extends HouseObjectSettings{
1876
1860
  }
1877
1861
  export interface HouseContructionParams{
1878
1862
  surface:number
1879
- coldbridgesenergyloss:number | null
1880
- graaddagenjaarmethode:number | null
1881
- graaddagenmaandmethode:number | null
1882
- draftprofile:DraftProfile | null
1883
- perimeterenergyloss:number | null
1863
+ coldbridgesenergyloss:number
1864
+ graaddagenjaarmethode:number
1865
+ graaddagenmaandmethode:number
1866
+ draftprofile:DraftProfile
1867
+ perimeterenergyloss:number
1884
1868
  uninsulatedenergylosses : Uninsulatedenergylosses
1885
1869
  uninsulatedu : Uninsulatedu
1886
1870
  uninsulatedreductionfactors : Reductionfactors
@@ -1905,7 +1889,7 @@ export interface IAbstractInsulation{
1905
1889
 
1906
1890
  export interface IInsulationmethod extends IAbstractInsulation{
1907
1891
  insulationtypes ?: IInsulationtype[]
1908
- image ?: string | null
1892
+ image ?: string
1909
1893
  walltypes ?: IWalltype[]
1910
1894
  floortypes ?: IFloortype[]
1911
1895
  }
@@ -1914,14 +1898,14 @@ export interface IInsulationlocation extends IAbstractInsulation{
1914
1898
  rooftypeid: string
1915
1899
  }[]
1916
1900
  insulationtypes ?: IInsulationtype[]
1917
- image ?: string | null
1901
+ image ?: string
1918
1902
  }
1919
1903
  export interface IInsulationtype extends IAbstractInsulation{
1920
- lambda ?: number | null
1921
- rcvalue ?: number | null
1904
+ lambda ?: number
1905
+ rcvalue ?: number
1922
1906
  insulationmethods ?: IInsulationmethod[]
1923
1907
  insulationlocations ?: IInsulationlocation[]
1924
- image ?: string | null
1908
+ image ?: string
1925
1909
  walltypes ?: IWalltype[]
1926
1910
  floortypes ?: IFloortype[]
1927
1911
  rooftypes ?: IRooftype[]
@@ -1961,17 +1945,17 @@ export interface IQuestionset{
1961
1945
 
1962
1946
  export interface IQuestion{
1963
1947
  sortorder: number;
1964
- informationtext: string | null;
1965
- informationimage: string | null;
1966
- min: number | null;
1967
- max: number | null;
1968
- step: number | null;
1969
- placeholder: string | null;
1970
- questiontype: IQuestiontype | null;
1971
- image: string | null;
1948
+ informationtext: string ;
1949
+ informationimage: string ;
1950
+ min: number ;
1951
+ max: number ;
1952
+ step: number ;
1953
+ placeholder: string ;
1954
+ questiontype: IQuestiontype ;
1955
+ image: string ;
1972
1956
  answeroptions: IAnsweroption[];
1973
- body: string | null;
1974
- posttext: string | null;
1957
+ body: string ;
1958
+ posttext: string ;
1975
1959
  id: string;
1976
1960
  status: string;
1977
1961
  name: string;
@@ -1982,7 +1966,7 @@ export interface IQuestion{
1982
1966
  }
1983
1967
  required?:boolean
1984
1968
  viewing:boolean
1985
- shortname : string | null
1969
+ shortname : string
1986
1970
  logged ?: ILogged
1987
1971
  }
1988
1972
 
@@ -1992,13 +1976,13 @@ export interface IQuestiontype{
1992
1976
  }
1993
1977
  export interface IAnsweroption{
1994
1978
  selected: boolean;
1995
- informationtext: string | null;
1979
+ informationtext: string ;
1996
1980
  name: string;
1997
- informationimage: string | null;
1998
- image: string | null;
1981
+ informationimage: string ;
1982
+ image: string ;
1999
1983
  hasinput: boolean;
2000
1984
  id: string;
2001
- value: string | null;
1985
+ value: string ;
2002
1986
  placeholder?: string
2003
1987
  min?:number
2004
1988
  max?:number
@@ -2240,8 +2224,8 @@ export interface IAnnexside{
2240
2224
  attachedtoneighbour : boolean
2241
2225
  width : number
2242
2226
  height : number
2243
- deviationtopleft ?: number | null
2244
- deviationbottomright ?: number | null
2227
+ deviationtopleft ?: number
2228
+ deviationbottomright ?: number
2245
2229
  sideno : number
2246
2230
  }
2247
2231