@chargetrip/types 1.53.0 → 1.55.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 +33 -8
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +33 -8
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +457 -242
- package/graphql.schema.json +1977 -363
- package/package.json +1 -1
- package/src/graphql.ts +481 -242
|
@@ -99,7 +99,7 @@ export let BatteryInputType;
|
|
|
99
99
|
})(BatteryInputType || (BatteryInputType = {}));
|
|
100
100
|
|
|
101
101
|
export let CarConnectivityProvider;
|
|
102
|
-
/**
|
|
102
|
+
/** Consumption of the car. */
|
|
103
103
|
|
|
104
104
|
(function (CarConnectivityProvider) {
|
|
105
105
|
CarConnectivityProvider["ENODE"] = "Enode";
|
|
@@ -215,7 +215,7 @@ export let ConnectorPriceRestrictionsOverstayTimeUnit;
|
|
|
215
215
|
})(ConnectorPriceRestrictionsOverstayTimeUnit || (ConnectorPriceRestrictionsOverstayTimeUnit = {}));
|
|
216
216
|
|
|
217
217
|
export let ConnectorPriceRestrictionsReservationType;
|
|
218
|
-
/**
|
|
218
|
+
/** Socket or plug standard of the charging point. */
|
|
219
219
|
|
|
220
220
|
(function (ConnectorPriceRestrictionsReservationType) {
|
|
221
221
|
ConnectorPriceRestrictionsReservationType["RESERVATION"] = "reservation";
|
|
@@ -1039,17 +1039,41 @@ export let MultiPolygonType;
|
|
|
1039
1039
|
MultiPolygonType["MULTIPOLYGON"] = "MultiPolygon";
|
|
1040
1040
|
})(MultiPolygonType || (MultiPolygonType = {}));
|
|
1041
1041
|
|
|
1042
|
-
|
|
1042
|
+
export let NavigationChangeSource;
|
|
1043
|
+
|
|
1044
|
+
(function (NavigationChangeSource) {
|
|
1045
|
+
NavigationChangeSource["CLIENT"] = "client";
|
|
1046
|
+
NavigationChangeSource["SERVER"] = "server";
|
|
1047
|
+
})(NavigationChangeSource || (NavigationChangeSource = {}));
|
|
1048
|
+
|
|
1049
|
+
export let NavigationChangeType;
|
|
1050
|
+
/** Input for the navigation recalculate. */
|
|
1051
|
+
|
|
1052
|
+
(function (NavigationChangeType) {
|
|
1053
|
+
NavigationChangeType["STARTED"] = "started";
|
|
1054
|
+
NavigationChangeType["ROUTE_UPDATED"] = "route_updated";
|
|
1055
|
+
NavigationChangeType["NEXT_STATION_AVAILABILITY_UPDATED"] = "next_station_availability_updated";
|
|
1056
|
+
})(NavigationChangeType || (NavigationChangeType = {}));
|
|
1057
|
+
|
|
1058
|
+
/** Status of navigation session. */
|
|
1043
1059
|
export let NavigationStatus;
|
|
1044
|
-
/**
|
|
1060
|
+
/** Next stop details. Can be a charging or a location stop. */
|
|
1045
1061
|
|
|
1046
1062
|
(function (NavigationStatus) {
|
|
1047
|
-
NavigationStatus["
|
|
1048
|
-
NavigationStatus["CHARGING"] = "charging";
|
|
1063
|
+
NavigationStatus["ACTIVE"] = "active";
|
|
1049
1064
|
NavigationStatus["FINISHED"] = "finished";
|
|
1050
1065
|
NavigationStatus["ERROR"] = "error";
|
|
1051
1066
|
})(NavigationStatus || (NavigationStatus = {}));
|
|
1052
1067
|
|
|
1068
|
+
/** Status of navigation session vehicle. */
|
|
1069
|
+
export let NavigationVehicleStatus;
|
|
1070
|
+
|
|
1071
|
+
(function (NavigationVehicleStatus) {
|
|
1072
|
+
NavigationVehicleStatus["DRIVING"] = "driving";
|
|
1073
|
+
NavigationVehicleStatus["CHARGING"] = "charging";
|
|
1074
|
+
NavigationVehicleStatus["PARKED"] = "parked";
|
|
1075
|
+
})(NavigationVehicleStatus || (NavigationVehicleStatus = {}));
|
|
1076
|
+
|
|
1053
1077
|
/** The capabilities of an EVSE. */
|
|
1054
1078
|
export let OCPICapability;
|
|
1055
1079
|
/** The format of the connector, whether it is a socket or a plug. */
|
|
@@ -1071,7 +1095,7 @@ export let OCPICapability;
|
|
|
1071
1095
|
})(OCPICapability || (OCPICapability = {}));
|
|
1072
1096
|
|
|
1073
1097
|
export let OCPIConnectorFormat;
|
|
1074
|
-
/**
|
|
1098
|
+
/** Socket or plug standard of the charging point. */
|
|
1075
1099
|
|
|
1076
1100
|
(function (OCPIConnectorFormat) {
|
|
1077
1101
|
OCPIConnectorFormat["SOCKET"] = "SOCKET";
|
|
@@ -1648,6 +1672,7 @@ export let RouteWarningCode;
|
|
|
1648
1672
|
RouteWarningCode["LOW_SPEED"] = "low_speed";
|
|
1649
1673
|
RouteWarningCode["OPERATOR_PREFERENCES_NOT_FOUND"] = "operator_preferences_not_found";
|
|
1650
1674
|
RouteWarningCode["TRAFFIC_DATA_NOT_AVAILABLE"] = "traffic_data_not_available";
|
|
1675
|
+
RouteWarningCode["OPERATORS_IGNORED"] = "operators_ignored";
|
|
1651
1676
|
})(RouteWarningCode || (RouteWarningCode = {}));
|
|
1652
1677
|
|
|
1653
1678
|
export let SolarIrradianceUnit;
|
|
@@ -1681,7 +1706,7 @@ export let StateOfChargeUnit;
|
|
|
1681
1706
|
})(StateOfChargeUnit || (StateOfChargeUnit = {}));
|
|
1682
1707
|
|
|
1683
1708
|
export let StationAdhocAuthorisationPaymentMethod;
|
|
1684
|
-
/**
|
|
1709
|
+
/** Criteria to filter stations in the station around query. */
|
|
1685
1710
|
|
|
1686
1711
|
(function (StationAdhocAuthorisationPaymentMethod) {
|
|
1687
1712
|
StationAdhocAuthorisationPaymentMethod["AUTH_BY_CAR_PLUG_AND_CHARGE"] = "AUTH_BY_CAR_PLUG_AND_CHARGE";
|