@e-trias/woonplan 1.3.275 → 1.3.277
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 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -585,6 +585,8 @@ export interface IMeasuredata{
|
|
|
585
585
|
v2 ?: boolean
|
|
586
586
|
electricitycost ?: number
|
|
587
587
|
isde_amount ?: number
|
|
588
|
+
pvpackageid ?: string
|
|
589
|
+
pvpackage ?: IPVPackage
|
|
588
590
|
}
|
|
589
591
|
|
|
590
592
|
export interface IMaintenance{
|
|
@@ -1935,6 +1937,8 @@ export interface IInsulationtype extends IAbstractInsulation{
|
|
|
1935
1937
|
export interface IAppliedMeasure{
|
|
1936
1938
|
id ?: string
|
|
1937
1939
|
investment : number
|
|
1940
|
+
price_per_month ?: number
|
|
1941
|
+
installments ?: number
|
|
1938
1942
|
measureid ?: string
|
|
1939
1943
|
measuretype : string
|
|
1940
1944
|
name ?: string
|
|
@@ -2531,4 +2535,21 @@ export interface IBuilding{
|
|
|
2531
2535
|
apartmentorder ?: IBuildhouselevel[]
|
|
2532
2536
|
contacts : IContact[]
|
|
2533
2537
|
|
|
2534
|
-
}
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
|
|
2541
|
+
export interface IPVPackage{
|
|
2542
|
+
deleted ?: boolean
|
|
2543
|
+
id ?: string
|
|
2544
|
+
name ?: string
|
|
2545
|
+
sortorder ?: number
|
|
2546
|
+
measuredatas ?: IMeasuredata[]
|
|
2547
|
+
areaaction ?: IAreaaction
|
|
2548
|
+
areaactionid ?: string
|
|
2549
|
+
|
|
2550
|
+
minpanels ?: number
|
|
2551
|
+
maxpanels ?: number
|
|
2552
|
+
price_per_month ?: number
|
|
2553
|
+
installments ?: number
|
|
2554
|
+
investment ?: number
|
|
2555
|
+
}
|