@e-trias/woonplan 1.1.16 → 1.1.18
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 +9 -9
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -248,7 +248,7 @@ export interface IHousetemplateCalculationDataForHousetype{
|
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
export interface IHousetemplate{
|
|
251
|
-
id ?: string
|
|
251
|
+
id ?: string | null
|
|
252
252
|
calculationdata ?: string
|
|
253
253
|
}
|
|
254
254
|
|
|
@@ -586,7 +586,7 @@ interface IHouselevel{
|
|
|
586
586
|
id : string
|
|
587
587
|
deleted : boolean
|
|
588
588
|
sortorder : number
|
|
589
|
-
userdataid ?: string
|
|
589
|
+
userdataid ?: string | null
|
|
590
590
|
heated : boolean
|
|
591
591
|
walkable: boolean
|
|
592
592
|
used: boolean
|
|
@@ -716,7 +716,7 @@ export interface IRoof extends IHouseobject{
|
|
|
716
716
|
rcvalue ?: number
|
|
717
717
|
housetypeid ?: string | null
|
|
718
718
|
|
|
719
|
-
roomid ?: string
|
|
719
|
+
roomid ?: string | null
|
|
720
720
|
room ?: IRoom
|
|
721
721
|
|
|
722
722
|
hasknieschot ?: boolean
|
|
@@ -743,12 +743,12 @@ export interface IWindowframe extends IHouseobject{
|
|
|
743
743
|
userdataid ?: string
|
|
744
744
|
userdata ?: IUserdata
|
|
745
745
|
wall ?: IWall
|
|
746
|
-
sideid ?: string
|
|
746
|
+
sideid ?: string | null
|
|
747
747
|
side ?: ISide
|
|
748
748
|
wallid ?: string
|
|
749
749
|
roomid ?: string
|
|
750
750
|
houselevelid ?: string
|
|
751
|
-
windowframetypeid ?: string
|
|
751
|
+
windowframetypeid ?: string | null
|
|
752
752
|
windowframetype ?: IWindowframetype
|
|
753
753
|
width : number
|
|
754
754
|
height : number
|
|
@@ -831,7 +831,7 @@ interface IMeasure {
|
|
|
831
831
|
id : string
|
|
832
832
|
gasfreeoptionmeasures ?: IGasfreeoptionmeasure[]
|
|
833
833
|
measuredatas ?: IMeasuredata[]
|
|
834
|
-
measuretypeid ?: string
|
|
834
|
+
measuretypeid ?: string | null
|
|
835
835
|
measuretype ?: IMeasuretype
|
|
836
836
|
}
|
|
837
837
|
|
|
@@ -1059,15 +1059,15 @@ interface IHouseObjectWithMeasuredatas extends IHouseobject{
|
|
|
1059
1059
|
|
|
1060
1060
|
interface IAnsweroption{
|
|
1061
1061
|
id : string
|
|
1062
|
-
questionid ?: string
|
|
1062
|
+
questionid ?: string | null
|
|
1063
1063
|
|
|
1064
1064
|
}
|
|
1065
1065
|
|
|
1066
1066
|
interface IUseranswer{
|
|
1067
1067
|
id : string
|
|
1068
|
-
intakeid ?: string
|
|
1068
|
+
intakeid ?: string | null
|
|
1069
1069
|
value ?: string
|
|
1070
|
-
answeroptionid ?: string
|
|
1070
|
+
answeroptionid ?: string | null
|
|
1071
1071
|
answeroption ?: IAnsweroption
|
|
1072
1072
|
|
|
1073
1073
|
}
|