@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
package/dist/node/index.js
CHANGED
|
@@ -146,6 +146,15 @@ exports.ChargingBehaviourCode = void 0;
|
|
|
146
146
|
ChargingBehaviourCode["OFFICE_CHARGING"] = "OFFICE_CHARGING";
|
|
147
147
|
})(exports.ChargingBehaviourCode || (exports.ChargingBehaviourCode = {}));
|
|
148
148
|
|
|
149
|
+
exports.CongestionLevel = void 0;
|
|
150
|
+
|
|
151
|
+
(function (CongestionLevel) {
|
|
152
|
+
CongestionLevel["UNKNOWN"] = "unknown";
|
|
153
|
+
CongestionLevel["LOW"] = "low";
|
|
154
|
+
CongestionLevel["MEDIUM"] = "medium";
|
|
155
|
+
CongestionLevel["HIGH"] = "high";
|
|
156
|
+
})(exports.CongestionLevel || (exports.CongestionLevel = {}));
|
|
157
|
+
|
|
149
158
|
exports.ConnectProvider = void 0;
|
|
150
159
|
|
|
151
160
|
(function (ConnectProvider) {
|
|
@@ -1557,6 +1566,7 @@ exports.RouteOperationalElectricityClimate = void 0;
|
|
|
1557
1566
|
exports.RouteOperationalElectricityEnergySourceModel = void 0;
|
|
1558
1567
|
|
|
1559
1568
|
(function (RouteOperationalElectricityEnergySourceModel) {
|
|
1569
|
+
RouteOperationalElectricityEnergySourceModel["OCPI_STATION_ENERGY_MIX"] = "ocpi_station_energy_mix";
|
|
1560
1570
|
RouteOperationalElectricityEnergySourceModel["GRID_MONTHLY_AVERAGE"] = "grid_monthly_average";
|
|
1561
1571
|
RouteOperationalElectricityEnergySourceModel["GRID_HOURLY_AVERAGE"] = "grid_hourly_average";
|
|
1562
1572
|
RouteOperationalElectricityEnergySourceModel["GRID_DEMAND_BASED_MONTHLY_AVERAGE"] = "grid_demand_based_monthly_average";
|