@e-trias/woonplan 1.1.23 → 1.1.25
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 +23 -33
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -724,10 +724,10 @@ export interface IRoof extends IHouseobject{
|
|
|
724
724
|
knieschotbacksideaccessible ?: boolean
|
|
725
725
|
knieschotenoughspace ?: boolean
|
|
726
726
|
knieschotrunningmeters ?: number
|
|
727
|
-
buildyear ?: number
|
|
727
|
+
buildyear ?: number | null
|
|
728
728
|
protectedstatus ?: boolean
|
|
729
729
|
protectedstatusside ?: boolean
|
|
730
|
-
roofplanelocation ?: string
|
|
730
|
+
roofplanelocation ?: string | null
|
|
731
731
|
roofboardingthickness ?: number
|
|
732
732
|
beamsheight ?: number
|
|
733
733
|
flat_edgeheight ?: number
|
|
@@ -1084,37 +1084,27 @@ interface IAreaaction extends ILogged{
|
|
|
1084
1084
|
}
|
|
1085
1085
|
|
|
1086
1086
|
interface IHomeSettings{
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
roof_rcValue ?: number
|
|
1109
|
-
roof_rooftypeid ?: string
|
|
1110
|
-
roof_roofingid ?: string
|
|
1111
|
-
}
|
|
1112
|
-
glass ?: {
|
|
1113
|
-
glass_glasstype ?: string
|
|
1114
|
-
}
|
|
1115
|
-
Other ?: {
|
|
1116
|
-
draftprofile ?: "draftprofile-1" | "draftprofile-2" | "draftprofile-3" | "draftprofile-4"
|
|
1117
|
-
}
|
|
1087
|
+
floor_insulationtype ?: string
|
|
1088
|
+
floor_insulationlocation ?: string
|
|
1089
|
+
floor_insulationmethod ?: string
|
|
1090
|
+
floor_rcValue ?: number
|
|
1091
|
+
floor_floortypeid ?: string
|
|
1092
|
+
wall_insulationtype ?: string
|
|
1093
|
+
wall_insulationlocation ?: string
|
|
1094
|
+
wall_insulationmethod ?: string
|
|
1095
|
+
wall_rcValue ?: number
|
|
1096
|
+
wall_walltypeid ?: string
|
|
1097
|
+
wall_rcValue_uninsulated ?: number
|
|
1098
|
+
wall_thickness ?: string
|
|
1099
|
+
wall_aircavity ?: boolean
|
|
1100
|
+
roof_insulationtype ?: string
|
|
1101
|
+
roof_insulationlocation ?: string
|
|
1102
|
+
roof_insulationmethod ?: string
|
|
1103
|
+
roof_rcValue ?: number
|
|
1104
|
+
roof_rooftypeid ?: string
|
|
1105
|
+
roof_roofingid ?: string
|
|
1106
|
+
glass_glasstype ?: string
|
|
1107
|
+
draftprofile ?: "draftprofile-1" | "draftprofile-2" | "draftprofile-3" | "draftprofile-4"
|
|
1118
1108
|
}
|
|
1119
1109
|
|
|
1120
1110
|
interface IDefaulthomesettings{
|