@chargetrip/types 1.52.0 → 1.54.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 +36 -9
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +36 -9
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +497 -243
- package/graphql.schema.json +2453 -611
- package/package.json +1 -1
- package/src/graphql.ts +525 -243
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -17,8 +17,6 @@ export declare type Scalars = {
|
|
|
17
17
|
Boolean: boolean;
|
|
18
18
|
Int: number;
|
|
19
19
|
Float: number;
|
|
20
|
-
/** Acknowledgement scalar. Returns 'OK'. */
|
|
21
|
-
Acknowledgement: any;
|
|
22
20
|
/** The date and time scalar. */
|
|
23
21
|
DateTime: string;
|
|
24
22
|
/** Email address scalar, email regex with HTML sanitization. */
|
|
@@ -70,17 +68,17 @@ export declare type Address = {
|
|
|
70
68
|
number?: Maybe<Scalars["String"]>;
|
|
71
69
|
/**
|
|
72
70
|
* Postal code of the location.
|
|
73
|
-
* @deprecated In favor of postal_code
|
|
71
|
+
* @deprecated In favor of `postal_code`.
|
|
74
72
|
*/
|
|
75
73
|
postalCode?: Maybe<Scalars["String"]>;
|
|
76
74
|
/**
|
|
77
75
|
* String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>.
|
|
78
|
-
* @deprecated In favor of what_3_words
|
|
76
|
+
* @deprecated In favor of `what_3_words`.
|
|
79
77
|
*/
|
|
80
78
|
what3Words?: Maybe<Scalars["String"]>;
|
|
81
79
|
/**
|
|
82
80
|
* Human-readable address of the location.
|
|
83
|
-
* @deprecated In favor of formatted_address
|
|
81
|
+
* @deprecated In favor of `formatted_address`.
|
|
84
82
|
*/
|
|
85
83
|
formattedAddress?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
86
84
|
/** Postal code of the location. */
|
|
@@ -150,12 +148,12 @@ export declare enum Amenities {
|
|
|
150
148
|
export declare type Amenity = {
|
|
151
149
|
/**
|
|
152
150
|
* Unique amenity ID.
|
|
153
|
-
* @deprecated Will be removed
|
|
151
|
+
* @deprecated Will be removed.
|
|
154
152
|
*/
|
|
155
153
|
id?: Maybe<Scalars["ID"]>;
|
|
156
154
|
/**
|
|
157
155
|
* ID provided by an amenity data source as the row ID.
|
|
158
|
-
* @deprecated In favor of external_id
|
|
156
|
+
* @deprecated In favor of `external_id`.
|
|
159
157
|
*/
|
|
160
158
|
externalId?: Maybe<Scalars["String"]>;
|
|
161
159
|
/** ID provided by an amenity data source as the row ID. */
|
|
@@ -170,14 +168,14 @@ export declare type Amenity = {
|
|
|
170
168
|
type: Array<Maybe<Scalars["String"]>>;
|
|
171
169
|
/**
|
|
172
170
|
* Computed distance between station and amenity.
|
|
173
|
-
* @deprecated In favor of station_distance
|
|
171
|
+
* @deprecated In favor of `station_distance`.
|
|
174
172
|
*/
|
|
175
173
|
distance?: Maybe<Scalars["Int"]>;
|
|
176
174
|
/** Computed distance between station and amenity. */
|
|
177
175
|
station_distance: Scalars["Float"];
|
|
178
176
|
/**
|
|
179
177
|
* Full path URL to amenity foursquare page.
|
|
180
|
-
* @deprecated Will be removed
|
|
178
|
+
* @deprecated Will be removed.
|
|
181
179
|
*/
|
|
182
180
|
foursquareUrl?: Maybe<Scalars["String"]>;
|
|
183
181
|
/** Opening hours of the amenity. */
|
|
@@ -192,12 +190,12 @@ export declare type Amenity = {
|
|
|
192
190
|
rating?: Maybe<Scalars["Float"]>;
|
|
193
191
|
/**
|
|
194
192
|
* Date and time when an amenity was created.
|
|
195
|
-
* @deprecated Will be removed
|
|
193
|
+
* @deprecated Will be removed.
|
|
196
194
|
*/
|
|
197
195
|
createdAt?: Maybe<Scalars["String"]>;
|
|
198
196
|
/**
|
|
199
197
|
* Date and time when an amenity was last updated.
|
|
200
|
-
* @deprecated In favor of last_updated
|
|
198
|
+
* @deprecated In favor of `last_updated`.
|
|
201
199
|
*/
|
|
202
200
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
203
201
|
/** Date and time when an amenity was last updated. */
|
|
@@ -322,14 +320,14 @@ export declare type BatteryTemperatureInput = {
|
|
|
322
320
|
export declare enum CarConnectivityProvider {
|
|
323
321
|
ENODE = "Enode"
|
|
324
322
|
}
|
|
325
|
-
/**
|
|
323
|
+
/** Consumption of the car. */
|
|
326
324
|
export declare type CarConsumption = {
|
|
327
325
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
328
326
|
worst?: Maybe<Scalars["Float"]>;
|
|
329
327
|
/** Best conditions are based on 23°C and no use of A/C. */
|
|
330
328
|
best?: Maybe<Scalars["Float"]>;
|
|
331
329
|
};
|
|
332
|
-
/**
|
|
330
|
+
/** Consumption of the car. */
|
|
333
331
|
export declare type CarConsumptionInput = {
|
|
334
332
|
/** Worst conditions are based on -10°C and use of heating. */
|
|
335
333
|
worst?: Maybe<Scalars["Float"]>;
|
|
@@ -580,22 +578,22 @@ export declare enum ConnectedVehicleStatus {
|
|
|
580
578
|
}
|
|
581
579
|
/** Connector data which extends OCPI Connector. */
|
|
582
580
|
export declare type Connector = {
|
|
583
|
-
/** Identifier of a connector within an EVSE. Two connectors may have the same ID as long as they do not belong to the same EVSE object.
|
|
581
|
+
/** Identifier of a connector within an EVSE. Two connectors may have the same ID as long as they do not belong to the same EVSE object. */
|
|
584
582
|
id?: Maybe<Scalars["String"]>;
|
|
585
|
-
/** Standard of an installed connector.
|
|
583
|
+
/** Standard of an installed connector. */
|
|
586
584
|
standard?: Maybe<ConnectorType>;
|
|
587
|
-
/** Format (socket/cable) of an installed connector.
|
|
585
|
+
/** Format (socket/cable) of an installed connector. */
|
|
588
586
|
format?: Maybe<OCPIConnectorFormat>;
|
|
589
|
-
/** Type of power of an installed connector.
|
|
587
|
+
/** Type of power of an installed connector. */
|
|
590
588
|
power_type?: Maybe<OCPIPowerType>;
|
|
591
|
-
/** Maximum voltage of an connector (line to neutral for AC_3_PHASE), in volt [V]. For example: DC Chargers might vary the voltage during charging when battery almost full.
|
|
589
|
+
/** Maximum voltage of an connector (line to neutral for AC_3_PHASE), in volt [V]. For example: DC Chargers might vary the voltage during charging when battery almost full. */
|
|
592
590
|
max_voltage?: Maybe<Scalars["Int"]>;
|
|
593
|
-
/** Maximum amperage of a connector, in ampere [A].
|
|
591
|
+
/** Maximum amperage of a connector, in ampere [A]. */
|
|
594
592
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
595
593
|
/**
|
|
596
594
|
* Maximum electric power that can be delivered by a connector, in watt [W]. When the maximum electric power is lower than the calculated value from voltage and amperage, this value should be set.
|
|
597
595
|
* For example: A DC Charge Point which can deliver up to 920V and up to 400A can be limited to a maximum of 150kW. Depending on the vehicle, it may supply maximum voltage or current, but not both at the same time.
|
|
598
|
-
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
596
|
+
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
599
597
|
*/
|
|
600
598
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
601
599
|
/** Maximum electric power in kW. */
|
|
@@ -603,12 +601,12 @@ export declare type Connector = {
|
|
|
603
601
|
/**
|
|
604
602
|
* Identifiers of the currently valid charging tariffs. Multiple tariffs are possible, but only one of each Tariff.type can be active at the same time. Tariffs with the same type are only allowed, if they are not active at the same time: start_date_time and end_date_time period not overlapping.
|
|
605
603
|
* When preference-based smart charging is supported, one tariff for every possible ProfileType should be provided. This tells the user about the options they have at this Connector, and what the tariff is for every option.
|
|
606
|
-
* For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff.
|
|
604
|
+
* For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff.
|
|
607
605
|
*/
|
|
608
606
|
tariff_ids?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
609
|
-
/** URL to an operator’s terms and conditions.
|
|
607
|
+
/** URL to an operator’s terms and conditions. */
|
|
610
608
|
terms_and_conditions?: Maybe<Scalars["String"]>;
|
|
611
|
-
/** Timestamp when a connector was last updated (or created).
|
|
609
|
+
/** Timestamp when a connector was last updated (or created). */
|
|
612
610
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
613
611
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
614
612
|
properties?: Maybe<Scalars["JSON"]>;
|
|
@@ -616,7 +614,7 @@ export declare type Connector = {
|
|
|
616
614
|
tariff?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
617
615
|
/**
|
|
618
616
|
* Charging prices.
|
|
619
|
-
* @deprecated In favor of prices
|
|
617
|
+
* @deprecated In favor of `prices`.
|
|
620
618
|
*/
|
|
621
619
|
pricing?: Maybe<Pricing>;
|
|
622
620
|
/** Dynamic charging prices. */
|
|
@@ -628,7 +626,7 @@ export declare type Connector = {
|
|
|
628
626
|
export declare type ConnectorCustomProperties = {
|
|
629
627
|
/**
|
|
630
628
|
* Charging prices.
|
|
631
|
-
* @deprecated In favor of connector.prices
|
|
629
|
+
* @deprecated In favor of `connector.prices`.
|
|
632
630
|
*/
|
|
633
631
|
pricing?: Maybe<Pricing>;
|
|
634
632
|
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
@@ -802,7 +800,7 @@ export declare enum ConnectorPriceRestrictionsReservationType {
|
|
|
802
800
|
/** Describes costs for a reservation that expires (i.e. driver does not start a charging session before expiry date of the reservation). */
|
|
803
801
|
RESERVATION_EXPIRES = "reservation_expires"
|
|
804
802
|
}
|
|
805
|
-
/**
|
|
803
|
+
/** Socket or plug standard of the charging point. */
|
|
806
804
|
export declare enum ConnectorType {
|
|
807
805
|
/** The connector type is CHAdeMO, DC. */
|
|
808
806
|
CHADEMO = "CHADEMO",
|
|
@@ -1202,7 +1200,7 @@ export declare type CreateRoute = {
|
|
|
1202
1200
|
operators?: Maybe<RouteOperatorPreferences>;
|
|
1203
1201
|
/**
|
|
1204
1202
|
* Season of a route.
|
|
1205
|
-
* @deprecated In favor of weather
|
|
1203
|
+
* @deprecated In favor of `weather`.
|
|
1206
1204
|
*/
|
|
1207
1205
|
season?: Maybe<RouteSeason>;
|
|
1208
1206
|
/** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */
|
|
@@ -1615,30 +1613,30 @@ export declare enum DistanceUnit {
|
|
|
1615
1613
|
export declare type EVSE = {
|
|
1616
1614
|
/**
|
|
1617
1615
|
* Uniquely identifies an EVSE within the CPOs platform (and suboperator platforms). For example a database ID or the actual "EVSE ID". This field can never be changed, modified or renamed. This is the 'technical' identification of the EVSE, not to be used as 'human readable' identification, use the field evse_id for that.
|
|
1618
|
-
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
|
|
1616
|
+
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
|
|
1619
1617
|
*/
|
|
1620
1618
|
uid?: Maybe<Scalars["String"]>;
|
|
1621
|
-
/** Compliant with the following specification for EVSE ID from "eMI3 standard version V1.0" (http://emi3group.com/documents-links/) "Part 2: business objects." Optional because: if an evse_id is to be re-used in the real world, the evse_id can be removed from an EVSE object if the status is set to REMOVED.
|
|
1619
|
+
/** Compliant with the following specification for EVSE ID from "eMI3 standard version V1.0" (http://emi3group.com/documents-links/) "Part 2: business objects." Optional because: if an evse_id is to be re-used in the real world, the evse_id can be removed from an EVSE object if the status is set to REMOVED. */
|
|
1622
1620
|
evse_id?: Maybe<Scalars["String"]>;
|
|
1623
|
-
/** Indicates the current status of an EVSE.
|
|
1621
|
+
/** Indicates the current status of an EVSE. */
|
|
1624
1622
|
status?: Maybe<OCPIStatus>;
|
|
1625
|
-
/** Indicates a planned status update of a nEVSE.
|
|
1623
|
+
/** Indicates a planned status update of a nEVSE. */
|
|
1626
1624
|
status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;
|
|
1627
|
-
/** List of functionalities that an EVSE is capable of.
|
|
1625
|
+
/** List of functionalities that an EVSE is capable of. */
|
|
1628
1626
|
capabilities?: Maybe<Array<Maybe<OCPICapability>>>;
|
|
1629
|
-
/** List of available connectors on an EVSE.
|
|
1627
|
+
/** List of available connectors on an EVSE. */
|
|
1630
1628
|
connectors?: Maybe<Array<Maybe<Connector>>>;
|
|
1631
|
-
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme.
|
|
1629
|
+
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */
|
|
1632
1630
|
floor_level?: Maybe<Scalars["String"]>;
|
|
1633
|
-
/** Coordinates of a EVSE.
|
|
1631
|
+
/** Coordinates of a EVSE. */
|
|
1634
1632
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
1635
|
-
/** A number/string printed on the outside of an EVSE for visual identification.
|
|
1633
|
+
/** A number/string printed on the outside of an EVSE for visual identification. */
|
|
1636
1634
|
physical_reference?: Maybe<Scalars["String"]>;
|
|
1637
|
-
/** Restrictions that apply to a parking spot.
|
|
1635
|
+
/** Restrictions that apply to a parking spot. */
|
|
1638
1636
|
parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;
|
|
1639
|
-
/** Links to images related to an EVSE such as photos or logos.
|
|
1637
|
+
/** Links to images related to an EVSE such as photos or logos. */
|
|
1640
1638
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
1641
|
-
/** Timestamp when this EVSE or one of its Connectors was last updated (or created).
|
|
1639
|
+
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). */
|
|
1642
1640
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
1643
1641
|
/** Indicates if parking is free or paid. */
|
|
1644
1642
|
parking_cost?: Maybe<ParkingCost>;
|
|
@@ -1932,7 +1930,9 @@ export declare type IsolineInput = {
|
|
|
1932
1930
|
heat_pump?: Maybe<HeatPumpMode>;
|
|
1933
1931
|
/** Vehicle cabin configuration. */
|
|
1934
1932
|
cabin?: Maybe<IsolineCabinInput>;
|
|
1935
|
-
/**
|
|
1933
|
+
/** Weather configuration for the isoline. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data. */
|
|
1934
|
+
weather?: Maybe<IsolineWeatherInput>;
|
|
1935
|
+
/** Season to be taken into account when generating the isoline. If not specified, defaults to real-time weather data. */
|
|
1936
1936
|
season?: Maybe<RouteSeason>;
|
|
1937
1937
|
/** Polygons precision quality. */
|
|
1938
1938
|
quality?: Maybe<IsolineQuality>;
|
|
@@ -1973,8 +1973,13 @@ export declare type IsolineRequestInput = {
|
|
|
1973
1973
|
heat_pump?: Maybe<HeatPumpMode>;
|
|
1974
1974
|
/** Vehicle cabin configuration. */
|
|
1975
1975
|
cabin?: Maybe<IsolineCabin>;
|
|
1976
|
-
/**
|
|
1976
|
+
/**
|
|
1977
|
+
* Season taken into account when isoline was generated.
|
|
1978
|
+
* @deprecated In favor of weather.
|
|
1979
|
+
*/
|
|
1977
1980
|
season?: Maybe<RouteSeason>;
|
|
1981
|
+
/** Weather configuration for the isoline. Defined by a preset or custom weather conditions. */
|
|
1982
|
+
weather?: Maybe<IsolineWeather>;
|
|
1978
1983
|
/** Polygons precision quality. */
|
|
1979
1984
|
quality?: Maybe<IsolineQuality>;
|
|
1980
1985
|
/** Ferry connections. */
|
|
@@ -2007,6 +2012,34 @@ export declare enum IsolineStatus {
|
|
|
2007
2012
|
/** There was an error while generating the isoline label. */
|
|
2008
2013
|
ERROR = "error"
|
|
2009
2014
|
}
|
|
2015
|
+
export declare type IsolineWeather = {
|
|
2016
|
+
/** Weather configuration applied to the isoline. */
|
|
2017
|
+
type: WeatherType;
|
|
2018
|
+
/** [BETA] Custom weather conditions applied to the isoline. Only present when 'type' is set to 'CUSTOM'. */
|
|
2019
|
+
custom?: Maybe<IsolineWeatherCustomConditions>;
|
|
2020
|
+
};
|
|
2021
|
+
export declare type IsolineWeatherCustomConditions = {
|
|
2022
|
+
/** Average ambient temperature estimated along the isoline. */
|
|
2023
|
+
temperature: Temperature;
|
|
2024
|
+
/** Atmospheric pressure along the isoline. */
|
|
2025
|
+
air_pressure: AirPressure;
|
|
2026
|
+
/** Solar irradiance along the isoline. */
|
|
2027
|
+
solar_irradiance: SolarIrradiance;
|
|
2028
|
+
};
|
|
2029
|
+
export declare type IsolineWeatherCustomConditionsInput = {
|
|
2030
|
+
/** Average ambient temperature estimated within the isoline. */
|
|
2031
|
+
temperature: TemperatureInput;
|
|
2032
|
+
/** Atmospheric pressure within the isoline. */
|
|
2033
|
+
air_pressure: AirPressureInput;
|
|
2034
|
+
/** Solar irradiance within the isoline. */
|
|
2035
|
+
solar_irradiance: SolarIrradianceInput;
|
|
2036
|
+
};
|
|
2037
|
+
export declare type IsolineWeatherInput = {
|
|
2038
|
+
/** Weather configuration applied within the isoline. */
|
|
2039
|
+
type?: Maybe<WeatherType>;
|
|
2040
|
+
/** [BETA] Custom weather conditions to apply within the isoline. Required only when 'type' is 'CUSTOM'. Must be omitted for other weather types. */
|
|
2041
|
+
custom?: Maybe<IsolineWeatherCustomConditionsInput>;
|
|
2042
|
+
};
|
|
2010
2043
|
/** Types of a leg. */
|
|
2011
2044
|
export declare enum LegType {
|
|
2012
2045
|
/** This leg ends at a charging station and the vehicle must recharge. */
|
|
@@ -2033,6 +2066,26 @@ export declare type LineString = {
|
|
|
2033
2066
|
export declare enum LineStringType {
|
|
2034
2067
|
LINESTRING = "LineString"
|
|
2035
2068
|
}
|
|
2069
|
+
export declare type LiveRouteRequest = {
|
|
2070
|
+
/** Vehicle used on a route. */
|
|
2071
|
+
vehicle: RouteVehicle;
|
|
2072
|
+
/** Origin of a route. */
|
|
2073
|
+
origin: RouteOriginFeaturePoint;
|
|
2074
|
+
/** Destination of a route. */
|
|
2075
|
+
destination: RouteDestinationFeaturePoint;
|
|
2076
|
+
/** Via points of a route. */
|
|
2077
|
+
via?: Maybe<Array<NavigationViaFeaturePoint>>;
|
|
2078
|
+
/** Operator preferences for a route. When provided, prefers routes that use higher order operators. */
|
|
2079
|
+
operators?: Maybe<RouteOperatorPreferences>;
|
|
2080
|
+
/** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */
|
|
2081
|
+
alternative_station_radius?: Maybe<AlternativeStationRadius>;
|
|
2082
|
+
/** [BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */
|
|
2083
|
+
avoid?: Maybe<Array<RouteAvoid>>;
|
|
2084
|
+
/** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */
|
|
2085
|
+
driving_preferences?: Maybe<RouteDrivingPreferences>;
|
|
2086
|
+
/** Charging stations preferences for route calculation. */
|
|
2087
|
+
station_preferences?: Maybe<RouteStationPreferences>;
|
|
2088
|
+
};
|
|
2036
2089
|
export declare type MaximumSpeed = {
|
|
2037
2090
|
/** Numeric value of the user-defined maximum speed. */
|
|
2038
2091
|
value: Scalars["Int"];
|
|
@@ -2076,11 +2129,11 @@ export declare type Mutation = {
|
|
|
2076
2129
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
2077
2130
|
startNavigation?: Maybe<Scalars["ID"]>;
|
|
2078
2131
|
/** [BETA] Update the navigation session */
|
|
2079
|
-
updateNavigation?: Maybe<Scalars["
|
|
2132
|
+
updateNavigation?: Maybe<Scalars["Boolean"]>;
|
|
2080
2133
|
/** [BETA] Recalculate the current navigation route */
|
|
2081
|
-
recalculateNavigation?: Maybe<Scalars["
|
|
2134
|
+
recalculateNavigation?: Maybe<Scalars["Boolean"]>;
|
|
2082
2135
|
/** [BETA] End a navigation session */
|
|
2083
|
-
finishNavigation?: Maybe<Scalars["
|
|
2136
|
+
finishNavigation?: Maybe<Scalars["Boolean"]>;
|
|
2084
2137
|
/**
|
|
2085
2138
|
* Add a new review.
|
|
2086
2139
|
* If the `x-token` header is send for a valid user, the review will belong to it, otherwise will be added for an anonymouse user
|
|
@@ -2095,11 +2148,11 @@ export declare type Mutation = {
|
|
|
2095
2148
|
*/
|
|
2096
2149
|
deleteUserReview: Review;
|
|
2097
2150
|
/**
|
|
2098
|
-
*
|
|
2151
|
+
* Create a new route from the route input.
|
|
2099
2152
|
* @deprecated In favor of `createRoute`.
|
|
2100
2153
|
*/
|
|
2101
2154
|
newRoute?: Maybe<Scalars["ID"]>;
|
|
2102
|
-
/** Create a new route from the route input
|
|
2155
|
+
/** Create a new route from the route input. */
|
|
2103
2156
|
createRoute: Scalars["ID"];
|
|
2104
2157
|
};
|
|
2105
2158
|
export declare type MutationcreateConnectedVehicleArgs = {
|
|
@@ -2141,17 +2194,55 @@ export declare type MutationnewRouteArgs = {
|
|
|
2141
2194
|
export declare type MutationcreateRouteArgs = {
|
|
2142
2195
|
input: CreateRouteInput;
|
|
2143
2196
|
};
|
|
2144
|
-
/**
|
|
2197
|
+
/** Navigation session data. */
|
|
2145
2198
|
export declare type Navigation = {
|
|
2146
2199
|
/** ID of the navigation session. */
|
|
2147
2200
|
id: Scalars["ID"];
|
|
2148
2201
|
/** Navigation session details overview. */
|
|
2149
2202
|
overview: NavigationOverview;
|
|
2150
|
-
/** The status of
|
|
2203
|
+
/** The status of the navigation session vehicle. The status can be driving, charging or parked. */
|
|
2204
|
+
vehicle_status: NavigationVehicleStatus;
|
|
2205
|
+
/** The status of a navigation session. The status can be active, finished or error. */
|
|
2151
2206
|
status: NavigationStatus;
|
|
2152
2207
|
/** Navigation meta information. */
|
|
2153
2208
|
meta?: Maybe<NavigationMeta>;
|
|
2154
2209
|
};
|
|
2210
|
+
/** Navigation session alternative station type. */
|
|
2211
|
+
export declare type NavigationAlternativeStation = {
|
|
2212
|
+
/** Coordinates of a station. */
|
|
2213
|
+
location: Point;
|
|
2214
|
+
/** ID of the station. */
|
|
2215
|
+
station_id: Scalars["ID"];
|
|
2216
|
+
/** ID of the EVSE that was selected in a route. */
|
|
2217
|
+
evse_id?: Maybe<Scalars["ID"]>;
|
|
2218
|
+
/** ID of the connector that was selected in a route. */
|
|
2219
|
+
connector_id: Scalars["ID"];
|
|
2220
|
+
/** Station operator. */
|
|
2221
|
+
operator?: Maybe<NavigationStationOperator>;
|
|
2222
|
+
};
|
|
2223
|
+
/** Represents the most recent completed meaningful change to the navigation session. */
|
|
2224
|
+
export declare type NavigationChange = {
|
|
2225
|
+
/** Timestamp when the change was finalized. */
|
|
2226
|
+
created_at: Scalars["DateTime"];
|
|
2227
|
+
/** What kind of change occurred. */
|
|
2228
|
+
type: NavigationChangeType;
|
|
2229
|
+
/** Where the change originated from. */
|
|
2230
|
+
source: NavigationChangeSource;
|
|
2231
|
+
};
|
|
2232
|
+
export declare enum NavigationChangeSource {
|
|
2233
|
+
/** Triggered by an explicit client action (e.g. a recalculateNavigation call). */
|
|
2234
|
+
CLIENT = "client",
|
|
2235
|
+
/** Triggered by backend domain changes (e.g. station availability, background recalculation). */
|
|
2236
|
+
SERVER = "server"
|
|
2237
|
+
}
|
|
2238
|
+
export declare enum NavigationChangeType {
|
|
2239
|
+
/** Navigation session has just started. */
|
|
2240
|
+
STARTED = "started",
|
|
2241
|
+
/** The route has been modified or recalculated. */
|
|
2242
|
+
ROUTE_UPDATED = "route_updated",
|
|
2243
|
+
/** Next station availability has changed. */
|
|
2244
|
+
NEXT_STATION_AVAILABILITY_UPDATED = "next_station_availability_updated"
|
|
2245
|
+
}
|
|
2155
2246
|
/** Input for the navigation recalculate. */
|
|
2156
2247
|
export declare type NavigationFinishInput = {
|
|
2157
2248
|
/** ID of the navigation session. */
|
|
@@ -2159,6 +2250,25 @@ export declare type NavigationFinishInput = {
|
|
|
2159
2250
|
/** Current coordinates. */
|
|
2160
2251
|
current_location: PointInput;
|
|
2161
2252
|
};
|
|
2253
|
+
/** Navigation route leg section details. */
|
|
2254
|
+
export declare type NavigationLegSection = {
|
|
2255
|
+
/** Section type. */
|
|
2256
|
+
type: RouteDetailsLegSectionType;
|
|
2257
|
+
/** Origin point. */
|
|
2258
|
+
origin: RouteDetailsLegSectionFeaturePoint;
|
|
2259
|
+
/** Destination point. */
|
|
2260
|
+
destination: RouteDetailsLegSectionFeaturePoint;
|
|
2261
|
+
/** Aggregation of tags over the current section. */
|
|
2262
|
+
tags: Array<RouteDetailsTag>;
|
|
2263
|
+
/** Polyline containing encoded coordinates. */
|
|
2264
|
+
polyline: Scalars["String"];
|
|
2265
|
+
/** Total duration of a section, in seconds. The value will be 0 for walking sections. */
|
|
2266
|
+
duration: Scalars["Float"];
|
|
2267
|
+
};
|
|
2268
|
+
/** Navigation route leg section details. */
|
|
2269
|
+
export declare type NavigationLegSectionpolylineArgs = {
|
|
2270
|
+
decimals?: Maybe<PolylineInputDecimals>;
|
|
2271
|
+
};
|
|
2162
2272
|
/** Navigation meta information. */
|
|
2163
2273
|
export declare type NavigationMeta = {
|
|
2164
2274
|
/** Creation time of the navigation session. */
|
|
@@ -2166,31 +2276,77 @@ export declare type NavigationMeta = {
|
|
|
2166
2276
|
/** Last updated time of the navigation session. */
|
|
2167
2277
|
updated_at: Scalars["DateTime"];
|
|
2168
2278
|
};
|
|
2169
|
-
/**
|
|
2279
|
+
/** Navigation session overview details. */
|
|
2170
2280
|
export declare type NavigationOverview = {
|
|
2171
2281
|
/** State of charge at the last known location. */
|
|
2172
2282
|
state_of_charge: Scalars["Float"];
|
|
2173
2283
|
/** Last known location. */
|
|
2174
2284
|
last_known_location: Point;
|
|
2175
|
-
/** Next charging
|
|
2176
|
-
|
|
2177
|
-
/**
|
|
2178
|
-
|
|
2285
|
+
/** Next stop details. Can be a charging or a location stop. */
|
|
2286
|
+
next_stop: NavigationStop;
|
|
2287
|
+
/** Continuously updated route legs. */
|
|
2288
|
+
legs: Array<Maybe<NavigationRouteLeg>>;
|
|
2289
|
+
/** Continuously updated durations of the route. */
|
|
2290
|
+
durations: RouteDetailsDurations;
|
|
2179
2291
|
/** Navigation route instructions. */
|
|
2180
2292
|
instructions: Array<Maybe<RouteInstruction>>;
|
|
2181
2293
|
/** Continuously updated route request input. */
|
|
2182
|
-
live_route_request:
|
|
2294
|
+
live_route_request: LiveRouteRequest;
|
|
2183
2295
|
/** Polyline containing encoded coordinates. */
|
|
2184
2296
|
polyline: Scalars["String"];
|
|
2185
2297
|
};
|
|
2186
|
-
/**
|
|
2298
|
+
/** Navigation session overview details. */
|
|
2187
2299
|
export declare type NavigationOverviewstate_of_chargeArgs = {
|
|
2188
2300
|
unit?: Maybe<StateOfChargeUnit>;
|
|
2189
2301
|
};
|
|
2190
|
-
/**
|
|
2302
|
+
/** Navigation session overview details. */
|
|
2191
2303
|
export declare type NavigationOverviewpolylineArgs = {
|
|
2192
2304
|
decimals?: Maybe<PolylineInputDecimals>;
|
|
2193
2305
|
};
|
|
2306
|
+
export declare type NavigationPropertiesStation = {
|
|
2307
|
+
/** ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
2308
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
2309
|
+
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
2310
|
+
external_station_id?: Maybe<Scalars["ID"]>;
|
|
2311
|
+
/** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */
|
|
2312
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
2313
|
+
};
|
|
2314
|
+
export declare type NavigationPropertiesStationInput = {
|
|
2315
|
+
/** ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
2316
|
+
station_id?: Maybe<Scalars["ID"]>;
|
|
2317
|
+
/** External ID of the station. When provided and valid, the coordinates of this station will be used. */
|
|
2318
|
+
external_station_id?: Maybe<Scalars["ID"]>;
|
|
2319
|
+
/** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */
|
|
2320
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
2321
|
+
};
|
|
2322
|
+
export declare type NavigationPropertiesVehicle = {
|
|
2323
|
+
/** Number of occupants present in the vehicle. */
|
|
2324
|
+
occupants: Scalars["Int"];
|
|
2325
|
+
/** Combined weight of the occupants. This can only be used in combination with occupants. */
|
|
2326
|
+
total_occupant_weight: TotalOccupantWeight;
|
|
2327
|
+
/** Weight of the cargo. */
|
|
2328
|
+
total_cargo_weight?: Maybe<TotalCargoWeight>;
|
|
2329
|
+
};
|
|
2330
|
+
export declare type NavigationPropertiesVehicleInput = {
|
|
2331
|
+
/** Number of occupants present in the vehicle. */
|
|
2332
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
2333
|
+
/** Combined weight of the occupants. This can only be used in combination with occupants. */
|
|
2334
|
+
total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
|
|
2335
|
+
/** Weight of the cargo. */
|
|
2336
|
+
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
2337
|
+
};
|
|
2338
|
+
export declare type NavigationPropertiesViaLocation = {
|
|
2339
|
+
/** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
|
|
2340
|
+
name?: Maybe<Scalars["String"]>;
|
|
2341
|
+
/** Duration to stay at this point, in seconds. */
|
|
2342
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
2343
|
+
};
|
|
2344
|
+
export declare type NavigationPropertiesViaLocationInput = {
|
|
2345
|
+
/** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
|
|
2346
|
+
name?: Maybe<Scalars["String"]>;
|
|
2347
|
+
/** Duration to stay at this point, in seconds. */
|
|
2348
|
+
stop_duration?: Maybe<Scalars["Int"]>;
|
|
2349
|
+
};
|
|
2194
2350
|
/** Input for the navigation recalculate. */
|
|
2195
2351
|
export declare type NavigationRecalculateInput = {
|
|
2196
2352
|
/** ID of the navigation session. */
|
|
@@ -2200,10 +2356,51 @@ export declare type NavigationRecalculateInput = {
|
|
|
2200
2356
|
/** Origin location of a new route. */
|
|
2201
2357
|
current_location: PointInput;
|
|
2202
2358
|
/** Via points of a new route. If this field is not sent, the original via points will be used. */
|
|
2203
|
-
via?: Maybe<Array<
|
|
2359
|
+
via?: Maybe<Array<NavigationViaFeaturePointInput>>;
|
|
2204
2360
|
/** Telemetry data input. */
|
|
2205
2361
|
telemetry?: Maybe<TelemetryInput>;
|
|
2206
2362
|
};
|
|
2363
|
+
/** Navigation route leg details. */
|
|
2364
|
+
export declare type NavigationRouteLeg = {
|
|
2365
|
+
/** Distance from the start to the end of a leg. */
|
|
2366
|
+
distance: Scalars["Float"];
|
|
2367
|
+
/** Aggregation of all durations of a route leg. */
|
|
2368
|
+
durations: RouteDetailsDurations;
|
|
2369
|
+
/** Origin point location. */
|
|
2370
|
+
origin: RouteDetailsLegFeaturePoint;
|
|
2371
|
+
/** Destination point location. */
|
|
2372
|
+
destination: RouteDetailsLegFeaturePoint;
|
|
2373
|
+
/** Range at the start of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */
|
|
2374
|
+
range_at_origin?: Maybe<Scalars["Float"]>;
|
|
2375
|
+
/** Range available at the end of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */
|
|
2376
|
+
range_at_destination?: Maybe<Scalars["Float"]>;
|
|
2377
|
+
/** Range after charging on the leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */
|
|
2378
|
+
range_after_charge?: Maybe<Scalars["Float"]>;
|
|
2379
|
+
/** Type of a leg. */
|
|
2380
|
+
type: RouteDetailsLegType;
|
|
2381
|
+
/** Information about the station at the destination of a leg. */
|
|
2382
|
+
station?: Maybe<RouteDetailsLegStation>;
|
|
2383
|
+
/** Road sections of a leg - divided by means of transportation. */
|
|
2384
|
+
sections: Array<NavigationLegSection>;
|
|
2385
|
+
/** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */
|
|
2386
|
+
tags: Array<RouteDetailsTag>;
|
|
2387
|
+
};
|
|
2388
|
+
/** Navigation route leg details. */
|
|
2389
|
+
export declare type NavigationRouteLegdistanceArgs = {
|
|
2390
|
+
unit?: Maybe<DistanceUnit>;
|
|
2391
|
+
};
|
|
2392
|
+
/** Navigation route leg details. */
|
|
2393
|
+
export declare type NavigationRouteLegrange_at_originArgs = {
|
|
2394
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2395
|
+
};
|
|
2396
|
+
/** Navigation route leg details. */
|
|
2397
|
+
export declare type NavigationRouteLegrange_at_destinationArgs = {
|
|
2398
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2399
|
+
};
|
|
2400
|
+
/** Navigation route leg details. */
|
|
2401
|
+
export declare type NavigationRouteLegrange_after_chargeArgs = {
|
|
2402
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2403
|
+
};
|
|
2207
2404
|
/** Input for the navigation start. */
|
|
2208
2405
|
export declare type NavigationStartInput = {
|
|
2209
2406
|
/** ID of the route of the navigation session. */
|
|
@@ -2213,42 +2410,58 @@ export declare type NavigationStartInput = {
|
|
|
2213
2410
|
};
|
|
2214
2411
|
/** Navigation session station type. */
|
|
2215
2412
|
export declare type NavigationStation = {
|
|
2216
|
-
/**
|
|
2413
|
+
/** ID of the station. */
|
|
2217
2414
|
station_id: Scalars["ID"];
|
|
2218
|
-
/**
|
|
2219
|
-
|
|
2220
|
-
/**
|
|
2221
|
-
|
|
2222
|
-
/**
|
|
2223
|
-
|
|
2224
|
-
/** Estimated consumption, in kWh, from last the known location until the next charging station. */
|
|
2225
|
-
estimated_consumption: Scalars["Float"];
|
|
2226
|
-
/** Estimated duration, in seconds, from the last known location until the next charging station. */
|
|
2227
|
-
estimated_duration: Scalars["Float"];
|
|
2415
|
+
/** ID of the EVSE that was selected in a route. */
|
|
2416
|
+
evse_id?: Maybe<Scalars["ID"]>;
|
|
2417
|
+
/** ID of the connector that was selected in a route. */
|
|
2418
|
+
connector_id: Scalars["ID"];
|
|
2419
|
+
/** Station operator. */
|
|
2420
|
+
operator?: Maybe<NavigationStationOperator>;
|
|
2228
2421
|
};
|
|
2229
|
-
/** Navigation session station
|
|
2230
|
-
export declare type
|
|
2231
|
-
|
|
2422
|
+
/** Navigation session station operator. */
|
|
2423
|
+
export declare type NavigationStationOperator = {
|
|
2424
|
+
/** Unique operator ID. */
|
|
2425
|
+
id?: Maybe<Scalars["ID"]>;
|
|
2232
2426
|
};
|
|
2233
|
-
/**
|
|
2427
|
+
/** Status of navigation session. */
|
|
2234
2428
|
export declare enum NavigationStatus {
|
|
2235
|
-
/**
|
|
2236
|
-
|
|
2237
|
-
/** Vehicle is charging. */
|
|
2238
|
-
CHARGING = "charging",
|
|
2429
|
+
/** Navigation session is live and currently tracking. */
|
|
2430
|
+
ACTIVE = "active",
|
|
2239
2431
|
/** Navigation session is completed (either manually or automatically 48 hours after the last update). */
|
|
2240
2432
|
FINISHED = "finished",
|
|
2241
2433
|
/** Failed to update navigation session due to route error or not found. */
|
|
2242
2434
|
ERROR = "error"
|
|
2243
2435
|
}
|
|
2436
|
+
/** Next stop details. Can be a charging or a location stop. */
|
|
2437
|
+
export declare type NavigationStop = {
|
|
2438
|
+
/** Estimated arrival state of charge at next stop. For HEVs and PHEVs this field will return null. */
|
|
2439
|
+
arrival_state_of_charge: Scalars["Float"];
|
|
2440
|
+
/** Estimated arrival time at the next stop. */
|
|
2441
|
+
arrival_time: Scalars["DateTime"];
|
|
2442
|
+
/** Coordinates of the next stop. */
|
|
2443
|
+
location: Point;
|
|
2444
|
+
/** Next stop's station to charge. Only present if the next stop is a station. */
|
|
2445
|
+
station?: Maybe<NavigationStation>;
|
|
2446
|
+
/** A set of alternative charging stations to next station. Only present if next stop is a station. */
|
|
2447
|
+
alternative_stations?: Maybe<Array<NavigationAlternativeStation>>;
|
|
2448
|
+
};
|
|
2449
|
+
/** Next stop details. Can be a charging or a location stop. */
|
|
2450
|
+
export declare type NavigationStoparrival_state_of_chargeArgs = {
|
|
2451
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2452
|
+
};
|
|
2244
2453
|
/** The navigation session subscription data */
|
|
2245
2454
|
export declare type NavigationSubscription = {
|
|
2246
2455
|
/** ID of the navigation session. */
|
|
2247
2456
|
id: Scalars["ID"];
|
|
2248
|
-
/** The status of
|
|
2457
|
+
/** The status of the navigation session vehicle. The status can be driving, charging or parked. */
|
|
2458
|
+
vehicle_status: NavigationVehicleStatus;
|
|
2459
|
+
/** The status of the navigation session. The status can be active, finished or error. */
|
|
2249
2460
|
status: NavigationStatus;
|
|
2250
2461
|
/** Navigation meta information. */
|
|
2251
2462
|
meta?: Maybe<NavigationMeta>;
|
|
2463
|
+
/** Information about the latest completed change. */
|
|
2464
|
+
last_change: NavigationChange;
|
|
2252
2465
|
};
|
|
2253
2466
|
/** Input for the navigation update. */
|
|
2254
2467
|
export declare type NavigationUpdateInput = {
|
|
@@ -2256,34 +2469,70 @@ export declare type NavigationUpdateInput = {
|
|
|
2256
2469
|
id: Scalars["ID"];
|
|
2257
2470
|
/** A list of locations that were collected since the last update. */
|
|
2258
2471
|
location_data: Array<NavigationUpdateLocationsInput>;
|
|
2259
|
-
/** Telemetry data input. */
|
|
2260
|
-
telemetry?: Maybe<TelemetryInput>;
|
|
2261
2472
|
};
|
|
2262
|
-
/**
|
|
2263
|
-
export declare type
|
|
2473
|
+
/** Input for the navigation update locations. */
|
|
2474
|
+
export declare type NavigationUpdateLocationsInput = {
|
|
2475
|
+
/** Location coordinates [longitude, latitude]. */
|
|
2476
|
+
coordinates: Array<Scalars["Float"]>;
|
|
2264
2477
|
/** Current route leg index corresponding to a location. */
|
|
2265
2478
|
route_leg: Scalars["Int"];
|
|
2266
|
-
/** Speed at a location. */
|
|
2267
|
-
speed?: Maybe<VehicleSpeedInput>;
|
|
2268
2479
|
/** UNIX timestamp at location, in seconds. */
|
|
2269
2480
|
timestamp: Scalars["Int"];
|
|
2270
|
-
/**
|
|
2271
|
-
|
|
2481
|
+
/** Telemetry data input. */
|
|
2482
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2272
2483
|
};
|
|
2273
|
-
/**
|
|
2274
|
-
export declare
|
|
2275
|
-
/**
|
|
2484
|
+
/** Status of navigation session vehicle. */
|
|
2485
|
+
export declare enum NavigationVehicleStatus {
|
|
2486
|
+
/** Vehicle is driving. */
|
|
2487
|
+
DRIVING = "driving",
|
|
2488
|
+
/** Vehicle is charging. */
|
|
2489
|
+
CHARGING = "charging",
|
|
2490
|
+
/** Vehicle is parked. */
|
|
2491
|
+
PARKED = "parked"
|
|
2492
|
+
}
|
|
2493
|
+
export declare type NavigationViaFeaturePoint = {
|
|
2494
|
+
/** ID of the feature. */
|
|
2495
|
+
id?: Maybe<Scalars["ID"]>;
|
|
2496
|
+
/** Feature type. */
|
|
2497
|
+
type: FeatureType;
|
|
2498
|
+
/** Geometry of the feature. */
|
|
2499
|
+
geometry: Point;
|
|
2500
|
+
/** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */
|
|
2501
|
+
properties?: Maybe<NavigationViaProperties>;
|
|
2502
|
+
};
|
|
2503
|
+
export declare type NavigationViaFeaturePointInput = {
|
|
2504
|
+
/** ID of the feature. */
|
|
2505
|
+
id?: Maybe<Scalars["ID"]>;
|
|
2506
|
+
/** Feature type. */
|
|
2507
|
+
type: FeatureType;
|
|
2508
|
+
/** Geometry of the feature. */
|
|
2276
2509
|
geometry: PointInput;
|
|
2277
|
-
/**
|
|
2278
|
-
properties
|
|
2510
|
+
/** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */
|
|
2511
|
+
properties?: Maybe<NavigationViaPropertiesInput>;
|
|
2512
|
+
};
|
|
2513
|
+
export declare type NavigationViaProperties = {
|
|
2514
|
+
/** Location data of the via point. */
|
|
2515
|
+
location?: Maybe<NavigationPropertiesViaLocation>;
|
|
2516
|
+
/** Vehicle data of the via point. */
|
|
2517
|
+
vehicle?: Maybe<NavigationPropertiesVehicle>;
|
|
2518
|
+
/** Station data of the via point. */
|
|
2519
|
+
station?: Maybe<NavigationPropertiesStation>;
|
|
2520
|
+
};
|
|
2521
|
+
export declare type NavigationViaPropertiesInput = {
|
|
2522
|
+
/** Location data of the via point. */
|
|
2523
|
+
location?: Maybe<NavigationPropertiesViaLocationInput>;
|
|
2524
|
+
/** Vehicle data of the via point. */
|
|
2525
|
+
vehicle?: Maybe<NavigationPropertiesVehicleInput>;
|
|
2526
|
+
/** Specifies a charging station at the via. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop. */
|
|
2527
|
+
station?: Maybe<NavigationPropertiesStationInput>;
|
|
2279
2528
|
};
|
|
2280
2529
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2281
2530
|
export declare type OCPIAdditionalGeoLocation = {
|
|
2282
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7}
|
|
2531
|
+
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
2283
2532
|
latitude?: Maybe<Scalars["String"]>;
|
|
2284
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7}
|
|
2533
|
+
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
2285
2534
|
longitude?: Maybe<Scalars["String"]>;
|
|
2286
|
-
/** Name of the point in local language or as written at the location. For example the street name of a parking lot entrance or it’s number.
|
|
2535
|
+
/** Name of the point in local language or as written at the location. For example the street name of a parking lot entrance or it’s number. */
|
|
2287
2536
|
name?: Maybe<OCPIDisplayText>;
|
|
2288
2537
|
};
|
|
2289
2538
|
/** The capabilities of an EVSE. */
|
|
@@ -2322,7 +2571,7 @@ export declare enum OCPIConnectorFormat {
|
|
|
2322
2571
|
/** The connector is an attached cable; the EV users car needs to have a fitting inlet. */
|
|
2323
2572
|
CABLE = "CABLE"
|
|
2324
2573
|
}
|
|
2325
|
-
/**
|
|
2574
|
+
/** Socket or plug standard of the charging point. */
|
|
2326
2575
|
export declare enum OCPIConnectorType {
|
|
2327
2576
|
/** The connector type is CHAdeMO, DC */
|
|
2328
2577
|
CHADEMO = "CHADEMO",
|
|
@@ -2417,28 +2666,28 @@ export declare enum OCPIDayOfWeek {
|
|
|
2417
2666
|
SUNDAY = "SUNDAY"
|
|
2418
2667
|
}
|
|
2419
2668
|
export declare type OCPIDisplayText = {
|
|
2420
|
-
/** Language Code ISO 639-1
|
|
2669
|
+
/** Language Code ISO 639-1 */
|
|
2421
2670
|
language?: Maybe<Scalars["String"]>;
|
|
2422
|
-
/** Text to be displayed to an end user. No markup, html etc. allowed.
|
|
2671
|
+
/** Text to be displayed to an end user. No markup, html etc. allowed. */
|
|
2423
2672
|
text?: Maybe<Scalars["String"]>;
|
|
2424
2673
|
};
|
|
2425
2674
|
/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
|
|
2426
2675
|
export declare type OCPIEnergyMix = {
|
|
2427
|
-
/** True if the power is 100% from regenerative sources
|
|
2676
|
+
/** True if the power is 100% from regenerative sources */
|
|
2428
2677
|
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2429
|
-
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff.
|
|
2678
|
+
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */
|
|
2430
2679
|
energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
|
|
2431
|
-
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff.
|
|
2680
|
+
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */
|
|
2432
2681
|
environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
|
|
2433
|
-
/** Name of the energy supplier, delivering the energy for this location or tariff
|
|
2682
|
+
/** Name of the energy supplier, delivering the energy for this location or tariff.* */
|
|
2434
2683
|
supplier_name?: Maybe<Scalars["String"]>;
|
|
2435
|
-
/** Name of the energy suppliers product/tariff plan used at this location
|
|
2684
|
+
/** Name of the energy suppliers product/tariff plan used at this location.* */
|
|
2436
2685
|
energy_product_name?: Maybe<Scalars["String"]>;
|
|
2437
2686
|
};
|
|
2438
2687
|
export declare type OCPIEnergySource = {
|
|
2439
|
-
/** The type of energy source.
|
|
2688
|
+
/** The type of energy source. */
|
|
2440
2689
|
source?: Maybe<OCPIEnergySourceCategory>;
|
|
2441
|
-
/** Percentage of this source (0-100) in the mix.
|
|
2690
|
+
/** Percentage of this source (0-100) in the mix. */
|
|
2442
2691
|
percentage?: Maybe<Scalars["Int"]>;
|
|
2443
2692
|
};
|
|
2444
2693
|
/** Categories of energy sources. */
|
|
@@ -2462,9 +2711,9 @@ export declare enum OCPIEnergySourceCategory {
|
|
|
2462
2711
|
}
|
|
2463
2712
|
/** Amount of waste produced/emitted per kWh. */
|
|
2464
2713
|
export declare type OCPIEnvironmentalImpact = {
|
|
2465
|
-
/** The environmental impact category of this value.
|
|
2714
|
+
/** The environmental impact category of this value. */
|
|
2466
2715
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2467
|
-
/** Amount of this portion in g/kWh.
|
|
2716
|
+
/** Amount of this portion in g/kWh. */
|
|
2468
2717
|
amount?: Maybe<Scalars["Float"]>;
|
|
2469
2718
|
};
|
|
2470
2719
|
/** Categories of environmental impact values. */
|
|
@@ -2476,9 +2725,9 @@ export declare enum OCPIEnvironmentalImpactCategory {
|
|
|
2476
2725
|
}
|
|
2477
2726
|
/** Specifies one exceptional period for opening or access hours. */
|
|
2478
2727
|
export declare type OCPIExceptionalPeriod = {
|
|
2479
|
-
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time.
|
|
2728
|
+
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2480
2729
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2481
|
-
/** End of the exception. In UTC, time_zone field can be used to convert to local time.
|
|
2730
|
+
/** End of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2482
2731
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2483
2732
|
};
|
|
2484
2733
|
export declare enum OCPIFacility {
|
|
@@ -2525,34 +2774,34 @@ export declare enum OCPIFacility {
|
|
|
2525
2774
|
}
|
|
2526
2775
|
/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2527
2776
|
export declare type OCPIGeoLocation = {
|
|
2528
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7}
|
|
2777
|
+
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
2529
2778
|
latitude?: Maybe<Scalars["String"]>;
|
|
2530
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7}
|
|
2779
|
+
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
2531
2780
|
longitude?: Maybe<Scalars["String"]>;
|
|
2532
2781
|
};
|
|
2533
2782
|
/** Opening and access hours of the location. */
|
|
2534
2783
|
export declare type OCPIHours = {
|
|
2535
|
-
/** True to represent 24 hours a day and 7 days a week, except the given exceptions.
|
|
2784
|
+
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. */
|
|
2536
2785
|
twentyfourseven?: Maybe<Scalars["Boolean"]>;
|
|
2537
|
-
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object.
|
|
2786
|
+
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */
|
|
2538
2787
|
regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
|
|
2539
|
-
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules.
|
|
2788
|
+
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */
|
|
2540
2789
|
exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2541
|
-
/** Exceptions for specified calendar dates, time-range based. Periods the station is not operating/accessible. Overwriting regular_hours and exceptional_openings. Should not overlap exceptional_openings.
|
|
2790
|
+
/** Exceptions for specified calendar dates, time-range based. Periods the station is not operating/accessible. Overwriting regular_hours and exceptional_openings. Should not overlap exceptional_openings. */
|
|
2542
2791
|
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2543
2792
|
};
|
|
2544
2793
|
export declare type OCPIImage = {
|
|
2545
|
-
/** URL from where the image data can be fetched through a web browser.
|
|
2794
|
+
/** URL from where the image data can be fetched through a web browser. */
|
|
2546
2795
|
url?: Maybe<Scalars["String"]>;
|
|
2547
|
-
/** URL from where a thumbnail of the image can be fetched through a webbrowser.
|
|
2796
|
+
/** URL from where a thumbnail of the image can be fetched through a webbrowser. */
|
|
2548
2797
|
thumbnail?: Maybe<Scalars["String"]>;
|
|
2549
|
-
/** Category of an image
|
|
2798
|
+
/** Category of an image */
|
|
2550
2799
|
category?: Maybe<OCPIImageCategory>;
|
|
2551
|
-
/** Image type: gif, jpeg, png, svg
|
|
2800
|
+
/** Image type: gif, jpeg, png, svg */
|
|
2552
2801
|
type?: Maybe<Scalars["String"]>;
|
|
2553
|
-
/** Width of the full scale image
|
|
2802
|
+
/** Width of the full scale image */
|
|
2554
2803
|
width?: Maybe<Scalars["Int"]>;
|
|
2555
|
-
/** Height of the full scale image
|
|
2804
|
+
/** Height of the full scale image */
|
|
2556
2805
|
height?: Maybe<Scalars["Int"]>;
|
|
2557
2806
|
};
|
|
2558
2807
|
/** The category of an image to obtain the correct usage in a user presentation. The category has to be set accordingly to the image content in order to guarantee the right usage. */
|
|
@@ -2613,28 +2862,28 @@ export declare enum OCPIPowerType {
|
|
|
2613
2862
|
DC = "DC"
|
|
2614
2863
|
}
|
|
2615
2864
|
export declare type OCPIPrice = {
|
|
2616
|
-
/** Price/Cost excluding VAT.
|
|
2865
|
+
/** Price/Cost excluding VAT. */
|
|
2617
2866
|
excl_vat?: Maybe<Scalars["Float"]>;
|
|
2618
|
-
/** Price/Cost including VAT.
|
|
2867
|
+
/** Price/Cost including VAT. */
|
|
2619
2868
|
incl_vat?: Maybe<Scalars["Float"]>;
|
|
2620
2869
|
};
|
|
2621
2870
|
export declare type OCPIPriceComponent = {
|
|
2622
|
-
/** Type of tariff dimension.
|
|
2871
|
+
/** Type of tariff dimension. */
|
|
2623
2872
|
type?: Maybe<OCPITariffDimensionType>;
|
|
2624
|
-
/** Price per unit (excl. VAT) for this tariff dimension.
|
|
2873
|
+
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
2625
2874
|
price?: Maybe<Scalars["Float"]>;
|
|
2626
|
-
/** Applicable VAT percentage for this tariff dimension. If omitted, no VAT is applicable. Not providing a VAT is different from 0% VAT, which would be a value of 0.0 here.
|
|
2875
|
+
/** Applicable VAT percentage for this tariff dimension. If omitted, no VAT is applicable. Not providing a VAT is different from 0% VAT, which would be a value of 0.0 here. */
|
|
2627
2876
|
vat?: Maybe<Scalars["Float"]>;
|
|
2628
|
-
/** Minimum amount to be billed. This unit will be billed in this step_size blocks. For example: if type is TIME and step_size has a value of 300, then time will be billed in blocks of 5 minutes. If 6 minutes were used, 10 minutes (2 blocks of step_size) will be billed.
|
|
2877
|
+
/** Minimum amount to be billed. This unit will be billed in this step_size blocks. For example: if type is TIME and step_size has a value of 300, then time will be billed in blocks of 5 minutes. If 6 minutes were used, 10 minutes (2 blocks of step_size) will be billed. */
|
|
2629
2878
|
step_size?: Maybe<Scalars["Int"]>;
|
|
2630
2879
|
};
|
|
2631
2880
|
/** Regular recurring operation or access hours. */
|
|
2632
2881
|
export declare type OCPIRegularHours = {
|
|
2633
|
-
/** Number of days in the week, from Monday (1) till Sunday (7)
|
|
2882
|
+
/** Number of days in the week, from Monday (1) till Sunday (7) */
|
|
2634
2883
|
weekday?: Maybe<Scalars["Int"]>;
|
|
2635
|
-
/** Begin of the regular period, in local time, given in hours and minutes. Must be in 24h format with leading zeros. Example: "18:15". Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9].
|
|
2884
|
+
/** Begin of the regular period, in local time, given in hours and minutes. Must be in 24h format with leading zeros. Example: "18:15". Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9]. */
|
|
2636
2885
|
period_begin?: Maybe<Scalars["String"]>;
|
|
2637
|
-
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin.
|
|
2886
|
+
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */
|
|
2638
2887
|
period_end?: Maybe<Scalars["String"]>;
|
|
2639
2888
|
};
|
|
2640
2889
|
export declare enum OCPIReservationRestrictionType {
|
|
@@ -2666,41 +2915,41 @@ export declare enum OCPIStatus {
|
|
|
2666
2915
|
}
|
|
2667
2916
|
/** This type is used to schedule status periods in the future. The eMSP can provide this information to the EV user for trip planning purposes. A period MAY have no end. Example: "This station will be running as of tomorrow. Today it is still planned and under construction. */
|
|
2668
2917
|
export declare type OCPIStatusSchedule = {
|
|
2669
|
-
/** Begin of the scheduled period.
|
|
2918
|
+
/** Begin of the scheduled period. */
|
|
2670
2919
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2671
|
-
/** End of the scheduled period, if known.
|
|
2920
|
+
/** End of the scheduled period, if known. */
|
|
2672
2921
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2673
|
-
/** Status value during the scheduled period.
|
|
2922
|
+
/** Status value during the scheduled period. */
|
|
2674
2923
|
status?: Maybe<OCPIStatus>;
|
|
2675
2924
|
};
|
|
2676
2925
|
export declare type OCPITariff = {
|
|
2677
|
-
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff
|
|
2926
|
+
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff */
|
|
2678
2927
|
country_code?: Maybe<Scalars["String"]>;
|
|
2679
|
-
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard)
|
|
2928
|
+
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
|
|
2680
2929
|
party_id?: Maybe<Scalars["String"]>;
|
|
2681
|
-
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms)
|
|
2930
|
+
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
|
|
2682
2931
|
id?: Maybe<Scalars["String"]>;
|
|
2683
|
-
/** ISO-4217 code of the currency of this tariff.
|
|
2932
|
+
/** ISO-4217 code of the currency of this tariff. */
|
|
2684
2933
|
currency?: Maybe<Scalars["String"]>;
|
|
2685
|
-
/** Defines the type of the tariff. This allows for distinction in case of given charging preferences. When omitted, this tariff is valid for all sessions
|
|
2934
|
+
/** Defines the type of the tariff. This allows for distinction in case of given charging preferences. When omitted, this tariff is valid for all sessions */
|
|
2686
2935
|
type?: Maybe<OCPITariffType>;
|
|
2687
|
-
/** List of alternative tariff information texts, in multiple languages
|
|
2936
|
+
/** List of alternative tariff information texts, in multiple languages */
|
|
2688
2937
|
tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
2689
|
-
/** URL to a web page that contains an explanation of the tariff information in human readable form
|
|
2938
|
+
/** URL to a web page that contains an explanation of the tariff information in human readable form */
|
|
2690
2939
|
tariff_alt_url?: Maybe<Scalars["String"]>;
|
|
2691
|
-
/** When this field is set, a charging session with this tariff will cost at least the amount shown. This is different from a FLAT fee (start tariff, transaction fee), as a FLAT fee is a fixed amount that must be paid for any charging session. A minimum price indicates that when the cost of a charging session is lower than this amount, the cost of the session will be equal to this amount
|
|
2940
|
+
/** When this field is set, a charging session with this tariff will cost at least the amount shown. This is different from a FLAT fee (start tariff, transaction fee), as a FLAT fee is a fixed amount that must be paid for any charging session. A minimum price indicates that when the cost of a charging session is lower than this amount, the cost of the session will be equal to this amount */
|
|
2692
2941
|
min_price?: Maybe<OCPIPrice>;
|
|
2693
|
-
/** When this field is set, a charging session with this tariff will NOT cost more than this amount
|
|
2942
|
+
/** When this field is set, a charging session with this tariff will NOT cost more than this amount */
|
|
2694
2943
|
max_price?: Maybe<OCPIPrice>;
|
|
2695
|
-
/** List of tariff elements
|
|
2944
|
+
/** List of tariff elements */
|
|
2696
2945
|
elements?: Maybe<Array<Maybe<OCPITariffElement>>>;
|
|
2697
|
-
/** Time when this tariff becomes active, in UTC, time_zone field of the Location can be used to convert to local time. Typically used for a new tariff that is already given with the location, before it becomes active
|
|
2946
|
+
/** Time when this tariff becomes active, in UTC, time_zone field of the Location can be used to convert to local time. Typically used for a new tariff that is already given with the location, before it becomes active */
|
|
2698
2947
|
start_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2699
|
-
/** Time after which this tariff is no longer valid, in UTC, time_zone field if the location can be used to convert to local time. Typically used when this tariff is going to be replaced with a different tariff in the near future
|
|
2948
|
+
/** Time after which this tariff is no longer valid, in UTC, time_zone field if the location can be used to convert to local time. Typically used when this tariff is going to be replaced with a different tariff in the near future */
|
|
2700
2949
|
end_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2701
|
-
/** Details about the energy supplied with this tariff
|
|
2950
|
+
/** Details about the energy supplied with this tariff */
|
|
2702
2951
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
2703
|
-
/** Timestamp when this tariff was last updated (or created)
|
|
2952
|
+
/** Timestamp when this tariff was last updated (or created) */
|
|
2704
2953
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2705
2954
|
};
|
|
2706
2955
|
export declare enum OCPITariffDimensionType {
|
|
@@ -2714,39 +2963,39 @@ export declare enum OCPITariffDimensionType {
|
|
|
2714
2963
|
TIME = "TIME"
|
|
2715
2964
|
}
|
|
2716
2965
|
export declare type OCPITariffElement = {
|
|
2717
|
-
/** List of price components that describe the pricing of a tariff.
|
|
2966
|
+
/** List of price components that describe the pricing of a tariff. */
|
|
2718
2967
|
price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;
|
|
2719
|
-
/** Restrictions that describe the applicability of a tariff.
|
|
2968
|
+
/** Restrictions that describe the applicability of a tariff. */
|
|
2720
2969
|
restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
|
|
2721
2970
|
};
|
|
2722
2971
|
export declare type OCPITariffRestrictions = {
|
|
2723
|
-
/** Start time of day in local time, the time zone is defined in the time_zone field of the Location, for example 13:30, valid from this time of the day. Must be in 24h format with leading zeros. Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9]
|
|
2972
|
+
/** Start time of day in local time, the time zone is defined in the time_zone field of the Location, for example 13:30, valid from this time of the day. Must be in 24h format with leading zeros. Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9] */
|
|
2724
2973
|
start_time?: Maybe<Scalars["String"]>;
|
|
2725
|
-
/** End time of day in local time, the time zone is defined in the time_zone field of the Location, for example 19:45, valid until this time of the day. Same syntax as start_time.
|
|
2974
|
+
/** End time of day in local time, the time zone is defined in the time_zone field of the Location, for example 19:45, valid until this time of the day. Same syntax as start_time. */
|
|
2726
2975
|
end_time?: Maybe<Scalars["String"]>;
|
|
2727
|
-
/** Start date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-24, valid from this day. Regex: ([12][0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])
|
|
2976
|
+
/** Start date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-24, valid from this day. Regex: ([12][0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]) */
|
|
2728
2977
|
start_date?: Maybe<Scalars["String"]>;
|
|
2729
|
-
/** End date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-27, valid until this day (exclusive). Same syntax as start_date
|
|
2978
|
+
/** End date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-27, valid until this day (exclusive). Same syntax as start_date */
|
|
2730
2979
|
end_date?: Maybe<Scalars["String"]>;
|
|
2731
|
-
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used
|
|
2980
|
+
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
|
|
2732
2981
|
min_kwh?: Maybe<Scalars["Float"]>;
|
|
2733
|
-
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used
|
|
2982
|
+
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */
|
|
2734
2983
|
max_kwh?: Maybe<Scalars["Float"]>;
|
|
2735
|
-
/** Sum of the minimum current in over all phases, for example 5. When the EV is charging with more than the defined amount of current, this tariff element is/becomes active. If the charging current is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum current over the entire charging session. This restriction can make a tariff element become active when the charging current is above the defined value, but the tariff element MUST no longer be active when the charging current drops below the defined value
|
|
2984
|
+
/** Sum of the minimum current in over all phases, for example 5. When the EV is charging with more than the defined amount of current, this tariff element is/becomes active. If the charging current is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum current over the entire charging session. This restriction can make a tariff element become active when the charging current is above the defined value, but the tariff element MUST no longer be active when the charging current drops below the defined value */
|
|
2736
2985
|
min_current?: Maybe<Scalars["Float"]>;
|
|
2737
|
-
/** Sum of the maximum current in over all phases, for example 20. When the EV is charging with less than the defined amount of current, this tariff element becomes/is active. If the charging current is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This describes NOT the maximum current over the entire Charging Session. This restriction can make a tariff element become active when the charging current is below this value, but the tariff element MUST no longer be active when the charging current raises above the defined value
|
|
2986
|
+
/** Sum of the maximum current in over all phases, for example 20. When the EV is charging with less than the defined amount of current, this tariff element becomes/is active. If the charging current is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This describes NOT the maximum current over the entire Charging Session. This restriction can make a tariff element become active when the charging current is below this value, but the tariff element MUST no longer be active when the charging current raises above the defined value */
|
|
2738
2987
|
max_current?: Maybe<Scalars["Float"]>;
|
|
2739
|
-
/** Minimum power in kW, for example 5. When the EV is charging with more than the defined amount of power, this tariff element is/becomes active. If the charging power is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum power over the entire charging session. This restriction can make a tariff element become active when the charging power is above this value, but the TariffElement MUST no longer be active when the charging power drops below the defined value
|
|
2988
|
+
/** Minimum power in kW, for example 5. When the EV is charging with more than the defined amount of power, this tariff element is/becomes active. If the charging power is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum power over the entire charging session. This restriction can make a tariff element become active when the charging power is above this value, but the TariffElement MUST no longer be active when the charging power drops below the defined value */
|
|
2740
2989
|
min_power?: Maybe<Scalars["Float"]>;
|
|
2741
|
-
/** Maximum power in kW, for example 20. When the EV is charging with less than the defined amount of power, this tariff element becomes/is active. If the charging power is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This does not describe the maximum power over the entire charging session. This restriction can make a tariff element become active when the charging power is below this value, but the TariffElement MUST no longer be active when the charging power raises above the defined value
|
|
2990
|
+
/** Maximum power in kW, for example 20. When the EV is charging with less than the defined amount of power, this tariff element becomes/is active. If the charging power is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This does not describe the maximum power over the entire charging session. This restriction can make a tariff element become active when the charging power is below this value, but the TariffElement MUST no longer be active when the charging power raises above the defined value */
|
|
2742
2991
|
max_power?: Maybe<Scalars["Float"]>;
|
|
2743
|
-
/** Minimum duration in seconds the charging session MUST last (inclusive). When the duration of a charging session is longer than the defined value, this TariffElement is or becomes active. Before that moment, this tariff element is not yet active
|
|
2992
|
+
/** Minimum duration in seconds the charging session MUST last (inclusive). When the duration of a charging session is longer than the defined value, this TariffElement is or becomes active. Before that moment, this tariff element is not yet active */
|
|
2744
2993
|
min_duration?: Maybe<Scalars["Float"]>;
|
|
2745
|
-
/** Maximum duration in seconds the charging session MUST last (exclusive). When the duration of a charging session is shorter than the defined value, this tariff element is or becomes active. After that moment, this tariff element is no longer active
|
|
2994
|
+
/** Maximum duration in seconds the charging session MUST last (exclusive). When the duration of a charging session is shorter than the defined value, this tariff element is or becomes active. After that moment, this tariff element is no longer active */
|
|
2746
2995
|
max_duration?: Maybe<Scalars["Float"]>;
|
|
2747
|
-
/** Which day(s) of the week this tariff element is active.
|
|
2996
|
+
/** Which day(s) of the week this tariff element is active. */
|
|
2748
2997
|
day_of_week?: Maybe<OCPIDayOfWeek>;
|
|
2749
|
-
/** When this field is present, the tariff element describes reservation costs. A reservation starts when the reservation is made, and ends when the drivers starts charging on the reserved EVSE/Location, or when the reservation expires. A reservation can only have: FLAT and TIME TariffDimensions, where TIME is for the duration of the reservation
|
|
2998
|
+
/** When this field is present, the tariff element describes reservation costs. A reservation starts when the reservation is made, and ends when the drivers starts charging on the reserved EVSE/Location, or when the reservation expires. A reservation can only have: FLAT and TIME TariffDimensions, where TIME is for the duration of the reservation */
|
|
2750
2999
|
reservation?: Maybe<OCPIReservationRestrictionType>;
|
|
2751
3000
|
};
|
|
2752
3001
|
export declare enum OCPITariffType {
|
|
@@ -2858,15 +3107,15 @@ export declare type Operator = {
|
|
|
2858
3107
|
id?: Maybe<Scalars["ID"]>;
|
|
2859
3108
|
/** External ID of an operator provided by the operator data source. */
|
|
2860
3109
|
external_id?: Maybe<Scalars["String"]>;
|
|
2861
|
-
/** Name of an operator.
|
|
3110
|
+
/** Name of an operator. */
|
|
2862
3111
|
name?: Maybe<Scalars["String"]>;
|
|
2863
|
-
/** Link to an operator’s website.
|
|
3112
|
+
/** Link to an operator’s website. */
|
|
2864
3113
|
website?: Maybe<Scalars["String"]>;
|
|
2865
|
-
/** Image link to an operator’s logo.
|
|
3114
|
+
/** Image link to an operator’s logo. */
|
|
2866
3115
|
logo?: Maybe<OCPIImage>;
|
|
2867
3116
|
/**
|
|
2868
3117
|
* ISO-3166 alpha-2 country code an operator is active in.
|
|
2869
|
-
* @deprecated In favor of countries
|
|
3118
|
+
* @deprecated In favor of `countries`.
|
|
2870
3119
|
*/
|
|
2871
3120
|
country?: Maybe<Scalars["String"]>;
|
|
2872
3121
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
@@ -2875,12 +3124,12 @@ export declare type Operator = {
|
|
|
2875
3124
|
contact?: Maybe<Contact>;
|
|
2876
3125
|
/**
|
|
2877
3126
|
* Ranking level on which the operator is placed or null in case the operator is not on any ranking level. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.
|
|
2878
|
-
* @deprecated In favor of ranking_levels
|
|
3127
|
+
* @deprecated In favor of `ranking_levels`.
|
|
2879
3128
|
*/
|
|
2880
3129
|
ranking?: Maybe<Scalars["Int"]>;
|
|
2881
3130
|
/**
|
|
2882
3131
|
* Flag which indicates if the operator is in the excluded list. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.
|
|
2883
|
-
* @deprecated In favor of excluded_countries
|
|
3132
|
+
* @deprecated In favor of `excluded_countries`.
|
|
2884
3133
|
*/
|
|
2885
3134
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
2886
3135
|
/** Ranking configuration for the operator. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */
|
|
@@ -2890,7 +3139,7 @@ export declare type Operator = {
|
|
|
2890
3139
|
/** List of countries where the operator is avoided. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */
|
|
2891
3140
|
avoided_countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2892
3141
|
};
|
|
2893
|
-
/**
|
|
3142
|
+
/** Criteria to filter operators in the operator list query. */
|
|
2894
3143
|
export declare type OperatorListFilter = {
|
|
2895
3144
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
2896
3145
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
@@ -2903,7 +3152,7 @@ export declare type OperatorListFilter = {
|
|
|
2903
3152
|
/** List of countries where the operator is excluded. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */
|
|
2904
3153
|
excluded_countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2905
3154
|
};
|
|
2906
|
-
/**
|
|
3155
|
+
/** Query parameters to filter operators in the operator list query. */
|
|
2907
3156
|
export declare type OperatorListQuery = {
|
|
2908
3157
|
/** Unique operator ID. */
|
|
2909
3158
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -3131,17 +3380,17 @@ export declare type Query = {
|
|
|
3131
3380
|
*/
|
|
3132
3381
|
userReviewList?: Maybe<Array<Review>>;
|
|
3133
3382
|
/**
|
|
3134
|
-
*
|
|
3383
|
+
* Get emissions for a route.
|
|
3135
3384
|
* @deprecated In favor of `getRouteEmissions`.
|
|
3136
3385
|
*/
|
|
3137
3386
|
routeEmissions: RouteEmissions;
|
|
3138
3387
|
/**
|
|
3139
|
-
*
|
|
3388
|
+
* Get a route by ID.
|
|
3140
3389
|
* @deprecated In favor of `getRoute`.
|
|
3141
3390
|
*/
|
|
3142
3391
|
route?: Maybe<Route>;
|
|
3143
3392
|
/**
|
|
3144
|
-
*
|
|
3393
|
+
* Get a route path segment by ID.
|
|
3145
3394
|
* @deprecated In favor of `RouteDetails.path_plot`.
|
|
3146
3395
|
*/
|
|
3147
3396
|
routePath?: Maybe<RoutePath>;
|
|
@@ -3316,8 +3565,8 @@ export declare type RequestEv = {
|
|
|
3316
3565
|
/** Cargo weight, in kg. */
|
|
3317
3566
|
cargo?: Maybe<Scalars["Float"]>;
|
|
3318
3567
|
/**
|
|
3319
|
-
*
|
|
3320
|
-
* @deprecated In favor of occupants
|
|
3568
|
+
* Number of passengers on board.
|
|
3569
|
+
* @deprecated In favor of `occupants`.
|
|
3321
3570
|
*/
|
|
3322
3571
|
numberOfPassengers?: Maybe<Scalars["Int"]>;
|
|
3323
3572
|
/** Number of occupants. */
|
|
@@ -3382,28 +3631,28 @@ export declare type RequestEvConsumption = {
|
|
|
3382
3631
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3383
3632
|
/**
|
|
3384
3633
|
* Consumption, in kWh, of the auxiliaries.
|
|
3385
|
-
* @deprecated In favor of auxiliary
|
|
3634
|
+
* @deprecated In favor of `auxiliary`
|
|
3386
3635
|
*/
|
|
3387
3636
|
aux?: Maybe<CarConsumption>;
|
|
3388
3637
|
/**
|
|
3389
|
-
*
|
|
3390
|
-
* @deprecated In favor of auxiliary
|
|
3638
|
+
* Consumption, in kWh, of the battery management system.
|
|
3639
|
+
* @deprecated In favor of `auxiliary`
|
|
3391
3640
|
*/
|
|
3392
3641
|
bms?: Maybe<CarConsumption>;
|
|
3393
3642
|
/**
|
|
3394
|
-
*
|
|
3395
|
-
* @deprecated In favor of auxiliary
|
|
3643
|
+
* Consumption, in kWh, of the vehicle in idle mode.
|
|
3644
|
+
* @deprecated In favor of `auxiliary`
|
|
3396
3645
|
*/
|
|
3397
3646
|
idle?: Maybe<CarConsumption>;
|
|
3398
3647
|
};
|
|
3399
3648
|
export declare type RequestEvConsumptionInput = {
|
|
3400
|
-
/**
|
|
3649
|
+
/** Amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc. */
|
|
3401
3650
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3402
|
-
/**
|
|
3651
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
3403
3652
|
aux?: Maybe<CarConsumptionInput>;
|
|
3404
|
-
/**
|
|
3653
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
3405
3654
|
bms?: Maybe<CarConsumptionInput>;
|
|
3406
|
-
/**
|
|
3655
|
+
/** Consumption, in kWh, of the vehicle in idle mode. */
|
|
3407
3656
|
idle?: Maybe<CarConsumptionInput>;
|
|
3408
3657
|
};
|
|
3409
3658
|
export declare type RequestEvInput = {
|
|
@@ -3431,9 +3680,9 @@ export declare type RequestEvInput = {
|
|
|
3431
3680
|
cargo?: Maybe<Scalars["Int"]>;
|
|
3432
3681
|
/** Consumption specific to the EV or inputted by the request. */
|
|
3433
3682
|
consumption?: Maybe<RequestEvConsumptionInput>;
|
|
3434
|
-
/**
|
|
3683
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
3435
3684
|
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
3436
|
-
/**
|
|
3685
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
3437
3686
|
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
3438
3687
|
};
|
|
3439
3688
|
export declare type RequestEvPlug = {
|
|
@@ -3459,24 +3708,24 @@ export declare type RequestInput = {
|
|
|
3459
3708
|
export declare type RequestRoute = {
|
|
3460
3709
|
/**
|
|
3461
3710
|
* Requested amenities near the stations, within a 1 kilometer radius.
|
|
3462
|
-
* @deprecated
|
|
3711
|
+
* @deprecated In favor of `amenity_preferences`.
|
|
3463
3712
|
*/
|
|
3464
3713
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3465
3714
|
/** Amenity preferences for a route. */
|
|
3466
3715
|
amenity_preferences?: Maybe<RouteAmenityPreferences>;
|
|
3467
3716
|
/**
|
|
3468
3717
|
* Requested operators.
|
|
3469
|
-
* @deprecated
|
|
3718
|
+
* @deprecated In favor of `operators`.
|
|
3470
3719
|
*/
|
|
3471
3720
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3472
3721
|
/**
|
|
3473
3722
|
* Preferred operators are required. In case there are no preferred operators the route cannot be calculated.
|
|
3474
|
-
* @deprecated
|
|
3723
|
+
* @deprecated In favor of `operators`.
|
|
3475
3724
|
*/
|
|
3476
3725
|
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
3477
3726
|
/**
|
|
3478
3727
|
* Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated.
|
|
3479
|
-
* @deprecated
|
|
3728
|
+
* @deprecated In favor of `operators`.
|
|
3480
3729
|
*/
|
|
3481
3730
|
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3482
3731
|
/** Operator prioritization for a route. */
|
|
@@ -3495,22 +3744,22 @@ export declare type RequestRoute = {
|
|
|
3495
3744
|
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3496
3745
|
/**
|
|
3497
3746
|
* Flag indicating wether the turn-by-turn navigation instructions should be prepared. Disclaimer: The functionality is under active development and the final API is a subject to change. Not ready for production.
|
|
3498
|
-
* @deprecated
|
|
3747
|
+
* @deprecated All routes will have turn-by-turn instructions prepared. Boolean will be ignored.
|
|
3499
3748
|
*/
|
|
3500
3749
|
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3501
3750
|
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */
|
|
3502
3751
|
chargeMode?: Maybe<ChargeMode>;
|
|
3503
3752
|
};
|
|
3504
3753
|
export declare type RequestRouteInput = {
|
|
3505
|
-
/**
|
|
3754
|
+
/** A list of desired amenities near the stations, with a 1 kilometer radius. */
|
|
3506
3755
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3507
3756
|
/** Amenity preferences for a route. */
|
|
3508
3757
|
amenity_preferences?: Maybe<AmenityPreferencesInput>;
|
|
3509
|
-
/**
|
|
3758
|
+
/** A list of requested operators. */
|
|
3510
3759
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3511
|
-
/**
|
|
3760
|
+
/** Flag which indicates if the operators are required. */
|
|
3512
3761
|
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
3513
|
-
/**
|
|
3762
|
+
/** Flag which indicates if the preferred operators should be loaded. */
|
|
3514
3763
|
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3515
3764
|
/** Operator prioritization for a route. */
|
|
3516
3765
|
operators?: Maybe<RouteOperatorsInput>;
|
|
@@ -3528,7 +3777,7 @@ export declare type RequestRouteInput = {
|
|
|
3528
3777
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
3529
3778
|
/** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
|
|
3530
3779
|
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3531
|
-
/**
|
|
3780
|
+
/** Flag to enable turn-by-turn instructions. */
|
|
3532
3781
|
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3533
3782
|
};
|
|
3534
3783
|
export declare type RequestUser = {
|
|
@@ -3663,7 +3912,7 @@ export declare type RouteAlternative = {
|
|
|
3663
3912
|
chargeTime?: Maybe<Scalars["Float"]>;
|
|
3664
3913
|
/**
|
|
3665
3914
|
* Amenity ranking for an alternative.
|
|
3666
|
-
* @deprecated Will be removed
|
|
3915
|
+
* @deprecated Will be removed.
|
|
3667
3916
|
*/
|
|
3668
3917
|
amenityRanking?: Maybe<Scalars["Int"]>;
|
|
3669
3918
|
/** Display value that indicates the range, in meters, available at the beginning of the trip. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. */
|
|
@@ -3686,7 +3935,7 @@ export declare type RouteAlternative = {
|
|
|
3686
3935
|
pathPlot?: Maybe<Array<Maybe<PathSegment>>>;
|
|
3687
3936
|
/**
|
|
3688
3937
|
* Elevation values. Each elevationPlot has a hundred points, independent of the length of a route.
|
|
3689
|
-
* @deprecated
|
|
3938
|
+
* @deprecated In favor of `pathPlot`.
|
|
3690
3939
|
*/
|
|
3691
3940
|
elevationPlot?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
3692
3941
|
/** Total number of meters which are going up on a route. */
|
|
@@ -3977,7 +4226,7 @@ export declare type RouteDetailsLegFeatureProperties = {
|
|
|
3977
4226
|
solar_irradiance?: Maybe<Scalars["Float"]>;
|
|
3978
4227
|
/**
|
|
3979
4228
|
* Duration, in seconds, of time spent at this location.
|
|
3980
|
-
* @deprecated In favor of legs.durations
|
|
4229
|
+
* @deprecated In favor of `legs.durations`.
|
|
3981
4230
|
*/
|
|
3982
4231
|
duration?: Maybe<Scalars["Int"]>;
|
|
3983
4232
|
/** Number of occupants present in the vehicle. */
|
|
@@ -4130,6 +4379,12 @@ export declare enum RouteDetailsLegWarningCode {
|
|
|
4130
4379
|
SEGMENT_UNAVOIDABLE = "segment_unavoidable",
|
|
4131
4380
|
/** The charging station used in the leg has limited opening hours. */
|
|
4132
4381
|
STATION_LIMITED_OPEN_HOURS = "station_limited_open_hours",
|
|
4382
|
+
/** The leg's charging station has unknown open hours. */
|
|
4383
|
+
STATION_UNKNOWN_OPEN_HOURS = "station_unknown_open_hours",
|
|
4384
|
+
/** The leg's charging station is closed at the estimated time of arrival. */
|
|
4385
|
+
STATION_CLOSED = "station_closed",
|
|
4386
|
+
/** The leg's charging station is closing within 45 minutes of the estimated time of arrival. */
|
|
4387
|
+
STATION_CLOSING_SOON = "station_closing_soon",
|
|
4133
4388
|
/** The specified stop duration at the via charging station is insufficient to start a charging session. */
|
|
4134
4389
|
VIA_INSUFFICIENT_CHARGING_TIME = "via_insufficient_charging_time"
|
|
4135
4390
|
}
|
|
@@ -4171,7 +4426,7 @@ export declare type RouteDetailsPathSegment = {
|
|
|
4171
4426
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
4172
4427
|
/**
|
|
4173
4428
|
* Maximum vehicle speed of a route path segment.
|
|
4174
|
-
* @deprecated Will be removed
|
|
4429
|
+
* @deprecated Will be removed.
|
|
4175
4430
|
*/
|
|
4176
4431
|
maximum_speed: Scalars["Float"];
|
|
4177
4432
|
};
|
|
@@ -5222,11 +5477,11 @@ export declare type RouteStationOperator = {
|
|
|
5222
5477
|
preference_type: OperatorPreferenceType;
|
|
5223
5478
|
};
|
|
5224
5479
|
export declare type RouteStationPreferences = {
|
|
5225
|
-
/**
|
|
5480
|
+
/** Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. */
|
|
5226
5481
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5227
5482
|
};
|
|
5228
5483
|
export declare type RouteStationPreferencesInput = {
|
|
5229
|
-
/**
|
|
5484
|
+
/** Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. This logic may require additional client-specific tuning. Please contact Chargetrip if the behavior seems suboptimal. */
|
|
5230
5485
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5231
5486
|
};
|
|
5232
5487
|
export declare type RouteStationWithAmenities = {
|
|
@@ -5685,59 +5940,59 @@ export declare enum StateOfChargeUnit {
|
|
|
5685
5940
|
}
|
|
5686
5941
|
/** Station data which extends OCPI Location. */
|
|
5687
5942
|
export declare type Station = {
|
|
5688
|
-
/** Unique ID of a station.
|
|
5943
|
+
/** Unique ID of a station. */
|
|
5689
5944
|
id: Scalars["ID"];
|
|
5690
|
-
/** ISO-3166 alpha-2 country code of a station.
|
|
5945
|
+
/** ISO-3166 alpha-2 country code of a station. */
|
|
5691
5946
|
country_code?: Maybe<Scalars["String"]>;
|
|
5692
|
-
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard).
|
|
5947
|
+
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). */
|
|
5693
5948
|
party_id?: Maybe<Scalars["String"]>;
|
|
5694
5949
|
/**
|
|
5695
5950
|
* Defines if a location may be published on a website or app etc.
|
|
5696
5951
|
* When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
|
|
5697
|
-
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created.
|
|
5952
|
+
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created.
|
|
5698
5953
|
*/
|
|
5699
5954
|
publish?: Maybe<Scalars["Boolean"]>;
|
|
5700
|
-
/** Name of a charging station.
|
|
5955
|
+
/** Name of a charging station. */
|
|
5701
5956
|
name?: Maybe<Scalars["String"]>;
|
|
5702
|
-
/** Street/block name and house number if available.
|
|
5957
|
+
/** Street/block name and house number if available. */
|
|
5703
5958
|
address?: Maybe<Scalars["String"]>;
|
|
5704
|
-
/** City or town
|
|
5959
|
+
/** City or town */
|
|
5705
5960
|
city?: Maybe<Scalars["String"]>;
|
|
5706
|
-
/** Postal code of a location, may only be omitted when a location has no postal code: in some countries charging locations at highways don’t have postal codes.
|
|
5961
|
+
/** Postal code of a location, may only be omitted when a location has no postal code: in some countries charging locations at highways don’t have postal codes. */
|
|
5707
5962
|
postal_code?: Maybe<Scalars["String"]>;
|
|
5708
|
-
/** State or province of a location, only to be used when relevant.
|
|
5963
|
+
/** State or province of a location, only to be used when relevant. */
|
|
5709
5964
|
state?: Maybe<Scalars["String"]>;
|
|
5710
|
-
/** ISO 3166-1 alpha-3 code for the country of this station.
|
|
5965
|
+
/** ISO 3166-1 alpha-3 code for the country of this station. */
|
|
5711
5966
|
country?: Maybe<Scalars["String"]>;
|
|
5712
|
-
/** Coordinates of a location.
|
|
5967
|
+
/** Coordinates of a location. */
|
|
5713
5968
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
5714
|
-
/** Geographical location of related points relevant to a user.
|
|
5969
|
+
/** Geographical location of related points relevant to a user. */
|
|
5715
5970
|
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
5716
|
-
/** Type of parking at a charge point location.
|
|
5971
|
+
/** Type of parking at a charge point location. */
|
|
5717
5972
|
parking_type?: Maybe<OCPIParkingType>;
|
|
5718
|
-
/** EVSEs that belong to a station.
|
|
5973
|
+
/** EVSEs that belong to a station. */
|
|
5719
5974
|
evses?: Maybe<Array<Maybe<EVSE>>>;
|
|
5720
|
-
/** Human-readable directions on how to reach a station.
|
|
5975
|
+
/** Human-readable directions on how to reach a station. */
|
|
5721
5976
|
directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
5722
|
-
/** Information about an operator.
|
|
5977
|
+
/** Information about an operator. */
|
|
5723
5978
|
operator?: Maybe<Operator>;
|
|
5724
|
-
/** Information about a suboperator if applicable.
|
|
5979
|
+
/** Information about a suboperator if applicable. */
|
|
5725
5980
|
suboperator?: Maybe<Operator>;
|
|
5726
|
-
/** Information about an owner if available.
|
|
5981
|
+
/** Information about an owner if available. */
|
|
5727
5982
|
owner?: Maybe<Operator>;
|
|
5728
|
-
/** Facilities a charging station belongs to.
|
|
5983
|
+
/** Facilities a charging station belongs to. */
|
|
5729
5984
|
facilities?: Maybe<Array<Maybe<OCPIFacility>>>;
|
|
5730
|
-
/** Value from the IANA time zone database representing the time zone of a location. Examples: "Europe/Oslo", "Europe/Zurich". (http://www.iana.org/time-zones).
|
|
5985
|
+
/** Value from the IANA time zone database representing the time zone of a location. Examples: "Europe/Oslo", "Europe/Zurich". (http://www.iana.org/time-zones). */
|
|
5731
5986
|
time_zone?: Maybe<Scalars["String"]>;
|
|
5732
|
-
/** Times when an EVSEs at a location can be accessed for charging.
|
|
5987
|
+
/** Times when an EVSEs at a location can be accessed for charging. */
|
|
5733
5988
|
opening_times?: Maybe<OCPIHours>;
|
|
5734
|
-
/** Indicates if the EVSEs are still charging outside the opening hours. E.g. when a parking garage closes its barriers overnight, is it allowed to charge till the next morning? Default: true.
|
|
5989
|
+
/** Indicates if the EVSEs are still charging outside the opening hours. E.g. when a parking garage closes its barriers overnight, is it allowed to charge till the next morning? Default: true. */
|
|
5735
5990
|
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
5736
|
-
/** Links to images related to a location such as photos or logos.
|
|
5991
|
+
/** Links to images related to a location such as photos or logos. */
|
|
5737
5992
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
5738
|
-
/** Details of the energy supplied at a location.
|
|
5993
|
+
/** Details of the energy supplied at a location. */
|
|
5739
5994
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
5740
|
-
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created).
|
|
5995
|
+
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). */
|
|
5741
5996
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
5742
5997
|
/** ID provided by a station data source. */
|
|
5743
5998
|
external_id?: Maybe<Scalars["String"]>;
|
|
@@ -5825,7 +6080,7 @@ export declare enum StationAdhocAuthorisationPaymentMethod {
|
|
|
5825
6080
|
/** Authentication by car through Auto Charge. */
|
|
5826
6081
|
AUTH_BY_CAR_AUTOCHARGE = "AUTH_BY_CAR_AUTOCHARGE"
|
|
5827
6082
|
}
|
|
5828
|
-
/**
|
|
6083
|
+
/** Criteria to filter stations in the station around query. */
|
|
5829
6084
|
export declare type StationAroundFilter = {
|
|
5830
6085
|
/** GeoJSON Point of the center of the around me circle. */
|
|
5831
6086
|
location?: Maybe<PointInput>;
|
|
@@ -5844,7 +6099,7 @@ export declare type StationAroundFilter = {
|
|
|
5844
6099
|
/** Flag to filter for stations operated by an operator present in the project's ranking list. */
|
|
5845
6100
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5846
6101
|
};
|
|
5847
|
-
/**
|
|
6102
|
+
/** Query parameters to filter stations in the station around query. */
|
|
5848
6103
|
export declare type StationAroundQuery = {
|
|
5849
6104
|
/** GeoJSON Point of the center of the around me circle. */
|
|
5850
6105
|
location?: Maybe<PointInput>;
|
|
@@ -5858,7 +6113,7 @@ export declare type StationAroundQuery = {
|
|
|
5858
6113
|
export declare type StationCustomProperties = {
|
|
5859
6114
|
/**
|
|
5860
6115
|
* Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.
|
|
5861
|
-
* @deprecated In favor of station.reliability_score
|
|
6116
|
+
* @deprecated In favor of `station.reliability_score`.
|
|
5862
6117
|
*/
|
|
5863
6118
|
reliability_score?: Maybe<Scalars["Int"]>;
|
|
5864
6119
|
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
@@ -5910,7 +6165,7 @@ export declare type StationHeavyVehiclesRestrictionslengthArgs = {
|
|
|
5910
6165
|
export declare type StationHeavyVehiclesRestrictionsmassArgs = {
|
|
5911
6166
|
unit?: Maybe<WeightUnit>;
|
|
5912
6167
|
};
|
|
5913
|
-
/**
|
|
6168
|
+
/** Criteria to filter stations in the station list query. */
|
|
5914
6169
|
export declare type StationListFilter = {
|
|
5915
6170
|
/** Powers in kW. */
|
|
5916
6171
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
@@ -5925,7 +6180,7 @@ export declare type StationListFilter = {
|
|
|
5925
6180
|
/** Flag to filter for stations operated by an operator present in the project's ranking list. */
|
|
5926
6181
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5927
6182
|
};
|
|
5928
|
-
/**
|
|
6183
|
+
/** Query parameters to filter stations in the station list query. */
|
|
5929
6184
|
export declare type StationListQuery = {
|
|
5930
6185
|
/** ID of the station. */
|
|
5931
6186
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -6024,12 +6279,15 @@ export declare enum StepType {
|
|
|
6024
6279
|
CROSSBORDER = "crossborder"
|
|
6025
6280
|
}
|
|
6026
6281
|
export declare type Subscription = {
|
|
6027
|
-
/**
|
|
6282
|
+
/**
|
|
6283
|
+
* Subscribe to a specific route to receive system event updates.
|
|
6284
|
+
* @deprecated In favor of `route`.
|
|
6285
|
+
*/
|
|
6028
6286
|
routeUpdatedById?: Maybe<Route>;
|
|
6029
6287
|
/** Subscribe to a specific route to receive system event updates. */
|
|
6030
6288
|
route: RouteResponse;
|
|
6031
|
-
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates */
|
|
6032
|
-
|
|
6289
|
+
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates. */
|
|
6290
|
+
navigation?: Maybe<NavigationSubscription>;
|
|
6033
6291
|
/** [BETA] Subscribe to a connected vehicle. */
|
|
6034
6292
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
6035
6293
|
/** Subscribe to an isoline in order to receive updates. */
|
|
@@ -6041,7 +6299,7 @@ export declare type SubscriptionrouteUpdatedByIdArgs = {
|
|
|
6041
6299
|
export declare type SubscriptionrouteArgs = {
|
|
6042
6300
|
id: Scalars["ID"];
|
|
6043
6301
|
};
|
|
6044
|
-
export declare type
|
|
6302
|
+
export declare type SubscriptionnavigationArgs = {
|
|
6045
6303
|
id: Scalars["ID"];
|
|
6046
6304
|
};
|
|
6047
6305
|
export declare type SubscriptionconnectedVehicleArgs = {
|
|
@@ -6089,8 +6347,6 @@ export declare type Telemetry = {
|
|
|
6089
6347
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
6090
6348
|
/** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear. */
|
|
6091
6349
|
tire_pressure?: Maybe<Array<Scalars["Float"]>>;
|
|
6092
|
-
/** UNIX timestamp in seconds. */
|
|
6093
|
-
timestamp?: Maybe<Scalars["Int"]>;
|
|
6094
6350
|
/** Value of the vehicle speed. */
|
|
6095
6351
|
vehicle_speed?: Maybe<Scalars["Float"]>;
|
|
6096
6352
|
/** Custom input fields can be added based on telemetry architecture. */
|
|
@@ -6174,8 +6430,6 @@ export declare type TelemetryInput = {
|
|
|
6174
6430
|
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
6175
6431
|
/** Average tire pressures of all wheels, starting from the front side right to left and to the rear. */
|
|
6176
6432
|
tire_pressure?: Maybe<TirePressureInput>;
|
|
6177
|
-
/** UNIX timestamp in seconds. */
|
|
6178
|
-
timestamp?: Maybe<Scalars["Int"]>;
|
|
6179
6433
|
/** Vehicle speed. */
|
|
6180
6434
|
vehicle_speed?: Maybe<VehicleSpeedInput>;
|
|
6181
6435
|
/** Custom input fields can be added based on telemetry architecture. */
|
|
@@ -6411,7 +6665,7 @@ export declare type VehicleConnector = {
|
|
|
6411
6665
|
time: Scalars["Int"];
|
|
6412
6666
|
/**
|
|
6413
6667
|
* Charging speed.
|
|
6414
|
-
* @deprecated In favor of charge_speed
|
|
6668
|
+
* @deprecated In favor of `charge_speed`.
|
|
6415
6669
|
*/
|
|
6416
6670
|
speed: Scalars["Float"];
|
|
6417
6671
|
/** Charging speed. */
|
|
@@ -6602,7 +6856,7 @@ export declare type VehicleListMedia = {
|
|
|
6602
6856
|
image: VehicleImage;
|
|
6603
6857
|
/**
|
|
6604
6858
|
* Latest make logo of the vehicle.
|
|
6605
|
-
* @deprecated In favor of make
|
|
6859
|
+
* @deprecated In favor of `make`.
|
|
6606
6860
|
*/
|
|
6607
6861
|
brand: VehicleImage;
|
|
6608
6862
|
/** Latest make logo of the vehicle. */
|
|
@@ -6652,7 +6906,7 @@ export declare type VehicleMedia = {
|
|
|
6652
6906
|
image: VehicleImage;
|
|
6653
6907
|
/**
|
|
6654
6908
|
* Latest make logo.
|
|
6655
|
-
* @deprecated In favor of make
|
|
6909
|
+
* @deprecated In favor of `make`.
|
|
6656
6910
|
*/
|
|
6657
6911
|
brand: VehicleImage;
|
|
6658
6912
|
/** Latest make logo. */
|
|
@@ -7257,7 +7511,7 @@ export declare type VehiclePremiumMedia = {
|
|
|
7257
7511
|
image: VehicleImage;
|
|
7258
7512
|
/**
|
|
7259
7513
|
* Latest make logo.
|
|
7260
|
-
* @deprecated In favor of make
|
|
7514
|
+
* @deprecated In favor of `make`.
|
|
7261
7515
|
*/
|
|
7262
7516
|
brand: VehicleImage;
|
|
7263
7517
|
/** Latest make logo. */
|