@chargetrip/types 1.53.0 → 1.55.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 +33 -8
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +33 -8
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +457 -242
- package/graphql.schema.json +1977 -363
- package/package.json +1 -1
- package/src/graphql.ts +481 -242
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>;
|
|
@@ -2068,6 +2066,26 @@ export declare type LineString = {
|
|
|
2068
2066
|
export declare enum LineStringType {
|
|
2069
2067
|
LINESTRING = "LineString"
|
|
2070
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
|
+
};
|
|
2071
2089
|
export declare type MaximumSpeed = {
|
|
2072
2090
|
/** Numeric value of the user-defined maximum speed. */
|
|
2073
2091
|
value: Scalars["Int"];
|
|
@@ -2111,11 +2129,11 @@ export declare type Mutation = {
|
|
|
2111
2129
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
2112
2130
|
startNavigation?: Maybe<Scalars["ID"]>;
|
|
2113
2131
|
/** [BETA] Update the navigation session */
|
|
2114
|
-
updateNavigation?: Maybe<Scalars["
|
|
2132
|
+
updateNavigation?: Maybe<Scalars["Boolean"]>;
|
|
2115
2133
|
/** [BETA] Recalculate the current navigation route */
|
|
2116
|
-
recalculateNavigation?: Maybe<Scalars["
|
|
2134
|
+
recalculateNavigation?: Maybe<Scalars["Boolean"]>;
|
|
2117
2135
|
/** [BETA] End a navigation session */
|
|
2118
|
-
finishNavigation?: Maybe<Scalars["
|
|
2136
|
+
finishNavigation?: Maybe<Scalars["Boolean"]>;
|
|
2119
2137
|
/**
|
|
2120
2138
|
* Add a new review.
|
|
2121
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
|
|
@@ -2130,11 +2148,11 @@ export declare type Mutation = {
|
|
|
2130
2148
|
*/
|
|
2131
2149
|
deleteUserReview: Review;
|
|
2132
2150
|
/**
|
|
2133
|
-
*
|
|
2151
|
+
* Create a new route from the route input.
|
|
2134
2152
|
* @deprecated In favor of `createRoute`.
|
|
2135
2153
|
*/
|
|
2136
2154
|
newRoute?: Maybe<Scalars["ID"]>;
|
|
2137
|
-
/** Create a new route from the route input
|
|
2155
|
+
/** Create a new route from the route input. */
|
|
2138
2156
|
createRoute: Scalars["ID"];
|
|
2139
2157
|
};
|
|
2140
2158
|
export declare type MutationcreateConnectedVehicleArgs = {
|
|
@@ -2176,17 +2194,55 @@ export declare type MutationnewRouteArgs = {
|
|
|
2176
2194
|
export declare type MutationcreateRouteArgs = {
|
|
2177
2195
|
input: CreateRouteInput;
|
|
2178
2196
|
};
|
|
2179
|
-
/**
|
|
2197
|
+
/** Navigation session data. */
|
|
2180
2198
|
export declare type Navigation = {
|
|
2181
2199
|
/** ID of the navigation session. */
|
|
2182
2200
|
id: Scalars["ID"];
|
|
2183
2201
|
/** Navigation session details overview. */
|
|
2184
2202
|
overview: NavigationOverview;
|
|
2185
|
-
/** 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. */
|
|
2186
2206
|
status: NavigationStatus;
|
|
2187
2207
|
/** Navigation meta information. */
|
|
2188
2208
|
meta?: Maybe<NavigationMeta>;
|
|
2189
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
|
+
}
|
|
2190
2246
|
/** Input for the navigation recalculate. */
|
|
2191
2247
|
export declare type NavigationFinishInput = {
|
|
2192
2248
|
/** ID of the navigation session. */
|
|
@@ -2194,6 +2250,25 @@ export declare type NavigationFinishInput = {
|
|
|
2194
2250
|
/** Current coordinates. */
|
|
2195
2251
|
current_location: PointInput;
|
|
2196
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
|
+
};
|
|
2197
2272
|
/** Navigation meta information. */
|
|
2198
2273
|
export declare type NavigationMeta = {
|
|
2199
2274
|
/** Creation time of the navigation session. */
|
|
@@ -2201,31 +2276,77 @@ export declare type NavigationMeta = {
|
|
|
2201
2276
|
/** Last updated time of the navigation session. */
|
|
2202
2277
|
updated_at: Scalars["DateTime"];
|
|
2203
2278
|
};
|
|
2204
|
-
/**
|
|
2279
|
+
/** Navigation session overview details. */
|
|
2205
2280
|
export declare type NavigationOverview = {
|
|
2206
2281
|
/** State of charge at the last known location. */
|
|
2207
2282
|
state_of_charge: Scalars["Float"];
|
|
2208
2283
|
/** Last known location. */
|
|
2209
2284
|
last_known_location: Point;
|
|
2210
|
-
/** Next charging
|
|
2211
|
-
|
|
2212
|
-
/**
|
|
2213
|
-
|
|
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;
|
|
2214
2291
|
/** Navigation route instructions. */
|
|
2215
2292
|
instructions: Array<Maybe<RouteInstruction>>;
|
|
2216
2293
|
/** Continuously updated route request input. */
|
|
2217
|
-
live_route_request:
|
|
2294
|
+
live_route_request: LiveRouteRequest;
|
|
2218
2295
|
/** Polyline containing encoded coordinates. */
|
|
2219
2296
|
polyline: Scalars["String"];
|
|
2220
2297
|
};
|
|
2221
|
-
/**
|
|
2298
|
+
/** Navigation session overview details. */
|
|
2222
2299
|
export declare type NavigationOverviewstate_of_chargeArgs = {
|
|
2223
2300
|
unit?: Maybe<StateOfChargeUnit>;
|
|
2224
2301
|
};
|
|
2225
|
-
/**
|
|
2302
|
+
/** Navigation session overview details. */
|
|
2226
2303
|
export declare type NavigationOverviewpolylineArgs = {
|
|
2227
2304
|
decimals?: Maybe<PolylineInputDecimals>;
|
|
2228
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
|
+
};
|
|
2229
2350
|
/** Input for the navigation recalculate. */
|
|
2230
2351
|
export declare type NavigationRecalculateInput = {
|
|
2231
2352
|
/** ID of the navigation session. */
|
|
@@ -2235,10 +2356,51 @@ export declare type NavigationRecalculateInput = {
|
|
|
2235
2356
|
/** Origin location of a new route. */
|
|
2236
2357
|
current_location: PointInput;
|
|
2237
2358
|
/** Via points of a new route. If this field is not sent, the original via points will be used. */
|
|
2238
|
-
via?: Maybe<Array<
|
|
2359
|
+
via?: Maybe<Array<NavigationViaFeaturePointInput>>;
|
|
2239
2360
|
/** Telemetry data input. */
|
|
2240
2361
|
telemetry?: Maybe<TelemetryInput>;
|
|
2241
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
|
+
};
|
|
2242
2404
|
/** Input for the navigation start. */
|
|
2243
2405
|
export declare type NavigationStartInput = {
|
|
2244
2406
|
/** ID of the route of the navigation session. */
|
|
@@ -2248,42 +2410,58 @@ export declare type NavigationStartInput = {
|
|
|
2248
2410
|
};
|
|
2249
2411
|
/** Navigation session station type. */
|
|
2250
2412
|
export declare type NavigationStation = {
|
|
2251
|
-
/**
|
|
2413
|
+
/** ID of the station. */
|
|
2252
2414
|
station_id: Scalars["ID"];
|
|
2253
|
-
/**
|
|
2254
|
-
|
|
2255
|
-
/**
|
|
2256
|
-
|
|
2257
|
-
/**
|
|
2258
|
-
|
|
2259
|
-
/** Estimated consumption, in kWh, from last the known location until the next charging station. */
|
|
2260
|
-
estimated_consumption: Scalars["Float"];
|
|
2261
|
-
/** Estimated duration, in seconds, from the last known location until the next charging station. */
|
|
2262
|
-
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>;
|
|
2263
2421
|
};
|
|
2264
|
-
/** Navigation session station
|
|
2265
|
-
export declare type
|
|
2266
|
-
|
|
2422
|
+
/** Navigation session station operator. */
|
|
2423
|
+
export declare type NavigationStationOperator = {
|
|
2424
|
+
/** Unique operator ID. */
|
|
2425
|
+
id?: Maybe<Scalars["ID"]>;
|
|
2267
2426
|
};
|
|
2268
|
-
/**
|
|
2427
|
+
/** Status of navigation session. */
|
|
2269
2428
|
export declare enum NavigationStatus {
|
|
2270
|
-
/**
|
|
2271
|
-
|
|
2272
|
-
/** Vehicle is charging. */
|
|
2273
|
-
CHARGING = "charging",
|
|
2429
|
+
/** Navigation session is live and currently tracking. */
|
|
2430
|
+
ACTIVE = "active",
|
|
2274
2431
|
/** Navigation session is completed (either manually or automatically 48 hours after the last update). */
|
|
2275
2432
|
FINISHED = "finished",
|
|
2276
2433
|
/** Failed to update navigation session due to route error or not found. */
|
|
2277
2434
|
ERROR = "error"
|
|
2278
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
|
+
};
|
|
2279
2453
|
/** The navigation session subscription data */
|
|
2280
2454
|
export declare type NavigationSubscription = {
|
|
2281
2455
|
/** ID of the navigation session. */
|
|
2282
2456
|
id: Scalars["ID"];
|
|
2283
|
-
/** 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. */
|
|
2284
2460
|
status: NavigationStatus;
|
|
2285
2461
|
/** Navigation meta information. */
|
|
2286
2462
|
meta?: Maybe<NavigationMeta>;
|
|
2463
|
+
/** Information about the latest completed change. */
|
|
2464
|
+
last_change: NavigationChange;
|
|
2287
2465
|
};
|
|
2288
2466
|
/** Input for the navigation update. */
|
|
2289
2467
|
export declare type NavigationUpdateInput = {
|
|
@@ -2291,34 +2469,70 @@ export declare type NavigationUpdateInput = {
|
|
|
2291
2469
|
id: Scalars["ID"];
|
|
2292
2470
|
/** A list of locations that were collected since the last update. */
|
|
2293
2471
|
location_data: Array<NavigationUpdateLocationsInput>;
|
|
2294
|
-
/** Telemetry data input. */
|
|
2295
|
-
telemetry?: Maybe<TelemetryInput>;
|
|
2296
2472
|
};
|
|
2297
|
-
/**
|
|
2298
|
-
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"]>;
|
|
2299
2477
|
/** Current route leg index corresponding to a location. */
|
|
2300
2478
|
route_leg: Scalars["Int"];
|
|
2301
|
-
/** Speed at a location. */
|
|
2302
|
-
speed?: Maybe<VehicleSpeedInput>;
|
|
2303
2479
|
/** UNIX timestamp at location, in seconds. */
|
|
2304
2480
|
timestamp: Scalars["Int"];
|
|
2305
|
-
/**
|
|
2306
|
-
|
|
2481
|
+
/** Telemetry data input. */
|
|
2482
|
+
telemetry?: Maybe<TelemetryInput>;
|
|
2307
2483
|
};
|
|
2308
|
-
/**
|
|
2309
|
-
export declare
|
|
2310
|
-
/**
|
|
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. */
|
|
2311
2509
|
geometry: PointInput;
|
|
2312
|
-
/**
|
|
2313
|
-
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>;
|
|
2314
2528
|
};
|
|
2315
2529
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2316
2530
|
export declare type OCPIAdditionalGeoLocation = {
|
|
2317
|
-
/** 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} */
|
|
2318
2532
|
latitude?: Maybe<Scalars["String"]>;
|
|
2319
|
-
/** 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} */
|
|
2320
2534
|
longitude?: Maybe<Scalars["String"]>;
|
|
2321
|
-
/** 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. */
|
|
2322
2536
|
name?: Maybe<OCPIDisplayText>;
|
|
2323
2537
|
};
|
|
2324
2538
|
/** The capabilities of an EVSE. */
|
|
@@ -2357,7 +2571,7 @@ export declare enum OCPIConnectorFormat {
|
|
|
2357
2571
|
/** The connector is an attached cable; the EV users car needs to have a fitting inlet. */
|
|
2358
2572
|
CABLE = "CABLE"
|
|
2359
2573
|
}
|
|
2360
|
-
/**
|
|
2574
|
+
/** Socket or plug standard of the charging point. */
|
|
2361
2575
|
export declare enum OCPIConnectorType {
|
|
2362
2576
|
/** The connector type is CHAdeMO, DC */
|
|
2363
2577
|
CHADEMO = "CHADEMO",
|
|
@@ -2452,28 +2666,28 @@ export declare enum OCPIDayOfWeek {
|
|
|
2452
2666
|
SUNDAY = "SUNDAY"
|
|
2453
2667
|
}
|
|
2454
2668
|
export declare type OCPIDisplayText = {
|
|
2455
|
-
/** Language Code ISO 639-1
|
|
2669
|
+
/** Language Code ISO 639-1 */
|
|
2456
2670
|
language?: Maybe<Scalars["String"]>;
|
|
2457
|
-
/** 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. */
|
|
2458
2672
|
text?: Maybe<Scalars["String"]>;
|
|
2459
2673
|
};
|
|
2460
2674
|
/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
|
|
2461
2675
|
export declare type OCPIEnergyMix = {
|
|
2462
|
-
/** True if the power is 100% from regenerative sources
|
|
2676
|
+
/** True if the power is 100% from regenerative sources */
|
|
2463
2677
|
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2464
|
-
/** 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. */
|
|
2465
2679
|
energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
|
|
2466
|
-
/** 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. */
|
|
2467
2681
|
environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
|
|
2468
|
-
/** 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.* */
|
|
2469
2683
|
supplier_name?: Maybe<Scalars["String"]>;
|
|
2470
|
-
/** 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.* */
|
|
2471
2685
|
energy_product_name?: Maybe<Scalars["String"]>;
|
|
2472
2686
|
};
|
|
2473
2687
|
export declare type OCPIEnergySource = {
|
|
2474
|
-
/** The type of energy source.
|
|
2688
|
+
/** The type of energy source. */
|
|
2475
2689
|
source?: Maybe<OCPIEnergySourceCategory>;
|
|
2476
|
-
/** Percentage of this source (0-100) in the mix.
|
|
2690
|
+
/** Percentage of this source (0-100) in the mix. */
|
|
2477
2691
|
percentage?: Maybe<Scalars["Int"]>;
|
|
2478
2692
|
};
|
|
2479
2693
|
/** Categories of energy sources. */
|
|
@@ -2497,9 +2711,9 @@ export declare enum OCPIEnergySourceCategory {
|
|
|
2497
2711
|
}
|
|
2498
2712
|
/** Amount of waste produced/emitted per kWh. */
|
|
2499
2713
|
export declare type OCPIEnvironmentalImpact = {
|
|
2500
|
-
/** The environmental impact category of this value.
|
|
2714
|
+
/** The environmental impact category of this value. */
|
|
2501
2715
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2502
|
-
/** Amount of this portion in g/kWh.
|
|
2716
|
+
/** Amount of this portion in g/kWh. */
|
|
2503
2717
|
amount?: Maybe<Scalars["Float"]>;
|
|
2504
2718
|
};
|
|
2505
2719
|
/** Categories of environmental impact values. */
|
|
@@ -2511,9 +2725,9 @@ export declare enum OCPIEnvironmentalImpactCategory {
|
|
|
2511
2725
|
}
|
|
2512
2726
|
/** Specifies one exceptional period for opening or access hours. */
|
|
2513
2727
|
export declare type OCPIExceptionalPeriod = {
|
|
2514
|
-
/** 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. */
|
|
2515
2729
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2516
|
-
/** 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. */
|
|
2517
2731
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2518
2732
|
};
|
|
2519
2733
|
export declare enum OCPIFacility {
|
|
@@ -2560,34 +2774,34 @@ export declare enum OCPIFacility {
|
|
|
2560
2774
|
}
|
|
2561
2775
|
/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2562
2776
|
export declare type OCPIGeoLocation = {
|
|
2563
|
-
/** 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} */
|
|
2564
2778
|
latitude?: Maybe<Scalars["String"]>;
|
|
2565
|
-
/** 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} */
|
|
2566
2780
|
longitude?: Maybe<Scalars["String"]>;
|
|
2567
2781
|
};
|
|
2568
2782
|
/** Opening and access hours of the location. */
|
|
2569
2783
|
export declare type OCPIHours = {
|
|
2570
|
-
/** 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. */
|
|
2571
2785
|
twentyfourseven?: Maybe<Scalars["Boolean"]>;
|
|
2572
|
-
/** 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. */
|
|
2573
2787
|
regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
|
|
2574
|
-
/** 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. */
|
|
2575
2789
|
exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2576
|
-
/** 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. */
|
|
2577
2791
|
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2578
2792
|
};
|
|
2579
2793
|
export declare type OCPIImage = {
|
|
2580
|
-
/** 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. */
|
|
2581
2795
|
url?: Maybe<Scalars["String"]>;
|
|
2582
|
-
/** 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. */
|
|
2583
2797
|
thumbnail?: Maybe<Scalars["String"]>;
|
|
2584
|
-
/** Category of an image
|
|
2798
|
+
/** Category of an image */
|
|
2585
2799
|
category?: Maybe<OCPIImageCategory>;
|
|
2586
|
-
/** Image type: gif, jpeg, png, svg
|
|
2800
|
+
/** Image type: gif, jpeg, png, svg */
|
|
2587
2801
|
type?: Maybe<Scalars["String"]>;
|
|
2588
|
-
/** Width of the full scale image
|
|
2802
|
+
/** Width of the full scale image */
|
|
2589
2803
|
width?: Maybe<Scalars["Int"]>;
|
|
2590
|
-
/** Height of the full scale image
|
|
2804
|
+
/** Height of the full scale image */
|
|
2591
2805
|
height?: Maybe<Scalars["Int"]>;
|
|
2592
2806
|
};
|
|
2593
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. */
|
|
@@ -2648,28 +2862,28 @@ export declare enum OCPIPowerType {
|
|
|
2648
2862
|
DC = "DC"
|
|
2649
2863
|
}
|
|
2650
2864
|
export declare type OCPIPrice = {
|
|
2651
|
-
/** Price/Cost excluding VAT.
|
|
2865
|
+
/** Price/Cost excluding VAT. */
|
|
2652
2866
|
excl_vat?: Maybe<Scalars["Float"]>;
|
|
2653
|
-
/** Price/Cost including VAT.
|
|
2867
|
+
/** Price/Cost including VAT. */
|
|
2654
2868
|
incl_vat?: Maybe<Scalars["Float"]>;
|
|
2655
2869
|
};
|
|
2656
2870
|
export declare type OCPIPriceComponent = {
|
|
2657
|
-
/** Type of tariff dimension.
|
|
2871
|
+
/** Type of tariff dimension. */
|
|
2658
2872
|
type?: Maybe<OCPITariffDimensionType>;
|
|
2659
|
-
/** Price per unit (excl. VAT) for this tariff dimension.
|
|
2873
|
+
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
2660
2874
|
price?: Maybe<Scalars["Float"]>;
|
|
2661
|
-
/** 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. */
|
|
2662
2876
|
vat?: Maybe<Scalars["Float"]>;
|
|
2663
|
-
/** 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. */
|
|
2664
2878
|
step_size?: Maybe<Scalars["Int"]>;
|
|
2665
2879
|
};
|
|
2666
2880
|
/** Regular recurring operation or access hours. */
|
|
2667
2881
|
export declare type OCPIRegularHours = {
|
|
2668
|
-
/** 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) */
|
|
2669
2883
|
weekday?: Maybe<Scalars["Int"]>;
|
|
2670
|
-
/** 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]. */
|
|
2671
2885
|
period_begin?: Maybe<Scalars["String"]>;
|
|
2672
|
-
/** 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. */
|
|
2673
2887
|
period_end?: Maybe<Scalars["String"]>;
|
|
2674
2888
|
};
|
|
2675
2889
|
export declare enum OCPIReservationRestrictionType {
|
|
@@ -2701,41 +2915,41 @@ export declare enum OCPIStatus {
|
|
|
2701
2915
|
}
|
|
2702
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. */
|
|
2703
2917
|
export declare type OCPIStatusSchedule = {
|
|
2704
|
-
/** Begin of the scheduled period.
|
|
2918
|
+
/** Begin of the scheduled period. */
|
|
2705
2919
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2706
|
-
/** End of the scheduled period, if known.
|
|
2920
|
+
/** End of the scheduled period, if known. */
|
|
2707
2921
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2708
|
-
/** Status value during the scheduled period.
|
|
2922
|
+
/** Status value during the scheduled period. */
|
|
2709
2923
|
status?: Maybe<OCPIStatus>;
|
|
2710
2924
|
};
|
|
2711
2925
|
export declare type OCPITariff = {
|
|
2712
|
-
/** 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 */
|
|
2713
2927
|
country_code?: Maybe<Scalars["String"]>;
|
|
2714
|
-
/** 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) */
|
|
2715
2929
|
party_id?: Maybe<Scalars["String"]>;
|
|
2716
|
-
/** 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) */
|
|
2717
2931
|
id?: Maybe<Scalars["String"]>;
|
|
2718
|
-
/** ISO-4217 code of the currency of this tariff.
|
|
2932
|
+
/** ISO-4217 code of the currency of this tariff. */
|
|
2719
2933
|
currency?: Maybe<Scalars["String"]>;
|
|
2720
|
-
/** 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 */
|
|
2721
2935
|
type?: Maybe<OCPITariffType>;
|
|
2722
|
-
/** List of alternative tariff information texts, in multiple languages
|
|
2936
|
+
/** List of alternative tariff information texts, in multiple languages */
|
|
2723
2937
|
tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
2724
|
-
/** 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 */
|
|
2725
2939
|
tariff_alt_url?: Maybe<Scalars["String"]>;
|
|
2726
|
-
/** 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 */
|
|
2727
2941
|
min_price?: Maybe<OCPIPrice>;
|
|
2728
|
-
/** 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 */
|
|
2729
2943
|
max_price?: Maybe<OCPIPrice>;
|
|
2730
|
-
/** List of tariff elements
|
|
2944
|
+
/** List of tariff elements */
|
|
2731
2945
|
elements?: Maybe<Array<Maybe<OCPITariffElement>>>;
|
|
2732
|
-
/** 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 */
|
|
2733
2947
|
start_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2734
|
-
/** 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 */
|
|
2735
2949
|
end_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2736
|
-
/** Details about the energy supplied with this tariff
|
|
2950
|
+
/** Details about the energy supplied with this tariff */
|
|
2737
2951
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
2738
|
-
/** Timestamp when this tariff was last updated (or created)
|
|
2952
|
+
/** Timestamp when this tariff was last updated (or created) */
|
|
2739
2953
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2740
2954
|
};
|
|
2741
2955
|
export declare enum OCPITariffDimensionType {
|
|
@@ -2749,39 +2963,39 @@ export declare enum OCPITariffDimensionType {
|
|
|
2749
2963
|
TIME = "TIME"
|
|
2750
2964
|
}
|
|
2751
2965
|
export declare type OCPITariffElement = {
|
|
2752
|
-
/** List of price components that describe the pricing of a tariff.
|
|
2966
|
+
/** List of price components that describe the pricing of a tariff. */
|
|
2753
2967
|
price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;
|
|
2754
|
-
/** Restrictions that describe the applicability of a tariff.
|
|
2968
|
+
/** Restrictions that describe the applicability of a tariff. */
|
|
2755
2969
|
restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
|
|
2756
2970
|
};
|
|
2757
2971
|
export declare type OCPITariffRestrictions = {
|
|
2758
|
-
/** 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] */
|
|
2759
2973
|
start_time?: Maybe<Scalars["String"]>;
|
|
2760
|
-
/** 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. */
|
|
2761
2975
|
end_time?: Maybe<Scalars["String"]>;
|
|
2762
|
-
/** 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]) */
|
|
2763
2977
|
start_date?: Maybe<Scalars["String"]>;
|
|
2764
|
-
/** 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 */
|
|
2765
2979
|
end_date?: Maybe<Scalars["String"]>;
|
|
2766
|
-
/** 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 */
|
|
2767
2981
|
min_kwh?: Maybe<Scalars["Float"]>;
|
|
2768
|
-
/** 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 */
|
|
2769
2983
|
max_kwh?: Maybe<Scalars["Float"]>;
|
|
2770
|
-
/** 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 */
|
|
2771
2985
|
min_current?: Maybe<Scalars["Float"]>;
|
|
2772
|
-
/** 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 */
|
|
2773
2987
|
max_current?: Maybe<Scalars["Float"]>;
|
|
2774
|
-
/** 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 */
|
|
2775
2989
|
min_power?: Maybe<Scalars["Float"]>;
|
|
2776
|
-
/** 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 */
|
|
2777
2991
|
max_power?: Maybe<Scalars["Float"]>;
|
|
2778
|
-
/** 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 */
|
|
2779
2993
|
min_duration?: Maybe<Scalars["Float"]>;
|
|
2780
|
-
/** 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 */
|
|
2781
2995
|
max_duration?: Maybe<Scalars["Float"]>;
|
|
2782
|
-
/** Which day(s) of the week this tariff element is active.
|
|
2996
|
+
/** Which day(s) of the week this tariff element is active. */
|
|
2783
2997
|
day_of_week?: Maybe<OCPIDayOfWeek>;
|
|
2784
|
-
/** 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 */
|
|
2785
2999
|
reservation?: Maybe<OCPIReservationRestrictionType>;
|
|
2786
3000
|
};
|
|
2787
3001
|
export declare enum OCPITariffType {
|
|
@@ -2893,15 +3107,15 @@ export declare type Operator = {
|
|
|
2893
3107
|
id?: Maybe<Scalars["ID"]>;
|
|
2894
3108
|
/** External ID of an operator provided by the operator data source. */
|
|
2895
3109
|
external_id?: Maybe<Scalars["String"]>;
|
|
2896
|
-
/** Name of an operator.
|
|
3110
|
+
/** Name of an operator. */
|
|
2897
3111
|
name?: Maybe<Scalars["String"]>;
|
|
2898
|
-
/** Link to an operator’s website.
|
|
3112
|
+
/** Link to an operator’s website. */
|
|
2899
3113
|
website?: Maybe<Scalars["String"]>;
|
|
2900
|
-
/** Image link to an operator’s logo.
|
|
3114
|
+
/** Image link to an operator’s logo. */
|
|
2901
3115
|
logo?: Maybe<OCPIImage>;
|
|
2902
3116
|
/**
|
|
2903
3117
|
* ISO-3166 alpha-2 country code an operator is active in.
|
|
2904
|
-
* @deprecated In favor of countries
|
|
3118
|
+
* @deprecated In favor of `countries`.
|
|
2905
3119
|
*/
|
|
2906
3120
|
country?: Maybe<Scalars["String"]>;
|
|
2907
3121
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
@@ -2910,12 +3124,12 @@ export declare type Operator = {
|
|
|
2910
3124
|
contact?: Maybe<Contact>;
|
|
2911
3125
|
/**
|
|
2912
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.
|
|
2913
|
-
* @deprecated In favor of ranking_levels
|
|
3127
|
+
* @deprecated In favor of `ranking_levels`.
|
|
2914
3128
|
*/
|
|
2915
3129
|
ranking?: Maybe<Scalars["Int"]>;
|
|
2916
3130
|
/**
|
|
2917
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.
|
|
2918
|
-
* @deprecated In favor of excluded_countries
|
|
3132
|
+
* @deprecated In favor of `excluded_countries`.
|
|
2919
3133
|
*/
|
|
2920
3134
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
2921
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. */
|
|
@@ -2925,7 +3139,7 @@ export declare type Operator = {
|
|
|
2925
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. */
|
|
2926
3140
|
avoided_countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2927
3141
|
};
|
|
2928
|
-
/**
|
|
3142
|
+
/** Criteria to filter operators in the operator list query. */
|
|
2929
3143
|
export declare type OperatorListFilter = {
|
|
2930
3144
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
2931
3145
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
@@ -2938,7 +3152,7 @@ export declare type OperatorListFilter = {
|
|
|
2938
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. */
|
|
2939
3153
|
excluded_countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2940
3154
|
};
|
|
2941
|
-
/**
|
|
3155
|
+
/** Query parameters to filter operators in the operator list query. */
|
|
2942
3156
|
export declare type OperatorListQuery = {
|
|
2943
3157
|
/** Unique operator ID. */
|
|
2944
3158
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -3166,17 +3380,17 @@ export declare type Query = {
|
|
|
3166
3380
|
*/
|
|
3167
3381
|
userReviewList?: Maybe<Array<Review>>;
|
|
3168
3382
|
/**
|
|
3169
|
-
*
|
|
3383
|
+
* Get emissions for a route.
|
|
3170
3384
|
* @deprecated In favor of `getRouteEmissions`.
|
|
3171
3385
|
*/
|
|
3172
3386
|
routeEmissions: RouteEmissions;
|
|
3173
3387
|
/**
|
|
3174
|
-
*
|
|
3388
|
+
* Get a route by ID.
|
|
3175
3389
|
* @deprecated In favor of `getRoute`.
|
|
3176
3390
|
*/
|
|
3177
3391
|
route?: Maybe<Route>;
|
|
3178
3392
|
/**
|
|
3179
|
-
*
|
|
3393
|
+
* Get a route path segment by ID.
|
|
3180
3394
|
* @deprecated In favor of `RouteDetails.path_plot`.
|
|
3181
3395
|
*/
|
|
3182
3396
|
routePath?: Maybe<RoutePath>;
|
|
@@ -3351,8 +3565,8 @@ export declare type RequestEv = {
|
|
|
3351
3565
|
/** Cargo weight, in kg. */
|
|
3352
3566
|
cargo?: Maybe<Scalars["Float"]>;
|
|
3353
3567
|
/**
|
|
3354
|
-
*
|
|
3355
|
-
* @deprecated In favor of occupants
|
|
3568
|
+
* Number of passengers on board.
|
|
3569
|
+
* @deprecated In favor of `occupants`.
|
|
3356
3570
|
*/
|
|
3357
3571
|
numberOfPassengers?: Maybe<Scalars["Int"]>;
|
|
3358
3572
|
/** Number of occupants. */
|
|
@@ -3417,28 +3631,28 @@ export declare type RequestEvConsumption = {
|
|
|
3417
3631
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3418
3632
|
/**
|
|
3419
3633
|
* Consumption, in kWh, of the auxiliaries.
|
|
3420
|
-
* @deprecated In favor of auxiliary
|
|
3634
|
+
* @deprecated In favor of `auxiliary`
|
|
3421
3635
|
*/
|
|
3422
3636
|
aux?: Maybe<CarConsumption>;
|
|
3423
3637
|
/**
|
|
3424
|
-
*
|
|
3425
|
-
* @deprecated In favor of auxiliary
|
|
3638
|
+
* Consumption, in kWh, of the battery management system.
|
|
3639
|
+
* @deprecated In favor of `auxiliary`
|
|
3426
3640
|
*/
|
|
3427
3641
|
bms?: Maybe<CarConsumption>;
|
|
3428
3642
|
/**
|
|
3429
|
-
*
|
|
3430
|
-
* @deprecated In favor of auxiliary
|
|
3643
|
+
* Consumption, in kWh, of the vehicle in idle mode.
|
|
3644
|
+
* @deprecated In favor of `auxiliary`
|
|
3431
3645
|
*/
|
|
3432
3646
|
idle?: Maybe<CarConsumption>;
|
|
3433
3647
|
};
|
|
3434
3648
|
export declare type RequestEvConsumptionInput = {
|
|
3435
|
-
/**
|
|
3649
|
+
/** Amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc. */
|
|
3436
3650
|
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3437
|
-
/**
|
|
3651
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
3438
3652
|
aux?: Maybe<CarConsumptionInput>;
|
|
3439
|
-
/**
|
|
3653
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
3440
3654
|
bms?: Maybe<CarConsumptionInput>;
|
|
3441
|
-
/**
|
|
3655
|
+
/** Consumption, in kWh, of the vehicle in idle mode. */
|
|
3442
3656
|
idle?: Maybe<CarConsumptionInput>;
|
|
3443
3657
|
};
|
|
3444
3658
|
export declare type RequestEvInput = {
|
|
@@ -3466,9 +3680,9 @@ export declare type RequestEvInput = {
|
|
|
3466
3680
|
cargo?: Maybe<Scalars["Int"]>;
|
|
3467
3681
|
/** Consumption specific to the EV or inputted by the request. */
|
|
3468
3682
|
consumption?: Maybe<RequestEvConsumptionInput>;
|
|
3469
|
-
/**
|
|
3683
|
+
/** Consumption, in kWh, of the auxiliaries. */
|
|
3470
3684
|
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
3471
|
-
/**
|
|
3685
|
+
/** Consumption, in kWh, of the battery management system. */
|
|
3472
3686
|
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
3473
3687
|
};
|
|
3474
3688
|
export declare type RequestEvPlug = {
|
|
@@ -3494,24 +3708,24 @@ export declare type RequestInput = {
|
|
|
3494
3708
|
export declare type RequestRoute = {
|
|
3495
3709
|
/**
|
|
3496
3710
|
* Requested amenities near the stations, within a 1 kilometer radius.
|
|
3497
|
-
* @deprecated
|
|
3711
|
+
* @deprecated In favor of `amenity_preferences`.
|
|
3498
3712
|
*/
|
|
3499
3713
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3500
3714
|
/** Amenity preferences for a route. */
|
|
3501
3715
|
amenity_preferences?: Maybe<RouteAmenityPreferences>;
|
|
3502
3716
|
/**
|
|
3503
3717
|
* Requested operators.
|
|
3504
|
-
* @deprecated
|
|
3718
|
+
* @deprecated In favor of `operators`.
|
|
3505
3719
|
*/
|
|
3506
3720
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3507
3721
|
/**
|
|
3508
3722
|
* Preferred operators are required. In case there are no preferred operators the route cannot be calculated.
|
|
3509
|
-
* @deprecated
|
|
3723
|
+
* @deprecated In favor of `operators`.
|
|
3510
3724
|
*/
|
|
3511
3725
|
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
3512
3726
|
/**
|
|
3513
3727
|
* Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated.
|
|
3514
|
-
* @deprecated
|
|
3728
|
+
* @deprecated In favor of `operators`.
|
|
3515
3729
|
*/
|
|
3516
3730
|
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3517
3731
|
/** Operator prioritization for a route. */
|
|
@@ -3530,22 +3744,22 @@ export declare type RequestRoute = {
|
|
|
3530
3744
|
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3531
3745
|
/**
|
|
3532
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.
|
|
3533
|
-
* @deprecated
|
|
3747
|
+
* @deprecated All routes will have turn-by-turn instructions prepared. Boolean will be ignored.
|
|
3534
3748
|
*/
|
|
3535
3749
|
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3536
3750
|
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */
|
|
3537
3751
|
chargeMode?: Maybe<ChargeMode>;
|
|
3538
3752
|
};
|
|
3539
3753
|
export declare type RequestRouteInput = {
|
|
3540
|
-
/**
|
|
3754
|
+
/** A list of desired amenities near the stations, with a 1 kilometer radius. */
|
|
3541
3755
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3542
3756
|
/** Amenity preferences for a route. */
|
|
3543
3757
|
amenity_preferences?: Maybe<AmenityPreferencesInput>;
|
|
3544
|
-
/**
|
|
3758
|
+
/** A list of requested operators. */
|
|
3545
3759
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3546
|
-
/**
|
|
3760
|
+
/** Flag which indicates if the operators are required. */
|
|
3547
3761
|
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
3548
|
-
/**
|
|
3762
|
+
/** Flag which indicates if the preferred operators should be loaded. */
|
|
3549
3763
|
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3550
3764
|
/** Operator prioritization for a route. */
|
|
3551
3765
|
operators?: Maybe<RouteOperatorsInput>;
|
|
@@ -3563,7 +3777,7 @@ export declare type RequestRouteInput = {
|
|
|
3563
3777
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
3564
3778
|
/** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
|
|
3565
3779
|
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3566
|
-
/**
|
|
3780
|
+
/** Flag to enable turn-by-turn instructions. */
|
|
3567
3781
|
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3568
3782
|
};
|
|
3569
3783
|
export declare type RequestUser = {
|
|
@@ -3698,7 +3912,7 @@ export declare type RouteAlternative = {
|
|
|
3698
3912
|
chargeTime?: Maybe<Scalars["Float"]>;
|
|
3699
3913
|
/**
|
|
3700
3914
|
* Amenity ranking for an alternative.
|
|
3701
|
-
* @deprecated Will be removed
|
|
3915
|
+
* @deprecated Will be removed.
|
|
3702
3916
|
*/
|
|
3703
3917
|
amenityRanking?: Maybe<Scalars["Int"]>;
|
|
3704
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. */
|
|
@@ -3721,7 +3935,7 @@ export declare type RouteAlternative = {
|
|
|
3721
3935
|
pathPlot?: Maybe<Array<Maybe<PathSegment>>>;
|
|
3722
3936
|
/**
|
|
3723
3937
|
* Elevation values. Each elevationPlot has a hundred points, independent of the length of a route.
|
|
3724
|
-
* @deprecated
|
|
3938
|
+
* @deprecated In favor of `pathPlot`.
|
|
3725
3939
|
*/
|
|
3726
3940
|
elevationPlot?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
3727
3941
|
/** Total number of meters which are going up on a route. */
|
|
@@ -4012,7 +4226,7 @@ export declare type RouteDetailsLegFeatureProperties = {
|
|
|
4012
4226
|
solar_irradiance?: Maybe<Scalars["Float"]>;
|
|
4013
4227
|
/**
|
|
4014
4228
|
* Duration, in seconds, of time spent at this location.
|
|
4015
|
-
* @deprecated In favor of legs.durations
|
|
4229
|
+
* @deprecated In favor of `legs.durations`.
|
|
4016
4230
|
*/
|
|
4017
4231
|
duration?: Maybe<Scalars["Int"]>;
|
|
4018
4232
|
/** Number of occupants present in the vehicle. */
|
|
@@ -4212,7 +4426,7 @@ export declare type RouteDetailsPathSegment = {
|
|
|
4212
4426
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
4213
4427
|
/**
|
|
4214
4428
|
* Maximum vehicle speed of a route path segment.
|
|
4215
|
-
* @deprecated Will be removed
|
|
4429
|
+
* @deprecated Will be removed.
|
|
4216
4430
|
*/
|
|
4217
4431
|
maximum_speed: Scalars["Float"];
|
|
4218
4432
|
};
|
|
@@ -5263,11 +5477,11 @@ export declare type RouteStationOperator = {
|
|
|
5263
5477
|
preference_type: OperatorPreferenceType;
|
|
5264
5478
|
};
|
|
5265
5479
|
export declare type RouteStationPreferences = {
|
|
5266
|
-
/**
|
|
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. */
|
|
5267
5481
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5268
5482
|
};
|
|
5269
5483
|
export declare type RouteStationPreferencesInput = {
|
|
5270
|
-
/**
|
|
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. */
|
|
5271
5485
|
prefer_highway_charging?: Maybe<Scalars["Boolean"]>;
|
|
5272
5486
|
};
|
|
5273
5487
|
export declare type RouteStationWithAmenities = {
|
|
@@ -5630,7 +5844,9 @@ export declare enum RouteWarningCode {
|
|
|
5630
5844
|
/** Operator preferences were ignored because they have not been configured for this project nor provided in the route create request. */
|
|
5631
5845
|
OPERATOR_PREFERENCES_NOT_FOUND = "operator_preferences_not_found",
|
|
5632
5846
|
/** Traffic data for this route is not available. */
|
|
5633
|
-
TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available"
|
|
5847
|
+
TRAFFIC_DATA_NOT_AVAILABLE = "traffic_data_not_available",
|
|
5848
|
+
/** One or more preferred, excluded, or avoided operators have no active stations available and were ignored. */
|
|
5849
|
+
OPERATORS_IGNORED = "operators_ignored"
|
|
5634
5850
|
}
|
|
5635
5851
|
export declare type RouteWeather = {
|
|
5636
5852
|
/** Weather configuration applied to the route. */
|
|
@@ -5726,59 +5942,59 @@ export declare enum StateOfChargeUnit {
|
|
|
5726
5942
|
}
|
|
5727
5943
|
/** Station data which extends OCPI Location. */
|
|
5728
5944
|
export declare type Station = {
|
|
5729
|
-
/** Unique ID of a station.
|
|
5945
|
+
/** Unique ID of a station. */
|
|
5730
5946
|
id: Scalars["ID"];
|
|
5731
|
-
/** ISO-3166 alpha-2 country code of a station.
|
|
5947
|
+
/** ISO-3166 alpha-2 country code of a station. */
|
|
5732
5948
|
country_code?: Maybe<Scalars["String"]>;
|
|
5733
|
-
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard).
|
|
5949
|
+
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). */
|
|
5734
5950
|
party_id?: Maybe<Scalars["String"]>;
|
|
5735
5951
|
/**
|
|
5736
5952
|
* Defines if a location may be published on a website or app etc.
|
|
5737
5953
|
* When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
|
|
5738
|
-
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created.
|
|
5954
|
+
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created.
|
|
5739
5955
|
*/
|
|
5740
5956
|
publish?: Maybe<Scalars["Boolean"]>;
|
|
5741
|
-
/** Name of a charging station.
|
|
5957
|
+
/** Name of a charging station. */
|
|
5742
5958
|
name?: Maybe<Scalars["String"]>;
|
|
5743
|
-
/** Street/block name and house number if available.
|
|
5959
|
+
/** Street/block name and house number if available. */
|
|
5744
5960
|
address?: Maybe<Scalars["String"]>;
|
|
5745
|
-
/** City or town
|
|
5961
|
+
/** City or town */
|
|
5746
5962
|
city?: Maybe<Scalars["String"]>;
|
|
5747
|
-
/** 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.
|
|
5963
|
+
/** 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. */
|
|
5748
5964
|
postal_code?: Maybe<Scalars["String"]>;
|
|
5749
|
-
/** State or province of a location, only to be used when relevant.
|
|
5965
|
+
/** State or province of a location, only to be used when relevant. */
|
|
5750
5966
|
state?: Maybe<Scalars["String"]>;
|
|
5751
|
-
/** ISO 3166-1 alpha-3 code for the country of this station.
|
|
5967
|
+
/** ISO 3166-1 alpha-3 code for the country of this station. */
|
|
5752
5968
|
country?: Maybe<Scalars["String"]>;
|
|
5753
|
-
/** Coordinates of a location.
|
|
5969
|
+
/** Coordinates of a location. */
|
|
5754
5970
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
5755
|
-
/** Geographical location of related points relevant to a user.
|
|
5971
|
+
/** Geographical location of related points relevant to a user. */
|
|
5756
5972
|
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
5757
|
-
/** Type of parking at a charge point location.
|
|
5973
|
+
/** Type of parking at a charge point location. */
|
|
5758
5974
|
parking_type?: Maybe<OCPIParkingType>;
|
|
5759
|
-
/** EVSEs that belong to a station.
|
|
5975
|
+
/** EVSEs that belong to a station. */
|
|
5760
5976
|
evses?: Maybe<Array<Maybe<EVSE>>>;
|
|
5761
|
-
/** Human-readable directions on how to reach a station.
|
|
5977
|
+
/** Human-readable directions on how to reach a station. */
|
|
5762
5978
|
directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
5763
|
-
/** Information about an operator.
|
|
5979
|
+
/** Information about an operator. */
|
|
5764
5980
|
operator?: Maybe<Operator>;
|
|
5765
|
-
/** Information about a suboperator if applicable.
|
|
5981
|
+
/** Information about a suboperator if applicable. */
|
|
5766
5982
|
suboperator?: Maybe<Operator>;
|
|
5767
|
-
/** Information about an owner if available.
|
|
5983
|
+
/** Information about an owner if available. */
|
|
5768
5984
|
owner?: Maybe<Operator>;
|
|
5769
|
-
/** Facilities a charging station belongs to.
|
|
5985
|
+
/** Facilities a charging station belongs to. */
|
|
5770
5986
|
facilities?: Maybe<Array<Maybe<OCPIFacility>>>;
|
|
5771
|
-
/** 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).
|
|
5987
|
+
/** 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). */
|
|
5772
5988
|
time_zone?: Maybe<Scalars["String"]>;
|
|
5773
|
-
/** Times when an EVSEs at a location can be accessed for charging.
|
|
5989
|
+
/** Times when an EVSEs at a location can be accessed for charging. */
|
|
5774
5990
|
opening_times?: Maybe<OCPIHours>;
|
|
5775
|
-
/** 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.
|
|
5991
|
+
/** 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. */
|
|
5776
5992
|
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
5777
|
-
/** Links to images related to a location such as photos or logos.
|
|
5993
|
+
/** Links to images related to a location such as photos or logos. */
|
|
5778
5994
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
5779
|
-
/** Details of the energy supplied at a location.
|
|
5995
|
+
/** Details of the energy supplied at a location. */
|
|
5780
5996
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
5781
|
-
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created).
|
|
5997
|
+
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). */
|
|
5782
5998
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
5783
5999
|
/** ID provided by a station data source. */
|
|
5784
6000
|
external_id?: Maybe<Scalars["String"]>;
|
|
@@ -5866,7 +6082,7 @@ export declare enum StationAdhocAuthorisationPaymentMethod {
|
|
|
5866
6082
|
/** Authentication by car through Auto Charge. */
|
|
5867
6083
|
AUTH_BY_CAR_AUTOCHARGE = "AUTH_BY_CAR_AUTOCHARGE"
|
|
5868
6084
|
}
|
|
5869
|
-
/**
|
|
6085
|
+
/** Criteria to filter stations in the station around query. */
|
|
5870
6086
|
export declare type StationAroundFilter = {
|
|
5871
6087
|
/** GeoJSON Point of the center of the around me circle. */
|
|
5872
6088
|
location?: Maybe<PointInput>;
|
|
@@ -5885,7 +6101,7 @@ export declare type StationAroundFilter = {
|
|
|
5885
6101
|
/** Flag to filter for stations operated by an operator present in the project's ranking list. */
|
|
5886
6102
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5887
6103
|
};
|
|
5888
|
-
/**
|
|
6104
|
+
/** Query parameters to filter stations in the station around query. */
|
|
5889
6105
|
export declare type StationAroundQuery = {
|
|
5890
6106
|
/** GeoJSON Point of the center of the around me circle. */
|
|
5891
6107
|
location?: Maybe<PointInput>;
|
|
@@ -5899,7 +6115,7 @@ export declare type StationAroundQuery = {
|
|
|
5899
6115
|
export declare type StationCustomProperties = {
|
|
5900
6116
|
/**
|
|
5901
6117
|
* Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.
|
|
5902
|
-
* @deprecated In favor of station.reliability_score
|
|
6118
|
+
* @deprecated In favor of `station.reliability_score`.
|
|
5903
6119
|
*/
|
|
5904
6120
|
reliability_score?: Maybe<Scalars["Int"]>;
|
|
5905
6121
|
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
@@ -5951,7 +6167,7 @@ export declare type StationHeavyVehiclesRestrictionslengthArgs = {
|
|
|
5951
6167
|
export declare type StationHeavyVehiclesRestrictionsmassArgs = {
|
|
5952
6168
|
unit?: Maybe<WeightUnit>;
|
|
5953
6169
|
};
|
|
5954
|
-
/**
|
|
6170
|
+
/** Criteria to filter stations in the station list query. */
|
|
5955
6171
|
export declare type StationListFilter = {
|
|
5956
6172
|
/** Powers in kW. */
|
|
5957
6173
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
@@ -5966,7 +6182,7 @@ export declare type StationListFilter = {
|
|
|
5966
6182
|
/** Flag to filter for stations operated by an operator present in the project's ranking list. */
|
|
5967
6183
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5968
6184
|
};
|
|
5969
|
-
/**
|
|
6185
|
+
/** Query parameters to filter stations in the station list query. */
|
|
5970
6186
|
export declare type StationListQuery = {
|
|
5971
6187
|
/** ID of the station. */
|
|
5972
6188
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -6065,12 +6281,15 @@ export declare enum StepType {
|
|
|
6065
6281
|
CROSSBORDER = "crossborder"
|
|
6066
6282
|
}
|
|
6067
6283
|
export declare type Subscription = {
|
|
6068
|
-
/**
|
|
6284
|
+
/**
|
|
6285
|
+
* Subscribe to a specific route to receive system event updates.
|
|
6286
|
+
* @deprecated In favor of `route`.
|
|
6287
|
+
*/
|
|
6069
6288
|
routeUpdatedById?: Maybe<Route>;
|
|
6070
6289
|
/** Subscribe to a specific route to receive system event updates. */
|
|
6071
6290
|
route: RouteResponse;
|
|
6072
|
-
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates */
|
|
6073
|
-
|
|
6291
|
+
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates. */
|
|
6292
|
+
navigation?: Maybe<NavigationSubscription>;
|
|
6074
6293
|
/** [BETA] Subscribe to a connected vehicle. */
|
|
6075
6294
|
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
6076
6295
|
/** Subscribe to an isoline in order to receive updates. */
|
|
@@ -6082,7 +6301,7 @@ export declare type SubscriptionrouteUpdatedByIdArgs = {
|
|
|
6082
6301
|
export declare type SubscriptionrouteArgs = {
|
|
6083
6302
|
id: Scalars["ID"];
|
|
6084
6303
|
};
|
|
6085
|
-
export declare type
|
|
6304
|
+
export declare type SubscriptionnavigationArgs = {
|
|
6086
6305
|
id: Scalars["ID"];
|
|
6087
6306
|
};
|
|
6088
6307
|
export declare type SubscriptionconnectedVehicleArgs = {
|
|
@@ -6130,8 +6349,6 @@ export declare type Telemetry = {
|
|
|
6130
6349
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
6131
6350
|
/** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear. */
|
|
6132
6351
|
tire_pressure?: Maybe<Array<Scalars["Float"]>>;
|
|
6133
|
-
/** UNIX timestamp in seconds. */
|
|
6134
|
-
timestamp?: Maybe<Scalars["Int"]>;
|
|
6135
6352
|
/** Value of the vehicle speed. */
|
|
6136
6353
|
vehicle_speed?: Maybe<Scalars["Float"]>;
|
|
6137
6354
|
/** Custom input fields can be added based on telemetry architecture. */
|
|
@@ -6215,8 +6432,6 @@ export declare type TelemetryInput = {
|
|
|
6215
6432
|
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
6216
6433
|
/** Average tire pressures of all wheels, starting from the front side right to left and to the rear. */
|
|
6217
6434
|
tire_pressure?: Maybe<TirePressureInput>;
|
|
6218
|
-
/** UNIX timestamp in seconds. */
|
|
6219
|
-
timestamp?: Maybe<Scalars["Int"]>;
|
|
6220
6435
|
/** Vehicle speed. */
|
|
6221
6436
|
vehicle_speed?: Maybe<VehicleSpeedInput>;
|
|
6222
6437
|
/** Custom input fields can be added based on telemetry architecture. */
|
|
@@ -6452,7 +6667,7 @@ export declare type VehicleConnector = {
|
|
|
6452
6667
|
time: Scalars["Int"];
|
|
6453
6668
|
/**
|
|
6454
6669
|
* Charging speed.
|
|
6455
|
-
* @deprecated In favor of charge_speed
|
|
6670
|
+
* @deprecated In favor of `charge_speed`.
|
|
6456
6671
|
*/
|
|
6457
6672
|
speed: Scalars["Float"];
|
|
6458
6673
|
/** Charging speed. */
|
|
@@ -6643,7 +6858,7 @@ export declare type VehicleListMedia = {
|
|
|
6643
6858
|
image: VehicleImage;
|
|
6644
6859
|
/**
|
|
6645
6860
|
* Latest make logo of the vehicle.
|
|
6646
|
-
* @deprecated In favor of make
|
|
6861
|
+
* @deprecated In favor of `make`.
|
|
6647
6862
|
*/
|
|
6648
6863
|
brand: VehicleImage;
|
|
6649
6864
|
/** Latest make logo of the vehicle. */
|
|
@@ -6693,7 +6908,7 @@ export declare type VehicleMedia = {
|
|
|
6693
6908
|
image: VehicleImage;
|
|
6694
6909
|
/**
|
|
6695
6910
|
* Latest make logo.
|
|
6696
|
-
* @deprecated In favor of make
|
|
6911
|
+
* @deprecated In favor of `make`.
|
|
6697
6912
|
*/
|
|
6698
6913
|
brand: VehicleImage;
|
|
6699
6914
|
/** Latest make logo. */
|
|
@@ -7298,7 +7513,7 @@ export declare type VehiclePremiumMedia = {
|
|
|
7298
7513
|
image: VehicleImage;
|
|
7299
7514
|
/**
|
|
7300
7515
|
* Latest make logo.
|
|
7301
|
-
* @deprecated In favor of make
|
|
7516
|
+
* @deprecated In favor of `make`.
|
|
7302
7517
|
*/
|
|
7303
7518
|
brand: VehicleImage;
|
|
7304
7519
|
/** Latest make logo. */
|