@e-trias/woonplan 1.0.53 → 1.0.56
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 +5 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -120,6 +120,7 @@ export interface IUserdata{
|
|
|
120
120
|
circularconstruction ?: boolean
|
|
121
121
|
renovationconstruction ?: boolean
|
|
122
122
|
allowwallinsideinsulation ?: boolean
|
|
123
|
+
protectedstatus ?: string
|
|
123
124
|
}
|
|
124
125
|
|
|
125
126
|
export interface Solarapicall{
|
|
@@ -202,6 +203,7 @@ export interface IMeasuredata{
|
|
|
202
203
|
insulationmethodid ?: string
|
|
203
204
|
insulationlocationid ?: string
|
|
204
205
|
insulationtypeid ?: string
|
|
206
|
+
glasstypeid ?: string
|
|
205
207
|
}
|
|
206
208
|
|
|
207
209
|
export interface IMeasuredatainterestedcontact{
|
|
@@ -426,7 +428,6 @@ export interface IHouseobject{
|
|
|
426
428
|
sortorder ?: number
|
|
427
429
|
surface ?: number
|
|
428
430
|
measuredatas ?: IMeasuredata[]
|
|
429
|
-
protectedstatus ?: string
|
|
430
431
|
}
|
|
431
432
|
|
|
432
433
|
export interface IAbstractHouseObjectType{
|
|
@@ -498,6 +499,7 @@ export interface IWall extends IHouseobject{
|
|
|
498
499
|
walltype ?: IWalltype
|
|
499
500
|
insulationonownrisk ?: boolean
|
|
500
501
|
wallfinishid ?: string
|
|
502
|
+
protectedstatus ?: string
|
|
501
503
|
aircavity ?: boolean
|
|
502
504
|
rcvalue ?: number
|
|
503
505
|
thicknesscavity ?: number
|
|
@@ -523,6 +525,7 @@ export interface IWindowframe extends IHouseobject{
|
|
|
523
525
|
windowframetype ?: IWindowframetype
|
|
524
526
|
width : number
|
|
525
527
|
height : number
|
|
528
|
+
needreplacing ?: boolean
|
|
526
529
|
}
|
|
527
530
|
|
|
528
531
|
export interface IWindowframepart extends IHouseobject{
|
|
@@ -538,6 +541,7 @@ export interface IWindowframepart extends IHouseobject{
|
|
|
538
541
|
|
|
539
542
|
windowframeparttypeid ?: string
|
|
540
543
|
windowframeid ?: string
|
|
544
|
+
windowframe ?: IWindowframe
|
|
541
545
|
}
|
|
542
546
|
|
|
543
547
|
export interface IWindowframetype extends IAbstractHouseObjectType{
|