@enyo-energy/energy-app-sdk 0.0.119 → 0.0.121
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/dist/cjs/types/enyo-data-bus-value.cjs +0 -2
- package/dist/cjs/types/enyo-data-bus-value.d.cts +2 -4
- package/dist/cjs/version.cjs +1 -1
- package/dist/cjs/version.d.cts +1 -1
- package/dist/types/enyo-data-bus-value.d.ts +2 -4
- package/dist/types/enyo-data-bus-value.js +0 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -106,8 +106,6 @@ var EnyoChargeModeEnum;
|
|
|
106
106
|
EnyoChargeModeEnum["CostOptimized"] = "cost-optimized";
|
|
107
107
|
/** Optimize charging schedule for a maximum price limit, for example 7 ct grid or pv production */
|
|
108
108
|
EnyoChargeModeEnum["PriceLimit"] = "price-limit";
|
|
109
|
-
/** Charge only from PV surplus, using excess solar production that would otherwise be fed into the grid */
|
|
110
|
-
EnyoChargeModeEnum["PvSurplus"] = "pv-surplus";
|
|
111
109
|
})(EnyoChargeModeEnum || (exports.EnyoChargeModeEnum = EnyoChargeModeEnum = {}));
|
|
112
110
|
var EnyoDataBusMessageEnum;
|
|
113
111
|
(function (EnyoDataBusMessageEnum) {
|
|
@@ -122,9 +122,7 @@ export declare enum EnyoChargeModeEnum {
|
|
|
122
122
|
/** Optimize charging schedule for lowest cost */
|
|
123
123
|
CostOptimized = "cost-optimized",
|
|
124
124
|
/** Optimize charging schedule for a maximum price limit, for example 7 ct grid or pv production */
|
|
125
|
-
PriceLimit = "price-limit"
|
|
126
|
-
/** Charge only from PV surplus, using excess solar production that would otherwise be fed into the grid */
|
|
127
|
-
PvSurplus = "pv-surplus"
|
|
125
|
+
PriceLimit = "price-limit"
|
|
128
126
|
}
|
|
129
127
|
export interface EnyoAggregatedStateApplianceValues {
|
|
130
128
|
gridPowerW?: number;
|
|
@@ -575,7 +573,7 @@ export interface EnyoDataBusStopChargeV1 extends EnyoDataBusMessage {
|
|
|
575
573
|
applianceId: string;
|
|
576
574
|
data: {
|
|
577
575
|
/** OCPP transaction identifier of the session to stop */
|
|
578
|
-
transactionId
|
|
576
|
+
transactionId?: string;
|
|
579
577
|
/** Optional reason why this command was issued */
|
|
580
578
|
reason?: EnyoDataBusCommandReason;
|
|
581
579
|
};
|
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.121';
|
|
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
|
@@ -122,9 +122,7 @@ export declare enum EnyoChargeModeEnum {
|
|
|
122
122
|
/** Optimize charging schedule for lowest cost */
|
|
123
123
|
CostOptimized = "cost-optimized",
|
|
124
124
|
/** Optimize charging schedule for a maximum price limit, for example 7 ct grid or pv production */
|
|
125
|
-
PriceLimit = "price-limit"
|
|
126
|
-
/** Charge only from PV surplus, using excess solar production that would otherwise be fed into the grid */
|
|
127
|
-
PvSurplus = "pv-surplus"
|
|
125
|
+
PriceLimit = "price-limit"
|
|
128
126
|
}
|
|
129
127
|
export interface EnyoAggregatedStateApplianceValues {
|
|
130
128
|
gridPowerW?: number;
|
|
@@ -575,7 +573,7 @@ export interface EnyoDataBusStopChargeV1 extends EnyoDataBusMessage {
|
|
|
575
573
|
applianceId: string;
|
|
576
574
|
data: {
|
|
577
575
|
/** OCPP transaction identifier of the session to stop */
|
|
578
|
-
transactionId
|
|
576
|
+
transactionId?: string;
|
|
579
577
|
/** Optional reason why this command was issued */
|
|
580
578
|
reason?: EnyoDataBusCommandReason;
|
|
581
579
|
};
|
|
@@ -103,8 +103,6 @@ export var EnyoChargeModeEnum;
|
|
|
103
103
|
EnyoChargeModeEnum["CostOptimized"] = "cost-optimized";
|
|
104
104
|
/** Optimize charging schedule for a maximum price limit, for example 7 ct grid or pv production */
|
|
105
105
|
EnyoChargeModeEnum["PriceLimit"] = "price-limit";
|
|
106
|
-
/** Charge only from PV surplus, using excess solar production that would otherwise be fed into the grid */
|
|
107
|
-
EnyoChargeModeEnum["PvSurplus"] = "pv-surplus";
|
|
108
106
|
})(EnyoChargeModeEnum || (EnyoChargeModeEnum = {}));
|
|
109
107
|
export var EnyoDataBusMessageEnum;
|
|
110
108
|
(function (EnyoDataBusMessageEnum) {
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED