@chargetrip/types 1.65.0 → 1.67.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 +3 -1
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +3 -1
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +44 -24
- package/graphql.schema.json +174 -52
- package/package.json +1 -1
- package/src/graphql.ts +46 -24
|
@@ -16,6 +16,7 @@ export let AccessType;
|
|
|
16
16
|
})(AccessType || (AccessType = {}));
|
|
17
17
|
|
|
18
18
|
export let AdhocAuthorisationMethod;
|
|
19
|
+
/** Input fields to continue the navigation session to the next leg. */
|
|
19
20
|
|
|
20
21
|
(function (AdhocAuthorisationMethod) {
|
|
21
22
|
AdhocAuthorisationMethod["CREDIT_CARD"] = "CREDIT_CARD";
|
|
@@ -119,6 +120,7 @@ export let ChargeSpeedUnit;
|
|
|
119
120
|
ChargeSpeedUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
120
121
|
ChargeSpeedUnit["KILOMETERS_PER_HOUR"] = "kilometers_per_hour";
|
|
121
122
|
ChargeSpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
123
|
+
ChargeSpeedUnit["KILOWATT"] = "kilowatt";
|
|
122
124
|
})(ChargeSpeedUnit || (ChargeSpeedUnit = {}));
|
|
123
125
|
|
|
124
126
|
export let ChargerStatus;
|
|
@@ -1053,6 +1055,7 @@ export let NavigationChangeType;
|
|
|
1053
1055
|
NavigationChangeType["STARTED"] = "started";
|
|
1054
1056
|
NavigationChangeType["ROUTE_UPDATED"] = "route_updated";
|
|
1055
1057
|
NavigationChangeType["NEXT_STATION_AVAILABILITY_UPDATED"] = "next_station_availability_updated";
|
|
1058
|
+
NavigationChangeType["ROUTE_UPDATE_FAILED"] = "route_update_failed";
|
|
1056
1059
|
})(NavigationChangeType || (NavigationChangeType = {}));
|
|
1057
1060
|
|
|
1058
1061
|
/** Status of navigation session. */
|
|
@@ -1062,7 +1065,6 @@ export let NavigationStatus;
|
|
|
1062
1065
|
(function (NavigationStatus) {
|
|
1063
1066
|
NavigationStatus["ACTIVE"] = "active";
|
|
1064
1067
|
NavigationStatus["FINISHED"] = "finished";
|
|
1065
|
-
NavigationStatus["ERROR"] = "error";
|
|
1066
1068
|
})(NavigationStatus || (NavigationStatus = {}));
|
|
1067
1069
|
|
|
1068
1070
|
/** Status of navigation session vehicle. */
|