@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
package/dist/node/index.js
CHANGED
|
@@ -20,6 +20,7 @@ exports.AccessType = void 0;
|
|
|
20
20
|
})(exports.AccessType || (exports.AccessType = {}));
|
|
21
21
|
|
|
22
22
|
exports.AdhocAuthorisationMethod = void 0;
|
|
23
|
+
/** Input fields to continue the navigation session to the next leg. */
|
|
23
24
|
|
|
24
25
|
(function (AdhocAuthorisationMethod) {
|
|
25
26
|
AdhocAuthorisationMethod["CREDIT_CARD"] = "CREDIT_CARD";
|
|
@@ -1057,6 +1058,7 @@ exports.NavigationChangeType = void 0;
|
|
|
1057
1058
|
NavigationChangeType["STARTED"] = "started";
|
|
1058
1059
|
NavigationChangeType["ROUTE_UPDATED"] = "route_updated";
|
|
1059
1060
|
NavigationChangeType["NEXT_STATION_AVAILABILITY_UPDATED"] = "next_station_availability_updated";
|
|
1061
|
+
NavigationChangeType["ROUTE_UPDATE_FAILED"] = "route_update_failed";
|
|
1060
1062
|
})(exports.NavigationChangeType || (exports.NavigationChangeType = {}));
|
|
1061
1063
|
|
|
1062
1064
|
/** Status of navigation session. */
|
|
@@ -1066,7 +1068,6 @@ exports.NavigationStatus = void 0;
|
|
|
1066
1068
|
(function (NavigationStatus) {
|
|
1067
1069
|
NavigationStatus["ACTIVE"] = "active";
|
|
1068
1070
|
NavigationStatus["FINISHED"] = "finished";
|
|
1069
|
-
NavigationStatus["ERROR"] = "error";
|
|
1070
1071
|
})(exports.NavigationStatus || (exports.NavigationStatus = {}));
|
|
1071
1072
|
|
|
1072
1073
|
/** Status of navigation session vehicle. */
|