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