@e-trias/woonplan 1.0.28 → 1.0.29

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/index.d.ts +17 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -395,13 +395,12 @@ export interface IAbstractHouseObjectType{
395
395
  deleted ?: boolean
396
396
  id ?: string
397
397
  sortorder ?: number
398
- surface ?: number
399
-
400
398
  }
401
399
 
402
400
  export interface IFloortype extends IAbstractHouseObjectType{
403
401
  lambda ?: number
404
402
  rcvalue ?: number
403
+ crawlspaces ?: ICrawlspace[]
405
404
  }
406
405
 
407
406
  export interface IRooftype extends IAbstractHouseObjectType{
@@ -410,6 +409,22 @@ export interface IRooftype extends IAbstractHouseObjectType{
410
409
  export interface IWalltype extends IAbstractHouseObjectType{
411
410
  }
412
411
 
412
+ export interface ICrawlspace{
413
+ deleted ?: boolean
414
+ id ?: string
415
+ sortorder ?: number
416
+ accessible ?: boolean
417
+ pumpable ?: boolean
418
+ cluttered ?: boolean
419
+ height ?: number
420
+ wet ?: string
421
+
422
+ }
423
+ export interface ICrawlspaceinfloor{
424
+ floorid : ''
425
+ crawlspaceid : ''
426
+ }
427
+
413
428
  export interface IFloor extends IHouseobject{
414
429
  floortypeid ?: string
415
430
  floortype ?: IFloortype
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "index.d.ts",
5
- "version": "1.0.28",
5
+ "version": "1.0.29",
6
6
  "main": "index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"