@e-trias/woonplan 1.3.322 → 1.3.324

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 +22 -8
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.3.322",
5
+ "version": "1.3.324",
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
@@ -2546,15 +2546,28 @@ export interface ApartmentDistribution{
2546
2546
  key ?: number
2547
2547
  }
2548
2548
 
2549
+ export interface ICustomAdviceInsulation{
2550
+ houseobjectid : string
2551
+ measuredataid ?: string
2552
+ blocked ?: boolean
2553
+ }
2554
+ export interface ICustomAdviceMeasure{
2555
+ measuredataid ?: string
2556
+ blocked ?: boolean
2557
+ }
2558
+
2559
+ export interface ICustomAdviceGasfree{
2560
+ gasfreeoptionid ?: string
2561
+ measuredataid ?: string
2562
+ blocked ?: boolean
2563
+ }
2564
+
2549
2565
  export interface ICustomBlockedAdviceCombination{
2550
- insulation : {
2551
- houseobjectid : string
2552
- measuredataid ?: string
2553
- }[]
2554
- draft ?: string | undefined
2555
- ventilation ?: string | undefined
2556
- gasfreeoption ?: string | undefined
2557
- solar ?: string
2566
+ insulation : ICustomAdviceInsulation[]
2567
+ draft ?: ICustomAdviceMeasure
2568
+ ventilation ?: ICustomAdviceMeasure
2569
+ gasfreeoption ?: ICustomAdviceGasfree
2570
+ solar ?: ICustomAdviceMeasure
2558
2571
  years ?: number
2559
2572
  loans : IPreferredFinancingOption[]
2560
2573
  }
@@ -2581,6 +2594,7 @@ export interface IBuildingSettings{
2581
2594
  }[]
2582
2595
  blockedadvice ?: ICustomBlockedAdviceCombination
2583
2596
  buildinghouselevels : IBuildingHouselevel[]
2597
+ blockedmeasures : string[]
2584
2598
  }
2585
2599
 
2586
2600