@e-trias/woonplan 1.3.213 → 1.3.214
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 +114 -114
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -160,8 +160,8 @@ export interface ILogged{
|
|
|
160
160
|
|
|
161
161
|
// used in etriasdb
|
|
162
162
|
export interface ITranslation{
|
|
163
|
-
id
|
|
164
|
-
deleted
|
|
163
|
+
id ?: string
|
|
164
|
+
deleted ?: boolean
|
|
165
165
|
sortorder : number
|
|
166
166
|
fields ?: string
|
|
167
167
|
locale ?: ILocale
|
|
@@ -172,9 +172,9 @@ export interface ITranslation{
|
|
|
172
172
|
|
|
173
173
|
// used in woonplan
|
|
174
174
|
export interface ISitelabelTranslation{
|
|
175
|
-
id
|
|
176
|
-
name
|
|
177
|
-
deleted
|
|
175
|
+
id ?: string
|
|
176
|
+
name ?: string
|
|
177
|
+
deleted ?: boolean
|
|
178
178
|
sortorder : number
|
|
179
179
|
locale ?: ILocale
|
|
180
180
|
localeid ?: string
|
|
@@ -185,17 +185,17 @@ export interface ISitelabelTranslation{
|
|
|
185
185
|
|
|
186
186
|
|
|
187
187
|
export interface ISitelabel{
|
|
188
|
-
id
|
|
189
|
-
deleted
|
|
190
|
-
name
|
|
188
|
+
id ?: string
|
|
189
|
+
deleted ?: boolean
|
|
190
|
+
name ?: string
|
|
191
191
|
sortorder : number
|
|
192
192
|
translations ?: ISitelabelTranslation[]
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
|
|
196
196
|
export interface ILocale{
|
|
197
|
-
id
|
|
198
|
-
name
|
|
197
|
+
id ?: string
|
|
198
|
+
name ?: string
|
|
199
199
|
code ?: string
|
|
200
200
|
translations ?: ITranslation[] | ISitelabelTranslation[]
|
|
201
201
|
language ?: ILanguage
|
|
@@ -206,7 +206,7 @@ export interface ILocale{
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
export interface ICountry{
|
|
209
|
-
id
|
|
209
|
+
id ?: string
|
|
210
210
|
option : IOption
|
|
211
211
|
iso2 : string
|
|
212
212
|
iso3 : string
|
|
@@ -214,7 +214,7 @@ export interface ICountry{
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
export interface ILanguage{
|
|
217
|
-
id
|
|
217
|
+
id ?: string
|
|
218
218
|
option : IOption
|
|
219
219
|
iso2 : string
|
|
220
220
|
iso3 : string
|
|
@@ -224,16 +224,16 @@ export interface ILanguage{
|
|
|
224
224
|
|
|
225
225
|
|
|
226
226
|
export interface IOption{
|
|
227
|
-
id
|
|
228
|
-
name
|
|
229
|
-
deleted
|
|
227
|
+
id ?: string
|
|
228
|
+
name ?: string
|
|
229
|
+
deleted ?: boolean
|
|
230
230
|
sortorder : number
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
export interface ILog{
|
|
234
|
-
id
|
|
235
|
-
name
|
|
236
|
-
deleted
|
|
234
|
+
id ?: string
|
|
235
|
+
name ?: string
|
|
236
|
+
deleted ?: boolean
|
|
237
237
|
sortorder : number
|
|
238
238
|
savedstate ?: string
|
|
239
239
|
dd : Date
|
|
@@ -329,7 +329,7 @@ export interface IAdvicepreferences{
|
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
export interface IAnnualreport{
|
|
332
|
-
id
|
|
332
|
+
id ?: string
|
|
333
333
|
amount ?: string
|
|
334
334
|
type ?: string
|
|
335
335
|
year ?: string
|
|
@@ -337,7 +337,7 @@ export interface IAnnualreport{
|
|
|
337
337
|
userdataid ?:string
|
|
338
338
|
}
|
|
339
339
|
export interface IAveragecalcdata{
|
|
340
|
-
id
|
|
340
|
+
id ?: string
|
|
341
341
|
amount ?: string
|
|
342
342
|
occupants ?: string
|
|
343
343
|
profile ?: string
|
|
@@ -346,14 +346,14 @@ export interface IAveragecalcdata{
|
|
|
346
346
|
}
|
|
347
347
|
|
|
348
348
|
export interface IAveragecalcdatatype{
|
|
349
|
-
id
|
|
349
|
+
id ?: string
|
|
350
350
|
averagecalcdatas ?: IAveragecalcdata[]
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
export interface IOrientation{
|
|
354
354
|
logged ?: ILogged
|
|
355
|
-
name
|
|
356
|
-
id
|
|
355
|
+
name ?: string
|
|
356
|
+
id ?: string
|
|
357
357
|
}
|
|
358
358
|
|
|
359
359
|
|
|
@@ -372,9 +372,9 @@ export type IHousetemplateCalculationDataPerHousetype = {
|
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
export interface IHousetype{
|
|
375
|
-
id
|
|
376
|
-
deleted
|
|
377
|
-
name
|
|
375
|
+
id ?: string
|
|
376
|
+
deleted ?: boolean
|
|
377
|
+
name ?: string
|
|
378
378
|
}
|
|
379
379
|
|
|
380
380
|
export interface IHousetemplateCalculationData{
|
|
@@ -580,29 +580,29 @@ export interface IMeasuredata{
|
|
|
580
580
|
}
|
|
581
581
|
|
|
582
582
|
export interface IMaintenance{
|
|
583
|
-
id
|
|
583
|
+
id ?: string
|
|
584
584
|
investment ?: string
|
|
585
585
|
years ?: string
|
|
586
586
|
measuredataid ?: string
|
|
587
587
|
}
|
|
588
588
|
|
|
589
589
|
export interface IReinvestment{
|
|
590
|
-
id
|
|
590
|
+
id ?: string
|
|
591
591
|
investment ?: string
|
|
592
592
|
years ?: string
|
|
593
593
|
measuredataid ?: string
|
|
594
594
|
}
|
|
595
595
|
|
|
596
596
|
export interface IGlasstype{
|
|
597
|
-
id
|
|
598
|
-
deleted
|
|
597
|
+
id ?: string
|
|
598
|
+
deleted ?: boolean
|
|
599
599
|
hidden : boolean
|
|
600
600
|
maximumbuildyear : number
|
|
601
601
|
sortorder : number
|
|
602
602
|
measuredatas ?: IMeasuredata[]
|
|
603
603
|
gvalue : number
|
|
604
604
|
uvalue : number
|
|
605
|
-
name
|
|
605
|
+
name ?: string
|
|
606
606
|
image ?: string
|
|
607
607
|
}
|
|
608
608
|
|
|
@@ -662,9 +662,9 @@ export interface IMeasuretext{
|
|
|
662
662
|
}
|
|
663
663
|
|
|
664
664
|
export interface QuotationRequestForm{
|
|
665
|
-
measuredataid
|
|
666
|
-
measureid
|
|
667
|
-
contractorid
|
|
665
|
+
measuredataid ?: string
|
|
666
|
+
measureid ?: string
|
|
667
|
+
contractorid ?: string
|
|
668
668
|
}
|
|
669
669
|
|
|
670
670
|
export interface IAppointment{
|
|
@@ -685,8 +685,8 @@ export interface ICreateAppointmentParams{
|
|
|
685
685
|
appointmentTypeId: string
|
|
686
686
|
start: Date
|
|
687
687
|
end: Date
|
|
688
|
-
|
|
689
|
-
|
|
688
|
+
userdataid ?: string
|
|
689
|
+
customerid ?: string
|
|
690
690
|
}
|
|
691
691
|
|
|
692
692
|
export interface IAppointmentFormParams{
|
|
@@ -863,7 +863,7 @@ export interface IPackage {
|
|
|
863
863
|
}
|
|
864
864
|
|
|
865
865
|
export interface IPackageMeasure{
|
|
866
|
-
id
|
|
866
|
+
id ?: string
|
|
867
867
|
packageid ?: string
|
|
868
868
|
measureid ?: string
|
|
869
869
|
step ?: number
|
|
@@ -958,19 +958,19 @@ export interface IBagData {
|
|
|
958
958
|
}
|
|
959
959
|
|
|
960
960
|
export interface IWssProject{
|
|
961
|
-
id
|
|
962
|
-
name
|
|
961
|
+
id ?: string
|
|
962
|
+
name ?: string
|
|
963
963
|
}
|
|
964
964
|
export interface IWssAddress{
|
|
965
|
-
id
|
|
965
|
+
id ?: string
|
|
966
966
|
postcode : string
|
|
967
967
|
housenumber : number
|
|
968
968
|
extension : string
|
|
969
|
-
projectid
|
|
969
|
+
projectid ?: string
|
|
970
970
|
tags : string[]
|
|
971
971
|
}
|
|
972
972
|
export interface IWssTag{
|
|
973
|
-
id
|
|
973
|
+
id ?: string
|
|
974
974
|
|
|
975
975
|
}
|
|
976
976
|
|
|
@@ -986,8 +986,8 @@ export interface IHouseobject{
|
|
|
986
986
|
}
|
|
987
987
|
|
|
988
988
|
export interface IHouselevel{
|
|
989
|
-
id
|
|
990
|
-
deleted
|
|
989
|
+
id ?: string
|
|
990
|
+
deleted ?: boolean
|
|
991
991
|
sortorder : number
|
|
992
992
|
userdataid ?: string
|
|
993
993
|
heated : boolean
|
|
@@ -1111,9 +1111,9 @@ export interface IFloor extends IHouseobject{
|
|
|
1111
1111
|
|
|
1112
1112
|
|
|
1113
1113
|
export interface ISide{
|
|
1114
|
-
name
|
|
1115
|
-
deleted
|
|
1116
|
-
id
|
|
1114
|
+
name ?: string
|
|
1115
|
+
deleted ?: boolean
|
|
1116
|
+
id ?: string
|
|
1117
1117
|
sortorder : number
|
|
1118
1118
|
}
|
|
1119
1119
|
|
|
@@ -1153,7 +1153,7 @@ export interface IRoom extends IHouseobject{
|
|
|
1153
1153
|
accessible : boolean
|
|
1154
1154
|
isattic : boolean
|
|
1155
1155
|
used : boolean
|
|
1156
|
-
name
|
|
1156
|
+
name ?: string
|
|
1157
1157
|
|
|
1158
1158
|
}
|
|
1159
1159
|
|
|
@@ -1241,7 +1241,7 @@ export interface IWindowframetype extends IAbstractHouseObjectType{
|
|
|
1241
1241
|
}
|
|
1242
1242
|
|
|
1243
1243
|
export interface IRule{
|
|
1244
|
-
id
|
|
1244
|
+
id ?: string
|
|
1245
1245
|
energylossid ?: string
|
|
1246
1246
|
floortypeid ?: string
|
|
1247
1247
|
glasstypeid ?: string
|
|
@@ -1269,27 +1269,27 @@ export interface IRule{
|
|
|
1269
1269
|
|
|
1270
1270
|
|
|
1271
1271
|
export interface IGasfreeoption{
|
|
1272
|
-
id
|
|
1273
|
-
name
|
|
1274
|
-
deleted
|
|
1272
|
+
id ?: string
|
|
1273
|
+
name ?: string
|
|
1274
|
+
deleted ?: boolean
|
|
1275
1275
|
sortorder : number
|
|
1276
1276
|
riskfactor : number
|
|
1277
1277
|
gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
|
|
1278
1278
|
measures ?: IMeasure[]
|
|
1279
1279
|
}
|
|
1280
1280
|
export interface IGasfreeoptionmeasure{
|
|
1281
|
-
id
|
|
1282
|
-
name
|
|
1283
|
-
deleted
|
|
1281
|
+
id ?: string
|
|
1282
|
+
name ?: string
|
|
1283
|
+
deleted ?: boolean
|
|
1284
1284
|
sortorder : number
|
|
1285
|
-
measureid
|
|
1286
|
-
gasfreeoptionid
|
|
1285
|
+
measureid ?: string
|
|
1286
|
+
gasfreeoptionid ?: string
|
|
1287
1287
|
gasfreeoption ?: IGasfreeoption
|
|
1288
1288
|
}
|
|
1289
1289
|
|
|
1290
1290
|
|
|
1291
1291
|
export interface IMeasure {
|
|
1292
|
-
id
|
|
1292
|
+
id ?: string
|
|
1293
1293
|
gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
|
|
1294
1294
|
measuredatas ?: IMeasuredata[]
|
|
1295
1295
|
measuretypeid ?: string
|
|
@@ -1307,7 +1307,7 @@ export interface IMeasure {
|
|
|
1307
1307
|
|
|
1308
1308
|
|
|
1309
1309
|
export interface IMeasuretype{
|
|
1310
|
-
id
|
|
1310
|
+
id ?: string
|
|
1311
1311
|
measures ?: IMeasure[]
|
|
1312
1312
|
logged : ILogged
|
|
1313
1313
|
}
|
|
@@ -1518,11 +1518,11 @@ export interface EnergyInput{
|
|
|
1518
1518
|
export interface EnergyIO extends EnergyOutput, EnergyInput{}
|
|
1519
1519
|
|
|
1520
1520
|
export interface EntityEnergyIO extends EnergyIO{
|
|
1521
|
-
id
|
|
1521
|
+
id ?: string
|
|
1522
1522
|
u : number
|
|
1523
1523
|
}
|
|
1524
1524
|
export interface EntityEnergyIOExtended extends EnergyIO{
|
|
1525
|
-
id
|
|
1525
|
+
id ?: string
|
|
1526
1526
|
u : number
|
|
1527
1527
|
generatedoutput : number
|
|
1528
1528
|
reductionfactor ?: number
|
|
@@ -1557,7 +1557,7 @@ export interface IHouseObjectWithMeasuredatas extends IHouseobject{
|
|
|
1557
1557
|
|
|
1558
1558
|
|
|
1559
1559
|
export interface IUseranswer{
|
|
1560
|
-
id
|
|
1560
|
+
id ?: string
|
|
1561
1561
|
intakeid ?: string
|
|
1562
1562
|
value ?: string
|
|
1563
1563
|
answeroptionid ?: string
|
|
@@ -1629,8 +1629,8 @@ export interface IDefaulthomesettings{
|
|
|
1629
1629
|
|
|
1630
1630
|
|
|
1631
1631
|
export interface IHousewish{
|
|
1632
|
-
name
|
|
1633
|
-
deleted
|
|
1632
|
+
name ?: string
|
|
1633
|
+
deleted ?: boolean
|
|
1634
1634
|
sortorder : number
|
|
1635
1635
|
userdatahousewishes ?: IUserdatahousewish[]
|
|
1636
1636
|
housewishgroup ?: IHousewishgroup
|
|
@@ -1639,16 +1639,16 @@ export interface IHousewish{
|
|
|
1639
1639
|
|
|
1640
1640
|
|
|
1641
1641
|
export interface IHousewishgroup{
|
|
1642
|
-
name
|
|
1643
|
-
deleted
|
|
1642
|
+
name ?: string
|
|
1643
|
+
deleted ?: boolean
|
|
1644
1644
|
sortorder : number
|
|
1645
1645
|
housewishes ?: IHousewish[]
|
|
1646
1646
|
}
|
|
1647
1647
|
|
|
1648
1648
|
|
|
1649
1649
|
export interface IUserdatahousewish{
|
|
1650
|
-
name
|
|
1651
|
-
deleted
|
|
1650
|
+
name ?: string
|
|
1651
|
+
deleted ?: boolean
|
|
1652
1652
|
sortorder : number
|
|
1653
1653
|
housewish ?: IHousewish
|
|
1654
1654
|
userdata ?: IUserdata
|
|
@@ -1755,7 +1755,7 @@ interface IUsageExtended extends IUsage{
|
|
|
1755
1755
|
}
|
|
1756
1756
|
|
|
1757
1757
|
interface ICosts{
|
|
1758
|
-
id
|
|
1758
|
+
id ?: string
|
|
1759
1759
|
gasstandingcharge ?: number
|
|
1760
1760
|
gasprice ?: number
|
|
1761
1761
|
gaspriceincrease ?: number
|
|
@@ -1801,7 +1801,7 @@ export interface ICustomAdviceCombination{
|
|
|
1801
1801
|
}
|
|
1802
1802
|
|
|
1803
1803
|
export interface IPreferredFinancingOption{
|
|
1804
|
-
name
|
|
1804
|
+
name ?: string
|
|
1805
1805
|
amount : number
|
|
1806
1806
|
interest : number
|
|
1807
1807
|
years : number
|
|
@@ -1879,9 +1879,9 @@ export interface HouseContructionParams{
|
|
|
1879
1879
|
|
|
1880
1880
|
|
|
1881
1881
|
export interface IAbstractInsulation{
|
|
1882
|
-
id
|
|
1883
|
-
name
|
|
1884
|
-
deleted
|
|
1882
|
+
id ?: string
|
|
1883
|
+
name ?: string
|
|
1884
|
+
deleted ?: boolean
|
|
1885
1885
|
sortorder : number
|
|
1886
1886
|
measures ?: IMeasure[]
|
|
1887
1887
|
measuredatas ?: IMeasuredata[]
|
|
@@ -1912,11 +1912,11 @@ export interface IInsulationtype extends IAbstractInsulation{
|
|
|
1912
1912
|
}
|
|
1913
1913
|
|
|
1914
1914
|
export interface IAppliedMeasure{
|
|
1915
|
-
id
|
|
1915
|
+
id ?: string
|
|
1916
1916
|
investment : number
|
|
1917
|
-
measureid
|
|
1917
|
+
measureid ?: string
|
|
1918
1918
|
measuretype : string
|
|
1919
|
-
name
|
|
1919
|
+
name ?: string
|
|
1920
1920
|
reinvestments ?: {
|
|
1921
1921
|
investment : string
|
|
1922
1922
|
years : string
|
|
@@ -1937,7 +1937,7 @@ interface IAnnualreportSave{
|
|
|
1937
1937
|
|
|
1938
1938
|
|
|
1939
1939
|
export interface IQuestionset{
|
|
1940
|
-
id
|
|
1940
|
+
id ?: string
|
|
1941
1941
|
collectionid ?: string
|
|
1942
1942
|
questions ?: IQuestion[]
|
|
1943
1943
|
name: string
|
|
@@ -1966,7 +1966,7 @@ export interface IQuestion{
|
|
|
1966
1966
|
}
|
|
1967
1967
|
required?:boolean
|
|
1968
1968
|
viewing:boolean
|
|
1969
|
-
shortname
|
|
1969
|
+
shortname ?: string
|
|
1970
1970
|
logged ?: ILogged
|
|
1971
1971
|
}
|
|
1972
1972
|
|
|
@@ -1987,19 +1987,19 @@ export interface IAnsweroption{
|
|
|
1987
1987
|
min?:number
|
|
1988
1988
|
max?:number
|
|
1989
1989
|
step?:number
|
|
1990
|
-
questionid
|
|
1990
|
+
questionid ?: string
|
|
1991
1991
|
sortorder ?: number
|
|
1992
1992
|
logged ?: ILogged
|
|
1993
1993
|
}
|
|
1994
1994
|
|
|
1995
1995
|
export interface IIntake{
|
|
1996
|
-
id
|
|
1996
|
+
id ?: string
|
|
1997
1997
|
useranswers : IUseranswer[]
|
|
1998
1998
|
}
|
|
1999
1999
|
|
|
2000
2000
|
|
|
2001
2001
|
export interface IFinancingOption{
|
|
2002
|
-
name
|
|
2002
|
+
name ?: string
|
|
2003
2003
|
years : number
|
|
2004
2004
|
interest : number
|
|
2005
2005
|
min : number
|
|
@@ -2016,48 +2016,48 @@ export interface IManufacturer extends ICompany{
|
|
|
2016
2016
|
}
|
|
2017
2017
|
|
|
2018
2018
|
export interface IAppliancetype{
|
|
2019
|
-
name
|
|
2020
|
-
id
|
|
2021
|
-
deleted
|
|
2019
|
+
name ?: string
|
|
2020
|
+
id ?: string
|
|
2021
|
+
deleted ?: boolean
|
|
2022
2022
|
sortorder : number
|
|
2023
2023
|
appliances ?: IAppliance[]
|
|
2024
2024
|
}
|
|
2025
2025
|
|
|
2026
2026
|
export interface IVentilationsystemtype{
|
|
2027
|
-
name
|
|
2028
|
-
id
|
|
2029
|
-
deleted
|
|
2027
|
+
name ?: string
|
|
2028
|
+
id ?: string
|
|
2029
|
+
deleted ?: boolean
|
|
2030
2030
|
sortorder : number
|
|
2031
2031
|
ventilationsystems ?: IVentilationsystem[]
|
|
2032
2032
|
electricitycost ?: number
|
|
2033
2033
|
}
|
|
2034
2034
|
|
|
2035
2035
|
export interface IHeatingappliancetype{
|
|
2036
|
-
name
|
|
2037
|
-
id
|
|
2038
|
-
deleted
|
|
2036
|
+
name ?: string
|
|
2037
|
+
id ?: string
|
|
2038
|
+
deleted ?: boolean
|
|
2039
2039
|
sortorder : number
|
|
2040
2040
|
heatingappliances ?: IHeatingappliance[]
|
|
2041
2041
|
}
|
|
2042
2042
|
export interface IWaterheatertype{
|
|
2043
|
-
name
|
|
2044
|
-
id
|
|
2045
|
-
deleted
|
|
2043
|
+
name ?: string
|
|
2044
|
+
id ?: string
|
|
2045
|
+
deleted ?: boolean
|
|
2046
2046
|
sortorder : number
|
|
2047
2047
|
waterheaters ?: IWaterheater[]
|
|
2048
2048
|
}
|
|
2049
2049
|
|
|
2050
2050
|
export interface IWaterheaterCwclass{
|
|
2051
|
-
name
|
|
2052
|
-
deleted
|
|
2051
|
+
name ?: string
|
|
2052
|
+
deleted ?: boolean
|
|
2053
2053
|
sortorder : number
|
|
2054
2054
|
waterheaters ?: IWaterheater[]
|
|
2055
2055
|
}
|
|
2056
2056
|
|
|
2057
2057
|
export interface IAppliance{
|
|
2058
|
-
name
|
|
2059
|
-
id
|
|
2060
|
-
deleted
|
|
2058
|
+
name ?: string
|
|
2059
|
+
id ?: string
|
|
2060
|
+
deleted ?: boolean
|
|
2061
2061
|
sortorder : number
|
|
2062
2062
|
userdataid ?: string
|
|
2063
2063
|
userdata ?: IUserdata
|
|
@@ -2076,9 +2076,9 @@ export interface IAppliance{
|
|
|
2076
2076
|
amount ?: number
|
|
2077
2077
|
}
|
|
2078
2078
|
export interface IVentilationsystem{
|
|
2079
|
-
name
|
|
2080
|
-
id
|
|
2081
|
-
deleted
|
|
2079
|
+
name ?: string
|
|
2080
|
+
id ?: string
|
|
2081
|
+
deleted ?: boolean
|
|
2082
2082
|
sortorder : number
|
|
2083
2083
|
userdataid ?: string
|
|
2084
2084
|
userdata ?: IUserdata
|
|
@@ -2129,7 +2129,7 @@ export interface IContactTag{
|
|
|
2129
2129
|
}
|
|
2130
2130
|
|
|
2131
2131
|
export interface IQuestionnaireTag{
|
|
2132
|
-
id
|
|
2132
|
+
id ?: string
|
|
2133
2133
|
logged ?: ILogged
|
|
2134
2134
|
type ?: string
|
|
2135
2135
|
tagdependencies ?: IQuestionnaireTagDependency[]
|
|
@@ -2172,7 +2172,7 @@ export interface IAddressUitgebreid extends IAddress{
|
|
|
2172
2172
|
gebruiksdoelen: string[]
|
|
2173
2173
|
oppervlakte: number
|
|
2174
2174
|
oorspronkelijkBouwjaar: string[]
|
|
2175
|
-
woonplaatsid
|
|
2175
|
+
woonplaatsid ?: string
|
|
2176
2176
|
huisnummertoevoeging ?: string | number
|
|
2177
2177
|
huisletter ?: string
|
|
2178
2178
|
}
|
|
@@ -2184,7 +2184,7 @@ export interface IBagData {
|
|
|
2184
2184
|
city: string
|
|
2185
2185
|
surface: number
|
|
2186
2186
|
input: IBAGPayload
|
|
2187
|
-
woonplaatsid
|
|
2187
|
+
woonplaatsid ?: string
|
|
2188
2188
|
extension ?: string | number
|
|
2189
2189
|
municipality ?: string
|
|
2190
2190
|
}
|
|
@@ -2199,7 +2199,7 @@ export interface IBAGPayload {
|
|
|
2199
2199
|
|
|
2200
2200
|
|
|
2201
2201
|
export interface IAnnex{
|
|
2202
|
-
id
|
|
2202
|
+
id ?: string
|
|
2203
2203
|
logged ?: ILogged
|
|
2204
2204
|
userdataid ?: string
|
|
2205
2205
|
annexsides ?: IAnnexside[]
|
|
@@ -2213,8 +2213,8 @@ export interface IAnnex{
|
|
|
2213
2213
|
}
|
|
2214
2214
|
|
|
2215
2215
|
export interface IAnnexside{
|
|
2216
|
-
deleted
|
|
2217
|
-
id
|
|
2216
|
+
deleted ?: boolean
|
|
2217
|
+
id ?: string
|
|
2218
2218
|
sortorder : number
|
|
2219
2219
|
annexid ?: string
|
|
2220
2220
|
annex ?: IAnnex
|
|
@@ -2230,7 +2230,7 @@ export interface IAnnexside{
|
|
|
2230
2230
|
}
|
|
2231
2231
|
|
|
2232
2232
|
export interface IAnnextemplate{
|
|
2233
|
-
id
|
|
2233
|
+
id ?: string
|
|
2234
2234
|
logged ?: ILogged
|
|
2235
2235
|
userdataid ?: string
|
|
2236
2236
|
annexes ?: IAnnex[]
|
|
@@ -2252,7 +2252,7 @@ export interface IAnnextemplate{
|
|
|
2252
2252
|
|
|
2253
2253
|
|
|
2254
2254
|
export interface ISubscriptionplan{
|
|
2255
|
-
id
|
|
2255
|
+
id ?: string
|
|
2256
2256
|
logged ?: ILogged
|
|
2257
2257
|
partnerid ?: string
|
|
2258
2258
|
price : number
|
|
@@ -2263,7 +2263,7 @@ export interface ISubscriptionplan{
|
|
|
2263
2263
|
|
|
2264
2264
|
}
|
|
2265
2265
|
export interface ISubscription{
|
|
2266
|
-
id
|
|
2266
|
+
id ?: string
|
|
2267
2267
|
logged ?: ILogged
|
|
2268
2268
|
subscriptionplan ?: ISubscriptionplan
|
|
2269
2269
|
subscriptionplanid ?: string
|
|
@@ -2271,7 +2271,7 @@ export interface ISubscription{
|
|
|
2271
2271
|
vouchercodes ?: IVouchercode[]
|
|
2272
2272
|
}
|
|
2273
2273
|
export interface ISubscriptionplantype{
|
|
2274
|
-
id
|
|
2274
|
+
id ?: string
|
|
2275
2275
|
logged ?: ILogged
|
|
2276
2276
|
subscriptionplans ?: ISubscriptionplan[]
|
|
2277
2277
|
}
|
|
@@ -2347,7 +2347,7 @@ export interface IClimateYear{
|
|
|
2347
2347
|
}
|
|
2348
2348
|
|
|
2349
2349
|
export interface IWeatherStation{
|
|
2350
|
-
id
|
|
2350
|
+
id ?: string
|
|
2351
2351
|
logged ?: ILogged
|
|
2352
2352
|
lat : number
|
|
2353
2353
|
long : number
|
|
@@ -2364,8 +2364,8 @@ type UserState = {
|
|
|
2364
2364
|
|
|
2365
2365
|
export interface IEnergyLabel {
|
|
2366
2366
|
name ?: string
|
|
2367
|
-
id
|
|
2368
|
-
deleted
|
|
2367
|
+
id ?: string
|
|
2368
|
+
deleted ?: boolean
|
|
2369
2369
|
sortorder : number
|
|
2370
2370
|
countryid ?: string
|
|
2371
2371
|
threshold ?: number
|