@e-trias/woonplan 1.0.28 → 1.0.31
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/index.d.ts +21 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -193,6 +193,10 @@ export interface IMeasuredata{
|
|
|
193
193
|
collectivebuyquotationpossible?:boolean
|
|
194
194
|
g_value ?: number
|
|
195
195
|
u_value ?: number
|
|
196
|
+
|
|
197
|
+
insulationmethodid ?: string
|
|
198
|
+
insulationlocationid ?: string
|
|
199
|
+
insulationtypeid ?: string
|
|
196
200
|
}
|
|
197
201
|
|
|
198
202
|
export interface IMeasuredatainterestedcontact{
|
|
@@ -395,8 +399,6 @@ export interface IAbstractHouseObjectType{
|
|
|
395
399
|
deleted ?: boolean
|
|
396
400
|
id ?: string
|
|
397
401
|
sortorder ?: number
|
|
398
|
-
surface ?: number
|
|
399
|
-
|
|
400
402
|
}
|
|
401
403
|
|
|
402
404
|
export interface IFloortype extends IAbstractHouseObjectType{
|
|
@@ -410,9 +412,26 @@ export interface IRooftype extends IAbstractHouseObjectType{
|
|
|
410
412
|
export interface IWalltype extends IAbstractHouseObjectType{
|
|
411
413
|
}
|
|
412
414
|
|
|
415
|
+
export interface ICrawlspace{
|
|
416
|
+
deleted ?: boolean
|
|
417
|
+
id ?: string
|
|
418
|
+
sortorder ?: number
|
|
419
|
+
accessible ?: boolean
|
|
420
|
+
pumpable ?: boolean
|
|
421
|
+
cluttered ?: boolean
|
|
422
|
+
height ?: number
|
|
423
|
+
wet ?: string
|
|
424
|
+
|
|
425
|
+
}
|
|
426
|
+
export interface ICrawlspaceinfloor{
|
|
427
|
+
floorid : ''
|
|
428
|
+
crawlspaceid : ''
|
|
429
|
+
}
|
|
430
|
+
|
|
413
431
|
export interface IFloor extends IHouseobject{
|
|
414
432
|
floortypeid ?: string
|
|
415
433
|
floortype ?: IFloortype
|
|
434
|
+
crawlspaces ?: ICrawlspace[]
|
|
416
435
|
}
|
|
417
436
|
|
|
418
437
|
|