energy-flow-control--types-and-enums 1.0.226 → 1.0.228
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/src/types/index.d.ts +5 -1
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -168,7 +168,10 @@ export interface ILiveDataGeneratorSet {
|
|
|
168
168
|
yieldsInKwh: {
|
|
169
169
|
today: number
|
|
170
170
|
}
|
|
171
|
-
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface ILiveLoadData {
|
|
174
|
+
totalLoadInW: number
|
|
172
175
|
totalUncontrollableLoadInW: number
|
|
173
176
|
}
|
|
174
177
|
|
|
@@ -542,6 +545,7 @@ export interface IBillingPeriod extends ITimeTravelProps {
|
|
|
542
545
|
export interface IConfigParam {
|
|
543
546
|
name: string
|
|
544
547
|
dataType: 'string' | 'integer' | 'float' | 'boolean' | 'password' | 'geoPoint'
|
|
548
|
+
defaultValue?: any
|
|
545
549
|
label: string
|
|
546
550
|
rules: {
|
|
547
551
|
required?: boolean
|