@chargetrip/types 1.23.0 → 1.24.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.
@@ -0,0 +1,3374 @@
1
+ export declare type Maybe<T> = T | null;
2
+ export declare type Exact<T extends {
3
+ [key: string]: unknown;
4
+ }> = {
5
+ [K in keyof T]: T[K];
6
+ };
7
+ export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
8
+ [SubKey in K]?: Maybe<T[SubKey]>;
9
+ };
10
+ export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
11
+ [SubKey in K]: Maybe<T[SubKey]>;
12
+ };
13
+ /** All built-in and custom scalars, mapped to their actual values */
14
+ export declare type Scalars = {
15
+ ID: string;
16
+ String: string;
17
+ Boolean: boolean;
18
+ Int: number;
19
+ Float: number;
20
+ /** The `DateTime` scalar represents a date and time following the ISO 8601 standard */
21
+ DateTime: string;
22
+ /** Any JSON object or array */
23
+ JSON: {
24
+ [key: string]: number | string | boolean | null | Scalars["JSON"];
25
+ };
26
+ /** The File Upload scalar */
27
+ Upload: any;
28
+ };
29
+ /** Information about an address */
30
+ export declare type Address = {
31
+ /** Continent code (2 letters) */
32
+ continent?: Maybe<Scalars["String"]>;
33
+ /** Country code (2 letters) */
34
+ country?: Maybe<Scalars["String"]>;
35
+ /** County code (2 letters) */
36
+ county?: Maybe<Scalars["String"]>;
37
+ /** City */
38
+ city?: Maybe<Scalars["String"]>;
39
+ /** Street name */
40
+ street?: Maybe<Scalars["String"]>;
41
+ /** Street number */
42
+ number?: Maybe<Scalars["String"]>;
43
+ /** Postal code of a location */
44
+ postalCode?: Maybe<Scalars["String"]>;
45
+ /** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words> */
46
+ what3Words?: Maybe<Scalars["String"]>;
47
+ /** Human-readable address of a location */
48
+ formattedAddress?: Maybe<Array<Maybe<Scalars["String"]>>>;
49
+ };
50
+ /** The amenity model */
51
+ export declare type Amenity = {
52
+ /** Unique amenity ID */
53
+ id?: Maybe<Scalars["ID"]>;
54
+ /** ID provided by an amenity data source as the row ID */
55
+ externalId?: Maybe<Scalars["String"]>;
56
+ /** Name of an amenity */
57
+ name?: Maybe<Scalars["String"]>;
58
+ /** Geo location coordinates. This is a GeoJSON Point */
59
+ location?: Maybe<Point>;
60
+ /** Embedded Address */
61
+ address?: Maybe<Address>;
62
+ /** Type of amenity. An amenity can belong to multiple categories */
63
+ type?: Maybe<Array<Maybe<Scalars["String"]>>>;
64
+ /** 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 */
65
+ rating?: Maybe<Scalars["Float"]>;
66
+ /** Computed distance between station and amenity */
67
+ distance?: Maybe<Scalars["Int"]>;
68
+ /** Full path URL to amenity foursquare page */
69
+ foursquareUrl?: Maybe<Scalars["String"]>;
70
+ /** Date and time when an amenity was created */
71
+ createdAt?: Maybe<Scalars["String"]>;
72
+ /** Date and time when an amenity was last updated */
73
+ updatedAt?: Maybe<Scalars["String"]>;
74
+ };
75
+ /** Amenities stats model */
76
+ export declare type AmenityStats = {
77
+ /** The amenity type */
78
+ type?: Maybe<Scalars["String"]>;
79
+ /** The total number of stations with the specified amenity */
80
+ total?: Maybe<Scalars["Int"]>;
81
+ };
82
+ /** The type of the batter value */
83
+ export declare enum BatteryInputType {
84
+ KWH = "kwh",
85
+ KM = "km",
86
+ MILES = "miles",
87
+ PERCENTAGE = "percentage"
88
+ }
89
+ /** Output of a car query */
90
+ export declare type Car = {
91
+ /** Cars unique ID */
92
+ id?: Maybe<Scalars["ID"]>;
93
+ /** Naming of a car */
94
+ naming?: Maybe<CarNaming>;
95
+ /** Available connectors for a car */
96
+ connectors?: Maybe<Array<Maybe<CarPlug>>>;
97
+ /** List of adapters of connectors available for a car */
98
+ adapters?: Maybe<Array<Maybe<CarPlug>>>;
99
+ /** Battery of a car */
100
+ battery?: Maybe<CarBattery>;
101
+ /** Body of a car */
102
+ body?: Maybe<CarBody>;
103
+ /** Availability of a car */
104
+ availability?: Maybe<CarAvailability>;
105
+ /** Performance of a car */
106
+ performance?: Maybe<CarPerformance>;
107
+ /** Range of a car */
108
+ range?: Maybe<CarRange>;
109
+ /** Media of a car */
110
+ media?: Maybe<CarMedia>;
111
+ /** Routing of a car */
112
+ routing?: Maybe<CarRouting>;
113
+ /**
114
+ * ID provided by a car data source as the row ID
115
+ * @deprecated Will be removed in the future
116
+ */
117
+ externalId?: Maybe<Scalars["String"]>;
118
+ /**
119
+ * Car manufacturer
120
+ * @deprecated In favor of naming.make
121
+ */
122
+ make?: Maybe<Scalars["String"]>;
123
+ /**
124
+ * Car model
125
+ * @deprecated In favor of naming.model
126
+ */
127
+ carModel?: Maybe<Scalars["String"]>;
128
+ /**
129
+ * Car edition
130
+ * @deprecated In favor of naming.version
131
+ */
132
+ edition?: Maybe<Scalars["String"]>;
133
+ /**
134
+ * 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
135
+ * @deprecated In favor of naming.chargetrip_version
136
+ */
137
+ chargetripEdition?: Maybe<Scalars["String"]>;
138
+ /**
139
+ * Car version
140
+ * @deprecated In favor of naming.edition
141
+ */
142
+ version?: Maybe<Scalars["String"]>;
143
+ /**
144
+ * 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
145
+ * @deprecated In favor of range.chargetrip_range
146
+ */
147
+ chargetripRange?: Maybe<ChargetripRange>;
148
+ /**
149
+ * Cars that support fast charging have a minimum charging speed of 43 Kwh. Cars without support for fast charging used in a newRoute mutation will return an error
150
+ * @deprecated In favor of routing.fast_charging_support
151
+ */
152
+ fastChargingSupport?: Maybe<Scalars["Boolean"]>;
153
+ /**
154
+ * Current production mode of a car
155
+ * @deprecated In favor of availability.status
156
+ */
157
+ mode?: Maybe<CarMode>;
158
+ /**
159
+ * Number of seats
160
+ * @deprecated In favor of body.seats
161
+ */
162
+ seats?: Maybe<Scalars["Int"]>;
163
+ /**
164
+ * Weight in kg
165
+ * @deprecated In favor of body.weight
166
+ */
167
+ weight?: Maybe<Scalars["Float"]>;
168
+ /**
169
+ * Height in mm
170
+ * @deprecated In favor of body.height
171
+ */
172
+ height?: Maybe<Scalars["Int"]>;
173
+ /**
174
+ * Width in mm
175
+ * @deprecated In favor of body.width
176
+ */
177
+ width?: Maybe<Scalars["Int"]>;
178
+ /**
179
+ * Usable battery capacity in kWh
180
+ * @deprecated In favor of battery.usable_kwh
181
+ */
182
+ batteryUsableKwh?: Maybe<Scalars["Float"]>;
183
+ /**
184
+ * Full battery capacity in kWh
185
+ * @deprecated In favor of battery.full_kwh
186
+ */
187
+ batteryFullKwh?: Maybe<Scalars["Float"]>;
188
+ /**
189
+ * Battery efficiency in the city, highway and combined depending on weather conditions
190
+ * @deprecated In favor of efficiency
191
+ */
192
+ batteryEfficiency?: Maybe<CarBatteryEfficiency>;
193
+ /**
194
+ * Acceleration time from 0 to 100 km/h
195
+ * @deprecated In favor of performance.acceleration
196
+ */
197
+ acceleration?: Maybe<Scalars["Float"]>;
198
+ /**
199
+ * Maximum car speed in km/h
200
+ * @deprecated In favor of performance.top_speed
201
+ */
202
+ topSpeed?: Maybe<Scalars["Float"]>;
203
+ /**
204
+ * Power of a car in Kw
205
+ * @deprecated In favor of drivetrain.power
206
+ */
207
+ power?: Maybe<Scalars["Float"]>;
208
+ /**
209
+ * Engine torque
210
+ * @deprecated In favor of drivetrain.torque
211
+ */
212
+ torque?: Maybe<Scalars["Float"]>;
213
+ /**
214
+ * Extra consumption model
215
+ * @deprecated In favor of routing.consumption
216
+ */
217
+ consumption?: Maybe<CarExtraConsumption>;
218
+ /**
219
+ * Amount of petrol a similar petrol car would consume per 100 km
220
+ * @deprecated In favor of routing.petrol_consumption
221
+ */
222
+ petrolConsumption?: Maybe<Scalars["Float"]>;
223
+ /**
224
+ * A list of offset data for different charging speeds
225
+ * @deprecated You will receive null values
226
+ */
227
+ chargingOffset?: Maybe<Scalars["JSON"]>;
228
+ /**
229
+ * Images of a car
230
+ * @deprecated In favor of media.image_list
231
+ */
232
+ images?: Maybe<Array<Maybe<CarImage>>>;
233
+ /**
234
+ * Images of a car in structured data
235
+ * @deprecated In favor of media.image or media.brand
236
+ */
237
+ imagesData?: Maybe<CarImageData>;
238
+ };
239
+ export declare type CarAvailability = {
240
+ /**
241
+ * Availability of car
242
+ *
243
+ * Values:
244
+ * - 0 = Car no longer for sale in any market / region
245
+ * - 1 = Car currently for sale in at least one market / region
246
+ * - 2 = Car expected in market from Date_From (estimated), pre-order open
247
+ * - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open
248
+ * - 12 = Concept car, nearing production and/or confirmed, pre-order open
249
+ * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
250
+ * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
251
+ * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
252
+ * - 91 = Status uncertain, introduction date and/or pricing unclear
253
+ */
254
+ status?: Maybe<Scalars["Int"]>;
255
+ };
256
+ export declare type CarBattery = {
257
+ /** Usable battery capacity in kWh */
258
+ usable_kwh?: Maybe<Scalars["Float"]>;
259
+ /** Full battery capacity in kWh */
260
+ full_kwh?: Maybe<Scalars["Float"]>;
261
+ };
262
+ /** Deprecated */
263
+ export declare type CarBatteryEfficiency = {
264
+ /** Average efficiency measured in kWh/100 km */
265
+ average?: Maybe<Scalars["Float"]>;
266
+ /** Worst conditions are based on -10°C and use of heating, measured in kWh/100 km */
267
+ worst?: Maybe<CarEstimationData>;
268
+ /** Best conditions are based on 23°C and no use of A/C, measured in kWh/100 km */
269
+ best?: Maybe<CarEstimationData>;
270
+ };
271
+ /** Battery field estimated */
272
+ export declare enum CarBatteryFieldEstimations {
273
+ /** Both of the battery kWh fields are estimations */
274
+ B = "B",
275
+ /** full_kwh field is estimated */
276
+ F = "F",
277
+ /** None of the battery kWh fields are estimations */
278
+ N = "N",
279
+ /** usable_kwh field is estimated */
280
+ U = "U"
281
+ }
282
+ export declare type CarBody = {
283
+ /** Width with folded mirrors in mm */
284
+ width?: Maybe<Scalars["Int"]>;
285
+ /** Height (average height for adjustable suspensions) in mm */
286
+ height?: Maybe<Scalars["Int"]>;
287
+ /** Weight Unladen EU) in kg */
288
+ weight?: Maybe<Scalars["Int"]>;
289
+ /** Number of seats */
290
+ seats?: Maybe<Scalars["Int"]>;
291
+ };
292
+ /** Deprecated */
293
+ export declare type CarConsumption = {
294
+ /** Worst conditions are based on -10°C and use of heating */
295
+ worst?: Maybe<Scalars["Float"]>;
296
+ /** Best conditions are based on 23°C and no use of A/C */
297
+ best?: Maybe<Scalars["Float"]>;
298
+ };
299
+ /** The consumption of the car */
300
+ export declare type CarConsumptionInput = {
301
+ /** Worst conditions are based on -10°C and use of heating */
302
+ worst?: Maybe<Scalars["Float"]>;
303
+ /** Best conditions are based on 23°C and no use of A/C */
304
+ best?: Maybe<Scalars["Float"]>;
305
+ };
306
+ /** Drivetrain */
307
+ export declare enum CarDrivetrain {
308
+ /** Battery Electric Car */
309
+ BEV = "BEV",
310
+ /** Extended Range Electric Car */
311
+ EREV = "EREV"
312
+ }
313
+ /** Deprecated */
314
+ export declare type CarEstimationData = {
315
+ /** Estimated battery efficiency on a highway or express roads, in km */
316
+ highway?: Maybe<Scalars["Float"]>;
317
+ /** Estimated battery efficiency on city roads, in km */
318
+ city?: Maybe<Scalars["Float"]>;
319
+ /** Estimated battery efficiency on highway and city roads combined, in km */
320
+ combined?: Maybe<Scalars["Float"]>;
321
+ };
322
+ /** Deprecated */
323
+ export declare type CarExtraConsumption = {
324
+ /** Consumption, in kWh, of the auxiliaries */
325
+ aux?: Maybe<CarConsumption>;
326
+ /** Consumption, in kWh, of the battery management system */
327
+ bms?: Maybe<CarConsumption>;
328
+ /** Consumption, in kWh, of a car in idle mode */
329
+ idle?: Maybe<CarConsumption>;
330
+ };
331
+ /** Fuel type */
332
+ export declare enum CarFuel {
333
+ /** Electricity only. Full electric car */
334
+ E = "E"
335
+ }
336
+ export declare type CarImage = {
337
+ /** Image id */
338
+ id?: Maybe<Scalars["ID"]>;
339
+ /** Image type */
340
+ type?: Maybe<CarImageType>;
341
+ /** Full path URL of a large image */
342
+ url?: Maybe<Scalars["String"]>;
343
+ /** Height of a large image in pixels */
344
+ height?: Maybe<Scalars["Int"]>;
345
+ /** Width of a large image in pixels */
346
+ width?: Maybe<Scalars["Int"]>;
347
+ /** Full path URL of a thumbnail image */
348
+ thumbnail_url?: Maybe<Scalars["String"]>;
349
+ /** Height of a thumbnail image in pixels */
350
+ thumbnail_height?: Maybe<Scalars["Int"]>;
351
+ /** Width of a thumbnail image in pixels */
352
+ thumbnail_width?: Maybe<Scalars["Int"]>;
353
+ };
354
+ /** Deprecated */
355
+ export declare type CarImageData = {
356
+ /** Full size image of a car */
357
+ image?: Maybe<CarImage>;
358
+ /** Thumbnail of a full size image */
359
+ image_thumbnail?: Maybe<CarImage>;
360
+ /** Full size logo of the maker of a car */
361
+ brand?: Maybe<CarImage>;
362
+ /** Thumbnail of a full size logo of the maker of a car */
363
+ brand_thumbnail?: Maybe<CarImage>;
364
+ };
365
+ /** Available types of images which can be found for a car. Each type has specific image sizes */
366
+ export declare enum CarImageType {
367
+ /** Images provided by a Car Datasource */
368
+ PROVIDER = "provider",
369
+ /** Full-sized image at 1536x864 px */
370
+ IMAGE = "image",
371
+ /** Thumbnail of a full-sized image at 131x72 px */
372
+ IMAGE_THUMBNAIL = "image_thumbnail",
373
+ /** Full-sized brand (maker) logo at 768x432 px */
374
+ BRAND = "brand",
375
+ /** Thumbnail of a full-sized brand logo at 56x24 px */
376
+ BRAND_THUMBNAIL = "brand_thumbnail"
377
+ }
378
+ /** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system */
379
+ export declare enum CarImageTypeUploadable {
380
+ /** Full size image with a resolution at least 1536x864 px */
381
+ IMAGE = "image"
382
+ }
383
+ /** The output element of the carList query */
384
+ export declare type CarList = {
385
+ /** Cars unique ID */
386
+ id?: Maybe<Scalars["ID"]>;
387
+ /** Naming of a car */
388
+ naming?: Maybe<CarListNaming>;
389
+ /** Connectors available for a car */
390
+ connectors?: Maybe<Array<Maybe<CarPlug>>>;
391
+ /** Adapters of connectors available for a car */
392
+ adapters?: Maybe<Array<Maybe<CarPlug>>>;
393
+ /** Battery of a car */
394
+ battery?: Maybe<CarListBattery>;
395
+ /** Body of a car */
396
+ body?: Maybe<CarListBody>;
397
+ /** Availability of a car */
398
+ availability?: Maybe<CarListAvailability>;
399
+ /** Range of a car */
400
+ range?: Maybe<CarListRange>;
401
+ /** Media of a car */
402
+ media?: Maybe<CarListMedia>;
403
+ /** Routing of a car */
404
+ routing?: Maybe<CarListRouting>;
405
+ /**
406
+ * ID provided by a car data source as the row ID
407
+ * @deprecated Will be removed in the future
408
+ */
409
+ externalId?: Maybe<Scalars["String"]>;
410
+ /**
411
+ * Car manufacturer
412
+ * @deprecated In favor of naming.make
413
+ */
414
+ make?: Maybe<Scalars["String"]>;
415
+ /**
416
+ * Car model
417
+ * @deprecated In favor of naming.model
418
+ */
419
+ carModel?: Maybe<Scalars["String"]>;
420
+ /**
421
+ * Car edition
422
+ * @deprecated In favor of naming.version
423
+ */
424
+ edition?: Maybe<Scalars["String"]>;
425
+ /**
426
+ * 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
427
+ * @deprecated In favor of naming.chargetrip_version
428
+ */
429
+ chargetripEdition?: Maybe<Scalars["String"]>;
430
+ /**
431
+ * Car version
432
+ * @deprecated In favor of naming.edition
433
+ */
434
+ version?: Maybe<Scalars["String"]>;
435
+ /**
436
+ * 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
437
+ * @deprecated In favor of range.chargetrip_range
438
+ */
439
+ chargetripRange?: Maybe<ChargetripRange>;
440
+ /**
441
+ * Cars that support fast charging have a minimum charging speed of 43 Kwh. Cars without support for fast charging used in a newRoute mutation will return an error
442
+ * @deprecated In favor of routing.fast_charging_support
443
+ */
444
+ fastChargingSupport?: Maybe<Scalars["Boolean"]>;
445
+ /**
446
+ * Current production mode of a car
447
+ * @deprecated In favor of availability.status
448
+ */
449
+ mode?: Maybe<CarMode>;
450
+ /**
451
+ * Number of seats
452
+ * @deprecated In favor of body.seats
453
+ */
454
+ seats?: Maybe<Scalars["Int"]>;
455
+ /**
456
+ * Usable battery capacity in kWh
457
+ * @deprecated In favor of battery.usable_kwh
458
+ */
459
+ batteryUsableKwh?: Maybe<Scalars["Float"]>;
460
+ /**
461
+ * Full battery capacity in kWh
462
+ * @deprecated In favor of battery.full_kwh
463
+ */
464
+ batteryFullKwh?: Maybe<Scalars["Float"]>;
465
+ /**
466
+ * Images of a car in structured data
467
+ * @deprecated In favor of media.image and media.brand
468
+ */
469
+ imagesData?: Maybe<CarImageData>;
470
+ /** @deprecated You will receive null values */
471
+ power?: Maybe<Scalars["Float"]>;
472
+ /** @deprecated You will receive null values */
473
+ acceleration?: Maybe<Scalars["Float"]>;
474
+ /** @deprecated You will receive null values */
475
+ topSpeed?: Maybe<Scalars["Float"]>;
476
+ /** @deprecated You will receive null values */
477
+ torque?: Maybe<Scalars["Float"]>;
478
+ /** @deprecated You will receive null values */
479
+ batteryEfficiency?: Maybe<CarBatteryEfficiency>;
480
+ /** @deprecated You will receive null values */
481
+ weight?: Maybe<Scalars["Float"]>;
482
+ /** @deprecated You will receive null values */
483
+ height?: Maybe<Scalars["Int"]>;
484
+ /** @deprecated You will receive null values */
485
+ width?: Maybe<Scalars["Int"]>;
486
+ /** @deprecated You will receive null values */
487
+ consumption?: Maybe<CarExtraConsumption>;
488
+ /** @deprecated You will receive null values */
489
+ petrolConsumption?: Maybe<Scalars["Float"]>;
490
+ /** @deprecated You will receive null values */
491
+ chargingOffset?: Maybe<Scalars["JSON"]>;
492
+ /** @deprecated You will receive null values */
493
+ auxConsumption?: Maybe<Scalars["Float"]>;
494
+ /** @deprecated You will receive null values */
495
+ bmsConsumption?: Maybe<Scalars["Float"]>;
496
+ /** @deprecated You will receive null values */
497
+ dragCoefficient?: Maybe<Scalars["Float"]>;
498
+ /** @deprecated You will receive null values */
499
+ tirePressure?: Maybe<Scalars["Float"]>;
500
+ /** @deprecated You will receive null values */
501
+ motorEfficiency?: Maybe<Scalars["Float"]>;
502
+ /** @deprecated You will receive null values */
503
+ drivelineEfficiency?: Maybe<Scalars["Float"]>;
504
+ /** @deprecated You will receive null values */
505
+ regenEfficiency?: Maybe<Scalars["Float"]>;
506
+ /** @deprecated You will receive null values */
507
+ images?: Maybe<Array<Maybe<CarImage>>>;
508
+ };
509
+ export declare type CarListAvailability = {
510
+ /**
511
+ * Availability of car
512
+ *
513
+ * Values:
514
+ * - 0 = Car no longer for sale in any market / region
515
+ * - 1 = Car currently for sale in at least one market / region
516
+ * - 2 = Car expected in market from Date_From (estimated), pre-order open
517
+ * - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open
518
+ * - 12 = Concept car, nearing production and/or confirmed, pre-order open
519
+ * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
520
+ * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
521
+ * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
522
+ * - 91 = Status uncertain, introduction date and/or pricing unclear
523
+ */
524
+ status?: Maybe<Scalars["Int"]>;
525
+ };
526
+ export declare type CarListBattery = {
527
+ /** Usable battery capacity in kWh */
528
+ usable_kwh?: Maybe<Scalars["Float"]>;
529
+ /** Full battery capacity in kWh */
530
+ full_kwh?: Maybe<Scalars["Float"]>;
531
+ };
532
+ export declare type CarListBody = {
533
+ /** Number of seats in car */
534
+ seats?: Maybe<Scalars["Int"]>;
535
+ };
536
+ export declare type CarListFilter = {
537
+ /**
538
+ * Availability of car
539
+ *
540
+ * Values:
541
+ * - 0 = Car no longer for sale in any market / region
542
+ * - 1 = Car currently for sale in at least one market / region
543
+ * - 2 = Car expected in market from Date_From (estimated), pre-order open
544
+ * - 3 = Car expected in market from Date_From (estimated), pre-order unkown or not open
545
+ * - 12 = Concept car, nearing production and/or confirmed, pre-order open
546
+ * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
547
+ * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
548
+ * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
549
+ * - 91 = Status uncertain, introduction date and/or pricing unclear
550
+ */
551
+ availability?: Maybe<Array<Maybe<Scalars["Int"]>>>;
552
+ };
553
+ export declare type CarListMedia = {
554
+ /** Latest image of the car */
555
+ image?: Maybe<CarImage>;
556
+ /** Latest maker logo of the car */
557
+ brand?: Maybe<CarImage>;
558
+ /** Latest video of the car */
559
+ video?: Maybe<CarVideo>;
560
+ };
561
+ export declare type CarListNaming = {
562
+ /** Car manufacturer name */
563
+ make?: Maybe<Scalars["String"]>;
564
+ /** Car model name */
565
+ model?: Maybe<Scalars["String"]>;
566
+ /** Version, edition or submodel of car */
567
+ version?: Maybe<Scalars["String"]>;
568
+ /** Another submodel level of car */
569
+ edition?: Maybe<Scalars["String"]>;
570
+ /** 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 */
571
+ chargetrip_version?: Maybe<Scalars["String"]>;
572
+ };
573
+ /** Deprecated */
574
+ export declare type CarListQuery = {
575
+ /** Deprecated: Not used anymore */
576
+ make?: Maybe<Scalars["String"]>;
577
+ /** Deprecated: Not used anymore */
578
+ model?: Maybe<Scalars["String"]>;
579
+ /** Deprecated: Not used anymore */
580
+ version?: Maybe<Scalars["String"]>;
581
+ /** Deprecated: Not used anymore */
582
+ chargetrip_version?: Maybe<Scalars["String"]>;
583
+ /** Deprecated: Not used anymore */
584
+ mode?: Maybe<CarMode>;
585
+ };
586
+ export declare type CarListRange = {
587
+ /**
588
+ * Is an index value of what we consider to be the real-world range.
589
+ * (Comparable to Range_Real from EV Database.) It is essentially a normalized range to display in the front-end.
590
+ */
591
+ chargetrip_range?: Maybe<ChargetripRange>;
592
+ /** @deprecated You will receive null values */
593
+ wltp?: Maybe<Scalars["Float"]>;
594
+ /** @deprecated You will receive null values */
595
+ worst?: Maybe<CarEstimationData>;
596
+ /** @deprecated You will receive null values */
597
+ best?: Maybe<CarEstimationData>;
598
+ };
599
+ export declare type CarListRouting = {
600
+ /**
601
+ * EVs that support fast charging have a minimum charging speed of 43 Kwh.
602
+ * EVs without support for fast charging used in a newRoute mutation will return an error.
603
+ */
604
+ fast_charging_support?: Maybe<Scalars["Boolean"]>;
605
+ };
606
+ export declare type CarMedia = {
607
+ /** URL to detail page on EV database */
608
+ evdb_details_url?: Maybe<Scalars["String"]>;
609
+ /** Latest image */
610
+ image?: Maybe<CarImage>;
611
+ /** Latest maker logo */
612
+ brand?: Maybe<CarImage>;
613
+ /** All images */
614
+ image_list?: Maybe<Array<Maybe<CarImage>>>;
615
+ /** Latest video */
616
+ video?: Maybe<CarVideo>;
617
+ /** All videos */
618
+ video_list?: Maybe<Array<Maybe<CarVideo>>>;
619
+ /**
620
+ * URL to detail page on EV database
621
+ * @deprecated Will be removed in the future. Please use evdb_details_url
622
+ */
623
+ evdb_detail_url?: Maybe<Scalars["String"]>;
624
+ };
625
+ /** Mode (state) of the current production */
626
+ export declare enum CarMode {
627
+ /** Old car that is no longer manufactured */
628
+ INDEX_ONLY = "index_only",
629
+ /** Car is in production and has been released */
630
+ PRODUCTION = "production",
631
+ /** Future releases of a car, a concept of the car, specs may change over time */
632
+ CONCEPT = "concept"
633
+ }
634
+ export declare type CarNaming = {
635
+ /** Car manufacturer name */
636
+ make?: Maybe<Scalars["String"]>;
637
+ /** Car model name */
638
+ model?: Maybe<Scalars["String"]>;
639
+ /** Version, edition or submodel of car */
640
+ version?: Maybe<Scalars["String"]>;
641
+ /** Another submodel level of car */
642
+ edition?: Maybe<Scalars["String"]>;
643
+ /** 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 */
644
+ chargetrip_version?: Maybe<Scalars["String"]>;
645
+ };
646
+ export declare type CarPerformance = {
647
+ /** Acceleration 0-100 km/h in seconds */
648
+ acceleration?: Maybe<Scalars["Float"]>;
649
+ /** Top speed of car in km/h */
650
+ top_speed?: Maybe<Scalars["Int"]>;
651
+ };
652
+ /** Car plug model */
653
+ export declare type CarPlug = {
654
+ /** Plug type, known as connector standard in OCPI */
655
+ standard?: Maybe<ConnectorType>;
656
+ /** Usable electric power in kW */
657
+ power?: Maybe<Scalars["Float"]>;
658
+ /** Maximum electric power in kW */
659
+ max_electric_power?: Maybe<Scalars["Float"]>;
660
+ /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes */
661
+ time?: Maybe<Scalars["Int"]>;
662
+ /** Charging speed in km/h */
663
+ speed?: Maybe<Scalars["Int"]>;
664
+ };
665
+ /** The output element of the carPremium query */
666
+ export declare type CarPremium = {
667
+ /** Unique ID of a car */
668
+ id?: Maybe<Scalars["ID"]>;
669
+ /** Internal ID of the successor car trim */
670
+ succesor_id?: Maybe<Scalars["String"]>;
671
+ /** Naming of a car */
672
+ naming?: Maybe<CarPremiumNaming>;
673
+ /** Connectors available for a car */
674
+ connectors?: Maybe<Array<Maybe<CarPlug>>>;
675
+ /** Charge details */
676
+ charge?: Maybe<CarPremiumCharge>;
677
+ /** Fast charge details */
678
+ fast_charge?: Maybe<CarPremiumFastCharge>;
679
+ /** Adapters of connectors available for a car */
680
+ adapters?: Maybe<Array<Maybe<CarPlug>>>;
681
+ /** Battery of a car */
682
+ battery?: Maybe<CarPremiumBattery>;
683
+ /** Body of a car */
684
+ body?: Maybe<CarPremiumBody>;
685
+ /** Availability of a car */
686
+ availability?: Maybe<CarPremiumAvailability>;
687
+ /** Pricing of a car */
688
+ price?: Maybe<CarPremiumPrice>;
689
+ /** Drivetrain of a car */
690
+ drivetrain?: Maybe<CarPremiumDrivetrain>;
691
+ /** Performance of a car */
692
+ performance?: Maybe<CarPremiumPerformance>;
693
+ /** Range of a car */
694
+ range?: Maybe<CarPremiumRange>;
695
+ /** Efficiency of a car */
696
+ efficiency?: Maybe<CarPremiumEfficiency>;
697
+ /** Safety of a car */
698
+ safety?: Maybe<CarPremiumSafety>;
699
+ /** Media of a car */
700
+ media?: Maybe<CarPremiumMedia>;
701
+ /** Routing of a car */
702
+ routing?: Maybe<CarPremiumRouting>;
703
+ };
704
+ export declare type CarPremiumAvailability = {
705
+ /**
706
+ * Availability of car
707
+ *
708
+ * Values:
709
+ * - 0 = Car no longer for sale in any market/region
710
+ * - 1 = Car currently for sale in at least one market/region
711
+ * - 2 = Car expected in market from Date_From (estimated), pre-order open
712
+ * - 3 = Car expected in market from Date_From (estimated), pre-order unknown or not open
713
+ * - 12 = Concept car, nearing production and/or confirmed, pre-order open
714
+ * - 13 = Concept car, nearing production and/or confirmed, pre-order unknown or not open
715
+ * - 22 = Concept car, not close to production and/or unconfirmed, pre-order open
716
+ * - 23 = Concept car, not close to production and/or unconfirmed, pre-order unknown
717
+ * - 91 = Status uncertain, introduction date and/or pricing unclear
718
+ */
719
+ status?: Maybe<Scalars["Int"]>;
720
+ /** Date of introduction, mm-yyyy */
721
+ date_from?: Maybe<Scalars["String"]>;
722
+ /** Indicates if date from field is estimated */
723
+ date_from_is_estimated?: Maybe<Scalars["Boolean"]>;
724
+ /** Date last available, mm-yyyy */
725
+ date_to?: Maybe<Scalars["String"]>;
726
+ };
727
+ export declare type CarPremiumBattery = {
728
+ /** Usable battery capacity in kWh */
729
+ usable_kwh?: Maybe<Scalars["Float"]>;
730
+ /** Full battery capacity in kWh */
731
+ full_kwh?: Maybe<Scalars["Float"]>;
732
+ /** Indicates which battery fields are estimated */
733
+ estimated_fields?: Maybe<CarBatteryFieldEstimations>;
734
+ /** Battery thermal management system (active/passive, air/liquid) */
735
+ thermal_management_system?: Maybe<Scalars["String"]>;
736
+ /** Duration of battery warranty */
737
+ warranty_period?: Maybe<Scalars["Float"]>;
738
+ /** Mileage of battery warranty */
739
+ warranty_mileage?: Maybe<Scalars["Float"]>;
740
+ };
741
+ export declare type CarPremiumBody = {
742
+ /** Length in mm */
743
+ length?: Maybe<Scalars["Int"]>;
744
+ /** Width with folded mirrors in mm */
745
+ width?: Maybe<Scalars["Int"]>;
746
+ /** Width of vehicle in mm, including mirrors */
747
+ full_width?: Maybe<Scalars["Int"]>;
748
+ /** Height (average height for adjustable suspensions) in mm */
749
+ height?: Maybe<Scalars["Int"]>;
750
+ /** Indicates if length/width/height fields are estimations */
751
+ size_is_estimated?: Maybe<Scalars["Boolean"]>;
752
+ /** Wheelbase in mm */
753
+ wheelbase?: Maybe<Scalars["Int"]>;
754
+ /** Indicates if wheelbase field is estimated */
755
+ wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
756
+ /** Weight (unladen EU) in kg */
757
+ weight?: Maybe<Scalars["Int"]>;
758
+ /** Indicates if weight field is estimated */
759
+ weight_is_estimated?: Maybe<Scalars["Boolean"]>;
760
+ /** Maximum payload allowed for vehicle in kg */
761
+ weight_max_payload?: Maybe<Scalars["Int"]>;
762
+ /** Gross Vehicle Weight (GVWR) - (max allowed vehicle weight with payload) in kg */
763
+ max_gross_vehicle_weight?: Maybe<Scalars["Int"]>;
764
+ /** Standard luggage capacity in l */
765
+ boot_capacity?: Maybe<Scalars["Int"]>;
766
+ /** Storage capacity of front trunk/under the hood (frunk) */
767
+ boot_front_capacity?: Maybe<Scalars["Int"]>;
768
+ /** Maximum luggage capacity in l */
769
+ boot_capacity_max?: Maybe<Scalars["Int"]>;
770
+ /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation */
771
+ tow_hitch_compatible?: Maybe<Scalars["Boolean"]>;
772
+ /** Maximum unbraked towing weight in kg */
773
+ tow_weight_unbraked?: Maybe<Scalars["Int"]>;
774
+ /** Maximum braked towing weight in kg */
775
+ tow_weight_braked?: Maybe<Scalars["Int"]>;
776
+ /** Indicates if tow weight fields are estimations */
777
+ tow_weight_is_estimated?: Maybe<Scalars["Boolean"]>;
778
+ /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation */
779
+ tow_weight_vertical_load?: Maybe<Scalars["Int"]>;
780
+ /** Maximum load on roof of car in kg */
781
+ roof_load_max?: Maybe<Scalars["Int"]>;
782
+ /** Body type, listed in local naming convention where applicable */
783
+ body_type?: Maybe<Scalars["String"]>;
784
+ /** Segment, listed in local naming convention where applicable */
785
+ segment?: Maybe<Scalars["String"]>;
786
+ /** Number of seats */
787
+ seats?: Maybe<Scalars["Int"]>;
788
+ /** Indicates whether a car has roof rails as a standard */
789
+ has_roofrails?: Maybe<Scalars["Boolean"]>;
790
+ /** Turning circle of vehicle kerb-to-kerb */
791
+ turning_circle?: Maybe<Scalars["Float"]>;
792
+ /** Name of vehicle platform used for vehicle (often abbreviated to indicate group platforms) */
793
+ vehicle_platform?: Maybe<Scalars["String"]>;
794
+ /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform */
795
+ vehicle_platform_is_dedicated?: Maybe<Scalars["Boolean"]>;
796
+ /**
797
+ * Indicates whether a car has roof rails as a standard
798
+ * @deprecated In favor of has_roofrails
799
+ */
800
+ rooftrails?: Maybe<Scalars["Boolean"]>;
801
+ };
802
+ export declare type CarPremiumCharge = {
803
+ /** Location of charge port */
804
+ plug?: Maybe<CarPremiumChargePlug>;
805
+ /** Location of second charge port */
806
+ second_plug?: Maybe<CarPremiumChargeSecondPlug>;
807
+ /** The car standard charge */
808
+ standard?: Maybe<CarPremiumChargeStandardOBC>;
809
+ /** The car alternative charge */
810
+ alternative?: Maybe<CarPremiumChargeAlternativeOBC>;
811
+ /** The car option charge */
812
+ option?: Maybe<CarPremiumChargeOptionOBC>;
813
+ };
814
+ export declare type CarPremiumChargeAlternativeOBC = {
815
+ /** Maximum power OBC can accept to charge a battery (standard OBC) */
816
+ power?: Maybe<Scalars["Float"]>;
817
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
818
+ phases?: Maybe<Scalars["Int"]>;
819
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
820
+ phase_amperage?: Maybe<Scalars["Float"]>;
821
+ /** Minutes needed to charge from 0% to 100% (standard OBC) */
822
+ charge_time?: Maybe<Scalars["Int"]>;
823
+ /** Charging speed when charging at maximum power (standard OBC) */
824
+ charge_speed?: Maybe<Scalars["Int"]>;
825
+ /** Charging details for the standard OBC at several charging points */
826
+ table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
827
+ };
828
+ export declare type CarPremiumChargeOBCTable = {
829
+ /** Voltage between phase and neutral for this EVSE (phase voltage) */
830
+ evse_phase_voltage?: Maybe<Scalars["Int"]>;
831
+ /** Current per phase for this EVSE (phase current) */
832
+ evse_phase_amperage?: Maybe<Scalars["Int"]>;
833
+ /** Number of phases for this EVSE */
834
+ evse_phases?: Maybe<Scalars["Int"]>;
835
+ /** Voltage between phase and neutral used by standard OBC (phase voltage) */
836
+ charge_phase_voltage?: Maybe<Scalars["Int"]>;
837
+ /** Current per phase used by standard OBC (phase current) */
838
+ charge_phase_amperage?: Maybe<Scalars["Float"]>;
839
+ /** Number of phases used by standard OBC */
840
+ charge_phases?: Maybe<Scalars["Int"]>;
841
+ /** Power used by standard OBC (before OBC losses) */
842
+ charge_power?: Maybe<Scalars["Float"]>;
843
+ /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE) */
844
+ charge_time?: Maybe<Scalars["Int"]>;
845
+ /** Charging speed when charging at maximum power (standard OBC with this EVSE) */
846
+ charge_speed?: Maybe<Scalars["Int"]>;
847
+ };
848
+ export declare type CarPremiumChargeOptionOBC = {
849
+ /** Maximum power OBC can accept to charge a battery (standard OBC) */
850
+ power?: Maybe<Scalars["Float"]>;
851
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
852
+ phases?: Maybe<Scalars["Int"]>;
853
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
854
+ phase_amperage?: Maybe<Scalars["Float"]>;
855
+ /** Minutes needed to charge from 0% to 100% (standard OBC) */
856
+ charge_time?: Maybe<Scalars["Int"]>;
857
+ /** Charging speed when charging at maximum power (standard OBC) */
858
+ charge_speed?: Maybe<Scalars["Int"]>;
859
+ /** Charging details for the standard OBC at several charging points */
860
+ table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
861
+ };
862
+ export declare type CarPremiumChargePlug = {
863
+ /** Type of charge port on vehicle */
864
+ value?: Maybe<ConnectorType>;
865
+ /** Indicates if value is an estimate */
866
+ is_estimated?: Maybe<Scalars["Boolean"]>;
867
+ /** Location of charge port */
868
+ location?: Maybe<Scalars["String"]>;
869
+ };
870
+ export declare type CarPremiumChargePower = {
871
+ /** Maximum value */
872
+ max?: Maybe<Scalars["Float"]>;
873
+ /** Average value */
874
+ average?: Maybe<Scalars["Float"]>;
875
+ };
876
+ export declare type CarPremiumChargeSecondPlug = {
877
+ /** Location of charge port */
878
+ location?: Maybe<Scalars["String"]>;
879
+ /** Indicates if second charge port is optional */
880
+ is_optional?: Maybe<Scalars["Boolean"]>;
881
+ };
882
+ export declare type CarPremiumChargeStandardOBC = {
883
+ /** Maximum power OBC can accept to charge a battery (standard OBC) */
884
+ power?: Maybe<Scalars["Float"]>;
885
+ /** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
886
+ phases?: Maybe<Scalars["Int"]>;
887
+ /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
888
+ phase_amperage?: Maybe<Scalars["Float"]>;
889
+ /** Minutes needed to charge from 0% to 100% (standard OBC) */
890
+ charge_time?: Maybe<Scalars["Int"]>;
891
+ /** Charging speed when charging at maximum power (standard OBC) */
892
+ charge_speed?: Maybe<Scalars["Int"]>;
893
+ /** Indicates if Charge_Standard fields are estimated */
894
+ is_estimated?: Maybe<Scalars["Boolean"]>;
895
+ /** Charging details for the standard OBC at several charging points */
896
+ table?: Maybe<Array<Maybe<CarPremiumChargeOBCTable>>>;
897
+ };
898
+ export declare type CarPremiumDrivetrain = {
899
+ /** Type of drivetrain */
900
+ type?: Maybe<CarDrivetrain>;
901
+ /** Fuel type */
902
+ fuel?: Maybe<CarFuel>;
903
+ /** Propulsion type */
904
+ propulsion?: Maybe<CarPropulsion>;
905
+ /** Indicates if propulsion field is estimated */
906
+ propulsion_is_estimated?: Maybe<Scalars["Boolean"]>;
907
+ /** Maximum (combined) power output in kw */
908
+ power?: Maybe<Scalars["Int"]>;
909
+ /** Indicates if power field is estimated */
910
+ power_is_estimated?: Maybe<Scalars["Boolean"]>;
911
+ /** Maximum (combined) power output in horsepower (PS) */
912
+ power_hp?: Maybe<Scalars["Int"]>;
913
+ /** Maximum (combined) torque output in newton meter */
914
+ torque?: Maybe<Scalars["Int"]>;
915
+ /** Indicates if torque field is estimated */
916
+ torque_is_estimated?: Maybe<Scalars["Boolean"]>;
917
+ };
918
+ export declare type CarPremiumEfficiency = {
919
+ /** Rated efficiency in WLTP combined cycle */
920
+ wltp?: Maybe<CarPremiumEfficiencyWLTP>;
921
+ /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim) */
922
+ wltp_teh?: Maybe<CarPremiumEfficiencyWLTPTEH>;
923
+ /** Rated efficiency in NEDC combined cycle */
924
+ nedc?: Maybe<CarPremiumEfficiencyNEDC>;
925
+ /** Car efficiency based on RealRange */
926
+ real?: Maybe<CarPremiumEfficiencyReal>;
927
+ };
928
+ export declare type CarPremiumEfficiencyNEDC = {
929
+ /** Rated efficiency in NEDC combined cycle in kWh/100 km */
930
+ value?: Maybe<Scalars["Float"]>;
931
+ /** Rated efficiency in NEDC combined cycle presented in gas equivalent, in l/100 km */
932
+ fuel_equivalent?: Maybe<Scalars["Float"]>;
933
+ /** Rated vehicle efficiency in NEDC combined cycle (based on value) in kWh/100 km */
934
+ vehicle?: Maybe<Scalars["Float"]>;
935
+ /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent in l/100 km */
936
+ vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
937
+ /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated) in gr/km */
938
+ co2?: Maybe<Scalars["Int"]>;
939
+ };
940
+ export declare type CarPremiumEfficiencyReal = {
941
+ /** Car efficiency based on RealRange (useable battery/range) in kWh/100 km */
942
+ value?: Maybe<Scalars["Float"]>;
943
+ /** Car efficiency based on RealRange presented in gas equivalent, in l/100 km */
944
+ fuel_equivalent?: Maybe<Scalars["Float"]>;
945
+ /** Worst conditions are based on -10°C and use of heating */
946
+ worst?: Maybe<CarPremiumEfficiencyRealValue>;
947
+ /** Best conditions are based on 23°C and no use of A/C */
948
+ best?: Maybe<CarPremiumEfficiencyRealValue>;
949
+ };
950
+ export declare type CarPremiumEfficiencyRealValue = {
951
+ /** Estimated value on highway or express roads */
952
+ highway?: Maybe<Scalars["Float"]>;
953
+ /** Estimated value on city roads */
954
+ city?: Maybe<Scalars["Float"]>;
955
+ /** Estimated combined value */
956
+ combined?: Maybe<Scalars["Float"]>;
957
+ };
958
+ export declare type CarPremiumEfficiencyWLTP = {
959
+ /** Rated efficiency in WLTP combined cycle in kWh/100 km */
960
+ value?: Maybe<Scalars["Float"]>;
961
+ /** Rated efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km */
962
+ fuel_equivalent?: Maybe<Scalars["Float"]>;
963
+ /** Rated vehicle efficiency in WLTP combined cycle (based on value) in kWh/100 km */
964
+ vehicle?: Maybe<Scalars["Float"]>;
965
+ /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent, in l/100 km */
966
+ vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
967
+ /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated) in gr/km */
968
+ co2?: Maybe<Scalars["Int"]>;
969
+ };
970
+ export declare type CarPremiumEfficiencyWLTPTEH = {
971
+ /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim) */
972
+ value?: Maybe<Scalars["Float"]>;
973
+ /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km */
974
+ fuel_equivalent?: Maybe<Scalars["Float"]>;
975
+ /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value) in kWh/100 km */
976
+ vehicle?: Maybe<Scalars["Float"]>;
977
+ /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent, in l/100 km */
978
+ vehicle_fuel_equivalent?: Maybe<Scalars["Float"]>;
979
+ /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated) in gr/km */
980
+ co2?: Maybe<Scalars["Int"]>;
981
+ };
982
+ export declare type CarPremiumFastCharge = {
983
+ /** Location of charge port */
984
+ plug?: Maybe<CarPremiumChargePlug>;
985
+ /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
986
+ power?: Maybe<CarPremiumChargePower>;
987
+ /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
988
+ charge_time?: Maybe<Scalars["Float"]>;
989
+ /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger) */
990
+ charge_speed?: Maybe<Scalars["Float"]>;
991
+ /** Indicates if fast charge is optional in some markets/regions */
992
+ is_optional?: Maybe<Scalars["Boolean"]>;
993
+ /** Indicates what fields are estimated */
994
+ is_estimated?: Maybe<Scalars["Boolean"]>;
995
+ /** Charging details for fast charging */
996
+ table?: Maybe<Array<Maybe<CarPremiumFastChargeTable>>>;
997
+ };
998
+ export declare type CarPremiumFastChargeTable = {
999
+ /** Charging details for fast charging (format: ChargerPlug-ChargerPower-AC/DC) */
1000
+ format?: Maybe<Scalars["String"]>;
1001
+ /** Fast charge power */
1002
+ power?: Maybe<CarPremiumChargePower>;
1003
+ /** Minutes needed to charge from 10% to 80% (optimal conditions) */
1004
+ charge_time?: Maybe<Scalars["Int"]>;
1005
+ /** Charging speed during fast charging from 10% to 80% (optimal conditions) */
1006
+ charge_speed?: Maybe<Scalars["Int"]>;
1007
+ /** Indicates if maximum power during fast charging is limited by the vehicle */
1008
+ is_limited?: Maybe<Scalars["Boolean"]>;
1009
+ /** Indicates if average power during fast charging is limited by the vehicle */
1010
+ average_is_limited?: Maybe<Scalars["Boolean"]>;
1011
+ };
1012
+ export declare type CarPremiumMedia = {
1013
+ /** URL to detail page on EV database */
1014
+ evdb_details_url?: Maybe<Scalars["String"]>;
1015
+ /** Latest image */
1016
+ image?: Maybe<CarImage>;
1017
+ /** Latest maker logo */
1018
+ brand?: Maybe<CarImage>;
1019
+ /** All images */
1020
+ image_list?: Maybe<Array<Maybe<CarImage>>>;
1021
+ /** Latest video */
1022
+ video?: Maybe<CarVideo>;
1023
+ /** All videos */
1024
+ video_list?: Maybe<Array<Maybe<CarVideo>>>;
1025
+ /**
1026
+ * URL to detail page on EV database
1027
+ * @deprecated Will be removed in the future. Please use evdb_details_url
1028
+ */
1029
+ evdb_detail_url?: Maybe<Scalars["String"]>;
1030
+ };
1031
+ export declare type CarPremiumNaming = {
1032
+ /** Car manufacturer name */
1033
+ make?: Maybe<Scalars["String"]>;
1034
+ /** Car model name */
1035
+ model?: Maybe<Scalars["String"]>;
1036
+ /** Version, edition or submodel of car */
1037
+ version?: Maybe<Scalars["String"]>;
1038
+ /** Another submodel level of car */
1039
+ edition?: Maybe<Scalars["String"]>;
1040
+ /** 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 */
1041
+ chargetrip_version?: Maybe<Scalars["String"]>;
1042
+ };
1043
+ export declare type CarPremiumPerformance = {
1044
+ /** Acceleration 0-100 km/h in seconds */
1045
+ acceleration?: Maybe<Scalars["Float"]>;
1046
+ /** Indicates if acceleration field is estimated */
1047
+ acceleration_is_estimated?: Maybe<Scalars["Boolean"]>;
1048
+ /** Top speed of car in km/h */
1049
+ top_speed?: Maybe<Scalars["Int"]>;
1050
+ /** Indicates if top_speed field is estimated */
1051
+ top_speed_is_estimated?: Maybe<Scalars["Boolean"]>;
1052
+ };
1053
+ export declare type CarPremiumPrice = {
1054
+ /** Starting price for German market */
1055
+ de?: Maybe<CarPremiumPriceValue>;
1056
+ /** Starting price for Dutch market */
1057
+ nl?: Maybe<CarPremiumPriceValue>;
1058
+ /** Starting price for British market */
1059
+ uk?: Maybe<CarPremiumPriceValueWithGrant>;
1060
+ };
1061
+ export declare type CarPremiumPriceValue = {
1062
+ /** Starting price for local market */
1063
+ value?: Maybe<Scalars["Int"]>;
1064
+ /** Currency name for local market */
1065
+ currency?: Maybe<Scalars["String"]>;
1066
+ /** Indicates if price value is based on estimates */
1067
+ is_estimated?: Maybe<Scalars["Boolean"]>;
1068
+ /**
1069
+ * Indicates if price value is based on estimates
1070
+ * @deprecated In favor of is_estimated
1071
+ */
1072
+ estimated?: Maybe<Scalars["Boolean"]>;
1073
+ };
1074
+ export declare type CarPremiumPriceValueWithGrant = {
1075
+ /** Starting price for local market */
1076
+ value?: Maybe<Scalars["Int"]>;
1077
+ /** Currency name for local market */
1078
+ currency?: Maybe<Scalars["String"]>;
1079
+ /** Indicates if price value is based on estimates */
1080
+ is_estimated?: Maybe<Scalars["Boolean"]>;
1081
+ /** Grant is applied to value */
1082
+ grant_applied?: Maybe<Scalars["Int"]>;
1083
+ /**
1084
+ * Indicates if price value is based on estimates
1085
+ * @deprecated In favor of is_estimated
1086
+ */
1087
+ estimated?: Maybe<Scalars["Boolean"]>;
1088
+ };
1089
+ export declare type CarPremiumRange = {
1090
+ /** Rated range in WLTP combined cycle (NULL if not WLTP rated) in km */
1091
+ wltp?: Maybe<Scalars["Int"]>;
1092
+ /** Indicates if WLTP range is estimated (NULL if not WLTP rated) */
1093
+ wltp_is_estimated?: Maybe<Scalars["Boolean"]>;
1094
+ /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated) */
1095
+ wltp_teh?: Maybe<Scalars["Int"]>;
1096
+ /** Rated range in NEDC combined cycle (NULL if not NEDC rated) in km */
1097
+ nedc?: Maybe<Scalars["Int"]>;
1098
+ /** Indicates if NEDC range is estimated (NULL if not NEDC rated) */
1099
+ nedc_is_estimated?: Maybe<Scalars["Boolean"]>;
1100
+ /** Index range in EV Database RealRange model in km */
1101
+ real?: Maybe<Scalars["Int"]>;
1102
+ /** Indicates if real is estimated */
1103
+ real_is_estimated?: Maybe<Scalars["Boolean"]>;
1104
+ /** Worst conditions are based on -10°C and use of heating */
1105
+ worst?: Maybe<CarPremiumRangeValue>;
1106
+ /** Best conditions are based on 23°C and no use of A/C */
1107
+ best?: Maybe<CarPremiumRangeValue>;
1108
+ /** 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. */
1109
+ chargetrip_range?: Maybe<ChargetripRange>;
1110
+ };
1111
+ export declare type CarPremiumRangeValue = {
1112
+ /** Estimated value on highway or express roads */
1113
+ highway?: Maybe<Scalars["Int"]>;
1114
+ /** Estimated value on city roads */
1115
+ city?: Maybe<Scalars["Int"]>;
1116
+ /** Estimated combined value */
1117
+ combined?: Maybe<Scalars["Int"]>;
1118
+ };
1119
+ export declare type CarPremiumRouting = {
1120
+ /**
1121
+ * EVs that support fast charging have a minimum charging speed of 43 Kwh.
1122
+ * EVs without support for fast charging used in a newRoute mutation will return an error.
1123
+ */
1124
+ fast_charging_support?: Maybe<Scalars["Boolean"]>;
1125
+ /** Drag coefficient */
1126
+ drag_coefficient?: Maybe<Scalars["Float"]>;
1127
+ /** Tire pressure recommended by manufacturer */
1128
+ tire_pressure?: Maybe<Scalars["Float"]>;
1129
+ /** Extra consumption model */
1130
+ consumption?: Maybe<CarPremiumRoutingConsumption>;
1131
+ /** Amount of petrol that an equivalent petrol car would consume in l/100 km */
1132
+ petrol_consumption?: Maybe<Scalars["Float"]>;
1133
+ };
1134
+ export declare type CarPremiumRoutingConsumption = {
1135
+ /** Consumption, in kWh, of the auxiliaries */
1136
+ aux?: Maybe<CarPremiumRoutingConsumptionValue>;
1137
+ /** Consumption, in kWh, of the battery management system */
1138
+ bms?: Maybe<CarPremiumRoutingConsumptionValue>;
1139
+ /** Consumption, in kWh, of the car in idle mode */
1140
+ idle?: Maybe<CarPremiumRoutingConsumptionValue>;
1141
+ };
1142
+ export declare type CarPremiumRoutingConsumptionValue = {
1143
+ /** Best (lowest) consumption in summer */
1144
+ best?: Maybe<Scalars["Float"]>;
1145
+ /** Best (lowest) consumption in winter */
1146
+ worst?: Maybe<Scalars["Float"]>;
1147
+ };
1148
+ export declare type CarPremiumSafety = {
1149
+ /** Number of seats equipped with ISOFIX */
1150
+ isofix_seats?: Maybe<Scalars["Int"]>;
1151
+ /** EuroNCAP results */
1152
+ euro_ncap?: Maybe<CarPremiumSafetyEuroNcap>;
1153
+ };
1154
+ export declare type CarPremiumSafetyEuroNcap = {
1155
+ /** EuroNCAP rating (out of 5 stars) */
1156
+ rating?: Maybe<Scalars["Int"]>;
1157
+ /** EuroNCAP year of rating */
1158
+ year?: Maybe<Scalars["Int"]>;
1159
+ /** EuroNCAP rating of adult protection (out of 100%) */
1160
+ adult?: Maybe<Scalars["Int"]>;
1161
+ /** EuroNCAP rating of child protection (out of 100%) */
1162
+ child?: Maybe<Scalars["Int"]>;
1163
+ /** EuroNCAP rating of vulnerable road users (out of 100%) */
1164
+ vru?: Maybe<Scalars["Int"]>;
1165
+ /** EuroNCAP rating of safety assists (out of 100%) */
1166
+ sa?: Maybe<Scalars["Int"]>;
1167
+ };
1168
+ /** Propulsion */
1169
+ export declare enum CarPropulsion {
1170
+ /** All-wheel drive car */
1171
+ AWD = "AWD",
1172
+ /** Front-wheel drive car */
1173
+ FRONT = "Front",
1174
+ /** Rear-wheel drive car */
1175
+ REAR = "Rear"
1176
+ }
1177
+ export declare type CarRange = {
1178
+ /** Index range in EV Database RealRange model in km */
1179
+ real?: Maybe<Scalars["Int"]>;
1180
+ /** Indicates if real is estimated */
1181
+ real_is_estimated?: Maybe<Scalars["Boolean"]>;
1182
+ /** Worst conditions are based on -10°C and use of heating */
1183
+ worst?: Maybe<CarRangeValue>;
1184
+ /** Best conditions are based on 23°C and no use of A/C */
1185
+ best?: Maybe<CarRangeValue>;
1186
+ /** 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 */
1187
+ chargetrip_range?: Maybe<ChargetripRange>;
1188
+ /** @deprecated You will receive null values */
1189
+ wltp?: Maybe<Scalars["Float"]>;
1190
+ };
1191
+ export declare type CarRangeValue = {
1192
+ /** Estimated value on the highway or express roads */
1193
+ highway?: Maybe<Scalars["Int"]>;
1194
+ /** Estimated value on the cities road */
1195
+ city?: Maybe<Scalars["Int"]>;
1196
+ /** Estimated combined value */
1197
+ combined?: Maybe<Scalars["Int"]>;
1198
+ };
1199
+ export declare type CarRouting = {
1200
+ /**
1201
+ * EVs that support fast charging have a minimum charging speed of 43 Kwh.
1202
+ * EVs without support for fast charging used in a newRoute mutation will return an error.
1203
+ */
1204
+ fast_charging_support?: Maybe<Scalars["Boolean"]>;
1205
+ };
1206
+ /** Status of a car */
1207
+ export declare enum CarStatus {
1208
+ /** Was just imported */
1209
+ NEW = "new",
1210
+ /** Is being reviewed by a human operator */
1211
+ REVIEW = "review",
1212
+ /** Is public and can be used by a customer */
1213
+ PUBLIC = "public",
1214
+ /** Is removed and can not be used */
1215
+ REMOVED = "removed"
1216
+ }
1217
+ export declare type CarVideo = {
1218
+ /** Video id */
1219
+ id?: Maybe<Scalars["ID"]>;
1220
+ /** Full path URL of a video */
1221
+ url?: Maybe<Scalars["String"]>;
1222
+ };
1223
+ /** Charging mode used at charging stations */
1224
+ export declare enum ChargeMode {
1225
+ /** 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 */
1226
+ OPTIMIZE_TRAVEL_TIME = "OPTIMIZE_TRAVEL_TIME",
1227
+ /** Charge to the maximum capacity at every charging stop. The default maximum charging capacity is 80% */
1228
+ ALWAYS_TO_MAX_CHARGE = "ALWAYS_TO_MAX_CHARGE"
1229
+ }
1230
+ /** A groupped representation of EVSEs */
1231
+ export declare type Charger = {
1232
+ /** Type of charger */
1233
+ standard?: Maybe<ConnectorType>;
1234
+ /** Power of a charger */
1235
+ power?: Maybe<Scalars["Float"]>;
1236
+ /** Price of a charger */
1237
+ price?: Maybe<Scalars["String"]>;
1238
+ /** Charging speed */
1239
+ speed?: Maybe<StationSpeedType>;
1240
+ /** Statuses of all the EVSEs grouped in a charger */
1241
+ status?: Maybe<ChargerStatuses>;
1242
+ /** Total number of EVSEs grouped in a charger */
1243
+ total?: Maybe<Scalars["Int"]>;
1244
+ };
1245
+ export declare enum ChargerStatus {
1246
+ /** The charger is free */
1247
+ FREE = "free",
1248
+ /** The charger is occupied/busy */
1249
+ BUSY = "busy",
1250
+ /** The charger is unknown */
1251
+ UNKNOWN = "unknown",
1252
+ /** The charger has an error */
1253
+ ERROR = "error"
1254
+ }
1255
+ /** Groupping by status of the chargers */
1256
+ export declare type ChargerStatuses = {
1257
+ /** How many are free */
1258
+ free?: Maybe<Scalars["Int"]>;
1259
+ /** How many are busy */
1260
+ busy?: Maybe<Scalars["Int"]>;
1261
+ /** How many are unknown */
1262
+ unknown?: Maybe<Scalars["Int"]>;
1263
+ /** How many are not available */
1264
+ error?: Maybe<Scalars["Int"]>;
1265
+ };
1266
+ /** 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 */
1267
+ export declare type ChargetripRange = {
1268
+ /** Worst conditions are based on -10°C and use of heating */
1269
+ worst?: Maybe<Scalars["Float"]>;
1270
+ /** Best conditions are based on 23°C and no use of A/C */
1271
+ best?: Maybe<Scalars["Float"]>;
1272
+ };
1273
+ /** Connector data which extends OCPI Connector */
1274
+ export declare type Connector = {
1275
+ /** 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. */
1276
+ id?: Maybe<Scalars["String"]>;
1277
+ /** Standard of an installed connector. */
1278
+ standard?: Maybe<ConnectorType>;
1279
+ /** Format (socket/cable) of an installed connector. */
1280
+ format?: Maybe<OCPIConnectorFormat>;
1281
+ /** Type of power of an installed connector. */
1282
+ power_type?: Maybe<OCPIPowerType>;
1283
+ /** 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. */
1284
+ max_voltage?: Maybe<Scalars["Int"]>;
1285
+ /** Maximum amperage of a connector, in ampere [A]. */
1286
+ max_amperage?: Maybe<Scalars["Int"]>;
1287
+ /**
1288
+ * Maximum electric power that can be delivered by a connector, in watt [W]. When the maximum electric power is lower than the calculated value from voltage and amperage, this value should be set.
1289
+ * For example: A DC Charge Point which can deliver up to 920V and up to 400A can be limited to a maximum of 150kW. Depending on the car, it may supply maximum voltage or current, but not both at the same time.
1290
+ * For AC Charge Points, the amount of phases used can also have influence on the maximum power.
1291
+ */
1292
+ max_electric_power?: Maybe<Scalars["Int"]>;
1293
+ /** Maximum electric power in kW */
1294
+ power?: Maybe<Scalars["Float"]>;
1295
+ /**
1296
+ * 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.
1297
+ * 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.
1298
+ * For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff.
1299
+ */
1300
+ tariff_ids?: Maybe<Array<Maybe<Scalars["String"]>>>;
1301
+ /** URL to an operator’s terms and conditions. */
1302
+ terms_and_conditions?: Maybe<Scalars["String"]>;
1303
+ /** Timestamp when a connector was last updated (or created). */
1304
+ last_updated?: Maybe<Scalars["DateTime"]>;
1305
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
1306
+ properties?: Maybe<Scalars["JSON"]>;
1307
+ /** List of valid charging tariffs */
1308
+ tariff?: Maybe<Array<Maybe<OCPITariff>>>;
1309
+ /** Charging prices, only available when using the EcoMovement database */
1310
+ pricing?: Maybe<Pricing>;
1311
+ };
1312
+ /** The socket or plug standard of the charging point. */
1313
+ export declare enum ConnectorType {
1314
+ /** The connector type is CHAdeMO, DC */
1315
+ CHADEMO = "CHADEMO",
1316
+ /** Standard/domestic household, type "A", NEMA 1-15, 2 pins */
1317
+ DOMESTIC_A = "DOMESTIC_A",
1318
+ /** Standard/domestic household, type "B", NEMA 5-15, 3 pins */
1319
+ DOMESTIC_B = "DOMESTIC_B",
1320
+ /** Standard/domestic household, type "C", CEE 7/17, 2 pins */
1321
+ DOMESTIC_C = "DOMESTIC_C",
1322
+ /** Standard/domestic household, type "D", 3 pins */
1323
+ DOMESTIC_D = "DOMESTIC_D",
1324
+ /** Standard/domestic household, type "E", CEE 7/5 3 pins */
1325
+ DOMESTIC_E = "DOMESTIC_E",
1326
+ /** Standard/domestic household, type "F", CEE 7/4, Schuko, 3 pins */
1327
+ DOMESTIC_F = "DOMESTIC_F",
1328
+ /** Standard/domestic household, type "G", BS 1363, Commonwealth, 3 pins */
1329
+ DOMESTIC_G = "DOMESTIC_G",
1330
+ /** Standard/domestic household, type "H", SI-32, 3 pins */
1331
+ DOMESTIC_H = "DOMESTIC_H",
1332
+ /** Standard/domestic household, type "I", AS 3112, 3 pins */
1333
+ DOMESTIC_I = "DOMESTIC_I",
1334
+ /** Standard/domestic household, type "J", SEV 1011, 3 pins */
1335
+ DOMESTIC_J = "DOMESTIC_J",
1336
+ /** Standard/domestic household, type "K", DS 60884-2-D1, 3 pins */
1337
+ DOMESTIC_K = "DOMESTIC_K",
1338
+ /** Standard/domestic household, type "L", CEI 23-16-VII, 3 pins */
1339
+ DOMESTIC_L = "DOMESTIC_L",
1340
+ /** Standard/Domestic household, type "M", BS 546, 3 pins */
1341
+ DOMESTIC_M = "DOMESTIC_M",
1342
+ /** Standard/Domestic household, type "N", NBR 14136, 3 pins */
1343
+ DOMESTIC_N = "DOMESTIC_N",
1344
+ /** Standard/Domestic household, type "O", TIS 166-2549, 3 pins */
1345
+ DOMESTIC_O = "DOMESTIC_O",
1346
+ /** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue) */
1347
+ IEC_60309_2_SINGLE_16 = "IEC_60309_2_single_16",
1348
+ /** IEC 60309-2 Industrial connector three phase 16 amperes (usually red) */
1349
+ IEC_60309_2_THREE_16 = "IEC_60309_2_three_16",
1350
+ /** IEC 60309-2 Industrial connector three phase 32 amperes (usually red) */
1351
+ IEC_60309_2_THREE_32 = "IEC_60309_2_three_32",
1352
+ /** IEC 60309-2 Industrial connector three phase 64 amperes (usually red) */
1353
+ IEC_60309_2_THREE_64 = "IEC_60309_2_three_64",
1354
+ /** IEC 62196 Type 1 "SAE J1772" */
1355
+ IEC_62196_T1 = "IEC_62196_T1",
1356
+ /** Combo Type 1 based, DC */
1357
+ IEC_62196_T1_COMBO = "IEC_62196_T1_COMBO",
1358
+ /** IEC 62196 Type 2 "Mennekes" */
1359
+ IEC_62196_T2 = "IEC_62196_T2",
1360
+ /** Combo Type 2 based, DC */
1361
+ IEC_62196_T2_COMBO = "IEC_62196_T2_COMBO",
1362
+ /** IEC 62196 Type 3A */
1363
+ IEC_62196_T3A = "IEC_62196_T3A",
1364
+ /** IEC 62196 Type 3C "Scame" */
1365
+ IEC_62196_T3C = "IEC_62196_T3C",
1366
+ /** On-board bottom-up-pantograph typically for bus charging */
1367
+ PANTOGRAPH_BOTTOM_UP = "PANTOGRAPH_BOTTOM_UP",
1368
+ /** Off-board top-down-pantograph typically for bus charging */
1369
+ PANTOGRAPH_TOP_DOWN = "PANTOGRAPH_TOP_DOWN",
1370
+ /** Tesla connector "Roadster"-type (round, 4 pins) */
1371
+ TESLA_R = "TESLA_R",
1372
+ /** Tesla connector "Model-S"-type (oval, 5 pins) */
1373
+ TESLA_S = "TESLA_S",
1374
+ /** The connector type is GB_T (Chinese standard), DC */
1375
+ GB_T = "GB_T",
1376
+ /** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */
1377
+ CHAOJI = "CHAOJI",
1378
+ /** The connector type is NEMA 5-20, 3 pins */
1379
+ NEMA_5_20 = "NEMA_5_20",
1380
+ /** The connector type is NEMA 6-30, 3 pins */
1381
+ NEMA_6_30 = "NEMA_6_30",
1382
+ /** The connector type is NEMA 6-50, 3 pins */
1383
+ NEMA_6_50 = "NEMA_6_50",
1384
+ /** The connector type is NEMA 10-30, 3 pins */
1385
+ NEMA_10_30 = "NEMA_10_30",
1386
+ /** The connector type is NEMA 10-50, 3 pins */
1387
+ NEMA_10_50 = "NEMA_10_50",
1388
+ /** The connector type is NEMA 14-30, 3 pins, rating of 30 A */
1389
+ NEMA_14_30 = "NEMA_14_30",
1390
+ /** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
1391
+ NEMA_14_50 = "NEMA_14_50"
1392
+ }
1393
+ /** The complete contact information */
1394
+ export declare type Contact = {
1395
+ /** The phone number in international format */
1396
+ phone?: Maybe<Scalars["String"]>;
1397
+ /** The email address */
1398
+ email?: Maybe<Scalars["String"]>;
1399
+ /** The absolute URL of the website */
1400
+ website?: Maybe<Scalars["String"]>;
1401
+ /** The absolute URL of the facebook profile page */
1402
+ facebook?: Maybe<Scalars["String"]>;
1403
+ /** The absolute URL of the twitter profile page */
1404
+ twitter?: Maybe<Scalars["String"]>;
1405
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
1406
+ properties?: Maybe<Scalars["JSON"]>;
1407
+ };
1408
+ /** ISO-3166 alpha-2 country codes */
1409
+ export declare enum CountryCodeAlpha2 {
1410
+ AD = "AD",
1411
+ AE = "AE",
1412
+ AF = "AF",
1413
+ AG = "AG",
1414
+ AI = "AI",
1415
+ AL = "AL",
1416
+ AM = "AM",
1417
+ AN = "AN",
1418
+ AO = "AO",
1419
+ AQ = "AQ",
1420
+ AR = "AR",
1421
+ AS = "AS",
1422
+ AT = "AT",
1423
+ AU = "AU",
1424
+ AW = "AW",
1425
+ AX = "AX",
1426
+ AZ = "AZ",
1427
+ BA = "BA",
1428
+ BB = "BB",
1429
+ BD = "BD",
1430
+ BE = "BE",
1431
+ BF = "BF",
1432
+ BG = "BG",
1433
+ BH = "BH",
1434
+ BI = "BI",
1435
+ BJ = "BJ",
1436
+ BM = "BM",
1437
+ BN = "BN",
1438
+ BO = "BO",
1439
+ BR = "BR",
1440
+ BS = "BS",
1441
+ BT = "BT",
1442
+ BV = "BV",
1443
+ BW = "BW",
1444
+ BY = "BY",
1445
+ BZ = "BZ",
1446
+ CA = "CA",
1447
+ CC = "CC",
1448
+ CD = "CD",
1449
+ CF = "CF",
1450
+ CG = "CG",
1451
+ CH = "CH",
1452
+ CI = "CI",
1453
+ CK = "CK",
1454
+ CL = "CL",
1455
+ CM = "CM",
1456
+ CN = "CN",
1457
+ CO = "CO",
1458
+ CR = "CR",
1459
+ CS = "CS",
1460
+ CU = "CU",
1461
+ CV = "CV",
1462
+ CX = "CX",
1463
+ CY = "CY",
1464
+ CZ = "CZ",
1465
+ DE = "DE",
1466
+ DJ = "DJ",
1467
+ DK = "DK",
1468
+ DM = "DM",
1469
+ DO = "DO",
1470
+ DZ = "DZ",
1471
+ EC = "EC",
1472
+ EE = "EE",
1473
+ EG = "EG",
1474
+ EH = "EH",
1475
+ ER = "ER",
1476
+ ES = "ES",
1477
+ ET = "ET",
1478
+ FI = "FI",
1479
+ FJ = "FJ",
1480
+ FK = "FK",
1481
+ FM = "FM",
1482
+ FO = "FO",
1483
+ FR = "FR",
1484
+ GA = "GA",
1485
+ GB = "GB",
1486
+ GD = "GD",
1487
+ GE = "GE",
1488
+ GF = "GF",
1489
+ GH = "GH",
1490
+ GI = "GI",
1491
+ GL = "GL",
1492
+ GM = "GM",
1493
+ GN = "GN",
1494
+ GP = "GP",
1495
+ GQ = "GQ",
1496
+ GR = "GR",
1497
+ GS = "GS",
1498
+ GT = "GT",
1499
+ GU = "GU",
1500
+ GW = "GW",
1501
+ GY = "GY",
1502
+ HK = "HK",
1503
+ HM = "HM",
1504
+ HN = "HN",
1505
+ HR = "HR",
1506
+ HT = "HT",
1507
+ HU = "HU",
1508
+ ID = "ID",
1509
+ IE = "IE",
1510
+ IL = "IL",
1511
+ IN = "IN",
1512
+ IO = "IO",
1513
+ IQ = "IQ",
1514
+ IR = "IR",
1515
+ IS = "IS",
1516
+ IT = "IT",
1517
+ JM = "JM",
1518
+ JO = "JO",
1519
+ JP = "JP",
1520
+ KE = "KE",
1521
+ KG = "KG",
1522
+ KH = "KH",
1523
+ KI = "KI",
1524
+ KM = "KM",
1525
+ KN = "KN",
1526
+ KP = "KP",
1527
+ KR = "KR",
1528
+ KW = "KW",
1529
+ KY = "KY",
1530
+ KZ = "KZ",
1531
+ LA = "LA",
1532
+ LB = "LB",
1533
+ LC = "LC",
1534
+ LI = "LI",
1535
+ LK = "LK",
1536
+ LR = "LR",
1537
+ LS = "LS",
1538
+ LT = "LT",
1539
+ LU = "LU",
1540
+ LV = "LV",
1541
+ LY = "LY",
1542
+ MA = "MA",
1543
+ MC = "MC",
1544
+ MD = "MD",
1545
+ ME = "ME",
1546
+ MF = "MF",
1547
+ MG = "MG",
1548
+ MH = "MH",
1549
+ MK = "MK",
1550
+ ML = "ML",
1551
+ MM = "MM",
1552
+ MN = "MN",
1553
+ MO = "MO",
1554
+ MP = "MP",
1555
+ MQ = "MQ",
1556
+ MR = "MR",
1557
+ MS = "MS",
1558
+ MT = "MT",
1559
+ MU = "MU",
1560
+ MV = "MV",
1561
+ MW = "MW",
1562
+ MX = "MX",
1563
+ MY = "MY",
1564
+ MZ = "MZ",
1565
+ NA = "NA",
1566
+ NC = "NC",
1567
+ NE = "NE",
1568
+ NF = "NF",
1569
+ NG = "NG",
1570
+ NI = "NI",
1571
+ NL = "NL",
1572
+ NO = "NO",
1573
+ NP = "NP",
1574
+ NR = "NR",
1575
+ NU = "NU",
1576
+ NZ = "NZ",
1577
+ OM = "OM",
1578
+ PA = "PA",
1579
+ PE = "PE",
1580
+ PF = "PF",
1581
+ PG = "PG",
1582
+ PH = "PH",
1583
+ PK = "PK",
1584
+ PL = "PL",
1585
+ PM = "PM",
1586
+ PN = "PN",
1587
+ PR = "PR",
1588
+ PS = "PS",
1589
+ PT = "PT",
1590
+ PW = "PW",
1591
+ PY = "PY",
1592
+ QA = "QA",
1593
+ RE = "RE",
1594
+ RKS = "RKS",
1595
+ RO = "RO",
1596
+ RS = "RS",
1597
+ RU = "RU",
1598
+ RW = "RW",
1599
+ SA = "SA",
1600
+ SB = "SB",
1601
+ SC = "SC",
1602
+ SD = "SD",
1603
+ SE = "SE",
1604
+ SG = "SG",
1605
+ SH = "SH",
1606
+ SI = "SI",
1607
+ SJ = "SJ",
1608
+ SK = "SK",
1609
+ SL = "SL",
1610
+ SM = "SM",
1611
+ SN = "SN",
1612
+ SO = "SO",
1613
+ SR = "SR",
1614
+ ST = "ST",
1615
+ SV = "SV",
1616
+ SX = "SX",
1617
+ SY = "SY",
1618
+ SZ = "SZ",
1619
+ TC = "TC",
1620
+ TD = "TD",
1621
+ TF = "TF",
1622
+ TG = "TG",
1623
+ TH = "TH",
1624
+ TJ = "TJ",
1625
+ TK = "TK",
1626
+ TL = "TL",
1627
+ TM = "TM",
1628
+ TN = "TN",
1629
+ TO = "TO",
1630
+ TR = "TR",
1631
+ TT = "TT",
1632
+ TV = "TV",
1633
+ TW = "TW",
1634
+ TZ = "TZ",
1635
+ UA = "UA",
1636
+ UG = "UG",
1637
+ UM = "UM",
1638
+ US = "US",
1639
+ UY = "UY",
1640
+ UZ = "UZ",
1641
+ VA = "VA",
1642
+ VC = "VC"
1643
+ }
1644
+ /** EVSE data which extends OCPI EVSE */
1645
+ export declare type EVSE = {
1646
+ /**
1647
+ * 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.
1648
+ * This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
1649
+ */
1650
+ uid?: Maybe<Scalars["String"]>;
1651
+ /** 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. */
1652
+ evse_id?: Maybe<Scalars["String"]>;
1653
+ /** Indicates the current status of an EVSE. */
1654
+ status?: Maybe<OCPIStatus>;
1655
+ /** Indicates a planned status update of a nEVSE. */
1656
+ status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;
1657
+ /** List of functionalities that an EVSE is capable of. */
1658
+ capabilities?: Maybe<Array<Maybe<OCPICapability>>>;
1659
+ /** List of available connectors on an EVSE. */
1660
+ connectors?: Maybe<Array<Maybe<Connector>>>;
1661
+ /** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */
1662
+ floor_level?: Maybe<Scalars["String"]>;
1663
+ /** Coordinates of a EVSE. */
1664
+ coordinates?: Maybe<OCPIGeoLocation>;
1665
+ /** A number/string printed on the outside of an EVSE for visual identification. */
1666
+ physical_reference?: Maybe<Scalars["String"]>;
1667
+ /** Restrictions that apply to a parking spot. */
1668
+ parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;
1669
+ /** Links to images related to an EVSE such as photos or logos. */
1670
+ images?: Maybe<Array<Maybe<OCPIImage>>>;
1671
+ /** Timestamp when this EVSE or one of its Connectors was last updated (or created). */
1672
+ last_updated?: Maybe<Scalars["DateTime"]>;
1673
+ /** Indicates if parking is free or paid. */
1674
+ parking_cost?: Maybe<ParkingCost>;
1675
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
1676
+ properties?: Maybe<Scalars["JSON"]>;
1677
+ };
1678
+ /** A GeoJSON Feature<Point> */
1679
+ export declare type FeaturePoint = {
1680
+ /** Feature ID */
1681
+ id?: Maybe<Scalars["String"]>;
1682
+ /** Feature type */
1683
+ type: FeatureType;
1684
+ /** Geometry of the feature */
1685
+ geometry: Point;
1686
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
1687
+ properties?: Maybe<Scalars["JSON"]>;
1688
+ };
1689
+ /** A GeoJSON Feature<Point> input */
1690
+ export declare type FeaturePointInput = {
1691
+ /** The feature ID */
1692
+ id?: Maybe<Scalars["String"]>;
1693
+ /** Feature type */
1694
+ type: FeatureType;
1695
+ /** Geometry of the feature */
1696
+ geometry: PointInput;
1697
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
1698
+ properties?: Maybe<Scalars["JSON"]>;
1699
+ };
1700
+ /** GeoJSON Feature type */
1701
+ export declare enum FeatureType {
1702
+ FEATURE = "Feature"
1703
+ }
1704
+ /** Types of a leg */
1705
+ export declare enum LegType {
1706
+ /** This leg ends at a charging station and the car must recharge */
1707
+ STATION = "station",
1708
+ /** This leg ends at a via charging station and the car must recharge */
1709
+ STATIONVIA = "stationVia",
1710
+ /** This leg ends at a via location */
1711
+ VIA = "via",
1712
+ /** This leg ends at the destination, and is the last leg of the route */
1713
+ FINAL = "final",
1714
+ /** This leg ends at the destination which is a charging station, and is the last leg of the route */
1715
+ STATIONFINAL = "stationFinal"
1716
+ }
1717
+ /** Preferred language for the mapping */
1718
+ export declare enum MappingLanguage {
1719
+ EN = "en"
1720
+ }
1721
+ /** Navigation service providers available */
1722
+ export declare enum MappingProvider {
1723
+ /** Mapbox Navigation */
1724
+ MAPBOXV5 = "MapboxV5"
1725
+ }
1726
+ export declare type Mutation = {
1727
+ /**
1728
+ * Add a new review.
1729
+ * 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
1730
+ */
1731
+ addReview: Review;
1732
+ /**
1733
+ * Remove a review added by an authenticated user.
1734
+ * The `x-token` header is mandatory in order to authorize the user who wants to remove a review.
1735
+ * In case it is not sent, an error will occur.
1736
+ * In case the review was not found or belongs to another user an error will occur.
1737
+ * This is a premium feature, contact Chargetrip for more information.
1738
+ */
1739
+ deleteUserReview: Review;
1740
+ /** Create a new route from the route input and its ID */
1741
+ newRoute?: Maybe<Scalars["ID"]>;
1742
+ };
1743
+ export declare type MutationaddReviewArgs = {
1744
+ review: ReviewAdd;
1745
+ };
1746
+ export declare type MutationdeleteUserReviewArgs = {
1747
+ id: Scalars["ID"];
1748
+ };
1749
+ export declare type MutationnewRouteArgs = {
1750
+ input?: Maybe<RequestInput>;
1751
+ };
1752
+ /** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
1753
+ export declare type OCPIAdditionalGeoLocation = {
1754
+ /** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
1755
+ latitude?: Maybe<Scalars["String"]>;
1756
+ /** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
1757
+ longitude?: Maybe<Scalars["String"]>;
1758
+ /** Name of the point in local language or as written at the location. For example the street name of a parking lot entrance or it’s number. */
1759
+ name?: Maybe<OCPIDisplayText>;
1760
+ };
1761
+ /** The capabilities of an EVSE. */
1762
+ export declare enum OCPICapability {
1763
+ /** The EVSE supports charging profiles. */
1764
+ CHARGING_PROFILE_CAPABLE = "CHARGING_PROFILE_CAPABLE",
1765
+ /** The EVSE supports charging preferences. */
1766
+ CHARGING_PREFERENCES_CAPABLE = "CHARGING_PREFERENCES_CAPABLE",
1767
+ /** EVSE has a payment terminal that supports chip cards. */
1768
+ CHIP_CARD_SUPPORT = "CHIP_CARD_SUPPORT",
1769
+ /** EVSE has a payment terminal that supports contactless cards. */
1770
+ CONTACTLESS_CARD_SUPPORT = "CONTACTLESS_CARD_SUPPORT",
1771
+ /** EVSE has a payment terminal that makes it possible to pay for charging using a credit card. */
1772
+ CREDIT_CARD_PAYABLE = "CREDIT_CARD_PAYABLE",
1773
+ /** EVSE has a payment terminal that makes it possible to pay for charging using a debit card. */
1774
+ DEBIT_CARD_PAYABLE = "DEBIT_CARD_PAYABLE",
1775
+ /** EVSE has a payment terminal with a pin-code entry device. */
1776
+ PED_TERMINAL = "PED_TERMINAL",
1777
+ /** The EVSE can remotely be started/stopped. */
1778
+ REMOTE_START_STOP_CAPABLE = "REMOTE_START_STOP_CAPABLE",
1779
+ /** The EVSE can be reserved. */
1780
+ RESERVABLE = "RESERVABLE",
1781
+ /** Charging at this EVSE can be authorized with an RFID token. */
1782
+ RFID_READER = "RFID_READER",
1783
+ /** 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). */
1784
+ TOKEN_GROUP_CAPABLE = "TOKEN_GROUP_CAPABLE",
1785
+ /** Connectors have a mechanical lock that can be requested by the eMSP to be unlocked. */
1786
+ UNLOCK_CAPABLE = "UNLOCK_CAPABLE",
1787
+ /** When a StartSession is sent to this EVSE, the MSP is required to add the optional connector_id field in the StartSession object. */
1788
+ START_SESSION_CONNECTOR_REQUIRED = "START_SESSION_CONNECTOR_REQUIRED"
1789
+ }
1790
+ /** The format of the connector, whether it is a socket or a plug. */
1791
+ export declare enum OCPIConnectorFormat {
1792
+ /** The connector is a socket; the EV user needs to bring a fitting plug. */
1793
+ SOCKET = "SOCKET",
1794
+ /** The connector is an attached cable; the EV users car needs to have a fitting inlet. */
1795
+ CABLE = "CABLE"
1796
+ }
1797
+ /** Deprecated: Please use ConnectorType instead */
1798
+ export declare enum OCPIConnectorType {
1799
+ /** The connector type is CHAdeMO, DC */
1800
+ CHADEMO = "CHADEMO",
1801
+ /** Standard/domestic household, type "A", NEMA 1-15, 2 pins */
1802
+ DOMESTIC_A = "DOMESTIC_A",
1803
+ /** Standard/domestic household, type "B", NEMA 5-15, 3 pins */
1804
+ DOMESTIC_B = "DOMESTIC_B",
1805
+ /** Standard/domestic household, type "C", CEE 7/17, 2 pins */
1806
+ DOMESTIC_C = "DOMESTIC_C",
1807
+ /** Standard/domestic household, type "D", 3 pins */
1808
+ DOMESTIC_D = "DOMESTIC_D",
1809
+ /** Standard/domestic household, type "E", CEE 7/5 3 pins */
1810
+ DOMESTIC_E = "DOMESTIC_E",
1811
+ /** Standard/domestic household, type "F", CEE 7/4, Schuko, 3 pins */
1812
+ DOMESTIC_F = "DOMESTIC_F",
1813
+ /** Standard/domestic household, type "G", BS 1363, Commonwealth, 3 pins */
1814
+ DOMESTIC_G = "DOMESTIC_G",
1815
+ /** Standard/domestic household, type "H", SI-32, 3 pins */
1816
+ DOMESTIC_H = "DOMESTIC_H",
1817
+ /** Standard/domestic household, type "I", AS 3112, 3 pins */
1818
+ DOMESTIC_I = "DOMESTIC_I",
1819
+ /** Standard/domestic household, type "J", SEV 1011, 3 pins */
1820
+ DOMESTIC_J = "DOMESTIC_J",
1821
+ /** Standard/domestic household, type "K", DS 60884-2-D1, 3 pins */
1822
+ DOMESTIC_K = "DOMESTIC_K",
1823
+ /** Standard/domestic household, type "L", CEI 23-16-VII, 3 pins */
1824
+ DOMESTIC_L = "DOMESTIC_L",
1825
+ /** Standard/Domestic household, type "M", BS 546, 3 pins */
1826
+ DOMESTIC_M = "DOMESTIC_M",
1827
+ /** Standard/Domestic household, type "N", NBR 14136, 3 pins */
1828
+ DOMESTIC_N = "DOMESTIC_N",
1829
+ /** Standard/Domestic household, type "O", TIS 166-2549, 3 pins */
1830
+ DOMESTIC_O = "DOMESTIC_O",
1831
+ /** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue) */
1832
+ IEC_60309_2_SINGLE_16 = "IEC_60309_2_single_16",
1833
+ /** IEC 60309-2 Industrial connector three phase 16 amperes (usually red) */
1834
+ IEC_60309_2_THREE_16 = "IEC_60309_2_three_16",
1835
+ /** IEC 60309-2 Industrial connector three phase 32 amperes (usually red) */
1836
+ IEC_60309_2_THREE_32 = "IEC_60309_2_three_32",
1837
+ /** IEC 60309-2 Industrial connector three phase 64 amperes (usually red) */
1838
+ IEC_60309_2_THREE_64 = "IEC_60309_2_three_64",
1839
+ /** IEC 62196 Type 1 "SAE J1772" */
1840
+ IEC_62196_T1 = "IEC_62196_T1",
1841
+ /** Combo Type 1 based, DC */
1842
+ IEC_62196_T1_COMBO = "IEC_62196_T1_COMBO",
1843
+ /** IEC 62196 Type 2 "Mennekes" */
1844
+ IEC_62196_T2 = "IEC_62196_T2",
1845
+ /** Combo Type 2 based, DC */
1846
+ IEC_62196_T2_COMBO = "IEC_62196_T2_COMBO",
1847
+ /** IEC 62196 Type 3A */
1848
+ IEC_62196_T3A = "IEC_62196_T3A",
1849
+ /** IEC 62196 Type 3C "Scame" */
1850
+ IEC_62196_T3C = "IEC_62196_T3C",
1851
+ /** On-board bottom-up-pantograph typically for bus charging */
1852
+ PANTOGRAPH_BOTTOM_UP = "PANTOGRAPH_BOTTOM_UP",
1853
+ /** Off-board top-down-pantograph typically for bus charging */
1854
+ PANTOGRAPH_TOP_DOWN = "PANTOGRAPH_TOP_DOWN",
1855
+ /** Tesla connector "Roadster"-type (round, 4 pins) */
1856
+ TESLA_R = "TESLA_R",
1857
+ /** Tesla connector "Model-S"-type (oval, 5 pins) */
1858
+ TESLA_S = "TESLA_S",
1859
+ /** The connector type is GB_T (Chinese standard), DC */
1860
+ GB_T = "GB_T",
1861
+ /** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */
1862
+ CHAOJI = "CHAOJI",
1863
+ /** The connector type is NEMA 5-20, 3 pins */
1864
+ NEMA_5_20 = "NEMA_5_20",
1865
+ /** The connector type is NEMA 6-30, 3 pins */
1866
+ NEMA_6_30 = "NEMA_6_30",
1867
+ /** The connector type is NEMA 6-50, 3 pins */
1868
+ NEMA_6_50 = "NEMA_6_50",
1869
+ /** The connector type is NEMA 10-30, 3 pins */
1870
+ NEMA_10_30 = "NEMA_10_30",
1871
+ /** The connector type is NEMA 10-50, 3 pins */
1872
+ NEMA_10_50 = "NEMA_10_50",
1873
+ /** The connector type is NEMA 14-30, 3 pins, rating of 30 A */
1874
+ NEMA_14_30 = "NEMA_14_30",
1875
+ /** The connector type is NEMA 14-50, 3 pins, rating of 50 A */
1876
+ NEMA_14_50 = "NEMA_14_50"
1877
+ }
1878
+ export declare enum OCPIDayOfWeek {
1879
+ MONDAY = "MONDAY",
1880
+ TUESDAY = "TUESDAY",
1881
+ WEDNESDAY = "WEDNESDAY",
1882
+ THURSDAY = "THURSDAY",
1883
+ FRIDAY = "FRIDAY",
1884
+ SATURDAY = "SATURDAY",
1885
+ SUNDAY = "SUNDAY"
1886
+ }
1887
+ export declare type OCPIDisplayText = {
1888
+ /** Language Code ISO 639-1 */
1889
+ language?: Maybe<Scalars["String"]>;
1890
+ /** Text to be displayed to an end user. No markup, html etc. allowed. */
1891
+ text?: Maybe<Scalars["String"]>;
1892
+ };
1893
+ /** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
1894
+ export declare type OCPIEnergyMix = {
1895
+ /** True if the power is 100% from regenerative sources */
1896
+ is_green_energy?: Maybe<Scalars["Boolean"]>;
1897
+ /** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */
1898
+ energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
1899
+ /** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */
1900
+ environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
1901
+ /** Name of the energy supplier, delivering the energy for this location or tariff.* */
1902
+ supplier_name?: Maybe<Scalars["String"]>;
1903
+ /** Name of the energy suppliers product/tariff plan used at this location.* */
1904
+ energy_product_name?: Maybe<Scalars["String"]>;
1905
+ };
1906
+ export declare type OCPIEnergySource = {
1907
+ /** The type of energy source. */
1908
+ source?: Maybe<OCPIEnergySourceCategory>;
1909
+ /** Percentage of this source (0-100) in the mix. */
1910
+ percentage?: Maybe<Scalars["Int"]>;
1911
+ };
1912
+ /** Categories of energy sources. */
1913
+ export declare enum OCPIEnergySourceCategory {
1914
+ /** Nuclear power sources. */
1915
+ NUCLEAR = "NUCLEAR",
1916
+ /** All kinds of fossil power sources. */
1917
+ GENERAL_FOSSIL = "GENERAL_FOSSIL",
1918
+ /** Fossil power from coal. */
1919
+ COAL = "COAL",
1920
+ /** Fossil power from gas. */
1921
+ GAS = "GAS",
1922
+ /** All kinds of regenerative power sources. */
1923
+ GENERAL_GREEN = "GENERAL_GREEN",
1924
+ /** Regenerative power from PV. */
1925
+ SOLAR = "SOLAR",
1926
+ /** Regenerative power from wind turbines. */
1927
+ WIND = "WIND",
1928
+ /** Regenerative power from water turbines. */
1929
+ WATER = "WATER"
1930
+ }
1931
+ /** Amount of waste produced/emitted per kWh. */
1932
+ export declare type OCPIEnvironmentalImpact = {
1933
+ /** The environmental impact category of this value. */
1934
+ category?: Maybe<OCPIEnvironmentalImpactCategory>;
1935
+ /** Amount of this portion in g/kWh. */
1936
+ amount?: Maybe<Scalars["Int"]>;
1937
+ };
1938
+ /** Categories of environmental impact values. */
1939
+ export declare enum OCPIEnvironmentalImpactCategory {
1940
+ /** Produced nuclear waste in grams per kilowatthour. */
1941
+ NUCLEAR_WASTE = "NUCLEAR_WASTE",
1942
+ /** Exhausted carbon dioxide in grams per kilowatthour. */
1943
+ CARBON_DIOXIDE = "CARBON_DIOXIDE"
1944
+ }
1945
+ /** Specifies one exceptional period for opening or access hours. */
1946
+ export declare type OCPIExceptionalPeriod = {
1947
+ /** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */
1948
+ period_begin?: Maybe<Scalars["DateTime"]>;
1949
+ /** End of the exception. In UTC, time_zone field can be used to convert to local time. */
1950
+ period_end?: Maybe<Scalars["DateTime"]>;
1951
+ };
1952
+ export declare enum OCPIFacility {
1953
+ /** A hotel. */
1954
+ HOTEL = "HOTEL",
1955
+ /** A restaurant. */
1956
+ RESTAURANT = "RESTAURANT",
1957
+ /** A cafe. */
1958
+ CAFE = "CAFE",
1959
+ /** A mall or shopping center. */
1960
+ MALL = "MALL",
1961
+ /** A supermarket. */
1962
+ SUPERMARKET = "SUPERMARKET",
1963
+ /** Sport facilities: gym, field etc. */
1964
+ SPORT = "SPORT",
1965
+ /** A recreation area. */
1966
+ RECREATION_AREA = "RECREATION_AREA",
1967
+ /** Located in, or close to, a park, nature reserve etc. */
1968
+ NATURE = "NATURE",
1969
+ /** A museum. */
1970
+ MUSEUM = "MUSEUM",
1971
+ /** A bike/e-bike/e-scooter sharing location. */
1972
+ BIKE_SHARING = "BIKE_SHARING",
1973
+ /** A bus stop. */
1974
+ BUS_STOP = "BUS_STOP",
1975
+ /** A taxi stand. */
1976
+ TAXI_STAND = "TAXI_STAND",
1977
+ /** A tram stop/station. */
1978
+ TRAM_STOP = "TRAM_STOP",
1979
+ /** A metro station. */
1980
+ METRO_STATION = "METRO_STATION",
1981
+ /** A train station. */
1982
+ TRAIN_STATION = "TRAIN_STATION",
1983
+ /** An airport. */
1984
+ AIRPORT = "AIRPORT",
1985
+ /** A parking lot. */
1986
+ PARKING_LOT = "PARKING_LOT",
1987
+ /** A carpool parking. */
1988
+ CARPOOL_PARKING = "CARPOOL_PARKING",
1989
+ /** A Fuel station. */
1990
+ FUEL_STATION = "FUEL_STATION",
1991
+ /** Wifi or other type of internet available. */
1992
+ WIFI = "WIFI"
1993
+ }
1994
+ /** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
1995
+ export declare type OCPIGeoLocation = {
1996
+ /** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
1997
+ latitude?: Maybe<Scalars["String"]>;
1998
+ /** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
1999
+ longitude?: Maybe<Scalars["String"]>;
2000
+ };
2001
+ /** Opening and access hours of the location. */
2002
+ export declare type OCPIHours = {
2003
+ /** True to represent 24 hours a day and 7 days a week, except the given exceptions. */
2004
+ twentyfourseven?: Maybe<Scalars["Boolean"]>;
2005
+ /** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */
2006
+ regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
2007
+ /** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */
2008
+ exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
2009
+ /** 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. */
2010
+ exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
2011
+ };
2012
+ export declare type OCPIImage = {
2013
+ /** URL from where the image data can be fetched through a web browser. */
2014
+ url?: Maybe<Scalars["String"]>;
2015
+ /** URL from where a thumbnail of the image can be fetched through a webbrowser. */
2016
+ thumbnail?: Maybe<Scalars["String"]>;
2017
+ /** Category of an image */
2018
+ category?: Maybe<OCPIImageCategory>;
2019
+ /** Image type: gif, jpeg, png, svg */
2020
+ type?: Maybe<Scalars["String"]>;
2021
+ /** Width of the full scale image */
2022
+ width?: Maybe<Scalars["Int"]>;
2023
+ /** Height of the full scale image */
2024
+ height?: Maybe<Scalars["Int"]>;
2025
+ };
2026
+ /** 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. */
2027
+ export declare enum OCPIImageCategory {
2028
+ /** Photo of the physical device that contains one or more EVSEs. */
2029
+ CHARGER = "CHARGER",
2030
+ /** Location entrance photo. Should show the car entrance to the location from street side. */
2031
+ ENTRANCE = "ENTRANCE",
2032
+ /** Location overview photo. */
2033
+ LOCATION = "LOCATION",
2034
+ /** Logo of an associated roaming network to be displayed with the EVSE for example in lists, maps and detailed information views. */
2035
+ NETWORK = "NETWORK",
2036
+ /** Logo of the charge point operator, for example a municipality, to be displayed in the EVSEs detailed information view or in lists and maps, if no network logo is present. */
2037
+ OPERATOR = "OPERATOR",
2038
+ /** Other */
2039
+ OTHER = "OTHER",
2040
+ /** Logo of the charge point owner, for example a local store, to be displayed in the EVSEs detailed information view. */
2041
+ OWNER = "OWNER"
2042
+ }
2043
+ /** This value, if provided, represents the restriction to the parking spot for different purposes. */
2044
+ export declare enum OCPIParkingRestriction {
2045
+ /** Reserved parking spot for electric vehicles. */
2046
+ EV_ONLY = "EV_ONLY",
2047
+ /** Parking is only allowed while plugged in (charging). */
2048
+ PLUGGED = "PLUGGED",
2049
+ /** Reserved parking spot for disabled people with valid ID. */
2050
+ DISABLED = "DISABLED",
2051
+ /** Parking spot for customers/guests only, for example in case of a hotel or shop. */
2052
+ CUSTOMERS = "CUSTOMERS",
2053
+ /** Parking spot only suitable for (electric) motorcycles or scooters. */
2054
+ MOTORCYCLES = "MOTORCYCLES"
2055
+ }
2056
+ /** Reflects the general type of the charge point’s location. May be used for user information. */
2057
+ export declare enum OCPIParkingType {
2058
+ /** Location on a parking facility/rest area along a motorway, freeway, interstate, highway etc. */
2059
+ ALONG_MOTORWAY = "ALONG_MOTORWAY",
2060
+ /** Multistorey car park. */
2061
+ PARKING_GARAGE = "PARKING_GARAGE",
2062
+ /** A cleared area that is intended for parking vehicles, i.e. at supermarkets, bars, etc. */
2063
+ PARKING_LOT = "PARKING_LOT",
2064
+ /** Location is on the driveway of a house/building. */
2065
+ ON_DRIVEWAY = "ON_DRIVEWAY",
2066
+ /** Parking in public space along a street. */
2067
+ ON_STREET = "ON_STREET",
2068
+ /** Multistorey car park, mainly underground. */
2069
+ UNDERGROUND_GARAGE = "UNDERGROUND_GARAGE"
2070
+ }
2071
+ export declare enum OCPIPowerType {
2072
+ /** AC single phase. */
2073
+ AC_1_PHASE = "AC_1_PHASE",
2074
+ /** AC three phase. */
2075
+ AC_3_PHASE = "AC_3_PHASE",
2076
+ /** AC two phases, only two of the three available phases connected. */
2077
+ AC_2_PHASE = "AC_2_PHASE",
2078
+ /** AC two phases using split phase system. */
2079
+ AC_2_PHASE_SPLIT = "AC_2_PHASE_SPLIT",
2080
+ /** Direct Current. */
2081
+ DC = "DC"
2082
+ }
2083
+ export declare type OCPIPrice = {
2084
+ /** Price/Cost excluding VAT. */
2085
+ excl_vat?: Maybe<Scalars["Float"]>;
2086
+ /** Price/Cost including VAT. */
2087
+ incl_vat?: Maybe<Scalars["Float"]>;
2088
+ };
2089
+ export declare type OCPIPriceComponent = {
2090
+ /** Type of tariff dimension. */
2091
+ type?: Maybe<OCPITariffDimensionType>;
2092
+ /** Price per unit (excl. VAT) for this tariff dimension. */
2093
+ price?: Maybe<Scalars["Float"]>;
2094
+ /** 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. */
2095
+ vat?: Maybe<Scalars["Float"]>;
2096
+ /** 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. */
2097
+ step_size?: Maybe<Scalars["Int"]>;
2098
+ };
2099
+ /** Regular recurring operation or access hours. */
2100
+ export declare type OCPIRegularHours = {
2101
+ /** Number of days in the week, from Monday (1) till Sunday (7) */
2102
+ weekday?: Maybe<Scalars["Int"]>;
2103
+ /** 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]. */
2104
+ period_begin?: Maybe<Scalars["String"]>;
2105
+ /** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */
2106
+ period_end?: Maybe<Scalars["String"]>;
2107
+ };
2108
+ export declare enum OCPIReservationRestrictionType {
2109
+ /** Used in TariffElements to describe costs for a reservation. */
2110
+ RESERVATION = "RESERVATION",
2111
+ /** Used in TariffElements to describe costs for a reservation that expires (i.e. driver does not start a charging session before expiry_date of the reservation). */
2112
+ RESERVATION_EXPIRES = "RESERVATION_EXPIRES"
2113
+ }
2114
+ /** The status of an EVSE. */
2115
+ export declare enum OCPIStatus {
2116
+ /** The EVSE/Connector is able to start a new charging session. */
2117
+ AVAILABLE = "AVAILABLE",
2118
+ /** The EVSE/Connector is not accessible because of a physical barrier, i.e. a car. */
2119
+ BLOCKED = "BLOCKED",
2120
+ /** The EVSE/Connector is in use. */
2121
+ CHARGING = "CHARGING",
2122
+ /** The EVSE/Connector is not yet active or it is no longer available (deleted). */
2123
+ INOPERATIVE = "INOPERATIVE",
2124
+ /** The EVSE/Connector is currently out of order. */
2125
+ OUTOFORDER = "OUTOFORDER",
2126
+ /** The EVSE/Connector is planned, will be operating soon. */
2127
+ PLANNED = "PLANNED",
2128
+ /** The EVSE/Connector was discontinued/removed. */
2129
+ REMOVED = "REMOVED",
2130
+ /** The EVSE/Connector is reserved for a particular EV driver and is unavailable for other drivers. */
2131
+ RESERVED = "RESERVED",
2132
+ /** No status information available (also used when offline). */
2133
+ UNKNOWN = "UNKNOWN"
2134
+ }
2135
+ /** This type is used to schedule status periods in the future. The eMSP can provide this information to the EV user for trip planning purposes. A period MAY have no end. Example: "This station will be running as of tomorrow. Today it is still planned and under construction. */
2136
+ export declare type OCPIStatusSchedule = {
2137
+ /** Begin of the scheduled period. */
2138
+ period_begin?: Maybe<Scalars["DateTime"]>;
2139
+ /** End of the scheduled period, if known. */
2140
+ period_end?: Maybe<Scalars["DateTime"]>;
2141
+ /** Status value during the scheduled period. */
2142
+ status?: Maybe<OCPIStatus>;
2143
+ };
2144
+ export declare type OCPITariff = {
2145
+ /** ISO-3166 alpha-2 country code of the CPO that owns this tariff */
2146
+ country_code?: Maybe<Scalars["String"]>;
2147
+ /** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
2148
+ party_id?: Maybe<Scalars["String"]>;
2149
+ /** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
2150
+ id?: Maybe<Scalars["String"]>;
2151
+ /** ISO-4217 code of the currency of this tariff. */
2152
+ currency?: Maybe<Scalars["String"]>;
2153
+ /** 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 */
2154
+ type?: Maybe<OCPITariffType>;
2155
+ /** List of alternative tariff information texts, in multiple languages */
2156
+ tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
2157
+ /** URL to a web page that contains an explanation of the tariff information in human readable form */
2158
+ tariff_alt_url?: Maybe<Scalars["String"]>;
2159
+ /** 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 */
2160
+ min_price?: Maybe<OCPIPrice>;
2161
+ /** When this field is set, a charging session with this tariff will NOT cost more than this amount */
2162
+ max_price?: Maybe<OCPIPrice>;
2163
+ /** List of tariff elements */
2164
+ elements?: Maybe<Array<Maybe<OCPITariffElement>>>;
2165
+ /** 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 */
2166
+ start_date_time?: Maybe<Scalars["DateTime"]>;
2167
+ /** 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 */
2168
+ end_date_time?: Maybe<Scalars["DateTime"]>;
2169
+ /** Details about the energy supplied with this tariff */
2170
+ energy_mix?: Maybe<OCPIEnergyMix>;
2171
+ /** Timestamp when this tariff was last updated (or created) */
2172
+ last_updated?: Maybe<Scalars["DateTime"]>;
2173
+ };
2174
+ export declare enum OCPITariffDimensionType {
2175
+ /** Defined in kWh, step_size multiplier: 1 Wh */
2176
+ ENERGY = "ENERGY",
2177
+ /** Flat fee without unit for step_size */
2178
+ FLAT = "FLAT",
2179
+ /** Time not charging: defined in hours, step_size multiplier: 1 second */
2180
+ PARKING_TIME = "PARKING_TIME",
2181
+ /** Time charging: defined in hours, step_size multiplier: 1 second Can also be used in combination with a RESERVATION restriction to describe the price of the reservation time. */
2182
+ TIME = "TIME"
2183
+ }
2184
+ export declare type OCPITariffElement = {
2185
+ /** List of price components that describe the pricing of a tariff. */
2186
+ price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;
2187
+ /** Restrictions that describe the applicability of a tariff. */
2188
+ restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
2189
+ };
2190
+ export declare type OCPITariffRestrictions = {
2191
+ /** 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] */
2192
+ start_time?: Maybe<Scalars["String"]>;
2193
+ /** 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. */
2194
+ end_time?: Maybe<Scalars["String"]>;
2195
+ /** 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]) */
2196
+ start_date?: Maybe<Scalars["String"]>;
2197
+ /** 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 */
2198
+ end_date?: Maybe<Scalars["String"]>;
2199
+ /** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
2200
+ min_kwh?: Maybe<Scalars["Float"]>;
2201
+ /** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */
2202
+ max_kwh?: Maybe<Scalars["Float"]>;
2203
+ /** 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 */
2204
+ min_current?: Maybe<Scalars["Float"]>;
2205
+ /** 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 */
2206
+ max_current?: Maybe<Scalars["Float"]>;
2207
+ /** 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 */
2208
+ min_power?: Maybe<Scalars["Float"]>;
2209
+ /** 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 */
2210
+ max_power?: Maybe<Scalars["Float"]>;
2211
+ /** 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 */
2212
+ min_duration?: Maybe<Scalars["Float"]>;
2213
+ /** 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 */
2214
+ max_duration?: Maybe<Scalars["Float"]>;
2215
+ /** Which day(s) of the week this tariff element is active. */
2216
+ day_of_week?: Maybe<OCPIDayOfWeek>;
2217
+ /** 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 */
2218
+ reservation?: Maybe<OCPIReservationRestrictionType>;
2219
+ };
2220
+ export declare enum OCPITariffType {
2221
+ /** 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) */
2222
+ AD_HOC_PAYMENT = "AD_HOC_PAYMENT",
2223
+ /** Used to describe that a tariff is valid when charging preference: CHEAP is set for the session */
2224
+ PROFILE_CHEAP = "PROFILE_CHEAP",
2225
+ /** Used to describe that a tariff is valid when charging preference: FAST is set for the session */
2226
+ PROFILE_FAST = "PROFILE_FAST",
2227
+ /** Used to describe that a tariff is valid when charging preference: GREEN is set for the session */
2228
+ PROFILE_GREEN = "PROFILE_GREEN",
2229
+ /** Used to describe that a tariff is valid when using an RFID, without any charging preference, or when charging preference: REGULAR is set for the session */
2230
+ REGULAR = "REGULAR"
2231
+ }
2232
+ /** The operator data which extends OCPI BusinessDetails */
2233
+ export declare type Operator = {
2234
+ /** Unique operator ID */
2235
+ id?: Maybe<Scalars["ID"]>;
2236
+ /** External ID of an operator provided by the operator data source */
2237
+ external_id?: Maybe<Scalars["String"]>;
2238
+ /** Name of an operator */
2239
+ name?: Maybe<Scalars["String"]>;
2240
+ /** Link to an operator’s website */
2241
+ website?: Maybe<Scalars["String"]>;
2242
+ /** Image link to an operator’s logo */
2243
+ logo?: Maybe<OCPIImage>;
2244
+ /** Deprecated: Not used anymore, please use countries property instead */
2245
+ country?: Maybe<Scalars["String"]>;
2246
+ /** ISO-3166 alpha-2 country codes an operator is active in. */
2247
+ countries?: Maybe<Array<CountryCodeAlpha2>>;
2248
+ /** Contact information */
2249
+ contact?: Maybe<Contact>;
2250
+ /** Ranking level on which the operator is placed or null in case the operator is not on any ranking level */
2251
+ ranking?: Maybe<Scalars["Int"]>;
2252
+ /** Flag which indicates if the operator is in the excluded list */
2253
+ excluded?: Maybe<Scalars["Boolean"]>;
2254
+ };
2255
+ /** Filter which can be applied to retrieve the operator list action */
2256
+ export declare type OperatorListFilter = {
2257
+ /** ISO-3166 alpha-2 country codes an operator is active in. */
2258
+ countries?: Maybe<Array<CountryCodeAlpha2>>;
2259
+ /** List of ranking level(s) to be retrieved. Valid values are 1 to 10 */
2260
+ ranking?: Maybe<Array<Scalars["Int"]>>;
2261
+ /** Only retrieve operators that are in the excluded list */
2262
+ excluded?: Maybe<Scalars["Boolean"]>;
2263
+ };
2264
+ /** Filter which can be applied to retrieve the operator list action */
2265
+ export declare type OperatorListQuery = {
2266
+ /** Unique operator ID */
2267
+ id?: Maybe<Scalars["ID"]>;
2268
+ /** External ID of an operator provided by an operator data source */
2269
+ external_id?: Maybe<Scalars["String"]>;
2270
+ /** Exact name */
2271
+ name?: Maybe<Scalars["String"]>;
2272
+ /** Exact country code */
2273
+ country?: Maybe<Scalars["String"]>;
2274
+ };
2275
+ export declare enum ParkingCost {
2276
+ /** Parking is free */
2277
+ FREE = "free",
2278
+ /** Parking includes a fee */
2279
+ PAID = "paid"
2280
+ }
2281
+ export declare type PathSegment = {
2282
+ /** Elevation (altitude) in meters */
2283
+ elevation?: Maybe<Scalars["Int"]>;
2284
+ /** Average speed, in km/h, for this route path segment */
2285
+ averageSpeed?: Maybe<Scalars["Float"]>;
2286
+ /** Consumption, in kWh, of a route path segment */
2287
+ consumption?: Maybe<Scalars["Float"]>;
2288
+ /** Consumption, in kWh per km, of a route path segment */
2289
+ consumptionPerKm?: Maybe<Scalars["Float"]>;
2290
+ /** Distance, in meters, of a route path segment */
2291
+ distance?: Maybe<Scalars["Float"]>;
2292
+ /** Duration, in seconds, of a route path segment */
2293
+ duration?: Maybe<Scalars["Float"]>;
2294
+ };
2295
+ /** A GeoJSON Point */
2296
+ export declare type Point = {
2297
+ /** Point type */
2298
+ type: PointType;
2299
+ /** The coordinates array with longitude as first value and latitude as second one */
2300
+ coordinates: Array<Scalars["Float"]>;
2301
+ };
2302
+ /** A GeoJSON Point input */
2303
+ export declare type PointInput = {
2304
+ /** Point type */
2305
+ type: PointType;
2306
+ /** Coordinates [longitude, latitude] */
2307
+ coordinates: Array<Scalars["Float"]>;
2308
+ };
2309
+ /** GeoJSON Point type */
2310
+ export declare enum PointType {
2311
+ POINT = "Point"
2312
+ }
2313
+ /** The list of powers for the speed type */
2314
+ export declare type PowerList = {
2315
+ /** The maximum power the plug provides in kW */
2316
+ power?: Maybe<Scalars["Float"]>;
2317
+ /** The total number of stations with the specified power */
2318
+ total?: Maybe<Scalars["Int"]>;
2319
+ };
2320
+ /** Power stats model */
2321
+ export declare type PowerStats = {
2322
+ /** The charging speed type for the specified power */
2323
+ type?: Maybe<StationSpeedType>;
2324
+ /** The list of powers for the speed type */
2325
+ powers?: Maybe<Array<Maybe<PowerList>>>;
2326
+ };
2327
+ /** The price model */
2328
+ export declare type Price = {
2329
+ /** The value of the price */
2330
+ value?: Maybe<Scalars["String"]>;
2331
+ /** The currency of the price */
2332
+ currency?: Maybe<Scalars["String"]>;
2333
+ /** The pricing model */
2334
+ model?: Maybe<Scalars["String"]>;
2335
+ /** The value of the price which should be display by the frontend */
2336
+ displayValue?: Maybe<Scalars["String"]>;
2337
+ };
2338
+ export declare type Pricing = {
2339
+ /** Unique ID of a price */
2340
+ id?: Maybe<Scalars["String"]>;
2341
+ /** Price details */
2342
+ price_list?: Maybe<Array<Maybe<PricingList>>>;
2343
+ };
2344
+ export declare type PricingList = {
2345
+ /** (MSP) Mobility Service Provider */
2346
+ partner?: Maybe<Scalars["String"]>;
2347
+ /** Product details */
2348
+ product?: Maybe<PricingListProduct>;
2349
+ /** Price product elements */
2350
+ elements?: Maybe<Array<Maybe<PricingListElement>>>;
2351
+ };
2352
+ export declare type PricingListElement = {
2353
+ /** Price element type. */
2354
+ type?: Maybe<PricingListElementType>;
2355
+ /** Price of the element type without VAT. */
2356
+ price_excl_vat?: Maybe<Scalars["Float"]>;
2357
+ /** VAT percentage to apply */
2358
+ vat?: Maybe<Scalars["Float"]>;
2359
+ };
2360
+ export declare enum PricingListElementType {
2361
+ /** Price per kWh */
2362
+ ENERGY = "ENERGY",
2363
+ /** Starting price, fixed fee per charge session */
2364
+ FLAT = "FLAT",
2365
+ /** Fixed price per hour */
2366
+ TIME = "TIME",
2367
+ /** Parking price per hour */
2368
+ PARKING_TIME = "PARKING_TIME"
2369
+ }
2370
+ export declare type PricingListProduct = {
2371
+ /** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price */
2372
+ name?: Maybe<Scalars["String"]>;
2373
+ /** Description of the product */
2374
+ description?: Maybe<Scalars["String"]>;
2375
+ /** Subscription type */
2376
+ subscription_type?: Maybe<Scalars["String"]>;
2377
+ /** Subscription fee without VAT */
2378
+ subscription_fee_excl_vat?: Maybe<Scalars["Float"]>;
2379
+ /** Currency */
2380
+ currency?: Maybe<Scalars["String"]>;
2381
+ };
2382
+ export declare type Query = {
2383
+ /** Get a full list of amenities around a station */
2384
+ amenityList?: Maybe<Array<Maybe<Amenity>>>;
2385
+ /** Get information about a car by its ID */
2386
+ car?: Maybe<Car>;
2387
+ /** 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. */
2388
+ carPremium?: Maybe<CarPremium>;
2389
+ /** Get a full list of cars */
2390
+ carList?: Maybe<Array<Maybe<CarList>>>;
2391
+ /** Get a full list of operators */
2392
+ operatorList?: Maybe<Array<Maybe<Operator>>>;
2393
+ /** Get information about an operator by its ID */
2394
+ operator?: Maybe<Operator>;
2395
+ /** Get all reviews of a station by the station ID */
2396
+ reviewList?: Maybe<Array<Review>>;
2397
+ /**
2398
+ * Get all reviews of stations that were added by an authenticated user.
2399
+ * The `x-token` header is mandatory in order to authorize the user who wants to retrieve all the reviews added by him/her.
2400
+ * This is a premium feature, contact Chargetrip for more information.
2401
+ */
2402
+ userReviewList?: Maybe<Array<Review>>;
2403
+ /** Get a route by ID */
2404
+ route?: Maybe<Route>;
2405
+ /** Retrieve information about a route path segment */
2406
+ routePath?: Maybe<RoutePath>;
2407
+ /** Get the station statistics */
2408
+ stationStats?: Maybe<StationStats>;
2409
+ /** Get information about a station by its ID */
2410
+ station?: Maybe<Station>;
2411
+ /** Get a full list of stations */
2412
+ stationList?: Maybe<Array<Maybe<Station>>>;
2413
+ /** Search for stations around a GeoJSON point with a specific distance in meters */
2414
+ stationAround?: Maybe<Array<Maybe<Station>>>;
2415
+ /** Get information about a tariff by the tariff ID */
2416
+ tariff?: Maybe<OCPITariff>;
2417
+ /** Get the full list of tariffs */
2418
+ tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
2419
+ /** Convert a route to navigation instructions for a specified mapping provider */
2420
+ navigationMapping?: Maybe<Scalars["JSON"]>;
2421
+ };
2422
+ export declare type QueryamenityListArgs = {
2423
+ stationId: Scalars["ID"];
2424
+ };
2425
+ export declare type QuerycarArgs = {
2426
+ id?: Maybe<Scalars["ID"]>;
2427
+ externalId?: Maybe<Scalars["Int"]>;
2428
+ };
2429
+ export declare type QuerycarPremiumArgs = {
2430
+ id?: Maybe<Scalars["ID"]>;
2431
+ };
2432
+ export declare type QuerycarListArgs = {
2433
+ query?: Maybe<CarListQuery>;
2434
+ search?: Maybe<Scalars["String"]>;
2435
+ filter?: Maybe<CarListFilter>;
2436
+ size?: Maybe<Scalars["Int"]>;
2437
+ page?: Maybe<Scalars["Int"]>;
2438
+ };
2439
+ export declare type QueryoperatorListArgs = {
2440
+ query?: Maybe<OperatorListQuery>;
2441
+ search?: Maybe<Scalars["String"]>;
2442
+ filter?: Maybe<OperatorListFilter>;
2443
+ size?: Maybe<Scalars["Int"]>;
2444
+ page?: Maybe<Scalars["Int"]>;
2445
+ };
2446
+ export declare type QueryoperatorArgs = {
2447
+ id: Scalars["ID"];
2448
+ };
2449
+ export declare type QueryreviewListArgs = {
2450
+ stationId: Scalars["ID"];
2451
+ size?: Maybe<Scalars["Int"]>;
2452
+ page?: Maybe<Scalars["Int"]>;
2453
+ };
2454
+ export declare type QueryuserReviewListArgs = {
2455
+ size?: Maybe<Scalars["Int"]>;
2456
+ page?: Maybe<Scalars["Int"]>;
2457
+ };
2458
+ export declare type QueryrouteArgs = {
2459
+ id: Scalars["ID"];
2460
+ };
2461
+ export declare type QueryroutePathArgs = {
2462
+ id: Scalars["ID"];
2463
+ location: PointInput;
2464
+ alternativeId?: Maybe<Scalars["ID"]>;
2465
+ };
2466
+ export declare type QuerystationArgs = {
2467
+ id: Scalars["ID"];
2468
+ };
2469
+ export declare type QuerystationListArgs = {
2470
+ query?: Maybe<StationListQuery>;
2471
+ size?: Maybe<Scalars["Int"]>;
2472
+ page?: Maybe<Scalars["Int"]>;
2473
+ };
2474
+ export declare type QuerystationAroundArgs = {
2475
+ query: StationAroundQuery;
2476
+ size?: Maybe<Scalars["Int"]>;
2477
+ page?: Maybe<Scalars["Int"]>;
2478
+ };
2479
+ export declare type QuerytariffArgs = {
2480
+ id: Scalars["ID"];
2481
+ };
2482
+ export declare type QuerytariffListArgs = {
2483
+ size?: Maybe<Scalars["Int"]>;
2484
+ page?: Maybe<Scalars["Int"]>;
2485
+ };
2486
+ export declare type QuerynavigationMappingArgs = {
2487
+ id: Scalars["ID"];
2488
+ provider: MappingProvider;
2489
+ precision?: Maybe<Scalars["Int"]>;
2490
+ language?: Maybe<MappingLanguage>;
2491
+ };
2492
+ /** EV specific data for a route request */
2493
+ export declare type RequestEv = {
2494
+ /** Internal ID of a Car */
2495
+ id?: Maybe<Scalars["ID"]>;
2496
+ /** EV battery specific data */
2497
+ battery?: Maybe<RequestEvBattery>;
2498
+ /** Supported plugs for an EV */
2499
+ plugs?: Maybe<Array<Maybe<RequestEvPlug>>>;
2500
+ /** Supported adapters of plugs for an EV */
2501
+ adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;
2502
+ /** Minimum desired power of chargers */
2503
+ minPower?: Maybe<Scalars["Int"]>;
2504
+ /** Climate is on. The default is true */
2505
+ climate?: Maybe<Scalars["Boolean"]>;
2506
+ /**
2507
+ * The number of passengers on board
2508
+ * @deprecated In favor of occupants
2509
+ */
2510
+ numberOfPassengers?: Maybe<Scalars["Int"]>;
2511
+ /** Number of occupants */
2512
+ occupants?: Maybe<Scalars["Int"]>;
2513
+ /** Consumption specific to an EV or inputed by a request */
2514
+ consumption?: Maybe<RequestEvConsumption>;
2515
+ };
2516
+ export declare type RequestEvBattery = {
2517
+ /** The usable capacity of the battery used to compute the route. If this in not filled in, value as the car batteryUsableKwh. */
2518
+ capacity?: Maybe<RequestEvBatteryValue>;
2519
+ /** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value. */
2520
+ capacityKwh?: Maybe<Scalars["Float"]>;
2521
+ /** 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 batteryUsableKwh. */
2522
+ stateOfCharge?: Maybe<RequestEvBatteryValue>;
2523
+ /** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge. */
2524
+ stateOfChargeKwh?: Maybe<Scalars["Float"]>;
2525
+ /** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the car batteryUsableKwh. */
2526
+ finalStateOfCharge?: Maybe<RequestEvBatteryValue>;
2527
+ /** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge. */
2528
+ finalStateOfChargeKwh?: Maybe<Scalars["Float"]>;
2529
+ };
2530
+ export declare type RequestEvBatteryInput = {
2531
+ /** Usable capacity of a battery used to compute a route. Allowed value is between -50% and 50% of the car usable battery capacity. If this in not filled in, we assume it is the same value as the car batteryUsableKwh. */
2532
+ capacity?: Maybe<RequestEvBatteryInputValue>;
2533
+ /** 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 batteryUsableKwh. */
2534
+ stateOfCharge?: Maybe<RequestEvBatteryInputValue>;
2535
+ /** Desired final amount of energy in a battery. If this is not filled in, we assume it is 20% of the car batteryUsableKwh. */
2536
+ finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;
2537
+ };
2538
+ export declare type RequestEvBatteryInputValue = {
2539
+ /** Value of a desired final amount of energy in a battery */
2540
+ value: Scalars["Float"];
2541
+ /** Type of a desired final amount of energy in a battery */
2542
+ type: BatteryInputType;
2543
+ };
2544
+ export declare type RequestEvBatteryValue = {
2545
+ /** Value of the desired final amount of energy in a battery */
2546
+ value: Scalars["Float"];
2547
+ /** Type of the desired final amount of energy in a battery */
2548
+ type: BatteryInputType;
2549
+ };
2550
+ export declare type RequestEvConsumption = {
2551
+ /** Consumption, in kWh, of the auxiliaries */
2552
+ aux?: Maybe<CarConsumption>;
2553
+ /** The consumption, in kWh, of the battery management system */
2554
+ bms?: Maybe<CarConsumption>;
2555
+ /** The consumption, in kWh, of the car in idle mode */
2556
+ idle?: Maybe<CarConsumption>;
2557
+ };
2558
+ export declare type RequestEvConsumptionInput = {
2559
+ /** Consumption, in kWh, of the auxiliaries */
2560
+ aux?: Maybe<CarConsumptionInput>;
2561
+ /** Consumption, in kWh, of the battery management system */
2562
+ bms?: Maybe<CarConsumptionInput>;
2563
+ /** Consumption, in kWh, of the car in idle mode */
2564
+ idle?: Maybe<CarConsumptionInput>;
2565
+ };
2566
+ export declare type RequestEvInput = {
2567
+ /** Internal ID of a Car */
2568
+ id: Scalars["ID"];
2569
+ /** The EV battery specific data */
2570
+ battery?: Maybe<RequestEvBatteryInput>;
2571
+ /** Supported plugs of an EV */
2572
+ plugs?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
2573
+ /** Supported adapters of plugs of an EV */
2574
+ adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;
2575
+ /** Minimum desired power of chargers */
2576
+ minPower?: Maybe<Scalars["Int"]>;
2577
+ /** Flag which indicates if the climate is on. The default is true */
2578
+ climate?: Maybe<Scalars["Boolean"]>;
2579
+ /** Number of occupants */
2580
+ occupants?: Maybe<Scalars["Int"]>;
2581
+ /** Consumption specific to the EV or inputted by the request */
2582
+ consumption?: Maybe<RequestEvConsumptionInput>;
2583
+ /** Deprecated */
2584
+ auxConsumption?: Maybe<Scalars["Float"]>;
2585
+ /** Deprecated */
2586
+ bmsConsumption?: Maybe<Scalars["Float"]>;
2587
+ };
2588
+ export declare type RequestEvPlug = {
2589
+ /** Type of the plug */
2590
+ standard?: Maybe<ConnectorType>;
2591
+ /** Maximum charging speed for a plug */
2592
+ chargingPower?: Maybe<Scalars["Float"]>;
2593
+ };
2594
+ export declare type RequestEvPlugInput = {
2595
+ /** Type of a plug */
2596
+ standard: ConnectorType;
2597
+ /** Maximum charging speed for this plug */
2598
+ chargingPower: Scalars["Float"];
2599
+ };
2600
+ export declare type RequestInput = {
2601
+ /** EV specific data for a route request */
2602
+ ev: RequestEvInput;
2603
+ /** Route request data */
2604
+ routeRequest: RequestRouteInput;
2605
+ };
2606
+ export declare type RequestRoute = {
2607
+ /** Desired amenities near the stations, within a 1 km radius */
2608
+ amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
2609
+ /**
2610
+ * Requested operators
2611
+ * @deprecated Will be removed. Use the operators property instead
2612
+ */
2613
+ operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
2614
+ /**
2615
+ * Preferred operators are required. In case there are no preferred operators the route cannot be calculated
2616
+ * @deprecated Will be removed. Use the operators property instead
2617
+ */
2618
+ operatorRequired?: Maybe<Scalars["Boolean"]>;
2619
+ /**
2620
+ * Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated
2621
+ * @deprecated Will be removed. Use the operators property instead
2622
+ */
2623
+ operatorPrefer?: Maybe<Scalars["Boolean"]>;
2624
+ /** Operator prioritization for a route */
2625
+ operators?: Maybe<RouteOperators>;
2626
+ /** Season */
2627
+ season?: Maybe<RouteSeason>;
2628
+ /** 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% */
2629
+ safeRiskMargin?: Maybe<Scalars["Int"]>;
2630
+ /** Origin of a route */
2631
+ origin?: Maybe<FeaturePoint>;
2632
+ /** Destination of a route */
2633
+ destination?: Maybe<FeaturePoint>;
2634
+ /** Locations where a route will stop */
2635
+ via?: Maybe<Array<Maybe<FeaturePoint>>>;
2636
+ /** Radius in meters for alternative stations along a route (min 500 - max 5000) */
2637
+ stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
2638
+ /** 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 */
2639
+ instructions?: Maybe<Scalars["Boolean"]>;
2640
+ /** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
2641
+ chargeMode?: Maybe<ChargeMode>;
2642
+ };
2643
+ export declare type RequestRouteInput = {
2644
+ /** A list of desired amenities near the stations, with a 1 km radius */
2645
+ amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
2646
+ /** Deprecated: in favor of operators. A list of requested operators */
2647
+ operatorIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
2648
+ /** Deprecated: in favor of operators. Flag which indicates if the operators are required */
2649
+ operatorRequired?: Maybe<Scalars["Boolean"]>;
2650
+ /** Deprecated: in favor of operators. Flag which indicates if the preferred operators should be loaded */
2651
+ operatorPrefer?: Maybe<Scalars["Boolean"]>;
2652
+ /** Operator prioritization for a route */
2653
+ operators?: Maybe<RouteOperatorsInput>;
2654
+ /** Optional flag to specify the season */
2655
+ season?: Maybe<RouteSeason>;
2656
+ /** 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% */
2657
+ safeRiskMargin?: Maybe<Scalars["Int"]>;
2658
+ /** Mode that indicates if we optimize the charging time or always charge to the maximum capacity */
2659
+ chargeMode?: Maybe<ChargeMode>;
2660
+ /** Origin of a route */
2661
+ origin: FeaturePointInput;
2662
+ /** Destination of a route */
2663
+ destination: FeaturePointInput;
2664
+ /** An optional list of locations where we should stop */
2665
+ via?: Maybe<Array<Maybe<FeaturePointInput>>>;
2666
+ /** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000) */
2667
+ stationsAlongRouteRadius?: Maybe<Scalars["Int"]>;
2668
+ /** 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 */
2669
+ instructions?: Maybe<Scalars["Boolean"]>;
2670
+ };
2671
+ export declare type RequestUser = {
2672
+ /** ID of the user */
2673
+ id?: Maybe<Scalars["ID"]>;
2674
+ };
2675
+ /** The review model */
2676
+ export declare type Review = {
2677
+ /** ID of a review */
2678
+ id: Scalars["ID"];
2679
+ /** Station for which a review was provided */
2680
+ station?: Maybe<Station>;
2681
+ /** User who added a review. If a review was added by an anonymous user, this will be null */
2682
+ user?: Maybe<ReviewUser>;
2683
+ /** Rating of a review */
2684
+ rating?: Maybe<Scalars["Int"]>;
2685
+ /** Message of a review */
2686
+ message?: Maybe<Scalars["String"]>;
2687
+ /** Locale of a message */
2688
+ locale?: Maybe<Scalars["String"]>;
2689
+ /** Car that was provided/selected by a user */
2690
+ ev?: Maybe<Car>;
2691
+ /** Plug type that was provided/selected by a user */
2692
+ plugType?: Maybe<ConnectorType>;
2693
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
2694
+ properties?: Maybe<Scalars["JSON"]>;
2695
+ /** Boolean tags for a station review */
2696
+ tags?: Maybe<ReviewTags>;
2697
+ /** Date and time when a review was created */
2698
+ createdAt?: Maybe<Scalars["String"]>;
2699
+ /** Date and time when a review was updated */
2700
+ updatedAt?: Maybe<Scalars["String"]>;
2701
+ };
2702
+ /** Form input to add a new review */
2703
+ export declare type ReviewAdd = {
2704
+ /** Station ID for which a review is provided */
2705
+ stationId: Scalars["String"];
2706
+ /** Rating of a review */
2707
+ rating: Scalars["Int"];
2708
+ /** Review message */
2709
+ message?: Maybe<Scalars["String"]>;
2710
+ /** Locale of a message */
2711
+ locale?: Maybe<Scalars["String"]>;
2712
+ /** ID of the Car that was provided/selected by a user */
2713
+ ev?: Maybe<Scalars["String"]>;
2714
+ /** Plug type that was provided/selected by a user */
2715
+ plugType?: Maybe<ConnectorType>;
2716
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
2717
+ properties?: Maybe<Scalars["JSON"]>;
2718
+ /** Boolean tags for a station review */
2719
+ tags?: Maybe<ReviewTagsInput>;
2720
+ };
2721
+ /** Form input for edit an existing review */
2722
+ export declare type ReviewEdit = {
2723
+ /** Rating of a review */
2724
+ rating: Scalars["Int"];
2725
+ /** Review message */
2726
+ message?: Maybe<Scalars["String"]>;
2727
+ /** Locale of a message */
2728
+ locale?: Maybe<Scalars["String"]>;
2729
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
2730
+ properties?: Maybe<Scalars["JSON"]>;
2731
+ /** Boolean tags for a station review */
2732
+ tags?: Maybe<ReviewTagsInput>;
2733
+ };
2734
+ /** Statistical information for reviews of a station */
2735
+ export declare type ReviewStats = {
2736
+ /** Average of all reviews */
2737
+ rating?: Maybe<Scalars["Float"]>;
2738
+ /** 'Total number of reviews */
2739
+ count?: Maybe<Scalars["Int"]>;
2740
+ };
2741
+ /** Boolean tags for the station review */
2742
+ export declare type ReviewTags = {
2743
+ /** Flag which indicates if the station was working when the review was added */
2744
+ working?: Maybe<Scalars["Boolean"]>;
2745
+ /** Flag which indicates if the user recommended the station when the review was added */
2746
+ recommended?: Maybe<Scalars["Boolean"]>;
2747
+ };
2748
+ /** Boolean tags for a station review */
2749
+ export declare type ReviewTagsInput = {
2750
+ /** Flag which indicates if a station was working when the review was added */
2751
+ working?: Maybe<Scalars["Boolean"]>;
2752
+ /** Flag which indicates if a user recommended a station when the review was added */
2753
+ recommended?: Maybe<Scalars["Boolean"]>;
2754
+ };
2755
+ /** Special format for the user of a review */
2756
+ export declare type ReviewUser = {
2757
+ /** User full name. If a review was added by an anonymous user, this will be null */
2758
+ name?: Maybe<Scalars["String"]>;
2759
+ /**
2760
+ * User ID
2761
+ * @deprecated Not sent back anymore, will be null
2762
+ */
2763
+ id?: Maybe<Scalars["ID"]>;
2764
+ /**
2765
+ * First name
2766
+ * @deprecated Please use name instead
2767
+ */
2768
+ firstName?: Maybe<Scalars["String"]>;
2769
+ /**
2770
+ * Last name
2771
+ * @deprecated Please use name instead
2772
+ */
2773
+ lastName?: Maybe<Scalars["String"]>;
2774
+ };
2775
+ export declare type Route = {
2776
+ /** Recommended route */
2777
+ route?: Maybe<RouteAlternative>;
2778
+ /** Available alternatives */
2779
+ alternatives?: Maybe<Array<Maybe<RouteAlternative>>>;
2780
+ /** EV specific data for a route request */
2781
+ ev?: Maybe<RequestEv>;
2782
+ /** @deprecated You will receive null values */
2783
+ user?: Maybe<RequestUser>;
2784
+ /** Route request data */
2785
+ routeRequest?: Maybe<RequestRoute>;
2786
+ /** Route status */
2787
+ status?: Maybe<RouteStatus>;
2788
+ };
2789
+ export declare type RouteAlternative = {
2790
+ /** ID of a route alternative */
2791
+ id?: Maybe<Scalars["ID"]>;
2792
+ /** Type of alternative route */
2793
+ type?: Maybe<RouteAlternativeType>;
2794
+ /** Number of charges along a route */
2795
+ charges?: Maybe<Scalars["Int"]>;
2796
+ /** Number of available charges along a route. */
2797
+ chargesAvailable?: Maybe<Scalars["Int"]>;
2798
+ /** Number of occupied charges along a route. */
2799
+ chargesOccupied?: Maybe<Scalars["Int"]>;
2800
+ /** Number of unknown charges along a route. */
2801
+ chargesUnknown?: Maybe<Scalars["Int"]>;
2802
+ /** Number of out of order charges along a route. */
2803
+ chargesOutOfOrder?: Maybe<Scalars["Int"]>;
2804
+ /** Total distance of a route in meters. */
2805
+ distance?: Maybe<Scalars["Int"]>;
2806
+ /** Total duration of a route, including charge time, in seconds */
2807
+ duration?: Maybe<Scalars["Int"]>;
2808
+ /** Total energy used for a route in kWh */
2809
+ consumption?: Maybe<Scalars["Float"]>;
2810
+ /** Total time required to charge for an entire route, in seconds */
2811
+ chargeTime?: Maybe<Scalars["Float"]>;
2812
+ /**
2813
+ * Amenity ranking for an alternative
2814
+ * @deprecated Will be removed in the future
2815
+ */
2816
+ amenityRanking?: Maybe<Scalars["Int"]>;
2817
+ /** Range, in meters, available at the beginning of a trip */
2818
+ rangeStart?: Maybe<Scalars["Int"]>;
2819
+ /** Total energy in a battery at the beginning of a trip, in kWh */
2820
+ rangeStartKwh?: Maybe<Scalars["Float"]>;
2821
+ /** Total energy in a battery at the beginning of a trip, in percentage */
2822
+ rangeStartPercentage?: Maybe<Scalars["Int"]>;
2823
+ /** Remaining range, in meters, at the end of a trip */
2824
+ rangeEnd?: Maybe<Scalars["Int"]>;
2825
+ /** Remaining range, energy in kWh, at the end of a trip. */
2826
+ rangeEndKwh?: Maybe<Scalars["Float"]>;
2827
+ /** Remaining range, energy in percentage, at the end of a trip. */
2828
+ rangeEndPercentage?: Maybe<Scalars["Int"]>;
2829
+ /** Text information about a route direction */
2830
+ via?: Maybe<Scalars["String"]>;
2831
+ /** Polyline containing encoded coordinates */
2832
+ polyline?: Maybe<Scalars["String"]>;
2833
+ /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments */
2834
+ pathPlot?: Maybe<Array<Maybe<PathSegment>>>;
2835
+ /**
2836
+ * Elevation values. Each elevationPlot has a hundred points, independent of the length of a route
2837
+ * @deprecated Will be removed in the future; Use the pathPlot property
2838
+ */
2839
+ elevationPlot?: Maybe<Array<Maybe<Scalars["Float"]>>>;
2840
+ /** Total number of meters which are going up on a route */
2841
+ elevationUp?: Maybe<Scalars["Float"]>;
2842
+ /** Total number of meters which are going down on a route */
2843
+ elevationDown?: Maybe<Scalars["Float"]>;
2844
+ /** Highest value from the elevation array */
2845
+ elevationMax?: Maybe<Scalars["Float"]>;
2846
+ /** Money and CO2 saving information */
2847
+ saving?: Maybe<RouteAlternativeSaving>;
2848
+ /** Legs of the route */
2849
+ legs?: Maybe<Array<Maybe<RouteLeg>>>;
2850
+ /** List of raw turn-by-turn navigation instructions */
2851
+ instructions?: Maybe<Array<Maybe<RouteInstruction>>>;
2852
+ /** Alternative stations along a route within specified radius in meters. Only if it was provided at newRoute mutation */
2853
+ stationsAlongRoute?: Maybe<Array<Maybe<RouteStationsAlong>>>;
2854
+ /** Tags of a route alternative. Values: road, highway, toll, ferry, etc. */
2855
+ tags?: Maybe<Array<Maybe<RouteTagType>>>;
2856
+ };
2857
+ export declare type RouteAlternativepolylineArgs = {
2858
+ decimals?: Maybe<Scalars["Int"]>;
2859
+ };
2860
+ export declare type RouteAlternativeSaving = {
2861
+ /** Total amount of CO2, in grams, which would be used with a petrol vehicle */
2862
+ co2?: Maybe<Scalars["String"]>;
2863
+ /** Money saved by a user driving this route with the electric vehicle */
2864
+ money?: Maybe<Scalars["String"]>;
2865
+ /** Currency */
2866
+ currency?: Maybe<Scalars["String"]>;
2867
+ /** Average gas price with which the calculation was made */
2868
+ averageGasPrice?: Maybe<Scalars["String"]>;
2869
+ /** Average energy price with which the calculation was made */
2870
+ averageEnergyPrice?: Maybe<Scalars["String"]>;
2871
+ };
2872
+ /** Types of an alternative route */
2873
+ export declare enum RouteAlternativeType {
2874
+ /** Fastest route between origin and destination */
2875
+ FASTEST = "fastest",
2876
+ /** Best matching route based on operator and amenities preferences */
2877
+ BESTMATCHING = "bestMatching",
2878
+ /** An alternative to the fastest route */
2879
+ ALTERNATIVE = "alternative"
2880
+ }
2881
+ export declare type RouteInstruction = {
2882
+ /** Information about the points on the polyline */
2883
+ points?: Maybe<RouteInstructionPoints>;
2884
+ /** Sign of the instruction. See `RouteInstructionSign` */
2885
+ sign?: Maybe<RouteInstructionSign>;
2886
+ /** Name of the street on which the instruction is */
2887
+ name?: Maybe<Scalars["String"]>;
2888
+ /** Distance, in meters, of the current route instruction */
2889
+ distance?: Maybe<Scalars["Int"]>;
2890
+ /** Duration, in seconds, of the current route instruction */
2891
+ time?: Maybe<Scalars["Int"]>;
2892
+ /** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null */
2893
+ exit_number?: Maybe<Scalars["Int"]>;
2894
+ /** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null */
2895
+ turn_angle?: Maybe<Scalars["Float"]>;
2896
+ };
2897
+ export declare type RouteInstructionPoints = {
2898
+ /** Number of polyline points which are included in this instruction */
2899
+ size?: Maybe<Scalars["Int"]>;
2900
+ /** 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 */
2901
+ interval?: Maybe<Array<Maybe<Scalars["Int"]>>>;
2902
+ };
2903
+ /** Sign belonging to the instruction indicating the main maneuver */
2904
+ export declare enum RouteInstructionSign {
2905
+ UNKNOWN = "UNKNOWN",
2906
+ U_TURN_UNKNOWN = "U_TURN_UNKNOWN",
2907
+ U_TURN_LEFT = "U_TURN_LEFT",
2908
+ KEEP_LEFT = "KEEP_LEFT",
2909
+ LEAVE_ROUNDABOUT = "LEAVE_ROUNDABOUT",
2910
+ TURN_SHARP_LEFT = "TURN_SHARP_LEFT",
2911
+ TURN_LEFT = "TURN_LEFT",
2912
+ TURN_SLIGHT_LEFT = "TURN_SLIGHT_LEFT",
2913
+ CONTINUE_ON_STREET = "CONTINUE_ON_STREET",
2914
+ TURN_SLIGHT_RIGHT = "TURN_SLIGHT_RIGHT",
2915
+ TURN_RIGHT = "TURN_RIGHT",
2916
+ TURN_SHARP_RIGHT = "TURN_SHARP_RIGHT",
2917
+ FINISH = "FINISH",
2918
+ REACHED_VIA = "REACHED_VIA",
2919
+ REACHED_CHARGING_STATION = "REACHED_CHARGING_STATION",
2920
+ USE_ROUNDABOUT = "USE_ROUNDABOUT",
2921
+ KEEP_RIGHT = "KEEP_RIGHT",
2922
+ U_TURN_RIGHT = "U_TURN_RIGHT",
2923
+ PT_START_TRIP = "PT_START_TRIP",
2924
+ PT_TRANSFER = "PT_TRANSFER",
2925
+ PT_END_TRIP = "PT_END_TRIP",
2926
+ IGNORE = "IGNORE"
2927
+ }
2928
+ export declare type RouteLeg = {
2929
+ /** ID of a leg */
2930
+ id?: Maybe<Scalars["ID"]>;
2931
+ /** Distance from the start to the end of a leg, in meters */
2932
+ distance?: Maybe<Scalars["Int"]>;
2933
+ /** Total drive time from the start to the end of a leg, in seconds */
2934
+ duration?: Maybe<Scalars["Int"]>;
2935
+ /** Total energy used in a leg in kWh */
2936
+ consumption?: Maybe<Scalars["Float"]>;
2937
+ /** Range, in meters, available at the beginning of a leg */
2938
+ rangeStart?: Maybe<Scalars["Int"]>;
2939
+ /** Total energy in a battery at the beginning of a leg, in kWh */
2940
+ rangeStartKwh?: Maybe<Scalars["Float"]>;
2941
+ /** Total energy in a battery at the beginning of a trip, in percentage */
2942
+ rangeStartPercentage?: Maybe<Scalars["Int"]>;
2943
+ /** Range, in meters, available at the end of a leg */
2944
+ rangeEnd?: Maybe<Scalars["Int"]>;
2945
+ /** Total energy left in a battery at the end of a leg, in kWh */
2946
+ rangeEndKwh?: Maybe<Scalars["Float"]>;
2947
+ /** Remaining range, energy in percentage, at the end of a trip. */
2948
+ rangeEndPercentage?: Maybe<Scalars["Int"]>;
2949
+ /** Origin point location */
2950
+ origin?: Maybe<FeaturePoint>;
2951
+ /** Destination point location */
2952
+ destination?: Maybe<FeaturePoint>;
2953
+ /** Type of a leg */
2954
+ type?: Maybe<LegType>;
2955
+ /** 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 */
2956
+ name?: Maybe<Scalars["String"]>;
2957
+ /** ID of a station */
2958
+ stationId?: Maybe<Scalars["String"]>;
2959
+ /** ID of an operator */
2960
+ operatorId?: Maybe<Scalars["String"]>;
2961
+ /** Name of an operator */
2962
+ operatorName?: Maybe<Scalars["String"]>;
2963
+ /** Ranking of an operator */
2964
+ operatorRanking?: Maybe<Scalars["Int"]>;
2965
+ /** Total time required to charge a battery until 80%, in seconds */
2966
+ chargeTime?: Maybe<Scalars["Int"]>;
2967
+ /** Recommended EVSE where to charge */
2968
+ evse?: Maybe<EVSE>;
2969
+ /** Recommended connector for charging */
2970
+ connector?: Maybe<Connector>;
2971
+ /** Number of available plugs at a station */
2972
+ plugsAvailable?: Maybe<Scalars["Int"]>;
2973
+ /** Number of occupied plugs at a charge station */
2974
+ plugsOccupied?: Maybe<Scalars["Int"]>;
2975
+ /** Number of unknown plugs at a charge station */
2976
+ plugsUnknown?: Maybe<Scalars["Int"]>;
2977
+ /** Number of out of order plugs at a charge station */
2978
+ plugsOutOfOrder?: Maybe<Scalars["Int"]>;
2979
+ /** Total number of plugs at a charge station */
2980
+ plugsCount?: Maybe<Scalars["Int"]>;
2981
+ /** Polyline containing encoded coordinates */
2982
+ polyline?: Maybe<Scalars["String"]>;
2983
+ /** Steps of a leg */
2984
+ steps?: Maybe<Array<Maybe<RouteStep>>>;
2985
+ /** Tags of a leg. Values: road, highway, toll, ferry */
2986
+ tags?: Maybe<Array<Maybe<RouteTagType>>>;
2987
+ };
2988
+ export declare type RouteLegpolylineArgs = {
2989
+ decimals?: Maybe<Scalars["Int"]>;
2990
+ };
2991
+ /** Prioritized operators for a route calculation */
2992
+ export declare type RouteOperators = {
2993
+ /** Flag indicating if the operators ranking should be preferred or required */
2994
+ type?: Maybe<RouteOperatorsType>;
2995
+ /** Ranking of an operator with multiple levels, each level having it's own penalty value */
2996
+ ranking?: Maybe<RouteOperatorsRanking>;
2997
+ /** Operator IDs which should be excluded from a route */
2998
+ exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
2999
+ };
3000
+ /** Prioritized operators for a route calculation */
3001
+ export declare type RouteOperatorsInput = {
3002
+ /** Flag indicating if the operators ranking should be preferred or required */
3003
+ type?: Maybe<RouteOperatorsType>;
3004
+ /** Ranking of an operator with multiple levels, each level having it's own penalty value */
3005
+ ranking?: Maybe<RouteOperatorsRankingInput>;
3006
+ /** Operator IDs which should be excluded from a route */
3007
+ exclude?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3008
+ };
3009
+ /** Ranking configuration for prioritized operators */
3010
+ export declare type RouteOperatorsRanking = {
3011
+ /** Level 1 (most significant) for operator ranking */
3012
+ level1?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3013
+ /** Level 2 for operator ranking */
3014
+ level2?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3015
+ /** Level 3 for operator ranking */
3016
+ level3?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3017
+ /** Level 4 for operator ranking */
3018
+ level4?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3019
+ /** Level 5 for operator ranking */
3020
+ level5?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3021
+ /** Level 6 for operator ranking */
3022
+ level6?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3023
+ /** Level 7 for operator ranking */
3024
+ level7?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3025
+ /** Level 8 for operator ranking */
3026
+ level8?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3027
+ /** Level 9 for operator ranking */
3028
+ level9?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3029
+ /** Level 10 (least significant) for operator ranking */
3030
+ level10?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3031
+ };
3032
+ /** Ranking configuration for prioritized operators */
3033
+ export declare type RouteOperatorsRankingInput = {
3034
+ /** Level 1 (most significant) for operator ranking */
3035
+ level1?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3036
+ /** Level 2 for operator ranking */
3037
+ level2?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3038
+ /** Level 3 for operator ranking */
3039
+ level3?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3040
+ /** Level 4 for operator ranking */
3041
+ level4?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3042
+ /** Level 5 for operator ranking */
3043
+ level5?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3044
+ /** Level 6 for operator ranking */
3045
+ level6?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3046
+ /** Level 7 for operator ranking */
3047
+ level7?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3048
+ /** Level 8 for operator ranking */
3049
+ level8?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3050
+ /** Level 9 for operator ranking */
3051
+ level9?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3052
+ /** Level 10 (least significant) for operator ranking */
3053
+ level10?: Maybe<Array<Maybe<Scalars["ID"]>>>;
3054
+ };
3055
+ /** Type of operator prioritization for a route */
3056
+ export declare enum RouteOperatorsType {
3057
+ /** Default option. Operators ranking will not be taken into account if no type is given */
3058
+ NONE = "none",
3059
+ /** Operators given in the operators ranking will be preferred when calculating routes */
3060
+ PREFERRED = "preferred",
3061
+ /** Operators given in the operators ranking will be required when calculating routes, all other operators will be ignored */
3062
+ REQUIRED = "required"
3063
+ }
3064
+ export declare type RoutePath = {
3065
+ /** GeoJSON location of a route path segment */
3066
+ location?: Maybe<Point>;
3067
+ /** Elevation (altitude) in meters */
3068
+ elevation?: Maybe<Scalars["Int"]>;
3069
+ /** Average speed, in km/h, for this route path segment */
3070
+ averageSpeed?: Maybe<Scalars["Float"]>;
3071
+ /** Recommended speed, in km/h for this route path segment to optimise the consumption */
3072
+ recommendedSpeed?: Maybe<Scalars["Float"]>;
3073
+ /** Consumption, in kWh, of a route path segment */
3074
+ consumption?: Maybe<Scalars["Float"]>;
3075
+ /** Consumption, in kWh per km, of a route path segment */
3076
+ consumptionPerKm?: Maybe<Scalars["Float"]>;
3077
+ /** Distance, in meters, of a route path segment */
3078
+ distance?: Maybe<Scalars["Float"]>;
3079
+ /** Duration, in seconds, of a route path segment */
3080
+ duration?: Maybe<Scalars["Float"]>;
3081
+ };
3082
+ /** The season of the route */
3083
+ export declare enum RouteSeason {
3084
+ /** We suppose it is summer and we have the best weather conditions */
3085
+ SUMMER = "summer",
3086
+ /** We suppose it is winter and we have the worst weather conditions */
3087
+ WINTER = "winter",
3088
+ /** We fetch the current weather conditions */
3089
+ CURRENT = "current"
3090
+ }
3091
+ export declare type RouteStationsAlong = {
3092
+ /** The ID of station */
3093
+ id?: Maybe<Scalars["String"]>;
3094
+ /** Geojson location of a station */
3095
+ location?: Maybe<Point>;
3096
+ /** Speed of a station. A station along a route can be either fast or turbo */
3097
+ speed?: Maybe<StationSpeedType>;
3098
+ /** Status of a station */
3099
+ status?: Maybe<ChargerStatus>;
3100
+ /** The station uses a preferred operator */
3101
+ preferredOperator?: Maybe<Scalars["Boolean"]>;
3102
+ /** Distance in meters between station and route path */
3103
+ distance?: Maybe<Scalars["Int"]>;
3104
+ };
3105
+ /** The status of a route. The status can be pending, processing, done, not_found or error */
3106
+ export declare enum RouteStatus {
3107
+ /** Route is queued and pending processing. Temporary status */
3108
+ PENDING = "pending",
3109
+ /** We are computing the route for your request. Temporary status */
3110
+ PROCESSING = "processing",
3111
+ /** We finished computing the route, with a result. Final status */
3112
+ DONE = "done",
3113
+ /** We finished the computing the route, without any result. Final status */
3114
+ NOT_FOUND = "not_found",
3115
+ /** An error occurred while computing the route. Final status */
3116
+ ERROR = "error"
3117
+ }
3118
+ export declare type RouteStep = {
3119
+ /** ID of a step */
3120
+ id?: Maybe<Scalars["ID"]>;
3121
+ /** Type of a step */
3122
+ type?: Maybe<StepType>;
3123
+ /** Polyline containing encoded coordinates */
3124
+ polyline?: Maybe<Scalars["String"]>;
3125
+ /** Distance from the start to the end of a step, in meters */
3126
+ distance?: Maybe<Scalars["Int"]>;
3127
+ /** Total drive time from the start to the end of a step, in seconds */
3128
+ duration?: Maybe<Scalars["Int"]>;
3129
+ /** Total enery used in a step in kWh */
3130
+ consumption?: Maybe<Scalars["Float"]>;
3131
+ };
3132
+ export declare type RouteSteppolylineArgs = {
3133
+ decimals?: Maybe<Scalars["Int"]>;
3134
+ };
3135
+ /** Tags of a route */
3136
+ export declare enum RouteTagType {
3137
+ ROAD = "road",
3138
+ HIGHWAY = "highway",
3139
+ TOLL = "toll",
3140
+ FERRY = "ferry"
3141
+ }
3142
+ /** Standards(plug type) stats model */
3143
+ export declare type StandardStats = {
3144
+ /** The plug type */
3145
+ type?: Maybe<ConnectorType>;
3146
+ /** The total number of stations with the specified plug */
3147
+ total?: Maybe<Scalars["Int"]>;
3148
+ };
3149
+ /** Station data which extends OCPI Location */
3150
+ export declare type Station = {
3151
+ /** Review of a station */
3152
+ review?: Maybe<ReviewStats>;
3153
+ /** Unique ID of a station */
3154
+ id: Scalars["ID"];
3155
+ /** ISO-3166 alpha-2 country code of a station */
3156
+ country_code?: Maybe<Scalars["String"]>;
3157
+ /** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard) */
3158
+ party_id?: Maybe<Scalars["String"]>;
3159
+ /**
3160
+ * Defines if a location may be published on a website or app etc.
3161
+ * When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
3162
+ * When the same location has EVSEs that may be published and may not be published, two 'locations' should be created
3163
+ */
3164
+ publish?: Maybe<Scalars["Boolean"]>;
3165
+ /** Name of a charging station */
3166
+ name?: Maybe<Scalars["String"]>;
3167
+ /** Street/block name and house number if available */
3168
+ address?: Maybe<Scalars["String"]>;
3169
+ /** City or town */
3170
+ city?: Maybe<Scalars["String"]>;
3171
+ /** 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. */
3172
+ postal_code?: Maybe<Scalars["String"]>;
3173
+ /** State or province of a location, only to be used when relevant */
3174
+ state?: Maybe<Scalars["String"]>;
3175
+ /** ISO 3166-1 alpha-3 code for the country of this station */
3176
+ country?: Maybe<Scalars["String"]>;
3177
+ /** Coordinates of a location */
3178
+ coordinates?: Maybe<OCPIGeoLocation>;
3179
+ /** Geographical location of related points relevant to a user */
3180
+ related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
3181
+ /** Type of parking at a charge point location */
3182
+ parking_type?: Maybe<OCPIParkingType>;
3183
+ /** EVSEs that belong to a station */
3184
+ evses?: Maybe<Array<Maybe<EVSE>>>;
3185
+ /** Human-readable directions on how to reach a station */
3186
+ directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
3187
+ /** Information about an operator */
3188
+ operator?: Maybe<Operator>;
3189
+ /** Information about a suboperator if applicable */
3190
+ suboperator?: Maybe<Operator>;
3191
+ /** Information about an owner if available */
3192
+ owner?: Maybe<Operator>;
3193
+ /** Facilities a charging station belongs to */
3194
+ facilities?: Maybe<Array<Maybe<OCPIFacility>>>;
3195
+ /** 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) */
3196
+ time_zone?: Maybe<Scalars["String"]>;
3197
+ /** Times when an EVSEs at a location can be accessed for charging */
3198
+ opening_times?: Maybe<OCPIHours>;
3199
+ /** 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 */
3200
+ charging_when_closed?: Maybe<Scalars["Boolean"]>;
3201
+ /** Links to images related to a location such as photos or logos */
3202
+ images?: Maybe<Array<Maybe<OCPIImage>>>;
3203
+ /** Details of the energy supplied at a location */
3204
+ energy_mix?: Maybe<OCPIEnergyMix>;
3205
+ /** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created) */
3206
+ last_updated?: Maybe<Scalars["DateTime"]>;
3207
+ /** ID provided by a station data source */
3208
+ external_id?: Maybe<Scalars["String"]>;
3209
+ /** GeoJSON location of a charging station */
3210
+ location?: Maybe<Point>;
3211
+ /** Elevation (altitude) level */
3212
+ elevation?: Maybe<Scalars["Int"]>;
3213
+ /** Groups of EVSEs by power and type */
3214
+ chargers?: Maybe<Array<Maybe<Charger>>>;
3215
+ /** Amenities located at this location */
3216
+ amenities?: Maybe<Scalars["JSON"]>;
3217
+ /** Enriched information about the physical address of a station */
3218
+ physical_address?: Maybe<Address>;
3219
+ /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
3220
+ properties?: Maybe<Scalars["JSON"]>;
3221
+ /** A flag that indicates if a station has real-time information about the availability of its connectors */
3222
+ realtime?: Maybe<Scalars["Boolean"]>;
3223
+ /** A flag that indicates if a station is on private property */
3224
+ private?: Maybe<Scalars["Boolean"]>;
3225
+ /** Connectors grouped by power */
3226
+ power?: Maybe<Scalars["JSON"]>;
3227
+ /**
3228
+ * Station availability
3229
+ * @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy
3230
+ */
3231
+ predicted_availability?: Maybe<Array<Maybe<StationPredictedAvailability>>>;
3232
+ /** Predicted station occupancy */
3233
+ predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
3234
+ /** Charging speed for a station */
3235
+ speed?: Maybe<StationSpeedType>;
3236
+ /** Global status for a station */
3237
+ status?: Maybe<ChargerStatus>;
3238
+ };
3239
+ /** Filter which can be applied to retrieve the station around list action */
3240
+ export declare type StationAroundQuery = {
3241
+ /** The GeoJSON Point of the center of the around me circle */
3242
+ location: PointInput;
3243
+ /** Distance, in meters, to search around */
3244
+ distance: Scalars["Int"];
3245
+ /** Power in kWh */
3246
+ power?: Maybe<Array<Maybe<Scalars["Float"]>>>;
3247
+ /** Amentities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park */
3248
+ amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
3249
+ };
3250
+ /** Filter which can be applied to retrieve the station list action */
3251
+ export declare type StationListQuery = {
3252
+ /** ID of the station */
3253
+ id?: Maybe<Scalars["ID"]>;
3254
+ /** External ID of the station provided by the station data source */
3255
+ external_id?: Maybe<Scalars["String"]>;
3256
+ /** Exact name */
3257
+ name?: Maybe<Scalars["String"]>;
3258
+ };
3259
+ /** Station availability for each weekday and hour */
3260
+ export declare type StationPredictedAvailability = {
3261
+ /** Number of weekday from 1 (monday) to 7 (sunday) */
3262
+ weekday?: Maybe<Scalars["Int"]>;
3263
+ /** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)) */
3264
+ prediction?: Maybe<Array<Maybe<Scalars["Int"]>>>;
3265
+ };
3266
+ /** Station occupancy for each weekday and hour */
3267
+ export declare type StationPredictedOccupancy = {
3268
+ /** Number of weekday from 1 (monday) to 7 (sunday) */
3269
+ weekday?: Maybe<Scalars["Int"]>;
3270
+ /** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied */
3271
+ occupancy?: Maybe<Scalars["Int"]>;
3272
+ /** Start of the period of the occupancy prediction (string of 'hh-mmZ' format) */
3273
+ period_begin?: Maybe<Scalars["String"]>;
3274
+ /** End of the period of the occupancy prediction (string of 'hh-mmZ' format) */
3275
+ period_end?: Maybe<Scalars["String"]>;
3276
+ };
3277
+ /** The station speed type */
3278
+ export declare enum StationSpeedType {
3279
+ /** Slow charging (below 43 kWh) */
3280
+ SLOW = "slow",
3281
+ /** Fast charging stations (above 43 kWh and below 150 kWh) */
3282
+ FAST = "fast",
3283
+ /** Ultra fast charging stations (above 150 kWh) */
3284
+ TURBO = "turbo"
3285
+ }
3286
+ /** The station stats model */
3287
+ export declare type StationStats = {
3288
+ /** Stations count grouped by standards */
3289
+ standards?: Maybe<Array<Maybe<StandardStats>>>;
3290
+ /** Stations count grouped by power */
3291
+ power?: Maybe<Array<Maybe<PowerStats>>>;
3292
+ /** Stations count grouped by amenities */
3293
+ amenities?: Maybe<Array<Maybe<AmenityStats>>>;
3294
+ };
3295
+ /** Types of a route step */
3296
+ export declare enum StepType {
3297
+ /** This step is a road */
3298
+ ROAD = "road",
3299
+ /** This step is a highway */
3300
+ HIGHWAY = "highway",
3301
+ /** This step is a toll road */
3302
+ TOLL = "toll",
3303
+ /** This step is a ferry */
3304
+ FERRY = "ferry"
3305
+ }
3306
+ export declare type Subscription = {
3307
+ /**
3308
+ * Subscription for a new operator was added in the system event
3309
+ * @deprecated operatorAdded has been removed, no value will be sent.
3310
+ */
3311
+ operatorAdded?: Maybe<Operator>;
3312
+ /**
3313
+ * Subscription for an operator was updated in the system event, any operator
3314
+ * @deprecated operatorUpdated has been removed, no value will be sent.
3315
+ */
3316
+ operatorUpdated?: Maybe<Operator>;
3317
+ /**
3318
+ * Subscription for an operator was removed from the system event, any operator
3319
+ * @deprecated operatorDeleted has been removed, no value will be sent.
3320
+ */
3321
+ operatorDeleted?: Maybe<Operator>;
3322
+ /**
3323
+ * Subscription for a specific operator was updated in the system event
3324
+ * @deprecated operatorUpdatedById has been removed, no value will be sent.
3325
+ */
3326
+ operatorUpdatedById?: Maybe<Operator>;
3327
+ /**
3328
+ * Subscription for a specific operator was removed from the system event
3329
+ * @deprecated operatorDeletedById has been removed, no value will be sent.
3330
+ */
3331
+ operatorDeletedById?: Maybe<Operator>;
3332
+ /** Subscription for a specific route was updated in the system event */
3333
+ routeUpdatedById?: Maybe<Route>;
3334
+ /**
3335
+ * Subscription for a new station was added in the system event
3336
+ * @deprecated stationAdded has been removed, no value will be sent.
3337
+ */
3338
+ stationAdded?: Maybe<Station>;
3339
+ /**
3340
+ * Subscription for a station was updated in the system event, any station
3341
+ * @deprecated stationUpdated has been removed, no value will be sent.
3342
+ */
3343
+ stationUpdated?: Maybe<Station>;
3344
+ /**
3345
+ * Subscription for a station was removed from the system event, any station
3346
+ * @deprecated stationDeleted has been removed, no value will be sent.
3347
+ */
3348
+ stationDeleted?: Maybe<Station>;
3349
+ /**
3350
+ * Subscription for a specific station was updated in the system event
3351
+ * @deprecated stationUpdatedById has been removed, no value will be sent.
3352
+ */
3353
+ stationUpdatedById?: Maybe<Station>;
3354
+ /**
3355
+ * Subscription for a specific station was removed from the system event
3356
+ * @deprecated stationDeletedById has been removed, no value will be sent.
3357
+ */
3358
+ stationDeletedById?: Maybe<Station>;
3359
+ };
3360
+ export declare type SubscriptionoperatorUpdatedByIdArgs = {
3361
+ id: Scalars["ID"];
3362
+ };
3363
+ export declare type SubscriptionoperatorDeletedByIdArgs = {
3364
+ id: Scalars["ID"];
3365
+ };
3366
+ export declare type SubscriptionrouteUpdatedByIdArgs = {
3367
+ id: Scalars["ID"];
3368
+ };
3369
+ export declare type SubscriptionstationUpdatedByIdArgs = {
3370
+ id: Scalars["ID"];
3371
+ };
3372
+ export declare type SubscriptionstationDeletedByIdArgs = {
3373
+ id: Scalars["ID"];
3374
+ };