@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
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";
|
|
@@ -123,6 +124,7 @@ exports.ChargeSpeedUnit = void 0;
|
|
|
123
124
|
ChargeSpeedUnit["KILOWATT_HOUR"] = "kilowatt_hour";
|
|
124
125
|
ChargeSpeedUnit["KILOMETERS_PER_HOUR"] = "kilometers_per_hour";
|
|
125
126
|
ChargeSpeedUnit["MILES_PER_HOUR"] = "miles_per_hour";
|
|
127
|
+
ChargeSpeedUnit["KILOWATT"] = "kilowatt";
|
|
126
128
|
})(exports.ChargeSpeedUnit || (exports.ChargeSpeedUnit = {}));
|
|
127
129
|
|
|
128
130
|
exports.ChargerStatus = void 0;
|
|
@@ -1057,6 +1059,7 @@ exports.NavigationChangeType = void 0;
|
|
|
1057
1059
|
NavigationChangeType["STARTED"] = "started";
|
|
1058
1060
|
NavigationChangeType["ROUTE_UPDATED"] = "route_updated";
|
|
1059
1061
|
NavigationChangeType["NEXT_STATION_AVAILABILITY_UPDATED"] = "next_station_availability_updated";
|
|
1062
|
+
NavigationChangeType["ROUTE_UPDATE_FAILED"] = "route_update_failed";
|
|
1060
1063
|
})(exports.NavigationChangeType || (exports.NavigationChangeType = {}));
|
|
1061
1064
|
|
|
1062
1065
|
/** Status of navigation session. */
|
|
@@ -1066,7 +1069,6 @@ exports.NavigationStatus = void 0;
|
|
|
1066
1069
|
(function (NavigationStatus) {
|
|
1067
1070
|
NavigationStatus["ACTIVE"] = "active";
|
|
1068
1071
|
NavigationStatus["FINISHED"] = "finished";
|
|
1069
|
-
NavigationStatus["ERROR"] = "error";
|
|
1070
1072
|
})(exports.NavigationStatus || (exports.NavigationStatus = {}));
|
|
1071
1073
|
|
|
1072
1074
|
/** Status of navigation session vehicle. */
|