@chargetrip/types 1.24.0 → 1.25.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 +21 -1
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +21 -1
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +176 -17
- package/graphql.schema.json +1063 -108
- package/package.json +1 -1
- package/src/graphql.ts +238 -60
- package/CHANGELOG.md +0 -176
package/dist/node/index.js
CHANGED
|
@@ -401,12 +401,20 @@ exports.CountryCodeAlpha2 = void 0;
|
|
|
401
401
|
|
|
402
402
|
/** GeoJSON Feature type */
|
|
403
403
|
exports.FeatureType = void 0;
|
|
404
|
-
/**
|
|
404
|
+
/** Navigation service providers available */
|
|
405
405
|
|
|
406
406
|
(function (FeatureType) {
|
|
407
407
|
FeatureType["FEATURE"] = "Feature";
|
|
408
408
|
})(exports.FeatureType || (exports.FeatureType = {}));
|
|
409
409
|
|
|
410
|
+
exports.InstructionsFormat = void 0;
|
|
411
|
+
/** Types of a leg */
|
|
412
|
+
|
|
413
|
+
(function (InstructionsFormat) {
|
|
414
|
+
InstructionsFormat["CHARGETRIP"] = "Chargetrip";
|
|
415
|
+
InstructionsFormat["MAPBOXV5"] = "MapboxV5";
|
|
416
|
+
})(exports.InstructionsFormat || (exports.InstructionsFormat = {}));
|
|
417
|
+
|
|
410
418
|
exports.LegType = void 0;
|
|
411
419
|
/** Preferred language for the mapping */
|
|
412
420
|
|
|
@@ -428,9 +436,21 @@ exports.MappingLanguage = void 0;
|
|
|
428
436
|
exports.MappingProvider = void 0;
|
|
429
437
|
|
|
430
438
|
(function (MappingProvider) {
|
|
439
|
+
MappingProvider["CHARGETRIP"] = "Chargetrip";
|
|
431
440
|
MappingProvider["MAPBOXV5"] = "MapboxV5";
|
|
432
441
|
})(exports.MappingProvider || (exports.MappingProvider = {}));
|
|
433
442
|
|
|
443
|
+
/** State of navigation session */
|
|
444
|
+
exports.NavigationState = void 0;
|
|
445
|
+
/** Navigation session station type */
|
|
446
|
+
|
|
447
|
+
(function (NavigationState) {
|
|
448
|
+
NavigationState["DRIVING"] = "Driving";
|
|
449
|
+
NavigationState["CHARGING"] = "Charging";
|
|
450
|
+
NavigationState["FINISHED"] = "Finished";
|
|
451
|
+
NavigationState["ERROR"] = "Error";
|
|
452
|
+
})(exports.NavigationState || (exports.NavigationState = {}));
|
|
453
|
+
|
|
434
454
|
/** The capabilities of an EVSE. */
|
|
435
455
|
exports.OCPICapability = void 0;
|
|
436
456
|
/** The format of the connector, whether it is a socket or a plug. */
|