@enyo-energy/energy-app-sdk 0.0.72 → 0.0.73

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.
@@ -14,6 +14,7 @@ var EnergyAppPackageCategory;
14
14
  EnergyAppPackageCategory["ClimateControl"] = "climate-control";
15
15
  EnergyAppPackageCategory["DynamicElectricityTariff"] = "dynamic-electricity-tariff";
16
16
  EnergyAppPackageCategory["StaticElectricityTariff"] = "static-electricity-tariff";
17
+ EnergyAppPackageCategory["TemperatureSensor"] = "temperature-sensor";
17
18
  EnergyAppPackageCategory["Other"] = "other";
18
19
  })(EnergyAppPackageCategory || (exports.EnergyAppPackageCategory = EnergyAppPackageCategory = {}));
19
20
  /**
@@ -10,6 +10,7 @@ export declare enum EnergyAppPackageCategory {
10
10
  ClimateControl = "climate-control",
11
11
  DynamicElectricityTariff = "dynamic-electricity-tariff",
12
12
  StaticElectricityTariff = "static-electricity-tariff",
13
+ TemperatureSensor = "temperature-sensor",
13
14
  Other = "other"
14
15
  }
15
16
  /**
@@ -364,10 +364,10 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
364
364
  totalGridFeedInWh?: number;
365
365
  /** Total grid consumption from all appliances (in Watt hours) */
366
366
  totalGridConsumptionWh?: number;
367
- /** Total self consumption from all appliances (in Watt) */
368
- totalSelfConsumptionW?: number;
369
- /** Total self consumed energy from all appliances (in Watt hours) */
370
- totalSelfConsumptionWh?: number;
367
+ /** Total Home consumption from all appliances (in Watt) */
368
+ totalHomeConsumptionW?: number;
369
+ /** Total Home consumed energy from all appliances (in Watt hours) */
370
+ totalHomeConsumptionWh?: number;
371
371
  /** Total battery power from all appliances (in Watt). Positive = consumption, negative = charging */
372
372
  totalBatteryPowerW?: number;
373
373
  /** Total PV production from all appliances (in Watt) */
@@ -382,6 +382,8 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
382
382
  totalHeatGenerationHeatingWh?: number;
383
383
  /** Total heat generation for domestic hot water from all appliances (in Watt hours) */
384
384
  totalHeatGenerationDomesticHotWaterWh?: number;
385
+ autarkyPercentage?: number;
386
+ resolution: '1min' | '15min';
385
387
  /** Array of all appliances with their individual values and current state */
386
388
  appliances: Array<{
387
389
  /** ID of the appliance */
@@ -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.72';
12
+ exports.SDK_VERSION = '0.0.73';
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.72";
8
+ export declare const SDK_VERSION = "0.0.73";
9
9
  /**
10
10
  * Gets the current SDK version.
11
11
  * @returns The semantic version string of the SDK
@@ -10,6 +10,7 @@ export declare enum EnergyAppPackageCategory {
10
10
  ClimateControl = "climate-control",
11
11
  DynamicElectricityTariff = "dynamic-electricity-tariff",
12
12
  StaticElectricityTariff = "static-electricity-tariff",
13
+ TemperatureSensor = "temperature-sensor",
13
14
  Other = "other"
14
15
  }
15
16
  /**
@@ -10,6 +10,7 @@ export var EnergyAppPackageCategory;
10
10
  EnergyAppPackageCategory["ClimateControl"] = "climate-control";
11
11
  EnergyAppPackageCategory["DynamicElectricityTariff"] = "dynamic-electricity-tariff";
12
12
  EnergyAppPackageCategory["StaticElectricityTariff"] = "static-electricity-tariff";
13
+ EnergyAppPackageCategory["TemperatureSensor"] = "temperature-sensor";
13
14
  EnergyAppPackageCategory["Other"] = "other";
14
15
  })(EnergyAppPackageCategory || (EnergyAppPackageCategory = {}));
15
16
  /**
@@ -364,10 +364,10 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
364
364
  totalGridFeedInWh?: number;
365
365
  /** Total grid consumption from all appliances (in Watt hours) */
366
366
  totalGridConsumptionWh?: number;
367
- /** Total self consumption from all appliances (in Watt) */
368
- totalSelfConsumptionW?: number;
369
- /** Total self consumed energy from all appliances (in Watt hours) */
370
- totalSelfConsumptionWh?: number;
367
+ /** Total Home consumption from all appliances (in Watt) */
368
+ totalHomeConsumptionW?: number;
369
+ /** Total Home consumed energy from all appliances (in Watt hours) */
370
+ totalHomeConsumptionWh?: number;
371
371
  /** Total battery power from all appliances (in Watt). Positive = consumption, negative = charging */
372
372
  totalBatteryPowerW?: number;
373
373
  /** Total PV production from all appliances (in Watt) */
@@ -382,6 +382,8 @@ export interface EnyoDataBusAggregatedStateValuesV1 extends EnyoDataBusMessage {
382
382
  totalHeatGenerationHeatingWh?: number;
383
383
  /** Total heat generation for domestic hot water from all appliances (in Watt hours) */
384
384
  totalHeatGenerationDomesticHotWaterWh?: number;
385
+ autarkyPercentage?: number;
386
+ resolution: '1min' | '15min';
385
387
  /** Array of all appliances with their individual values and current state */
386
388
  appliances: Array<{
387
389
  /** ID of the appliance */
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.72";
8
+ export declare const SDK_VERSION = "0.0.73";
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.72';
8
+ export const SDK_VERSION = '0.0.73';
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.72",
3
+ "version": "0.0.73",
4
4
  "description": "enyo Energy App SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",