@enyo-energy/energy-app-sdk 0.0.114 → 0.0.115
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EnyoChargeModeEnum } from "./enyo-data-bus-value.cjs";
|
|
1
2
|
/**
|
|
2
3
|
* Status of a charging session
|
|
3
4
|
*/
|
|
@@ -65,6 +66,10 @@ export interface EnyoCharge {
|
|
|
65
66
|
numberOfPhases: number;
|
|
66
67
|
/** Active charging schedule entries, if smart charging is in use */
|
|
67
68
|
schedule?: EnyoChargeScheduleEntry[];
|
|
69
|
+
/** Charging mode applied to this session (e.g. immediate, cost-optimized, price-limit) */
|
|
70
|
+
chargeMode?: EnyoChargeModeEnum;
|
|
71
|
+
/** Target completion time for the charging session as an ISO 8601 timestamp */
|
|
72
|
+
completeAtIsoTimestamp?: string;
|
|
68
73
|
}
|
|
69
74
|
/**
|
|
70
75
|
* Represents a single entry in a charging schedule.
|
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.115';
|
|
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
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EnyoChargeModeEnum } from "./enyo-data-bus-value.js";
|
|
1
2
|
/**
|
|
2
3
|
* Status of a charging session
|
|
3
4
|
*/
|
|
@@ -65,6 +66,10 @@ export interface EnyoCharge {
|
|
|
65
66
|
numberOfPhases: number;
|
|
66
67
|
/** Active charging schedule entries, if smart charging is in use */
|
|
67
68
|
schedule?: EnyoChargeScheduleEntry[];
|
|
69
|
+
/** Charging mode applied to this session (e.g. immediate, cost-optimized, price-limit) */
|
|
70
|
+
chargeMode?: EnyoChargeModeEnum;
|
|
71
|
+
/** Target completion time for the charging session as an ISO 8601 timestamp */
|
|
72
|
+
completeAtIsoTimestamp?: string;
|
|
68
73
|
}
|
|
69
74
|
/**
|
|
70
75
|
* Represents a single entry in a charging schedule.
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED