@e-trias/woonplan 1.3.323 → 1.3.325
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 +22 -8
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -594,6 +594,7 @@ export interface IMeasuredata{
|
|
|
594
594
|
pvpackageid ?: string
|
|
595
595
|
pvpackage ?: IPVPackage
|
|
596
596
|
collective?:boolean
|
|
597
|
+
buildingid ?: string
|
|
597
598
|
}
|
|
598
599
|
|
|
599
600
|
export interface IMaintenance{
|
|
@@ -2546,15 +2547,28 @@ export interface ApartmentDistribution{
|
|
|
2546
2547
|
key ?: number
|
|
2547
2548
|
}
|
|
2548
2549
|
|
|
2550
|
+
export interface ICustomAdviceInsulation{
|
|
2551
|
+
houseobjectid : string
|
|
2552
|
+
measuredataid ?: string
|
|
2553
|
+
blocked ?: boolean
|
|
2554
|
+
}
|
|
2555
|
+
export interface ICustomAdviceMeasure{
|
|
2556
|
+
measuredataid ?: string
|
|
2557
|
+
blocked ?: boolean
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
export interface ICustomAdviceGasfree{
|
|
2561
|
+
gasfreeoptionid ?: string
|
|
2562
|
+
measuredataid ?: string
|
|
2563
|
+
blocked ?: boolean
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2549
2566
|
export interface ICustomBlockedAdviceCombination{
|
|
2550
|
-
insulation :
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
ventilation ?: string | undefined
|
|
2556
|
-
gasfreeoption ?: string | undefined
|
|
2557
|
-
solar ?: string
|
|
2567
|
+
insulation : ICustomAdviceInsulation[]
|
|
2568
|
+
draft ?: ICustomAdviceMeasure
|
|
2569
|
+
ventilation ?: ICustomAdviceMeasure
|
|
2570
|
+
gasfreeoption ?: ICustomAdviceGasfree
|
|
2571
|
+
solar ?: ICustomAdviceMeasure
|
|
2558
2572
|
years ?: number
|
|
2559
2573
|
loans : IPreferredFinancingOption[]
|
|
2560
2574
|
}
|