@enyo-energy/energy-app-sdk 0.0.151 → 0.0.153
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.
|
@@ -253,6 +253,12 @@ export interface EnyoDataBusMeterValuesUpdateV1 extends EnyoDataBusMessage {
|
|
|
253
253
|
data: {
|
|
254
254
|
/** Power from Grid (in Watt), negative: grid feed in, positive: grid consumption*/
|
|
255
255
|
gridPowerW?: number;
|
|
256
|
+
/** Power on phase L1 (in Watt), negative: grid feed in, positive: grid consumption */
|
|
257
|
+
gridPowerPhase1W?: number;
|
|
258
|
+
/** Power on phase L2 (in Watt), negative: grid feed in, positive: grid consumption */
|
|
259
|
+
gridPowerPhase2W?: number;
|
|
260
|
+
/** Power on phase L3 (in Watt), negative: grid feed in, positive: grid consumption */
|
|
261
|
+
gridPowerPhase3W?: number;
|
|
256
262
|
/** Grid Feed in (in Watt hours) */
|
|
257
263
|
gridFeedInWh: number;
|
|
258
264
|
/** Grid Consumption in (in Watt hours) */
|
|
@@ -486,8 +492,20 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
|
|
|
486
492
|
message: EnyoDataBusMessageEnum.AggregatedStateUpdateV1;
|
|
487
493
|
clockId: string;
|
|
488
494
|
data: {
|
|
495
|
+
/**
|
|
496
|
+
* ID of the primary meter appliance whose readings the aggregated grid
|
|
497
|
+
* power values are derived from. Omitted when no primary meter is
|
|
498
|
+
* configured.
|
|
499
|
+
*/
|
|
500
|
+
primaryMeterApplianceId?: string;
|
|
489
501
|
/** Total grid power from all appliances (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
490
502
|
gridPowerW?: number;
|
|
503
|
+
/** Grid power on phase L1 (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
504
|
+
gridPowerPhase1W?: number;
|
|
505
|
+
/** Grid power on phase L2 (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
506
|
+
gridPowerPhase2W?: number;
|
|
507
|
+
/** Grid power on phase L3 (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
508
|
+
gridPowerPhase3W?: number;
|
|
491
509
|
gridConsumptionW?: number;
|
|
492
510
|
gridFeedInW?: number;
|
|
493
511
|
homeConsumptionW?: number;
|
package/dist/cjs/version.cjs
CHANGED
|
@@ -9,7 +9,7 @@ exports.getSdkVersion = getSdkVersion;
|
|
|
9
9
|
/**
|
|
10
10
|
* Current version of the enyo Energy App SDK.
|
|
11
11
|
*/
|
|
12
|
-
exports.SDK_VERSION = '0.0.
|
|
12
|
+
exports.SDK_VERSION = '0.0.153';
|
|
13
13
|
/**
|
|
14
14
|
* Gets the current SDK version.
|
|
15
15
|
* @returns The semantic version string of the SDK
|
package/dist/cjs/version.d.cts
CHANGED
|
@@ -253,6 +253,12 @@ export interface EnyoDataBusMeterValuesUpdateV1 extends EnyoDataBusMessage {
|
|
|
253
253
|
data: {
|
|
254
254
|
/** Power from Grid (in Watt), negative: grid feed in, positive: grid consumption*/
|
|
255
255
|
gridPowerW?: number;
|
|
256
|
+
/** Power on phase L1 (in Watt), negative: grid feed in, positive: grid consumption */
|
|
257
|
+
gridPowerPhase1W?: number;
|
|
258
|
+
/** Power on phase L2 (in Watt), negative: grid feed in, positive: grid consumption */
|
|
259
|
+
gridPowerPhase2W?: number;
|
|
260
|
+
/** Power on phase L3 (in Watt), negative: grid feed in, positive: grid consumption */
|
|
261
|
+
gridPowerPhase3W?: number;
|
|
256
262
|
/** Grid Feed in (in Watt hours) */
|
|
257
263
|
gridFeedInWh: number;
|
|
258
264
|
/** Grid Consumption in (in Watt hours) */
|
|
@@ -486,8 +492,20 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
|
|
|
486
492
|
message: EnyoDataBusMessageEnum.AggregatedStateUpdateV1;
|
|
487
493
|
clockId: string;
|
|
488
494
|
data: {
|
|
495
|
+
/**
|
|
496
|
+
* ID of the primary meter appliance whose readings the aggregated grid
|
|
497
|
+
* power values are derived from. Omitted when no primary meter is
|
|
498
|
+
* configured.
|
|
499
|
+
*/
|
|
500
|
+
primaryMeterApplianceId?: string;
|
|
489
501
|
/** Total grid power from all appliances (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
490
502
|
gridPowerW?: number;
|
|
503
|
+
/** Grid power on phase L1 (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
504
|
+
gridPowerPhase1W?: number;
|
|
505
|
+
/** Grid power on phase L2 (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
506
|
+
gridPowerPhase2W?: number;
|
|
507
|
+
/** Grid power on phase L3 (in Watt). Negative: grid feed in, positive: grid consumption */
|
|
508
|
+
gridPowerPhase3W?: number;
|
|
491
509
|
gridConsumptionW?: number;
|
|
492
510
|
gridFeedInW?: number;
|
|
493
511
|
homeConsumptionW?: number;
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED