energy-flow-control--types-and-enums 1.0.248 → 1.0.249
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 +6 -0
- package/src/index.js +7 -1
- package/src/types/index.d.ts +2 -0
package/package.json
CHANGED
package/src/enums/index.ts
CHANGED
package/src/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EnumIdentityProvider = exports.EnumExternalMaxPowerIsControllerType = exports.EnumTrippingCharacteristic = exports.EnumPhase = exports.EnumValueReadingSourceType = exports.EnumPriceComponent = exports.EnumNoSupplyReason = exports.EnumUserStatus = exports.EnumSolarForecastApi = exports.EnumAppValueCollectionName = exports.EnumRowSlots = exports.EnumBillingPeriodState = exports.EnumPricingModel = exports.EnumCarOemModel = exports.EnumCarOem = exports.EnumEventSeverity = exports.EnumEventSource = exports.EnumGeneratorSetType = exports.EnumEquipmentType = exports.TimeInterval = exports.EnumCameraModel = exports.EnumCustomerContractState = exports.EnumPvStringState = exports.EnumHttpProtocol = exports.EnumInvoiceTopic = exports.EnumBookingReason = exports.EnumInvoiceState = exports.EnumWallBoxState = exports.EnumTariffConsumptionType = exports.EnumThermometerModel = exports.EnumRemotelyControlledSwitchModel = exports.EnumEnergyMeterModel = exports.EnumProsumerEquipmentType = exports.EnumProsumerModel = exports.EnumProsumerType = exports.EnumEquipmentState = void 0;
|
|
3
|
+
exports.EnumTariffPlanState = exports.EnumIdentityProvider = exports.EnumExternalMaxPowerIsControllerType = exports.EnumTrippingCharacteristic = exports.EnumPhase = exports.EnumValueReadingSourceType = exports.EnumPriceComponent = exports.EnumNoSupplyReason = exports.EnumUserStatus = exports.EnumSolarForecastApi = exports.EnumAppValueCollectionName = exports.EnumRowSlots = exports.EnumBillingPeriodState = exports.EnumPricingModel = exports.EnumCarOemModel = exports.EnumCarOem = exports.EnumEventSeverity = exports.EnumEventSource = exports.EnumGeneratorSetType = exports.EnumEquipmentType = exports.TimeInterval = exports.EnumCameraModel = exports.EnumCustomerContractState = exports.EnumPvStringState = exports.EnumHttpProtocol = exports.EnumInvoiceTopic = exports.EnumBookingReason = exports.EnumInvoiceState = exports.EnumWallBoxState = exports.EnumTariffConsumptionType = exports.EnumThermometerModel = exports.EnumRemotelyControlledSwitchModel = exports.EnumEnergyMeterModel = exports.EnumProsumerEquipmentType = exports.EnumProsumerModel = exports.EnumProsumerType = exports.EnumEquipmentState = void 0;
|
|
4
4
|
var EnumEquipmentState;
|
|
5
5
|
(function (EnumEquipmentState) {
|
|
6
6
|
EnumEquipmentState["ON"] = "ON";
|
|
@@ -231,3 +231,9 @@ var EnumIdentityProvider;
|
|
|
231
231
|
EnumIdentityProvider["GOOGLE"] = "GOOGLE";
|
|
232
232
|
EnumIdentityProvider["MICROSOFT"] = "MICROSOFT";
|
|
233
233
|
})(EnumIdentityProvider || (exports.EnumIdentityProvider = EnumIdentityProvider = {}));
|
|
234
|
+
var EnumTariffPlanState;
|
|
235
|
+
(function (EnumTariffPlanState) {
|
|
236
|
+
EnumTariffPlanState["DRAFT"] = "DRAFT";
|
|
237
|
+
EnumTariffPlanState["USABLE"] = "USABLE";
|
|
238
|
+
EnumTariffPlanState["DEPRECATED"] = "DEPRECATED";
|
|
239
|
+
})(EnumTariffPlanState || (exports.EnumTariffPlanState = EnumTariffPlanState = {}));
|
package/src/types/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
EnumRowSlots,
|
|
25
25
|
EnumSolarForecastApi,
|
|
26
26
|
EnumTariffConsumptionType,
|
|
27
|
+
EnumTariffPlanState,
|
|
27
28
|
EnumThermometerModel,
|
|
28
29
|
EnumUserStatus,
|
|
29
30
|
EnumValueReadingSourceType,
|
|
@@ -111,6 +112,7 @@ export interface ITariffPlanPrice extends ITimeTravelProps {
|
|
|
111
112
|
|
|
112
113
|
export interface ITariffPlan extends ITimeTravelProps {
|
|
113
114
|
name: string
|
|
115
|
+
state: EnumTariffPlanState
|
|
114
116
|
startsAt: Date | null
|
|
115
117
|
endsAt: Date | null
|
|
116
118
|
|