@e-trias/woonplan 1.1.20 → 1.1.22
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 +41 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -451,6 +451,7 @@ export interface ISettings {
|
|
|
451
451
|
startpercentagequestionaire?: number
|
|
452
452
|
automaticMothermodelselection ?: 1 | 0
|
|
453
453
|
automaticMothermodelSource ?: string
|
|
454
|
+
surfaceCalculation ?: 1 | 0
|
|
454
455
|
}
|
|
455
456
|
|
|
456
457
|
export interface IPerfectviewSettings {
|
|
@@ -1080,4 +1081,44 @@ interface IAreaaction extends ILogged{
|
|
|
1080
1081
|
settings ?: ISettings
|
|
1081
1082
|
hostname ?: string
|
|
1082
1083
|
pvmark ?: string
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
interface IHomeSettings{
|
|
1087
|
+
floor ?: {
|
|
1088
|
+
floor_insulationtype ?: string
|
|
1089
|
+
floor_insulationlocation ?: string
|
|
1090
|
+
floor_insulationmethod ?: string
|
|
1091
|
+
floor_rcValue ?: number
|
|
1092
|
+
floor_floortypeid ?: string
|
|
1093
|
+
}
|
|
1094
|
+
wall ?: {
|
|
1095
|
+
wall_insulationtype ?: string
|
|
1096
|
+
wall_insulationlocation ?: string
|
|
1097
|
+
wall_insulationmethod ?: string
|
|
1098
|
+
wall_rcValue ?: number
|
|
1099
|
+
wall_walltypeid ?: string
|
|
1100
|
+
wall_rcValue_uninsulated ?: number
|
|
1101
|
+
wall_thickness ?: string
|
|
1102
|
+
wall_aircavity ?: boolean
|
|
1103
|
+
}
|
|
1104
|
+
roof ?: {
|
|
1105
|
+
roof_insulationtype ?: string
|
|
1106
|
+
roof_insulationlocation ?: string
|
|
1107
|
+
roof_insulationmethod ?: string
|
|
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
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
interface IDefaulthomesettings extends ILogged{
|
|
1121
|
+
settings ?: IHomeSettings
|
|
1122
|
+
yearmin ?: number
|
|
1123
|
+
yearmax ?: number
|
|
1083
1124
|
}
|