@enyo-energy/energy-app-sdk 0.0.152 → 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.
@@ -492,8 +492,20 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
492
492
  message: EnyoDataBusMessageEnum.AggregatedStateUpdateV1;
493
493
  clockId: string;
494
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;
495
501
  /** Total grid power from all appliances (in Watt). Negative: grid feed in, positive: grid consumption */
496
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;
497
509
  gridConsumptionW?: number;
498
510
  gridFeedInW?: number;
499
511
  homeConsumptionW?: number;
@@ -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.152';
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
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * Current version of the enyo Energy App SDK.
7
7
  */
8
- export declare const SDK_VERSION = "0.0.152";
8
+ export declare const SDK_VERSION = "0.0.153";
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
@@ -492,8 +492,20 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
492
492
  message: EnyoDataBusMessageEnum.AggregatedStateUpdateV1;
493
493
  clockId: string;
494
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;
495
501
  /** Total grid power from all appliances (in Watt). Negative: grid feed in, positive: grid consumption */
496
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;
497
509
  gridConsumptionW?: number;
498
510
  gridFeedInW?: number;
499
511
  homeConsumptionW?: number;
package/dist/version.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * Current version of the enyo Energy App SDK.
7
7
  */
8
- export declare const SDK_VERSION = "0.0.152";
8
+ export declare const SDK_VERSION = "0.0.153";
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
package/dist/version.js CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * Current version of the enyo Energy App SDK.
7
7
  */
8
- export const SDK_VERSION = '0.0.152';
8
+ export const SDK_VERSION = '0.0.153';
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enyo-energy/energy-app-sdk",
3
- "version": "0.0.152",
3
+ "version": "0.0.153",
4
4
  "description": "enyo Energy App SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",