@chargetrip/types 1.65.0 → 1.66.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 +2 -1
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +2 -1
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +28 -10
- package/graphql.schema.json +152 -36
- package/package.json +1 -1
- package/src/graphql.ts +30 -10
|
@@ -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";
|
|
@@ -1053,6 +1054,7 @@ export let NavigationChangeType;
|
|
|
1053
1054
|
NavigationChangeType["STARTED"] = "started";
|
|
1054
1055
|
NavigationChangeType["ROUTE_UPDATED"] = "route_updated";
|
|
1055
1056
|
NavigationChangeType["NEXT_STATION_AVAILABILITY_UPDATED"] = "next_station_availability_updated";
|
|
1057
|
+
NavigationChangeType["ROUTE_UPDATE_FAILED"] = "route_update_failed";
|
|
1056
1058
|
})(NavigationChangeType || (NavigationChangeType = {}));
|
|
1057
1059
|
|
|
1058
1060
|
/** Status of navigation session. */
|
|
@@ -1062,7 +1064,6 @@ export let NavigationStatus;
|
|
|
1062
1064
|
(function (NavigationStatus) {
|
|
1063
1065
|
NavigationStatus["ACTIVE"] = "active";
|
|
1064
1066
|
NavigationStatus["FINISHED"] = "finished";
|
|
1065
|
-
NavigationStatus["ERROR"] = "error";
|
|
1066
1067
|
})(NavigationStatus || (NavigationStatus = {}));
|
|
1067
1068
|
|
|
1068
1069
|
/** Status of navigation session vehicle. */
|