@chargetrip/types 1.48.0 → 1.50.0
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/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +10 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +10 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +47 -0
- package/graphql.schema.json +291 -1
- package/package.json +1 -1
- package/src/graphql.ts +53 -0
|
@@ -142,6 +142,15 @@ export let ChargingBehaviourCode;
|
|
|
142
142
|
ChargingBehaviourCode["OFFICE_CHARGING"] = "OFFICE_CHARGING";
|
|
143
143
|
})(ChargingBehaviourCode || (ChargingBehaviourCode = {}));
|
|
144
144
|
|
|
145
|
+
export let CongestionLevel;
|
|
146
|
+
|
|
147
|
+
(function (CongestionLevel) {
|
|
148
|
+
CongestionLevel["UNKNOWN"] = "unknown";
|
|
149
|
+
CongestionLevel["LOW"] = "low";
|
|
150
|
+
CongestionLevel["MEDIUM"] = "medium";
|
|
151
|
+
CongestionLevel["HIGH"] = "high";
|
|
152
|
+
})(CongestionLevel || (CongestionLevel = {}));
|
|
153
|
+
|
|
145
154
|
export let ConnectProvider;
|
|
146
155
|
|
|
147
156
|
(function (ConnectProvider) {
|
|
@@ -1553,6 +1562,7 @@ export let RouteOperationalElectricityClimate;
|
|
|
1553
1562
|
export let RouteOperationalElectricityEnergySourceModel;
|
|
1554
1563
|
|
|
1555
1564
|
(function (RouteOperationalElectricityEnergySourceModel) {
|
|
1565
|
+
RouteOperationalElectricityEnergySourceModel["OCPI_STATION_ENERGY_MIX"] = "ocpi_station_energy_mix";
|
|
1556
1566
|
RouteOperationalElectricityEnergySourceModel["GRID_MONTHLY_AVERAGE"] = "grid_monthly_average";
|
|
1557
1567
|
RouteOperationalElectricityEnergySourceModel["GRID_HOURLY_AVERAGE"] = "grid_hourly_average";
|
|
1558
1568
|
RouteOperationalElectricityEnergySourceModel["GRID_DEMAND_BASED_MONTHLY_AVERAGE"] = "grid_demand_based_monthly_average";
|