energy-flow-control--types-and-enums 1.0.211 → 1.0.212
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 +7 -3
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -153,13 +153,17 @@ export interface IBatteryData {
|
|
|
153
153
|
export interface ILiveDataGeneratorSet {
|
|
154
154
|
id: number
|
|
155
155
|
state: EnumEquipmentState
|
|
156
|
-
|
|
156
|
+
acPower: {
|
|
157
157
|
supplyInW: number
|
|
158
158
|
consumptionInW: number
|
|
159
159
|
}
|
|
160
|
+
dcPower: {
|
|
161
|
+
stringInW: ( number | null )[]
|
|
162
|
+
}
|
|
160
163
|
battery: IBatteryData | null
|
|
161
|
-
|
|
162
|
-
|
|
164
|
+
yieldsInKwh: {
|
|
165
|
+
today: number
|
|
166
|
+
}
|
|
163
167
|
}
|
|
164
168
|
|
|
165
169
|
export interface ILiveDataEnergyMeter {
|