@chargetrip/types 1.47.1 → 1.47.2
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 +30 -33
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +30 -33
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +297 -144
- package/graphql.schema.json +1456 -471
- package/package.json +2 -2
- package/src/graphql.ts +321 -151
- package/CHANGELOG.md +0 -412
package/dist/node/index.js
CHANGED
|
@@ -255,6 +255,8 @@ exports.ConnectorType = void 0;
|
|
|
255
255
|
ConnectorType["NEMA_10_50"] = "NEMA_10_50";
|
|
256
256
|
ConnectorType["NEMA_14_30"] = "NEMA_14_30";
|
|
257
257
|
ConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
258
|
+
ConnectorType["GBT_AC"] = "GBT_AC";
|
|
259
|
+
ConnectorType["GBT_DC"] = "GBT_DC";
|
|
258
260
|
})(exports.ConnectorType || (exports.ConnectorType = {}));
|
|
259
261
|
|
|
260
262
|
exports.ConsumptionUnit = void 0;
|
|
@@ -960,7 +962,6 @@ exports.HeavyVehiclesEUType = void 0;
|
|
|
960
962
|
})(exports.HeavyVehiclesEUType || (exports.HeavyVehiclesEUType = {}));
|
|
961
963
|
|
|
962
964
|
exports.HeavyVehiclesFacility = void 0;
|
|
963
|
-
/** Navigation service providers available */
|
|
964
965
|
|
|
965
966
|
(function (HeavyVehiclesFacility) {
|
|
966
967
|
HeavyVehiclesFacility["TRUCK_PARKING"] = "TRUCK_PARKING";
|
|
@@ -970,13 +971,6 @@ exports.HeavyVehiclesFacility = void 0;
|
|
|
970
971
|
HeavyVehiclesFacility["SECURE_TRUCK_PARKING"] = "SECURE_TRUCK_PARKING";
|
|
971
972
|
})(exports.HeavyVehiclesFacility || (exports.HeavyVehiclesFacility = {}));
|
|
972
973
|
|
|
973
|
-
exports.InstructionsFormat = void 0;
|
|
974
|
-
|
|
975
|
-
(function (InstructionsFormat) {
|
|
976
|
-
InstructionsFormat["CHARGETRIP"] = "Chargetrip";
|
|
977
|
-
InstructionsFormat["MAPBOXV5"] = "MapboxV5";
|
|
978
|
-
})(exports.InstructionsFormat || (exports.InstructionsFormat = {}));
|
|
979
|
-
|
|
980
974
|
exports.IsolineFerryConnectionsType = void 0;
|
|
981
975
|
|
|
982
976
|
(function (IsolineFerryConnectionsType) {
|
|
@@ -1016,26 +1010,11 @@ exports.LegType = void 0;
|
|
|
1016
1010
|
|
|
1017
1011
|
/** GeoJSON LineString type. */
|
|
1018
1012
|
exports.LineStringType = void 0;
|
|
1019
|
-
/** Preferred language for the mapping */
|
|
1020
1013
|
|
|
1021
1014
|
(function (LineStringType) {
|
|
1022
1015
|
LineStringType["LINESTRING"] = "LineString";
|
|
1023
1016
|
})(exports.LineStringType || (exports.LineStringType = {}));
|
|
1024
1017
|
|
|
1025
|
-
exports.MappingLanguage = void 0;
|
|
1026
|
-
/** Navigation service providers available */
|
|
1027
|
-
|
|
1028
|
-
(function (MappingLanguage) {
|
|
1029
|
-
MappingLanguage["EN"] = "en";
|
|
1030
|
-
})(exports.MappingLanguage || (exports.MappingLanguage = {}));
|
|
1031
|
-
|
|
1032
|
-
exports.MappingProvider = void 0;
|
|
1033
|
-
|
|
1034
|
-
(function (MappingProvider) {
|
|
1035
|
-
MappingProvider["CHARGETRIP"] = "Chargetrip";
|
|
1036
|
-
MappingProvider["MAPBOXV5"] = "MapboxV5";
|
|
1037
|
-
})(exports.MappingProvider || (exports.MappingProvider = {}));
|
|
1038
|
-
|
|
1039
1018
|
exports.MeasurementUnit = void 0;
|
|
1040
1019
|
/** A GeoJSON Polygon. */
|
|
1041
1020
|
|
|
@@ -1051,16 +1030,16 @@ exports.MultiPolygonType = void 0;
|
|
|
1051
1030
|
MultiPolygonType["MULTIPOLYGON"] = "MultiPolygon";
|
|
1052
1031
|
})(exports.MultiPolygonType || (exports.MultiPolygonType = {}));
|
|
1053
1032
|
|
|
1054
|
-
/** State of navigation session */
|
|
1055
|
-
exports.
|
|
1056
|
-
/**
|
|
1033
|
+
/** State of navigation session. */
|
|
1034
|
+
exports.NavigationStatus = void 0;
|
|
1035
|
+
/** The navigation session subscription data */
|
|
1057
1036
|
|
|
1058
|
-
(function (
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
})(exports.
|
|
1037
|
+
(function (NavigationStatus) {
|
|
1038
|
+
NavigationStatus["DRIVING"] = "driving";
|
|
1039
|
+
NavigationStatus["CHARGING"] = "charging";
|
|
1040
|
+
NavigationStatus["FINISHED"] = "finished";
|
|
1041
|
+
NavigationStatus["ERROR"] = "error";
|
|
1042
|
+
})(exports.NavigationStatus || (exports.NavigationStatus = {}));
|
|
1064
1043
|
|
|
1065
1044
|
/** The capabilities of an EVSE. */
|
|
1066
1045
|
exports.OCPICapability = void 0;
|
|
@@ -1132,6 +1111,8 @@ exports.OCPIConnectorType = void 0;
|
|
|
1132
1111
|
OCPIConnectorType["NEMA_10_50"] = "NEMA_10_50";
|
|
1133
1112
|
OCPIConnectorType["NEMA_14_30"] = "NEMA_14_30";
|
|
1134
1113
|
OCPIConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
1114
|
+
OCPIConnectorType["GBT_AC"] = "GBT_AC";
|
|
1115
|
+
OCPIConnectorType["GBT_DC"] = "GBT_DC";
|
|
1135
1116
|
})(exports.OCPIConnectorType || (exports.OCPIConnectorType = {}));
|
|
1136
1117
|
|
|
1137
1118
|
exports.OCPIDayOfWeek = void 0;
|
|
@@ -1333,7 +1314,16 @@ exports.OICPValueAddedServices = void 0;
|
|
|
1333
1314
|
OICPValueAddedServices["NONE"] = "none";
|
|
1334
1315
|
})(exports.OICPValueAddedServices || (exports.OICPValueAddedServices = {}));
|
|
1335
1316
|
|
|
1317
|
+
exports.OperatorPreferenceType = void 0;
|
|
1336
1318
|
/** Operator ranking level. */
|
|
1319
|
+
|
|
1320
|
+
(function (OperatorPreferenceType) {
|
|
1321
|
+
OperatorPreferenceType["RANKED"] = "ranked";
|
|
1322
|
+
OperatorPreferenceType["UNRANKED"] = "unranked";
|
|
1323
|
+
OperatorPreferenceType["AVOIDED"] = "avoided";
|
|
1324
|
+
OperatorPreferenceType["EXCLUDED"] = "excluded";
|
|
1325
|
+
})(exports.OperatorPreferenceType || (exports.OperatorPreferenceType = {}));
|
|
1326
|
+
|
|
1337
1327
|
exports.OperatorRankingLevel = void 0;
|
|
1338
1328
|
/** Ranking configuration for the operator. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */
|
|
1339
1329
|
|
|
@@ -1399,7 +1389,6 @@ exports.PricingListElementType = void 0;
|
|
|
1399
1389
|
|
|
1400
1390
|
/** Types of an alternative route. */
|
|
1401
1391
|
exports.RouteAlternativeType = void 0;
|
|
1402
|
-
/** Amenity preferences for a route. */
|
|
1403
1392
|
|
|
1404
1393
|
(function (RouteAlternativeType) {
|
|
1405
1394
|
RouteAlternativeType["FASTEST"] = "fastest";
|
|
@@ -1476,6 +1465,13 @@ exports.RouteDetailsTag = void 0;
|
|
|
1476
1465
|
RouteDetailsTag["CROSSBORDER"] = "crossborder";
|
|
1477
1466
|
})(exports.RouteDetailsTag || (exports.RouteDetailsTag = {}));
|
|
1478
1467
|
|
|
1468
|
+
exports.RouteDrivingStyle = void 0;
|
|
1469
|
+
|
|
1470
|
+
(function (RouteDrivingStyle) {
|
|
1471
|
+
RouteDrivingStyle["ECO"] = "eco";
|
|
1472
|
+
RouteDrivingStyle["SPORT"] = "sport";
|
|
1473
|
+
})(exports.RouteDrivingStyle || (exports.RouteDrivingStyle = {}));
|
|
1474
|
+
|
|
1479
1475
|
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
1480
1476
|
exports.RouteInstructionSign = void 0;
|
|
1481
1477
|
|
|
@@ -1603,6 +1599,7 @@ exports.RouteStatus = void 0;
|
|
|
1603
1599
|
|
|
1604
1600
|
/** Tags of a route. */
|
|
1605
1601
|
exports.RouteTagType = void 0;
|
|
1602
|
+
/** Specifies a temporal window to search for stations with matching amenity types. Defined by a center from the journey origin and a surrounding time margin. */
|
|
1606
1603
|
|
|
1607
1604
|
(function (RouteTagType) {
|
|
1608
1605
|
RouteTagType["ROAD"] = "road";
|