@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
|
@@ -251,6 +251,8 @@ export let ConnectorType;
|
|
|
251
251
|
ConnectorType["NEMA_10_50"] = "NEMA_10_50";
|
|
252
252
|
ConnectorType["NEMA_14_30"] = "NEMA_14_30";
|
|
253
253
|
ConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
254
|
+
ConnectorType["GBT_AC"] = "GBT_AC";
|
|
255
|
+
ConnectorType["GBT_DC"] = "GBT_DC";
|
|
254
256
|
})(ConnectorType || (ConnectorType = {}));
|
|
255
257
|
|
|
256
258
|
export let ConsumptionUnit;
|
|
@@ -956,7 +958,6 @@ export let HeavyVehiclesEUType;
|
|
|
956
958
|
})(HeavyVehiclesEUType || (HeavyVehiclesEUType = {}));
|
|
957
959
|
|
|
958
960
|
export let HeavyVehiclesFacility;
|
|
959
|
-
/** Navigation service providers available */
|
|
960
961
|
|
|
961
962
|
(function (HeavyVehiclesFacility) {
|
|
962
963
|
HeavyVehiclesFacility["TRUCK_PARKING"] = "TRUCK_PARKING";
|
|
@@ -966,13 +967,6 @@ export let HeavyVehiclesFacility;
|
|
|
966
967
|
HeavyVehiclesFacility["SECURE_TRUCK_PARKING"] = "SECURE_TRUCK_PARKING";
|
|
967
968
|
})(HeavyVehiclesFacility || (HeavyVehiclesFacility = {}));
|
|
968
969
|
|
|
969
|
-
export let InstructionsFormat;
|
|
970
|
-
|
|
971
|
-
(function (InstructionsFormat) {
|
|
972
|
-
InstructionsFormat["CHARGETRIP"] = "Chargetrip";
|
|
973
|
-
InstructionsFormat["MAPBOXV5"] = "MapboxV5";
|
|
974
|
-
})(InstructionsFormat || (InstructionsFormat = {}));
|
|
975
|
-
|
|
976
970
|
export let IsolineFerryConnectionsType;
|
|
977
971
|
|
|
978
972
|
(function (IsolineFerryConnectionsType) {
|
|
@@ -1012,26 +1006,11 @@ export let LegType;
|
|
|
1012
1006
|
|
|
1013
1007
|
/** GeoJSON LineString type. */
|
|
1014
1008
|
export let LineStringType;
|
|
1015
|
-
/** Preferred language for the mapping */
|
|
1016
1009
|
|
|
1017
1010
|
(function (LineStringType) {
|
|
1018
1011
|
LineStringType["LINESTRING"] = "LineString";
|
|
1019
1012
|
})(LineStringType || (LineStringType = {}));
|
|
1020
1013
|
|
|
1021
|
-
export let MappingLanguage;
|
|
1022
|
-
/** Navigation service providers available */
|
|
1023
|
-
|
|
1024
|
-
(function (MappingLanguage) {
|
|
1025
|
-
MappingLanguage["EN"] = "en";
|
|
1026
|
-
})(MappingLanguage || (MappingLanguage = {}));
|
|
1027
|
-
|
|
1028
|
-
export let MappingProvider;
|
|
1029
|
-
|
|
1030
|
-
(function (MappingProvider) {
|
|
1031
|
-
MappingProvider["CHARGETRIP"] = "Chargetrip";
|
|
1032
|
-
MappingProvider["MAPBOXV5"] = "MapboxV5";
|
|
1033
|
-
})(MappingProvider || (MappingProvider = {}));
|
|
1034
|
-
|
|
1035
1014
|
export let MeasurementUnit;
|
|
1036
1015
|
/** A GeoJSON Polygon. */
|
|
1037
1016
|
|
|
@@ -1047,16 +1026,16 @@ export let MultiPolygonType;
|
|
|
1047
1026
|
MultiPolygonType["MULTIPOLYGON"] = "MultiPolygon";
|
|
1048
1027
|
})(MultiPolygonType || (MultiPolygonType = {}));
|
|
1049
1028
|
|
|
1050
|
-
/** State of navigation session */
|
|
1051
|
-
export let
|
|
1052
|
-
/**
|
|
1029
|
+
/** State of navigation session. */
|
|
1030
|
+
export let NavigationStatus;
|
|
1031
|
+
/** The navigation session subscription data */
|
|
1053
1032
|
|
|
1054
|
-
(function (
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
})(
|
|
1033
|
+
(function (NavigationStatus) {
|
|
1034
|
+
NavigationStatus["DRIVING"] = "driving";
|
|
1035
|
+
NavigationStatus["CHARGING"] = "charging";
|
|
1036
|
+
NavigationStatus["FINISHED"] = "finished";
|
|
1037
|
+
NavigationStatus["ERROR"] = "error";
|
|
1038
|
+
})(NavigationStatus || (NavigationStatus = {}));
|
|
1060
1039
|
|
|
1061
1040
|
/** The capabilities of an EVSE. */
|
|
1062
1041
|
export let OCPICapability;
|
|
@@ -1128,6 +1107,8 @@ export let OCPIConnectorType;
|
|
|
1128
1107
|
OCPIConnectorType["NEMA_10_50"] = "NEMA_10_50";
|
|
1129
1108
|
OCPIConnectorType["NEMA_14_30"] = "NEMA_14_30";
|
|
1130
1109
|
OCPIConnectorType["NEMA_14_50"] = "NEMA_14_50";
|
|
1110
|
+
OCPIConnectorType["GBT_AC"] = "GBT_AC";
|
|
1111
|
+
OCPIConnectorType["GBT_DC"] = "GBT_DC";
|
|
1131
1112
|
})(OCPIConnectorType || (OCPIConnectorType = {}));
|
|
1132
1113
|
|
|
1133
1114
|
export let OCPIDayOfWeek;
|
|
@@ -1329,7 +1310,16 @@ export let OICPValueAddedServices;
|
|
|
1329
1310
|
OICPValueAddedServices["NONE"] = "none";
|
|
1330
1311
|
})(OICPValueAddedServices || (OICPValueAddedServices = {}));
|
|
1331
1312
|
|
|
1313
|
+
export let OperatorPreferenceType;
|
|
1332
1314
|
/** Operator ranking level. */
|
|
1315
|
+
|
|
1316
|
+
(function (OperatorPreferenceType) {
|
|
1317
|
+
OperatorPreferenceType["RANKED"] = "ranked";
|
|
1318
|
+
OperatorPreferenceType["UNRANKED"] = "unranked";
|
|
1319
|
+
OperatorPreferenceType["AVOIDED"] = "avoided";
|
|
1320
|
+
OperatorPreferenceType["EXCLUDED"] = "excluded";
|
|
1321
|
+
})(OperatorPreferenceType || (OperatorPreferenceType = {}));
|
|
1322
|
+
|
|
1333
1323
|
export let OperatorRankingLevel;
|
|
1334
1324
|
/** 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. */
|
|
1335
1325
|
|
|
@@ -1395,7 +1385,6 @@ export let PricingListElementType;
|
|
|
1395
1385
|
|
|
1396
1386
|
/** Types of an alternative route. */
|
|
1397
1387
|
export let RouteAlternativeType;
|
|
1398
|
-
/** Amenity preferences for a route. */
|
|
1399
1388
|
|
|
1400
1389
|
(function (RouteAlternativeType) {
|
|
1401
1390
|
RouteAlternativeType["FASTEST"] = "fastest";
|
|
@@ -1472,6 +1461,13 @@ export let RouteDetailsTag;
|
|
|
1472
1461
|
RouteDetailsTag["CROSSBORDER"] = "crossborder";
|
|
1473
1462
|
})(RouteDetailsTag || (RouteDetailsTag = {}));
|
|
1474
1463
|
|
|
1464
|
+
export let RouteDrivingStyle;
|
|
1465
|
+
|
|
1466
|
+
(function (RouteDrivingStyle) {
|
|
1467
|
+
RouteDrivingStyle["ECO"] = "eco";
|
|
1468
|
+
RouteDrivingStyle["SPORT"] = "sport";
|
|
1469
|
+
})(RouteDrivingStyle || (RouteDrivingStyle = {}));
|
|
1470
|
+
|
|
1475
1471
|
/** Sign belonging to the instruction indicating the main maneuver. */
|
|
1476
1472
|
export let RouteInstructionSign;
|
|
1477
1473
|
|
|
@@ -1599,6 +1595,7 @@ export let RouteStatus;
|
|
|
1599
1595
|
|
|
1600
1596
|
/** Tags of a route. */
|
|
1601
1597
|
export let RouteTagType;
|
|
1598
|
+
/** 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. */
|
|
1602
1599
|
|
|
1603
1600
|
(function (RouteTagType) {
|
|
1604
1601
|
RouteTagType["ROAD"] = "road";
|