@chargetrip/types 1.32.0 → 1.33.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/CHANGELOG.md +248 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +132 -99
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +132 -99
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +1467 -1255
- package/graphql.schema.json +374 -119
- package/package.json +1 -2
- package/src/graphql.ts +88 -29
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare type Scalars = {
|
|
|
19
19
|
Float: number;
|
|
20
20
|
/** The date and time scalar */
|
|
21
21
|
DateTime: string;
|
|
22
|
-
/** Any JSON object
|
|
22
|
+
/** Any JSON object */
|
|
23
23
|
JSON: {
|
|
24
24
|
[key: string]: number | string | boolean | null | Scalars["JSON"];
|
|
25
25
|
};
|
|
@@ -30,34 +30,34 @@ export declare type Scalars = {
|
|
|
30
30
|
PlainString: any;
|
|
31
31
|
/** The File Upload scalar */
|
|
32
32
|
Upload: any;
|
|
33
|
-
/**
|
|
33
|
+
/** Returns null */
|
|
34
34
|
Void: any;
|
|
35
35
|
};
|
|
36
36
|
export declare enum AccessType {
|
|
37
|
-
PRIVATE = "Private",
|
|
38
37
|
PUBLIC = "Public",
|
|
39
|
-
RESTRICTED = "Restricted"
|
|
38
|
+
RESTRICTED = "Restricted",
|
|
39
|
+
PRIVATE = "Private"
|
|
40
40
|
}
|
|
41
41
|
/** Information about an address */
|
|
42
42
|
export declare type Address = {
|
|
43
|
-
/** City */
|
|
44
|
-
city?: Maybe<Scalars["String"]>;
|
|
45
43
|
/** Continent code (2 letters) */
|
|
46
44
|
continent?: Maybe<Scalars["String"]>;
|
|
47
45
|
/** Country code (2 letters) */
|
|
48
46
|
country?: Maybe<Scalars["String"]>;
|
|
49
47
|
/** County code (2 letters) */
|
|
50
48
|
county?: Maybe<Scalars["String"]>;
|
|
51
|
-
/**
|
|
52
|
-
|
|
49
|
+
/** City */
|
|
50
|
+
city?: Maybe<Scalars["String"]>;
|
|
51
|
+
/** Street name */
|
|
52
|
+
street?: Maybe<Scalars["String"]>;
|
|
53
53
|
/** Street number */
|
|
54
54
|
number?: Maybe<Scalars["String"]>;
|
|
55
55
|
/** Postal code of a location */
|
|
56
56
|
postalCode?: Maybe<Scalars["String"]>;
|
|
57
|
-
/** Street name */
|
|
58
|
-
street?: Maybe<Scalars["String"]>;
|
|
59
57
|
/** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words> */
|
|
60
58
|
what3Words?: Maybe<Scalars["String"]>;
|
|
59
|
+
/** Human-readable address of a location */
|
|
60
|
+
formattedAddress?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
61
61
|
};
|
|
62
62
|
export declare enum AdhocAuthorisationMethod {
|
|
63
63
|
CREDIT_CARD = "CREDIT_CARD",
|
|
@@ -71,207 +71,217 @@ export declare enum AdhocAuthorisationMethod {
|
|
|
71
71
|
}
|
|
72
72
|
/** Amenities available near a station */
|
|
73
73
|
export declare enum Amenities {
|
|
74
|
-
BATHROOM = "bathroom",
|
|
75
|
-
COFFEE = "coffee",
|
|
76
|
-
HOTEL = "hotel",
|
|
77
|
-
MUSEUM = "museum",
|
|
78
74
|
PARK = "park",
|
|
79
|
-
PHARMACY = "pharmacy",
|
|
80
|
-
PLAYGROUND = "playground",
|
|
81
75
|
RESTAURANT = "restaurant",
|
|
76
|
+
MUSEUM = "museum",
|
|
77
|
+
COFFEE = "coffee",
|
|
78
|
+
HOTEL = "hotel",
|
|
82
79
|
SHOPPING = "shopping",
|
|
83
|
-
|
|
80
|
+
BATHROOM = "bathroom",
|
|
81
|
+
SUPERMARKET = "supermarket",
|
|
82
|
+
PLAYGROUND = "playground",
|
|
83
|
+
PHARMACY = "pharmacy"
|
|
84
84
|
}
|
|
85
85
|
/** The amenity model */
|
|
86
86
|
export declare type Amenity = {
|
|
87
|
-
/** Embedded Address */
|
|
88
|
-
address?: Maybe<Address>;
|
|
89
|
-
/** Date and time when an amenity was created */
|
|
90
|
-
createdAt?: Maybe<Scalars["String"]>;
|
|
91
|
-
/** Computed distance between station and amenity */
|
|
92
|
-
distance?: Maybe<Scalars["Int"]>;
|
|
93
|
-
/** ID provided by an amenity data source as the row ID */
|
|
94
|
-
externalId?: Maybe<Scalars["String"]>;
|
|
95
|
-
/** Full path URL to amenity foursquare page */
|
|
96
|
-
foursquareUrl?: Maybe<Scalars["String"]>;
|
|
97
87
|
/** Unique amenity ID */
|
|
98
88
|
id?: Maybe<Scalars["ID"]>;
|
|
99
|
-
/**
|
|
100
|
-
|
|
89
|
+
/** ID provided by an amenity data source as the row ID */
|
|
90
|
+
externalId?: Maybe<Scalars["String"]>;
|
|
101
91
|
/** Name of an amenity */
|
|
102
92
|
name?: Maybe<Scalars["String"]>;
|
|
103
|
-
/**
|
|
104
|
-
|
|
93
|
+
/** Geo location coordinates. This is a GeoJSON Point */
|
|
94
|
+
location?: Maybe<Point>;
|
|
95
|
+
/** Embedded Address */
|
|
96
|
+
address?: Maybe<Address>;
|
|
105
97
|
/** Type of amenity. An amenity can belong to multiple categories */
|
|
106
98
|
type?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
99
|
+
/** Rating of an amenity, the value will be between 0.0 and 10.0. If no rating has been given, the value will be set to null */
|
|
100
|
+
rating?: Maybe<Scalars["Float"]>;
|
|
101
|
+
/** Computed distance between station and amenity */
|
|
102
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
103
|
+
/** Full path URL to amenity foursquare page */
|
|
104
|
+
foursquareUrl?: Maybe<Scalars["String"]>;
|
|
105
|
+
/** Date and time when an amenity was created */
|
|
106
|
+
createdAt?: Maybe<Scalars["String"]>;
|
|
107
107
|
/** Date and time when an amenity was last updated */
|
|
108
108
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
109
109
|
};
|
|
110
110
|
/** Amenities stats model */
|
|
111
111
|
export declare type AmenityStats = {
|
|
112
|
-
/** The total number of stations with the specified amenity */
|
|
113
|
-
total?: Maybe<Scalars["Int"]>;
|
|
114
112
|
/** The amenity type */
|
|
115
113
|
type?: Maybe<Scalars["String"]>;
|
|
114
|
+
/** The total number of stations with the specified amenity */
|
|
115
|
+
total?: Maybe<Scalars["Int"]>;
|
|
116
|
+
};
|
|
117
|
+
export declare type AuthorizeConnectedVehicleInput = {
|
|
118
|
+
/** Id from the connected vehicle */
|
|
119
|
+
id: Scalars["ID"];
|
|
120
|
+
/** Provider specific options. See the developer portal for more details */
|
|
121
|
+
options: AuthorizeConnectedVehicleOptions;
|
|
116
122
|
};
|
|
117
|
-
|
|
123
|
+
export declare type AuthorizeConnectedVehicleOptions = {
|
|
124
|
+
/** OAuth code returned as a query parameter on the OAuth callback */
|
|
125
|
+
code?: Maybe<Scalars["PlainString"]>;
|
|
126
|
+
};
|
|
127
|
+
/** The type of the battery value */
|
|
118
128
|
export declare enum BatteryInputType {
|
|
119
|
-
KM = "km",
|
|
120
129
|
KWH = "kwh",
|
|
130
|
+
KM = "km",
|
|
121
131
|
MILES = "miles",
|
|
122
132
|
PERCENTAGE = "percentage"
|
|
123
133
|
}
|
|
124
134
|
/** Output of a car query */
|
|
125
135
|
export declare type Car = {
|
|
126
|
-
/**
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
136
|
+
/** Cars unique ID */
|
|
137
|
+
id?: Maybe<Scalars["ID"]>;
|
|
138
|
+
/** Naming of a car */
|
|
139
|
+
naming?: Maybe<CarNaming>;
|
|
140
|
+
/** Available connectors for a car */
|
|
141
|
+
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
131
142
|
/** List of adapters of connectors available for a car */
|
|
132
143
|
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
133
|
-
/** Availability of a car */
|
|
134
|
-
availability?: Maybe<CarAvailability>;
|
|
135
144
|
/** Battery of a car */
|
|
136
145
|
battery?: Maybe<CarBattery>;
|
|
146
|
+
/** Body of a car */
|
|
147
|
+
body?: Maybe<CarBody>;
|
|
148
|
+
/** Availability of a car */
|
|
149
|
+
availability?: Maybe<CarAvailability>;
|
|
150
|
+
/** Performance of a car */
|
|
151
|
+
performance?: Maybe<CarPerformance>;
|
|
152
|
+
/** Range of a car */
|
|
153
|
+
range?: Maybe<CarRange>;
|
|
154
|
+
/** Media of a car */
|
|
155
|
+
media?: Maybe<CarMedia>;
|
|
156
|
+
/** Routing of a car */
|
|
157
|
+
routing?: Maybe<CarRouting>;
|
|
158
|
+
/** Information about vehicle connectivity */
|
|
159
|
+
connect?: Maybe<Connect>;
|
|
137
160
|
/**
|
|
138
|
-
*
|
|
139
|
-
* @deprecated
|
|
140
|
-
*/
|
|
141
|
-
batteryEfficiency?: Maybe<CarBatteryEfficiency>;
|
|
142
|
-
/**
|
|
143
|
-
* Full battery capacity in kWh
|
|
144
|
-
* @deprecated In favor of battery.full_kwh
|
|
161
|
+
* ID provided by a car data source as the row ID
|
|
162
|
+
* @deprecated Will be removed in the future
|
|
145
163
|
*/
|
|
146
|
-
|
|
164
|
+
externalId?: Maybe<Scalars["String"]>;
|
|
147
165
|
/**
|
|
148
|
-
*
|
|
149
|
-
* @deprecated In favor of
|
|
166
|
+
* Car manufacturer
|
|
167
|
+
* @deprecated In favor of naming.make
|
|
150
168
|
*/
|
|
151
|
-
|
|
152
|
-
/** Body of a car */
|
|
153
|
-
body?: Maybe<CarBody>;
|
|
169
|
+
make?: Maybe<Scalars["String"]>;
|
|
154
170
|
/**
|
|
155
171
|
* Car model
|
|
156
172
|
* @deprecated In favor of naming.model
|
|
157
173
|
*/
|
|
158
174
|
carModel?: Maybe<Scalars["String"]>;
|
|
175
|
+
/**
|
|
176
|
+
* Car edition
|
|
177
|
+
* @deprecated In favor of naming.version
|
|
178
|
+
*/
|
|
179
|
+
edition?: Maybe<Scalars["String"]>;
|
|
159
180
|
/**
|
|
160
181
|
* Car model edition. Added by Chargetrip as an alternative for when a car manufacturer does not provide an edition name, or uses the same edition name across all trims or consecutive years
|
|
161
182
|
* @deprecated In favor of naming.chargetrip_version
|
|
162
183
|
*/
|
|
163
184
|
chargetripEdition?: Maybe<Scalars["String"]>;
|
|
185
|
+
/**
|
|
186
|
+
* Car version
|
|
187
|
+
* @deprecated In favor of naming.edition
|
|
188
|
+
*/
|
|
189
|
+
version?: Maybe<Scalars["String"]>;
|
|
164
190
|
/**
|
|
165
191
|
* Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data
|
|
166
192
|
* @deprecated In favor of range.chargetrip_range
|
|
167
193
|
*/
|
|
168
194
|
chargetripRange?: Maybe<ChargetripRange>;
|
|
169
195
|
/**
|
|
170
|
-
*
|
|
171
|
-
* @deprecated
|
|
172
|
-
*/
|
|
173
|
-
chargingOffset?: Maybe<Scalars["JSON"]>;
|
|
174
|
-
/** Information about vehicle connectivity */
|
|
175
|
-
connect?: Maybe<Connect>;
|
|
176
|
-
/** Available connectors for a car */
|
|
177
|
-
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
178
|
-
/**
|
|
179
|
-
* Extra consumption model
|
|
180
|
-
* @deprecated In favor of routing.consumption
|
|
196
|
+
* Cars that support fast charging have a minimum charging speed of 43 kWh
|
|
197
|
+
* @deprecated In favor of routing.fast_charging_support
|
|
181
198
|
*/
|
|
182
|
-
|
|
199
|
+
fastChargingSupport?: Maybe<Scalars["Boolean"]>;
|
|
183
200
|
/**
|
|
184
|
-
*
|
|
185
|
-
* @deprecated In favor of
|
|
201
|
+
* Current production mode of a car
|
|
202
|
+
* @deprecated In favor of availability.status
|
|
186
203
|
*/
|
|
187
|
-
|
|
204
|
+
mode?: Maybe<CarMode>;
|
|
188
205
|
/**
|
|
189
|
-
*
|
|
190
|
-
* @deprecated
|
|
206
|
+
* Number of seats
|
|
207
|
+
* @deprecated In favor of body.seats
|
|
191
208
|
*/
|
|
192
|
-
|
|
209
|
+
seats?: Maybe<Scalars["Int"]>;
|
|
193
210
|
/**
|
|
194
|
-
*
|
|
195
|
-
* @deprecated In favor of
|
|
211
|
+
* Weight in kg
|
|
212
|
+
* @deprecated In favor of body.weight
|
|
196
213
|
*/
|
|
197
|
-
|
|
214
|
+
weight?: Maybe<Scalars["Float"]>;
|
|
198
215
|
/**
|
|
199
216
|
* Height in mm
|
|
200
217
|
* @deprecated In favor of body.height
|
|
201
218
|
*/
|
|
202
219
|
height?: Maybe<Scalars["Int"]>;
|
|
203
|
-
/** Cars unique ID */
|
|
204
|
-
id?: Maybe<Scalars["ID"]>;
|
|
205
220
|
/**
|
|
206
|
-
*
|
|
207
|
-
* @deprecated In favor of
|
|
221
|
+
* Width in mm
|
|
222
|
+
* @deprecated In favor of body.width
|
|
208
223
|
*/
|
|
209
|
-
|
|
224
|
+
width?: Maybe<Scalars["Int"]>;
|
|
210
225
|
/**
|
|
211
|
-
*
|
|
212
|
-
* @deprecated In favor of
|
|
226
|
+
* Usable battery capacity in kWh
|
|
227
|
+
* @deprecated In favor of battery.usable_kwh
|
|
213
228
|
*/
|
|
214
|
-
|
|
229
|
+
batteryUsableKwh?: Maybe<Scalars["Float"]>;
|
|
215
230
|
/**
|
|
216
|
-
*
|
|
217
|
-
* @deprecated In favor of
|
|
231
|
+
* Full battery capacity in kWh
|
|
232
|
+
* @deprecated In favor of battery.full_kwh
|
|
218
233
|
*/
|
|
219
|
-
|
|
220
|
-
/** Media of a car */
|
|
221
|
-
media?: Maybe<CarMedia>;
|
|
234
|
+
batteryFullKwh?: Maybe<Scalars["Float"]>;
|
|
222
235
|
/**
|
|
223
|
-
*
|
|
224
|
-
* @deprecated In favor of
|
|
236
|
+
* Battery efficiency in the city, highway and combined depending on weather conditions
|
|
237
|
+
* @deprecated In favor of efficiency
|
|
225
238
|
*/
|
|
226
|
-
|
|
227
|
-
/** Naming of a car */
|
|
228
|
-
naming?: Maybe<CarNaming>;
|
|
229
|
-
/** Performance of a car */
|
|
230
|
-
performance?: Maybe<CarPerformance>;
|
|
239
|
+
batteryEfficiency?: Maybe<CarBatteryEfficiency>;
|
|
231
240
|
/**
|
|
232
|
-
*
|
|
233
|
-
* @deprecated In favor of
|
|
241
|
+
* Acceleration time from 0 to 100 km/h
|
|
242
|
+
* @deprecated In favor of performance.acceleration
|
|
234
243
|
*/
|
|
235
|
-
|
|
244
|
+
acceleration?: Maybe<Scalars["Float"]>;
|
|
245
|
+
/**
|
|
246
|
+
* Maximum car speed in km/h
|
|
247
|
+
* @deprecated In favor of performance.top_speed
|
|
248
|
+
*/
|
|
249
|
+
topSpeed?: Maybe<Scalars["Float"]>;
|
|
236
250
|
/**
|
|
237
251
|
* Power of a car in Kw
|
|
238
252
|
* @deprecated In favor of drivetrain.power
|
|
239
253
|
*/
|
|
240
254
|
power?: Maybe<Scalars["Float"]>;
|
|
241
|
-
/** Range of a car */
|
|
242
|
-
range?: Maybe<CarRange>;
|
|
243
|
-
/** Routing of a car */
|
|
244
|
-
routing?: Maybe<CarRouting>;
|
|
245
255
|
/**
|
|
246
|
-
*
|
|
247
|
-
* @deprecated In favor of
|
|
256
|
+
* Engine torque
|
|
257
|
+
* @deprecated In favor of drivetrain.torque
|
|
248
258
|
*/
|
|
249
|
-
|
|
259
|
+
torque?: Maybe<Scalars["Float"]>;
|
|
250
260
|
/**
|
|
251
|
-
*
|
|
252
|
-
* @deprecated In favor of
|
|
261
|
+
* Extra consumption model
|
|
262
|
+
* @deprecated In favor of routing.consumption
|
|
253
263
|
*/
|
|
254
|
-
|
|
264
|
+
consumption?: Maybe<CarExtraConsumption>;
|
|
255
265
|
/**
|
|
256
|
-
*
|
|
257
|
-
* @deprecated In favor of
|
|
266
|
+
* Amount of petrol a similar petrol car would consume per 100 km
|
|
267
|
+
* @deprecated In favor of routing.petrol_consumption
|
|
258
268
|
*/
|
|
259
|
-
|
|
269
|
+
petrolConsumption?: Maybe<Scalars["Float"]>;
|
|
260
270
|
/**
|
|
261
|
-
*
|
|
262
|
-
* @deprecated
|
|
271
|
+
* A list of offset data for different charging speeds
|
|
272
|
+
* @deprecated You will receive null values
|
|
263
273
|
*/
|
|
264
|
-
|
|
274
|
+
chargingOffset?: Maybe<Scalars["JSON"]>;
|
|
265
275
|
/**
|
|
266
|
-
*
|
|
267
|
-
* @deprecated In favor of
|
|
276
|
+
* Images of a car
|
|
277
|
+
* @deprecated In favor of media.image_list
|
|
268
278
|
*/
|
|
269
|
-
|
|
279
|
+
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
270
280
|
/**
|
|
271
|
-
*
|
|
272
|
-
* @deprecated In favor of
|
|
281
|
+
* Images of a car in structured data
|
|
282
|
+
* @deprecated In favor of media.image or media.brand
|
|
273
283
|
*/
|
|
274
|
-
|
|
284
|
+
imagesData?: Maybe<CarImageData>;
|
|
275
285
|
};
|
|
276
286
|
export declare type CarAvailability = {
|
|
277
287
|
/**
|
|
@@ -291,19 +301,19 @@ export declare type CarAvailability = {
|
|
|
291
301
|
status?: Maybe<Scalars["Int"]>;
|
|
292
302
|
};
|
|
293
303
|
export declare type CarBattery = {
|
|
294
|
-
/** Full battery capacity in kWh */
|
|
295
|
-
full_kwh?: Maybe<Scalars["Float"]>;
|
|
296
304
|
/** Usable battery capacity in kWh */
|
|
297
305
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
306
|
+
/** Full battery capacity in kWh */
|
|
307
|
+
full_kwh?: Maybe<Scalars["Float"]>;
|
|
298
308
|
};
|
|
299
309
|
/** Deprecated */
|
|
300
310
|
export declare type CarBatteryEfficiency = {
|
|
301
311
|
/** Average efficiency measured in kWh/100 km */
|
|
302
312
|
average?: Maybe<Scalars["Float"]>;
|
|
303
|
-
/** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km */
|
|
304
|
-
best?: Maybe<CarEstimationData>;
|
|
305
313
|
/** Worst conditions are based on -10°C and use of heating, measured in kWh/100 km */
|
|
306
314
|
worst?: Maybe<CarEstimationData>;
|
|
315
|
+
/** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km */
|
|
316
|
+
best?: Maybe<CarEstimationData>;
|
|
307
317
|
};
|
|
308
318
|
/** Battery field estimated */
|
|
309
319
|
export declare enum CarBatteryFieldEstimations {
|
|
@@ -317,29 +327,32 @@ export declare enum CarBatteryFieldEstimations {
|
|
|
317
327
|
U = "U"
|
|
318
328
|
}
|
|
319
329
|
export declare type CarBody = {
|
|
330
|
+
/** Width with folded mirrors in mm */
|
|
331
|
+
width?: Maybe<Scalars["Int"]>;
|
|
320
332
|
/** Height (average height for adjustable suspensions) in mm */
|
|
321
333
|
height?: Maybe<Scalars["Int"]>;
|
|
322
|
-
/** Number of seats */
|
|
323
|
-
seats?: Maybe<Scalars["Int"]>;
|
|
324
334
|
/** Weight Unladen EU) in kg */
|
|
325
335
|
weight?: Maybe<Scalars["Int"]>;
|
|
326
|
-
/**
|
|
327
|
-
|
|
336
|
+
/** Number of seats */
|
|
337
|
+
seats?: Maybe<Scalars["Int"]>;
|
|
328
338
|
};
|
|
339
|
+
export declare enum CarConnectivityProvider {
|
|
340
|
+
ENODE = "Enode"
|
|
341
|
+
}
|
|
329
342
|
/** Deprecated */
|
|
330
343
|
export declare type CarConsumption = {
|
|
331
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
332
|
-
best?: Maybe<Scalars["Float"]>;
|
|
333
344
|
/** Worst conditions are based on -10°C and use of heating */
|
|
334
345
|
worst?: Maybe<Scalars["Float"]>;
|
|
346
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
347
|
+
best?: Maybe<Scalars["Float"]>;
|
|
335
348
|
};
|
|
336
349
|
/** The consumption of the car */
|
|
337
350
|
export declare type CarConsumptionInput = {
|
|
338
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
339
|
-
best?: Maybe<Scalars["Float"]>;
|
|
340
351
|
/** Worst conditions are based on -10°C and use of heating */
|
|
341
352
|
worst?: Maybe<Scalars["Float"]>;
|
|
342
|
-
|
|
353
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
354
|
+
best?: Maybe<Scalars["Float"]>;
|
|
355
|
+
};
|
|
343
356
|
/** Drivetrain */
|
|
344
357
|
export declare enum CarDrivetrain {
|
|
345
358
|
/** Battery Electric Car */
|
|
@@ -349,12 +362,12 @@ export declare enum CarDrivetrain {
|
|
|
349
362
|
}
|
|
350
363
|
/** Deprecated */
|
|
351
364
|
export declare type CarEstimationData = {
|
|
365
|
+
/** Estimated battery efficiency on a highway or express roads, in km */
|
|
366
|
+
highway?: Maybe<Scalars["Float"]>;
|
|
352
367
|
/** Estimated battery efficiency on city roads, in km */
|
|
353
368
|
city?: Maybe<Scalars["Float"]>;
|
|
354
369
|
/** Estimated battery efficiency on highway and city roads combined, in km */
|
|
355
370
|
combined?: Maybe<Scalars["Float"]>;
|
|
356
|
-
/** Estimated battery efficiency on a highway or express roads, in km */
|
|
357
|
-
highway?: Maybe<Scalars["Float"]>;
|
|
358
371
|
};
|
|
359
372
|
/** Deprecated */
|
|
360
373
|
export declare type CarExtraConsumption = {
|
|
@@ -371,46 +384,46 @@ export declare enum CarFuel {
|
|
|
371
384
|
E = "E"
|
|
372
385
|
}
|
|
373
386
|
export declare type CarImage = {
|
|
374
|
-
/** Height of a large image in pixels */
|
|
375
|
-
height?: Maybe<Scalars["Int"]>;
|
|
376
387
|
/** Image id */
|
|
377
388
|
id?: Maybe<Scalars["ID"]>;
|
|
378
|
-
/** Height of a thumbnail image in pixels */
|
|
379
|
-
thumbnail_height?: Maybe<Scalars["Int"]>;
|
|
380
|
-
/** Full path URL of a thumbnail image */
|
|
381
|
-
thumbnail_url?: Maybe<Scalars["String"]>;
|
|
382
|
-
/** Width of a thumbnail image in pixels */
|
|
383
|
-
thumbnail_width?: Maybe<Scalars["Int"]>;
|
|
384
389
|
/** Image type */
|
|
385
390
|
type?: Maybe<CarImageType>;
|
|
386
391
|
/** Full path URL of a large image */
|
|
387
392
|
url?: Maybe<Scalars["String"]>;
|
|
393
|
+
/** Height of a large image in pixels */
|
|
394
|
+
height?: Maybe<Scalars["Int"]>;
|
|
388
395
|
/** Width of a large image in pixels */
|
|
389
396
|
width?: Maybe<Scalars["Int"]>;
|
|
397
|
+
/** Full path URL of a thumbnail image */
|
|
398
|
+
thumbnail_url?: Maybe<Scalars["String"]>;
|
|
399
|
+
/** Height of a thumbnail image in pixels */
|
|
400
|
+
thumbnail_height?: Maybe<Scalars["Int"]>;
|
|
401
|
+
/** Width of a thumbnail image in pixels */
|
|
402
|
+
thumbnail_width?: Maybe<Scalars["Int"]>;
|
|
390
403
|
};
|
|
391
404
|
/** Deprecated */
|
|
392
405
|
export declare type CarImageData = {
|
|
393
|
-
/** Full size logo of the maker of a car */
|
|
394
|
-
brand?: Maybe<CarImage>;
|
|
395
|
-
/** Thumbnail of a full size logo of the maker of a car */
|
|
396
|
-
brand_thumbnail?: Maybe<CarImage>;
|
|
397
406
|
/** Full size image of a car */
|
|
398
407
|
image?: Maybe<CarImage>;
|
|
399
408
|
/** Thumbnail of a full size image */
|
|
400
409
|
image_thumbnail?: Maybe<CarImage>;
|
|
410
|
+
/** Full size logo of the maker of a car */
|
|
411
|
+
brand?: Maybe<CarImage>;
|
|
412
|
+
/** Thumbnail of a full size logo of the maker of a car */
|
|
413
|
+
brand_thumbnail?: Maybe<CarImage>;
|
|
401
414
|
};
|
|
402
415
|
/** Available types of images which can be found for a car. Each type has specific image sizes */
|
|
403
416
|
export declare enum CarImageType {
|
|
404
|
-
/**
|
|
405
|
-
|
|
406
|
-
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
407
|
-
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
417
|
+
/** Images provided by a Car Datasource */
|
|
418
|
+
PROVIDER = "provider",
|
|
408
419
|
/** Full-sized image at 1536x864 px */
|
|
409
420
|
IMAGE = "image",
|
|
410
421
|
/** Thumbnail of a full-sized image at 131x72 px */
|
|
411
422
|
IMAGE_THUMBNAIL = "image_thumbnail",
|
|
412
|
-
/**
|
|
413
|
-
|
|
423
|
+
/** Full-sized brand (maker) logo at 768x432 px */
|
|
424
|
+
BRAND = "brand",
|
|
425
|
+
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
426
|
+
BRAND_THUMBNAIL = "brand_thumbnail"
|
|
414
427
|
}
|
|
415
428
|
/** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
416
429
|
export declare enum CarImageTypeUploadable {
|
|
@@ -419,131 +432,131 @@ export declare enum CarImageTypeUploadable {
|
|
|
419
432
|
}
|
|
420
433
|
/** The output element of the carList query */
|
|
421
434
|
export declare type CarList = {
|
|
422
|
-
/**
|
|
423
|
-
|
|
435
|
+
/** Cars unique ID */
|
|
436
|
+
id?: Maybe<Scalars["ID"]>;
|
|
437
|
+
/** Naming of a car */
|
|
438
|
+
naming?: Maybe<CarListNaming>;
|
|
439
|
+
/** Connectors available for a car */
|
|
440
|
+
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
424
441
|
/** Adapters of connectors available for a car */
|
|
425
442
|
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
426
|
-
/** @deprecated You will receive null values */
|
|
427
|
-
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
428
|
-
/** Availability of a car */
|
|
429
|
-
availability?: Maybe<CarListAvailability>;
|
|
430
443
|
/** Battery of a car */
|
|
431
444
|
battery?: Maybe<CarListBattery>;
|
|
432
|
-
/**
|
|
433
|
-
|
|
445
|
+
/** Body of a car */
|
|
446
|
+
body?: Maybe<CarListBody>;
|
|
447
|
+
/** Availability of a car */
|
|
448
|
+
availability?: Maybe<CarListAvailability>;
|
|
449
|
+
/** Range of a car */
|
|
450
|
+
range?: Maybe<CarListRange>;
|
|
451
|
+
/** Media of a car */
|
|
452
|
+
media?: Maybe<CarListMedia>;
|
|
453
|
+
/** Routing of a car */
|
|
454
|
+
routing?: Maybe<CarListRouting>;
|
|
455
|
+
/** Information about vehicle connectivity */
|
|
456
|
+
connect?: Maybe<Connect>;
|
|
434
457
|
/**
|
|
435
|
-
*
|
|
436
|
-
* @deprecated
|
|
458
|
+
* ID provided by a car data source as the row ID
|
|
459
|
+
* @deprecated Will be removed in the future
|
|
437
460
|
*/
|
|
438
|
-
|
|
461
|
+
externalId?: Maybe<Scalars["String"]>;
|
|
439
462
|
/**
|
|
440
|
-
*
|
|
441
|
-
* @deprecated In favor of
|
|
463
|
+
* Car manufacturer
|
|
464
|
+
* @deprecated In favor of naming.make
|
|
442
465
|
*/
|
|
443
|
-
|
|
444
|
-
/** @deprecated You will receive null values */
|
|
445
|
-
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
446
|
-
/** Body of a car */
|
|
447
|
-
body?: Maybe<CarListBody>;
|
|
466
|
+
make?: Maybe<Scalars["String"]>;
|
|
448
467
|
/**
|
|
449
468
|
* Car model
|
|
450
469
|
* @deprecated In favor of naming.model
|
|
451
470
|
*/
|
|
452
471
|
carModel?: Maybe<Scalars["String"]>;
|
|
472
|
+
/**
|
|
473
|
+
* Car edition
|
|
474
|
+
* @deprecated In favor of naming.version
|
|
475
|
+
*/
|
|
476
|
+
edition?: Maybe<Scalars["String"]>;
|
|
453
477
|
/**
|
|
454
478
|
* Car model edition. Added by Chargetrip as an alternative for when a car manufacturer does not provide an edition name, or uses the same edition name across all trims or consecutive years
|
|
455
479
|
* @deprecated In favor of naming.chargetrip_version
|
|
456
480
|
*/
|
|
457
481
|
chargetripEdition?: Maybe<Scalars["String"]>;
|
|
482
|
+
/**
|
|
483
|
+
* Car version
|
|
484
|
+
* @deprecated In favor of naming.edition
|
|
485
|
+
*/
|
|
486
|
+
version?: Maybe<Scalars["String"]>;
|
|
458
487
|
/**
|
|
459
488
|
* Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data
|
|
460
489
|
* @deprecated In favor of range.chargetrip_range
|
|
461
490
|
*/
|
|
462
491
|
chargetripRange?: Maybe<ChargetripRange>;
|
|
463
|
-
/** @deprecated You will receive null values */
|
|
464
|
-
chargingOffset?: Maybe<Scalars["JSON"]>;
|
|
465
|
-
/** Information about vehicle connectivity */
|
|
466
|
-
connect?: Maybe<Connect>;
|
|
467
|
-
/** Connectors available for a car */
|
|
468
|
-
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
469
|
-
/** @deprecated You will receive null values */
|
|
470
|
-
consumption?: Maybe<CarExtraConsumption>;
|
|
471
|
-
/** @deprecated You will receive null values */
|
|
472
|
-
dragCoefficient?: Maybe<Scalars["Float"]>;
|
|
473
|
-
/** @deprecated You will receive null values */
|
|
474
|
-
drivelineEfficiency?: Maybe<Scalars["Float"]>;
|
|
475
|
-
/**
|
|
476
|
-
* Car edition
|
|
477
|
-
* @deprecated In favor of naming.version
|
|
478
|
-
*/
|
|
479
|
-
edition?: Maybe<Scalars["String"]>;
|
|
480
|
-
/**
|
|
481
|
-
* ID provided by a car data source as the row ID
|
|
482
|
-
* @deprecated Will be removed in the future
|
|
483
|
-
*/
|
|
484
|
-
externalId?: Maybe<Scalars["String"]>;
|
|
485
492
|
/**
|
|
486
493
|
* Cars that support fast charging have a minimum charging speed of 43 kWh
|
|
487
494
|
* @deprecated In favor of routing.fast_charging_support
|
|
488
495
|
*/
|
|
489
496
|
fastChargingSupport?: Maybe<Scalars["Boolean"]>;
|
|
490
|
-
/** @deprecated You will receive null values */
|
|
491
|
-
height?: Maybe<Scalars["Int"]>;
|
|
492
|
-
/** Cars unique ID */
|
|
493
|
-
id?: Maybe<Scalars["ID"]>;
|
|
494
|
-
/** @deprecated You will receive null values */
|
|
495
|
-
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
496
|
-
/**
|
|
497
|
-
* Images of a car in structured data
|
|
498
|
-
* @deprecated In favor of media.image and media.brand
|
|
499
|
-
*/
|
|
500
|
-
imagesData?: Maybe<CarImageData>;
|
|
501
|
-
/**
|
|
502
|
-
* Car manufacturer
|
|
503
|
-
* @deprecated In favor of naming.make
|
|
504
|
-
*/
|
|
505
|
-
make?: Maybe<Scalars["String"]>;
|
|
506
|
-
/** Media of a car */
|
|
507
|
-
media?: Maybe<CarListMedia>;
|
|
508
497
|
/**
|
|
509
498
|
* Current production mode of a car
|
|
510
499
|
* @deprecated In favor of availability.status
|
|
511
500
|
*/
|
|
512
501
|
mode?: Maybe<CarMode>;
|
|
513
|
-
/** @deprecated You will receive null values */
|
|
514
|
-
motorEfficiency?: Maybe<Scalars["Float"]>;
|
|
515
|
-
/** Naming of a car */
|
|
516
|
-
naming?: Maybe<CarListNaming>;
|
|
517
|
-
/** @deprecated You will receive null values */
|
|
518
|
-
petrolConsumption?: Maybe<Scalars["Float"]>;
|
|
519
|
-
/** @deprecated You will receive null values */
|
|
520
|
-
power?: Maybe<Scalars["Float"]>;
|
|
521
|
-
/** Range of a car */
|
|
522
|
-
range?: Maybe<CarListRange>;
|
|
523
|
-
/** @deprecated You will receive null values */
|
|
524
|
-
regenEfficiency?: Maybe<Scalars["Float"]>;
|
|
525
|
-
/** Routing of a car */
|
|
526
|
-
routing?: Maybe<CarListRouting>;
|
|
527
502
|
/**
|
|
528
503
|
* Number of seats
|
|
529
504
|
* @deprecated In favor of body.seats
|
|
530
505
|
*/
|
|
531
506
|
seats?: Maybe<Scalars["Int"]>;
|
|
507
|
+
/**
|
|
508
|
+
* Usable battery capacity in kWh
|
|
509
|
+
* @deprecated In favor of battery.usable_kwh
|
|
510
|
+
*/
|
|
511
|
+
batteryUsableKwh?: Maybe<Scalars["Float"]>;
|
|
512
|
+
/**
|
|
513
|
+
* Full battery capacity in kWh
|
|
514
|
+
* @deprecated In favor of battery.full_kwh
|
|
515
|
+
*/
|
|
516
|
+
batteryFullKwh?: Maybe<Scalars["Float"]>;
|
|
517
|
+
/**
|
|
518
|
+
* Images of a car in structured data
|
|
519
|
+
* @deprecated In favor of media.image and media.brand
|
|
520
|
+
*/
|
|
521
|
+
imagesData?: Maybe<CarImageData>;
|
|
532
522
|
/** @deprecated You will receive null values */
|
|
533
|
-
|
|
523
|
+
power?: Maybe<Scalars["Float"]>;
|
|
524
|
+
/** @deprecated You will receive null values */
|
|
525
|
+
acceleration?: Maybe<Scalars["Float"]>;
|
|
534
526
|
/** @deprecated You will receive null values */
|
|
535
527
|
topSpeed?: Maybe<Scalars["Float"]>;
|
|
536
528
|
/** @deprecated You will receive null values */
|
|
537
529
|
torque?: Maybe<Scalars["Float"]>;
|
|
538
|
-
/**
|
|
539
|
-
|
|
540
|
-
* @deprecated In favor of naming.edition
|
|
541
|
-
*/
|
|
542
|
-
version?: Maybe<Scalars["String"]>;
|
|
530
|
+
/** @deprecated You will receive null values */
|
|
531
|
+
batteryEfficiency?: Maybe<CarBatteryEfficiency>;
|
|
543
532
|
/** @deprecated You will receive null values */
|
|
544
533
|
weight?: Maybe<Scalars["Float"]>;
|
|
545
534
|
/** @deprecated You will receive null values */
|
|
535
|
+
height?: Maybe<Scalars["Int"]>;
|
|
536
|
+
/** @deprecated You will receive null values */
|
|
546
537
|
width?: Maybe<Scalars["Int"]>;
|
|
538
|
+
/** @deprecated You will receive null values */
|
|
539
|
+
consumption?: Maybe<CarExtraConsumption>;
|
|
540
|
+
/** @deprecated You will receive null values */
|
|
541
|
+
petrolConsumption?: Maybe<Scalars["Float"]>;
|
|
542
|
+
/** @deprecated You will receive null values */
|
|
543
|
+
chargingOffset?: Maybe<Scalars["JSON"]>;
|
|
544
|
+
/** @deprecated You will receive null values */
|
|
545
|
+
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
546
|
+
/** @deprecated You will receive null values */
|
|
547
|
+
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
548
|
+
/** @deprecated You will receive null values */
|
|
549
|
+
dragCoefficient?: Maybe<Scalars["Float"]>;
|
|
550
|
+
/** @deprecated You will receive null values */
|
|
551
|
+
tirePressure?: Maybe<Scalars["Float"]>;
|
|
552
|
+
/** @deprecated You will receive null values */
|
|
553
|
+
motorEfficiency?: Maybe<Scalars["Float"]>;
|
|
554
|
+
/** @deprecated You will receive null values */
|
|
555
|
+
drivelineEfficiency?: Maybe<Scalars["Float"]>;
|
|
556
|
+
/** @deprecated You will receive null values */
|
|
557
|
+
regenEfficiency?: Maybe<Scalars["Float"]>;
|
|
558
|
+
/** @deprecated You will receive null values */
|
|
559
|
+
images?: Maybe<Array<Maybe<CarImage>>>;
|
|
547
560
|
};
|
|
548
561
|
export declare type CarListAvailability = {
|
|
549
562
|
/**
|
|
@@ -563,10 +576,10 @@ export declare type CarListAvailability = {
|
|
|
563
576
|
status?: Maybe<Scalars["Int"]>;
|
|
564
577
|
};
|
|
565
578
|
export declare type CarListBattery = {
|
|
566
|
-
/** Full battery capacity in kWh */
|
|
567
|
-
full_kwh?: Maybe<Scalars["Float"]>;
|
|
568
579
|
/** Usable battery capacity in kWh */
|
|
569
580
|
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
581
|
+
/** Full battery capacity in kWh */
|
|
582
|
+
full_kwh?: Maybe<Scalars["Float"]>;
|
|
570
583
|
};
|
|
571
584
|
export declare type CarListBody = {
|
|
572
585
|
/** Number of seats in car */
|
|
@@ -592,41 +605,39 @@ export declare type CarListFilter = {
|
|
|
592
605
|
connect?: Maybe<ConnectFilter>;
|
|
593
606
|
};
|
|
594
607
|
export declare type CarListMedia = {
|
|
595
|
-
/** Latest maker logo of the car */
|
|
596
|
-
brand?: Maybe<CarImage>;
|
|
597
608
|
/** Latest image of the car */
|
|
598
609
|
image?: Maybe<CarImage>;
|
|
610
|
+
/** Latest maker logo of the car */
|
|
611
|
+
brand?: Maybe<CarImage>;
|
|
599
612
|
/** Latest video of the car */
|
|
600
613
|
video?: Maybe<CarVideo>;
|
|
601
614
|
};
|
|
602
615
|
export declare type CarListNaming = {
|
|
603
|
-
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
604
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
605
|
-
/** Another submodel level of car */
|
|
606
|
-
edition?: Maybe<Scalars["String"]>;
|
|
607
616
|
/** Car manufacturer name */
|
|
608
617
|
make?: Maybe<Scalars["String"]>;
|
|
609
618
|
/** Car model name */
|
|
610
619
|
model?: Maybe<Scalars["String"]>;
|
|
611
620
|
/** Version, edition or submodel of car */
|
|
612
621
|
version?: Maybe<Scalars["String"]>;
|
|
622
|
+
/** Another submodel level of car */
|
|
623
|
+
edition?: Maybe<Scalars["String"]>;
|
|
624
|
+
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
625
|
+
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
613
626
|
};
|
|
614
627
|
/** Deprecated */
|
|
615
628
|
export declare type CarListQuery = {
|
|
616
|
-
/** Deprecated: Not used anymore */
|
|
617
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
618
629
|
/** Deprecated: Not used anymore */
|
|
619
630
|
make?: Maybe<Scalars["String"]>;
|
|
620
631
|
/** Deprecated: Not used anymore */
|
|
621
|
-
mode?: Maybe<CarMode>;
|
|
622
|
-
/** Deprecated: Not used anymore */
|
|
623
632
|
model?: Maybe<Scalars["String"]>;
|
|
624
633
|
/** Deprecated: Not used anymore */
|
|
625
634
|
version?: Maybe<Scalars["String"]>;
|
|
635
|
+
/** Deprecated: Not used anymore */
|
|
636
|
+
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
637
|
+
/** Deprecated: Not used anymore */
|
|
638
|
+
mode?: Maybe<CarMode>;
|
|
626
639
|
};
|
|
627
640
|
export declare type CarListRange = {
|
|
628
|
-
/** @deprecated You will receive null values */
|
|
629
|
-
best?: Maybe<CarEstimationData>;
|
|
630
641
|
/**
|
|
631
642
|
* Is an index value of what we consider to be the real-world range.
|
|
632
643
|
* (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display in the front-end.
|
|
@@ -636,50 +647,52 @@ export declare type CarListRange = {
|
|
|
636
647
|
wltp?: Maybe<Scalars["Float"]>;
|
|
637
648
|
/** @deprecated You will receive null values */
|
|
638
649
|
worst?: Maybe<CarEstimationData>;
|
|
650
|
+
/** @deprecated You will receive null values */
|
|
651
|
+
best?: Maybe<CarEstimationData>;
|
|
639
652
|
};
|
|
640
653
|
export declare type CarListRouting = {
|
|
641
654
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh */
|
|
642
655
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
643
656
|
};
|
|
644
657
|
export declare type CarMedia = {
|
|
645
|
-
/** Latest maker logo */
|
|
646
|
-
brand?: Maybe<CarImage>;
|
|
647
|
-
/**
|
|
648
|
-
* URL to detail page on EV database
|
|
649
|
-
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
650
|
-
*/
|
|
651
|
-
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
652
658
|
/** URL to detail page on EV database */
|
|
653
659
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
654
660
|
/** Latest image */
|
|
655
661
|
image?: Maybe<CarImage>;
|
|
662
|
+
/** Latest maker logo */
|
|
663
|
+
brand?: Maybe<CarImage>;
|
|
656
664
|
/** All images */
|
|
657
665
|
image_list?: Maybe<Array<Maybe<CarImage>>>;
|
|
658
666
|
/** Latest video */
|
|
659
667
|
video?: Maybe<CarVideo>;
|
|
660
668
|
/** All videos */
|
|
661
669
|
video_list?: Maybe<Array<Maybe<CarVideo>>>;
|
|
670
|
+
/**
|
|
671
|
+
* URL to detail page on EV database
|
|
672
|
+
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
673
|
+
*/
|
|
674
|
+
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
662
675
|
};
|
|
663
676
|
/** Mode (state) of the current production */
|
|
664
677
|
export declare enum CarMode {
|
|
665
|
-
/** Future releases of a car, a concept of the car, specs may change over time */
|
|
666
|
-
CONCEPT = "concept",
|
|
667
678
|
/** Old car that is no longer manufactured */
|
|
668
679
|
INDEX_ONLY = "index_only",
|
|
669
680
|
/** Car is in production and has been released */
|
|
670
|
-
PRODUCTION = "production"
|
|
681
|
+
PRODUCTION = "production",
|
|
682
|
+
/** Future releases of a car, a concept of the car, specs may change over time */
|
|
683
|
+
CONCEPT = "concept"
|
|
671
684
|
}
|
|
672
685
|
export declare type CarNaming = {
|
|
673
|
-
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
674
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
675
|
-
/** Another submodel level of car */
|
|
676
|
-
edition?: Maybe<Scalars["String"]>;
|
|
677
686
|
/** Car manufacturer name */
|
|
678
687
|
make?: Maybe<Scalars["String"]>;
|
|
679
688
|
/** Car model name */
|
|
680
689
|
model?: Maybe<Scalars["String"]>;
|
|
681
690
|
/** Version, edition or submodel of car */
|
|
682
691
|
version?: Maybe<Scalars["String"]>;
|
|
692
|
+
/** Another submodel level of car */
|
|
693
|
+
edition?: Maybe<Scalars["String"]>;
|
|
694
|
+
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years */
|
|
695
|
+
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
683
696
|
};
|
|
684
697
|
export declare type CarPerformance = {
|
|
685
698
|
/** Acceleration 0-100 km/h in seconds */
|
|
@@ -689,65 +702,59 @@ export declare type CarPerformance = {
|
|
|
689
702
|
};
|
|
690
703
|
/** Car plug model */
|
|
691
704
|
export declare type CarPlug = {
|
|
692
|
-
/**
|
|
693
|
-
|
|
705
|
+
/** Plug type, known as connector standard in OCPI */
|
|
706
|
+
standard?: Maybe<ConnectorType>;
|
|
694
707
|
/** Usable electric power in kW */
|
|
695
708
|
power?: Maybe<Scalars["Float"]>;
|
|
709
|
+
/** Maximum electric power in kW */
|
|
710
|
+
max_electric_power?: Maybe<Scalars["Float"]>;
|
|
711
|
+
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
|
|
712
|
+
time?: Maybe<Scalars["Int"]>;
|
|
696
713
|
/** Charging speed in km/h */
|
|
697
714
|
speed?: Maybe<Scalars["Int"]>;
|
|
698
|
-
/** Plug type, known as connector standard in OCPI */
|
|
699
|
-
standard?: Maybe<ConnectorType>;
|
|
700
|
-
/** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
|
|
701
|
-
time?: Maybe<Scalars["Int"]>;
|
|
702
715
|
};
|
|
703
716
|
/** The output element of the carPremium query */
|
|
704
717
|
export declare type CarPremium = {
|
|
718
|
+
/** Unique ID of a car */
|
|
719
|
+
id?: Maybe<Scalars["ID"]>;
|
|
720
|
+
/** Internal ID of the successor car trim */
|
|
721
|
+
succesor_id?: Maybe<Scalars["String"]>;
|
|
722
|
+
/** Naming of a car */
|
|
723
|
+
naming?: Maybe<CarPremiumNaming>;
|
|
724
|
+
/** Connectors available for a car */
|
|
725
|
+
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
726
|
+
/** Charge details */
|
|
727
|
+
charge?: Maybe<CarPremiumCharge>;
|
|
728
|
+
/** Fast charge details */
|
|
729
|
+
fast_charge?: Maybe<CarPremiumFastCharge>;
|
|
705
730
|
/** Adapters of connectors available for a car */
|
|
706
731
|
adapters?: Maybe<Array<Maybe<CarPlug>>>;
|
|
707
|
-
/** Availability of a car */
|
|
708
|
-
availability?: Maybe<CarPremiumAvailability>;
|
|
709
732
|
/** Battery of a car */
|
|
710
733
|
battery?: Maybe<CarPremiumBattery>;
|
|
711
734
|
/** Body of a car */
|
|
712
735
|
body?: Maybe<CarPremiumBody>;
|
|
713
|
-
/**
|
|
714
|
-
|
|
715
|
-
/**
|
|
716
|
-
|
|
717
|
-
/** Connectors available for a car */
|
|
718
|
-
connectors?: Maybe<Array<Maybe<CarPlug>>>;
|
|
736
|
+
/** Availability of a car */
|
|
737
|
+
availability?: Maybe<CarPremiumAvailability>;
|
|
738
|
+
/** Pricing of a car */
|
|
739
|
+
price?: Maybe<CarPremiumPrice>;
|
|
719
740
|
/** Drivetrain of a car */
|
|
720
741
|
drivetrain?: Maybe<CarPremiumDrivetrain>;
|
|
721
|
-
/** Efficiency of a car */
|
|
722
|
-
efficiency?: Maybe<CarPremiumEfficiency>;
|
|
723
|
-
/** Fast charge details */
|
|
724
|
-
fast_charge?: Maybe<CarPremiumFastCharge>;
|
|
725
|
-
/** Unique ID of a car */
|
|
726
|
-
id?: Maybe<Scalars["ID"]>;
|
|
727
|
-
/** Media of a car */
|
|
728
|
-
media?: Maybe<CarPremiumMedia>;
|
|
729
|
-
/** Naming of a car */
|
|
730
|
-
naming?: Maybe<CarPremiumNaming>;
|
|
731
742
|
/** Performance of a car */
|
|
732
743
|
performance?: Maybe<CarPremiumPerformance>;
|
|
733
|
-
/** Pricing of a car */
|
|
734
|
-
price?: Maybe<CarPremiumPrice>;
|
|
735
744
|
/** Range of a car */
|
|
736
745
|
range?: Maybe<CarPremiumRange>;
|
|
737
|
-
/**
|
|
738
|
-
|
|
746
|
+
/** Efficiency of a car */
|
|
747
|
+
efficiency?: Maybe<CarPremiumEfficiency>;
|
|
739
748
|
/** Safety of a car */
|
|
740
749
|
safety?: Maybe<CarPremiumSafety>;
|
|
741
|
-
/**
|
|
742
|
-
|
|
750
|
+
/** Media of a car */
|
|
751
|
+
media?: Maybe<CarPremiumMedia>;
|
|
752
|
+
/** Routing of a car */
|
|
753
|
+
routing?: Maybe<CarPremiumRouting>;
|
|
754
|
+
/** Information about vehicle connectivity */
|
|
755
|
+
connect?: Maybe<Connect>;
|
|
743
756
|
};
|
|
744
757
|
export declare type CarPremiumAvailability = {
|
|
745
|
-
/** Date of introduction, mm-yyyy */
|
|
746
|
-
date_from?: Maybe<Scalars["String"]>;
|
|
747
|
-
/** Indicates if date from field is estimated */
|
|
748
|
-
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
749
|
-
/** Date last available, mm-yyyy */
|
|
750
|
-
date_to?: Maybe<Scalars["String"]>;
|
|
751
758
|
/**
|
|
752
759
|
* Availability of car
|
|
753
760
|
*
|
|
@@ -763,322 +770,328 @@ export declare type CarPremiumAvailability = {
|
|
|
763
770
|
* - 91 = Status uncertain, introduction date and/or pricing unclear
|
|
764
771
|
*/
|
|
765
772
|
status?: Maybe<Scalars["Int"]>;
|
|
773
|
+
/** Date of introduction, mm-yyyy */
|
|
774
|
+
date_from?: Maybe<Scalars["String"]>;
|
|
775
|
+
/** Indicates if date from field is estimated */
|
|
776
|
+
date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
777
|
+
/** Date last available, mm-yyyy */
|
|
778
|
+
date_to?: Maybe<Scalars["String"]>;
|
|
766
779
|
};
|
|
767
780
|
export declare type CarPremiumBattery = {
|
|
768
|
-
/**
|
|
769
|
-
|
|
781
|
+
/** Usable battery capacity in kWh */
|
|
782
|
+
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
770
783
|
/** Full battery capacity in kWh */
|
|
771
784
|
full_kwh?: Maybe<Scalars["Float"]>;
|
|
785
|
+
/** Indicates which battery fields are estimated */
|
|
786
|
+
estimated_fields?: Maybe<CarBatteryFieldEstimations>;
|
|
772
787
|
/** Battery thermal management system (active/passive, air/liquid) */
|
|
773
788
|
thermal_management_system?: Maybe<Scalars["String"]>;
|
|
774
|
-
/** Usable battery capacity in kWh */
|
|
775
|
-
usable_kwh?: Maybe<Scalars["Float"]>;
|
|
776
|
-
/** Mileage of battery warranty */
|
|
777
|
-
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
778
789
|
/** Duration of battery warranty */
|
|
779
790
|
warranty_period?: Maybe<Scalars["Float"]>;
|
|
791
|
+
/** Mileage of battery warranty */
|
|
792
|
+
warranty_mileage?: Maybe<Scalars["Float"]>;
|
|
780
793
|
};
|
|
781
794
|
export declare type CarPremiumBody = {
|
|
782
|
-
/**
|
|
783
|
-
|
|
784
|
-
/**
|
|
785
|
-
|
|
786
|
-
/** Maximum luggage capacity in l */
|
|
787
|
-
boot_capacity_max?: Maybe<Scalars["Int"]>;
|
|
788
|
-
/** Storage capacity of front trunk/under the hood (frunk) */
|
|
789
|
-
boot_front_capacity?: Maybe<Scalars["Int"]>;
|
|
795
|
+
/** Length in mm */
|
|
796
|
+
length?: Maybe<Scalars["Int"]>;
|
|
797
|
+
/** Width with folded mirrors in mm */
|
|
798
|
+
width?: Maybe<Scalars["Int"]>;
|
|
790
799
|
/** Width of vehicle in mm, including mirrors */
|
|
791
800
|
full_width?: Maybe<Scalars["Int"]>;
|
|
792
|
-
/** Indicates whether a car has roof rails as a standard */
|
|
793
|
-
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
794
801
|
/** Height (average height for adjustable suspensions) in mm */
|
|
795
802
|
height?: Maybe<Scalars["Int"]>;
|
|
796
|
-
/** Length in mm */
|
|
797
|
-
length?: Maybe<Scalars["Int"]>;
|
|
798
|
-
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload) in kg */
|
|
799
|
-
max_gross_vehicle_weight?: Maybe<Scalars["Int"]>;
|
|
800
|
-
/** Maximum load on roof of car in kg */
|
|
801
|
-
roof_load_max?: Maybe<Scalars["Int"]>;
|
|
802
|
-
/**
|
|
803
|
-
* Indicates whether a car has roof rails as a standard
|
|
804
|
-
* @deprecated In favor of has_roofrails
|
|
805
|
-
*/
|
|
806
|
-
rooftrails?: Maybe<Scalars["Boolean"]>;
|
|
807
|
-
/** Number of seats */
|
|
808
|
-
seats?: Maybe<Scalars["Int"]>;
|
|
809
|
-
/** Segment, listed in local naming convention where applicable */
|
|
810
|
-
segment?: Maybe<Scalars["String"]>;
|
|
811
803
|
/** Indicates if length/width/height fields are estimations */
|
|
812
804
|
size_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
805
|
+
/** Wheelbase in mm */
|
|
806
|
+
wheelbase?: Maybe<Scalars["Int"]>;
|
|
807
|
+
/** Indicates if wheelbase field is estimated */
|
|
808
|
+
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
809
|
+
/** Weight (unladen EU) in kg */
|
|
810
|
+
weight?: Maybe<Scalars["Int"]>;
|
|
811
|
+
/** Indicates if weight field is estimated */
|
|
812
|
+
weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
813
|
+
/** Maximum payload allowed for vehicle in kg */
|
|
814
|
+
weight_max_payload?: Maybe<Scalars["Int"]>;
|
|
815
|
+
/** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload) in kg */
|
|
816
|
+
max_gross_vehicle_weight?: Maybe<Scalars["Int"]>;
|
|
817
|
+
/** Standard luggage capacity in l */
|
|
818
|
+
boot_capacity?: Maybe<Scalars["Int"]>;
|
|
819
|
+
/** Storage capacity of front trunk/under the hood (frunk) */
|
|
820
|
+
boot_front_capacity?: Maybe<Scalars["Int"]>;
|
|
821
|
+
/** Maximum luggage capacity in l */
|
|
822
|
+
boot_capacity_max?: Maybe<Scalars["Int"]>;
|
|
813
823
|
/** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
|
|
814
824
|
tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
|
|
825
|
+
/** Maximum unbraked towing weight in kg */
|
|
826
|
+
tow_weight_unbraked?: Maybe<Scalars["Int"]>;
|
|
815
827
|
/** Maximum braked towing weight in kg */
|
|
816
828
|
tow_weight_braked?: Maybe<Scalars["Int"]>;
|
|
817
829
|
/** Indicates if tow weight fields are estimations */
|
|
818
830
|
tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
819
|
-
/** Maximum unbraked towing weight in kg */
|
|
820
|
-
tow_weight_unbraked?: Maybe<Scalars["Int"]>;
|
|
821
831
|
/** Maximum vertical load / noseweight on tow hitch according to vehicle homologation */
|
|
822
832
|
tow_weight_vertical_load?: Maybe<Scalars["Int"]>;
|
|
833
|
+
/** Maximum load on roof of car in kg */
|
|
834
|
+
roof_load_max?: Maybe<Scalars["Int"]>;
|
|
835
|
+
/** Body type, listed in local naming convention where applicable */
|
|
836
|
+
body_type?: Maybe<Scalars["String"]>;
|
|
837
|
+
/** Segment, listed in local naming convention where applicable */
|
|
838
|
+
segment?: Maybe<Scalars["String"]>;
|
|
839
|
+
/** Number of seats */
|
|
840
|
+
seats?: Maybe<Scalars["Int"]>;
|
|
841
|
+
/** Indicates whether a car has roof rails as a standard */
|
|
842
|
+
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
823
843
|
/** Turning circle of vehicle kerb-to-kerb */
|
|
824
844
|
turning_circle?: Maybe<Scalars["Float"]>;
|
|
825
845
|
/** Name of vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
|
|
826
846
|
vehicle_platform?: Maybe<Scalars["String"]>;
|
|
827
847
|
/** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
|
|
828
848
|
vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
829
|
-
/**
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
weight_max_payload?: Maybe<Scalars["Int"]>;
|
|
835
|
-
/** Wheelbase in mm */
|
|
836
|
-
wheelbase?: Maybe<Scalars["Int"]>;
|
|
837
|
-
/** Indicates if wheelbase field is estimated */
|
|
838
|
-
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
839
|
-
/** Width with folded mirrors in mm */
|
|
840
|
-
width?: Maybe<Scalars["Int"]>;
|
|
849
|
+
/**
|
|
850
|
+
* Indicates whether a car has roof rails as a standard
|
|
851
|
+
* @deprecated In favor of has_roofrails
|
|
852
|
+
*/
|
|
853
|
+
rooftrails?: Maybe<Scalars["Boolean"]>;
|
|
841
854
|
};
|
|
842
855
|
export declare type CarPremiumCharge = {
|
|
843
|
-
/** The car alternative charge */
|
|
844
|
-
alternative?: Maybe<CarPremiumChargeAlternativeOBC>;
|
|
845
|
-
/** The car option charge */
|
|
846
|
-
option?: Maybe<CarPremiumChargeOptionOBC>;
|
|
847
856
|
/** Location of charge port */
|
|
848
857
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
849
858
|
/** Location of second charge port */
|
|
850
859
|
second_plug?: Maybe<CarPremiumChargeSecondPlug>;
|
|
851
860
|
/** The car standard charge */
|
|
852
861
|
standard?: Maybe<CarPremiumChargeStandardOBC>;
|
|
862
|
+
/** The car alternative charge */
|
|
863
|
+
alternative?: Maybe<CarPremiumChargeAlternativeOBC>;
|
|
864
|
+
/** The car option charge */
|
|
865
|
+
option?: Maybe<CarPremiumChargeOptionOBC>;
|
|
853
866
|
};
|
|
854
867
|
export declare type CarPremiumChargeAlternativeOBC = {
|
|
855
|
-
/** Charging speed when charging at maximum power (standard OBC) */
|
|
856
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
857
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
858
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
859
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
860
|
-
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
861
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
862
|
-
phases?: Maybe<Scalars["Int"]>;
|
|
863
868
|
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
864
869
|
power?: Maybe<Scalars["Float"]>;
|
|
870
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
871
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
872
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
873
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
874
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
875
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
876
|
+
/** Charging speed when charging at maximum power (standard OBC) */
|
|
877
|
+
charge_speed?: Maybe<Scalars["Int"]>;
|
|
865
878
|
/** Charging details for the standard OBC at several charging points */
|
|
866
879
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
867
880
|
};
|
|
868
881
|
export declare type CarPremiumChargeOBCTable = {
|
|
869
|
-
/**
|
|
870
|
-
|
|
882
|
+
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
883
|
+
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
884
|
+
/** Current per phase for this EVSE (phase current) */
|
|
885
|
+
evse_phase_amperage?: Maybe<Scalars["Int"]>;
|
|
886
|
+
/** Number of phases for this EVSE */
|
|
887
|
+
evse_phases?: Maybe<Scalars["Int"]>;
|
|
871
888
|
/** Voltage between phase and neutral used by standard OBC (phase voltage) */
|
|
872
889
|
charge_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
890
|
+
/** Current per phase used by standard OBC (phase current) */
|
|
891
|
+
charge_phase_amperage?: Maybe<Scalars["Float"]>;
|
|
873
892
|
/** Number of phases used by standard OBC */
|
|
874
893
|
charge_phases?: Maybe<Scalars["Int"]>;
|
|
875
894
|
/** Power used by standard OBC (before OBC losses) */
|
|
876
895
|
charge_power?: Maybe<Scalars["Float"]>;
|
|
877
|
-
/** Charging speed when charging at maximum power (standard OBC with this EVSE) */
|
|
878
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
879
896
|
/** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
|
|
880
897
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
881
|
-
/**
|
|
882
|
-
|
|
883
|
-
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
884
|
-
evse_phase_voltage?: Maybe<Scalars["Int"]>;
|
|
885
|
-
/** Number of phases for this EVSE */
|
|
886
|
-
evse_phases?: Maybe<Scalars["Int"]>;
|
|
898
|
+
/** Charging speed when charging at maximum power (standard OBC with this EVSE) */
|
|
899
|
+
charge_speed?: Maybe<Scalars["Int"]>;
|
|
887
900
|
};
|
|
888
901
|
export declare type CarPremiumChargeOptionOBC = {
|
|
889
|
-
/** Charging speed when charging at maximum power (standard OBC) */
|
|
890
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
891
|
-
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
892
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
893
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
894
|
-
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
895
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
896
|
-
phases?: Maybe<Scalars["Int"]>;
|
|
897
902
|
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
898
903
|
power?: Maybe<Scalars["Float"]>;
|
|
904
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
905
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
906
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
907
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
908
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
909
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
910
|
+
/** Charging speed when charging at maximum power (standard OBC) */
|
|
911
|
+
charge_speed?: Maybe<Scalars["Int"]>;
|
|
899
912
|
/** Charging details for the standard OBC at several charging points */
|
|
900
913
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
901
914
|
};
|
|
902
915
|
export declare type CarPremiumChargePlug = {
|
|
916
|
+
/** Type of charge port on vehicle */
|
|
917
|
+
value?: Maybe<ConnectorType>;
|
|
903
918
|
/** Indicates if value is an estimate */
|
|
904
919
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
905
920
|
/** Location of charge port */
|
|
906
921
|
location?: Maybe<Scalars["String"]>;
|
|
907
|
-
/** Type of charge port on vehicle */
|
|
908
|
-
value?: Maybe<ConnectorType>;
|
|
909
922
|
};
|
|
910
923
|
export declare type CarPremiumChargePower = {
|
|
911
|
-
/** Average value */
|
|
912
|
-
average?: Maybe<Scalars["Float"]>;
|
|
913
924
|
/** Maximum value */
|
|
914
925
|
max?: Maybe<Scalars["Float"]>;
|
|
926
|
+
/** Average value */
|
|
927
|
+
average?: Maybe<Scalars["Float"]>;
|
|
915
928
|
};
|
|
916
929
|
export declare type CarPremiumChargeSecondPlug = {
|
|
917
|
-
/** Indicates if second charge port is optional */
|
|
918
|
-
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
919
930
|
/** Location of charge port */
|
|
920
931
|
location?: Maybe<Scalars["String"]>;
|
|
932
|
+
/** Indicates if second charge port is optional */
|
|
933
|
+
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
921
934
|
};
|
|
922
935
|
export declare type CarPremiumChargeStandardOBC = {
|
|
923
|
-
/**
|
|
924
|
-
|
|
936
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
937
|
+
power?: Maybe<Scalars["Float"]>;
|
|
938
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
939
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
940
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
941
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
925
942
|
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
926
943
|
charge_time?: Maybe<Scalars["Int"]>;
|
|
944
|
+
/** Charging speed when charging at maximum power (standard OBC) */
|
|
945
|
+
charge_speed?: Maybe<Scalars["Int"]>;
|
|
927
946
|
/** Indicates if Charge_Standard fields are estimated */
|
|
928
947
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
929
|
-
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
930
|
-
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
931
|
-
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
932
|
-
phases?: Maybe<Scalars["Int"]>;
|
|
933
|
-
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
934
|
-
power?: Maybe<Scalars["Float"]>;
|
|
935
948
|
/** Charging details for the standard OBC at several charging points */
|
|
936
949
|
table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
|
|
937
950
|
};
|
|
938
951
|
export declare type CarPremiumDrivetrain = {
|
|
952
|
+
/** Type of drivetrain */
|
|
953
|
+
type?: Maybe<CarDrivetrain>;
|
|
939
954
|
/** Fuel type */
|
|
940
955
|
fuel?: Maybe<CarFuel>;
|
|
941
|
-
/** Maximum (combined) power output in kw */
|
|
942
|
-
power?: Maybe<Scalars["Int"]>;
|
|
943
|
-
/** Maximum (combined) power output in horsepower (PS) */
|
|
944
|
-
power_hp?: Maybe<Scalars["Int"]>;
|
|
945
|
-
/** Indicates if power field is estimated */
|
|
946
|
-
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
947
956
|
/** Propulsion type */
|
|
948
957
|
propulsion?: Maybe<CarPropulsion>;
|
|
949
958
|
/** Indicates if propulsion field is estimated */
|
|
950
959
|
propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
960
|
+
/** Maximum (combined) power output in kw */
|
|
961
|
+
power?: Maybe<Scalars["Int"]>;
|
|
962
|
+
/** Indicates if power field is estimated */
|
|
963
|
+
power_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
964
|
+
/** Maximum (combined) power output in horsepower (PS) */
|
|
965
|
+
power_hp?: Maybe<Scalars["Int"]>;
|
|
951
966
|
/** Maximum (combined) torque output in newton meter */
|
|
952
967
|
torque?: Maybe<Scalars["Int"]>;
|
|
953
968
|
/** Indicates if torque field is estimated */
|
|
954
969
|
torque_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
955
|
-
/** Type of drivetrain */
|
|
956
|
-
type?: Maybe<CarDrivetrain>;
|
|
957
970
|
};
|
|
958
971
|
export declare type CarPremiumEfficiency = {
|
|
959
|
-
/** Rated efficiency in NEDC combined cycle */
|
|
960
|
-
nedc?: Maybe<CarPremiumEfficiencyNEDC>;
|
|
961
|
-
/** Car efficiency based on RealRange */
|
|
962
|
-
real?: Maybe<CarPremiumEfficiencyReal>;
|
|
963
972
|
/** Rated efficiency in WLTP combined cycle */
|
|
964
973
|
wltp?: Maybe<CarPremiumEfficiencyWLTP>;
|
|
965
974
|
/** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
|
|
966
975
|
wltp_teh?: Maybe<CarPremiumEfficiencyWLTPTEH>;
|
|
976
|
+
/** Rated efficiency in NEDC combined cycle */
|
|
977
|
+
nedc?: Maybe<CarPremiumEfficiencyNEDC>;
|
|
978
|
+
/** Car efficiency based on RealRange */
|
|
979
|
+
real?: Maybe<CarPremiumEfficiencyReal>;
|
|
967
980
|
};
|
|
968
981
|
export declare type CarPremiumEfficiencyNEDC = {
|
|
969
|
-
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km */
|
|
970
|
-
co2?: Maybe<Scalars["Int"]>;
|
|
971
|
-
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, in l/100 km */
|
|
972
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
973
982
|
/** Rated efficiency in NEDC combined cycle in kWh/100 km */
|
|
974
983
|
value?: Maybe<Scalars["Float"]>;
|
|
984
|
+
/** Rated efficiency in NEDC combined cycle presented in gas equivalent, in l/100 km */
|
|
985
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
975
986
|
/** Rated vehicle efficiency in NEDC combined cycle (based on value) in kWh/100 km */
|
|
976
987
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
977
988
|
/** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent in l/100 km */
|
|
978
989
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
990
|
+
/** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km */
|
|
991
|
+
co2?: Maybe<Scalars["Int"]>;
|
|
979
992
|
};
|
|
980
993
|
export declare type CarPremiumEfficiencyReal = {
|
|
981
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
982
|
-
best?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
983
|
-
/** Car efficiency based on RealRange presented in gas equivalent, in l/100 km */
|
|
984
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
985
994
|
/** Car efficiency based on RealRange (useable battery/range) in kWh/100 km */
|
|
986
995
|
value?: Maybe<Scalars["Float"]>;
|
|
996
|
+
/** Car efficiency based on RealRange presented in gas equivalent, in l/100 km */
|
|
997
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
987
998
|
/** Worst conditions are based on -10°C and use of heating */
|
|
988
999
|
worst?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
1000
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
1001
|
+
best?: Maybe<CarPremiumEfficiencyRealValue>;
|
|
989
1002
|
};
|
|
990
1003
|
export declare type CarPremiumEfficiencyRealValue = {
|
|
1004
|
+
/** Estimated value on highway or express roads */
|
|
1005
|
+
highway?: Maybe<Scalars["Float"]>;
|
|
991
1006
|
/** Estimated value on city roads */
|
|
992
1007
|
city?: Maybe<Scalars["Float"]>;
|
|
993
1008
|
/** Estimated combined value */
|
|
994
1009
|
combined?: Maybe<Scalars["Float"]>;
|
|
995
|
-
/** Estimated value on highway or express roads */
|
|
996
|
-
highway?: Maybe<Scalars["Float"]>;
|
|
997
1010
|
};
|
|
998
1011
|
export declare type CarPremiumEfficiencyWLTP = {
|
|
999
|
-
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km */
|
|
1000
|
-
co2?: Maybe<Scalars["Int"]>;
|
|
1001
|
-
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km */
|
|
1002
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1003
1012
|
/** Rated efficiency in WLTP combined cycle in kWh/100 km */
|
|
1004
1013
|
value?: Maybe<Scalars["Float"]>;
|
|
1014
|
+
/** Rated efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km */
|
|
1015
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1005
1016
|
/** Rated vehicle efficiency in WLTP combined cycle (based on value) in kWh/100 km */
|
|
1006
1017
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
1007
1018
|
/** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km */
|
|
1008
1019
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1020
|
+
/** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km */
|
|
1021
|
+
co2?: Maybe<Scalars["Int"]>;
|
|
1009
1022
|
};
|
|
1010
1023
|
export declare type CarPremiumEfficiencyWLTPTEH = {
|
|
1011
|
-
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km */
|
|
1012
|
-
co2?: Maybe<Scalars["Int"]>;
|
|
1013
|
-
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km */
|
|
1014
|
-
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1015
1024
|
/** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
|
|
1016
1025
|
value?: Maybe<Scalars["Float"]>;
|
|
1026
|
+
/** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km */
|
|
1027
|
+
fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1017
1028
|
/** Rated vehicle efficiency in WLTP TEH combined cycle (based on value) in kWh/100 km */
|
|
1018
1029
|
vehicle?: Maybe<Scalars["Float"]>;
|
|
1019
1030
|
/** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km */
|
|
1020
1031
|
vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
|
|
1032
|
+
/** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km */
|
|
1033
|
+
co2?: Maybe<Scalars["Int"]>;
|
|
1021
1034
|
};
|
|
1022
1035
|
export declare type CarPremiumFastCharge = {
|
|
1023
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger) */
|
|
1024
|
-
charge_speed?: Maybe<Scalars["Float"]>;
|
|
1025
|
-
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
|
|
1026
|
-
charge_time?: Maybe<Scalars["Float"]>;
|
|
1027
|
-
/** Indicates what fields are estimated */
|
|
1028
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1029
|
-
/** Indicates if fast charge is optional in some markets/regions */
|
|
1030
|
-
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1031
1036
|
/** Location of charge port */
|
|
1032
1037
|
plug?: Maybe<CarPremiumChargePlug>;
|
|
1033
1038
|
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
|
|
1034
1039
|
power?: Maybe<CarPremiumChargePower>;
|
|
1040
|
+
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
|
|
1041
|
+
charge_time?: Maybe<Scalars["Float"]>;
|
|
1042
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger) */
|
|
1043
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
1044
|
+
/** Indicates if fast charge is optional in some markets/regions */
|
|
1045
|
+
is_optional?: Maybe<Scalars["Boolean"]>;
|
|
1046
|
+
/** Indicates what fields are estimated */
|
|
1047
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1035
1048
|
/** Charging details for fast charging */
|
|
1036
1049
|
table?: Maybe<Array<Maybe<CarPremiumFastChargeTable>>>;
|
|
1037
1050
|
};
|
|
1038
1051
|
export declare type CarPremiumFastChargeTable = {
|
|
1039
|
-
/** Indicates if average power during fast charging is limited by the vehicle */
|
|
1040
|
-
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1041
|
-
/** Charging speed during fast charging from 10% to 80% (optimal conditions) */
|
|
1042
|
-
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1043
|
-
/** Minutes needed to charge from 10% to 80% (optimal conditions) */
|
|
1044
|
-
charge_time?: Maybe<Scalars["Int"]>;
|
|
1045
1052
|
/** Charging details for fast charging (format: ChargerPlug-ChargerPower-AC/DC) */
|
|
1046
1053
|
format?: Maybe<Scalars["String"]>;
|
|
1047
|
-
/** Indicates if maximum power during fast charging is limited by the vehicle */
|
|
1048
|
-
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1049
1054
|
/** Fast charge power */
|
|
1050
1055
|
power?: Maybe<CarPremiumChargePower>;
|
|
1056
|
+
/** Minutes needed to charge from 10% to 80% (optimal conditions) */
|
|
1057
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
1058
|
+
/** Charging speed during fast charging from 10% to 80% (optimal conditions) */
|
|
1059
|
+
charge_speed?: Maybe<Scalars["Int"]>;
|
|
1060
|
+
/** Indicates if maximum power during fast charging is limited by the vehicle */
|
|
1061
|
+
is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1062
|
+
/** Indicates if average power during fast charging is limited by the vehicle */
|
|
1063
|
+
average_is_limited?: Maybe<Scalars["Boolean"]>;
|
|
1051
1064
|
};
|
|
1052
1065
|
export declare type CarPremiumMedia = {
|
|
1053
|
-
/** Latest maker logo */
|
|
1054
|
-
brand?: Maybe<CarImage>;
|
|
1055
|
-
/**
|
|
1056
|
-
* URL to detail page on EV database
|
|
1057
|
-
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
1058
|
-
*/
|
|
1059
|
-
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
1060
1066
|
/** URL to detail page on EV database */
|
|
1061
1067
|
evdb_details_url?: Maybe<Scalars["String"]>;
|
|
1062
1068
|
/** Latest image */
|
|
1063
1069
|
image?: Maybe<CarImage>;
|
|
1070
|
+
/** Latest maker logo */
|
|
1071
|
+
brand?: Maybe<CarImage>;
|
|
1064
1072
|
/** All images */
|
|
1065
1073
|
image_list?: Maybe<Array<Maybe<CarImage>>>;
|
|
1066
1074
|
/** Latest video */
|
|
1067
1075
|
video?: Maybe<CarVideo>;
|
|
1068
1076
|
/** All videos */
|
|
1069
1077
|
video_list?: Maybe<Array<Maybe<CarVideo>>>;
|
|
1078
|
+
/**
|
|
1079
|
+
* URL to detail page on EV database
|
|
1080
|
+
* @deprecated Will be removed in the future. Please use evdb_details_url
|
|
1081
|
+
*/
|
|
1082
|
+
evdb_detail_url?: Maybe<Scalars["String"]>;
|
|
1070
1083
|
};
|
|
1071
1084
|
export declare type CarPremiumNaming = {
|
|
1072
|
-
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years */
|
|
1073
|
-
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
1074
|
-
/** Another submodel level of car */
|
|
1075
|
-
edition?: Maybe<Scalars["String"]>;
|
|
1076
1085
|
/** Car manufacturer name */
|
|
1077
1086
|
make?: Maybe<Scalars["String"]>;
|
|
1078
1087
|
/** Car model name */
|
|
1079
1088
|
model?: Maybe<Scalars["String"]>;
|
|
1080
1089
|
/** Version, edition or submodel of car */
|
|
1081
1090
|
version?: Maybe<Scalars["String"]>;
|
|
1091
|
+
/** Another submodel level of car */
|
|
1092
|
+
edition?: Maybe<Scalars["String"]>;
|
|
1093
|
+
/** Car model version. Added by Chargetrip as an alternative for when a car manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years */
|
|
1094
|
+
chargetrip_version?: Maybe<Scalars["String"]>;
|
|
1082
1095
|
};
|
|
1083
1096
|
export declare type CarPremiumPerformance = {
|
|
1084
1097
|
/** Acceleration 0-100 km/h in seconds */
|
|
@@ -1099,38 +1112,40 @@ export declare type CarPremiumPrice = {
|
|
|
1099
1112
|
uk?: Maybe<CarPremiumPriceValueWithGrant>;
|
|
1100
1113
|
};
|
|
1101
1114
|
export declare type CarPremiumPriceValue = {
|
|
1115
|
+
/** Starting price for local market */
|
|
1116
|
+
value?: Maybe<Scalars["Int"]>;
|
|
1102
1117
|
/** Currency name for local market */
|
|
1103
1118
|
currency?: Maybe<Scalars["String"]>;
|
|
1119
|
+
/** Indicates if price value is based on estimates */
|
|
1120
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1104
1121
|
/**
|
|
1105
1122
|
* Indicates if price value is based on estimates
|
|
1106
1123
|
* @deprecated In favor of is_estimated
|
|
1107
1124
|
*/
|
|
1108
1125
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1109
|
-
/** Indicates if price value is based on estimates */
|
|
1110
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1111
|
-
/** Starting price for local market */
|
|
1112
|
-
value?: Maybe<Scalars["Int"]>;
|
|
1113
1126
|
};
|
|
1114
1127
|
export declare type CarPremiumPriceValueWithGrant = {
|
|
1128
|
+
/** Starting price for local market */
|
|
1129
|
+
value?: Maybe<Scalars["Int"]>;
|
|
1115
1130
|
/** Currency name for local market */
|
|
1116
1131
|
currency?: Maybe<Scalars["String"]>;
|
|
1132
|
+
/** Indicates if price value is based on estimates */
|
|
1133
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1134
|
+
/** Grant is applied to value */
|
|
1135
|
+
grant_applied?: Maybe<Scalars["Int"]>;
|
|
1117
1136
|
/**
|
|
1118
1137
|
* Indicates if price value is based on estimates
|
|
1119
1138
|
* @deprecated In favor of is_estimated
|
|
1120
1139
|
*/
|
|
1121
1140
|
estimated?: Maybe<Scalars["Boolean"]>;
|
|
1122
|
-
/** Grant is applied to value */
|
|
1123
|
-
grant_applied?: Maybe<Scalars["Int"]>;
|
|
1124
|
-
/** Indicates if price value is based on estimates */
|
|
1125
|
-
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1126
|
-
/** Starting price for local market */
|
|
1127
|
-
value?: Maybe<Scalars["Int"]>;
|
|
1128
1141
|
};
|
|
1129
1142
|
export declare type CarPremiumRange = {
|
|
1130
|
-
/**
|
|
1131
|
-
|
|
1132
|
-
/**
|
|
1133
|
-
|
|
1143
|
+
/** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km */
|
|
1144
|
+
wltp?: Maybe<Scalars["Int"]>;
|
|
1145
|
+
/** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
|
|
1146
|
+
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1147
|
+
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
|
|
1148
|
+
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
1134
1149
|
/** Rated range in NEDC combined cycle (NULL if not NEDC rated) in km */
|
|
1135
1150
|
nedc?: Maybe<Scalars["Int"]>;
|
|
1136
1151
|
/** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
|
|
@@ -1139,34 +1154,32 @@ export declare type CarPremiumRange = {
|
|
|
1139
1154
|
real?: Maybe<Scalars["Int"]>;
|
|
1140
1155
|
/** Indicates if real is estimated */
|
|
1141
1156
|
real_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1142
|
-
/** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km */
|
|
1143
|
-
wltp?: Maybe<Scalars["Int"]>;
|
|
1144
|
-
/** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
|
|
1145
|
-
wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1146
|
-
/** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
|
|
1147
|
-
wltp_teh?: Maybe<Scalars["Int"]>;
|
|
1148
1157
|
/** Worst conditions are based on -10°C and use of heating */
|
|
1149
1158
|
worst?: Maybe<CarPremiumRangeValue>;
|
|
1159
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
1160
|
+
best?: Maybe<CarPremiumRangeValue>;
|
|
1161
|
+
/** Is an index value of what we consider to be the real-world range. (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display on the front-end. */
|
|
1162
|
+
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1150
1163
|
};
|
|
1151
1164
|
export declare type CarPremiumRangeValue = {
|
|
1165
|
+
/** Estimated value on highway or express roads */
|
|
1166
|
+
highway?: Maybe<Scalars["Int"]>;
|
|
1152
1167
|
/** Estimated value on city roads */
|
|
1153
1168
|
city?: Maybe<Scalars["Int"]>;
|
|
1154
1169
|
/** Estimated combined value */
|
|
1155
1170
|
combined?: Maybe<Scalars["Int"]>;
|
|
1156
|
-
/** Estimated value on highway or express roads */
|
|
1157
|
-
highway?: Maybe<Scalars["Int"]>;
|
|
1158
1171
|
};
|
|
1159
1172
|
export declare type CarPremiumRouting = {
|
|
1160
|
-
/** Extra consumption model */
|
|
1161
|
-
consumption?: Maybe<CarPremiumRoutingConsumption>;
|
|
1162
|
-
/** Drag coefficient */
|
|
1163
|
-
drag_coefficient?: Maybe<Scalars["Float"]>;
|
|
1164
1173
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh */
|
|
1165
1174
|
fast_charging_support?: Maybe<Scalars["Boolean"]>;
|
|
1166
|
-
/**
|
|
1167
|
-
|
|
1175
|
+
/** Drag coefficient */
|
|
1176
|
+
drag_coefficient?: Maybe<Scalars["Float"]>;
|
|
1168
1177
|
/** Tire pressure recommended by manufacturer */
|
|
1169
1178
|
tire_pressure?: Maybe<Scalars["Float"]>;
|
|
1179
|
+
/** Extra consumption model */
|
|
1180
|
+
consumption?: Maybe<CarPremiumRoutingConsumption>;
|
|
1181
|
+
/** Amount of petrol that an equivalent petrol car would consume in l/100 km */
|
|
1182
|
+
petrol_consumption?: Maybe<Scalars["Float"]>;
|
|
1170
1183
|
};
|
|
1171
1184
|
export declare type CarPremiumRoutingConsumption = {
|
|
1172
1185
|
/** Consumption, in kWh, of the auxiliaries */
|
|
@@ -1183,24 +1196,24 @@ export declare type CarPremiumRoutingConsumptionValue = {
|
|
|
1183
1196
|
worst?: Maybe<Scalars["Float"]>;
|
|
1184
1197
|
};
|
|
1185
1198
|
export declare type CarPremiumSafety = {
|
|
1186
|
-
/** EuroNCAP results */
|
|
1187
|
-
euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
|
|
1188
1199
|
/** Number of seats equipped with ISOFIX */
|
|
1189
1200
|
isofix_seats?: Maybe<Scalars["Int"]>;
|
|
1201
|
+
/** EuroNCAP results */
|
|
1202
|
+
euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
|
|
1190
1203
|
};
|
|
1191
1204
|
export declare type CarPremiumSafetyEuroNcap = {
|
|
1205
|
+
/** EuroNCAP rating (out of 5 stars) */
|
|
1206
|
+
rating?: Maybe<Scalars["Int"]>;
|
|
1207
|
+
/** EuroNCAP year of rating */
|
|
1208
|
+
year?: Maybe<Scalars["Int"]>;
|
|
1192
1209
|
/** EuroNCAP rating of adult protection (out of 100%) */
|
|
1193
1210
|
adult?: Maybe<Scalars["Int"]>;
|
|
1194
1211
|
/** EuroNCAP rating of child protection (out of 100%) */
|
|
1195
1212
|
child?: Maybe<Scalars["Int"]>;
|
|
1196
|
-
/** EuroNCAP rating (out of 5 stars) */
|
|
1197
|
-
rating?: Maybe<Scalars["Int"]>;
|
|
1198
|
-
/** EuroNCAP rating of safety assists (out of 100%) */
|
|
1199
|
-
sa?: Maybe<Scalars["Int"]>;
|
|
1200
1213
|
/** EuroNCAP rating of vulnerable road users (out of 100%) */
|
|
1201
1214
|
vru?: Maybe<Scalars["Int"]>;
|
|
1202
|
-
/** EuroNCAP
|
|
1203
|
-
|
|
1215
|
+
/** EuroNCAP rating of safety assists (out of 100%) */
|
|
1216
|
+
sa?: Maybe<Scalars["Int"]>;
|
|
1204
1217
|
};
|
|
1205
1218
|
/** Propulsion */
|
|
1206
1219
|
export declare enum CarPropulsion {
|
|
@@ -1212,26 +1225,26 @@ export declare enum CarPropulsion {
|
|
|
1212
1225
|
REAR = "Rear"
|
|
1213
1226
|
}
|
|
1214
1227
|
export declare type CarRange = {
|
|
1215
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
1216
|
-
best?: Maybe<CarRangeValue>;
|
|
1217
|
-
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1218
|
-
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1219
1228
|
/** Index range in EV Database RealRange model in km */
|
|
1220
1229
|
real?: Maybe<Scalars["Int"]>;
|
|
1221
1230
|
/** Indicates if real is estimated */
|
|
1222
1231
|
real_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
1223
|
-
/** @deprecated You will receive null values */
|
|
1224
|
-
wltp?: Maybe<Scalars["Float"]>;
|
|
1225
1232
|
/** Worst conditions are based on -10°C and use of heating */
|
|
1226
1233
|
worst?: Maybe<CarRangeValue>;
|
|
1234
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
1235
|
+
best?: Maybe<CarRangeValue>;
|
|
1236
|
+
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1237
|
+
chargetrip_range?: Maybe<ChargetripRange>;
|
|
1238
|
+
/** @deprecated You will receive null values */
|
|
1239
|
+
wltp?: Maybe<Scalars["Float"]>;
|
|
1227
1240
|
};
|
|
1228
1241
|
export declare type CarRangeValue = {
|
|
1242
|
+
/** Estimated value on the highway or express roads */
|
|
1243
|
+
highway?: Maybe<Scalars["Int"]>;
|
|
1229
1244
|
/** Estimated value on the cities road */
|
|
1230
1245
|
city?: Maybe<Scalars["Int"]>;
|
|
1231
1246
|
/** Estimated combined value */
|
|
1232
1247
|
combined?: Maybe<Scalars["Int"]>;
|
|
1233
|
-
/** Estimated value on the highway or express roads */
|
|
1234
|
-
highway?: Maybe<Scalars["Int"]>;
|
|
1235
1248
|
};
|
|
1236
1249
|
export declare type CarRouting = {
|
|
1237
1250
|
/** Cars that support fast charging have a minimum charging speed of 43 kWh */
|
|
@@ -1241,12 +1254,12 @@ export declare type CarRouting = {
|
|
|
1241
1254
|
export declare enum CarStatus {
|
|
1242
1255
|
/** Was just imported */
|
|
1243
1256
|
NEW = "new",
|
|
1257
|
+
/** Is being reviewed by a human operator */
|
|
1258
|
+
REVIEW = "review",
|
|
1244
1259
|
/** Is public and can be used by a customer */
|
|
1245
1260
|
PUBLIC = "public",
|
|
1246
1261
|
/** Is removed and can not be used */
|
|
1247
|
-
REMOVED = "removed"
|
|
1248
|
-
/** Is being reviewed by a human operator */
|
|
1249
|
-
REVIEW = "review"
|
|
1262
|
+
REMOVED = "removed"
|
|
1250
1263
|
}
|
|
1251
1264
|
export declare type CarVideo = {
|
|
1252
1265
|
/** Video id */
|
|
@@ -1256,53 +1269,53 @@ export declare type CarVideo = {
|
|
|
1256
1269
|
};
|
|
1257
1270
|
/** Charging mode used at charging stations */
|
|
1258
1271
|
export declare enum ChargeMode {
|
|
1259
|
-
/** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80% */
|
|
1260
|
-
ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE",
|
|
1261
1272
|
/** Optimizes the charging time at each station, in order to decrease the total travel time. You will only charge up until the SOC you need in order to reach the next stop */
|
|
1262
|
-
OPTIMIZE_TRAVEL_TIME = "OPTIMIZE_TRAVEL_TIME"
|
|
1273
|
+
OPTIMIZE_TRAVEL_TIME = "OPTIMIZE_TRAVEL_TIME",
|
|
1274
|
+
/** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80% */
|
|
1275
|
+
ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
|
|
1263
1276
|
}
|
|
1264
1277
|
/** A groupped representation of EVSEs */
|
|
1265
1278
|
export declare type Charger = {
|
|
1279
|
+
/** Type of charger */
|
|
1280
|
+
standard?: Maybe<ConnectorType>;
|
|
1266
1281
|
/** Power of a charger */
|
|
1267
1282
|
power?: Maybe<Scalars["Float"]>;
|
|
1268
1283
|
/** Price of a charger */
|
|
1269
1284
|
price?: Maybe<Scalars["String"]>;
|
|
1270
1285
|
/** Charging speed */
|
|
1271
1286
|
speed?: Maybe<StationSpeedType>;
|
|
1272
|
-
/** Type of charger */
|
|
1273
|
-
standard?: Maybe<ConnectorType>;
|
|
1274
1287
|
/** Statuses of all the EVSEs grouped in a charger */
|
|
1275
1288
|
status?: Maybe<ChargerStatuses>;
|
|
1276
1289
|
/** Total number of EVSEs grouped in a charger */
|
|
1277
1290
|
total?: Maybe<Scalars["Int"]>;
|
|
1278
1291
|
};
|
|
1279
1292
|
export declare enum ChargerStatus {
|
|
1280
|
-
/** The charger is occupied/busy */
|
|
1281
|
-
BUSY = "busy",
|
|
1282
|
-
/** The charger has an error */
|
|
1283
|
-
ERROR = "error",
|
|
1284
1293
|
/** The charger is free */
|
|
1285
1294
|
FREE = "free",
|
|
1295
|
+
/** The charger is occupied/busy */
|
|
1296
|
+
BUSY = "busy",
|
|
1286
1297
|
/** The charger is unknown */
|
|
1287
|
-
UNKNOWN = "unknown"
|
|
1298
|
+
UNKNOWN = "unknown",
|
|
1299
|
+
/** The charger has an error */
|
|
1300
|
+
ERROR = "error"
|
|
1288
1301
|
}
|
|
1289
1302
|
/** Groupping by status of the chargers */
|
|
1290
1303
|
export declare type ChargerStatuses = {
|
|
1291
|
-
/** How many are busy */
|
|
1292
|
-
busy?: Maybe<Scalars["Int"]>;
|
|
1293
|
-
/** How many are not available */
|
|
1294
|
-
error?: Maybe<Scalars["Int"]>;
|
|
1295
1304
|
/** How many are free */
|
|
1296
1305
|
free?: Maybe<Scalars["Int"]>;
|
|
1306
|
+
/** How many are busy */
|
|
1307
|
+
busy?: Maybe<Scalars["Int"]>;
|
|
1297
1308
|
/** How many are unknown */
|
|
1298
1309
|
unknown?: Maybe<Scalars["Int"]>;
|
|
1310
|
+
/** How many are not available */
|
|
1311
|
+
error?: Maybe<Scalars["Int"]>;
|
|
1299
1312
|
};
|
|
1300
1313
|
/** Chargetrip's custom real world range provides a carefully calculated display range for all EV models. This is based on our own research and driving data */
|
|
1301
1314
|
export declare type ChargetripRange = {
|
|
1302
|
-
/** Best conditions are based on 23°C and no use of A/C */
|
|
1303
|
-
best?: Maybe<Scalars["Float"]>;
|
|
1304
1315
|
/** Worst conditions are based on -10°C and use of heating */
|
|
1305
1316
|
worst?: Maybe<Scalars["Float"]>;
|
|
1317
|
+
/** Best conditions are based on 23°C and no use of A/C */
|
|
1318
|
+
best?: Maybe<Scalars["Float"]>;
|
|
1306
1319
|
};
|
|
1307
1320
|
export declare type ChargingBehaviour = {
|
|
1308
1321
|
/** Charging behaviour of users divided in groups, based on real-time information */
|
|
@@ -1311,40 +1324,124 @@ export declare type ChargingBehaviour = {
|
|
|
1311
1324
|
description?: Maybe<Scalars["String"]>;
|
|
1312
1325
|
};
|
|
1313
1326
|
export declare enum ChargingBehaviourCode {
|
|
1327
|
+
/** Mainly morning charging, and some mixed afternoon and evening charging */
|
|
1328
|
+
URBAN_CHARGING = "URBAN_CHARGING",
|
|
1314
1329
|
/** Mainly fast charging, with some morning and afternoon charging */
|
|
1315
1330
|
FAST_CHARGING = "FAST_CHARGING",
|
|
1316
1331
|
/** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging */
|
|
1317
1332
|
MIXED_CHARGING = "MIXED_CHARGING",
|
|
1318
1333
|
/** Mainly noise charging */
|
|
1319
1334
|
NOISE_CHARGING = "NOISE_CHARGING",
|
|
1320
|
-
/** Mainly morning charging, with some afternoon charging */
|
|
1321
|
-
OFFICE_CHARGING = "OFFICE_CHARGING",
|
|
1322
1335
|
/** Mainly overnight charging */
|
|
1323
1336
|
OVERNIGHT_CHARGING = "OVERNIGHT_CHARGING",
|
|
1324
|
-
/** Mainly morning charging,
|
|
1325
|
-
|
|
1337
|
+
/** Mainly morning charging, with some afternoon charging */
|
|
1338
|
+
OFFICE_CHARGING = "OFFICE_CHARGING"
|
|
1326
1339
|
}
|
|
1327
1340
|
export declare type Connect = {
|
|
1328
1341
|
/** List of connectivity providers to which a vehicle can connect */
|
|
1329
1342
|
providers?: Maybe<Array<Maybe<ConnectProvider>>>;
|
|
1330
1343
|
};
|
|
1344
|
+
export declare type ConnectBattery = {
|
|
1345
|
+
/** Estimated range by OEM */
|
|
1346
|
+
range?: Maybe<Scalars["Int"]>;
|
|
1347
|
+
/** Percentage of the battery remaining */
|
|
1348
|
+
percentage?: Maybe<Scalars["Int"]>;
|
|
1349
|
+
/** Capacity of the battery, in kwh */
|
|
1350
|
+
capacity?: Maybe<Scalars["Int"]>;
|
|
1351
|
+
/** Date when the battery data was retrieved, as ISO-8601 date */
|
|
1352
|
+
date?: Maybe<Scalars["DateTime"]>;
|
|
1353
|
+
};
|
|
1354
|
+
export declare type ConnectCharge = {
|
|
1355
|
+
/** Vehicle is plugged in */
|
|
1356
|
+
is_plugged_in?: Maybe<Scalars["Boolean"]>;
|
|
1357
|
+
/** Vehicle is charging */
|
|
1358
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
1359
|
+
/** Battery is fully charged */
|
|
1360
|
+
is_fully_charged?: Maybe<Scalars["Boolean"]>;
|
|
1361
|
+
/** Charge limit defined by vehicle owner */
|
|
1362
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
1363
|
+
/** Charge speed, in kwh */
|
|
1364
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
1365
|
+
/** Estimation when charging is completed, as ISO-8601 date */
|
|
1366
|
+
fully_charged_at?: Maybe<Scalars["DateTime"]>;
|
|
1367
|
+
/** Estimated minutes till charged */
|
|
1368
|
+
minutes_till_charged?: Maybe<Scalars["Int"]>;
|
|
1369
|
+
/** Date when the charge data was retrieved, as ISO-8601 date */
|
|
1370
|
+
date?: Maybe<Scalars["DateTime"]>;
|
|
1371
|
+
};
|
|
1331
1372
|
export declare type ConnectFilter = {
|
|
1332
1373
|
/** List of connectivity providers to which a vehicle can connect */
|
|
1333
1374
|
providers?: Maybe<Array<Maybe<ConnectProvider>>>;
|
|
1334
1375
|
};
|
|
1376
|
+
/** Location of the vehicle */
|
|
1377
|
+
export declare type ConnectLocation = {
|
|
1378
|
+
/** Feature type */
|
|
1379
|
+
type: FeatureType;
|
|
1380
|
+
/** Geometry of the feature */
|
|
1381
|
+
geometry: GeometryPoint;
|
|
1382
|
+
/** Properties object containing meta data about the feature point */
|
|
1383
|
+
properties?: Maybe<ConnectLocationProperties>;
|
|
1384
|
+
};
|
|
1385
|
+
/** Properties of a vehicle location */
|
|
1386
|
+
export declare type ConnectLocationProperties = {
|
|
1387
|
+
/** Date when the location was retrieved, as ISO-8601 date */
|
|
1388
|
+
date: Scalars["DateTime"];
|
|
1389
|
+
};
|
|
1390
|
+
export declare type ConnectOdometer = {
|
|
1391
|
+
/** Odometer value, distance driven, default in km */
|
|
1392
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
1393
|
+
/** Date when the odometer data was retrieved, as ISO-8601 date */
|
|
1394
|
+
date?: Maybe<Scalars["DateTime"]>;
|
|
1395
|
+
};
|
|
1335
1396
|
export declare enum ConnectProvider {
|
|
1336
1397
|
ENODE = "Enode"
|
|
1337
1398
|
}
|
|
1399
|
+
export declare enum ConnectScope {
|
|
1400
|
+
/** Vehicle location, applicable for: Enode */
|
|
1401
|
+
LOCATION = "location",
|
|
1402
|
+
/** Charge state, applicable for: Enode */
|
|
1403
|
+
CHARGE_STATE = "charge_state",
|
|
1404
|
+
/** Odometer reading, applicable for: Enode */
|
|
1405
|
+
ODOMETER = "odometer"
|
|
1406
|
+
}
|
|
1407
|
+
export declare type ConnectedVehicle = {
|
|
1408
|
+
/** Unique ID of the connected vehicle */
|
|
1409
|
+
id: Scalars["ID"];
|
|
1410
|
+
/** Unique ID of the vehicle */
|
|
1411
|
+
vehicle_id: Scalars["ID"];
|
|
1412
|
+
/** Status of the connected vehicle */
|
|
1413
|
+
status: ConnectedVehicleStatus;
|
|
1414
|
+
/** URL to connect the vehicle to the connectivity provider */
|
|
1415
|
+
authorization_url?: Maybe<Scalars["String"]>;
|
|
1416
|
+
/** Connectivity provider */
|
|
1417
|
+
provider: CarConnectivityProvider;
|
|
1418
|
+
/** Scope for accessing the vehicle */
|
|
1419
|
+
scope?: Maybe<Array<Maybe<ConnectScope>>>;
|
|
1420
|
+
/** Custom label for a connected vehicle that can be assigned by a user */
|
|
1421
|
+
label?: Maybe<Scalars["String"]>;
|
|
1422
|
+
/** Vehicle identification number, unique identifier for a vehicle */
|
|
1423
|
+
vin?: Maybe<Scalars["String"]>;
|
|
1424
|
+
};
|
|
1425
|
+
export declare enum ConnectedVehicleStatus {
|
|
1426
|
+
/** Vehicle was added to the Chargetrip platform but not yet authorized */
|
|
1427
|
+
PENDING = "pending",
|
|
1428
|
+
/** Vehicle was authorized. Chargetrip can retrieve data on behave of the user */
|
|
1429
|
+
AUTHORIZED = "authorized",
|
|
1430
|
+
/** User did revoke permissions to retrieve data from the vehicle */
|
|
1431
|
+
DEAUTHORIZED = "deauthorized"
|
|
1432
|
+
}
|
|
1338
1433
|
/** Connector data which extends OCPI Connector */
|
|
1339
1434
|
export declare type Connector = {
|
|
1340
|
-
/** Custom properties of a connector. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
1341
|
-
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1342
|
-
/** Format (socket/cable) of an installed connector. */
|
|
1343
|
-
format?: Maybe<OCPIConnectorFormat>;
|
|
1344
1435
|
/** 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. */
|
|
1345
1436
|
id?: Maybe<Scalars["String"]>;
|
|
1346
|
-
/**
|
|
1347
|
-
|
|
1437
|
+
/** Standard of an installed connector. */
|
|
1438
|
+
standard?: Maybe<ConnectorType>;
|
|
1439
|
+
/** Format (socket/cable) of an installed connector. */
|
|
1440
|
+
format?: Maybe<OCPIConnectorFormat>;
|
|
1441
|
+
/** Type of power of an installed connector. */
|
|
1442
|
+
power_type?: Maybe<OCPIPowerType>;
|
|
1443
|
+
/** 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. */
|
|
1444
|
+
max_voltage?: Maybe<Scalars["Int"]>;
|
|
1348
1445
|
/** Maximum amperage of a connector, in ampere [A]. */
|
|
1349
1446
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
1350
1447
|
/**
|
|
@@ -1353,23 +1450,8 @@ export declare type Connector = {
|
|
|
1353
1450
|
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
1354
1451
|
*/
|
|
1355
1452
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
1356
|
-
/** 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. */
|
|
1357
|
-
max_voltage?: Maybe<Scalars["Int"]>;
|
|
1358
1453
|
/** Maximum electric power in kW */
|
|
1359
1454
|
power?: Maybe<Scalars["Float"]>;
|
|
1360
|
-
/** Type of power of an installed connector. */
|
|
1361
|
-
power_type?: Maybe<OCPIPowerType>;
|
|
1362
|
-
/**
|
|
1363
|
-
* Charging prices
|
|
1364
|
-
* @deprecated In favor of custom_properties.pricing
|
|
1365
|
-
*/
|
|
1366
|
-
pricing?: Maybe<Pricing>;
|
|
1367
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1368
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
1369
|
-
/** Standard of an installed connector. */
|
|
1370
|
-
standard?: Maybe<ConnectorType>;
|
|
1371
|
-
/** List of valid charging tariffs */
|
|
1372
|
-
tariff?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
1373
1455
|
/**
|
|
1374
1456
|
* 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.
|
|
1375
1457
|
* 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.
|
|
@@ -1378,6 +1460,19 @@ export declare type Connector = {
|
|
|
1378
1460
|
tariff_ids?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
1379
1461
|
/** URL to an operator’s terms and conditions. */
|
|
1380
1462
|
terms_and_conditions?: Maybe<Scalars["String"]>;
|
|
1463
|
+
/** Timestamp when a connector was last updated (or created). */
|
|
1464
|
+
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
1465
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1466
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
1467
|
+
/** List of valid charging tariffs */
|
|
1468
|
+
tariff?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
1469
|
+
/**
|
|
1470
|
+
* Charging prices
|
|
1471
|
+
* @deprecated In favor of custom_properties.pricing
|
|
1472
|
+
*/
|
|
1473
|
+
pricing?: Maybe<Pricing>;
|
|
1474
|
+
/** Custom properties of a connector. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
1475
|
+
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1381
1476
|
};
|
|
1382
1477
|
export declare type ConnectorCustomProperties = {
|
|
1383
1478
|
/** Charging prices */
|
|
@@ -1387,8 +1482,6 @@ export declare type ConnectorCustomProperties = {
|
|
|
1387
1482
|
export declare enum ConnectorType {
|
|
1388
1483
|
/** The connector type is CHAdeMO, DC */
|
|
1389
1484
|
CHADEMO = "CHADEMO",
|
|
1390
|
-
/** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */
|
|
1391
|
-
CHAOJI = "CHAOJI",
|
|
1392
1485
|
/** Standard/domestic household, type "A", NEMA 1-15, 2 pins */
|
|
1393
1486
|
DOMESTIC_A = "DOMESTIC_A",
|
|
1394
1487
|
/** Standard/domestic household, type "B", NEMA 5-15, 3 pins */
|
|
@@ -1419,8 +1512,6 @@ export declare enum ConnectorType {
|
|
|
1419
1512
|
DOMESTIC_N = "DOMESTIC_N",
|
|
1420
1513
|
/** Standard/Domestic household, type "O", TIS 166-2549, 3 pins */
|
|
1421
1514
|
DOMESTIC_O = "DOMESTIC_O",
|
|
1422
|
-
/** The connector type is GB_T (Chinese standard), DC */
|
|
1423
|
-
GB_T = "GB_T",
|
|
1424
1515
|
/** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue) */
|
|
1425
1516
|
IEC_60309_2_SINGLE_16 = "IEC_60309_2_single_16",
|
|
1426
1517
|
/** IEC 60309-2 Industrial connector three phase 16 amperes (usually red) */
|
|
@@ -1441,6 +1532,18 @@ export declare enum ConnectorType {
|
|
|
1441
1532
|
IEC_62196_T3A = "IEC_62196_T3A",
|
|
1442
1533
|
/** IEC 62196 Type 3C "Scame" */
|
|
1443
1534
|
IEC_62196_T3C = "IEC_62196_T3C",
|
|
1535
|
+
/** On-board bottom-up-pantograph typically for bus charging */
|
|
1536
|
+
PANTOGRAPH_BOTTOM_UP = "PANTOGRAPH_BOTTOM_UP",
|
|
1537
|
+
/** Off-board top-down-pantograph typically for bus charging */
|
|
1538
|
+
PANTOGRAPH_TOP_DOWN = "PANTOGRAPH_TOP_DOWN",
|
|
1539
|
+
/** Tesla connector "Roadster"-type (round, 4 pins) */
|
|
1540
|
+
TESLA_R = "TESLA_R",
|
|
1541
|
+
/** Tesla connector "Model-S"-type (oval, 5 pins) */
|
|
1542
|
+
TESLA_S = "TESLA_S",
|
|
1543
|
+
/** The connector type is GB_T (Chinese standard), DC */
|
|
1544
|
+
GB_T = "GB_T",
|
|
1545
|
+
/** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */
|
|
1546
|
+
CHAOJI = "CHAOJI",
|
|
1444
1547
|
/** The connector type is NEMA 5-20, 3 pins */
|
|
1445
1548
|
NEMA_5_20 = "NEMA_5_20",
|
|
1446
1549
|
/** The connector type is NEMA 6-30, 3 pins */
|
|
@@ -1454,30 +1557,22 @@ export declare enum ConnectorType {
|
|
|
1454
1557
|
/** The connector type is NEMA 14-30, 3 pins, rating of 30 A */
|
|
1455
1558
|
NEMA_14_30 = "NEMA_14_30",
|
|
1456
1559
|
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
|
|
1457
|
-
NEMA_14_50 = "NEMA_14_50"
|
|
1458
|
-
/** On-board bottom-up-pantograph typically for bus charging */
|
|
1459
|
-
PANTOGRAPH_BOTTOM_UP = "PANTOGRAPH_BOTTOM_UP",
|
|
1460
|
-
/** Off-board top-down-pantograph typically for bus charging */
|
|
1461
|
-
PANTOGRAPH_TOP_DOWN = "PANTOGRAPH_TOP_DOWN",
|
|
1462
|
-
/** Tesla connector "Roadster"-type (round, 4 pins) */
|
|
1463
|
-
TESLA_R = "TESLA_R",
|
|
1464
|
-
/** Tesla connector "Model-S"-type (oval, 5 pins) */
|
|
1465
|
-
TESLA_S = "TESLA_S"
|
|
1560
|
+
NEMA_14_50 = "NEMA_14_50"
|
|
1466
1561
|
}
|
|
1467
1562
|
/** The complete contact information */
|
|
1468
1563
|
export declare type Contact = {
|
|
1564
|
+
/** The phone number in international format */
|
|
1565
|
+
phone?: Maybe<Scalars["String"]>;
|
|
1469
1566
|
/** The email address */
|
|
1470
1567
|
email?: Maybe<Scalars["String"]>;
|
|
1568
|
+
/** The absolute URL of the website */
|
|
1569
|
+
website?: Maybe<Scalars["String"]>;
|
|
1471
1570
|
/** The absolute URL of the facebook profile page */
|
|
1472
1571
|
facebook?: Maybe<Scalars["String"]>;
|
|
1473
|
-
/** The phone number in international format */
|
|
1474
|
-
phone?: Maybe<Scalars["String"]>;
|
|
1475
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1476
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
1477
1572
|
/** The absolute URL of the twitter profile page */
|
|
1478
1573
|
twitter?: Maybe<Scalars["String"]>;
|
|
1479
|
-
/**
|
|
1480
|
-
|
|
1574
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1575
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
1481
1576
|
};
|
|
1482
1577
|
/** ISO-3166 alpha-2 country codes */
|
|
1483
1578
|
export declare enum CountryCodeAlpha2 {
|
|
@@ -1734,70 +1829,90 @@ export declare enum CountryCodeAlpha2 {
|
|
|
1734
1829
|
ZM = "ZM",
|
|
1735
1830
|
ZW = "ZW"
|
|
1736
1831
|
}
|
|
1832
|
+
export declare type CreateConnectedVehicleInput = {
|
|
1833
|
+
/** Id from the vehicle */
|
|
1834
|
+
vehicle_id: Scalars["ID"];
|
|
1835
|
+
/** Connectivity provider used to retrieve data from the vehicle */
|
|
1836
|
+
provider: CarConnectivityProvider;
|
|
1837
|
+
/** Label for a connected vehicle */
|
|
1838
|
+
label?: Maybe<Scalars["PlainString"]>;
|
|
1839
|
+
/** Provider specific options. See the developer portal for more details */
|
|
1840
|
+
options: NewConnectedVehicleOptions;
|
|
1841
|
+
};
|
|
1842
|
+
export declare enum DistanceUnit {
|
|
1843
|
+
/** Return the distance in meters */
|
|
1844
|
+
METER = "meter",
|
|
1845
|
+
/** Return the distance in feet */
|
|
1846
|
+
FOOT = "foot",
|
|
1847
|
+
/** Return the distance in kilometers */
|
|
1848
|
+
KILOMETER = "kilometer",
|
|
1849
|
+
/** Return the distance in miles */
|
|
1850
|
+
MILE = "mile"
|
|
1851
|
+
}
|
|
1737
1852
|
/** EVSE data which extends OCPI EVSE */
|
|
1738
1853
|
export declare type EVSE = {
|
|
1854
|
+
/**
|
|
1855
|
+
* 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.
|
|
1856
|
+
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
|
|
1857
|
+
*/
|
|
1858
|
+
uid?: Maybe<Scalars["String"]>;
|
|
1859
|
+
/** 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. */
|
|
1860
|
+
evse_id?: Maybe<Scalars["String"]>;
|
|
1861
|
+
/** Indicates the current status of an EVSE. */
|
|
1862
|
+
status?: Maybe<OCPIStatus>;
|
|
1863
|
+
/** Indicates a planned status update of a nEVSE. */
|
|
1864
|
+
status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;
|
|
1739
1865
|
/** List of functionalities that an EVSE is capable of. */
|
|
1740
1866
|
capabilities?: Maybe<Array<Maybe<OCPICapability>>>;
|
|
1741
1867
|
/** List of available connectors on an EVSE. */
|
|
1742
1868
|
connectors?: Maybe<Array<Maybe<Connector>>>;
|
|
1743
|
-
/** Coordinates of a EVSE. */
|
|
1744
|
-
coordinates?: Maybe<OCPIGeoLocation>;
|
|
1745
|
-
/** 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. */
|
|
1746
|
-
evse_id?: Maybe<Scalars["String"]>;
|
|
1747
1869
|
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */
|
|
1748
1870
|
floor_level?: Maybe<Scalars["String"]>;
|
|
1871
|
+
/** Coordinates of a EVSE. */
|
|
1872
|
+
coordinates?: Maybe<OCPIGeoLocation>;
|
|
1873
|
+
/** A number/string printed on the outside of an EVSE for visual identification. */
|
|
1874
|
+
physical_reference?: Maybe<Scalars["String"]>;
|
|
1875
|
+
/** Restrictions that apply to a parking spot. */
|
|
1876
|
+
parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;
|
|
1749
1877
|
/** Links to images related to an EVSE such as photos or logos. */
|
|
1750
1878
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
1751
1879
|
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). */
|
|
1752
1880
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
1753
1881
|
/** Indicates if parking is free or paid. */
|
|
1754
1882
|
parking_cost?: Maybe<ParkingCost>;
|
|
1755
|
-
/** Restrictions that apply to a parking spot. */
|
|
1756
|
-
parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;
|
|
1757
|
-
/** A number/string printed on the outside of an EVSE for visual identification. */
|
|
1758
|
-
physical_reference?: Maybe<Scalars["String"]>;
|
|
1759
1883
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1760
1884
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1761
|
-
/** Indicates the current status of an EVSE. */
|
|
1762
|
-
status?: Maybe<OCPIStatus>;
|
|
1763
|
-
/** Indicates a planned status update of a nEVSE. */
|
|
1764
|
-
status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;
|
|
1765
|
-
/**
|
|
1766
|
-
* 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.
|
|
1767
|
-
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
|
|
1768
|
-
*/
|
|
1769
|
-
uid?: Maybe<Scalars["String"]>;
|
|
1770
1885
|
};
|
|
1771
1886
|
/** A GeoJSON Feature<Point> */
|
|
1772
1887
|
export declare type FeaturePoint = {
|
|
1773
|
-
/** Geometry of the feature */
|
|
1774
|
-
geometry: Point;
|
|
1775
1888
|
/** Feature ID */
|
|
1776
1889
|
id?: Maybe<Scalars["String"]>;
|
|
1777
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1778
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
1779
1890
|
/** Feature type */
|
|
1780
1891
|
type: FeatureType;
|
|
1892
|
+
/** Geometry of the feature */
|
|
1893
|
+
geometry: Point;
|
|
1894
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1895
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
1781
1896
|
};
|
|
1782
1897
|
/** A GeoJSON Feature<Point> input */
|
|
1783
1898
|
export declare type FeaturePointInput = {
|
|
1784
|
-
/** Geometry of the feature */
|
|
1785
|
-
geometry: PointInput;
|
|
1786
1899
|
/** The feature ID */
|
|
1787
1900
|
id?: Maybe<Scalars["String"]>;
|
|
1788
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1789
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
1790
1901
|
/** Feature type */
|
|
1791
1902
|
type: FeatureType;
|
|
1903
|
+
/** Geometry of the feature */
|
|
1904
|
+
geometry: PointInput;
|
|
1905
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1906
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
1792
1907
|
};
|
|
1793
1908
|
/** A GeoJSON Feature<Point> input */
|
|
1794
1909
|
export declare type FeaturePointPolygonInput = {
|
|
1910
|
+
/** Feature type */
|
|
1911
|
+
type: FeatureType;
|
|
1795
1912
|
/** Geometry of the feature */
|
|
1796
1913
|
geometry: PointInput;
|
|
1797
1914
|
/** Optional object where you can store custom data you need in your application. */
|
|
1798
1915
|
properties?: Maybe<FeaturePointPolygonPropertiesInput>;
|
|
1799
|
-
/** Feature type */
|
|
1800
|
-
type: FeatureType;
|
|
1801
1916
|
};
|
|
1802
1917
|
/** Properties for Feature<Point> input */
|
|
1803
1918
|
export declare type FeaturePointPolygonProperties = {
|
|
@@ -1811,26 +1926,31 @@ export declare type FeaturePointPolygonPropertiesInput = {
|
|
|
1811
1926
|
};
|
|
1812
1927
|
/** A GeoJSON Feature<Polygon> */
|
|
1813
1928
|
export declare type FeaturePolygon = {
|
|
1929
|
+
/** Feature type */
|
|
1930
|
+
type: FeatureType;
|
|
1814
1931
|
/** Geometry of the feature */
|
|
1815
1932
|
geometry: Polygon;
|
|
1816
1933
|
/** Properties of the Polygon Feature */
|
|
1817
1934
|
properties?: Maybe<PolygonProperties>;
|
|
1818
|
-
/** Feature type */
|
|
1819
|
-
type: FeatureType;
|
|
1820
1935
|
};
|
|
1821
1936
|
/** A GeoJSON Feature<Point> */
|
|
1822
1937
|
export declare type FeaturePolygonPoint = {
|
|
1938
|
+
/** Feature type */
|
|
1939
|
+
type: FeatureType;
|
|
1823
1940
|
/** Geometry of the feature */
|
|
1824
1941
|
geometry: Point;
|
|
1825
1942
|
/** Optional object where you can store custom data you need in your application. */
|
|
1826
1943
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1827
|
-
/** Feature type */
|
|
1828
|
-
type: FeatureType;
|
|
1829
1944
|
};
|
|
1830
1945
|
/** GeoJSON Feature type */
|
|
1831
1946
|
export declare enum FeatureType {
|
|
1832
1947
|
FEATURE = "Feature"
|
|
1833
1948
|
}
|
|
1949
|
+
/** Geometry point with GPS coordinates */
|
|
1950
|
+
export declare type GeometryPoint = {
|
|
1951
|
+
type: PointType;
|
|
1952
|
+
coordinates: Array<Scalars["Float"]>;
|
|
1953
|
+
};
|
|
1834
1954
|
/** Navigation service providers available */
|
|
1835
1955
|
export declare enum InstructionsFormat {
|
|
1836
1956
|
/** Chargetrip raw instructions */
|
|
@@ -1841,50 +1961,50 @@ export declare enum InstructionsFormat {
|
|
|
1841
1961
|
export declare type Isoline = {
|
|
1842
1962
|
/** Isoline id */
|
|
1843
1963
|
id: Scalars["ID"];
|
|
1964
|
+
/** Isoline status */
|
|
1965
|
+
status: IsolineStatus;
|
|
1966
|
+
/** Shape of the isoline consisting in a list of polygons */
|
|
1967
|
+
polygons?: Maybe<Array<Maybe<FeaturePolygon>>>;
|
|
1844
1968
|
/** Origin point of the request */
|
|
1845
1969
|
origin: FeaturePolygonPoint;
|
|
1970
|
+
/** Vehicle id */
|
|
1971
|
+
vehicle_id: Scalars["ID"];
|
|
1846
1972
|
/** Number of Isolines to be generated representing SoC (default: 1, max: 100) */
|
|
1847
1973
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
1848
|
-
/** Shape of the isoline consisting in a list of polygons */
|
|
1849
|
-
polygons?: Maybe<Array<Maybe<FeaturePolygon>>>;
|
|
1850
1974
|
/** Season to be taken into account when generating the isoline, defaults to current */
|
|
1851
1975
|
season?: Maybe<RouteSeason>;
|
|
1852
|
-
/** Isoline status */
|
|
1853
|
-
status: IsolineStatus;
|
|
1854
|
-
/** Vehicle id */
|
|
1855
|
-
vehicle_id: Scalars["ID"];
|
|
1856
1976
|
};
|
|
1857
1977
|
export declare type IsolineInput = {
|
|
1978
|
+
/** Vehicle id */
|
|
1979
|
+
vehicle_id: Scalars["ID"];
|
|
1858
1980
|
/** Origin point of the request */
|
|
1859
1981
|
origin: FeaturePointPolygonInput;
|
|
1860
1982
|
/** Numbers of polygons to be generated (default: 1, max: 100) */
|
|
1861
1983
|
polygon_count?: Maybe<Scalars["Int"]>;
|
|
1862
1984
|
/** Season to be taken into account when generating the isoline, defaults to current */
|
|
1863
1985
|
season?: Maybe<RouteSeason>;
|
|
1864
|
-
/** Vehicle id */
|
|
1865
|
-
vehicle_id: Scalars["ID"];
|
|
1866
1986
|
};
|
|
1867
1987
|
/** Status of the isoline label */
|
|
1868
1988
|
export declare enum IsolineStatus {
|
|
1869
1989
|
/** Isoline label has been successfully generated */
|
|
1870
1990
|
DONE = "done",
|
|
1871
|
-
/** There was an error while generating the isoline label */
|
|
1872
|
-
ERROR = "error",
|
|
1873
1991
|
/** Isoline label is under processing */
|
|
1874
|
-
PENDING = "pending"
|
|
1992
|
+
PENDING = "pending",
|
|
1993
|
+
/** There was an error while generating the isoline label */
|
|
1994
|
+
ERROR = "error"
|
|
1875
1995
|
}
|
|
1876
1996
|
/** Types of a leg */
|
|
1877
1997
|
export declare enum LegType {
|
|
1878
|
-
/** This leg ends at the destination, and is the last leg of the route */
|
|
1879
|
-
FINAL = "final",
|
|
1880
1998
|
/** This leg ends at a charging station and the car must recharge */
|
|
1881
1999
|
STATION = "station",
|
|
1882
|
-
/** This leg ends at the destination which is a charging station, and is the last leg of the route */
|
|
1883
|
-
STATIONFINAL = "stationFinal",
|
|
1884
2000
|
/** This leg ends at a via charging station and the car must recharge */
|
|
1885
2001
|
STATIONVIA = "stationVia",
|
|
1886
2002
|
/** This leg ends at a via location */
|
|
1887
|
-
VIA = "via"
|
|
2003
|
+
VIA = "via",
|
|
2004
|
+
/** This leg ends at the destination, and is the last leg of the route */
|
|
2005
|
+
FINAL = "final",
|
|
2006
|
+
/** This leg ends at the destination which is a charging station, and is the last leg of the route */
|
|
2007
|
+
STATIONFINAL = "stationFinal"
|
|
1888
2008
|
}
|
|
1889
2009
|
/** Preferred language for the mapping */
|
|
1890
2010
|
export declare enum MappingLanguage {
|
|
@@ -1899,13 +2019,29 @@ export declare enum MappingProvider {
|
|
|
1899
2019
|
MAPBOXV5 = "MapboxV5"
|
|
1900
2020
|
}
|
|
1901
2021
|
export declare type Mutation = {
|
|
2022
|
+
/** [BETA] Create a connected vehicle for a given vehicle id and a connectivity provider */
|
|
2023
|
+
createConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2024
|
+
/** [BETA] Authorize a connected vehicle */
|
|
2025
|
+
authorizeConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2026
|
+
/** [BETA] Update a connected vehicle */
|
|
2027
|
+
updateConnectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2028
|
+
/** [BETA] Revoke access for a connected vehicle */
|
|
2029
|
+
removeConnectedVehicle?: Maybe<Scalars["Void"]>;
|
|
2030
|
+
/** [BETA] Generate a set of consumption based Isolines */
|
|
2031
|
+
createIsoline?: Maybe<Scalars["ID"]>;
|
|
2032
|
+
/** [BETA] Start a new navigation session on top of an existing route */
|
|
2033
|
+
startNavigation?: Maybe<Scalars["ID"]>;
|
|
2034
|
+
/** [BETA] Update the navigation session */
|
|
2035
|
+
updateNavigation?: Maybe<Scalars["Void"]>;
|
|
2036
|
+
/** [BETA] Recalculate the current navigation route */
|
|
2037
|
+
recalculateNavigation?: Maybe<Scalars["Void"]>;
|
|
2038
|
+
/** [BETA] End a navigation session */
|
|
2039
|
+
finishNavigation?: Maybe<Scalars["Void"]>;
|
|
1902
2040
|
/**
|
|
1903
2041
|
* Add a new review.
|
|
1904
2042
|
* 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
|
|
1905
2043
|
*/
|
|
1906
2044
|
addReview: Review;
|
|
1907
|
-
/** [BETA] Generate a set of consumption based Isolines */
|
|
1908
|
-
createIsoline?: Maybe<Scalars["ID"]>;
|
|
1909
2045
|
/**
|
|
1910
2046
|
* Remove a review added by an authenticated user.
|
|
1911
2047
|
* The `x-token` header is mandatory in order to authorize the user who wants to remove a review.
|
|
@@ -1914,34 +2050,23 @@ export declare type Mutation = {
|
|
|
1914
2050
|
* This is a premium feature, contact Chargetrip for more information.
|
|
1915
2051
|
*/
|
|
1916
2052
|
deleteUserReview: Review;
|
|
1917
|
-
/** [BETA] End a navigation session */
|
|
1918
|
-
finishNavigation?: Maybe<Scalars["Void"]>;
|
|
1919
2053
|
/** Create a new route from the route input and its ID */
|
|
1920
2054
|
newRoute?: Maybe<Scalars["ID"]>;
|
|
1921
|
-
/** [BETA] Recalculate the current navigation route */
|
|
1922
|
-
recalculateNavigation?: Maybe<Scalars["Void"]>;
|
|
1923
|
-
/** [BETA] Start a new navigation session on top of an existing route */
|
|
1924
|
-
startNavigation?: Maybe<Scalars["ID"]>;
|
|
1925
|
-
/** [BETA] Update the navigation session */
|
|
1926
|
-
updateNavigation?: Maybe<Scalars["Void"]>;
|
|
1927
|
-
};
|
|
1928
|
-
export declare type MutationaddReviewArgs = {
|
|
1929
|
-
review: ReviewAdd;
|
|
1930
2055
|
};
|
|
1931
|
-
export declare type
|
|
1932
|
-
input
|
|
2056
|
+
export declare type MutationcreateConnectedVehicleArgs = {
|
|
2057
|
+
input?: Maybe<CreateConnectedVehicleInput>;
|
|
1933
2058
|
};
|
|
1934
|
-
export declare type
|
|
1935
|
-
|
|
2059
|
+
export declare type MutationauthorizeConnectedVehicleArgs = {
|
|
2060
|
+
input?: Maybe<AuthorizeConnectedVehicleInput>;
|
|
1936
2061
|
};
|
|
1937
|
-
export declare type
|
|
1938
|
-
input:
|
|
2062
|
+
export declare type MutationupdateConnectedVehicleArgs = {
|
|
2063
|
+
input: UpdateConnectedVehicleInput;
|
|
1939
2064
|
};
|
|
1940
|
-
export declare type
|
|
1941
|
-
input
|
|
2065
|
+
export declare type MutationremoveConnectedVehicleArgs = {
|
|
2066
|
+
input: RemoveConnectedVehicleInput;
|
|
1942
2067
|
};
|
|
1943
|
-
export declare type
|
|
1944
|
-
input:
|
|
2068
|
+
export declare type MutationcreateIsolineArgs = {
|
|
2069
|
+
input: IsolineInput;
|
|
1945
2070
|
};
|
|
1946
2071
|
export declare type MutationstartNavigationArgs = {
|
|
1947
2072
|
input: NavigationStartInput;
|
|
@@ -1949,26 +2074,41 @@ export declare type MutationstartNavigationArgs = {
|
|
|
1949
2074
|
export declare type MutationupdateNavigationArgs = {
|
|
1950
2075
|
input: NavigationUpdateInput;
|
|
1951
2076
|
};
|
|
2077
|
+
export declare type MutationrecalculateNavigationArgs = {
|
|
2078
|
+
input: NavigationRecalculateInput;
|
|
2079
|
+
};
|
|
2080
|
+
export declare type MutationfinishNavigationArgs = {
|
|
2081
|
+
input: NavigationFinishInput;
|
|
2082
|
+
};
|
|
2083
|
+
export declare type MutationaddReviewArgs = {
|
|
2084
|
+
review: ReviewAdd;
|
|
2085
|
+
};
|
|
2086
|
+
export declare type MutationdeleteUserReviewArgs = {
|
|
2087
|
+
id: Scalars["ID"];
|
|
2088
|
+
};
|
|
2089
|
+
export declare type MutationnewRouteArgs = {
|
|
2090
|
+
input?: Maybe<RequestInput>;
|
|
2091
|
+
};
|
|
1952
2092
|
/** The navigation session data */
|
|
1953
2093
|
export declare type Navigation = {
|
|
1954
|
-
/** A set of alternative charging stations to next station */
|
|
1955
|
-
alternative_stations?: Maybe<Array<Maybe<NavigationStation>>>;
|
|
1956
2094
|
/** ID of the navigation session */
|
|
1957
2095
|
id: Scalars["ID"];
|
|
1958
|
-
/** Navigation instructions */
|
|
1959
|
-
instructions?: Maybe<Scalars["JSON"]>;
|
|
1960
|
-
/** Last known location */
|
|
1961
|
-
last_known_location?: Maybe<Point>;
|
|
1962
|
-
/** Next charging station */
|
|
1963
|
-
next_station?: Maybe<NavigationStation>;
|
|
1964
|
-
/** The current route alternative used for navigation */
|
|
1965
|
-
route_alternative_id?: Maybe<Scalars["String"]>;
|
|
1966
2096
|
/** The current route used for navigation */
|
|
1967
2097
|
route_id?: Maybe<Scalars["String"]>;
|
|
2098
|
+
/** The current route alternative used for navigation */
|
|
2099
|
+
route_alternative_id?: Maybe<Scalars["String"]>;
|
|
1968
2100
|
/** The state of a navigation session. The status can be driving, charging, finished, or error */
|
|
1969
2101
|
state?: Maybe<NavigationState>;
|
|
1970
2102
|
/** State of charge at the last known location */
|
|
1971
2103
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2104
|
+
/** Last known location */
|
|
2105
|
+
last_known_location?: Maybe<Point>;
|
|
2106
|
+
/** Next charging station */
|
|
2107
|
+
next_station?: Maybe<NavigationStation>;
|
|
2108
|
+
/** A set of alternative charging stations to next station */
|
|
2109
|
+
alternative_stations?: Maybe<Array<Maybe<NavigationStation>>>;
|
|
2110
|
+
/** Navigation instructions */
|
|
2111
|
+
instructions?: Maybe<Scalars["JSON"]>;
|
|
1972
2112
|
};
|
|
1973
2113
|
/** The navigation session data */
|
|
1974
2114
|
export declare type NavigationinstructionsArgs = {
|
|
@@ -1978,74 +2118,74 @@ export declare type NavigationinstructionsArgs = {
|
|
|
1978
2118
|
};
|
|
1979
2119
|
/** Input for the navigation recalculate */
|
|
1980
2120
|
export declare type NavigationFinishInput = {
|
|
1981
|
-
/** Current coordinates */
|
|
1982
|
-
current_location: PointInput;
|
|
1983
2121
|
/** ID of the navigation session */
|
|
1984
2122
|
id: Scalars["ID"];
|
|
2123
|
+
/** Current coordinates */
|
|
2124
|
+
current_location: PointInput;
|
|
1985
2125
|
};
|
|
1986
2126
|
/** Input for the navigation recalculate */
|
|
1987
2127
|
export declare type NavigationRecalculateInput = {
|
|
1988
|
-
/** Origin location of a new route */
|
|
1989
|
-
current_location: PointInput;
|
|
1990
|
-
/** Heading of a vehicle, in degrees */
|
|
1991
|
-
heading?: Maybe<Scalars["Float"]>;
|
|
1992
2128
|
/** ID of the navigation session */
|
|
1993
2129
|
id: Scalars["ID"];
|
|
1994
2130
|
/** State of charge at origin */
|
|
1995
2131
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2132
|
+
/** Origin location of a new route */
|
|
2133
|
+
current_location: PointInput;
|
|
1996
2134
|
/** Via points of a new route. If this field is not sent, the original via points will be used */
|
|
1997
2135
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
2136
|
+
/** Heading of a vehicle, in degrees */
|
|
2137
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
1998
2138
|
};
|
|
1999
2139
|
/** Input for the navigation start */
|
|
2000
2140
|
export declare type NavigationStartInput = {
|
|
2001
|
-
/** Current coordinates */
|
|
2002
|
-
current_location: PointInput;
|
|
2003
|
-
/** ID of the route alternative of the navigation session */
|
|
2004
|
-
route_alternative_id?: Maybe<Scalars["String"]>;
|
|
2005
2141
|
/** ID of the route of the navigation session */
|
|
2006
2142
|
route_id: Scalars["String"];
|
|
2143
|
+
/** ID of the route alternative of the navigation session */
|
|
2144
|
+
route_alternative_id?: Maybe<Scalars["String"]>;
|
|
2145
|
+
/** Current coordinates */
|
|
2146
|
+
current_location: PointInput;
|
|
2007
2147
|
};
|
|
2008
2148
|
/** State of navigation session */
|
|
2009
2149
|
export declare enum NavigationState {
|
|
2010
|
-
/** Vehicle is charging */
|
|
2011
|
-
CHARGING = "charging",
|
|
2012
2150
|
/** Vehicle is driving */
|
|
2013
2151
|
DRIVING = "driving",
|
|
2014
|
-
/**
|
|
2015
|
-
|
|
2152
|
+
/** Vehicle is charging */
|
|
2153
|
+
CHARGING = "charging",
|
|
2016
2154
|
/** Navigation session is completed (either manually or automatically 48 hours after the last update) */
|
|
2017
|
-
FINISHED = "finished"
|
|
2155
|
+
FINISHED = "finished",
|
|
2156
|
+
/** Failed to update navigation session due to route error or not found */
|
|
2157
|
+
ERROR = "error"
|
|
2018
2158
|
}
|
|
2019
2159
|
/** Navigation session station type */
|
|
2020
2160
|
export declare type NavigationStation = {
|
|
2021
|
-
/** Estimated consumption, in kWh, from last the known location until the next charging station */
|
|
2022
|
-
estimated_consumption?: Maybe<Scalars["Float"]>;
|
|
2023
|
-
/** Estimated duration, in seconds, from the last known location until the next charging station */
|
|
2024
|
-
estimated_duration?: Maybe<Scalars["Int"]>;
|
|
2025
|
-
/** Estimated state of charge, in kWh, at arrival on the next charging station */
|
|
2026
|
-
estimated_state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2027
2161
|
/** The ID as string of the charging station */
|
|
2028
2162
|
station_id?: Maybe<Scalars["String"]>;
|
|
2029
2163
|
/** GPS location of the charging station */
|
|
2030
2164
|
station_location?: Maybe<Point>;
|
|
2031
2165
|
/** An array with all GPS locations of via points until the next charging station */
|
|
2032
2166
|
via?: Maybe<Array<Maybe<Point>>>;
|
|
2167
|
+
/** Estimated state of charge, in kWh, at arrival on the next charging station */
|
|
2168
|
+
estimated_state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2169
|
+
/** Estimated consumption, in kWh, from last the known location until the next charging station */
|
|
2170
|
+
estimated_consumption?: Maybe<Scalars["Float"]>;
|
|
2171
|
+
/** Estimated duration, in seconds, from the last known location until the next charging station */
|
|
2172
|
+
estimated_duration?: Maybe<Scalars["Int"]>;
|
|
2033
2173
|
};
|
|
2034
2174
|
/** Input for the navigation session update telemetry data */
|
|
2035
2175
|
export declare type NavigationTelemetryUpdateInput = {
|
|
2036
|
-
/** Indicates if a vehicle is charging */
|
|
2037
|
-
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
2038
2176
|
/** State of charge at the last known location, in kwh */
|
|
2039
2177
|
state_of_charge?: Maybe<Scalars["Float"]>;
|
|
2178
|
+
/** Indicates if a vehicle is charging */
|
|
2179
|
+
is_charging?: Maybe<Scalars["Boolean"]>;
|
|
2040
2180
|
/** Average tire pressure, in bars. This information should come from telemetry */
|
|
2041
2181
|
tire_pressure?: Maybe<Scalars["Float"]>;
|
|
2042
2182
|
};
|
|
2043
2183
|
/** Input for the navigation update */
|
|
2044
2184
|
export declare type NavigationUpdateInput = {
|
|
2045
|
-
/** Heading of a vehicle, in degrees */
|
|
2046
|
-
heading?: Maybe<Scalars["Float"]>;
|
|
2047
2185
|
/** ID of the navigation session */
|
|
2048
2186
|
id: Scalars["ID"];
|
|
2187
|
+
/** Heading of a vehicle, in degrees */
|
|
2188
|
+
heading?: Maybe<Scalars["Float"]>;
|
|
2049
2189
|
/** A list of locations that were collected since the last update */
|
|
2050
2190
|
location_data: Array<NavigationUpdateLocationsInput>;
|
|
2051
2191
|
/** Telemetry data input */
|
|
@@ -2053,14 +2193,14 @@ export declare type NavigationUpdateInput = {
|
|
|
2053
2193
|
};
|
|
2054
2194
|
/** Properties of the location */
|
|
2055
2195
|
export declare type NavigationUpdateLocationPropertiesInput = {
|
|
2056
|
-
/** Altitude information, in meters. This is optional */
|
|
2057
|
-
altitude?: Maybe<Scalars["Int"]>;
|
|
2058
2196
|
/** Current route leg index corresponding to a location */
|
|
2059
2197
|
route_leg: Scalars["Int"];
|
|
2060
2198
|
/** Speed at a location, in km/h */
|
|
2061
2199
|
speed: Scalars["Float"];
|
|
2062
2200
|
/** UNIX timestamp at location, in seconds */
|
|
2063
2201
|
timestamp: Scalars["Int"];
|
|
2202
|
+
/** Altitude information, in meters. This is optional */
|
|
2203
|
+
altitude?: Maybe<Scalars["Int"]>;
|
|
2064
2204
|
};
|
|
2065
2205
|
/** Input for the navigation update locations */
|
|
2066
2206
|
export declare type NavigationUpdateLocationsInput = {
|
|
@@ -2069,6 +2209,12 @@ export declare type NavigationUpdateLocationsInput = {
|
|
|
2069
2209
|
/** Extra information about the location */
|
|
2070
2210
|
properties: NavigationUpdateLocationPropertiesInput;
|
|
2071
2211
|
};
|
|
2212
|
+
export declare type NewConnectedVehicleOptions = {
|
|
2213
|
+
/** Redirect uri */
|
|
2214
|
+
redirect_uri?: Maybe<Scalars["PlainString"]>;
|
|
2215
|
+
/** Scope */
|
|
2216
|
+
scope?: Maybe<Array<Maybe<ConnectScope>>>;
|
|
2217
|
+
};
|
|
2072
2218
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2073
2219
|
export declare type OCPIAdditionalGeoLocation = {
|
|
2074
2220
|
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
@@ -2080,10 +2226,10 @@ export declare type OCPIAdditionalGeoLocation = {
|
|
|
2080
2226
|
};
|
|
2081
2227
|
/** The capabilities of an EVSE. */
|
|
2082
2228
|
export declare enum OCPICapability {
|
|
2083
|
-
/** The EVSE supports charging preferences. */
|
|
2084
|
-
CHARGING_PREFERENCES_CAPABLE = "CHARGING_PREFERENCES_CAPABLE",
|
|
2085
2229
|
/** The EVSE supports charging profiles. */
|
|
2086
2230
|
CHARGING_PROFILE_CAPABLE = "CHARGING_PROFILE_CAPABLE",
|
|
2231
|
+
/** The EVSE supports charging preferences. */
|
|
2232
|
+
CHARGING_PREFERENCES_CAPABLE = "CHARGING_PREFERENCES_CAPABLE",
|
|
2087
2233
|
/** EVSE has a payment terminal that supports chip cards. */
|
|
2088
2234
|
CHIP_CARD_SUPPORT = "CHIP_CARD_SUPPORT",
|
|
2089
2235
|
/** EVSE has a payment terminal that supports contactless cards. */
|
|
@@ -2100,26 +2246,24 @@ export declare enum OCPICapability {
|
|
|
2100
2246
|
RESERVABLE = "RESERVABLE",
|
|
2101
2247
|
/** Charging at this EVSE can be authorized with an RFID token. */
|
|
2102
2248
|
RFID_READER = "RFID_READER",
|
|
2103
|
-
/** When a StartSession is sent to this EVSE, the MSP is required to add the optional connector_id field in the StartSession object. */
|
|
2104
|
-
START_SESSION_CONNECTOR_REQUIRED = "START_SESSION_CONNECTOR_REQUIRED",
|
|
2105
2249
|
/** This EVSE supports token groups, two or more tokens work as one, so that a session can be started with one token and stopped with another (handy when a card and key-fob are given to the EV-driver). */
|
|
2106
2250
|
TOKEN_GROUP_CAPABLE = "TOKEN_GROUP_CAPABLE",
|
|
2107
2251
|
/** Connectors have a mechanical lock that can be requested by the eMSP to be unlocked. */
|
|
2108
|
-
UNLOCK_CAPABLE = "UNLOCK_CAPABLE"
|
|
2252
|
+
UNLOCK_CAPABLE = "UNLOCK_CAPABLE",
|
|
2253
|
+
/** When a StartSession is sent to this EVSE, the MSP is required to add the optional connector_id field in the StartSession object. */
|
|
2254
|
+
START_SESSION_CONNECTOR_REQUIRED = "START_SESSION_CONNECTOR_REQUIRED"
|
|
2109
2255
|
}
|
|
2110
2256
|
/** The format of the connector, whether it is a socket or a plug. */
|
|
2111
2257
|
export declare enum OCPIConnectorFormat {
|
|
2112
|
-
/** The connector is an attached cable; the EV users car needs to have a fitting inlet. */
|
|
2113
|
-
CABLE = "CABLE",
|
|
2114
2258
|
/** The connector is a socket; the EV user needs to bring a fitting plug. */
|
|
2115
|
-
SOCKET = "SOCKET"
|
|
2259
|
+
SOCKET = "SOCKET",
|
|
2260
|
+
/** The connector is an attached cable; the EV users car needs to have a fitting inlet. */
|
|
2261
|
+
CABLE = "CABLE"
|
|
2116
2262
|
}
|
|
2117
2263
|
/** Deprecated: Please use ConnectorType instead */
|
|
2118
2264
|
export declare enum OCPIConnectorType {
|
|
2119
2265
|
/** The connector type is CHAdeMO, DC */
|
|
2120
2266
|
CHADEMO = "CHADEMO",
|
|
2121
|
-
/** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */
|
|
2122
|
-
CHAOJI = "CHAOJI",
|
|
2123
2267
|
/** Standard/domestic household, type "A", NEMA 1-15, 2 pins */
|
|
2124
2268
|
DOMESTIC_A = "DOMESTIC_A",
|
|
2125
2269
|
/** Standard/domestic household, type "B", NEMA 5-15, 3 pins */
|
|
@@ -2150,8 +2294,6 @@ export declare enum OCPIConnectorType {
|
|
|
2150
2294
|
DOMESTIC_N = "DOMESTIC_N",
|
|
2151
2295
|
/** Standard/Domestic household, type "O", TIS 166-2549, 3 pins */
|
|
2152
2296
|
DOMESTIC_O = "DOMESTIC_O",
|
|
2153
|
-
/** The connector type is GB_T (Chinese standard), DC */
|
|
2154
|
-
GB_T = "GB_T",
|
|
2155
2297
|
/** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue) */
|
|
2156
2298
|
IEC_60309_2_SINGLE_16 = "IEC_60309_2_single_16",
|
|
2157
2299
|
/** IEC 60309-2 Industrial connector three phase 16 amperes (usually red) */
|
|
@@ -2172,6 +2314,18 @@ export declare enum OCPIConnectorType {
|
|
|
2172
2314
|
IEC_62196_T3A = "IEC_62196_T3A",
|
|
2173
2315
|
/** IEC 62196 Type 3C "Scame" */
|
|
2174
2316
|
IEC_62196_T3C = "IEC_62196_T3C",
|
|
2317
|
+
/** On-board bottom-up-pantograph typically for bus charging */
|
|
2318
|
+
PANTOGRAPH_BOTTOM_UP = "PANTOGRAPH_BOTTOM_UP",
|
|
2319
|
+
/** Off-board top-down-pantograph typically for bus charging */
|
|
2320
|
+
PANTOGRAPH_TOP_DOWN = "PANTOGRAPH_TOP_DOWN",
|
|
2321
|
+
/** Tesla connector "Roadster"-type (round, 4 pins) */
|
|
2322
|
+
TESLA_R = "TESLA_R",
|
|
2323
|
+
/** Tesla connector "Model-S"-type (oval, 5 pins) */
|
|
2324
|
+
TESLA_S = "TESLA_S",
|
|
2325
|
+
/** The connector type is GB_T (Chinese standard), DC */
|
|
2326
|
+
GB_T = "GB_T",
|
|
2327
|
+
/** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */
|
|
2328
|
+
CHAOJI = "CHAOJI",
|
|
2175
2329
|
/** The connector type is NEMA 5-20, 3 pins */
|
|
2176
2330
|
NEMA_5_20 = "NEMA_5_20",
|
|
2177
2331
|
/** The connector type is NEMA 6-30, 3 pins */
|
|
@@ -2185,24 +2339,16 @@ export declare enum OCPIConnectorType {
|
|
|
2185
2339
|
/** The connector type is NEMA 14-30, 3 pins, rating of 30 A */
|
|
2186
2340
|
NEMA_14_30 = "NEMA_14_30",
|
|
2187
2341
|
/** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
|
|
2188
|
-
NEMA_14_50 = "NEMA_14_50"
|
|
2189
|
-
/** On-board bottom-up-pantograph typically for bus charging */
|
|
2190
|
-
PANTOGRAPH_BOTTOM_UP = "PANTOGRAPH_BOTTOM_UP",
|
|
2191
|
-
/** Off-board top-down-pantograph typically for bus charging */
|
|
2192
|
-
PANTOGRAPH_TOP_DOWN = "PANTOGRAPH_TOP_DOWN",
|
|
2193
|
-
/** Tesla connector "Roadster"-type (round, 4 pins) */
|
|
2194
|
-
TESLA_R = "TESLA_R",
|
|
2195
|
-
/** Tesla connector "Model-S"-type (oval, 5 pins) */
|
|
2196
|
-
TESLA_S = "TESLA_S"
|
|
2342
|
+
NEMA_14_50 = "NEMA_14_50"
|
|
2197
2343
|
}
|
|
2198
2344
|
export declare enum OCPIDayOfWeek {
|
|
2199
|
-
FRIDAY = "FRIDAY",
|
|
2200
2345
|
MONDAY = "MONDAY",
|
|
2201
|
-
SATURDAY = "SATURDAY",
|
|
2202
|
-
SUNDAY = "SUNDAY",
|
|
2203
|
-
THURSDAY = "THURSDAY",
|
|
2204
2346
|
TUESDAY = "TUESDAY",
|
|
2205
|
-
WEDNESDAY = "WEDNESDAY"
|
|
2347
|
+
WEDNESDAY = "WEDNESDAY",
|
|
2348
|
+
THURSDAY = "THURSDAY",
|
|
2349
|
+
FRIDAY = "FRIDAY",
|
|
2350
|
+
SATURDAY = "SATURDAY",
|
|
2351
|
+
SUNDAY = "SUNDAY"
|
|
2206
2352
|
}
|
|
2207
2353
|
export declare type OCPIDisplayText = {
|
|
2208
2354
|
/** Language Code ISO 639-1 */
|
|
@@ -2212,55 +2358,55 @@ export declare type OCPIDisplayText = {
|
|
|
2212
2358
|
};
|
|
2213
2359
|
/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
|
|
2214
2360
|
export declare type OCPIEnergyMix = {
|
|
2215
|
-
/**
|
|
2216
|
-
|
|
2361
|
+
/** True if the power is 100% from regenerative sources */
|
|
2362
|
+
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2217
2363
|
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */
|
|
2218
2364
|
energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
|
|
2219
2365
|
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */
|
|
2220
2366
|
environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
|
|
2221
|
-
/** True if the power is 100% from regenerative sources */
|
|
2222
|
-
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2223
2367
|
/** Name of the energy supplier, delivering the energy for this location or tariff.* */
|
|
2224
2368
|
supplier_name?: Maybe<Scalars["String"]>;
|
|
2369
|
+
/** Name of the energy suppliers product/tariff plan used at this location.* */
|
|
2370
|
+
energy_product_name?: Maybe<Scalars["String"]>;
|
|
2225
2371
|
};
|
|
2226
2372
|
export declare type OCPIEnergySource = {
|
|
2227
|
-
/** Percentage of this source (0-100) in the mix. */
|
|
2228
|
-
percentage?: Maybe<Scalars["Int"]>;
|
|
2229
2373
|
/** The type of energy source. */
|
|
2230
2374
|
source?: Maybe<OCPIEnergySourceCategory>;
|
|
2375
|
+
/** Percentage of this source (0-100) in the mix. */
|
|
2376
|
+
percentage?: Maybe<Scalars["Int"]>;
|
|
2231
2377
|
};
|
|
2232
2378
|
/** Categories of energy sources. */
|
|
2233
2379
|
export declare enum OCPIEnergySourceCategory {
|
|
2380
|
+
/** Nuclear power sources. */
|
|
2381
|
+
NUCLEAR = "NUCLEAR",
|
|
2382
|
+
/** All kinds of fossil power sources. */
|
|
2383
|
+
GENERAL_FOSSIL = "GENERAL_FOSSIL",
|
|
2234
2384
|
/** Fossil power from coal. */
|
|
2235
2385
|
COAL = "COAL",
|
|
2236
2386
|
/** Fossil power from gas. */
|
|
2237
2387
|
GAS = "GAS",
|
|
2238
|
-
/** All kinds of fossil power sources. */
|
|
2239
|
-
GENERAL_FOSSIL = "GENERAL_FOSSIL",
|
|
2240
2388
|
/** All kinds of regenerative power sources. */
|
|
2241
2389
|
GENERAL_GREEN = "GENERAL_GREEN",
|
|
2242
|
-
/** Nuclear power sources. */
|
|
2243
|
-
NUCLEAR = "NUCLEAR",
|
|
2244
2390
|
/** Regenerative power from PV. */
|
|
2245
2391
|
SOLAR = "SOLAR",
|
|
2246
|
-
/** Regenerative power from water turbines. */
|
|
2247
|
-
WATER = "WATER",
|
|
2248
2392
|
/** Regenerative power from wind turbines. */
|
|
2249
|
-
WIND = "WIND"
|
|
2393
|
+
WIND = "WIND",
|
|
2394
|
+
/** Regenerative power from water turbines. */
|
|
2395
|
+
WATER = "WATER"
|
|
2250
2396
|
}
|
|
2251
2397
|
/** Amount of waste produced/emitted per kWh. */
|
|
2252
2398
|
export declare type OCPIEnvironmentalImpact = {
|
|
2253
|
-
/** Amount of this portion in g/kWh. */
|
|
2254
|
-
amount?: Maybe<Scalars["Int"]>;
|
|
2255
2399
|
/** The environmental impact category of this value. */
|
|
2256
2400
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2401
|
+
/** Amount of this portion in g/kWh. */
|
|
2402
|
+
amount?: Maybe<Scalars["Int"]>;
|
|
2257
2403
|
};
|
|
2258
2404
|
/** Categories of environmental impact values. */
|
|
2259
2405
|
export declare enum OCPIEnvironmentalImpactCategory {
|
|
2260
|
-
/** Exhausted carbon dioxide in grams per kilowatthour. */
|
|
2261
|
-
CARBON_DIOXIDE = "CARBON_DIOXIDE",
|
|
2262
2406
|
/** Produced nuclear waste in grams per kilowatthour. */
|
|
2263
|
-
NUCLEAR_WASTE = "NUCLEAR_WASTE"
|
|
2407
|
+
NUCLEAR_WASTE = "NUCLEAR_WASTE",
|
|
2408
|
+
/** Exhausted carbon dioxide in grams per kilowatthour. */
|
|
2409
|
+
CARBON_DIOXIDE = "CARBON_DIOXIDE"
|
|
2264
2410
|
}
|
|
2265
2411
|
/** Specifies one exceptional period for opening or access hours. */
|
|
2266
2412
|
export declare type OCPIExceptionalPeriod = {
|
|
@@ -2270,44 +2416,44 @@ export declare type OCPIExceptionalPeriod = {
|
|
|
2270
2416
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2271
2417
|
};
|
|
2272
2418
|
export declare enum OCPIFacility {
|
|
2273
|
-
/** An airport. */
|
|
2274
|
-
AIRPORT = "AIRPORT",
|
|
2275
|
-
/** A bike/e-bike/e-scooter sharing location. */
|
|
2276
|
-
BIKE_SHARING = "BIKE_SHARING",
|
|
2277
|
-
/** A bus stop. */
|
|
2278
|
-
BUS_STOP = "BUS_STOP",
|
|
2279
|
-
/** A cafe. */
|
|
2280
|
-
CAFE = "CAFE",
|
|
2281
|
-
/** A carpool parking. */
|
|
2282
|
-
CARPOOL_PARKING = "CARPOOL_PARKING",
|
|
2283
|
-
/** A Fuel station. */
|
|
2284
|
-
FUEL_STATION = "FUEL_STATION",
|
|
2285
2419
|
/** A hotel. */
|
|
2286
2420
|
HOTEL = "HOTEL",
|
|
2287
|
-
/** A mall or shopping center. */
|
|
2288
|
-
MALL = "MALL",
|
|
2289
|
-
/** A metro station. */
|
|
2290
|
-
METRO_STATION = "METRO_STATION",
|
|
2291
|
-
/** A museum. */
|
|
2292
|
-
MUSEUM = "MUSEUM",
|
|
2293
|
-
/** Located in, or close to, a park, nature reserve etc. */
|
|
2294
|
-
NATURE = "NATURE",
|
|
2295
|
-
/** A parking lot. */
|
|
2296
|
-
PARKING_LOT = "PARKING_LOT",
|
|
2297
|
-
/** A recreation area. */
|
|
2298
|
-
RECREATION_AREA = "RECREATION_AREA",
|
|
2299
2421
|
/** A restaurant. */
|
|
2300
2422
|
RESTAURANT = "RESTAURANT",
|
|
2301
|
-
/**
|
|
2302
|
-
|
|
2423
|
+
/** A cafe. */
|
|
2424
|
+
CAFE = "CAFE",
|
|
2425
|
+
/** A mall or shopping center. */
|
|
2426
|
+
MALL = "MALL",
|
|
2303
2427
|
/** A supermarket. */
|
|
2304
2428
|
SUPERMARKET = "SUPERMARKET",
|
|
2429
|
+
/** Sport facilities: gym, field etc. */
|
|
2430
|
+
SPORT = "SPORT",
|
|
2431
|
+
/** A recreation area. */
|
|
2432
|
+
RECREATION_AREA = "RECREATION_AREA",
|
|
2433
|
+
/** Located in, or close to, a park, nature reserve etc. */
|
|
2434
|
+
NATURE = "NATURE",
|
|
2435
|
+
/** A museum. */
|
|
2436
|
+
MUSEUM = "MUSEUM",
|
|
2437
|
+
/** A bike/e-bike/e-scooter sharing location. */
|
|
2438
|
+
BIKE_SHARING = "BIKE_SHARING",
|
|
2439
|
+
/** A bus stop. */
|
|
2440
|
+
BUS_STOP = "BUS_STOP",
|
|
2305
2441
|
/** A taxi stand. */
|
|
2306
2442
|
TAXI_STAND = "TAXI_STAND",
|
|
2307
|
-
/** A train station. */
|
|
2308
|
-
TRAIN_STATION = "TRAIN_STATION",
|
|
2309
2443
|
/** A tram stop/station. */
|
|
2310
2444
|
TRAM_STOP = "TRAM_STOP",
|
|
2445
|
+
/** A metro station. */
|
|
2446
|
+
METRO_STATION = "METRO_STATION",
|
|
2447
|
+
/** A train station. */
|
|
2448
|
+
TRAIN_STATION = "TRAIN_STATION",
|
|
2449
|
+
/** An airport. */
|
|
2450
|
+
AIRPORT = "AIRPORT",
|
|
2451
|
+
/** A parking lot. */
|
|
2452
|
+
PARKING_LOT = "PARKING_LOT",
|
|
2453
|
+
/** A carpool parking. */
|
|
2454
|
+
CARPOOL_PARKING = "CARPOOL_PARKING",
|
|
2455
|
+
/** A Fuel station. */
|
|
2456
|
+
FUEL_STATION = "FUEL_STATION",
|
|
2311
2457
|
/** Wifi or other type of internet available. */
|
|
2312
2458
|
WIFI = "WIFI"
|
|
2313
2459
|
}
|
|
@@ -2320,28 +2466,28 @@ export declare type OCPIGeoLocation = {
|
|
|
2320
2466
|
};
|
|
2321
2467
|
/** Opening and access hours of the location. */
|
|
2322
2468
|
export declare type OCPIHours = {
|
|
2323
|
-
/** 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. */
|
|
2324
|
-
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2325
|
-
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */
|
|
2326
|
-
exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2327
|
-
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */
|
|
2328
|
-
regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
|
|
2329
2469
|
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. */
|
|
2330
2470
|
twentyfourseven?: Maybe<Scalars["Boolean"]>;
|
|
2471
|
+
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */
|
|
2472
|
+
regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
|
|
2473
|
+
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */
|
|
2474
|
+
exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2475
|
+
/** 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. */
|
|
2476
|
+
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2331
2477
|
};
|
|
2332
2478
|
export declare type OCPIImage = {
|
|
2333
|
-
/**
|
|
2334
|
-
|
|
2335
|
-
/** Height of the full scale image */
|
|
2336
|
-
height?: Maybe<Scalars["Int"]>;
|
|
2479
|
+
/** URL from where the image data can be fetched through a web browser. */
|
|
2480
|
+
url?: Maybe<Scalars["String"]>;
|
|
2337
2481
|
/** URL from where a thumbnail of the image can be fetched through a webbrowser. */
|
|
2338
2482
|
thumbnail?: Maybe<Scalars["String"]>;
|
|
2483
|
+
/** Category of an image */
|
|
2484
|
+
category?: Maybe<OCPIImageCategory>;
|
|
2339
2485
|
/** Image type: gif, jpeg, png, svg */
|
|
2340
2486
|
type?: Maybe<Scalars["String"]>;
|
|
2341
|
-
/** URL from where the image data can be fetched through a web browser. */
|
|
2342
|
-
url?: Maybe<Scalars["String"]>;
|
|
2343
2487
|
/** Width of the full scale image */
|
|
2344
2488
|
width?: Maybe<Scalars["Int"]>;
|
|
2489
|
+
/** Height of the full scale image */
|
|
2490
|
+
height?: Maybe<Scalars["Int"]>;
|
|
2345
2491
|
};
|
|
2346
2492
|
/** 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. */
|
|
2347
2493
|
export declare enum OCPIImageCategory {
|
|
@@ -2362,41 +2508,41 @@ export declare enum OCPIImageCategory {
|
|
|
2362
2508
|
}
|
|
2363
2509
|
/** This value, if provided, represents the restriction to the parking spot for different purposes. */
|
|
2364
2510
|
export declare enum OCPIParkingRestriction {
|
|
2365
|
-
/** Parking spot for customers/guests only, for example in case of a hotel or shop. */
|
|
2366
|
-
CUSTOMERS = "CUSTOMERS",
|
|
2367
|
-
/** Reserved parking spot for disabled people with valid ID. */
|
|
2368
|
-
DISABLED = "DISABLED",
|
|
2369
2511
|
/** Reserved parking spot for electric vehicles. */
|
|
2370
2512
|
EV_ONLY = "EV_ONLY",
|
|
2371
|
-
/** Parking spot only suitable for (electric) motorcycles or scooters. */
|
|
2372
|
-
MOTORCYCLES = "MOTORCYCLES",
|
|
2373
2513
|
/** Parking is only allowed while plugged in (charging). */
|
|
2374
|
-
PLUGGED = "PLUGGED"
|
|
2514
|
+
PLUGGED = "PLUGGED",
|
|
2515
|
+
/** Reserved parking spot for disabled people with valid ID. */
|
|
2516
|
+
DISABLED = "DISABLED",
|
|
2517
|
+
/** Parking spot for customers/guests only, for example in case of a hotel or shop. */
|
|
2518
|
+
CUSTOMERS = "CUSTOMERS",
|
|
2519
|
+
/** Parking spot only suitable for (electric) motorcycles or scooters. */
|
|
2520
|
+
MOTORCYCLES = "MOTORCYCLES"
|
|
2375
2521
|
}
|
|
2376
2522
|
/** Reflects the general type of the charge point’s location. May be used for user information. */
|
|
2377
2523
|
export declare enum OCPIParkingType {
|
|
2378
2524
|
/** Location on a parking facility/rest area along a motorway, freeway, interstate, highway etc. */
|
|
2379
2525
|
ALONG_MOTORWAY = "ALONG_MOTORWAY",
|
|
2380
|
-
/** Location is on the driveway of a house/building. */
|
|
2381
|
-
ON_DRIVEWAY = "ON_DRIVEWAY",
|
|
2382
|
-
/** Parking in public space along a street. */
|
|
2383
|
-
ON_STREET = "ON_STREET",
|
|
2384
2526
|
/** Multistorey car park. */
|
|
2385
2527
|
PARKING_GARAGE = "PARKING_GARAGE",
|
|
2386
2528
|
/** A cleared area that is intended for parking vehicles, i.e. at supermarkets, bars, etc. */
|
|
2387
2529
|
PARKING_LOT = "PARKING_LOT",
|
|
2530
|
+
/** Location is on the driveway of a house/building. */
|
|
2531
|
+
ON_DRIVEWAY = "ON_DRIVEWAY",
|
|
2532
|
+
/** Parking in public space along a street. */
|
|
2533
|
+
ON_STREET = "ON_STREET",
|
|
2388
2534
|
/** Multistorey car park, mainly underground. */
|
|
2389
2535
|
UNDERGROUND_GARAGE = "UNDERGROUND_GARAGE"
|
|
2390
2536
|
}
|
|
2391
2537
|
export declare enum OCPIPowerType {
|
|
2392
2538
|
/** AC single phase. */
|
|
2393
2539
|
AC_1_PHASE = "AC_1_PHASE",
|
|
2540
|
+
/** AC three phase. */
|
|
2541
|
+
AC_3_PHASE = "AC_3_PHASE",
|
|
2394
2542
|
/** AC two phases, only two of the three available phases connected. */
|
|
2395
2543
|
AC_2_PHASE = "AC_2_PHASE",
|
|
2396
2544
|
/** AC two phases using split phase system. */
|
|
2397
2545
|
AC_2_PHASE_SPLIT = "AC_2_PHASE_SPLIT",
|
|
2398
|
-
/** AC three phase. */
|
|
2399
|
-
AC_3_PHASE = "AC_3_PHASE",
|
|
2400
2546
|
/** Direct Current. */
|
|
2401
2547
|
DC = "DC"
|
|
2402
2548
|
}
|
|
@@ -2407,23 +2553,23 @@ export declare type OCPIPrice = {
|
|
|
2407
2553
|
incl_vat?: Maybe<Scalars["Float"]>;
|
|
2408
2554
|
};
|
|
2409
2555
|
export declare type OCPIPriceComponent = {
|
|
2410
|
-
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
2411
|
-
price?: Maybe<Scalars["Float"]>;
|
|
2412
|
-
/** 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. */
|
|
2413
|
-
step_size?: Maybe<Scalars["Int"]>;
|
|
2414
2556
|
/** Type of tariff dimension. */
|
|
2415
2557
|
type?: Maybe<OCPITariffDimensionType>;
|
|
2558
|
+
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
2559
|
+
price?: Maybe<Scalars["Float"]>;
|
|
2416
2560
|
/** 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. */
|
|
2417
2561
|
vat?: Maybe<Scalars["Float"]>;
|
|
2562
|
+
/** 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. */
|
|
2563
|
+
step_size?: Maybe<Scalars["Int"]>;
|
|
2418
2564
|
};
|
|
2419
2565
|
/** Regular recurring operation or access hours. */
|
|
2420
2566
|
export declare type OCPIRegularHours = {
|
|
2567
|
+
/** Number of days in the week, from Monday (1) till Sunday (7) */
|
|
2568
|
+
weekday?: Maybe<Scalars["Int"]>;
|
|
2421
2569
|
/** 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]. */
|
|
2422
2570
|
period_begin?: Maybe<Scalars["String"]>;
|
|
2423
2571
|
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */
|
|
2424
2572
|
period_end?: Maybe<Scalars["String"]>;
|
|
2425
|
-
/** Number of days in the week, from Monday (1) till Sunday (7) */
|
|
2426
|
-
weekday?: Maybe<Scalars["Int"]>;
|
|
2427
2573
|
};
|
|
2428
2574
|
export declare enum OCPIReservationRestrictionType {
|
|
2429
2575
|
/** Used in TariffElements to describe costs for a reservation. */
|
|
@@ -2464,32 +2610,32 @@ export declare type OCPIStatusSchedule = {
|
|
|
2464
2610
|
export declare type OCPITariff = {
|
|
2465
2611
|
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff */
|
|
2466
2612
|
country_code?: Maybe<Scalars["String"]>;
|
|
2613
|
+
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
|
|
2614
|
+
party_id?: Maybe<Scalars["String"]>;
|
|
2615
|
+
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
|
|
2616
|
+
id?: Maybe<Scalars["String"]>;
|
|
2467
2617
|
/** ISO-4217 code of the currency of this tariff. */
|
|
2468
2618
|
currency?: Maybe<Scalars["String"]>;
|
|
2619
|
+
/** 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 */
|
|
2620
|
+
type?: Maybe<OCPITariffType>;
|
|
2621
|
+
/** List of alternative tariff information texts, in multiple languages */
|
|
2622
|
+
tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
2623
|
+
/** URL to a web page that contains an explanation of the tariff information in human readable form */
|
|
2624
|
+
tariff_alt_url?: Maybe<Scalars["String"]>;
|
|
2625
|
+
/** 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 */
|
|
2626
|
+
min_price?: Maybe<OCPIPrice>;
|
|
2627
|
+
/** When this field is set, a charging session with this tariff will NOT cost more than this amount */
|
|
2628
|
+
max_price?: Maybe<OCPIPrice>;
|
|
2469
2629
|
/** List of tariff elements */
|
|
2470
2630
|
elements?: Maybe<Array<Maybe<OCPITariffElement>>>;
|
|
2631
|
+
/** 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 */
|
|
2632
|
+
start_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2471
2633
|
/** 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 */
|
|
2472
2634
|
end_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2473
2635
|
/** Details about the energy supplied with this tariff */
|
|
2474
2636
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
2475
|
-
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
|
|
2476
|
-
id?: Maybe<Scalars["String"]>;
|
|
2477
2637
|
/** Timestamp when this tariff was last updated (or created) */
|
|
2478
2638
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2479
|
-
/** When this field is set, a charging session with this tariff will NOT cost more than this amount */
|
|
2480
|
-
max_price?: Maybe<OCPIPrice>;
|
|
2481
|
-
/** 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 */
|
|
2482
|
-
min_price?: Maybe<OCPIPrice>;
|
|
2483
|
-
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
|
|
2484
|
-
party_id?: Maybe<Scalars["String"]>;
|
|
2485
|
-
/** 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 */
|
|
2486
|
-
start_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2487
|
-
/** List of alternative tariff information texts, in multiple languages */
|
|
2488
|
-
tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
2489
|
-
/** URL to a web page that contains an explanation of the tariff information in human readable form */
|
|
2490
|
-
tariff_alt_url?: Maybe<Scalars["String"]>;
|
|
2491
|
-
/** 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 */
|
|
2492
|
-
type?: Maybe<OCPITariffType>;
|
|
2493
2639
|
};
|
|
2494
2640
|
export declare enum OCPITariffDimensionType {
|
|
2495
2641
|
/** Defined in kWh, step_size multiplier: 1 Wh */
|
|
@@ -2508,34 +2654,34 @@ export declare type OCPITariffElement = {
|
|
|
2508
2654
|
restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
|
|
2509
2655
|
};
|
|
2510
2656
|
export declare type OCPITariffRestrictions = {
|
|
2511
|
-
/**
|
|
2512
|
-
|
|
2513
|
-
/** 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 */
|
|
2514
|
-
end_date?: Maybe<Scalars["String"]>;
|
|
2657
|
+
/** 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] */
|
|
2658
|
+
start_time?: Maybe<Scalars["String"]>;
|
|
2515
2659
|
/** 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. */
|
|
2516
2660
|
end_time?: Maybe<Scalars["String"]>;
|
|
2517
|
-
/**
|
|
2518
|
-
|
|
2519
|
-
/**
|
|
2520
|
-
|
|
2661
|
+
/** 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]) */
|
|
2662
|
+
start_date?: Maybe<Scalars["String"]>;
|
|
2663
|
+
/** 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 */
|
|
2664
|
+
end_date?: Maybe<Scalars["String"]>;
|
|
2665
|
+
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
|
|
2666
|
+
min_kwh?: Maybe<Scalars["Float"]>;
|
|
2521
2667
|
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */
|
|
2522
2668
|
max_kwh?: Maybe<Scalars["Float"]>;
|
|
2523
|
-
/** 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 */
|
|
2524
|
-
max_power?: Maybe<Scalars["Float"]>;
|
|
2525
2669
|
/** 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 */
|
|
2526
2670
|
min_current?: Maybe<Scalars["Float"]>;
|
|
2527
|
-
/**
|
|
2528
|
-
|
|
2529
|
-
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
|
|
2530
|
-
min_kwh?: Maybe<Scalars["Float"]>;
|
|
2671
|
+
/** 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 */
|
|
2672
|
+
max_current?: Maybe<Scalars["Float"]>;
|
|
2531
2673
|
/** 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 */
|
|
2532
2674
|
min_power?: Maybe<Scalars["Float"]>;
|
|
2675
|
+
/** 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 */
|
|
2676
|
+
max_power?: Maybe<Scalars["Float"]>;
|
|
2677
|
+
/** 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 */
|
|
2678
|
+
min_duration?: Maybe<Scalars["Float"]>;
|
|
2679
|
+
/** 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 */
|
|
2680
|
+
max_duration?: Maybe<Scalars["Float"]>;
|
|
2681
|
+
/** Which day(s) of the week this tariff element is active. */
|
|
2682
|
+
day_of_week?: Maybe<OCPIDayOfWeek>;
|
|
2533
2683
|
/** 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 */
|
|
2534
2684
|
reservation?: Maybe<OCPIReservationRestrictionType>;
|
|
2535
|
-
/** 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]) */
|
|
2536
|
-
start_date?: Maybe<Scalars["String"]>;
|
|
2537
|
-
/** 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] */
|
|
2538
|
-
start_time?: Maybe<Scalars["String"]>;
|
|
2539
2685
|
};
|
|
2540
2686
|
export declare enum OCPITariffType {
|
|
2541
2687
|
/** Used to describe that a tariff is valid when ad-hoc payment is used at the charge point (for example: Debit or Credit card payment terminal) */
|
|
@@ -2551,46 +2697,46 @@ export declare enum OCPITariffType {
|
|
|
2551
2697
|
}
|
|
2552
2698
|
/** The operator data which extends OCPI BusinessDetails */
|
|
2553
2699
|
export declare type Operator = {
|
|
2554
|
-
/** Contact information */
|
|
2555
|
-
contact?: Maybe<Contact>;
|
|
2556
|
-
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
2557
|
-
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2558
|
-
/** Deprecated: Not used anymore, please use countries property instead */
|
|
2559
|
-
country?: Maybe<Scalars["String"]>;
|
|
2560
|
-
/** Flag which indicates if the operator is in the excluded list */
|
|
2561
|
-
excluded?: Maybe<Scalars["Boolean"]>;
|
|
2562
|
-
/** External ID of an operator provided by the operator data source */
|
|
2563
|
-
external_id?: Maybe<Scalars["String"]>;
|
|
2564
2700
|
/** Unique operator ID */
|
|
2565
2701
|
id?: Maybe<Scalars["ID"]>;
|
|
2566
|
-
/**
|
|
2567
|
-
|
|
2702
|
+
/** External ID of an operator provided by the operator data source */
|
|
2703
|
+
external_id?: Maybe<Scalars["String"]>;
|
|
2568
2704
|
/** Name of an operator */
|
|
2569
2705
|
name?: Maybe<Scalars["String"]>;
|
|
2570
|
-
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level */
|
|
2571
|
-
ranking?: Maybe<Scalars["Int"]>;
|
|
2572
2706
|
/** Link to an operator’s website */
|
|
2573
2707
|
website?: Maybe<Scalars["String"]>;
|
|
2708
|
+
/** Image link to an operator’s logo */
|
|
2709
|
+
logo?: Maybe<OCPIImage>;
|
|
2710
|
+
/** Deprecated: Not used anymore, please use countries property instead */
|
|
2711
|
+
country?: Maybe<Scalars["String"]>;
|
|
2712
|
+
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
2713
|
+
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2714
|
+
/** Contact information */
|
|
2715
|
+
contact?: Maybe<Contact>;
|
|
2716
|
+
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level */
|
|
2717
|
+
ranking?: Maybe<Scalars["Int"]>;
|
|
2718
|
+
/** Flag which indicates if the operator is in the excluded list */
|
|
2719
|
+
excluded?: Maybe<Scalars["Boolean"]>;
|
|
2574
2720
|
};
|
|
2575
2721
|
/** Filter which can be applied to retrieve the operator list action */
|
|
2576
2722
|
export declare type OperatorListFilter = {
|
|
2577
2723
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
2578
2724
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
2579
|
-
/** Only retrieve operators that are in the excluded list */
|
|
2580
|
-
excluded?: Maybe<Scalars["Boolean"]>;
|
|
2581
2725
|
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10 */
|
|
2582
2726
|
ranking?: Maybe<Array<Scalars["Int"]>>;
|
|
2727
|
+
/** Only retrieve operators that are in the excluded list */
|
|
2728
|
+
excluded?: Maybe<Scalars["Boolean"]>;
|
|
2583
2729
|
};
|
|
2584
2730
|
/** Filter which can be applied to retrieve the operator list action */
|
|
2585
2731
|
export declare type OperatorListQuery = {
|
|
2586
|
-
/** Exact country code */
|
|
2587
|
-
country?: Maybe<Scalars["String"]>;
|
|
2588
|
-
/** External ID of an operator provided by an operator data source */
|
|
2589
|
-
external_id?: Maybe<Scalars["String"]>;
|
|
2590
2732
|
/** Unique operator ID */
|
|
2591
2733
|
id?: Maybe<Scalars["ID"]>;
|
|
2734
|
+
/** External ID of an operator provided by an operator data source */
|
|
2735
|
+
external_id?: Maybe<Scalars["String"]>;
|
|
2592
2736
|
/** Exact name */
|
|
2593
2737
|
name?: Maybe<Scalars["String"]>;
|
|
2738
|
+
/** Exact country code */
|
|
2739
|
+
country?: Maybe<Scalars["String"]>;
|
|
2594
2740
|
};
|
|
2595
2741
|
export declare enum ParkingCost {
|
|
2596
2742
|
/** Parking is free */
|
|
@@ -2599,6 +2745,8 @@ export declare enum ParkingCost {
|
|
|
2599
2745
|
PAID = "paid"
|
|
2600
2746
|
}
|
|
2601
2747
|
export declare type PathSegment = {
|
|
2748
|
+
/** Elevation (altitude) in meters */
|
|
2749
|
+
elevation?: Maybe<Scalars["Int"]>;
|
|
2602
2750
|
/** Average speed, in km/h, for this route path segment */
|
|
2603
2751
|
averageSpeed?: Maybe<Scalars["Float"]>;
|
|
2604
2752
|
/** Consumption, in kWh, of a route path segment */
|
|
@@ -2609,24 +2757,22 @@ export declare type PathSegment = {
|
|
|
2609
2757
|
distance?: Maybe<Scalars["Float"]>;
|
|
2610
2758
|
/** Duration, in seconds, of a route path segment */
|
|
2611
2759
|
duration?: Maybe<Scalars["Float"]>;
|
|
2612
|
-
/** Elevation (altitude) in meters */
|
|
2613
|
-
elevation?: Maybe<Scalars["Int"]>;
|
|
2614
2760
|
/** State of charge, in kWh, of a route path segment */
|
|
2615
2761
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
2616
2762
|
};
|
|
2617
2763
|
/** A GeoJSON Point */
|
|
2618
2764
|
export declare type Point = {
|
|
2619
|
-
/** The coordinates array with longitude as first value and latitude as second one */
|
|
2620
|
-
coordinates: Array<Scalars["Float"]>;
|
|
2621
2765
|
/** Point type */
|
|
2622
2766
|
type: PointType;
|
|
2767
|
+
/** The coordinates array with longitude as first value and latitude as second one */
|
|
2768
|
+
coordinates: Array<Scalars["Float"]>;
|
|
2623
2769
|
};
|
|
2624
2770
|
/** A GeoJSON Point input */
|
|
2625
2771
|
export declare type PointInput = {
|
|
2626
|
-
/** Coordinates [longitude, latitude] */
|
|
2627
|
-
coordinates: Array<Scalars["Float"]>;
|
|
2628
2772
|
/** Point type */
|
|
2629
2773
|
type: PointType;
|
|
2774
|
+
/** Coordinates [longitude, latitude] */
|
|
2775
|
+
coordinates: Array<Scalars["Float"]>;
|
|
2630
2776
|
};
|
|
2631
2777
|
/** GeoJSON Point type */
|
|
2632
2778
|
export declare enum PointType {
|
|
@@ -2634,10 +2780,10 @@ export declare enum PointType {
|
|
|
2634
2780
|
}
|
|
2635
2781
|
/** A GeoJSON Polygon */
|
|
2636
2782
|
export declare type Polygon = {
|
|
2637
|
-
/** List of coordinates representing a polygon */
|
|
2638
|
-
coordinates: Array<Maybe<Array<Maybe<Array<Maybe<Scalars["Float"]>>>>>>;
|
|
2639
2783
|
/** Polygon type */
|
|
2640
2784
|
type: PolygonType;
|
|
2785
|
+
/** List of coordinates representing a polygon */
|
|
2786
|
+
coordinates: Array<Maybe<Array<Maybe<Array<Maybe<Scalars["Float"]>>>>>>;
|
|
2641
2787
|
};
|
|
2642
2788
|
/** Polygon properties */
|
|
2643
2789
|
export declare type PolygonProperties = {
|
|
@@ -2657,21 +2803,21 @@ export declare type PowerList = {
|
|
|
2657
2803
|
};
|
|
2658
2804
|
/** Power stats model */
|
|
2659
2805
|
export declare type PowerStats = {
|
|
2660
|
-
/** The list of powers for the speed type */
|
|
2661
|
-
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
2662
2806
|
/** The charging speed type for the specified power */
|
|
2663
2807
|
type?: Maybe<StationSpeedType>;
|
|
2808
|
+
/** The list of powers for the speed type */
|
|
2809
|
+
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
2664
2810
|
};
|
|
2665
2811
|
/** The price model */
|
|
2666
2812
|
export declare type Price = {
|
|
2813
|
+
/** The value of the price */
|
|
2814
|
+
value?: Maybe<Scalars["String"]>;
|
|
2667
2815
|
/** The currency of the price */
|
|
2668
2816
|
currency?: Maybe<Scalars["String"]>;
|
|
2669
|
-
/** The value of the price which should be display by the frontend */
|
|
2670
|
-
displayValue?: Maybe<Scalars["String"]>;
|
|
2671
2817
|
/** The pricing model */
|
|
2672
2818
|
model?: Maybe<Scalars["String"]>;
|
|
2673
|
-
/** The value of the price */
|
|
2674
|
-
|
|
2819
|
+
/** The value of the price which should be display by the frontend */
|
|
2820
|
+
displayValue?: Maybe<Scalars["String"]>;
|
|
2675
2821
|
};
|
|
2676
2822
|
export declare type Pricing = {
|
|
2677
2823
|
/** Unique ID of a price */
|
|
@@ -2680,18 +2826,18 @@ export declare type Pricing = {
|
|
|
2680
2826
|
price_list?: Maybe<Array<Maybe<PricingList>>>;
|
|
2681
2827
|
};
|
|
2682
2828
|
export declare type PricingList = {
|
|
2683
|
-
/** Price product elements */
|
|
2684
|
-
elements?: Maybe<Array<Maybe<PricingListElement>>>;
|
|
2685
2829
|
/** (MSP) Mobility Service Provider */
|
|
2686
2830
|
partner?: Maybe<Scalars["String"]>;
|
|
2687
2831
|
/** Product details */
|
|
2688
2832
|
product?: Maybe<PricingListProduct>;
|
|
2833
|
+
/** Price product elements */
|
|
2834
|
+
elements?: Maybe<Array<Maybe<PricingListElement>>>;
|
|
2689
2835
|
};
|
|
2690
2836
|
export declare type PricingListElement = {
|
|
2691
|
-
/** Price of the element type without VAT. */
|
|
2692
|
-
price_excl_vat?: Maybe<Scalars["Float"]>;
|
|
2693
2837
|
/** Price element type. */
|
|
2694
2838
|
type?: Maybe<PricingListElementType>;
|
|
2839
|
+
/** Price of the element type without VAT. */
|
|
2840
|
+
price_excl_vat?: Maybe<Scalars["Float"]>;
|
|
2695
2841
|
/** VAT percentage to apply */
|
|
2696
2842
|
vat?: Maybe<Scalars["Float"]>;
|
|
2697
2843
|
};
|
|
@@ -2700,155 +2846,179 @@ export declare enum PricingListElementType {
|
|
|
2700
2846
|
ENERGY = "ENERGY",
|
|
2701
2847
|
/** Starting price, fixed fee per charge session */
|
|
2702
2848
|
FLAT = "FLAT",
|
|
2703
|
-
/** Parking price per hour */
|
|
2704
|
-
PARKING_TIME = "PARKING_TIME",
|
|
2705
2849
|
/** Fixed price per hour */
|
|
2706
|
-
TIME = "TIME"
|
|
2850
|
+
TIME = "TIME",
|
|
2851
|
+
/** Parking price per hour */
|
|
2852
|
+
PARKING_TIME = "PARKING_TIME"
|
|
2707
2853
|
}
|
|
2708
2854
|
export declare type PricingListProduct = {
|
|
2709
|
-
/** Currency */
|
|
2710
|
-
currency?: Maybe<Scalars["String"]>;
|
|
2711
|
-
/** Description of the product */
|
|
2712
|
-
description?: Maybe<Scalars["String"]>;
|
|
2713
2855
|
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price */
|
|
2714
2856
|
name?: Maybe<Scalars["String"]>;
|
|
2715
|
-
/**
|
|
2716
|
-
|
|
2857
|
+
/** Description of the product */
|
|
2858
|
+
description?: Maybe<Scalars["String"]>;
|
|
2717
2859
|
/** Subscription type */
|
|
2718
2860
|
subscription_type?: Maybe<Scalars["String"]>;
|
|
2861
|
+
/** Subscription fee without VAT */
|
|
2862
|
+
subscription_fee_excl_vat?: Maybe<Scalars["Float"]>;
|
|
2863
|
+
/** Currency */
|
|
2864
|
+
currency?: Maybe<Scalars["String"]>;
|
|
2719
2865
|
};
|
|
2720
2866
|
export declare type Query = {
|
|
2721
2867
|
/** Get a full list of amenities around a station */
|
|
2722
2868
|
amenityList?: Maybe<Array<Maybe<Amenity>>>;
|
|
2723
2869
|
/** Get information about a car by its ID */
|
|
2724
2870
|
car?: Maybe<Car>;
|
|
2725
|
-
/** Get a full list of cars */
|
|
2726
|
-
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
2727
2871
|
/** Car premium data provides even more information about your car: tire pressure, prices, drivetrain data, and more. Please contact us for access to premium data. */
|
|
2728
2872
|
carPremium?: Maybe<CarPremium>;
|
|
2873
|
+
/** Get a full list of cars */
|
|
2874
|
+
carList?: Maybe<Array<Maybe<CarList>>>;
|
|
2875
|
+
/** [BETA] Get connected vehicles for the current user */
|
|
2876
|
+
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
2877
|
+
/** [BETA] Get a connected vehicle by id */
|
|
2878
|
+
connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;
|
|
2879
|
+
/** [BETA] Retrieve live vehicle data by connected vehicle id */
|
|
2880
|
+
connectedVehicleData?: Maybe<VehicleData>;
|
|
2729
2881
|
/** [BETA] Get an isoline by ID */
|
|
2730
2882
|
isoline?: Maybe<Isoline>;
|
|
2731
2883
|
/** [BETA] Get a navigation session by ID */
|
|
2732
2884
|
navigation?: Maybe<Navigation>;
|
|
2733
|
-
/** Get information about an operator by its ID */
|
|
2734
|
-
operator?: Maybe<Operator>;
|
|
2735
2885
|
/** Get a full list of operators */
|
|
2736
2886
|
operatorList?: Maybe<Array<Maybe<Operator>>>;
|
|
2887
|
+
/** Get information about an operator by its ID */
|
|
2888
|
+
operator?: Maybe<Operator>;
|
|
2737
2889
|
/** Get all reviews of a station by the station ID */
|
|
2738
2890
|
reviewList?: Maybe<Array<Review>>;
|
|
2891
|
+
/**
|
|
2892
|
+
* Get all reviews of stations that were added by an authenticated user.
|
|
2893
|
+
* The `x-token` header is mandatory in order to authorize the user who wants to retrieve all the reviews added by him/her.
|
|
2894
|
+
* This is a premium feature, contact Chargetrip for more information.
|
|
2895
|
+
*/
|
|
2896
|
+
userReviewList?: Maybe<Array<Review>>;
|
|
2739
2897
|
/** Get a route by ID */
|
|
2740
2898
|
route?: Maybe<Route>;
|
|
2741
2899
|
/** Retrieve information about a route path segment */
|
|
2742
2900
|
routePath?: Maybe<RoutePath>;
|
|
2901
|
+
/** Get the station statistics */
|
|
2902
|
+
stationStats?: Maybe<StationStats>;
|
|
2743
2903
|
/** Get information about a station by its ID */
|
|
2744
2904
|
station?: Maybe<Station>;
|
|
2745
|
-
/** Search for stations around a GeoJSON point with a specific distance in meters */
|
|
2746
|
-
stationAround?: Maybe<Array<Maybe<Station>>>;
|
|
2747
2905
|
/** Get a full list of stations */
|
|
2748
2906
|
stationList?: Maybe<Array<Maybe<Station>>>;
|
|
2749
|
-
/**
|
|
2750
|
-
|
|
2907
|
+
/** Search for stations around a GeoJSON point with a specific distance in meters */
|
|
2908
|
+
stationAround?: Maybe<Array<Maybe<Station>>>;
|
|
2751
2909
|
/** Get information about a tariff by the tariff ID */
|
|
2752
2910
|
tariff?: Maybe<OCPITariff>;
|
|
2753
2911
|
/** Get the full list of tariffs */
|
|
2754
2912
|
tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
2755
|
-
/**
|
|
2756
|
-
|
|
2757
|
-
* The `x-token` header is mandatory in order to authorize the user who wants to retrieve all the reviews added by him/her.
|
|
2758
|
-
* This is a premium feature, contact Chargetrip for more information.
|
|
2759
|
-
*/
|
|
2760
|
-
userReviewList?: Maybe<Array<Review>>;
|
|
2913
|
+
/** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
|
|
2914
|
+
navigationMapping?: Maybe<Scalars["JSON"]>;
|
|
2761
2915
|
};
|
|
2762
2916
|
export declare type QueryamenityListArgs = {
|
|
2763
2917
|
stationId: Scalars["ID"];
|
|
2764
2918
|
};
|
|
2765
2919
|
export declare type QuerycarArgs = {
|
|
2920
|
+
id?: Maybe<Scalars["ID"]>;
|
|
2766
2921
|
externalId?: Maybe<Scalars["Int"]>;
|
|
2922
|
+
};
|
|
2923
|
+
export declare type QuerycarPremiumArgs = {
|
|
2767
2924
|
id?: Maybe<Scalars["ID"]>;
|
|
2768
2925
|
};
|
|
2769
2926
|
export declare type QuerycarListArgs = {
|
|
2770
|
-
filter?: Maybe<CarListFilter>;
|
|
2771
|
-
page?: Maybe<Scalars["Int"]>;
|
|
2772
2927
|
query?: Maybe<CarListQuery>;
|
|
2773
2928
|
search?: Maybe<Scalars["String"]>;
|
|
2929
|
+
filter?: Maybe<CarListFilter>;
|
|
2774
2930
|
size?: Maybe<Scalars["Int"]>;
|
|
2931
|
+
page?: Maybe<Scalars["Int"]>;
|
|
2775
2932
|
};
|
|
2776
|
-
export declare type
|
|
2777
|
-
id
|
|
2933
|
+
export declare type QueryconnectedVehicleArgs = {
|
|
2934
|
+
id: Scalars["ID"];
|
|
2778
2935
|
};
|
|
2779
|
-
export declare type
|
|
2936
|
+
export declare type QueryconnectedVehicleDataArgs = {
|
|
2780
2937
|
id: Scalars["ID"];
|
|
2781
2938
|
};
|
|
2782
|
-
export declare type
|
|
2939
|
+
export declare type QueryisolineArgs = {
|
|
2783
2940
|
id: Scalars["ID"];
|
|
2784
2941
|
};
|
|
2785
|
-
export declare type
|
|
2942
|
+
export declare type QuerynavigationArgs = {
|
|
2786
2943
|
id: Scalars["ID"];
|
|
2787
2944
|
};
|
|
2788
2945
|
export declare type QueryoperatorListArgs = {
|
|
2789
|
-
filter?: Maybe<OperatorListFilter>;
|
|
2790
|
-
page?: Maybe<Scalars["Int"]>;
|
|
2791
2946
|
query?: Maybe<OperatorListQuery>;
|
|
2792
2947
|
search?: Maybe<Scalars["String"]>;
|
|
2948
|
+
filter?: Maybe<OperatorListFilter>;
|
|
2793
2949
|
size?: Maybe<Scalars["Int"]>;
|
|
2950
|
+
page?: Maybe<Scalars["Int"]>;
|
|
2951
|
+
};
|
|
2952
|
+
export declare type QueryoperatorArgs = {
|
|
2953
|
+
id: Scalars["ID"];
|
|
2794
2954
|
};
|
|
2795
2955
|
export declare type QueryreviewListArgs = {
|
|
2956
|
+
stationId: Scalars["ID"];
|
|
2957
|
+
size?: Maybe<Scalars["Int"]>;
|
|
2796
2958
|
page?: Maybe<Scalars["Int"]>;
|
|
2959
|
+
};
|
|
2960
|
+
export declare type QueryuserReviewListArgs = {
|
|
2797
2961
|
size?: Maybe<Scalars["Int"]>;
|
|
2798
|
-
|
|
2962
|
+
page?: Maybe<Scalars["Int"]>;
|
|
2799
2963
|
};
|
|
2800
2964
|
export declare type QueryrouteArgs = {
|
|
2801
2965
|
id: Scalars["ID"];
|
|
2802
2966
|
};
|
|
2803
2967
|
export declare type QueryroutePathArgs = {
|
|
2804
|
-
alternativeId?: Maybe<Scalars["ID"]>;
|
|
2805
2968
|
id: Scalars["ID"];
|
|
2806
2969
|
location: PointInput;
|
|
2970
|
+
alternativeId?: Maybe<Scalars["ID"]>;
|
|
2807
2971
|
};
|
|
2808
2972
|
export declare type QuerystationArgs = {
|
|
2809
2973
|
id: Scalars["ID"];
|
|
2810
2974
|
};
|
|
2811
|
-
export declare type QuerystationAroundArgs = {
|
|
2812
|
-
filter?: Maybe<StationAroundFilter>;
|
|
2813
|
-
page?: Maybe<Scalars["Int"]>;
|
|
2814
|
-
query?: Maybe<StationAroundQuery>;
|
|
2815
|
-
search?: Maybe<Scalars["String"]>;
|
|
2816
|
-
size?: Maybe<Scalars["Int"]>;
|
|
2817
|
-
};
|
|
2818
2975
|
export declare type QuerystationListArgs = {
|
|
2976
|
+
query?: Maybe<StationListQuery>;
|
|
2819
2977
|
filter?: Maybe<StationListFilter>;
|
|
2978
|
+
search?: Maybe<Scalars["String"]>;
|
|
2979
|
+
size?: Maybe<Scalars["Int"]>;
|
|
2820
2980
|
page?: Maybe<Scalars["Int"]>;
|
|
2821
|
-
|
|
2981
|
+
};
|
|
2982
|
+
export declare type QuerystationAroundArgs = {
|
|
2983
|
+
query?: Maybe<StationAroundQuery>;
|
|
2984
|
+
filter?: Maybe<StationAroundFilter>;
|
|
2822
2985
|
search?: Maybe<Scalars["String"]>;
|
|
2823
2986
|
size?: Maybe<Scalars["Int"]>;
|
|
2987
|
+
page?: Maybe<Scalars["Int"]>;
|
|
2824
2988
|
};
|
|
2825
2989
|
export declare type QuerytariffArgs = {
|
|
2826
2990
|
id: Scalars["ID"];
|
|
2827
2991
|
};
|
|
2828
2992
|
export declare type QuerytariffListArgs = {
|
|
2829
|
-
page?: Maybe<Scalars["Int"]>;
|
|
2830
2993
|
size?: Maybe<Scalars["Int"]>;
|
|
2831
|
-
};
|
|
2832
|
-
export declare type QueryuserReviewListArgs = {
|
|
2833
2994
|
page?: Maybe<Scalars["Int"]>;
|
|
2834
|
-
|
|
2995
|
+
};
|
|
2996
|
+
export declare type QuerynavigationMappingArgs = {
|
|
2997
|
+
id: Scalars["ID"];
|
|
2998
|
+
provider: MappingProvider;
|
|
2999
|
+
precision?: Maybe<Scalars["Int"]>;
|
|
3000
|
+
language?: Maybe<MappingLanguage>;
|
|
3001
|
+
};
|
|
3002
|
+
export declare type RemoveConnectedVehicleInput = {
|
|
3003
|
+
/** Id from the connected vehicle */
|
|
3004
|
+
id: Scalars["ID"];
|
|
2835
3005
|
};
|
|
2836
3006
|
/** EV specific data for a route request */
|
|
2837
3007
|
export declare type RequestEv = {
|
|
2838
|
-
/** Supported adapters of plugs for an EV */
|
|
2839
|
-
adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;
|
|
2840
|
-
/** EV battery specific data */
|
|
2841
|
-
battery?: Maybe<RequestEvBattery>;
|
|
2842
|
-
/** Cargo weight, in kg */
|
|
2843
|
-
cargo?: Maybe<Scalars["Float"]>;
|
|
2844
|
-
/** Climate is on. The default is true */
|
|
2845
|
-
climate?: Maybe<Scalars["Boolean"]>;
|
|
2846
|
-
/** Consumption specific to an EV or inputed by a request */
|
|
2847
|
-
consumption?: Maybe<RequestEvConsumption>;
|
|
2848
3008
|
/** Internal ID of a Car */
|
|
2849
3009
|
id?: Maybe<Scalars["ID"]>;
|
|
3010
|
+
/** EV battery specific data */
|
|
3011
|
+
battery?: Maybe<RequestEvBattery>;
|
|
3012
|
+
/** Supported plugs for an EV */
|
|
3013
|
+
plugs?: Maybe<Array<Maybe<RequestEvPlug>>>;
|
|
3014
|
+
/** Supported adapters of plugs for an EV */
|
|
3015
|
+
adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;
|
|
2850
3016
|
/** Minimum desired power of chargers */
|
|
2851
3017
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3018
|
+
/** Climate is on. The default is true */
|
|
3019
|
+
climate?: Maybe<Scalars["Boolean"]>;
|
|
3020
|
+
/** Cargo weight, in kg */
|
|
3021
|
+
cargo?: Maybe<Scalars["Float"]>;
|
|
2852
3022
|
/**
|
|
2853
3023
|
* The number of passengers on board
|
|
2854
3024
|
* @deprecated In favor of occupants
|
|
@@ -2856,42 +3026,42 @@ export declare type RequestEv = {
|
|
|
2856
3026
|
numberOfPassengers?: Maybe<Scalars["Int"]>;
|
|
2857
3027
|
/** Number of occupants */
|
|
2858
3028
|
occupants?: Maybe<Scalars["Int"]>;
|
|
2859
|
-
/**
|
|
2860
|
-
|
|
3029
|
+
/** Consumption specific to an EV or inputed by a request */
|
|
3030
|
+
consumption?: Maybe<RequestEvConsumption>;
|
|
2861
3031
|
};
|
|
2862
3032
|
export declare type RequestEvBattery = {
|
|
2863
3033
|
/** Usable capacity of the battery used to compute the route. If this in not filled in, value as the car battery.usable_kwh */
|
|
2864
3034
|
capacity?: Maybe<RequestEvBatteryValue>;
|
|
2865
3035
|
/** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value */
|
|
2866
3036
|
capacityKwh?: Maybe<Scalars["Float"]>;
|
|
2867
|
-
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the car battery.usable_kwh */
|
|
2868
|
-
finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
2869
|
-
/** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge */
|
|
2870
|
-
finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
2871
3037
|
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and it will be equal to the battery.usable_kwh */
|
|
2872
3038
|
stateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
2873
3039
|
/** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge */
|
|
2874
3040
|
stateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
3041
|
+
/** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the car battery.usable_kwh */
|
|
3042
|
+
finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
|
|
3043
|
+
/** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge */
|
|
3044
|
+
finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
|
|
2875
3045
|
};
|
|
2876
3046
|
export declare type RequestEvBatteryInput = {
|
|
2877
3047
|
/** Usable capacity of a battery used to compute a route. We recommend you stay between 50% and 150%. If this in not filled in, we assume it is the same value as the car battery.usable_kwh */
|
|
2878
3048
|
capacity?: Maybe<RequestEvBatteryInputValue>;
|
|
2879
|
-
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the car battery.usable_kwh If this is not filled in, we assume it is 20% of the car battery.usable_kwh */
|
|
2880
|
-
finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
2881
3049
|
/** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and we fill it in with car battery.usable_kwh */
|
|
2882
3050
|
stateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
3051
|
+
/** Desired final amount of energy in a battery. The value should be between 0 and 80% of the car battery.usable_kwh If this is not filled in, we assume it is 20% of the car battery.usable_kwh */
|
|
3052
|
+
finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
|
|
2883
3053
|
};
|
|
2884
3054
|
export declare type RequestEvBatteryInputValue = {
|
|
2885
|
-
/** Type of a desired final amount of energy in a battery */
|
|
2886
|
-
type: BatteryInputType;
|
|
2887
3055
|
/** Value of a desired final amount of energy in a battery */
|
|
2888
3056
|
value: Scalars["Float"];
|
|
3057
|
+
/** Type of a desired final amount of energy in a battery */
|
|
3058
|
+
type: BatteryInputType;
|
|
2889
3059
|
};
|
|
2890
3060
|
export declare type RequestEvBatteryValue = {
|
|
2891
|
-
/** Type of the desired final amount of energy in a battery */
|
|
2892
|
-
type: BatteryInputType;
|
|
2893
3061
|
/** Value of the desired final amount of energy in a battery */
|
|
2894
3062
|
value: Scalars["Float"];
|
|
3063
|
+
/** Type of the desired final amount of energy in a battery */
|
|
3064
|
+
type: BatteryInputType;
|
|
2895
3065
|
};
|
|
2896
3066
|
export declare type RequestEvConsumption = {
|
|
2897
3067
|
/** Consumption, in kWh, of the auxiliaries */
|
|
@@ -2910,111 +3080,113 @@ export declare type RequestEvConsumptionInput = {
|
|
|
2910
3080
|
idle?: Maybe<CarConsumptionInput>;
|
|
2911
3081
|
};
|
|
2912
3082
|
export declare type RequestEvInput = {
|
|
2913
|
-
/** Supported adapters of plugs of an EV */
|
|
2914
|
-
adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
|
|
2915
|
-
/** Deprecated */
|
|
2916
|
-
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
2917
|
-
/** The EV battery specific data */
|
|
2918
|
-
battery?: Maybe<RequestEvBatteryInput>;
|
|
2919
|
-
/** Deprecated */
|
|
2920
|
-
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
2921
|
-
/** Cargo weight, in kg */
|
|
2922
|
-
cargo?: Maybe<Scalars["Int"]>;
|
|
2923
|
-
/** Flag which indicates if the climate is on. The default is true */
|
|
2924
|
-
climate?: Maybe<Scalars["Boolean"]>;
|
|
2925
|
-
/** Consumption specific to the EV or inputted by the request */
|
|
2926
|
-
consumption?: Maybe<RequestEvConsumptionInput>;
|
|
2927
3083
|
/** Internal ID of a Car */
|
|
2928
3084
|
id: Scalars["ID"];
|
|
3085
|
+
/** The EV battery specific data */
|
|
3086
|
+
battery?: Maybe<RequestEvBatteryInput>;
|
|
3087
|
+
/** Supported plugs of an EV */
|
|
3088
|
+
plugs?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
|
|
3089
|
+
/** Supported adapters of plugs of an EV */
|
|
3090
|
+
adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
|
|
2929
3091
|
/** Minimum desired power of chargers */
|
|
2930
3092
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3093
|
+
/** Flag which indicates if the climate is on. The default is true */
|
|
3094
|
+
climate?: Maybe<Scalars["Boolean"]>;
|
|
2931
3095
|
/** Number of occupants */
|
|
2932
3096
|
occupants?: Maybe<Scalars["Int"]>;
|
|
2933
|
-
/**
|
|
2934
|
-
|
|
3097
|
+
/** Cargo weight, in kg */
|
|
3098
|
+
cargo?: Maybe<Scalars["Int"]>;
|
|
3099
|
+
/** Consumption specific to the EV or inputted by the request */
|
|
3100
|
+
consumption?: Maybe<RequestEvConsumptionInput>;
|
|
3101
|
+
/** Deprecated */
|
|
3102
|
+
auxConsumption?: Maybe<Scalars["Float"]>;
|
|
3103
|
+
/** Deprecated */
|
|
3104
|
+
bmsConsumption?: Maybe<Scalars["Float"]>;
|
|
2935
3105
|
};
|
|
2936
3106
|
export declare type RequestEvPlug = {
|
|
2937
|
-
/** Maximum charging speed for a plug */
|
|
2938
|
-
chargingPower?: Maybe<Scalars["Float"]>;
|
|
2939
3107
|
/** Type of the plug */
|
|
2940
3108
|
standard?: Maybe<ConnectorType>;
|
|
3109
|
+
/** Maximum charging speed for a plug */
|
|
3110
|
+
chargingPower?: Maybe<Scalars["Float"]>;
|
|
2941
3111
|
};
|
|
2942
3112
|
export declare type RequestEvPlugInput = {
|
|
2943
|
-
/** Maximum charging speed for this plug */
|
|
2944
|
-
chargingPower: Scalars["Float"];
|
|
2945
3113
|
/** Type of a plug */
|
|
2946
3114
|
standard: ConnectorType;
|
|
3115
|
+
/** Maximum charging speed for this plug */
|
|
3116
|
+
chargingPower: Scalars["Float"];
|
|
2947
3117
|
};
|
|
2948
3118
|
export declare type RequestInput = {
|
|
2949
3119
|
/** EV specific data for a route request */
|
|
2950
3120
|
ev: RequestEvInput;
|
|
2951
3121
|
/** Route request data */
|
|
2952
3122
|
routeRequest: RequestRouteInput;
|
|
3123
|
+
/** Telemetry data used to overwrite routing parameters */
|
|
3124
|
+
telemetry?: Maybe<Scalars["JSON"]>;
|
|
2953
3125
|
};
|
|
2954
3126
|
export declare type RequestRoute = {
|
|
2955
3127
|
/** Desired amenities near the stations, within a 1 km radius */
|
|
2956
3128
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
2957
|
-
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
|
|
2958
|
-
chargeMode?: Maybe<ChargeMode>;
|
|
2959
|
-
/** Destination of a route */
|
|
2960
|
-
destination?: Maybe<FeaturePoint>;
|
|
2961
|
-
/** 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 */
|
|
2962
|
-
instructions?: Maybe<Scalars["Boolean"]>;
|
|
2963
3129
|
/**
|
|
2964
3130
|
* Requested operators
|
|
2965
3131
|
* @deprecated Will be removed. Use the operators property instead
|
|
2966
3132
|
*/
|
|
2967
3133
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
2968
3134
|
/**
|
|
2969
|
-
*
|
|
3135
|
+
* Preferred operators are required. In case there are no preferred operators the route cannot be calculated
|
|
2970
3136
|
* @deprecated Will be removed. Use the operators property instead
|
|
2971
3137
|
*/
|
|
2972
|
-
|
|
3138
|
+
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
2973
3139
|
/**
|
|
2974
|
-
*
|
|
3140
|
+
* Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated
|
|
2975
3141
|
* @deprecated Will be removed. Use the operators property instead
|
|
2976
3142
|
*/
|
|
2977
|
-
|
|
3143
|
+
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
2978
3144
|
/** Operator prioritization for a route */
|
|
2979
3145
|
operators?: Maybe<RouteOperators>;
|
|
2980
|
-
/** Origin of a route */
|
|
2981
|
-
origin?: Maybe<FeaturePoint>;
|
|
2982
|
-
/** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60, with a default of 10% */
|
|
2983
|
-
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
2984
3146
|
/** Season */
|
|
2985
3147
|
season?: Maybe<RouteSeason>;
|
|
2986
|
-
/**
|
|
2987
|
-
|
|
3148
|
+
/** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60, with a default of 10% */
|
|
3149
|
+
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
3150
|
+
/** Origin of a route */
|
|
3151
|
+
origin?: Maybe<FeaturePoint>;
|
|
3152
|
+
/** Destination of a route */
|
|
3153
|
+
destination?: Maybe<FeaturePoint>;
|
|
2988
3154
|
/** Locations where a route will stop */
|
|
2989
3155
|
via?: Maybe<Array<Maybe<FeaturePoint>>>;
|
|
3156
|
+
/** Radius in meters for alternative stations along a route (min 500 - max 5000) */
|
|
3157
|
+
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3158
|
+
/** 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 */
|
|
3159
|
+
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3160
|
+
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
|
|
3161
|
+
chargeMode?: Maybe<ChargeMode>;
|
|
2990
3162
|
};
|
|
2991
3163
|
export declare type RequestRouteInput = {
|
|
2992
3164
|
/** A list of desired amenities near the stations, with a 1 km radius */
|
|
2993
3165
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
2994
|
-
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
|
|
2995
|
-
chargeMode?: Maybe<ChargeMode>;
|
|
2996
|
-
/** Destination of a route */
|
|
2997
|
-
destination: FeaturePointInput;
|
|
2998
|
-
/** Deprecated: all routes will have turn-by-turn instructions prepared. Boolean will be ignored */
|
|
2999
|
-
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3000
3166
|
/** Deprecated: in favor of operators. A list of requested operators */
|
|
3001
3167
|
operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3002
|
-
/** Deprecated: in favor of operators. Flag which indicates if the preferred operators should be loaded */
|
|
3003
|
-
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3004
3168
|
/** Deprecated: in favor of operators. Flag which indicates if the operators are required */
|
|
3005
3169
|
operatorRequired?: Maybe<Scalars["Boolean"]>;
|
|
3170
|
+
/** Deprecated: in favor of operators. Flag which indicates if the preferred operators should be loaded */
|
|
3171
|
+
operatorPrefer?: Maybe<Scalars["Boolean"]>;
|
|
3006
3172
|
/** Operator prioritization for a route */
|
|
3007
3173
|
operators?: Maybe<RouteOperatorsInput>;
|
|
3008
|
-
/** Origin of a route */
|
|
3009
|
-
origin: FeaturePointInput;
|
|
3010
|
-
/** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60, with a default of 10% */
|
|
3011
|
-
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
3012
3174
|
/** Optional flag to specify the season */
|
|
3013
3175
|
season?: Maybe<RouteSeason>;
|
|
3014
|
-
/**
|
|
3015
|
-
|
|
3176
|
+
/** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60, with a default of 10% */
|
|
3177
|
+
safeRiskMargin?: Maybe<Scalars["Int"]>;
|
|
3178
|
+
/** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
|
|
3179
|
+
chargeMode?: Maybe<ChargeMode>;
|
|
3180
|
+
/** Origin of a route */
|
|
3181
|
+
origin: FeaturePointInput;
|
|
3182
|
+
/** Destination of a route */
|
|
3183
|
+
destination: FeaturePointInput;
|
|
3016
3184
|
/** An optional list of locations where we should stop */
|
|
3017
3185
|
via?: Maybe<Array<Maybe<FeaturePointInput>>>;
|
|
3186
|
+
/** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000) */
|
|
3187
|
+
stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
|
|
3188
|
+
/** Deprecated: all routes will have turn-by-turn instructions prepared. Boolean will be ignored */
|
|
3189
|
+
instructions?: Maybe<Scalars["Boolean"]>;
|
|
3018
3190
|
};
|
|
3019
3191
|
export declare type RequestUser = {
|
|
3020
3192
|
/** ID of the user */
|
|
@@ -3022,347 +3194,349 @@ export declare type RequestUser = {
|
|
|
3022
3194
|
};
|
|
3023
3195
|
/** The review model */
|
|
3024
3196
|
export declare type Review = {
|
|
3025
|
-
/** Date and time when a review was created */
|
|
3026
|
-
createdAt?: Maybe<Scalars["String"]>;
|
|
3027
|
-
/** Car that was provided/selected by a user */
|
|
3028
|
-
ev?: Maybe<Car>;
|
|
3029
3197
|
/** ID of a review */
|
|
3030
3198
|
id: Scalars["ID"];
|
|
3031
|
-
/**
|
|
3032
|
-
|
|
3199
|
+
/** Station for which a review was provided */
|
|
3200
|
+
station?: Maybe<Station>;
|
|
3201
|
+
/** User who added a review. If a review was added by an anonymous user, this will be null */
|
|
3202
|
+
user?: Maybe<ReviewUser>;
|
|
3203
|
+
/** Rating of a review */
|
|
3204
|
+
rating?: Maybe<Scalars["Int"]>;
|
|
3033
3205
|
/** Message of a review */
|
|
3034
3206
|
message?: Maybe<Scalars["String"]>;
|
|
3207
|
+
/** Locale of a message */
|
|
3208
|
+
locale?: Maybe<Scalars["String"]>;
|
|
3209
|
+
/** Car that was provided/selected by a user */
|
|
3210
|
+
ev?: Maybe<Car>;
|
|
3035
3211
|
/** Plug type that was provided/selected by a user */
|
|
3036
3212
|
plugType?: Maybe<ConnectorType>;
|
|
3037
3213
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3038
3214
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3039
|
-
/** Rating of a review */
|
|
3040
|
-
rating?: Maybe<Scalars["Int"]>;
|
|
3041
|
-
/** Station for which a review was provided */
|
|
3042
|
-
station?: Maybe<Station>;
|
|
3043
3215
|
/** Boolean tags for a station review */
|
|
3044
3216
|
tags?: Maybe<ReviewTags>;
|
|
3217
|
+
/** Date and time when a review was created */
|
|
3218
|
+
createdAt?: Maybe<Scalars["String"]>;
|
|
3045
3219
|
/** Date and time when a review was updated */
|
|
3046
3220
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
3047
|
-
/** User who added a review. If a review was added by an anonymous user, this will be null */
|
|
3048
|
-
user?: Maybe<ReviewUser>;
|
|
3049
3221
|
};
|
|
3050
3222
|
/** Form input to add a new review */
|
|
3051
3223
|
export declare type ReviewAdd = {
|
|
3052
|
-
/** ID
|
|
3053
|
-
|
|
3054
|
-
/**
|
|
3055
|
-
|
|
3224
|
+
/** Station ID for which a review is provided */
|
|
3225
|
+
stationId: Scalars["String"];
|
|
3226
|
+
/** Rating of a review */
|
|
3227
|
+
rating: Scalars["Int"];
|
|
3056
3228
|
/** Review message */
|
|
3057
3229
|
message?: Maybe<Scalars["String"]>;
|
|
3230
|
+
/** Locale of a message */
|
|
3231
|
+
locale?: Maybe<Scalars["String"]>;
|
|
3232
|
+
/** ID of the Car that was provided/selected by a user */
|
|
3233
|
+
ev?: Maybe<Scalars["String"]>;
|
|
3058
3234
|
/** Plug type that was provided/selected by a user */
|
|
3059
3235
|
plugType?: Maybe<ConnectorType>;
|
|
3060
3236
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3061
3237
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3062
|
-
/** Rating of a review */
|
|
3063
|
-
rating: Scalars["Int"];
|
|
3064
|
-
/** Station ID for which a review is provided */
|
|
3065
|
-
stationId: Scalars["String"];
|
|
3066
3238
|
/** Boolean tags for a station review */
|
|
3067
3239
|
tags?: Maybe<ReviewTagsInput>;
|
|
3068
3240
|
};
|
|
3069
3241
|
/** Form input for edit an existing review */
|
|
3070
3242
|
export declare type ReviewEdit = {
|
|
3071
|
-
/**
|
|
3072
|
-
|
|
3243
|
+
/** Rating of a review */
|
|
3244
|
+
rating: Scalars["Int"];
|
|
3073
3245
|
/** Review message */
|
|
3074
3246
|
message?: Maybe<Scalars["String"]>;
|
|
3247
|
+
/** Locale of a message */
|
|
3248
|
+
locale?: Maybe<Scalars["String"]>;
|
|
3075
3249
|
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3076
3250
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3077
|
-
/** Rating of a review */
|
|
3078
|
-
rating: Scalars["Int"];
|
|
3079
3251
|
/** Boolean tags for a station review */
|
|
3080
3252
|
tags?: Maybe<ReviewTagsInput>;
|
|
3081
3253
|
};
|
|
3082
3254
|
/** Statistical information for reviews of a station */
|
|
3083
3255
|
export declare type ReviewStats = {
|
|
3084
|
-
/** 'Total number of reviews */
|
|
3085
|
-
count?: Maybe<Scalars["Int"]>;
|
|
3086
3256
|
/** Average of all reviews */
|
|
3087
3257
|
rating?: Maybe<Scalars["Float"]>;
|
|
3258
|
+
/** 'Total number of reviews */
|
|
3259
|
+
count?: Maybe<Scalars["Int"]>;
|
|
3088
3260
|
};
|
|
3089
3261
|
/** Boolean tags for the station review */
|
|
3090
3262
|
export declare type ReviewTags = {
|
|
3091
|
-
/** Flag which indicates if the user recommended the station when the review was added */
|
|
3092
|
-
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3093
3263
|
/** Flag which indicates if the station was working when the review was added */
|
|
3094
3264
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3265
|
+
/** Flag which indicates if the user recommended the station when the review was added */
|
|
3266
|
+
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3095
3267
|
};
|
|
3096
3268
|
/** Boolean tags for a station review */
|
|
3097
3269
|
export declare type ReviewTagsInput = {
|
|
3098
|
-
/** Flag which indicates if a user recommended a station when the review was added */
|
|
3099
|
-
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3100
3270
|
/** Flag which indicates if a station was working when the review was added */
|
|
3101
3271
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3272
|
+
/** Flag which indicates if a user recommended a station when the review was added */
|
|
3273
|
+
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3102
3274
|
};
|
|
3103
3275
|
/** Special format for the user of a review */
|
|
3104
3276
|
export declare type ReviewUser = {
|
|
3105
|
-
/**
|
|
3106
|
-
|
|
3107
|
-
* @deprecated Please use name instead
|
|
3108
|
-
*/
|
|
3109
|
-
firstName?: Maybe<Scalars["String"]>;
|
|
3277
|
+
/** User full name. If a review was added by an anonymous user, this will be null */
|
|
3278
|
+
name?: Maybe<Scalars["String"]>;
|
|
3110
3279
|
/**
|
|
3111
3280
|
* User ID
|
|
3112
3281
|
* @deprecated Not sent back anymore, will be null
|
|
3113
3282
|
*/
|
|
3114
3283
|
id?: Maybe<Scalars["ID"]>;
|
|
3284
|
+
/**
|
|
3285
|
+
* First name
|
|
3286
|
+
* @deprecated Please use name instead
|
|
3287
|
+
*/
|
|
3288
|
+
firstName?: Maybe<Scalars["String"]>;
|
|
3115
3289
|
/**
|
|
3116
3290
|
* Last name
|
|
3117
3291
|
* @deprecated Please use name instead
|
|
3118
3292
|
*/
|
|
3119
3293
|
lastName?: Maybe<Scalars["String"]>;
|
|
3120
|
-
/** User full name. If a review was added by an anonymous user, this will be null */
|
|
3121
|
-
name?: Maybe<Scalars["String"]>;
|
|
3122
3294
|
};
|
|
3123
3295
|
export declare type Route = {
|
|
3296
|
+
/** Recommended route */
|
|
3297
|
+
route?: Maybe<RouteAlternative>;
|
|
3124
3298
|
/** Available alternatives */
|
|
3125
3299
|
alternatives?: Maybe<Array<Maybe<RouteAlternative>>>;
|
|
3126
|
-
/** Application who requested a route */
|
|
3127
|
-
app?: Maybe<RouteApp>;
|
|
3128
3300
|
/** EV specific data for a route request */
|
|
3129
3301
|
ev?: Maybe<RequestEv>;
|
|
3130
|
-
/**
|
|
3131
|
-
|
|
3302
|
+
/** Route telemetry data */
|
|
3303
|
+
telemetry?: Maybe<Scalars["JSON"]>;
|
|
3304
|
+
/** @deprecated You will receive null values */
|
|
3305
|
+
user?: Maybe<RequestUser>;
|
|
3132
3306
|
/** Route request data */
|
|
3133
3307
|
routeRequest?: Maybe<RequestRoute>;
|
|
3308
|
+
/** Application who requested a route */
|
|
3309
|
+
app?: Maybe<RouteApp>;
|
|
3134
3310
|
/** Route status */
|
|
3135
3311
|
status?: Maybe<RouteStatus>;
|
|
3136
|
-
/** @deprecated You will receive null values */
|
|
3137
|
-
user?: Maybe<RequestUser>;
|
|
3138
3312
|
};
|
|
3139
3313
|
export declare type RouteAlternative = {
|
|
3140
|
-
/**
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
amenityRanking?: Maybe<Scalars["Int"]>;
|
|
3145
|
-
/** Total time required to charge for an entire route, in seconds */
|
|
3146
|
-
chargeTime?: Maybe<Scalars["Float"]>;
|
|
3314
|
+
/** ID of a route alternative */
|
|
3315
|
+
id?: Maybe<Scalars["ID"]>;
|
|
3316
|
+
/** Type of alternative route */
|
|
3317
|
+
type?: Maybe<RouteAlternativeType>;
|
|
3147
3318
|
/** Number of charges along a route */
|
|
3148
3319
|
charges?: Maybe<Scalars["Int"]>;
|
|
3149
3320
|
/** Number of available charges along a route */
|
|
3150
3321
|
chargesAvailable?: Maybe<Scalars["Int"]>;
|
|
3151
3322
|
/** Number of occupied charges along a route */
|
|
3152
3323
|
chargesOccupied?: Maybe<Scalars["Int"]>;
|
|
3153
|
-
/** Number of out of order charges along a route */
|
|
3154
|
-
chargesOutOfOrder?: Maybe<Scalars["Int"]>;
|
|
3155
3324
|
/** Number of unknown charges along a route */
|
|
3156
3325
|
chargesUnknown?: Maybe<Scalars["Int"]>;
|
|
3157
|
-
/**
|
|
3158
|
-
|
|
3326
|
+
/** Number of out of order charges along a route */
|
|
3327
|
+
chargesOutOfOrder?: Maybe<Scalars["Int"]>;
|
|
3159
3328
|
/** Total distance of a route in meters */
|
|
3160
3329
|
distance?: Maybe<Scalars["Int"]>;
|
|
3161
3330
|
/** Total duration of a route, including charge time, in seconds */
|
|
3162
3331
|
duration?: Maybe<Scalars["Int"]>;
|
|
3163
|
-
/** Total
|
|
3164
|
-
|
|
3165
|
-
/**
|
|
3166
|
-
|
|
3332
|
+
/** Total energy used for a route in kWh */
|
|
3333
|
+
consumption?: Maybe<Scalars["Float"]>;
|
|
3334
|
+
/** Total time required to charge for an entire route, in seconds */
|
|
3335
|
+
chargeTime?: Maybe<Scalars["Float"]>;
|
|
3167
3336
|
/**
|
|
3168
|
-
*
|
|
3169
|
-
* @deprecated Will be removed in the future
|
|
3337
|
+
* Amenity ranking for an alternative
|
|
3338
|
+
* @deprecated Will be removed in the future
|
|
3170
3339
|
*/
|
|
3171
|
-
|
|
3172
|
-
/** Total number of meters which are going up on a route */
|
|
3173
|
-
elevationUp?: Maybe<Scalars["Float"]>;
|
|
3174
|
-
/** ID of a route alternative */
|
|
3175
|
-
id?: Maybe<Scalars["ID"]>;
|
|
3176
|
-
/** List of raw turn-by-turn navigation instructions */
|
|
3177
|
-
instructions?: Maybe<Array<Maybe<RouteInstruction>>>;
|
|
3178
|
-
/** Legs of the route */
|
|
3179
|
-
legs?: Maybe<Array<Maybe<RouteLeg>>>;
|
|
3180
|
-
/** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments */
|
|
3181
|
-
pathPlot?: Maybe<Array<Maybe<PathSegment>>>;
|
|
3182
|
-
/** Polyline containing encoded coordinates */
|
|
3183
|
-
polyline?: Maybe<Scalars["String"]>;
|
|
3184
|
-
/** Remaining range, in meters, at the end of a trip */
|
|
3185
|
-
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
3186
|
-
/** Remaining range, energy in kWh, at the end of a trip */
|
|
3187
|
-
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
3188
|
-
/** Remaining range, energy in percentage, at the end of a trip */
|
|
3189
|
-
rangeEndPercentage?: Maybe<Scalars["Int"]>;
|
|
3340
|
+
amenityRanking?: Maybe<Scalars["Int"]>;
|
|
3190
3341
|
/** Range, in meters, available at the beginning of a trip */
|
|
3191
3342
|
rangeStart?: Maybe<Scalars["Int"]>;
|
|
3192
3343
|
/** Total energy in a battery at the beginning of a trip, in kWh */
|
|
3193
3344
|
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
3194
3345
|
/** Total energy in a battery at the beginning of a trip, in percentage */
|
|
3195
3346
|
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
3347
|
+
/** Remaining range, in meters, at the end of a trip */
|
|
3348
|
+
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
3349
|
+
/** Remaining range, energy in kWh, at the end of a trip */
|
|
3350
|
+
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
3351
|
+
/** Remaining range, energy in percentage, at the end of a trip */
|
|
3352
|
+
rangeEndPercentage?: Maybe<Scalars["Int"]>;
|
|
3353
|
+
/** Text information about a route direction */
|
|
3354
|
+
via?: Maybe<Scalars["String"]>;
|
|
3355
|
+
/** Polyline containing encoded coordinates */
|
|
3356
|
+
polyline?: Maybe<Scalars["String"]>;
|
|
3357
|
+
/** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments */
|
|
3358
|
+
pathPlot?: Maybe<Array<Maybe<PathSegment>>>;
|
|
3359
|
+
/**
|
|
3360
|
+
* Elevation values. Each elevationPlot has a hundred points, independent of the length of a route
|
|
3361
|
+
* @deprecated Will be removed in the future; Use the pathPlot property
|
|
3362
|
+
*/
|
|
3363
|
+
elevationPlot?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
3364
|
+
/** Total number of meters which are going up on a route */
|
|
3365
|
+
elevationUp?: Maybe<Scalars["Float"]>;
|
|
3366
|
+
/** Total number of meters which are going down on a route */
|
|
3367
|
+
elevationDown?: Maybe<Scalars["Float"]>;
|
|
3368
|
+
/** Highest value from the elevation array */
|
|
3369
|
+
elevationMax?: Maybe<Scalars["Float"]>;
|
|
3196
3370
|
/** Money and CO2 saving information */
|
|
3197
3371
|
saving?: Maybe<RouteAlternativeSaving>;
|
|
3372
|
+
/** Legs of the route */
|
|
3373
|
+
legs?: Maybe<Array<Maybe<RouteLeg>>>;
|
|
3374
|
+
/** List of raw turn-by-turn navigation instructions */
|
|
3375
|
+
instructions?: Maybe<Array<Maybe<RouteInstruction>>>;
|
|
3198
3376
|
/** Alternative stations along a route within specified radius in meters. Only if it was provided at newRoute mutation */
|
|
3199
3377
|
stationsAlongRoute?: Maybe<Array<Maybe<RouteStationsAlong>>>;
|
|
3200
3378
|
/** Tags of a route alternative. Values: road, highway, toll, ferry, etc. */
|
|
3201
3379
|
tags?: Maybe<Array<Maybe<RouteTagType>>>;
|
|
3202
|
-
/** Type of alternative route */
|
|
3203
|
-
type?: Maybe<RouteAlternativeType>;
|
|
3204
|
-
/** Text information about a route direction */
|
|
3205
|
-
via?: Maybe<Scalars["String"]>;
|
|
3206
3380
|
};
|
|
3207
3381
|
export declare type RouteAlternativepolylineArgs = {
|
|
3208
3382
|
decimals?: Maybe<Scalars["Int"]>;
|
|
3209
3383
|
};
|
|
3210
3384
|
export declare type RouteAlternativeSaving = {
|
|
3211
|
-
/** Average energy price with which the calculation was made */
|
|
3212
|
-
averageEnergyPrice?: Maybe<Scalars["String"]>;
|
|
3213
|
-
/** Average gas price with which the calculation was made */
|
|
3214
|
-
averageGasPrice?: Maybe<Scalars["String"]>;
|
|
3215
3385
|
/** Total amount of CO2, in grams, which would be used with a petrol vehicle */
|
|
3216
3386
|
co2?: Maybe<Scalars["String"]>;
|
|
3217
|
-
/** Currency */
|
|
3218
|
-
currency?: Maybe<Scalars["String"]>;
|
|
3219
3387
|
/** Money saved by a user driving this route with the electric vehicle */
|
|
3220
3388
|
money?: Maybe<Scalars["String"]>;
|
|
3389
|
+
/** Currency */
|
|
3390
|
+
currency?: Maybe<Scalars["String"]>;
|
|
3391
|
+
/** Average gas price with which the calculation was made */
|
|
3392
|
+
averageGasPrice?: Maybe<Scalars["String"]>;
|
|
3393
|
+
/** Average energy price with which the calculation was made */
|
|
3394
|
+
averageEnergyPrice?: Maybe<Scalars["String"]>;
|
|
3221
3395
|
};
|
|
3222
3396
|
/** Types of an alternative route */
|
|
3223
3397
|
export declare enum RouteAlternativeType {
|
|
3224
|
-
/**
|
|
3225
|
-
|
|
3398
|
+
/** Fastest route between origin and destination */
|
|
3399
|
+
FASTEST = "fastest",
|
|
3226
3400
|
/** Best matching route based on operator and amenities preferences */
|
|
3227
3401
|
BESTMATCHING = "bestMatching",
|
|
3228
|
-
/**
|
|
3229
|
-
|
|
3402
|
+
/** An alternative to the fastest route */
|
|
3403
|
+
ALTERNATIVE = "alternative"
|
|
3230
3404
|
}
|
|
3231
3405
|
export declare type RouteApp = {
|
|
3232
3406
|
/** ID of the app who requested a route */
|
|
3233
3407
|
id?: Maybe<Scalars["ID"]>;
|
|
3234
3408
|
};
|
|
3235
3409
|
export declare type RouteInstruction = {
|
|
3236
|
-
/** Distance, in meters, of the current route instruction */
|
|
3237
|
-
distance?: Maybe<Scalars["Int"]>;
|
|
3238
|
-
/** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null */
|
|
3239
|
-
exit_number?: Maybe<Scalars["Int"]>;
|
|
3240
|
-
/** Name of the street on which the instruction is */
|
|
3241
|
-
name?: Maybe<Scalars["String"]>;
|
|
3242
3410
|
/** Information about the points on the polyline */
|
|
3243
3411
|
points?: Maybe<RouteInstructionPoints>;
|
|
3244
3412
|
/** Sign of the instruction. See `RouteInstructionSign` */
|
|
3245
3413
|
sign?: Maybe<RouteInstructionSign>;
|
|
3414
|
+
/** Name of the street on which the instruction is */
|
|
3415
|
+
name?: Maybe<Scalars["String"]>;
|
|
3416
|
+
/** Distance, in meters, of the current route instruction */
|
|
3417
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
3246
3418
|
/** Duration, in seconds, of the current route instruction */
|
|
3247
3419
|
time?: Maybe<Scalars["Int"]>;
|
|
3420
|
+
/** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null */
|
|
3421
|
+
exit_number?: Maybe<Scalars["Int"]>;
|
|
3248
3422
|
/** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null */
|
|
3249
3423
|
turn_angle?: Maybe<Scalars["Float"]>;
|
|
3250
3424
|
};
|
|
3251
3425
|
export declare type RouteInstructionPoints = {
|
|
3252
|
-
/** The interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends */
|
|
3253
|
-
interval?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
3254
3426
|
/** Number of polyline points which are included in this instruction */
|
|
3255
3427
|
size?: Maybe<Scalars["Int"]>;
|
|
3428
|
+
/** The interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends */
|
|
3429
|
+
interval?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
3256
3430
|
};
|
|
3257
3431
|
/** Sign belonging to the instruction indicating the main maneuver */
|
|
3258
3432
|
export declare enum RouteInstructionSign {
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3433
|
+
UNKNOWN = "UNKNOWN",
|
|
3434
|
+
U_TURN_UNKNOWN = "U_TURN_UNKNOWN",
|
|
3435
|
+
U_TURN_LEFT = "U_TURN_LEFT",
|
|
3262
3436
|
KEEP_LEFT = "KEEP_LEFT",
|
|
3263
|
-
KEEP_RIGHT = "KEEP_RIGHT",
|
|
3264
3437
|
LEAVE_ROUNDABOUT = "LEAVE_ROUNDABOUT",
|
|
3265
|
-
PT_END_TRIP = "PT_END_TRIP",
|
|
3266
|
-
PT_START_TRIP = "PT_START_TRIP",
|
|
3267
|
-
PT_TRANSFER = "PT_TRANSFER",
|
|
3268
|
-
REACHED_CHARGING_STATION = "REACHED_CHARGING_STATION",
|
|
3269
|
-
REACHED_VIA = "REACHED_VIA",
|
|
3270
|
-
TURN_LEFT = "TURN_LEFT",
|
|
3271
|
-
TURN_RIGHT = "TURN_RIGHT",
|
|
3272
3438
|
TURN_SHARP_LEFT = "TURN_SHARP_LEFT",
|
|
3273
|
-
|
|
3439
|
+
TURN_LEFT = "TURN_LEFT",
|
|
3274
3440
|
TURN_SLIGHT_LEFT = "TURN_SLIGHT_LEFT",
|
|
3441
|
+
CONTINUE_ON_STREET = "CONTINUE_ON_STREET",
|
|
3275
3442
|
TURN_SLIGHT_RIGHT = "TURN_SLIGHT_RIGHT",
|
|
3276
|
-
|
|
3443
|
+
TURN_RIGHT = "TURN_RIGHT",
|
|
3444
|
+
TURN_SHARP_RIGHT = "TURN_SHARP_RIGHT",
|
|
3445
|
+
FINISH = "FINISH",
|
|
3446
|
+
REACHED_VIA = "REACHED_VIA",
|
|
3447
|
+
REACHED_CHARGING_STATION = "REACHED_CHARGING_STATION",
|
|
3277
3448
|
USE_ROUNDABOUT = "USE_ROUNDABOUT",
|
|
3278
|
-
|
|
3449
|
+
KEEP_RIGHT = "KEEP_RIGHT",
|
|
3279
3450
|
U_TURN_RIGHT = "U_TURN_RIGHT",
|
|
3280
|
-
|
|
3451
|
+
PT_START_TRIP = "PT_START_TRIP",
|
|
3452
|
+
PT_TRANSFER = "PT_TRANSFER",
|
|
3453
|
+
PT_END_TRIP = "PT_END_TRIP",
|
|
3454
|
+
IGNORE = "IGNORE"
|
|
3281
3455
|
}
|
|
3282
3456
|
export declare type RouteLeg = {
|
|
3283
|
-
/**
|
|
3284
|
-
|
|
3285
|
-
/** Total time required to charge a battery until 80%, in seconds */
|
|
3286
|
-
chargeTime?: Maybe<Scalars["Int"]>;
|
|
3287
|
-
/** Recommended connector for charging */
|
|
3288
|
-
connector?: Maybe<Connector>;
|
|
3289
|
-
/** Total energy used in a leg in kWh */
|
|
3290
|
-
consumption?: Maybe<Scalars["Float"]>;
|
|
3291
|
-
/** Destination point location */
|
|
3292
|
-
destination?: Maybe<FeaturePoint>;
|
|
3457
|
+
/** ID of a leg */
|
|
3458
|
+
id?: Maybe<Scalars["ID"]>;
|
|
3293
3459
|
/** Distance from the start to the end of a leg, in meters */
|
|
3294
3460
|
distance?: Maybe<Scalars["Int"]>;
|
|
3295
3461
|
/** Total drive time from the start to the end of a leg, in seconds */
|
|
3296
3462
|
duration?: Maybe<Scalars["Int"]>;
|
|
3297
|
-
/**
|
|
3298
|
-
|
|
3299
|
-
/**
|
|
3300
|
-
|
|
3463
|
+
/** Total energy used in a leg in kWh */
|
|
3464
|
+
consumption?: Maybe<Scalars["Float"]>;
|
|
3465
|
+
/** Range, in meters, available at the beginning of a leg */
|
|
3466
|
+
rangeStart?: Maybe<Scalars["Int"]>;
|
|
3467
|
+
/** Total energy in a battery at the beginning of a leg, in kWh */
|
|
3468
|
+
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
3469
|
+
/** Total energy in a battery at the beginning of a trip, in percentage */
|
|
3470
|
+
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
3471
|
+
/** Range, in meters, available at the end of a leg */
|
|
3472
|
+
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
3473
|
+
/** Total energy left in a battery at the end of a leg, in kWh */
|
|
3474
|
+
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
3475
|
+
/** Remaining range, energy in percentage, at the end of a trip */
|
|
3476
|
+
rangeEndPercentage?: Maybe<Scalars["Int"]>;
|
|
3477
|
+
/** Origin point location */
|
|
3478
|
+
origin?: Maybe<FeaturePoint>;
|
|
3479
|
+
/** Destination point location */
|
|
3480
|
+
destination?: Maybe<FeaturePoint>;
|
|
3481
|
+
/** Type of a leg */
|
|
3482
|
+
type?: Maybe<LegType>;
|
|
3301
3483
|
/** Name of a destination. This is the station name in case a user should charge or the name of the location in case this was provided */
|
|
3302
3484
|
name?: Maybe<Scalars["String"]>;
|
|
3303
|
-
/**
|
|
3304
|
-
|
|
3485
|
+
/** ID of a station */
|
|
3486
|
+
stationId?: Maybe<Scalars["String"]>;
|
|
3305
3487
|
/** ID of an operator */
|
|
3306
3488
|
operatorId?: Maybe<Scalars["String"]>;
|
|
3307
3489
|
/** Name of an operator */
|
|
3308
3490
|
operatorName?: Maybe<Scalars["String"]>;
|
|
3309
3491
|
/** Ranking of an operator */
|
|
3310
3492
|
operatorRanking?: Maybe<Scalars["Int"]>;
|
|
3311
|
-
/**
|
|
3312
|
-
|
|
3493
|
+
/** Total time required to charge a battery until 80%, in seconds */
|
|
3494
|
+
chargeTime?: Maybe<Scalars["Int"]>;
|
|
3495
|
+
/** Recommended EVSE where to charge */
|
|
3496
|
+
evse?: Maybe<EVSE>;
|
|
3497
|
+
/** Recommended connector for charging */
|
|
3498
|
+
connector?: Maybe<Connector>;
|
|
3313
3499
|
/** Number of compatible plugs available at a charge station */
|
|
3314
3500
|
plugsAvailable?: Maybe<Scalars["Int"]>;
|
|
3315
|
-
/** Total number of compatible plugs at a charge station */
|
|
3316
|
-
plugsCount?: Maybe<Scalars["Int"]>;
|
|
3317
3501
|
/** Number of compatible plugs occupied at a charge station */
|
|
3318
3502
|
plugsOccupied?: Maybe<Scalars["Int"]>;
|
|
3319
|
-
/** Number of compatible plugs out of order at a charge station */
|
|
3320
|
-
plugsOutOfOrder?: Maybe<Scalars["Int"]>;
|
|
3321
3503
|
/** Number of compatible plugs unknown at a charge station */
|
|
3322
3504
|
plugsUnknown?: Maybe<Scalars["Int"]>;
|
|
3505
|
+
/** Number of compatible plugs out of order at a charge station */
|
|
3506
|
+
plugsOutOfOrder?: Maybe<Scalars["Int"]>;
|
|
3507
|
+
/** Total number of compatible plugs at a charge station */
|
|
3508
|
+
plugsCount?: Maybe<Scalars["Int"]>;
|
|
3323
3509
|
/** Polyline containing encoded coordinates */
|
|
3324
3510
|
polyline?: Maybe<Scalars["String"]>;
|
|
3325
|
-
/** Range, in meters, available at the end of a leg */
|
|
3326
|
-
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
3327
|
-
/** Total energy left in a battery at the end of a leg, in kWh */
|
|
3328
|
-
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
3329
|
-
/** Remaining range, energy in percentage, at the end of a trip */
|
|
3330
|
-
rangeEndPercentage?: Maybe<Scalars["Int"]>;
|
|
3331
|
-
/** Range, in meters, available at the beginning of a leg */
|
|
3332
|
-
rangeStart?: Maybe<Scalars["Int"]>;
|
|
3333
|
-
/** Total energy in a battery at the beginning of a leg, in kWh */
|
|
3334
|
-
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
3335
|
-
/** Total energy in a battery at the beginning of a trip, in percentage */
|
|
3336
|
-
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
3337
|
-
/** ID of a station */
|
|
3338
|
-
stationId?: Maybe<Scalars["String"]>;
|
|
3339
3511
|
/** Steps of a leg */
|
|
3340
3512
|
steps?: Maybe<Array<Maybe<RouteStep>>>;
|
|
3341
3513
|
/** Tags of a leg. Values: road, highway, toll, ferry */
|
|
3342
3514
|
tags?: Maybe<Array<Maybe<RouteTagType>>>;
|
|
3343
|
-
/**
|
|
3344
|
-
|
|
3515
|
+
/** Cargo weight in a vehicle for the duration of a leg, in kg */
|
|
3516
|
+
cargo?: Maybe<Scalars["Float"]>;
|
|
3517
|
+
/** Number of occupants in a vehicle for the duration of a leg */
|
|
3518
|
+
occupants?: Maybe<Scalars["Int"]>;
|
|
3345
3519
|
};
|
|
3346
3520
|
export declare type RouteLegpolylineArgs = {
|
|
3347
3521
|
decimals?: Maybe<Scalars["Int"]>;
|
|
3348
3522
|
};
|
|
3349
3523
|
/** Prioritized operators for a route calculation */
|
|
3350
3524
|
export declare type RouteOperators = {
|
|
3351
|
-
/** Operator IDs which should be excluded from a route */
|
|
3352
|
-
exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
3353
|
-
/** Ranking of an operator with multiple levels, each level having it's own penalty value */
|
|
3354
|
-
ranking?: Maybe<RouteOperatorsRanking>;
|
|
3355
3525
|
/** Flag indicating if the operators ranking should be preferred or required */
|
|
3356
3526
|
type?: Maybe<RouteOperatorsType>;
|
|
3527
|
+
/** Ranking of an operator with multiple levels, each level having it's own penalty value */
|
|
3528
|
+
ranking?: Maybe<RouteOperatorsRanking>;
|
|
3529
|
+
/** Operator IDs which should be excluded from a route */
|
|
3530
|
+
exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
3357
3531
|
};
|
|
3358
3532
|
/** Prioritized operators for a route calculation */
|
|
3359
3533
|
export declare type RouteOperatorsInput = {
|
|
3360
|
-
/** Operator IDs which should be excluded from a route */
|
|
3361
|
-
exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
3362
|
-
/** Ranking of an operator with multiple levels, each level having it's own penalty value */
|
|
3363
|
-
ranking?: Maybe<RouteOperatorsRankingInput>;
|
|
3364
3534
|
/** Flag indicating if the operators ranking should be preferred or required */
|
|
3365
3535
|
type?: Maybe<RouteOperatorsType>;
|
|
3536
|
+
/** Ranking of an operator with multiple levels, each level having it's own penalty value */
|
|
3537
|
+
ranking?: Maybe<RouteOperatorsRankingInput>;
|
|
3538
|
+
/** Operator IDs which should be excluded from a route */
|
|
3539
|
+
exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
|
|
3366
3540
|
};
|
|
3367
3541
|
/** Ranking configuration for prioritized operators */
|
|
3368
3542
|
export declare type RouteOperatorsRanking = {
|
|
@@ -3420,8 +3594,14 @@ export declare enum RouteOperatorsType {
|
|
|
3420
3594
|
REQUIRED = "required"
|
|
3421
3595
|
}
|
|
3422
3596
|
export declare type RoutePath = {
|
|
3597
|
+
/** GeoJSON location of a route path segment */
|
|
3598
|
+
location?: Maybe<Point>;
|
|
3599
|
+
/** Elevation (altitude) in meters */
|
|
3600
|
+
elevation?: Maybe<Scalars["Int"]>;
|
|
3423
3601
|
/** Average speed, in km/h, for this route path segment */
|
|
3424
3602
|
averageSpeed?: Maybe<Scalars["Float"]>;
|
|
3603
|
+
/** Recommended speed, in km/h for this route path segment to optimise the consumption */
|
|
3604
|
+
recommendedSpeed?: Maybe<Scalars["Float"]>;
|
|
3425
3605
|
/** Consumption, in kWh, of a route path segment */
|
|
3426
3606
|
consumption?: Maybe<Scalars["Float"]>;
|
|
3427
3607
|
/** Consumption, in kWh per km, of a route path segment */
|
|
@@ -3430,140 +3610,154 @@ export declare type RoutePath = {
|
|
|
3430
3610
|
distance?: Maybe<Scalars["Float"]>;
|
|
3431
3611
|
/** Duration, in seconds, of a route path segment */
|
|
3432
3612
|
duration?: Maybe<Scalars["Float"]>;
|
|
3433
|
-
/** Elevation (altitude) in meters */
|
|
3434
|
-
elevation?: Maybe<Scalars["Int"]>;
|
|
3435
|
-
/** GeoJSON location of a route path segment */
|
|
3436
|
-
location?: Maybe<Point>;
|
|
3437
|
-
/** Recommended speed, in km/h for this route path segment to optimise the consumption */
|
|
3438
|
-
recommendedSpeed?: Maybe<Scalars["Float"]>;
|
|
3439
3613
|
/** State of charge, in kWh, of a route path segment */
|
|
3440
3614
|
stateOfCharge?: Maybe<Scalars["Float"]>;
|
|
3441
3615
|
};
|
|
3442
3616
|
/** The season of the route */
|
|
3443
3617
|
export declare enum RouteSeason {
|
|
3444
|
-
/** We fetch the current weather conditions */
|
|
3445
|
-
CURRENT = "current",
|
|
3446
3618
|
/** We suppose it is summer and we have the best weather conditions */
|
|
3447
3619
|
SUMMER = "summer",
|
|
3448
3620
|
/** We suppose it is winter and we have the worst weather conditions */
|
|
3449
|
-
WINTER = "winter"
|
|
3621
|
+
WINTER = "winter",
|
|
3622
|
+
/** We fetch the current weather conditions */
|
|
3623
|
+
CURRENT = "current"
|
|
3450
3624
|
}
|
|
3451
3625
|
export declare type RouteStationsAlong = {
|
|
3452
|
-
/** Distance in meters between station and route path */
|
|
3453
|
-
distance?: Maybe<Scalars["Int"]>;
|
|
3454
3626
|
/** The ID of station */
|
|
3455
3627
|
id?: Maybe<Scalars["String"]>;
|
|
3456
3628
|
/** Geojson location of a station */
|
|
3457
3629
|
location?: Maybe<Point>;
|
|
3458
|
-
/** The station uses a preferred operator */
|
|
3459
|
-
preferredOperator?: Maybe<Scalars["Boolean"]>;
|
|
3460
3630
|
/** Speed of a station. A station along a route can be either fast or turbo */
|
|
3461
3631
|
speed?: Maybe<StationSpeedType>;
|
|
3462
3632
|
/** Status of a station */
|
|
3463
3633
|
status?: Maybe<ChargerStatus>;
|
|
3634
|
+
/** The station uses a preferred operator */
|
|
3635
|
+
preferredOperator?: Maybe<Scalars["Boolean"]>;
|
|
3636
|
+
/** Distance in meters between station and route path */
|
|
3637
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
3464
3638
|
};
|
|
3465
3639
|
/** The status of a route. The status can be pending, processing, done, not_found or error */
|
|
3466
3640
|
export declare enum RouteStatus {
|
|
3641
|
+
/** Route is queued and pending processing. Temporary status */
|
|
3642
|
+
PENDING = "pending",
|
|
3643
|
+
/** We are computing the route for your request. Temporary status */
|
|
3644
|
+
PROCESSING = "processing",
|
|
3467
3645
|
/** We finished computing the route, with a result. Final status */
|
|
3468
3646
|
DONE = "done",
|
|
3469
|
-
/** An error occurred while computing the route. Final status */
|
|
3470
|
-
ERROR = "error",
|
|
3471
3647
|
/** We finished the computing the route, without any result. Final status */
|
|
3472
3648
|
NOT_FOUND = "not_found",
|
|
3473
|
-
/**
|
|
3474
|
-
|
|
3475
|
-
/** We are computing the route for your request. Temporary status */
|
|
3476
|
-
PROCESSING = "processing"
|
|
3649
|
+
/** An error occurred while computing the route. Final status */
|
|
3650
|
+
ERROR = "error"
|
|
3477
3651
|
}
|
|
3478
3652
|
export declare type RouteStep = {
|
|
3479
|
-
/** Total enery used in a step in kWh */
|
|
3480
|
-
consumption?: Maybe<Scalars["Float"]>;
|
|
3481
|
-
/** Distance from the start to the end of a step, in meters */
|
|
3482
|
-
distance?: Maybe<Scalars["Int"]>;
|
|
3483
|
-
/** Total drive time from the start to the end of a step, in seconds */
|
|
3484
|
-
duration?: Maybe<Scalars["Int"]>;
|
|
3485
3653
|
/** ID of a step */
|
|
3486
3654
|
id?: Maybe<Scalars["ID"]>;
|
|
3487
|
-
/** Polyline containing encoded coordinates */
|
|
3488
|
-
polyline?: Maybe<Scalars["String"]>;
|
|
3489
3655
|
/** Type of a step */
|
|
3490
3656
|
type?: Maybe<StepType>;
|
|
3657
|
+
/** Polyline containing encoded coordinates */
|
|
3658
|
+
polyline?: Maybe<Scalars["String"]>;
|
|
3659
|
+
/** Distance from the start to the end of a step, in meters */
|
|
3660
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
3661
|
+
/** Total drive time from the start to the end of a step, in seconds */
|
|
3662
|
+
duration?: Maybe<Scalars["Int"]>;
|
|
3663
|
+
/** Total energy used in a step in kWh */
|
|
3664
|
+
consumption?: Maybe<Scalars["Float"]>;
|
|
3491
3665
|
};
|
|
3492
3666
|
export declare type RouteSteppolylineArgs = {
|
|
3493
3667
|
decimals?: Maybe<Scalars["Int"]>;
|
|
3494
3668
|
};
|
|
3495
3669
|
/** Tags of a route */
|
|
3496
3670
|
export declare enum RouteTagType {
|
|
3497
|
-
CROSSBORDER = "crossborder",
|
|
3498
|
-
FERRY = "ferry",
|
|
3499
|
-
HIGHWAY = "highway",
|
|
3500
3671
|
ROAD = "road",
|
|
3672
|
+
HIGHWAY = "highway",
|
|
3501
3673
|
TOLL = "toll",
|
|
3502
|
-
|
|
3674
|
+
FERRY = "ferry",
|
|
3675
|
+
WALKING = "walking",
|
|
3676
|
+
CROSSBORDER = "crossborder"
|
|
3503
3677
|
}
|
|
3504
3678
|
/** Standards(plug type) stats model */
|
|
3505
3679
|
export declare type StandardStats = {
|
|
3506
|
-
/** The total number of stations with the specified plug */
|
|
3507
|
-
total?: Maybe<Scalars["Int"]>;
|
|
3508
3680
|
/** The plug type */
|
|
3509
3681
|
type?: Maybe<ConnectorType>;
|
|
3682
|
+
/** The total number of stations with the specified plug */
|
|
3683
|
+
total?: Maybe<Scalars["Int"]>;
|
|
3510
3684
|
};
|
|
3511
3685
|
/** Station data which extends OCPI Location */
|
|
3512
3686
|
export declare type Station = {
|
|
3687
|
+
/** Review of a station */
|
|
3688
|
+
review?: Maybe<ReviewStats>;
|
|
3689
|
+
/** Unique ID of a station */
|
|
3690
|
+
id: Scalars["ID"];
|
|
3691
|
+
/** ISO-3166 alpha-2 country code of a station */
|
|
3692
|
+
country_code?: Maybe<Scalars["String"]>;
|
|
3693
|
+
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard) */
|
|
3694
|
+
party_id?: Maybe<Scalars["String"]>;
|
|
3695
|
+
/**
|
|
3696
|
+
* Defines if a location may be published on a website or app etc.
|
|
3697
|
+
* When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
|
|
3698
|
+
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created
|
|
3699
|
+
*/
|
|
3700
|
+
publish?: Maybe<Scalars["Boolean"]>;
|
|
3701
|
+
/** Name of a charging station */
|
|
3702
|
+
name?: Maybe<Scalars["String"]>;
|
|
3513
3703
|
/** Street/block name and house number if available */
|
|
3514
3704
|
address?: Maybe<Scalars["String"]>;
|
|
3515
|
-
/** Amenities located at this location */
|
|
3516
|
-
amenities?: Maybe<Scalars["JSON"]>;
|
|
3517
|
-
/** Groups of EVSEs by power and type */
|
|
3518
|
-
chargers?: Maybe<Array<Maybe<Charger>>>;
|
|
3519
|
-
/** 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 */
|
|
3520
|
-
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
3521
3705
|
/** City or town */
|
|
3522
3706
|
city?: Maybe<Scalars["String"]>;
|
|
3523
|
-
/**
|
|
3524
|
-
|
|
3707
|
+
/** 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. */
|
|
3708
|
+
postal_code?: Maybe<Scalars["String"]>;
|
|
3709
|
+
/** State or province of a location, only to be used when relevant */
|
|
3710
|
+
state?: Maybe<Scalars["String"]>;
|
|
3525
3711
|
/** ISO 3166-1 alpha-3 code for the country of this station */
|
|
3526
3712
|
country?: Maybe<Scalars["String"]>;
|
|
3527
|
-
/**
|
|
3528
|
-
|
|
3529
|
-
/**
|
|
3530
|
-
|
|
3531
|
-
/**
|
|
3532
|
-
|
|
3533
|
-
/** Elevation (altitude) level */
|
|
3534
|
-
elevation?: Maybe<Scalars["Int"]>;
|
|
3535
|
-
/** Details of the energy supplied at a location */
|
|
3536
|
-
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
3713
|
+
/** Coordinates of a location */
|
|
3714
|
+
coordinates?: Maybe<OCPIGeoLocation>;
|
|
3715
|
+
/** Geographical location of related points relevant to a user */
|
|
3716
|
+
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
3717
|
+
/** Type of parking at a charge point location */
|
|
3718
|
+
parking_type?: Maybe<OCPIParkingType>;
|
|
3537
3719
|
/** EVSEs that belong to a station */
|
|
3538
3720
|
evses?: Maybe<Array<Maybe<EVSE>>>;
|
|
3539
|
-
/**
|
|
3540
|
-
|
|
3721
|
+
/** Human-readable directions on how to reach a station */
|
|
3722
|
+
directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
3723
|
+
/** Information about an operator */
|
|
3724
|
+
operator?: Maybe<Operator>;
|
|
3725
|
+
/** Information about a suboperator if applicable */
|
|
3726
|
+
suboperator?: Maybe<Operator>;
|
|
3727
|
+
/** Information about an owner if available */
|
|
3728
|
+
owner?: Maybe<Operator>;
|
|
3541
3729
|
/** Facilities a charging station belongs to */
|
|
3542
3730
|
facilities?: Maybe<Array<Maybe<OCPIFacility>>>;
|
|
3543
|
-
/**
|
|
3544
|
-
|
|
3731
|
+
/** 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) */
|
|
3732
|
+
time_zone?: Maybe<Scalars["String"]>;
|
|
3733
|
+
/** Times when an EVSEs at a location can be accessed for charging */
|
|
3734
|
+
opening_times?: Maybe<OCPIHours>;
|
|
3735
|
+
/** 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 */
|
|
3736
|
+
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
3545
3737
|
/** Links to images related to a location such as photos or logos */
|
|
3546
3738
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
3739
|
+
/** Details of the energy supplied at a location */
|
|
3740
|
+
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
3547
3741
|
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created) */
|
|
3548
3742
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
3743
|
+
/** ID provided by a station data source */
|
|
3744
|
+
external_id?: Maybe<Scalars["String"]>;
|
|
3549
3745
|
/** GeoJSON location of a charging station */
|
|
3550
3746
|
location?: Maybe<Point>;
|
|
3551
|
-
/**
|
|
3552
|
-
|
|
3553
|
-
/**
|
|
3554
|
-
|
|
3555
|
-
/**
|
|
3556
|
-
|
|
3557
|
-
/** Information about an owner if available */
|
|
3558
|
-
owner?: Maybe<Operator>;
|
|
3559
|
-
/** Type of parking at a charge point location */
|
|
3560
|
-
parking_type?: Maybe<OCPIParkingType>;
|
|
3561
|
-
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard) */
|
|
3562
|
-
party_id?: Maybe<Scalars["String"]>;
|
|
3747
|
+
/** Elevation (altitude) level */
|
|
3748
|
+
elevation?: Maybe<Scalars["Int"]>;
|
|
3749
|
+
/** Groups of EVSEs by power and type */
|
|
3750
|
+
chargers?: Maybe<Array<Maybe<Charger>>>;
|
|
3751
|
+
/** Amenities located at this location */
|
|
3752
|
+
amenities?: Maybe<Scalars["JSON"]>;
|
|
3563
3753
|
/** Enriched information about the physical address of a station */
|
|
3564
3754
|
physical_address?: Maybe<Address>;
|
|
3565
|
-
/**
|
|
3566
|
-
|
|
3755
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3756
|
+
properties?: Maybe<Scalars["JSON"]>;
|
|
3757
|
+
/** A flag that indicates if a station has real-time information about the availability of its connectors */
|
|
3758
|
+
realtime?: Maybe<Scalars["Boolean"]>;
|
|
3759
|
+
/** A flag that indicates if a station is on private property */
|
|
3760
|
+
private?: Maybe<Scalars["Boolean"]>;
|
|
3567
3761
|
/** Connectors grouped by power */
|
|
3568
3762
|
power?: Maybe<Scalars["JSON"]>;
|
|
3569
3763
|
/**
|
|
@@ -3576,161 +3770,179 @@ export declare type Station = {
|
|
|
3576
3770
|
* @deprecated In favor of custom_properties.predicted_occupancy
|
|
3577
3771
|
*/
|
|
3578
3772
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
3579
|
-
/** A flag that indicates if a station is on private property */
|
|
3580
|
-
private?: Maybe<Scalars["Boolean"]>;
|
|
3581
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3582
|
-
properties?: Maybe<Scalars["JSON"]>;
|
|
3583
|
-
/**
|
|
3584
|
-
* Defines if a location may be published on a website or app etc.
|
|
3585
|
-
* When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
|
|
3586
|
-
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created
|
|
3587
|
-
*/
|
|
3588
|
-
publish?: Maybe<Scalars["Boolean"]>;
|
|
3589
|
-
/** A flag that indicates if a station has real-time information about the availability of its connectors */
|
|
3590
|
-
realtime?: Maybe<Scalars["Boolean"]>;
|
|
3591
|
-
/** Geographical location of related points relevant to a user */
|
|
3592
|
-
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
3593
|
-
/** Review of a station */
|
|
3594
|
-
review?: Maybe<ReviewStats>;
|
|
3595
3773
|
/** Charging speed for a station */
|
|
3596
3774
|
speed?: Maybe<StationSpeedType>;
|
|
3597
|
-
/** State or province of a location, only to be used when relevant */
|
|
3598
|
-
state?: Maybe<Scalars["String"]>;
|
|
3599
3775
|
/** Global status for a station */
|
|
3600
3776
|
status?: Maybe<ChargerStatus>;
|
|
3601
|
-
/**
|
|
3602
|
-
|
|
3603
|
-
/** 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) */
|
|
3604
|
-
time_zone?: Maybe<Scalars["String"]>;
|
|
3777
|
+
/** Custom properties of a station. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
3778
|
+
custom_properties?: Maybe<StationCustomProperties>;
|
|
3605
3779
|
};
|
|
3606
3780
|
/** Filter which can be applied to retrieve the station around list action */
|
|
3607
3781
|
export declare type StationAroundFilter = {
|
|
3608
|
-
/** Amenities available near a station */
|
|
3609
|
-
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
3610
|
-
/** Flag that allows you to return only available stations */
|
|
3611
|
-
available_only?: Maybe<Scalars["Boolean"]>;
|
|
3612
|
-
/** Station socket or plug standards */
|
|
3613
|
-
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
3614
|
-
/** Distance, in meters, to search around */
|
|
3615
|
-
distance?: Maybe<Scalars["Int"]>;
|
|
3616
3782
|
/** The GeoJSON Point of the center of the around me circle */
|
|
3617
3783
|
location?: Maybe<PointInput>;
|
|
3618
|
-
/**
|
|
3619
|
-
|
|
3784
|
+
/** Distance, in meters, to search around */
|
|
3785
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
3620
3786
|
/** Powers in kWh */
|
|
3621
3787
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
3788
|
+
/** Amenities available near a station */
|
|
3789
|
+
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
3790
|
+
/** Station speed */
|
|
3791
|
+
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
3792
|
+
/** Station socket or plug standards */
|
|
3793
|
+
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
3794
|
+
/** Flag that allows you to return only available stations */
|
|
3795
|
+
available_only?: Maybe<Scalars["Boolean"]>;
|
|
3622
3796
|
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
3623
3797
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
3624
3798
|
};
|
|
3625
3799
|
/** Deprecated: Replaced by filter & search params */
|
|
3626
3800
|
export declare type StationAroundQuery = {
|
|
3627
|
-
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park */
|
|
3628
|
-
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3629
|
-
/** Distance, in meters, to search around */
|
|
3630
|
-
distance?: Maybe<Scalars["Int"]>;
|
|
3631
3801
|
/** The GeoJSON Point of the center of the around me circle */
|
|
3632
3802
|
location?: Maybe<PointInput>;
|
|
3803
|
+
/** Distance, in meters, to search around */
|
|
3804
|
+
distance?: Maybe<Scalars["Int"]>;
|
|
3633
3805
|
/** Power in kWh */
|
|
3634
3806
|
power?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
3807
|
+
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park */
|
|
3808
|
+
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
3635
3809
|
};
|
|
3636
3810
|
export declare type StationCustomProperties = {
|
|
3637
|
-
/** Type of access to the charging station */
|
|
3638
|
-
access_type?: Maybe<AccessType>;
|
|
3639
|
-
/** List of available ad hoc payment methods */
|
|
3640
|
-
adhoc_authorisation_method?: Maybe<Array<Maybe<AdhocAuthorisationMethod>>>;
|
|
3641
|
-
/** Charging behavior of a station */
|
|
3642
|
-
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
3643
|
-
/** Predicted station occupancy */
|
|
3644
|
-
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
3645
|
-
/** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values */
|
|
3646
|
-
reliability_score?: Maybe<Scalars["Int"]>;
|
|
3647
3811
|
/** List of eMSP cards accepted at a charging station */
|
|
3648
3812
|
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
3649
3813
|
/** Phone number for assistance at a charging station */
|
|
3650
3814
|
support_phone_number?: Maybe<Scalars["String"]>;
|
|
3815
|
+
/** Charging behavior of a station */
|
|
3816
|
+
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
3817
|
+
/** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values */
|
|
3818
|
+
reliability_score?: Maybe<Scalars["Int"]>;
|
|
3819
|
+
/** List of available ad hoc payment methods */
|
|
3820
|
+
adhoc_authorisation_method?: Maybe<Array<Maybe<AdhocAuthorisationMethod>>>;
|
|
3821
|
+
/** Predicted station occupancy */
|
|
3822
|
+
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
3823
|
+
/** Type of access to the charging station */
|
|
3824
|
+
access_type?: Maybe<AccessType>;
|
|
3651
3825
|
};
|
|
3652
3826
|
/** Filter which can be applied to retrieve the station list action */
|
|
3653
3827
|
export declare type StationListFilter = {
|
|
3828
|
+
/** Powers in kWh */
|
|
3829
|
+
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
3654
3830
|
/** Amenities available near a station */
|
|
3655
3831
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
3656
|
-
/** Flag that allows you to return only available stations */
|
|
3657
|
-
available_only?: Maybe<Scalars["Boolean"]>;
|
|
3658
|
-
/** Station socket or plug standards */
|
|
3659
|
-
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
3660
3832
|
/** Station speed */
|
|
3661
3833
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
3662
|
-
/**
|
|
3663
|
-
|
|
3834
|
+
/** Station socket or plug standards */
|
|
3835
|
+
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
3836
|
+
/** Flag that allows you to return only available stations */
|
|
3837
|
+
available_only?: Maybe<Scalars["Boolean"]>;
|
|
3664
3838
|
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
3665
3839
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
3666
3840
|
};
|
|
3667
3841
|
/** Deprecated: Replaced by filter & search params */
|
|
3668
3842
|
export declare type StationListQuery = {
|
|
3669
|
-
/** External ID of the station provided by the station data source */
|
|
3670
|
-
external_id?: Maybe<Scalars["String"]>;
|
|
3671
3843
|
/** ID of the station */
|
|
3672
3844
|
id?: Maybe<Scalars["ID"]>;
|
|
3845
|
+
/** External ID of the station provided by the station data source */
|
|
3846
|
+
external_id?: Maybe<Scalars["String"]>;
|
|
3673
3847
|
/** Exact name */
|
|
3674
3848
|
name?: Maybe<Scalars["String"]>;
|
|
3675
3849
|
};
|
|
3676
3850
|
/** Station availability for each weekday and hour */
|
|
3677
3851
|
export declare type StationPredictedAvailability = {
|
|
3678
|
-
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)) */
|
|
3679
|
-
prediction?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
3680
3852
|
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
3681
3853
|
weekday?: Maybe<Scalars["Int"]>;
|
|
3854
|
+
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)) */
|
|
3855
|
+
prediction?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
3682
3856
|
};
|
|
3683
3857
|
/** Station occupancy for each weekday and hour */
|
|
3684
3858
|
export declare type StationPredictedOccupancy = {
|
|
3859
|
+
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
3860
|
+
weekday?: Maybe<Scalars["Int"]>;
|
|
3685
3861
|
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied */
|
|
3686
3862
|
occupancy?: Maybe<Scalars["Int"]>;
|
|
3687
3863
|
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
3688
3864
|
period_begin?: Maybe<Scalars["String"]>;
|
|
3689
3865
|
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
3690
3866
|
period_end?: Maybe<Scalars["String"]>;
|
|
3691
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
3692
|
-
weekday?: Maybe<Scalars["Int"]>;
|
|
3693
3867
|
};
|
|
3694
3868
|
export declare type StationRoaming = {
|
|
3695
|
-
/** Link to native Android app for card accepted at a charging station */
|
|
3696
|
-
android_app_link?: Maybe<Scalars["String"]>;
|
|
3697
|
-
/** Name of the card accepted at a charging station */
|
|
3698
|
-
card?: Maybe<Scalars["String"]>;
|
|
3699
3869
|
/** Name of the EMSP provider */
|
|
3700
3870
|
emsp?: Maybe<Scalars["String"]>;
|
|
3871
|
+
/** Name of the card accepted at a charging station */
|
|
3872
|
+
card?: Maybe<Scalars["String"]>;
|
|
3873
|
+
/** Link to native Android app for card accepted at a charging station */
|
|
3874
|
+
android_app_link?: Maybe<Scalars["String"]>;
|
|
3701
3875
|
/** Link to native iOS app for card accepted at a charging station */
|
|
3702
3876
|
ios_app_link?: Maybe<Scalars["String"]>;
|
|
3703
3877
|
};
|
|
3704
3878
|
/** The station speed type */
|
|
3705
3879
|
export declare enum StationSpeedType {
|
|
3706
|
-
/** Fast charging stations (above 43 kWh and below 150 kWh) */
|
|
3707
|
-
FAST = "fast",
|
|
3708
3880
|
/** Slow charging (below 43 kWh) */
|
|
3709
3881
|
SLOW = "slow",
|
|
3882
|
+
/** Fast charging stations (above 43 kWh and below 150 kWh) */
|
|
3883
|
+
FAST = "fast",
|
|
3710
3884
|
/** Ultra fast charging stations (above 150 kWh) */
|
|
3711
3885
|
TURBO = "turbo"
|
|
3712
3886
|
}
|
|
3713
3887
|
/** The station stats model */
|
|
3714
3888
|
export declare type StationStats = {
|
|
3715
|
-
/** Stations count grouped by amenities */
|
|
3716
|
-
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
3717
|
-
/** Stations count grouped by power */
|
|
3718
|
-
power?: Maybe<Array<Maybe<PowerStats>>>;
|
|
3719
3889
|
/** Stations count grouped by standards */
|
|
3720
3890
|
standards?: Maybe<Array<Maybe<StandardStats>>>;
|
|
3891
|
+
/** Stations count grouped by power */
|
|
3892
|
+
power?: Maybe<Array<Maybe<PowerStats>>>;
|
|
3893
|
+
/** Stations count grouped by amenities */
|
|
3894
|
+
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
3721
3895
|
};
|
|
3722
3896
|
/** Types of a route step */
|
|
3723
3897
|
export declare enum StepType {
|
|
3724
|
-
/** This step is a crossborder */
|
|
3725
|
-
CROSSBORDER = "crossborder",
|
|
3726
|
-
/** This step is a ferry */
|
|
3727
|
-
FERRY = "ferry",
|
|
3728
|
-
/** This step is a highway */
|
|
3729
|
-
HIGHWAY = "highway",
|
|
3730
3898
|
/** This step is a road */
|
|
3731
3899
|
ROAD = "road",
|
|
3900
|
+
/** This step is a highway */
|
|
3901
|
+
HIGHWAY = "highway",
|
|
3732
3902
|
/** This step is a toll road */
|
|
3733
3903
|
TOLL = "toll",
|
|
3904
|
+
/** This step is a ferry */
|
|
3905
|
+
FERRY = "ferry",
|
|
3734
3906
|
/** This step is reachable by walking */
|
|
3735
|
-
WALKING = "walking"
|
|
3907
|
+
WALKING = "walking",
|
|
3908
|
+
/** This step is a crossborder */
|
|
3909
|
+
CROSSBORDER = "crossborder"
|
|
3736
3910
|
}
|
|
3911
|
+
export declare type Subscription = {
|
|
3912
|
+
/** [BETA] Subscribe to a connected vehicle. */
|
|
3913
|
+
connectedVehicle?: Maybe<ConnectedVehicle>;
|
|
3914
|
+
/** [BETA] Subscribe to an isoline label in order to receive updates */
|
|
3915
|
+
isoline?: Maybe<Isoline>;
|
|
3916
|
+
/** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates */
|
|
3917
|
+
navigationUpdatedById?: Maybe<Navigation>;
|
|
3918
|
+
/** Subscription for a specific route was updated in the system event */
|
|
3919
|
+
routeUpdatedById?: Maybe<Route>;
|
|
3920
|
+
};
|
|
3921
|
+
export declare type SubscriptionconnectedVehicleArgs = {
|
|
3922
|
+
id: Scalars["ID"];
|
|
3923
|
+
};
|
|
3924
|
+
export declare type SubscriptionisolineArgs = {
|
|
3925
|
+
id: Scalars["ID"];
|
|
3926
|
+
};
|
|
3927
|
+
export declare type SubscriptionnavigationUpdatedByIdArgs = {
|
|
3928
|
+
id: Scalars["ID"];
|
|
3929
|
+
};
|
|
3930
|
+
export declare type SubscriptionrouteUpdatedByIdArgs = {
|
|
3931
|
+
id: Scalars["ID"];
|
|
3932
|
+
};
|
|
3933
|
+
export declare type UpdateConnectedVehicleInput = {
|
|
3934
|
+
/** Id from the connected vehicle */
|
|
3935
|
+
id: Scalars["ID"];
|
|
3936
|
+
/** New label for a connected vehicle */
|
|
3937
|
+
label?: Maybe<Scalars["PlainString"]>;
|
|
3938
|
+
};
|
|
3939
|
+
export declare type VehicleData = {
|
|
3940
|
+
/** Battery data */
|
|
3941
|
+
battery?: Maybe<ConnectBattery>;
|
|
3942
|
+
/** Charge data */
|
|
3943
|
+
charge?: Maybe<ConnectCharge>;
|
|
3944
|
+
/** Location data */
|
|
3945
|
+
location?: Maybe<ConnectLocation>;
|
|
3946
|
+
/** Odometer data */
|
|
3947
|
+
odometer?: Maybe<ConnectOdometer>;
|
|
3948
|
+
};
|