energy-flow-control--types-and-enums 1.0.242 → 1.0.244
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/package.json +1 -1
- package/src/enums/index.ts +2 -1
- package/src/index.js +2 -1
package/package.json
CHANGED
package/src/enums/index.ts
CHANGED
|
@@ -174,7 +174,6 @@ export enum EnumAppValueCollectionName {
|
|
|
174
174
|
SITE_ADDRESS = 'SITE_ADDRESS',
|
|
175
175
|
SITE_OWNER = 'SITE_OWNER',
|
|
176
176
|
MAX_GRID_POWER = 'MAX_GRID_POWER',
|
|
177
|
-
EXTERNAL_ADDRESS = 'EXTERNAL_ADDRESS',
|
|
178
177
|
}
|
|
179
178
|
|
|
180
179
|
export enum EnumSolarForecastApi {
|
|
@@ -226,5 +225,7 @@ export enum EnumExternalMaxPowerIsControllerType {
|
|
|
226
225
|
}
|
|
227
226
|
|
|
228
227
|
export enum EnumIdentityProvider {
|
|
228
|
+
AMAZON = 'AMAZON',
|
|
229
229
|
GOOGLE = 'GOOGLE',
|
|
230
|
+
MICROSOFT = 'MICROSOFT',
|
|
230
231
|
}
|
package/src/index.js
CHANGED
|
@@ -176,7 +176,6 @@ var EnumAppValueCollectionName;
|
|
|
176
176
|
EnumAppValueCollectionName["SITE_ADDRESS"] = "SITE_ADDRESS";
|
|
177
177
|
EnumAppValueCollectionName["SITE_OWNER"] = "SITE_OWNER";
|
|
178
178
|
EnumAppValueCollectionName["MAX_GRID_POWER"] = "MAX_GRID_POWER";
|
|
179
|
-
EnumAppValueCollectionName["EXTERNAL_ADDRESS"] = "EXTERNAL_ADDRESS";
|
|
180
179
|
})(EnumAppValueCollectionName || (exports.EnumAppValueCollectionName = EnumAppValueCollectionName = {}));
|
|
181
180
|
var EnumSolarForecastApi;
|
|
182
181
|
(function (EnumSolarForecastApi) {
|
|
@@ -228,5 +227,7 @@ var EnumExternalMaxPowerIsControllerType;
|
|
|
228
227
|
})(EnumExternalMaxPowerIsControllerType || (exports.EnumExternalMaxPowerIsControllerType = EnumExternalMaxPowerIsControllerType = {}));
|
|
229
228
|
var EnumIdentityProvider;
|
|
230
229
|
(function (EnumIdentityProvider) {
|
|
230
|
+
EnumIdentityProvider["AMAZON"] = "AMAZON";
|
|
231
231
|
EnumIdentityProvider["GOOGLE"] = "GOOGLE";
|
|
232
|
+
EnumIdentityProvider["MICROSOFT"] = "MICROSOFT";
|
|
232
233
|
})(EnumIdentityProvider || (exports.EnumIdentityProvider = EnumIdentityProvider = {}));
|