@e-trias/woonplan 1.3.276 → 1.3.278

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 +21 -1
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.276",
5
+ "version": "1.3.278",
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
@@ -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{
@@ -851,6 +853,7 @@ export interface ISettings {
851
853
  quotationrequestsenabled ?: '1' | '0'
852
854
  forcedGasgreeoption ?: string
853
855
  defaultWarmwaterSource ?: 'gas' | 'electric'
856
+ solarapikey ?: string
854
857
  }
855
858
 
856
859
  export interface IColors {
@@ -2533,4 +2536,21 @@ export interface IBuilding{
2533
2536
  apartmentorder ?: IBuildhouselevel[]
2534
2537
  contacts : IContact[]
2535
2538
 
2536
- }
2539
+ }
2540
+
2541
+
2542
+ export interface IPVPackage{
2543
+ deleted ?: boolean
2544
+ id ?: string
2545
+ name ?: string
2546
+ sortorder ?: number
2547
+ measuredatas ?: IMeasuredata[]
2548
+ areaaction ?: IAreaaction
2549
+ areaactionid ?: string
2550
+
2551
+ minpanels ?: number
2552
+ maxpanels ?: number
2553
+ price_per_month ?: number
2554
+ installments ?: number
2555
+ investment ?: number
2556
+ }