@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +23 -33
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.1.23",
5
+ "version": "1.1.25",
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
@@ -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
- 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
- }
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{