@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
|
@@ -397,12 +397,20 @@ export let CountryCodeAlpha2;
|
|
|
397
397
|
|
|
398
398
|
/** GeoJSON Feature type */
|
|
399
399
|
export let FeatureType;
|
|
400
|
-
/**
|
|
400
|
+
/** Navigation service providers available */
|
|
401
401
|
|
|
402
402
|
(function (FeatureType) {
|
|
403
403
|
FeatureType["FEATURE"] = "Feature";
|
|
404
404
|
})(FeatureType || (FeatureType = {}));
|
|
405
405
|
|
|
406
|
+
export let InstructionsFormat;
|
|
407
|
+
/** Types of a leg */
|
|
408
|
+
|
|
409
|
+
(function (InstructionsFormat) {
|
|
410
|
+
InstructionsFormat["CHARGETRIP"] = "Chargetrip";
|
|
411
|
+
InstructionsFormat["MAPBOXV5"] = "MapboxV5";
|
|
412
|
+
})(InstructionsFormat || (InstructionsFormat = {}));
|
|
413
|
+
|
|
406
414
|
export let LegType;
|
|
407
415
|
/** Preferred language for the mapping */
|
|
408
416
|
|
|
@@ -424,9 +432,21 @@ export let MappingLanguage;
|
|
|
424
432
|
export let MappingProvider;
|
|
425
433
|
|
|
426
434
|
(function (MappingProvider) {
|
|
435
|
+
MappingProvider["CHARGETRIP"] = "Chargetrip";
|
|
427
436
|
MappingProvider["MAPBOXV5"] = "MapboxV5";
|
|
428
437
|
})(MappingProvider || (MappingProvider = {}));
|
|
429
438
|
|
|
439
|
+
/** State of navigation session */
|
|
440
|
+
export let NavigationState;
|
|
441
|
+
/** Navigation session station type */
|
|
442
|
+
|
|
443
|
+
(function (NavigationState) {
|
|
444
|
+
NavigationState["DRIVING"] = "Driving";
|
|
445
|
+
NavigationState["CHARGING"] = "Charging";
|
|
446
|
+
NavigationState["FINISHED"] = "Finished";
|
|
447
|
+
NavigationState["ERROR"] = "Error";
|
|
448
|
+
})(NavigationState || (NavigationState = {}));
|
|
449
|
+
|
|
430
450
|
/** The capabilities of an EVSE. */
|
|
431
451
|
export let OCPICapability;
|
|
432
452
|
/** The format of the connector, whether it is a socket or a plug. */
|