@e-trias/woonplan 1.2.55 → 1.2.57
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 +8 -6
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -388,6 +388,7 @@ export interface IMeasuredata{
|
|
|
388
388
|
partnerid ?: string
|
|
389
389
|
v2 ?: boolean
|
|
390
390
|
electricitycost ?: number
|
|
391
|
+
isde_amount ?: number
|
|
391
392
|
}
|
|
392
393
|
|
|
393
394
|
export interface IMaintenance{
|
|
@@ -1343,14 +1344,15 @@ export interface ICustomAdviceCombination{
|
|
|
1343
1344
|
gasfree : string | null | undefined
|
|
1344
1345
|
}
|
|
1345
1346
|
years ?: number
|
|
1346
|
-
loans ?:
|
|
1347
|
-
name : string
|
|
1348
|
-
amount : number
|
|
1349
|
-
interest : number
|
|
1350
|
-
years : number
|
|
1351
|
-
}[]
|
|
1347
|
+
loans ?: IPreferredFinancingOption[]
|
|
1352
1348
|
}
|
|
1353
1349
|
|
|
1350
|
+
export interface IPreferredFinancingOption{
|
|
1351
|
+
name : string
|
|
1352
|
+
amount : number
|
|
1353
|
+
interest : number
|
|
1354
|
+
years : number
|
|
1355
|
+
}
|
|
1354
1356
|
|
|
1355
1357
|
|
|
1356
1358
|
|