@e-trias/woonplan 1.1.51 → 1.1.53
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 +11 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -364,6 +364,7 @@ export interface IMeasuredata{
|
|
|
364
364
|
savings ?: ISaving[]
|
|
365
365
|
|
|
366
366
|
measure ?: IMeasure
|
|
367
|
+
panels ?: number
|
|
367
368
|
}
|
|
368
369
|
|
|
369
370
|
export interface IGlasstype{
|
|
@@ -472,8 +473,10 @@ export interface ISettings {
|
|
|
472
473
|
automaticMothermodelAreaactionSource ?: string
|
|
473
474
|
surfaceCalculation ?: 1 | 0
|
|
474
475
|
solarpanelmodule ?: string
|
|
476
|
+
notAvailableMeasures ?: string
|
|
475
477
|
}
|
|
476
478
|
|
|
479
|
+
|
|
477
480
|
export interface IPerfectviewSettings {
|
|
478
481
|
ApiKey?: string
|
|
479
482
|
DatabaseId?: string
|
|
@@ -493,6 +496,14 @@ export interface IPerfectviewProject {
|
|
|
493
496
|
export interface IPackage {
|
|
494
497
|
id: string
|
|
495
498
|
name: string
|
|
499
|
+
packagemeasures ?: IPackageMeasure
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
export interface IPackageMeasure extends ILogged{
|
|
503
|
+
packageid ?: string
|
|
504
|
+
measureid ?: string
|
|
505
|
+
step ?: number
|
|
506
|
+
showinlist : boolean
|
|
496
507
|
}
|
|
497
508
|
|
|
498
509
|
export interface IPriceMargin {
|