@e-trias/woonplan 1.0.67 → 1.0.70
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 +11 -3
package/package.json
CHANGED
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
|
-
|
|
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
|
|
146
|
+
[key in Housetypename] : number
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export interface IHousetype{
|
|
150
|
+
id : string
|
|
151
|
+
deleted : boolean
|
|
152
|
+
name : string
|
|
145
153
|
}
|
|
146
154
|
|
|
147
155
|
export interface IHousetemplateCalculationData{
|
|
@@ -174,7 +182,7 @@ export interface IHousetemplateCalculationData{
|
|
|
174
182
|
|
|
175
183
|
export interface IHousetemplate{
|
|
176
184
|
id ?: string
|
|
177
|
-
calculationdata ?:
|
|
185
|
+
calculationdata ?: JSON
|
|
178
186
|
}
|
|
179
187
|
|
|
180
188
|
export interface Solarapicall{
|