@e-trias/woonplan 1.0.67 → 1.0.68

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 +10 -2
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.0.67",
5
+ "version": "1.0.68",
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
@@ -127,11 +127,13 @@ export interface IUserdata{
127
127
  shouldceilingbepaneled ?: boolean
128
128
  allowlowerceiling ?: string
129
129
  housetemplateid ?: string
130
+ housetypeid ?: string
130
131
 
131
132
  }
132
133
 
133
134
 
134
- export enum Housetype {
135
+
136
+ export enum Housetypename {
135
137
  terraced = "terraced-middle",
136
138
  terracedright = "terraced-right" ,
137
139
  terracedleft = "terraced-left" ,
@@ -141,7 +143,13 @@ export enum Housetype {
141
143
  }
142
144
 
143
145
  export type IHousetemplateCalculationDataPerHousetype = {
144
- [key in Housetype] : number
146
+ [key in Housetypename] : number
147
+ }
148
+
149
+ export interface IHousetype{
150
+ id : string
151
+ deleted : boolean
152
+ name : Housetypename
145
153
  }
146
154
 
147
155
  export interface IHousetemplateCalculationData{