@chargetrip/types 1.39.0 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +95 -12
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +95 -12
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +760 -353
- package/graphql.schema.json +2201 -400
- package/package.json +1 -1
- package/src/graphql.ts +796 -353
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -56,18 +56,37 @@ export declare type Address = {
|
|
|
56
56
|
country?: Maybe<Scalars["String"]>;
|
|
57
57
|
/** County code (2 letters). */
|
|
58
58
|
county?: Maybe<Scalars["String"]>;
|
|
59
|
+
/** State or province. */
|
|
60
|
+
state_province?: Maybe<Scalars["String"]>;
|
|
61
|
+
/** Municipality. */
|
|
62
|
+
municipality?: Maybe<Scalars["String"]>;
|
|
59
63
|
/** City. */
|
|
60
64
|
city?: Maybe<Scalars["String"]>;
|
|
61
65
|
/** Street name. */
|
|
62
66
|
street?: Maybe<Scalars["String"]>;
|
|
63
67
|
/** Street number. */
|
|
64
68
|
number?: Maybe<Scalars["String"]>;
|
|
65
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* Postal code of the location.
|
|
71
|
+
* @deprecated In favor of postal_code.
|
|
72
|
+
*/
|
|
66
73
|
postalCode?: Maybe<Scalars["String"]>;
|
|
67
|
-
/**
|
|
74
|
+
/**
|
|
75
|
+
* String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>.
|
|
76
|
+
* @deprecated In favor of what_3_words.
|
|
77
|
+
*/
|
|
68
78
|
what3Words?: Maybe<Scalars["String"]>;
|
|
69
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* Human-readable address of the location.
|
|
81
|
+
* @deprecated In favor of formatted_address.
|
|
82
|
+
*/
|
|
70
83
|
formattedAddress?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
84
|
+
/** Postal code of the location. */
|
|
85
|
+
postal_code?: Maybe<Scalars["String"]>;
|
|
86
|
+
/** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>. */
|
|
87
|
+
what_3_words?: Maybe<Scalars["String"]>;
|
|
88
|
+
/** Human-readable address of the location. */
|
|
89
|
+
formatted_address?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
71
90
|
};
|
|
72
91
|
export declare enum AdhocAuthorisationMethod {
|
|
73
92
|
CREDIT_CARD = "CREDIT_CARD",
|
|
@@ -1350,40 +1369,40 @@ export declare type ChargeTotalInput = {
|
|
|
1350
1369
|
/** Source of inputted data, defaults to 'manual'. */
|
|
1351
1370
|
source?: Maybe<TelemetryInputSource>;
|
|
1352
1371
|
};
|
|
1353
|
-
/** A
|
|
1372
|
+
/** A grouped representation of EVSEs. */
|
|
1354
1373
|
export declare type Charger = {
|
|
1355
|
-
/** Type of charger */
|
|
1374
|
+
/** Type of a charger. */
|
|
1356
1375
|
standard?: Maybe<ConnectorType>;
|
|
1357
|
-
/** Power of a charger */
|
|
1376
|
+
/** Power of a charger. */
|
|
1358
1377
|
power?: Maybe<Scalars["Float"]>;
|
|
1359
|
-
/** Price of a charger */
|
|
1378
|
+
/** Price of a charger. */
|
|
1360
1379
|
price?: Maybe<Scalars["String"]>;
|
|
1361
|
-
/** Charging speed */
|
|
1380
|
+
/** Charging speed. */
|
|
1362
1381
|
speed?: Maybe<StationSpeedType>;
|
|
1363
|
-
/** Statuses of all the EVSEs grouped in a charger */
|
|
1382
|
+
/** Statuses of all the EVSEs grouped in a charger. */
|
|
1364
1383
|
status?: Maybe<ChargerStatuses>;
|
|
1365
|
-
/** Total number of EVSEs grouped in a charger */
|
|
1384
|
+
/** Total number of EVSEs grouped in a charger. */
|
|
1366
1385
|
total?: Maybe<Scalars["Int"]>;
|
|
1367
1386
|
};
|
|
1368
1387
|
export declare enum ChargerStatus {
|
|
1369
|
-
/** The charger is free */
|
|
1388
|
+
/** The charger is free. */
|
|
1370
1389
|
FREE = "free",
|
|
1371
|
-
/** The charger is occupied/busy */
|
|
1390
|
+
/** The charger is occupied/busy. */
|
|
1372
1391
|
BUSY = "busy",
|
|
1373
|
-
/** The charger is unknown */
|
|
1392
|
+
/** The charger is unknown. */
|
|
1374
1393
|
UNKNOWN = "unknown",
|
|
1375
|
-
/** The charger has an error */
|
|
1394
|
+
/** The charger has an error. */
|
|
1376
1395
|
ERROR = "error"
|
|
1377
1396
|
}
|
|
1378
|
-
/**
|
|
1397
|
+
/** Grouping by status of the chargers. */
|
|
1379
1398
|
export declare type ChargerStatuses = {
|
|
1380
|
-
/** How many are free */
|
|
1399
|
+
/** How many are free. */
|
|
1381
1400
|
free?: Maybe<Scalars["Int"]>;
|
|
1382
|
-
/** How many are busy */
|
|
1401
|
+
/** How many are busy. */
|
|
1383
1402
|
busy?: Maybe<Scalars["Int"]>;
|
|
1384
|
-
/** How many are unknown */
|
|
1403
|
+
/** How many are unknown. */
|
|
1385
1404
|
unknown?: Maybe<Scalars["Int"]>;
|
|
1386
|
-
/** How many are not available */
|
|
1405
|
+
/** How many are not available. */
|
|
1387
1406
|
error?: Maybe<Scalars["Int"]>;
|
|
1388
1407
|
};
|
|
1389
1408
|
/**
|
|
@@ -1414,23 +1433,23 @@ export declare type ChargetripRangebestArgs = {
|
|
|
1414
1433
|
unit?: Maybe<DistanceUnit>;
|
|
1415
1434
|
};
|
|
1416
1435
|
export declare type ChargingBehaviour = {
|
|
1417
|
-
/** Charging behaviour of users divided in groups, based on real-time information */
|
|
1436
|
+
/** Charging behaviour of users divided in groups, based on real-time information. */
|
|
1418
1437
|
code?: Maybe<ChargingBehaviourCode>;
|
|
1419
|
-
/** Description of charging behaviour */
|
|
1438
|
+
/** Description of charging behaviour. */
|
|
1420
1439
|
description?: Maybe<Scalars["String"]>;
|
|
1421
1440
|
};
|
|
1422
1441
|
export declare enum ChargingBehaviourCode {
|
|
1423
|
-
/** Mainly morning charging, and some mixed afternoon and evening charging */
|
|
1442
|
+
/** Mainly morning charging, and some mixed afternoon and evening charging. */
|
|
1424
1443
|
URBAN_CHARGING = "URBAN_CHARGING",
|
|
1425
|
-
/** Mainly fast charging, with some morning and afternoon charging */
|
|
1444
|
+
/** Mainly fast charging, with some morning and afternoon charging. */
|
|
1426
1445
|
FAST_CHARGING = "FAST_CHARGING",
|
|
1427
|
-
/** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging */
|
|
1446
|
+
/** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging. */
|
|
1428
1447
|
MIXED_CHARGING = "MIXED_CHARGING",
|
|
1429
|
-
/** Mainly noise charging */
|
|
1448
|
+
/** Mainly noise charging. */
|
|
1430
1449
|
NOISE_CHARGING = "NOISE_CHARGING",
|
|
1431
|
-
/** Mainly overnight charging */
|
|
1450
|
+
/** Mainly overnight charging. */
|
|
1432
1451
|
OVERNIGHT_CHARGING = "OVERNIGHT_CHARGING",
|
|
1433
|
-
/** Mainly morning charging, with some afternoon charging */
|
|
1452
|
+
/** Mainly morning charging, with some afternoon charging. */
|
|
1434
1453
|
OFFICE_CHARGING = "OFFICE_CHARGING"
|
|
1435
1454
|
}
|
|
1436
1455
|
export declare type Connect = {
|
|
@@ -1532,55 +1551,55 @@ export declare enum ConnectedVehicleStatus {
|
|
|
1532
1551
|
/** Vehicle was removed and access has been revoked */
|
|
1533
1552
|
REMOVED = "removed"
|
|
1534
1553
|
}
|
|
1535
|
-
/** Connector data which extends OCPI Connector */
|
|
1554
|
+
/** Connector data which extends OCPI Connector. */
|
|
1536
1555
|
export declare type Connector = {
|
|
1537
|
-
/** 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. */
|
|
1556
|
+
/** 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. This property is OCPI-compliant. */
|
|
1538
1557
|
id?: Maybe<Scalars["String"]>;
|
|
1539
|
-
/** Standard of an installed connector. */
|
|
1558
|
+
/** Standard of an installed connector. This property is OCPI-compliant. */
|
|
1540
1559
|
standard?: Maybe<ConnectorType>;
|
|
1541
|
-
/** Format (socket/cable) of an installed connector. */
|
|
1560
|
+
/** Format (socket/cable) of an installed connector. This property is OCPI-compliant. */
|
|
1542
1561
|
format?: Maybe<OCPIConnectorFormat>;
|
|
1543
|
-
/** Type of power of an installed connector.
|
|
1562
|
+
/** Type of power of an installed connector. This property is OCPI-compliant. */
|
|
1544
1563
|
power_type?: Maybe<OCPIPowerType>;
|
|
1545
|
-
/** 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. */
|
|
1564
|
+
/** 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. This property is OCPI-compliant. */
|
|
1546
1565
|
max_voltage?: Maybe<Scalars["Int"]>;
|
|
1547
|
-
/** Maximum amperage of a connector, in ampere [A]. */
|
|
1566
|
+
/** Maximum amperage of a connector, in ampere [A]. This property is OCPI-compliant. */
|
|
1548
1567
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
1549
1568
|
/**
|
|
1550
1569
|
* 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.
|
|
1551
1570
|
* For example: A DC Charge Point which can deliver up to 920V and up to 400A can be limited to a maximum of 150kW. Depending on the vehicle, it may supply maximum voltage or current, but not both at the same time.
|
|
1552
|
-
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
1571
|
+
* For AC Charge Points, the amount of phases used can also have influence on the maximum power. This property is OCPI-compliant.
|
|
1553
1572
|
*/
|
|
1554
1573
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
1555
|
-
/** Maximum electric power in kW */
|
|
1574
|
+
/** Maximum electric power in kW. */
|
|
1556
1575
|
power?: Maybe<Scalars["Float"]>;
|
|
1557
1576
|
/**
|
|
1558
1577
|
* 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.
|
|
1559
1578
|
* 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.
|
|
1560
|
-
* For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff.
|
|
1579
|
+
* For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff. This property is OCPI-compliant.
|
|
1561
1580
|
*/
|
|
1562
1581
|
tariff_ids?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
1563
|
-
/** URL to an operator’s terms and conditions. */
|
|
1582
|
+
/** URL to an operator’s terms and conditions. This property is OCPI-compliant. */
|
|
1564
1583
|
terms_and_conditions?: Maybe<Scalars["String"]>;
|
|
1565
|
-
/** Timestamp when a connector was last updated (or created). */
|
|
1584
|
+
/** Timestamp when a connector was last updated (or created). This property is OCPI-compliant. */
|
|
1566
1585
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
1567
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1586
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
1568
1587
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1569
|
-
/** List of valid charging tariffs */
|
|
1588
|
+
/** List of valid charging tariffs. */
|
|
1570
1589
|
tariff?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
1571
|
-
/**
|
|
1572
|
-
* Charging prices
|
|
1573
|
-
* @deprecated In favor of custom_properties.pricing
|
|
1574
|
-
*/
|
|
1590
|
+
/** Charging prices. */
|
|
1575
1591
|
pricing?: Maybe<Pricing>;
|
|
1576
|
-
/** Custom properties of a connector. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
1592
|
+
/** Custom properties of a connector. These are vendor specific and will return null values on the fields that are not supported by your station database. */
|
|
1577
1593
|
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1578
1594
|
};
|
|
1579
|
-
/** Custom properties for connectors */
|
|
1595
|
+
/** Custom properties for connectors. */
|
|
1580
1596
|
export declare type ConnectorCustomProperties = {
|
|
1581
|
-
/**
|
|
1597
|
+
/**
|
|
1598
|
+
* Charging prices.
|
|
1599
|
+
* @deprecated In favor of connector.pricing
|
|
1600
|
+
*/
|
|
1582
1601
|
pricing?: Maybe<Pricing>;
|
|
1583
|
-
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
1602
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
1584
1603
|
oicp?: Maybe<OICPConnectorCustomProperties>;
|
|
1585
1604
|
};
|
|
1586
1605
|
/** The socket or plug standard of the charging point. */
|
|
@@ -1942,6 +1961,7 @@ export declare enum CountryCodeAlpha2 {
|
|
|
1942
1961
|
VU = "VU",
|
|
1943
1962
|
WF = "WF",
|
|
1944
1963
|
WS = "WS",
|
|
1964
|
+
XK = "XK",
|
|
1945
1965
|
YE = "YE",
|
|
1946
1966
|
YT = "YT",
|
|
1947
1967
|
ZA = "ZA",
|
|
@@ -1973,6 +1993,16 @@ export declare enum CurrencyUnit {
|
|
|
1973
1993
|
/** Return the currency in GBP. */
|
|
1974
1994
|
GBP = "GBP"
|
|
1975
1995
|
}
|
|
1996
|
+
export declare enum DimensionUnit {
|
|
1997
|
+
/** Return the dimension in meters. */
|
|
1998
|
+
METER = "meter",
|
|
1999
|
+
/** Return the dimension in feet. */
|
|
2000
|
+
FOOT = "foot",
|
|
2001
|
+
/** Return the dimension in kilometers. */
|
|
2002
|
+
KILOMETER = "kilometer",
|
|
2003
|
+
/** Return the dimension in miles. */
|
|
2004
|
+
MILE = "mile"
|
|
2005
|
+
}
|
|
1976
2006
|
export declare enum DistanceUnit {
|
|
1977
2007
|
/** Return the distance in meters. */
|
|
1978
2008
|
METER = "meter",
|
|
@@ -1983,40 +2013,42 @@ export declare enum DistanceUnit {
|
|
|
1983
2013
|
/** Return the distance in miles. */
|
|
1984
2014
|
MILE = "mile"
|
|
1985
2015
|
}
|
|
1986
|
-
/** EVSE data which extends OCPI EVSE */
|
|
2016
|
+
/** EVSE data which extends OCPI EVSE. */
|
|
1987
2017
|
export declare type EVSE = {
|
|
1988
2018
|
/**
|
|
1989
2019
|
* 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.
|
|
1990
|
-
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
|
|
2020
|
+
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field. This property is OCPI-compliant.
|
|
1991
2021
|
*/
|
|
1992
2022
|
uid?: Maybe<Scalars["String"]>;
|
|
1993
|
-
/** 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. */
|
|
2023
|
+
/** 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. This property is OCPI-compliant. */
|
|
1994
2024
|
evse_id?: Maybe<Scalars["String"]>;
|
|
1995
|
-
/** Indicates the current status of an EVSE. */
|
|
2025
|
+
/** Indicates the current status of an EVSE. This property is OCPI-compliant. */
|
|
1996
2026
|
status?: Maybe<OCPIStatus>;
|
|
1997
|
-
/** Indicates a planned status update of a nEVSE. */
|
|
2027
|
+
/** Indicates a planned status update of a nEVSE. This property is OCPI-compliant. */
|
|
1998
2028
|
status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;
|
|
1999
|
-
/** List of functionalities that an EVSE is capable of. */
|
|
2029
|
+
/** List of functionalities that an EVSE is capable of. This property is OCPI-compliant. */
|
|
2000
2030
|
capabilities?: Maybe<Array<Maybe<OCPICapability>>>;
|
|
2001
|
-
/** List of available connectors on an EVSE. */
|
|
2031
|
+
/** List of available connectors on an EVSE. This property is OCPI-compliant. */
|
|
2002
2032
|
connectors?: Maybe<Array<Maybe<Connector>>>;
|
|
2003
|
-
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */
|
|
2033
|
+
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. This property is OCPI-compliant. */
|
|
2004
2034
|
floor_level?: Maybe<Scalars["String"]>;
|
|
2005
|
-
/** Coordinates of a EVSE. */
|
|
2035
|
+
/** Coordinates of a EVSE. This property is OCPI-compliant. */
|
|
2006
2036
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
2007
|
-
/** A number/string printed on the outside of an EVSE for visual identification. */
|
|
2037
|
+
/** A number/string printed on the outside of an EVSE for visual identification. This property is OCPI-compliant. */
|
|
2008
2038
|
physical_reference?: Maybe<Scalars["String"]>;
|
|
2009
|
-
/** Restrictions that apply to a parking spot. */
|
|
2039
|
+
/** Restrictions that apply to a parking spot. This property is OCPI-compliant. */
|
|
2010
2040
|
parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;
|
|
2011
|
-
/** Links to images related to an EVSE such as photos or logos. */
|
|
2041
|
+
/** Links to images related to an EVSE such as photos or logos. This property is OCPI-compliant. */
|
|
2012
2042
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
2013
|
-
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). */
|
|
2043
|
+
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). This property is OCPI-compliant. */
|
|
2014
2044
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2015
2045
|
/** Indicates if parking is free or paid. */
|
|
2016
2046
|
parking_cost?: Maybe<ParkingCost>;
|
|
2017
|
-
/**
|
|
2047
|
+
/** Unique ID of the location in the system of the CPO. */
|
|
2048
|
+
cpo_external_id?: Maybe<Scalars["String"]>;
|
|
2049
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
2018
2050
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2019
|
-
/** Custom properties of an EVSE */
|
|
2051
|
+
/** Custom properties of an EVSE. */
|
|
2020
2052
|
custom_properties?: Maybe<EvseCustomProperties>;
|
|
2021
2053
|
};
|
|
2022
2054
|
export declare type ElevationInput = {
|
|
@@ -2040,14 +2072,14 @@ export declare enum EmissionRateUnit {
|
|
|
2040
2072
|
OUNCES_PER_MILE = "ounces_per_mile"
|
|
2041
2073
|
}
|
|
2042
2074
|
export declare enum EmissionUnit {
|
|
2043
|
-
/** Return the
|
|
2075
|
+
/** Return the emissions in grams. */
|
|
2044
2076
|
GRAM = "gram",
|
|
2045
|
-
/** Return the
|
|
2077
|
+
/** Return the emissions in ounces. */
|
|
2046
2078
|
OUNCE = "ounce"
|
|
2047
2079
|
}
|
|
2048
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2080
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
2049
2081
|
export declare type EvseCustomProperties = {
|
|
2050
|
-
/** OICP standard custom properties */
|
|
2082
|
+
/** OICP standard custom properties. */
|
|
2051
2083
|
oicp?: Maybe<OICPEvseCustomProperties>;
|
|
2052
2084
|
};
|
|
2053
2085
|
/** A GeoJSON Feature<LineString>. */
|
|
@@ -2137,6 +2169,36 @@ export declare type GeometryPoint = {
|
|
|
2137
2169
|
type: PointType;
|
|
2138
2170
|
coordinates: Array<Scalars["Float"]>;
|
|
2139
2171
|
};
|
|
2172
|
+
export declare enum HeatPumpMode {
|
|
2173
|
+
/** Default to the vehicle configuration. */
|
|
2174
|
+
DEFAULT = "default",
|
|
2175
|
+
/** Vehicle has it installed. */
|
|
2176
|
+
INSTALLED = "installed",
|
|
2177
|
+
/** Vehicle doesn't have it installed. */
|
|
2178
|
+
NONE = "none"
|
|
2179
|
+
}
|
|
2180
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
2181
|
+
export declare enum HeavyVehiclesEUType {
|
|
2182
|
+
/** Only N1 type of heavy vehicles can be parked at the charging station. N1 vehicles have a maximum mass not exceeding 3.5 tonnes (7,700 lbs). */
|
|
2183
|
+
N1 = "N1",
|
|
2184
|
+
/** Only N2 type of heavy vehicles can be parked at the charging station. N2 vehicles have a maximum mass exceeding 3.5 tonnes but not exceeding 12 tonnes (26,000 lbs). */
|
|
2185
|
+
N2 = "N2",
|
|
2186
|
+
/** Only N3 type of heavy vehicles can be parked at the charging station. N3 vehicles have a maximum mass exceeding 12 tonnes (26,000 lbs). */
|
|
2187
|
+
N3 = "N3"
|
|
2188
|
+
}
|
|
2189
|
+
/** List of facilities in the location. */
|
|
2190
|
+
export declare enum HeavyVehiclesFacility {
|
|
2191
|
+
/** Truck parking. */
|
|
2192
|
+
TRUCK_PARKING = "TRUCK_PARKING",
|
|
2193
|
+
/** Truck wash. */
|
|
2194
|
+
TRUCK_WASH = "TRUCK_WASH",
|
|
2195
|
+
/** Truck repair. */
|
|
2196
|
+
TRUCK_REPAIR = "TRUCK_REPAIR",
|
|
2197
|
+
/** Truck dealership. */
|
|
2198
|
+
TRUCK_DEALERSHIP = "TRUCK_DEALERSHIP",
|
|
2199
|
+
/** Secure truck parking. */
|
|
2200
|
+
SECURE_TRUCK_PARKING = "SECURE_TRUCK_PARKING"
|
|
2201
|
+
}
|
|
2140
2202
|
/** Navigation service providers available */
|
|
2141
2203
|
export declare enum InstructionsFormat {
|
|
2142
2204
|
/** Chargetrip raw instructions */
|
|
@@ -2156,6 +2218,22 @@ export declare type Isoline = {
|
|
|
2156
2218
|
/** The inputted request data for the isoline used to compute it. */
|
|
2157
2219
|
request_input?: Maybe<IsolineRequestInput>;
|
|
2158
2220
|
};
|
|
2221
|
+
export declare type IsolineCabin = {
|
|
2222
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
2223
|
+
is_preconditioned?: Maybe<Scalars["Boolean"]>;
|
|
2224
|
+
/** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
2225
|
+
desired_temperature?: Maybe<Scalars["Float"]>;
|
|
2226
|
+
};
|
|
2227
|
+
export declare type IsolineCabindesired_temperatureArgs = {
|
|
2228
|
+
unit?: Maybe<TemperatureUnit>;
|
|
2229
|
+
};
|
|
2230
|
+
/** Information about the cabin of the vehicle. */
|
|
2231
|
+
export declare type IsolineCabinInput = {
|
|
2232
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
2233
|
+
is_preconditioned?: Maybe<Scalars["Boolean"]>;
|
|
2234
|
+
/** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
2235
|
+
desired_temperature?: Maybe<TemperatureInput>;
|
|
2236
|
+
};
|
|
2159
2237
|
export declare enum IsolineFerryConnectionsType {
|
|
2160
2238
|
/** Ferry connections should not be included. */
|
|
2161
2239
|
NONE = "none",
|
|
@@ -2179,6 +2257,10 @@ export declare type IsolineInput = {
|
|
|
2179
2257
|
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
2180
2258
|
/** Climate is on. */
|
|
2181
2259
|
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2260
|
+
/** Vehicle Heat Pump configuration. */
|
|
2261
|
+
heat_pump?: Maybe<HeatPumpMode>;
|
|
2262
|
+
/** Vehicle cabin configuration. */
|
|
2263
|
+
cabin?: Maybe<IsolineCabinInput>;
|
|
2182
2264
|
/** Season to be taken into account when generating the isoline. */
|
|
2183
2265
|
season?: Maybe<RouteSeason>;
|
|
2184
2266
|
/** Polygons precision quality. */
|
|
@@ -2214,6 +2296,10 @@ export declare type IsolineRequestInput = {
|
|
|
2214
2296
|
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
2215
2297
|
/** Climate is on. */
|
|
2216
2298
|
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2299
|
+
/** Vehicle Heat Pump configuration. */
|
|
2300
|
+
heat_pump?: Maybe<HeatPumpMode>;
|
|
2301
|
+
/** Vehicle cabin configuration. */
|
|
2302
|
+
cabin?: Maybe<IsolineCabin>;
|
|
2217
2303
|
/** Season taken into account when isoline was generated. */
|
|
2218
2304
|
season?: Maybe<RouteSeason>;
|
|
2219
2305
|
/** Polygons precision quality. */
|
|
@@ -2392,6 +2478,8 @@ export declare type Navigation = {
|
|
|
2392
2478
|
alternative_stations: Array<NavigationStation>;
|
|
2393
2479
|
/** Navigation instructions */
|
|
2394
2480
|
instructions?: Maybe<Scalars["JSON"]>;
|
|
2481
|
+
/** Navigation meta information. */
|
|
2482
|
+
meta?: Maybe<NavigationMeta>;
|
|
2395
2483
|
};
|
|
2396
2484
|
/** The navigation session data */
|
|
2397
2485
|
export declare type Navigationstate_of_chargeArgs = {
|
|
@@ -2412,6 +2500,13 @@ export declare type NavigationInstructionsInput = {
|
|
|
2412
2500
|
/** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6, the default is 5 */
|
|
2413
2501
|
precision?: Maybe<Scalars["Int"]>;
|
|
2414
2502
|
};
|
|
2503
|
+
/** Navigation meta information. */
|
|
2504
|
+
export declare type NavigationMeta = {
|
|
2505
|
+
/** Creation time of the navigation session. */
|
|
2506
|
+
created_at?: Maybe<Scalars["DateTime"]>;
|
|
2507
|
+
/** Last updated time of the navigation session. */
|
|
2508
|
+
updated_at?: Maybe<Scalars["DateTime"]>;
|
|
2509
|
+
};
|
|
2415
2510
|
/** Input for the navigation recalculate */
|
|
2416
2511
|
export declare type NavigationRecalculateInput = {
|
|
2417
2512
|
/** ID of the navigation session */
|
|
@@ -2495,11 +2590,11 @@ export declare type NavigationUpdateLocationsInput = {
|
|
|
2495
2590
|
};
|
|
2496
2591
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2497
2592
|
export declare type OCPIAdditionalGeoLocation = {
|
|
2498
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
2593
|
+
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2499
2594
|
latitude?: Maybe<Scalars["String"]>;
|
|
2500
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
2595
|
+
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2501
2596
|
longitude?: Maybe<Scalars["String"]>;
|
|
2502
|
-
/** 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. */
|
|
2597
|
+
/** 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. This property is OCPI-compliant. */
|
|
2503
2598
|
name?: Maybe<OCPIDisplayText>;
|
|
2504
2599
|
};
|
|
2505
2600
|
/** The capabilities of an EVSE. */
|
|
@@ -2629,28 +2724,28 @@ export declare enum OCPIDayOfWeek {
|
|
|
2629
2724
|
SUNDAY = "SUNDAY"
|
|
2630
2725
|
}
|
|
2631
2726
|
export declare type OCPIDisplayText = {
|
|
2632
|
-
/** Language Code ISO 639-1 */
|
|
2727
|
+
/** Language Code ISO 639-1. This property is OCPI-compliant. */
|
|
2633
2728
|
language?: Maybe<Scalars["String"]>;
|
|
2634
|
-
/** Text to be displayed to an end user. No markup, html etc. allowed. */
|
|
2729
|
+
/** Text to be displayed to an end user. No markup, html etc. allowed. This property is OCPI-compliant. */
|
|
2635
2730
|
text?: Maybe<Scalars["String"]>;
|
|
2636
2731
|
};
|
|
2637
2732
|
/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
|
|
2638
2733
|
export declare type OCPIEnergyMix = {
|
|
2639
|
-
/** True if the power is 100% from regenerative sources */
|
|
2734
|
+
/** True if the power is 100% from regenerative sources. This property is OCPI-compliant. */
|
|
2640
2735
|
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2641
|
-
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */
|
|
2736
|
+
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. This property is OCPI-compliant. */
|
|
2642
2737
|
energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
|
|
2643
|
-
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */
|
|
2738
|
+
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. This property is OCPI-compliant. */
|
|
2644
2739
|
environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
|
|
2645
|
-
/** Name of the energy supplier, delivering the energy for this location or tariff
|
|
2740
|
+
/** Name of the energy supplier, delivering the energy for this location or tariff.*. This property is OCPI-compliant. */
|
|
2646
2741
|
supplier_name?: Maybe<Scalars["String"]>;
|
|
2647
|
-
/** Name of the energy suppliers product/tariff plan used at this location
|
|
2742
|
+
/** Name of the energy suppliers product/tariff plan used at this location.*. This property is OCPI-compliant. */
|
|
2648
2743
|
energy_product_name?: Maybe<Scalars["String"]>;
|
|
2649
2744
|
};
|
|
2650
2745
|
export declare type OCPIEnergySource = {
|
|
2651
|
-
/** The type of energy source. */
|
|
2746
|
+
/** The type of energy source. This property is OCPI-compliant. */
|
|
2652
2747
|
source?: Maybe<OCPIEnergySourceCategory>;
|
|
2653
|
-
/** Percentage of this source (0-100) in the mix. */
|
|
2748
|
+
/** Percentage of this source (0-100) in the mix. This property is OCPI-compliant. */
|
|
2654
2749
|
percentage?: Maybe<Scalars["Int"]>;
|
|
2655
2750
|
};
|
|
2656
2751
|
/** Categories of energy sources. */
|
|
@@ -2674,9 +2769,9 @@ export declare enum OCPIEnergySourceCategory {
|
|
|
2674
2769
|
}
|
|
2675
2770
|
/** Amount of waste produced/emitted per kWh. */
|
|
2676
2771
|
export declare type OCPIEnvironmentalImpact = {
|
|
2677
|
-
/** The environmental impact category of this value. */
|
|
2772
|
+
/** The environmental impact category of this value. This property is OCPI-compliant. */
|
|
2678
2773
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2679
|
-
/** Amount of this portion in g/kWh. */
|
|
2774
|
+
/** Amount of this portion in g/kWh. This property is OCPI-compliant. */
|
|
2680
2775
|
amount?: Maybe<Scalars["Float"]>;
|
|
2681
2776
|
};
|
|
2682
2777
|
/** Categories of environmental impact values. */
|
|
@@ -2688,9 +2783,9 @@ export declare enum OCPIEnvironmentalImpactCategory {
|
|
|
2688
2783
|
}
|
|
2689
2784
|
/** Specifies one exceptional period for opening or access hours. */
|
|
2690
2785
|
export declare type OCPIExceptionalPeriod = {
|
|
2691
|
-
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2786
|
+
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2692
2787
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2693
|
-
/** End of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2788
|
+
/** End of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2694
2789
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2695
2790
|
};
|
|
2696
2791
|
export declare enum OCPIFacility {
|
|
@@ -2737,34 +2832,34 @@ export declare enum OCPIFacility {
|
|
|
2737
2832
|
}
|
|
2738
2833
|
/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2739
2834
|
export declare type OCPIGeoLocation = {
|
|
2740
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
2835
|
+
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2741
2836
|
latitude?: Maybe<Scalars["String"]>;
|
|
2742
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
2837
|
+
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2743
2838
|
longitude?: Maybe<Scalars["String"]>;
|
|
2744
2839
|
};
|
|
2745
2840
|
/** Opening and access hours of the location. */
|
|
2746
2841
|
export declare type OCPIHours = {
|
|
2747
|
-
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. */
|
|
2842
|
+
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. This property is OCPI-compliant. */
|
|
2748
2843
|
twentyfourseven?: Maybe<Scalars["Boolean"]>;
|
|
2749
|
-
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */
|
|
2844
|
+
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. This property is OCPI-compliant. */
|
|
2750
2845
|
regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
|
|
2751
|
-
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */
|
|
2846
|
+
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. This property is OCPI-compliant. */
|
|
2752
2847
|
exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2753
|
-
/** 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. */
|
|
2848
|
+
/** 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. This property is OCPI-compliant. */
|
|
2754
2849
|
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2755
2850
|
};
|
|
2756
2851
|
export declare type OCPIImage = {
|
|
2757
|
-
/** URL from where the image data can be fetched through a web browser. */
|
|
2852
|
+
/** URL from where the image data can be fetched through a web browser. This property is OCPI-compliant. */
|
|
2758
2853
|
url?: Maybe<Scalars["String"]>;
|
|
2759
|
-
/** URL from where a thumbnail of the image can be fetched through a webbrowser. */
|
|
2854
|
+
/** URL from where a thumbnail of the image can be fetched through a webbrowser. This property is OCPI-compliant. */
|
|
2760
2855
|
thumbnail?: Maybe<Scalars["String"]>;
|
|
2761
|
-
/** Category of an image */
|
|
2856
|
+
/** Category of an image. This property is OCPI-compliant. */
|
|
2762
2857
|
category?: Maybe<OCPIImageCategory>;
|
|
2763
|
-
/** Image type: gif, jpeg, png, svg */
|
|
2858
|
+
/** Image type: gif, jpeg, png, svg. This property is OCPI-compliant. */
|
|
2764
2859
|
type?: Maybe<Scalars["String"]>;
|
|
2765
|
-
/** Width of the full scale image */
|
|
2860
|
+
/** Width of the full scale image. This property is OCPI-compliant. */
|
|
2766
2861
|
width?: Maybe<Scalars["Int"]>;
|
|
2767
|
-
/** Height of the full scale image */
|
|
2862
|
+
/** Height of the full scale image. This property is OCPI-compliant. */
|
|
2768
2863
|
height?: Maybe<Scalars["Int"]>;
|
|
2769
2864
|
};
|
|
2770
2865
|
/** 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. */
|
|
@@ -2825,28 +2920,28 @@ export declare enum OCPIPowerType {
|
|
|
2825
2920
|
DC = "DC"
|
|
2826
2921
|
}
|
|
2827
2922
|
export declare type OCPIPrice = {
|
|
2828
|
-
/** Price/Cost excluding VAT. */
|
|
2923
|
+
/** Price/Cost excluding VAT. This property is OCPI-compliant. */
|
|
2829
2924
|
excl_vat?: Maybe<Scalars["Float"]>;
|
|
2830
|
-
/** Price/Cost including VAT. */
|
|
2925
|
+
/** Price/Cost including VAT. This property is OCPI-compliant. */
|
|
2831
2926
|
incl_vat?: Maybe<Scalars["Float"]>;
|
|
2832
2927
|
};
|
|
2833
2928
|
export declare type OCPIPriceComponent = {
|
|
2834
|
-
/** Type of tariff dimension. */
|
|
2929
|
+
/** Type of tariff dimension. This property is OCPI-compliant. */
|
|
2835
2930
|
type?: Maybe<OCPITariffDimensionType>;
|
|
2836
|
-
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
2931
|
+
/** Price per unit (excl. VAT) for this tariff dimension. This property is OCPI-compliant. */
|
|
2837
2932
|
price?: Maybe<Scalars["Float"]>;
|
|
2838
|
-
/** 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. */
|
|
2933
|
+
/** 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. This property is OCPI-compliant. */
|
|
2839
2934
|
vat?: Maybe<Scalars["Float"]>;
|
|
2840
|
-
/** 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. */
|
|
2935
|
+
/** 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. This property is OCPI-compliant. */
|
|
2841
2936
|
step_size?: Maybe<Scalars["Int"]>;
|
|
2842
2937
|
};
|
|
2843
2938
|
/** Regular recurring operation or access hours. */
|
|
2844
2939
|
export declare type OCPIRegularHours = {
|
|
2845
|
-
/** Number of days in the week, from Monday (1) till Sunday (7) */
|
|
2940
|
+
/** Number of days in the week, from Monday (1) till Sunday (7). This property is OCPI-compliant. */
|
|
2846
2941
|
weekday?: Maybe<Scalars["Int"]>;
|
|
2847
|
-
/** 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]. */
|
|
2942
|
+
/** 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]. This property is OCPI-compliant. */
|
|
2848
2943
|
period_begin?: Maybe<Scalars["String"]>;
|
|
2849
|
-
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */
|
|
2944
|
+
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. This property is OCPI-compliant. */
|
|
2850
2945
|
period_end?: Maybe<Scalars["String"]>;
|
|
2851
2946
|
};
|
|
2852
2947
|
export declare enum OCPIReservationRestrictionType {
|
|
@@ -2878,41 +2973,41 @@ export declare enum OCPIStatus {
|
|
|
2878
2973
|
}
|
|
2879
2974
|
/** 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. */
|
|
2880
2975
|
export declare type OCPIStatusSchedule = {
|
|
2881
|
-
/** Begin of the scheduled period. */
|
|
2976
|
+
/** Begin of the scheduled period. This property is OCPI-compliant. */
|
|
2882
2977
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2883
|
-
/** End of the scheduled period, if known. */
|
|
2978
|
+
/** End of the scheduled period, if known. This property is OCPI-compliant. */
|
|
2884
2979
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2885
|
-
/** Status value during the scheduled period. */
|
|
2980
|
+
/** Status value during the scheduled period. This property is OCPI-compliant. */
|
|
2886
2981
|
status?: Maybe<OCPIStatus>;
|
|
2887
2982
|
};
|
|
2888
2983
|
export declare type OCPITariff = {
|
|
2889
|
-
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff */
|
|
2984
|
+
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff. This property is OCPI-compliant. */
|
|
2890
2985
|
country_code?: Maybe<Scalars["String"]>;
|
|
2891
|
-
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
|
|
2986
|
+
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
2892
2987
|
party_id?: Maybe<Scalars["String"]>;
|
|
2893
|
-
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
|
|
2988
|
+
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms). This property is OCPI-compliant. */
|
|
2894
2989
|
id?: Maybe<Scalars["String"]>;
|
|
2895
|
-
/** ISO-4217 code of the currency of this tariff. */
|
|
2990
|
+
/** ISO-4217 code of the currency of this tariff. This property is OCPI-compliant. */
|
|
2896
2991
|
currency?: Maybe<Scalars["String"]>;
|
|
2897
|
-
/** 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 */
|
|
2992
|
+
/** 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. This property is OCPI-compliant. */
|
|
2898
2993
|
type?: Maybe<OCPITariffType>;
|
|
2899
|
-
/** List of alternative tariff information texts, in multiple languages */
|
|
2994
|
+
/** List of alternative tariff information texts, in multiple languages. This property is OCPI-compliant. */
|
|
2900
2995
|
tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
2901
|
-
/** URL to a web page that contains an explanation of the tariff information in human readable form */
|
|
2996
|
+
/** URL to a web page that contains an explanation of the tariff information in human readable form. This property is OCPI-compliant. */
|
|
2902
2997
|
tariff_alt_url?: Maybe<Scalars["String"]>;
|
|
2903
|
-
/** 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 */
|
|
2998
|
+
/** 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. This property is OCPI-compliant. */
|
|
2904
2999
|
min_price?: Maybe<OCPIPrice>;
|
|
2905
|
-
/** When this field is set, a charging session with this tariff will NOT cost more than this amount */
|
|
3000
|
+
/** When this field is set, a charging session with this tariff will NOT cost more than this amount. This property is OCPI-compliant. */
|
|
2906
3001
|
max_price?: Maybe<OCPIPrice>;
|
|
2907
|
-
/** List of tariff elements */
|
|
3002
|
+
/** List of tariff elements. This property is OCPI-compliant. */
|
|
2908
3003
|
elements?: Maybe<Array<Maybe<OCPITariffElement>>>;
|
|
2909
|
-
/** 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 */
|
|
3004
|
+
/** 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. This property is OCPI-compliant. */
|
|
2910
3005
|
start_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2911
|
-
/** 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 */
|
|
3006
|
+
/** 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. This property is OCPI-compliant. */
|
|
2912
3007
|
end_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2913
|
-
/** Details about the energy supplied with this tariff */
|
|
3008
|
+
/** Details about the energy supplied with this tariff. This property is OCPI-compliant. */
|
|
2914
3009
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
2915
|
-
/** Timestamp when this tariff was last updated (or created) */
|
|
3010
|
+
/** Timestamp when this tariff was last updated (or created). This property is OCPI-compliant. */
|
|
2916
3011
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2917
3012
|
};
|
|
2918
3013
|
export declare enum OCPITariffDimensionType {
|
|
@@ -2926,39 +3021,39 @@ export declare enum OCPITariffDimensionType {
|
|
|
2926
3021
|
TIME = "TIME"
|
|
2927
3022
|
}
|
|
2928
3023
|
export declare type OCPITariffElement = {
|
|
2929
|
-
/** List of price components that describe the pricing of a tariff. */
|
|
3024
|
+
/** List of price components that describe the pricing of a tariff. This property is OCPI-compliant. */
|
|
2930
3025
|
price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;
|
|
2931
|
-
/** Restrictions that describe the applicability of a tariff. */
|
|
3026
|
+
/** Restrictions that describe the applicability of a tariff. This property is OCPI-compliant. */
|
|
2932
3027
|
restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
|
|
2933
3028
|
};
|
|
2934
3029
|
export declare type OCPITariffRestrictions = {
|
|
2935
|
-
/** 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] */
|
|
3030
|
+
/** 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]. This property is OCPI-compliant. */
|
|
2936
3031
|
start_time?: Maybe<Scalars["String"]>;
|
|
2937
|
-
/** 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. */
|
|
3032
|
+
/** 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. This property is OCPI-compliant. */
|
|
2938
3033
|
end_time?: Maybe<Scalars["String"]>;
|
|
2939
|
-
/** 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]) */
|
|
3034
|
+
/** 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]). This property is OCPI-compliant. */
|
|
2940
3035
|
start_date?: Maybe<Scalars["String"]>;
|
|
2941
|
-
/** 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 */
|
|
3036
|
+
/** 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. This property is OCPI-compliant. */
|
|
2942
3037
|
end_date?: Maybe<Scalars["String"]>;
|
|
2943
|
-
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
|
|
3038
|
+
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used. This property is OCPI-compliant. */
|
|
2944
3039
|
min_kwh?: Maybe<Scalars["Float"]>;
|
|
2945
|
-
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */
|
|
3040
|
+
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used. This property is OCPI-compliant. */
|
|
2946
3041
|
max_kwh?: Maybe<Scalars["Float"]>;
|
|
2947
|
-
/** 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 */
|
|
3042
|
+
/** 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. This property is OCPI-compliant. */
|
|
2948
3043
|
min_current?: Maybe<Scalars["Float"]>;
|
|
2949
|
-
/** 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 */
|
|
3044
|
+
/** 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. This property is OCPI-compliant. */
|
|
2950
3045
|
max_current?: Maybe<Scalars["Float"]>;
|
|
2951
|
-
/** 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 */
|
|
3046
|
+
/** 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. This property is OCPI-compliant. */
|
|
2952
3047
|
min_power?: Maybe<Scalars["Float"]>;
|
|
2953
|
-
/** 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 */
|
|
3048
|
+
/** 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. This property is OCPI-compliant. */
|
|
2954
3049
|
max_power?: Maybe<Scalars["Float"]>;
|
|
2955
|
-
/** 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 */
|
|
3050
|
+
/** 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. This property is OCPI-compliant. */
|
|
2956
3051
|
min_duration?: Maybe<Scalars["Float"]>;
|
|
2957
|
-
/** 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 */
|
|
3052
|
+
/** 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. This property is OCPI-compliant. */
|
|
2958
3053
|
max_duration?: Maybe<Scalars["Float"]>;
|
|
2959
|
-
/** Which day(s) of the week this tariff element is active. */
|
|
3054
|
+
/** Which day(s) of the week this tariff element is active. This property is OCPI-compliant. */
|
|
2960
3055
|
day_of_week?: Maybe<OCPIDayOfWeek>;
|
|
2961
|
-
/** 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 */
|
|
3056
|
+
/** 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. This property is OCPI-compliant. */
|
|
2962
3057
|
reservation?: Maybe<OCPIReservationRestrictionType>;
|
|
2963
3058
|
};
|
|
2964
3059
|
export declare enum OCPITariffType {
|
|
@@ -2973,7 +3068,7 @@ export declare enum OCPITariffType {
|
|
|
2973
3068
|
/** 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 */
|
|
2974
3069
|
REGULAR = "REGULAR"
|
|
2975
3070
|
}
|
|
2976
|
-
/** List of charging modes that are supported */
|
|
3071
|
+
/** List of charging modes that are supported. */
|
|
2977
3072
|
export declare enum OICPChargingModes {
|
|
2978
3073
|
MODE_1 = "mode_1",
|
|
2979
3074
|
MODE_2 = "mode_2",
|
|
@@ -2981,14 +3076,14 @@ export declare enum OICPChargingModes {
|
|
|
2981
3076
|
MODE_4 = "mode_4",
|
|
2982
3077
|
CHADEMO = "chademo"
|
|
2983
3078
|
}
|
|
2984
|
-
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
3079
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
2985
3080
|
export declare type OICPConnectorCustomProperties = {
|
|
2986
|
-
/** Returns whether the connector is able to deliver different power outputs */
|
|
3081
|
+
/** Returns whether the connector is able to deliver different power outputs. */
|
|
2987
3082
|
dynamic_power_level?: Maybe<Scalars["Boolean"]>;
|
|
2988
|
-
/** List of charging modes that are supported as specified by IEC 61851-1 */
|
|
3083
|
+
/** List of charging modes that are supported as specified by IEC 61851-1. */
|
|
2989
3084
|
charging_modes?: Maybe<Array<OICPChargingModes>>;
|
|
2990
3085
|
};
|
|
2991
|
-
/** List of authentication modes that are supported */
|
|
3086
|
+
/** List of authentication modes that are supported. */
|
|
2992
3087
|
export declare enum OICPEvseAuthenticationMode {
|
|
2993
3088
|
NFC_RFID_CLASSIC = "nfc_rfid_classic",
|
|
2994
3089
|
NFC_RFID_DESFIRE = "nfc_rfid_desfire",
|
|
@@ -2997,47 +3092,47 @@ export declare enum OICPEvseAuthenticationMode {
|
|
|
2997
3092
|
DIRECT_PAYMENT = "direct_payment",
|
|
2998
3093
|
NO_AUTHENTICATION_REQUIRED = "no_authentication_required"
|
|
2999
3094
|
}
|
|
3000
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3095
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3001
3096
|
export declare type OICPEvseCustomProperties = {
|
|
3002
|
-
/** List of authentication modes that are supported */
|
|
3097
|
+
/** List of authentication modes that are supported. */
|
|
3003
3098
|
authentication_modes: Array<OICPEvseAuthenticationMode>;
|
|
3004
|
-
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh */
|
|
3099
|
+
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh. */
|
|
3005
3100
|
max_capacity?: Maybe<Scalars["Int"]>;
|
|
3006
|
-
/** List of payment options that are supported */
|
|
3101
|
+
/** List of payment options that are supported. */
|
|
3007
3102
|
payment_options: Array<OICPPaymentOptions>;
|
|
3008
|
-
/** List of value added services that are supported */
|
|
3103
|
+
/** List of value added services that are supported. */
|
|
3009
3104
|
value_added_services: Array<OICPValueAddedServices>;
|
|
3010
|
-
/** List of additional info by locale */
|
|
3105
|
+
/** List of additional info by locale. */
|
|
3011
3106
|
additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;
|
|
3012
|
-
/** When the value is set to false this station does not support remote start and stop by Hubject */
|
|
3107
|
+
/** When the value is set to false this station does not support remote start and stop by Hubject. */
|
|
3013
3108
|
is_hubject_compatible: Scalars["Boolean"];
|
|
3014
|
-
/** Name of the charging point manufacturer */
|
|
3109
|
+
/** Name of the charging point manufacturer. */
|
|
3015
3110
|
hardware_manufacturer?: Maybe<Scalars["String"]>;
|
|
3016
3111
|
};
|
|
3017
3112
|
export declare type OICPEvseCustomPropertiesAdditionalInfo = {
|
|
3018
|
-
/** The language in which the additional info text is provided */
|
|
3113
|
+
/** The language in which the additional info text is provided. */
|
|
3019
3114
|
lang?: Maybe<Scalars["String"]>;
|
|
3020
|
-
/** Additional info text value */
|
|
3115
|
+
/** Additional info text value. */
|
|
3021
3116
|
value?: Maybe<Scalars["String"]>;
|
|
3022
3117
|
};
|
|
3023
|
-
/** List of payment options that are supported */
|
|
3118
|
+
/** List of payment options that are supported. */
|
|
3024
3119
|
export declare enum OICPPaymentOptions {
|
|
3025
3120
|
NO_PAYMENT = "no_payment",
|
|
3026
3121
|
DIRECT = "direct",
|
|
3027
3122
|
CONTRACT = "contract"
|
|
3028
3123
|
}
|
|
3029
|
-
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3124
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3030
3125
|
export declare type OICPStationCustomProperties = {
|
|
3031
|
-
/** Returns whether the station is a parking facility */
|
|
3126
|
+
/** Returns whether the station is a parking facility. */
|
|
3032
3127
|
parking_facility?: Maybe<Scalars["Boolean"]>;
|
|
3033
|
-
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1 */
|
|
3128
|
+
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1. */
|
|
3034
3129
|
parking_spot?: Maybe<Scalars["String"]>;
|
|
3035
|
-
/** Returns information on how the charging station provides metering law data */
|
|
3130
|
+
/** Returns information on how the charging station provides metering law data. */
|
|
3036
3131
|
calibration_law_data_availability: Scalars["String"];
|
|
3037
|
-
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future */
|
|
3132
|
+
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future. */
|
|
3038
3133
|
clearinghouse_id?: Maybe<Scalars["String"]>;
|
|
3039
3134
|
};
|
|
3040
|
-
/** List of value added services that are supported */
|
|
3135
|
+
/** List of value added services that are supported. */
|
|
3041
3136
|
export declare enum OICPValueAddedServices {
|
|
3042
3137
|
RESERVATION = "reservation",
|
|
3043
3138
|
DYNAMIC_PRICING = "dynamic_pricing",
|
|
@@ -3056,47 +3151,50 @@ export declare type OdometerInput = {
|
|
|
3056
3151
|
/** Source of inputted data, defaults to 'manual'. */
|
|
3057
3152
|
source?: Maybe<TelemetryInputSource>;
|
|
3058
3153
|
};
|
|
3059
|
-
/**
|
|
3154
|
+
/** Operator data which extends OCPI BusinessDetails. */
|
|
3060
3155
|
export declare type Operator = {
|
|
3061
|
-
/** Unique operator ID */
|
|
3156
|
+
/** Unique operator ID. */
|
|
3062
3157
|
id?: Maybe<Scalars["ID"]>;
|
|
3063
|
-
/** External ID of an operator provided by the operator data source */
|
|
3158
|
+
/** External ID of an operator provided by the operator data source. */
|
|
3064
3159
|
external_id?: Maybe<Scalars["String"]>;
|
|
3065
|
-
/** Name of an operator */
|
|
3160
|
+
/** Name of an operator. This property is OCPI-compliant. */
|
|
3066
3161
|
name?: Maybe<Scalars["String"]>;
|
|
3067
|
-
/** Link to an operator’s website */
|
|
3162
|
+
/** Link to an operator’s website. This property is OCPI-compliant. */
|
|
3068
3163
|
website?: Maybe<Scalars["String"]>;
|
|
3069
|
-
/** Image link to an operator’s logo */
|
|
3164
|
+
/** Image link to an operator’s logo. This property is OCPI-compliant. */
|
|
3070
3165
|
logo?: Maybe<OCPIImage>;
|
|
3071
|
-
/**
|
|
3166
|
+
/**
|
|
3167
|
+
* ISO-3166 alpha-2 country code an operator is active in.
|
|
3168
|
+
* @deprecated In favor of countries.
|
|
3169
|
+
*/
|
|
3072
3170
|
country?: Maybe<Scalars["String"]>;
|
|
3073
3171
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3074
3172
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3075
|
-
/** Contact information */
|
|
3173
|
+
/** Contact information. */
|
|
3076
3174
|
contact?: Maybe<Contact>;
|
|
3077
|
-
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level */
|
|
3175
|
+
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level. */
|
|
3078
3176
|
ranking?: Maybe<Scalars["Int"]>;
|
|
3079
|
-
/** Flag which indicates if the operator is in the excluded list */
|
|
3177
|
+
/** Flag which indicates if the operator is in the excluded list. */
|
|
3080
3178
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3081
3179
|
};
|
|
3082
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3180
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3083
3181
|
export declare type OperatorListFilter = {
|
|
3084
3182
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3085
3183
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3086
|
-
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10 */
|
|
3184
|
+
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10. */
|
|
3087
3185
|
ranking?: Maybe<Array<Scalars["Int"]>>;
|
|
3088
|
-
/** Only retrieve operators that are in the excluded list */
|
|
3186
|
+
/** Only retrieve operators that are in the excluded list. */
|
|
3089
3187
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3090
3188
|
};
|
|
3091
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3189
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3092
3190
|
export declare type OperatorListQuery = {
|
|
3093
|
-
/** Unique operator ID */
|
|
3191
|
+
/** Unique operator ID. */
|
|
3094
3192
|
id?: Maybe<Scalars["ID"]>;
|
|
3095
|
-
/** External ID of an operator provided by an operator data source */
|
|
3193
|
+
/** External ID of an operator provided by an operator data source. */
|
|
3096
3194
|
external_id?: Maybe<Scalars["String"]>;
|
|
3097
|
-
/** Exact name */
|
|
3195
|
+
/** Exact name. */
|
|
3098
3196
|
name?: Maybe<Scalars["String"]>;
|
|
3099
|
-
/** Exact country code */
|
|
3197
|
+
/** Exact country code. */
|
|
3100
3198
|
country?: Maybe<Scalars["String"]>;
|
|
3101
3199
|
};
|
|
3102
3200
|
export declare type OutsideTempInput = {
|
|
@@ -3108,9 +3206,9 @@ export declare type OutsideTempInput = {
|
|
|
3108
3206
|
source?: Maybe<TelemetryInputSource>;
|
|
3109
3207
|
};
|
|
3110
3208
|
export declare enum ParkingCost {
|
|
3111
|
-
/** Parking is free */
|
|
3209
|
+
/** Parking is free. */
|
|
3112
3210
|
FREE = "free",
|
|
3113
|
-
/** Parking includes a fee */
|
|
3211
|
+
/** Parking includes a fee. */
|
|
3114
3212
|
PAID = "paid"
|
|
3115
3213
|
}
|
|
3116
3214
|
export declare type PathSegment = {
|
|
@@ -3174,6 +3272,14 @@ export declare type PowerStats = {
|
|
|
3174
3272
|
/** The list of powers for the speed type */
|
|
3175
3273
|
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
3176
3274
|
};
|
|
3275
|
+
export declare enum PowerSupported {
|
|
3276
|
+
/** Power is supported. */
|
|
3277
|
+
AVAILABLE = "available",
|
|
3278
|
+
/** Power is not supported. */
|
|
3279
|
+
NOT_AVAILABLE = "not_available",
|
|
3280
|
+
/** Power is announced, but not yet supported. */
|
|
3281
|
+
ANNOUNCED = "announced"
|
|
3282
|
+
}
|
|
3177
3283
|
export declare enum PowerUnit {
|
|
3178
3284
|
/** Return the power in kilowatts. */
|
|
3179
3285
|
KILOWATT = "kilowatt",
|
|
@@ -3198,17 +3304,17 @@ export declare type Price = {
|
|
|
3198
3304
|
displayValue?: Maybe<Scalars["String"]>;
|
|
3199
3305
|
};
|
|
3200
3306
|
export declare type Pricing = {
|
|
3201
|
-
/** Unique ID of a price */
|
|
3307
|
+
/** Unique ID of a price. */
|
|
3202
3308
|
id?: Maybe<Scalars["String"]>;
|
|
3203
|
-
/** Price details */
|
|
3309
|
+
/** Price details. */
|
|
3204
3310
|
price_list?: Maybe<Array<Maybe<PricingList>>>;
|
|
3205
3311
|
};
|
|
3206
3312
|
export declare type PricingList = {
|
|
3207
|
-
/** (MSP) Mobility Service Provider */
|
|
3313
|
+
/** (MSP) Mobility Service Provider. */
|
|
3208
3314
|
partner?: Maybe<Scalars["String"]>;
|
|
3209
|
-
/** Product details */
|
|
3315
|
+
/** Product details. */
|
|
3210
3316
|
product?: Maybe<PricingListProduct>;
|
|
3211
|
-
/** Price product elements */
|
|
3317
|
+
/** Price product elements. */
|
|
3212
3318
|
elements?: Maybe<Array<Maybe<PricingListElement>>>;
|
|
3213
3319
|
};
|
|
3214
3320
|
export declare type PricingListElement = {
|
|
@@ -3216,29 +3322,29 @@ export declare type PricingListElement = {
|
|
|
3216
3322
|
type?: Maybe<PricingListElementType>;
|
|
3217
3323
|
/** Price of the element type without VAT. */
|
|
3218
3324
|
price_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3219
|
-
/** VAT percentage to apply */
|
|
3325
|
+
/** VAT percentage to apply. */
|
|
3220
3326
|
vat?: Maybe<Scalars["Float"]>;
|
|
3221
3327
|
};
|
|
3222
3328
|
export declare enum PricingListElementType {
|
|
3223
|
-
/** Price per kWh */
|
|
3329
|
+
/** Price per kWh. */
|
|
3224
3330
|
ENERGY = "ENERGY",
|
|
3225
|
-
/** Starting price, fixed fee per charge session */
|
|
3331
|
+
/** Starting price, fixed fee per charge session. */
|
|
3226
3332
|
FLAT = "FLAT",
|
|
3227
|
-
/** Fixed price per hour */
|
|
3333
|
+
/** Fixed price per hour. */
|
|
3228
3334
|
TIME = "TIME",
|
|
3229
|
-
/** Parking price per hour */
|
|
3335
|
+
/** Parking price per hour. */
|
|
3230
3336
|
PARKING_TIME = "PARKING_TIME"
|
|
3231
3337
|
}
|
|
3232
3338
|
export declare type PricingListProduct = {
|
|
3233
|
-
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price */
|
|
3339
|
+
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price. */
|
|
3234
3340
|
name?: Maybe<Scalars["String"]>;
|
|
3235
|
-
/** Description of the product */
|
|
3341
|
+
/** Description of the product. */
|
|
3236
3342
|
description?: Maybe<Scalars["String"]>;
|
|
3237
|
-
/** Subscription type */
|
|
3343
|
+
/** Subscription type. */
|
|
3238
3344
|
subscription_type?: Maybe<Scalars["String"]>;
|
|
3239
|
-
/** Subscription fee without VAT */
|
|
3345
|
+
/** Subscription fee without VAT. */
|
|
3240
3346
|
subscription_fee_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3241
|
-
/** Currency */
|
|
3347
|
+
/** Currency. */
|
|
3242
3348
|
currency?: Maybe<Scalars["String"]>;
|
|
3243
3349
|
};
|
|
3244
3350
|
export declare type Query = {
|
|
@@ -3274,17 +3380,17 @@ export declare type Query = {
|
|
|
3274
3380
|
userReviewList?: Maybe<Array<Review>>;
|
|
3275
3381
|
/** Get a route by ID */
|
|
3276
3382
|
route?: Maybe<Route>;
|
|
3277
|
-
/** [BETA]
|
|
3383
|
+
/** [BETA] Emissions profile for route. */
|
|
3278
3384
|
routeEmissions: RouteEmissions;
|
|
3279
3385
|
/** Retrieve information about a route path segment */
|
|
3280
3386
|
routePath?: Maybe<RoutePath>;
|
|
3281
3387
|
/** Get the station statistics */
|
|
3282
3388
|
stationStats?: Maybe<StationStats>;
|
|
3283
|
-
/** Get information about a station by its ID */
|
|
3389
|
+
/** Get information about a station by its ID. */
|
|
3284
3390
|
station?: Maybe<Station>;
|
|
3285
|
-
/** Get a full list of stations */
|
|
3391
|
+
/** Get a full list of stations. */
|
|
3286
3392
|
stationList?: Maybe<Array<Maybe<Station>>>;
|
|
3287
|
-
/** Search for stations around a GeoJSON point with a specific distance in meters */
|
|
3393
|
+
/** Search for stations around a GeoJSON point with a specific distance in meters. */
|
|
3288
3394
|
stationAround?: Maybe<Array<Maybe<Station>>>;
|
|
3289
3395
|
/** Get information about a tariff by the tariff ID */
|
|
3290
3396
|
tariff?: Maybe<OCPITariff>;
|
|
@@ -3428,6 +3534,10 @@ export declare type RequestEv = {
|
|
|
3428
3534
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3429
3535
|
/** Climate is on. The default is true. */
|
|
3430
3536
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3537
|
+
/** Vehicle Heat Pump configuration. */
|
|
3538
|
+
heatPump?: Maybe<HeatPumpMode>;
|
|
3539
|
+
/** Vehicle cabin configuration. */
|
|
3540
|
+
cabin?: Maybe<RequestEvCabin>;
|
|
3431
3541
|
/** Cargo weight, in kg. */
|
|
3432
3542
|
cargo?: Maybe<Scalars["Float"]>;
|
|
3433
3543
|
/**
|
|
@@ -3474,20 +3584,51 @@ export declare type RequestEvBatteryValue = {
|
|
|
3474
3584
|
/** Type of the desired final amount of energy in a battery. */
|
|
3475
3585
|
type: BatteryInputType;
|
|
3476
3586
|
};
|
|
3587
|
+
/** Vehicle cabin configuration. */
|
|
3588
|
+
export declare type RequestEvCabin = {
|
|
3589
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
3590
|
+
isPreconditioned?: Maybe<Scalars["Boolean"]>;
|
|
3591
|
+
/** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
3592
|
+
desiredTemperature?: Maybe<Scalars["Float"]>;
|
|
3593
|
+
};
|
|
3594
|
+
/** Vehicle cabin configuration. */
|
|
3595
|
+
export declare type RequestEvCabindesiredTemperatureArgs = {
|
|
3596
|
+
unit?: Maybe<TemperatureUnit>;
|
|
3597
|
+
};
|
|
3598
|
+
/** Vehicle cabin configuration. */
|
|
3599
|
+
export declare type RequestEvCabinInput = {
|
|
3600
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
3601
|
+
isPreconditioned?: Maybe<Scalars["Boolean"]>;
|
|
3602
|
+
/** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
3603
|
+
desiredTemperature?: Maybe<TemperatureInput>;
|
|
3604
|
+
};
|
|
3477
3605
|
export declare type RequestEvConsumption = {
|
|
3478
|
-
/**
|
|
3606
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc */
|
|
3607
|
+
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3608
|
+
/**
|
|
3609
|
+
* Consumption, in kWh, of the auxiliaries.
|
|
3610
|
+
* @deprecated In favor of auxiliary
|
|
3611
|
+
*/
|
|
3479
3612
|
aux?: Maybe<CarConsumption>;
|
|
3480
|
-
/**
|
|
3613
|
+
/**
|
|
3614
|
+
* The consumption, in kWh, of the battery management system.
|
|
3615
|
+
* @deprecated In favor of auxiliary
|
|
3616
|
+
*/
|
|
3481
3617
|
bms?: Maybe<CarConsumption>;
|
|
3482
|
-
/**
|
|
3618
|
+
/**
|
|
3619
|
+
* The consumption, in kWh, of the vehicle in idle mode.
|
|
3620
|
+
* @deprecated In favor of auxiliary
|
|
3621
|
+
*/
|
|
3483
3622
|
idle?: Maybe<CarConsumption>;
|
|
3484
3623
|
};
|
|
3485
3624
|
export declare type RequestEvConsumptionInput = {
|
|
3486
|
-
/**
|
|
3625
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc. */
|
|
3626
|
+
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3627
|
+
/** Deprecated in favor of auxiliary. */
|
|
3487
3628
|
aux?: Maybe<CarConsumptionInput>;
|
|
3488
|
-
/**
|
|
3629
|
+
/** Deprecated in favor of auxiliary. */
|
|
3489
3630
|
bms?: Maybe<CarConsumptionInput>;
|
|
3490
|
-
/**
|
|
3631
|
+
/** Deprecated in favor of auxiliary. */
|
|
3491
3632
|
idle?: Maybe<CarConsumptionInput>;
|
|
3492
3633
|
};
|
|
3493
3634
|
export declare type RequestEvInput = {
|
|
@@ -3503,6 +3644,10 @@ export declare type RequestEvInput = {
|
|
|
3503
3644
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3504
3645
|
/** Flag which indicates if the climate is on. The default is true. */
|
|
3505
3646
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3647
|
+
/** Vehicle Heat Pump configuration. */
|
|
3648
|
+
heatPump?: Maybe<HeatPumpMode>;
|
|
3649
|
+
/** Vehicle cabin configuration. */
|
|
3650
|
+
cabin?: Maybe<RequestEvCabinInput>;
|
|
3506
3651
|
/** Number of occupants. */
|
|
3507
3652
|
occupants?: Maybe<Scalars["Int"]>;
|
|
3508
3653
|
/** Cargo weight, in kg. */
|
|
@@ -3610,103 +3755,103 @@ export declare type RequestUser = {
|
|
|
3610
3755
|
/** ID of the user. */
|
|
3611
3756
|
id?: Maybe<Scalars["ID"]>;
|
|
3612
3757
|
};
|
|
3613
|
-
/**
|
|
3758
|
+
/** Review model. */
|
|
3614
3759
|
export declare type Review = {
|
|
3615
|
-
/** ID of a review */
|
|
3760
|
+
/** ID of a review. */
|
|
3616
3761
|
id: Scalars["ID"];
|
|
3617
|
-
/** Station for which a review was provided */
|
|
3762
|
+
/** Station for which a review was provided. */
|
|
3618
3763
|
station?: Maybe<Station>;
|
|
3619
|
-
/** User who added a review. If a review was added by an anonymous user, this will be null */
|
|
3764
|
+
/** User who added a review. If a review was added by an anonymous user, this will be null. */
|
|
3620
3765
|
user?: Maybe<ReviewUser>;
|
|
3621
|
-
/** Rating of a review */
|
|
3766
|
+
/** Rating of a review. */
|
|
3622
3767
|
rating?: Maybe<Scalars["Int"]>;
|
|
3623
|
-
/** Message of a review */
|
|
3768
|
+
/** Message of a review. */
|
|
3624
3769
|
message?: Maybe<Scalars["String"]>;
|
|
3625
|
-
/** Locale of a message */
|
|
3770
|
+
/** Locale of a message. */
|
|
3626
3771
|
locale?: Maybe<Scalars["String"]>;
|
|
3627
|
-
/** Vehicle that was provided/selected by a user */
|
|
3772
|
+
/** Vehicle that was provided/selected by a user. */
|
|
3628
3773
|
ev?: Maybe<Car>;
|
|
3629
|
-
/** Plug type that was provided/selected by a user */
|
|
3774
|
+
/** Plug type that was provided/selected by a user. */
|
|
3630
3775
|
plugType?: Maybe<ConnectorType>;
|
|
3631
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3776
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3632
3777
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3633
|
-
/** Boolean tags for a station review */
|
|
3778
|
+
/** Boolean tags for a station review. */
|
|
3634
3779
|
tags?: Maybe<ReviewTags>;
|
|
3635
|
-
/** Date and time when a review was created */
|
|
3780
|
+
/** Date and time when a review was created. */
|
|
3636
3781
|
createdAt?: Maybe<Scalars["String"]>;
|
|
3637
|
-
/** Date and time when a review was updated */
|
|
3782
|
+
/** Date and time when a review was updated. */
|
|
3638
3783
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
3639
3784
|
};
|
|
3640
|
-
/** Form input to add a new review */
|
|
3785
|
+
/** Form input to add a new review. */
|
|
3641
3786
|
export declare type ReviewAdd = {
|
|
3642
|
-
/** Station ID for which a review is provided */
|
|
3787
|
+
/** Station ID for which a review is provided. */
|
|
3643
3788
|
stationId: Scalars["String"];
|
|
3644
|
-
/** Rating of a review */
|
|
3789
|
+
/** Rating of a review. */
|
|
3645
3790
|
rating: Scalars["Int"];
|
|
3646
|
-
/** Review message */
|
|
3791
|
+
/** Review message. */
|
|
3647
3792
|
message?: Maybe<Scalars["String"]>;
|
|
3648
|
-
/** Locale of a message */
|
|
3793
|
+
/** Locale of a message. */
|
|
3649
3794
|
locale?: Maybe<Scalars["String"]>;
|
|
3650
|
-
/** ID of the vehicle that was provided/selected by a user */
|
|
3795
|
+
/** ID of the vehicle that was provided/selected by a user. */
|
|
3651
3796
|
ev?: Maybe<Scalars["String"]>;
|
|
3652
|
-
/** Plug type that was provided/selected by a user */
|
|
3797
|
+
/** Plug type that was provided/selected by a user. */
|
|
3653
3798
|
plugType?: Maybe<ConnectorType>;
|
|
3654
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3799
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3655
3800
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3656
|
-
/** Boolean tags for a station review */
|
|
3801
|
+
/** Boolean tags for a station review. */
|
|
3657
3802
|
tags?: Maybe<ReviewTagsInput>;
|
|
3658
3803
|
};
|
|
3659
|
-
/** Form input for edit an existing review */
|
|
3804
|
+
/** Form input for edit an existing review. */
|
|
3660
3805
|
export declare type ReviewEdit = {
|
|
3661
|
-
/** Rating of a review */
|
|
3806
|
+
/** Rating of a review. */
|
|
3662
3807
|
rating: Scalars["Int"];
|
|
3663
|
-
/** Review message */
|
|
3808
|
+
/** Review message. */
|
|
3664
3809
|
message?: Maybe<Scalars["String"]>;
|
|
3665
|
-
/** Locale of a message */
|
|
3810
|
+
/** Locale of a message. */
|
|
3666
3811
|
locale?: Maybe<Scalars["String"]>;
|
|
3667
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3812
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3668
3813
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3669
|
-
/** Boolean tags for a station review */
|
|
3814
|
+
/** Boolean tags for a station review. */
|
|
3670
3815
|
tags?: Maybe<ReviewTagsInput>;
|
|
3671
3816
|
};
|
|
3672
|
-
/** Statistical information for reviews of a station */
|
|
3817
|
+
/** Statistical information for reviews of a station. */
|
|
3673
3818
|
export declare type ReviewStats = {
|
|
3674
|
-
/** Average of all reviews */
|
|
3819
|
+
/** Average of all reviews. */
|
|
3675
3820
|
rating?: Maybe<Scalars["Float"]>;
|
|
3676
|
-
/** 'Total number of reviews */
|
|
3821
|
+
/** 'Total number of reviews. */
|
|
3677
3822
|
count?: Maybe<Scalars["Int"]>;
|
|
3678
3823
|
};
|
|
3679
|
-
/** Boolean tags for the station review */
|
|
3824
|
+
/** Boolean tags for the station review. */
|
|
3680
3825
|
export declare type ReviewTags = {
|
|
3681
|
-
/** Flag which indicates if the station was working when the review was added */
|
|
3826
|
+
/** Flag which indicates if the station was working when the review was added. */
|
|
3682
3827
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3683
|
-
/** Flag which indicates if the user recommended the station when the review was added */
|
|
3828
|
+
/** Flag which indicates if the user recommended the station when the review was added. */
|
|
3684
3829
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3685
3830
|
};
|
|
3686
|
-
/** Boolean tags for a station review */
|
|
3831
|
+
/** Boolean tags for a station review. */
|
|
3687
3832
|
export declare type ReviewTagsInput = {
|
|
3688
|
-
/** Flag which indicates if a station was working when the review was added */
|
|
3833
|
+
/** Flag which indicates if a station was working when the review was added. */
|
|
3689
3834
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3690
|
-
/** Flag which indicates if a user recommended a station when the review was added */
|
|
3835
|
+
/** Flag which indicates if a user recommended a station when the review was added. */
|
|
3691
3836
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3692
3837
|
};
|
|
3693
|
-
/** Special format for the user of a review */
|
|
3838
|
+
/** Special format for the user of a review. */
|
|
3694
3839
|
export declare type ReviewUser = {
|
|
3695
|
-
/** User full name. If a review was added by an anonymous user, this will be null */
|
|
3840
|
+
/** User full name. If a review was added by an anonymous user, this will be null. */
|
|
3696
3841
|
name?: Maybe<Scalars["String"]>;
|
|
3697
3842
|
/**
|
|
3698
|
-
* User ID
|
|
3843
|
+
* User ID.
|
|
3699
3844
|
* @deprecated Not sent back anymore, will be null
|
|
3700
3845
|
*/
|
|
3701
3846
|
id?: Maybe<Scalars["ID"]>;
|
|
3702
3847
|
/**
|
|
3703
|
-
* First name
|
|
3704
|
-
* @deprecated
|
|
3848
|
+
* First name.
|
|
3849
|
+
* @deprecated In favor of name.
|
|
3705
3850
|
*/
|
|
3706
3851
|
firstName?: Maybe<Scalars["String"]>;
|
|
3707
3852
|
/**
|
|
3708
|
-
* Last name
|
|
3709
|
-
* @deprecated
|
|
3853
|
+
* Last name.
|
|
3854
|
+
* @deprecated In favor of name
|
|
3710
3855
|
*/
|
|
3711
3856
|
lastName?: Maybe<Scalars["String"]>;
|
|
3712
3857
|
};
|
|
@@ -3756,13 +3901,13 @@ export declare type RouteAlternative = {
|
|
|
3756
3901
|
* @deprecated Will be removed in the future
|
|
3757
3902
|
*/
|
|
3758
3903
|
amenityRanking?: Maybe<Scalars["Int"]>;
|
|
3759
|
-
/**
|
|
3904
|
+
/** Display value that indicates the range, in meters, available at the beginning of the trip. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. */
|
|
3760
3905
|
rangeStart?: Maybe<Scalars["Int"]>;
|
|
3761
3906
|
/** Total energy in a battery at the beginning of a trip, in kWh. */
|
|
3762
3907
|
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
3763
3908
|
/** Total energy in a battery at the beginning of a trip, in percentage. */
|
|
3764
3909
|
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
3765
|
-
/**
|
|
3910
|
+
/** Display value that indicates the range, in meters, available at the end of the trip. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. Please note: In case of a non BEV where the range end is negative, the value will be 0. */
|
|
3766
3911
|
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
3767
3912
|
/** Remaining range, energy in kWh, at the end of a trip. In the case of a non BEV where the range end is negative, the value will be 0. */
|
|
3768
3913
|
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
@@ -3917,7 +4062,7 @@ export declare type RouteEmissions = {
|
|
|
3917
4062
|
route_alternative_id: Scalars["ID"];
|
|
3918
4063
|
/** Emissions profile for the vehicle used in route. */
|
|
3919
4064
|
route_vehicle: RouteVehicleEmissions;
|
|
3920
|
-
/** Emissions profile for
|
|
4065
|
+
/** Emissions profile for an equivalent internal combustion engine vehicle. */
|
|
3921
4066
|
internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;
|
|
3922
4067
|
};
|
|
3923
4068
|
export declare type RouteEmissionsinternal_combustion_vehicleArgs = {
|
|
@@ -4032,7 +4177,7 @@ export declare enum RouteInstructionSign {
|
|
|
4032
4177
|
IGNORE = "IGNORE"
|
|
4033
4178
|
}
|
|
4034
4179
|
export declare type RouteInternalCombustionVehicleEmissions = {
|
|
4035
|
-
/** Total emissions. */
|
|
4180
|
+
/** Total co2e emissions. */
|
|
4036
4181
|
total: Scalars["Float"];
|
|
4037
4182
|
/** Embedded emissions. */
|
|
4038
4183
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4047,7 +4192,7 @@ export declare type RouteInternalCombustionVehicleEmissionstotalArgs = {
|
|
|
4047
4192
|
unit?: Maybe<EmissionUnit>;
|
|
4048
4193
|
};
|
|
4049
4194
|
export declare type RouteInternalCombustionVehicleLegEmissions = {
|
|
4050
|
-
/** Total emissions for the leg. */
|
|
4195
|
+
/** Total co2e emissions for the leg. */
|
|
4051
4196
|
total: Scalars["Float"];
|
|
4052
4197
|
/** Embedded emissions for the leg. */
|
|
4053
4198
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4081,13 +4226,13 @@ export declare type RouteLeg = {
|
|
|
4081
4226
|
duration?: Maybe<Scalars["Int"]>;
|
|
4082
4227
|
/** Total energy used in a leg in kWh. */
|
|
4083
4228
|
consumption?: Maybe<Scalars["Float"]>;
|
|
4084
|
-
/**
|
|
4229
|
+
/** Display value that indicates the range, in meters, available at the beginning of the leg. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. */
|
|
4085
4230
|
rangeStart?: Maybe<Scalars["Int"]>;
|
|
4086
4231
|
/** Total energy in a battery at the beginning of a leg, in kWh. */
|
|
4087
4232
|
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
4088
4233
|
/** Total energy in a battery at the beginning of a trip, in percentage. */
|
|
4089
4234
|
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
4090
|
-
/**
|
|
4235
|
+
/** Display value that indicates the range, in meters, available at the end of the leg. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. Please note: In case of a non BEV where the range end is negative, the value will be 0. */
|
|
4091
4236
|
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
4092
4237
|
/** Total energy left in a battery at the end of a leg, in kWh. In the case of a non BEV where the range end is negative, the value will be 0. */
|
|
4093
4238
|
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
@@ -4644,7 +4789,7 @@ export declare enum RouteTagType {
|
|
|
4644
4789
|
CROSSBORDER = "crossborder"
|
|
4645
4790
|
}
|
|
4646
4791
|
export declare type RouteVehicleEmissions = {
|
|
4647
|
-
/** Total emissions. */
|
|
4792
|
+
/** Total co2e emissions. */
|
|
4648
4793
|
total: Scalars["Float"];
|
|
4649
4794
|
/** Embedded emissions. */
|
|
4650
4795
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4659,7 +4804,7 @@ export declare type RouteVehicleEmissionstotalArgs = {
|
|
|
4659
4804
|
unit?: Maybe<EmissionUnit>;
|
|
4660
4805
|
};
|
|
4661
4806
|
export declare type RouteVehicleLegEmissions = {
|
|
4662
|
-
/** Total emissions for the leg. */
|
|
4807
|
+
/** Total co2e emissions for the leg. */
|
|
4663
4808
|
total: Scalars["Float"];
|
|
4664
4809
|
/** Embedded emissions for the leg. */
|
|
4665
4810
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4728,199 +4873,330 @@ export declare enum StateOfChargeUnit {
|
|
|
4728
4873
|
/** Return the state of charge as a percentage. */
|
|
4729
4874
|
PERCENTAGE = "percentage"
|
|
4730
4875
|
}
|
|
4731
|
-
/** Station data which extends OCPI Location */
|
|
4876
|
+
/** Station data which extends OCPI Location. */
|
|
4732
4877
|
export declare type Station = {
|
|
4733
|
-
/**
|
|
4734
|
-
review?: Maybe<ReviewStats>;
|
|
4735
|
-
/** Unique ID of a station */
|
|
4878
|
+
/** Unique ID of a station. This property is OCPI-compliant. */
|
|
4736
4879
|
id: Scalars["ID"];
|
|
4737
|
-
/** ISO-3166 alpha-2 country code of a station */
|
|
4880
|
+
/** ISO-3166 alpha-2 country code of a station. This property is OCPI-compliant. */
|
|
4738
4881
|
country_code?: Maybe<Scalars["String"]>;
|
|
4739
|
-
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard) */
|
|
4882
|
+
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
4740
4883
|
party_id?: Maybe<Scalars["String"]>;
|
|
4741
4884
|
/**
|
|
4742
4885
|
* Defines if a location may be published on a website or app etc.
|
|
4743
4886
|
* When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
|
|
4744
|
-
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created
|
|
4887
|
+
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created. This property is OCPI-compliant.
|
|
4745
4888
|
*/
|
|
4746
4889
|
publish?: Maybe<Scalars["Boolean"]>;
|
|
4747
|
-
/** Name of a charging station */
|
|
4890
|
+
/** Name of a charging station. This property is OCPI-compliant. */
|
|
4748
4891
|
name?: Maybe<Scalars["String"]>;
|
|
4749
|
-
/** Street/block name and house number if available */
|
|
4892
|
+
/** Street/block name and house number if available. This property is OCPI-compliant. */
|
|
4750
4893
|
address?: Maybe<Scalars["String"]>;
|
|
4751
|
-
/** City or town */
|
|
4894
|
+
/** City or town. This property is OCPI-compliant. */
|
|
4752
4895
|
city?: Maybe<Scalars["String"]>;
|
|
4753
|
-
/** 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. */
|
|
4896
|
+
/** 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. This property is OCPI-compliant. */
|
|
4754
4897
|
postal_code?: Maybe<Scalars["String"]>;
|
|
4755
|
-
/** State or province of a location, only to be used when relevant */
|
|
4898
|
+
/** State or province of a location, only to be used when relevant. This property is OCPI-compliant. */
|
|
4756
4899
|
state?: Maybe<Scalars["String"]>;
|
|
4757
|
-
/** ISO 3166-1 alpha-3 code for the country of this station */
|
|
4900
|
+
/** ISO 3166-1 alpha-3 code for the country of this station. This property is OCPI-compliant. */
|
|
4758
4901
|
country?: Maybe<Scalars["String"]>;
|
|
4759
|
-
/** Coordinates of a location */
|
|
4902
|
+
/** Coordinates of a location. This property is OCPI-compliant. */
|
|
4760
4903
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
4761
|
-
/** Geographical location of related points relevant to a user */
|
|
4904
|
+
/** Geographical location of related points relevant to a user. This property is OCPI-compliant. */
|
|
4762
4905
|
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
4763
|
-
/** Type of parking at a charge point location */
|
|
4906
|
+
/** Type of parking at a charge point location. This property is OCPI-compliant. */
|
|
4764
4907
|
parking_type?: Maybe<OCPIParkingType>;
|
|
4765
|
-
/** EVSEs that belong to a station */
|
|
4908
|
+
/** EVSEs that belong to a station. This property is OCPI-compliant. */
|
|
4766
4909
|
evses?: Maybe<Array<Maybe<EVSE>>>;
|
|
4767
|
-
/** Human-readable directions on how to reach a station */
|
|
4910
|
+
/** Human-readable directions on how to reach a station. This property is OCPI-compliant. */
|
|
4768
4911
|
directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
4769
|
-
/** Information about an operator */
|
|
4912
|
+
/** Information about an operator. This property is OCPI-compliant. */
|
|
4770
4913
|
operator?: Maybe<Operator>;
|
|
4771
|
-
/** Information about a suboperator if applicable */
|
|
4914
|
+
/** Information about a suboperator if applicable. This property is OCPI-compliant. */
|
|
4772
4915
|
suboperator?: Maybe<Operator>;
|
|
4773
|
-
/** Information about an owner if available */
|
|
4916
|
+
/** Information about an owner if available. This property is OCPI-compliant. */
|
|
4774
4917
|
owner?: Maybe<Operator>;
|
|
4775
|
-
/** Facilities a charging station belongs to */
|
|
4918
|
+
/** Facilities a charging station belongs to. This property is OCPI-compliant. */
|
|
4776
4919
|
facilities?: Maybe<Array<Maybe<OCPIFacility>>>;
|
|
4777
|
-
/** 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) */
|
|
4920
|
+
/** 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). This property is OCPI-compliant. */
|
|
4778
4921
|
time_zone?: Maybe<Scalars["String"]>;
|
|
4779
|
-
/** Times when an EVSEs at a location can be accessed for charging */
|
|
4922
|
+
/** Times when an EVSEs at a location can be accessed for charging. This property is OCPI-compliant. */
|
|
4780
4923
|
opening_times?: Maybe<OCPIHours>;
|
|
4781
|
-
/** 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 */
|
|
4924
|
+
/** 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. This property is OCPI-compliant. */
|
|
4782
4925
|
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
4783
|
-
/** Links to images related to a location such as photos or logos */
|
|
4926
|
+
/** Links to images related to a location such as photos or logos. This property is OCPI-compliant. */
|
|
4784
4927
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
4785
|
-
/** Details of the energy supplied at a location */
|
|
4928
|
+
/** Details of the energy supplied at a location. This property is OCPI-compliant. */
|
|
4786
4929
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
4787
|
-
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created) */
|
|
4930
|
+
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). This property is OCPI-compliant. */
|
|
4788
4931
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
4789
|
-
/** ID provided by a station data source */
|
|
4932
|
+
/** ID provided by a station data source. */
|
|
4790
4933
|
external_id?: Maybe<Scalars["String"]>;
|
|
4791
|
-
/** GeoJSON location of a charging station */
|
|
4934
|
+
/** GeoJSON location of a charging station. */
|
|
4792
4935
|
location?: Maybe<Point>;
|
|
4793
|
-
/** Elevation (altitude) level */
|
|
4936
|
+
/** Elevation (altitude) level. */
|
|
4794
4937
|
elevation?: Maybe<Scalars["Int"]>;
|
|
4795
|
-
/** Groups of EVSEs by power and type */
|
|
4938
|
+
/** Groups of EVSEs by power and type. */
|
|
4796
4939
|
chargers?: Maybe<Array<Maybe<Charger>>>;
|
|
4797
|
-
/** Amenities located at this location */
|
|
4940
|
+
/** Amenities located at this location. */
|
|
4798
4941
|
amenities?: Maybe<Scalars["JSON"]>;
|
|
4799
|
-
/** Enriched information about the physical address of a station */
|
|
4942
|
+
/** Enriched information about the physical address of a station. */
|
|
4800
4943
|
physical_address?: Maybe<Address>;
|
|
4801
|
-
/**
|
|
4944
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
4945
|
+
heavy_vehicles_properties?: Maybe<StationHeavyVehiclesProperties>;
|
|
4946
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
4947
|
+
heavy_vehicles_restrictions?: Maybe<StationHeavyVehiclesRestrictions>;
|
|
4948
|
+
/** Describes the vehicle restrictions at the location. */
|
|
4949
|
+
vehicle_restrictions?: Maybe<StationVehicleRestrictions>;
|
|
4950
|
+
/** Type of location where the charge point is located. For example, shop. */
|
|
4951
|
+
location_category?: Maybe<Scalars["String"]>;
|
|
4952
|
+
/** Coordinates for the location's entrances in decimal degrees. If available, there can be more than one entrances to the location. */
|
|
4953
|
+
entrance_for_navigation?: Maybe<Array<OCPIAdditionalGeoLocation>>;
|
|
4954
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
4802
4955
|
properties?: Maybe<Scalars["JSON"]>;
|
|
4803
|
-
/** A flag that indicates if a station has real-time information about the availability of its connectors */
|
|
4956
|
+
/** A flag that indicates if a station has real-time information about the availability of its connectors. */
|
|
4804
4957
|
realtime?: Maybe<Scalars["Boolean"]>;
|
|
4805
|
-
/**
|
|
4958
|
+
/**
|
|
4959
|
+
* A flag that indicates if a station is on private property.
|
|
4960
|
+
* @deprecated In favor of access_type.
|
|
4961
|
+
*/
|
|
4806
4962
|
private?: Maybe<Scalars["Boolean"]>;
|
|
4807
|
-
/** Connectors grouped by power */
|
|
4963
|
+
/** Connectors grouped by power. */
|
|
4808
4964
|
power?: Maybe<Scalars["JSON"]>;
|
|
4809
4965
|
/**
|
|
4810
|
-
* Station availability
|
|
4811
|
-
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy
|
|
4966
|
+
* Station availability.
|
|
4967
|
+
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy.
|
|
4812
4968
|
*/
|
|
4813
4969
|
predicted_availability?: Maybe<Array<Maybe<StationPredictedAvailability>>>;
|
|
4814
|
-
/**
|
|
4815
|
-
* Predicted station occupancy
|
|
4816
|
-
* @deprecated In favor of custom_properties.predicted_occupancy
|
|
4817
|
-
*/
|
|
4970
|
+
/** Predicted station occupancy. */
|
|
4818
4971
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
4819
|
-
/** Charging speed for a station */
|
|
4972
|
+
/** Charging speed for a station. */
|
|
4820
4973
|
speed?: Maybe<StationSpeedType>;
|
|
4821
|
-
/** Global status for a station */
|
|
4974
|
+
/** Global status for a station. */
|
|
4822
4975
|
status?: Maybe<ChargerStatus>;
|
|
4823
|
-
/** Custom properties of a station. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
4976
|
+
/** Custom properties of a station. These are vendor specific and will return null values on the fields that are not supported by your station database. */
|
|
4824
4977
|
custom_properties?: Maybe<StationCustomProperties>;
|
|
4978
|
+
/** Review of a station. */
|
|
4979
|
+
review?: Maybe<ReviewStats>;
|
|
4980
|
+
/** List of eMSP cards accepted at a charging station. */
|
|
4981
|
+
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
4982
|
+
/** Phone number for assistance at a charging station. */
|
|
4983
|
+
support_phone_number?: Maybe<Scalars["String"]>;
|
|
4984
|
+
/** Charging behavior of a station. */
|
|
4985
|
+
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
4986
|
+
/** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values. */
|
|
4987
|
+
reliability_score?: Maybe<Scalars["Int"]>;
|
|
4988
|
+
/** Indicates the authentication and payment methods. */
|
|
4989
|
+
adhoc_authorisation_payment_method?: Maybe<Array<StationAdhocAuthorisationPaymentMethod>>;
|
|
4990
|
+
/** Type of access to the charging station. */
|
|
4991
|
+
access_type?: Maybe<AccessType>;
|
|
4825
4992
|
};
|
|
4826
|
-
|
|
4993
|
+
export declare enum StationAdhocAuthorisationPaymentMethod {
|
|
4994
|
+
/** Authentication by car through Plug and Charge. */
|
|
4995
|
+
AUTH_BY_CAR_PLUG_AND_CHARGE = "AUTH_BY_CAR_PLUG_AND_CHARGE",
|
|
4996
|
+
/** Apple Pay. */
|
|
4997
|
+
ONLINE_APPLE_PAY = "ONLINE_APPLE_PAY",
|
|
4998
|
+
/** Terminal in app. */
|
|
4999
|
+
TERMINAL_IN_APP = "TERMINAL_IN_APP",
|
|
5000
|
+
/** PayPal. */
|
|
5001
|
+
ONLINE_PAYPAL = "ONLINE_PAYPAL",
|
|
5002
|
+
/** Service Provider RFID Card. */
|
|
5003
|
+
SERVICE_PROVIDER_RFID_CARD = "SERVICE_PROVIDER_RFID_CARD",
|
|
5004
|
+
/** Terminal QR Code. */
|
|
5005
|
+
TERMINAL_QR_CODE = "TERMINAL_QR_CODE",
|
|
5006
|
+
/** Terminal Credit Card. */
|
|
5007
|
+
TERMINAL_CREDIT_CARD = "TERMINAL_CREDIT_CARD",
|
|
5008
|
+
/** Terminal Debit Card. */
|
|
5009
|
+
TERMINAL_DEBIT_CARD = "TERMINAL_DEBIT_CARD",
|
|
5010
|
+
/** Terminal SMS. */
|
|
5011
|
+
TERMINAL_SMS = "TERMINAL_SMS",
|
|
5012
|
+
/** Credit Card. */
|
|
5013
|
+
ONLINE_CREDIT_CARD = "ONLINE_CREDIT_CARD",
|
|
5014
|
+
/** Other. */
|
|
5015
|
+
OTHER_OTHER = "OTHER_OTHER",
|
|
5016
|
+
/** Terminal Contactless. */
|
|
5017
|
+
TERMINAL_CONTACTLESS = "TERMINAL_CONTACTLESS",
|
|
5018
|
+
/** Google Pay. */
|
|
5019
|
+
ONLINE_GOOGLE_PAY = "ONLINE_GOOGLE_PAY",
|
|
5020
|
+
/** Bank Payment. */
|
|
5021
|
+
ONLINE_BANK_PAYMENT = "ONLINE_BANK_PAYMENT",
|
|
5022
|
+
/** Authentication by car through Auto Charge. */
|
|
5023
|
+
AUTH_BY_CAR_AUTOCHARGE = "AUTH_BY_CAR_AUTOCHARGE"
|
|
5024
|
+
}
|
|
5025
|
+
/** Filter which can be applied to retrieve the station around list action. */
|
|
4827
5026
|
export declare type StationAroundFilter = {
|
|
4828
|
-
/**
|
|
5027
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
4829
5028
|
location?: Maybe<PointInput>;
|
|
4830
|
-
/** Distance, in meters, to search around */
|
|
5029
|
+
/** Distance, in meters, to search around. */
|
|
4831
5030
|
distance?: Maybe<Scalars["Int"]>;
|
|
4832
|
-
/** Powers in kWh */
|
|
5031
|
+
/** Powers in kWh. */
|
|
4833
5032
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
4834
|
-
/** Amenities available near a station */
|
|
5033
|
+
/** Amenities available near a station. */
|
|
4835
5034
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
4836
|
-
/** Station speed */
|
|
5035
|
+
/** Station speed. */
|
|
4837
5036
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
4838
|
-
/** Station socket or plug standards */
|
|
5037
|
+
/** Station socket or plug standards. */
|
|
4839
5038
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
4840
|
-
/** Flag that allows you to return only available stations */
|
|
5039
|
+
/** Flag that allows you to return only available stations. */
|
|
4841
5040
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
4842
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
5041
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
4843
5042
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
4844
5043
|
};
|
|
4845
|
-
/** Deprecated: Replaced by filter & search params */
|
|
5044
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
4846
5045
|
export declare type StationAroundQuery = {
|
|
4847
|
-
/**
|
|
5046
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
4848
5047
|
location?: Maybe<PointInput>;
|
|
4849
|
-
/** Distance, in meters, to search around */
|
|
5048
|
+
/** Distance, in meters, to search around. */
|
|
4850
5049
|
distance?: Maybe<Scalars["Int"]>;
|
|
4851
|
-
/** Power in kWh */
|
|
5050
|
+
/** Power in kWh. */
|
|
4852
5051
|
power?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
4853
|
-
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park */
|
|
5052
|
+
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park. */
|
|
4854
5053
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
4855
5054
|
};
|
|
4856
5055
|
export declare type StationCustomProperties = {
|
|
4857
|
-
/**
|
|
5056
|
+
/**
|
|
5057
|
+
* List of eMSP cards accepted at a charging station.
|
|
5058
|
+
* @deprecated In favor of station.roaming.
|
|
5059
|
+
*/
|
|
4858
5060
|
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
4859
|
-
/**
|
|
5061
|
+
/**
|
|
5062
|
+
* Phone number for assistance at a charging station.
|
|
5063
|
+
* @deprecated In favor of station.support_phone_number.
|
|
5064
|
+
*/
|
|
4860
5065
|
support_phone_number?: Maybe<Scalars["String"]>;
|
|
4861
|
-
/**
|
|
5066
|
+
/**
|
|
5067
|
+
* Charging behavior of a station.
|
|
5068
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
5069
|
+
*/
|
|
4862
5070
|
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
4863
|
-
/**
|
|
5071
|
+
/**
|
|
5072
|
+
* Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.
|
|
5073
|
+
* @deprecated In favor of station.reliability_score.
|
|
5074
|
+
*/
|
|
4864
5075
|
reliability_score?: Maybe<Scalars["Int"]>;
|
|
4865
|
-
/**
|
|
5076
|
+
/**
|
|
5077
|
+
* List of available ad hoc payment methods.
|
|
5078
|
+
* @deprecated In favor of station.adhoc_authorisation_payment_method.
|
|
5079
|
+
*/
|
|
4866
5080
|
adhoc_authorisation_method?: Maybe<Array<Maybe<AdhocAuthorisationMethod>>>;
|
|
4867
|
-
/**
|
|
5081
|
+
/**
|
|
5082
|
+
* Predicted station occupancy.
|
|
5083
|
+
* @deprecated In favor of station.predicted_occupancy.
|
|
5084
|
+
*/
|
|
4868
5085
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
4869
|
-
/**
|
|
5086
|
+
/**
|
|
5087
|
+
* Type of access to the charging station.
|
|
5088
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
5089
|
+
*/
|
|
4870
5090
|
access_type?: Maybe<AccessType>;
|
|
4871
|
-
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
5091
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
4872
5092
|
oicp?: Maybe<OICPStationCustomProperties>;
|
|
4873
5093
|
};
|
|
4874
|
-
/**
|
|
5094
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
5095
|
+
export declare type StationHeavyVehiclesProperties = {
|
|
5096
|
+
/** Indicates whether the location was constructed mainly for the purpose of heavy vehicles like trucks. */
|
|
5097
|
+
is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
5098
|
+
/** List of facilities in the location. */
|
|
5099
|
+
facilities?: Maybe<Array<HeavyVehiclesFacility>>;
|
|
5100
|
+
/** Indicates whether the location is suitable for trucks with trailers. */
|
|
5101
|
+
is_trailer_accessible?: Maybe<Scalars["Boolean"]>;
|
|
5102
|
+
/** Indicates whether the location is drive-through. */
|
|
5103
|
+
is_drive_through?: Maybe<Scalars["Boolean"]>;
|
|
5104
|
+
/** Indicates whether the location allows charging of heavy vehicles transporting dangerous goods. */
|
|
5105
|
+
allows_dangerous_goods?: Maybe<Scalars["Boolean"]>;
|
|
5106
|
+
/** Indicates whether the location is suitable for rigid heavy vehicles. */
|
|
5107
|
+
allows_rigid_vehicles?: Maybe<Scalars["Boolean"]>;
|
|
5108
|
+
/** Indicates whether the location allows overnight charging of heavy vehicles. */
|
|
5109
|
+
allows_overnight_parking?: Maybe<Scalars["Boolean"]>;
|
|
5110
|
+
};
|
|
5111
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5112
|
+
export declare type StationHeavyVehiclesRestrictions = {
|
|
5113
|
+
/** Maximum height of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5114
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5115
|
+
/** Maximum width of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5116
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5117
|
+
/** Maximum length of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5118
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5119
|
+
/** Maximum mass of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5120
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5121
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
5122
|
+
allowed_types_EU?: Maybe<Array<HeavyVehiclesEUType>>;
|
|
5123
|
+
};
|
|
5124
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5125
|
+
export declare type StationHeavyVehiclesRestrictionsheightArgs = {
|
|
5126
|
+
unit?: Maybe<DimensionUnit>;
|
|
5127
|
+
};
|
|
5128
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5129
|
+
export declare type StationHeavyVehiclesRestrictionswidthArgs = {
|
|
5130
|
+
unit?: Maybe<DimensionUnit>;
|
|
5131
|
+
};
|
|
5132
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5133
|
+
export declare type StationHeavyVehiclesRestrictionslengthArgs = {
|
|
5134
|
+
unit?: Maybe<DimensionUnit>;
|
|
5135
|
+
};
|
|
5136
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5137
|
+
export declare type StationHeavyVehiclesRestrictionsmassArgs = {
|
|
5138
|
+
unit?: Maybe<WeightUnit>;
|
|
5139
|
+
};
|
|
5140
|
+
/** Filter which can be applied to retrieve the station list action. */
|
|
4875
5141
|
export declare type StationListFilter = {
|
|
4876
|
-
/** Powers in kWh */
|
|
5142
|
+
/** Powers in kWh. */
|
|
4877
5143
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
4878
|
-
/** Amenities available near a station */
|
|
5144
|
+
/** Amenities available near a station. */
|
|
4879
5145
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
4880
|
-
/** Station speed */
|
|
5146
|
+
/** Station speed. */
|
|
4881
5147
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
4882
|
-
/** Station socket or plug standards */
|
|
5148
|
+
/** Station socket or plug standards. */
|
|
4883
5149
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
4884
|
-
/** Flag that allows you to return only available stations */
|
|
5150
|
+
/** Flag that allows you to return only available stations. */
|
|
4885
5151
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
4886
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
5152
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
4887
5153
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
4888
5154
|
};
|
|
4889
|
-
/** Deprecated: Replaced by filter & search params */
|
|
5155
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
4890
5156
|
export declare type StationListQuery = {
|
|
4891
|
-
/** ID of the station */
|
|
5157
|
+
/** ID of the station. */
|
|
4892
5158
|
id?: Maybe<Scalars["ID"]>;
|
|
4893
|
-
/** External ID of the station provided by the station data source */
|
|
5159
|
+
/** External ID of the station provided by the station data source. */
|
|
4894
5160
|
external_id?: Maybe<Scalars["String"]>;
|
|
4895
|
-
/** Exact name */
|
|
5161
|
+
/** Exact name. */
|
|
4896
5162
|
name?: Maybe<Scalars["String"]>;
|
|
4897
5163
|
};
|
|
4898
|
-
/** Station availability for each weekday and hour */
|
|
5164
|
+
/** Station availability for each weekday and hour. */
|
|
4899
5165
|
export declare type StationPredictedAvailability = {
|
|
4900
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5166
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
4901
5167
|
weekday?: Maybe<Scalars["Int"]>;
|
|
4902
|
-
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)) */
|
|
5168
|
+
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)). */
|
|
4903
5169
|
prediction?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
4904
5170
|
};
|
|
4905
|
-
/** Station occupancy for each weekday and hour */
|
|
5171
|
+
/** Station occupancy for each weekday and hour. */
|
|
4906
5172
|
export declare type StationPredictedOccupancy = {
|
|
4907
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5173
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
4908
5174
|
weekday?: Maybe<Scalars["Int"]>;
|
|
4909
|
-
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied */
|
|
5175
|
+
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied. */
|
|
4910
5176
|
occupancy?: Maybe<Scalars["Int"]>;
|
|
4911
|
-
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5177
|
+
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
4912
5178
|
period_begin?: Maybe<Scalars["String"]>;
|
|
4913
|
-
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5179
|
+
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
4914
5180
|
period_end?: Maybe<Scalars["String"]>;
|
|
4915
5181
|
};
|
|
4916
5182
|
export declare type StationRoaming = {
|
|
4917
|
-
/**
|
|
5183
|
+
/** Unique id for a provider. It is created by Eco-Movement, and it is stable. */
|
|
5184
|
+
partner_id?: Maybe<Scalars["String"]>;
|
|
5185
|
+
/**
|
|
5186
|
+
* Unique E-Mobility Account Identifier (eMA ID) for a provider.
|
|
5187
|
+
* It is created by Eco-Movement by combining the country code where the charging station is located, and the party id of the provider.
|
|
5188
|
+
* For example, NL-ECO. Note: A provider can have multiple eMA IDs.
|
|
5189
|
+
* For example, if a company named 'Example Company A' acquired 'Example Company B' and owns the charging stations of Example Company B,
|
|
5190
|
+
* then this attribute maps Example Company B's eMA IDs to Example Company A's eMA IDs. For example, ['NL-EXA', 'NL-EXB'].
|
|
5191
|
+
*/
|
|
5192
|
+
ema_id?: Maybe<Array<Scalars["String"]>>;
|
|
5193
|
+
/** Name of the EMSP provider. */
|
|
4918
5194
|
emsp?: Maybe<Scalars["String"]>;
|
|
4919
|
-
/** Name of the card accepted at a charging station */
|
|
5195
|
+
/** Name of the card accepted at a charging station. */
|
|
4920
5196
|
card?: Maybe<Scalars["String"]>;
|
|
4921
|
-
/** Link to native Android app for card accepted at a charging station */
|
|
5197
|
+
/** Link to native Android app for card accepted at a charging station. */
|
|
4922
5198
|
android_app_link?: Maybe<Scalars["String"]>;
|
|
4923
|
-
/** Link to native iOS app for card accepted at a charging station */
|
|
5199
|
+
/** Link to native iOS app for card accepted at a charging station. */
|
|
4924
5200
|
ios_app_link?: Maybe<Scalars["String"]>;
|
|
4925
5201
|
};
|
|
4926
5202
|
/** The station speed type. */
|
|
@@ -4941,6 +5217,33 @@ export declare type StationStats = {
|
|
|
4941
5217
|
/** Stations count grouped by amenities */
|
|
4942
5218
|
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
4943
5219
|
};
|
|
5220
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5221
|
+
export declare type StationVehicleRestrictions = {
|
|
5222
|
+
/** Maximum weight for a vehicle that is allowed at the location. */
|
|
5223
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5224
|
+
/** Maximum width for a vehicle that is allowed at the location. */
|
|
5225
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5226
|
+
/** Maximum height for a vehicle that is allowed at the location. */
|
|
5227
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5228
|
+
/** Maximum length for a vehicle that is allowed at the location. */
|
|
5229
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5230
|
+
};
|
|
5231
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5232
|
+
export declare type StationVehicleRestrictionsmassArgs = {
|
|
5233
|
+
unit?: Maybe<WeightUnit>;
|
|
5234
|
+
};
|
|
5235
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5236
|
+
export declare type StationVehicleRestrictionswidthArgs = {
|
|
5237
|
+
unit?: Maybe<DimensionUnit>;
|
|
5238
|
+
};
|
|
5239
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5240
|
+
export declare type StationVehicleRestrictionsheightArgs = {
|
|
5241
|
+
unit?: Maybe<DimensionUnit>;
|
|
5242
|
+
};
|
|
5243
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5244
|
+
export declare type StationVehicleRestrictionslengthArgs = {
|
|
5245
|
+
unit?: Maybe<DimensionUnit>;
|
|
5246
|
+
};
|
|
4944
5247
|
/** Types of a route step. */
|
|
4945
5248
|
export declare enum StepType {
|
|
4946
5249
|
/** This step is a road. */
|
|
@@ -5115,6 +5418,18 @@ export declare enum TelemetryInputSource {
|
|
|
5115
5418
|
/** Value from the vehicle's telemetry. */
|
|
5116
5419
|
TELEMETRY = "telemetry"
|
|
5117
5420
|
}
|
|
5421
|
+
export declare type Temperature = {
|
|
5422
|
+
/** Value of the temperature. */
|
|
5423
|
+
value: Scalars["Float"];
|
|
5424
|
+
/** Type of temperature. */
|
|
5425
|
+
type: TemperatureUnit;
|
|
5426
|
+
};
|
|
5427
|
+
export declare type TemperatureInput = {
|
|
5428
|
+
/** Value of the temperature. */
|
|
5429
|
+
value: Scalars["Float"];
|
|
5430
|
+
/** Type of temperature. */
|
|
5431
|
+
type: TemperatureUnit;
|
|
5432
|
+
};
|
|
5118
5433
|
export declare enum TemperatureUnit {
|
|
5119
5434
|
/** Return the temperature in Celsius. */
|
|
5120
5435
|
CELSIUS = "Celsius",
|
|
@@ -5197,6 +5512,8 @@ export declare type Vehicle = {
|
|
|
5197
5512
|
purpose: VehiclePurpose;
|
|
5198
5513
|
/** Type of vehicle. */
|
|
5199
5514
|
type: VehicleType;
|
|
5515
|
+
/** Details about Heat Pump. */
|
|
5516
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
5200
5517
|
};
|
|
5201
5518
|
export declare type VehicleAvailability = {
|
|
5202
5519
|
/** Availability of the vehicle. */
|
|
@@ -5228,6 +5545,8 @@ export declare type VehicleBattery = {
|
|
|
5228
5545
|
full_kwh: Scalars["Float"];
|
|
5229
5546
|
/** Usable battery capacity in kWh. */
|
|
5230
5547
|
usable_kwh: Scalars["Float"];
|
|
5548
|
+
/** Type of battery. */
|
|
5549
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5231
5550
|
};
|
|
5232
5551
|
/** Battery field estimated. */
|
|
5233
5552
|
export declare enum VehicleBatteryFieldEstimations {
|
|
@@ -5240,6 +5559,10 @@ export declare enum VehicleBatteryFieldEstimations {
|
|
|
5240
5559
|
/** usable_kwh field is estimated. */
|
|
5241
5560
|
U = "U"
|
|
5242
5561
|
}
|
|
5562
|
+
export declare enum VehicleBatteryType {
|
|
5563
|
+
/** Lithium-Ion Battery. */
|
|
5564
|
+
LITHIUM_ION = "lithium_ion"
|
|
5565
|
+
}
|
|
5243
5566
|
export declare type VehicleBody = {
|
|
5244
5567
|
/** Width with folded mirrors, default in mm. */
|
|
5245
5568
|
width: Scalars["Float"];
|
|
@@ -5337,6 +5660,12 @@ export declare enum VehicleFuel {
|
|
|
5337
5660
|
/** ICE engine available. Uses petrol. */
|
|
5338
5661
|
P = "P"
|
|
5339
5662
|
}
|
|
5663
|
+
export declare type VehicleHeatPump = {
|
|
5664
|
+
/** Indicates if a heat pump is available for a specific vehicle. */
|
|
5665
|
+
is_available?: Maybe<Scalars["Boolean"]>;
|
|
5666
|
+
/** Indicates if a heat pump is standard equipment for a specific vehicle. */
|
|
5667
|
+
is_standard_equipment?: Maybe<Scalars["Boolean"]>;
|
|
5668
|
+
};
|
|
5340
5669
|
export declare type VehicleImage = {
|
|
5341
5670
|
/** Image id. */
|
|
5342
5671
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -5423,6 +5752,8 @@ export declare type VehicleListBattery = {
|
|
|
5423
5752
|
full_kwh: Scalars["Float"];
|
|
5424
5753
|
/** Usable battery capacity in kWh. */
|
|
5425
5754
|
usable_kwh: Scalars["Float"];
|
|
5755
|
+
/** Type of battery. */
|
|
5756
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5426
5757
|
};
|
|
5427
5758
|
export declare type VehicleListBody = {
|
|
5428
5759
|
/** Number of seats in a vehicle. */
|
|
@@ -5529,6 +5860,16 @@ export declare type VehiclePerformanceaccelerationArgs = {
|
|
|
5529
5860
|
export declare type VehiclePerformancetop_speedArgs = {
|
|
5530
5861
|
unit?: Maybe<SpeedUnit>;
|
|
5531
5862
|
};
|
|
5863
|
+
export declare enum VehiclePlugAndChargeSupport {
|
|
5864
|
+
/** Plug and charge is available. */
|
|
5865
|
+
AVAILABLE = "available",
|
|
5866
|
+
/** Plug and charge is announced, but not yet available. */
|
|
5867
|
+
ANNOUNCED = "announced",
|
|
5868
|
+
/** Plug and charge is available in a limited context. */
|
|
5869
|
+
LIMITED = "limited",
|
|
5870
|
+
/** Plug and charge is not available. */
|
|
5871
|
+
NOT_AVAILABLE = "not_available"
|
|
5872
|
+
}
|
|
5532
5873
|
/** The output element of the vehiclePremium query. */
|
|
5533
5874
|
export declare type VehiclePremium = {
|
|
5534
5875
|
/** Vehicles unique ID. */
|
|
@@ -5580,6 +5921,8 @@ export declare type VehiclePremium = {
|
|
|
5580
5921
|
purpose: VehiclePurpose;
|
|
5581
5922
|
/** Type of vehicle. */
|
|
5582
5923
|
type: VehicleType;
|
|
5924
|
+
/** Details about Heat Pump. */
|
|
5925
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
5583
5926
|
};
|
|
5584
5927
|
export declare type VehiclePremiumAvailability = {
|
|
5585
5928
|
/** Availability of the vehicle. */
|
|
@@ -5616,6 +5959,8 @@ export declare type VehiclePremiumBattery = {
|
|
|
5616
5959
|
weight?: Maybe<Scalars["Float"]>;
|
|
5617
5960
|
/** Nominal voltage of battery. */
|
|
5618
5961
|
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
5962
|
+
/** Type of battery. */
|
|
5963
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5619
5964
|
};
|
|
5620
5965
|
export declare type VehiclePremiumBody = {
|
|
5621
5966
|
/** Length, default in mm. */
|
|
@@ -5632,6 +5977,8 @@ export declare type VehiclePremiumBody = {
|
|
|
5632
5977
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
5633
5978
|
/** Indicates if wheelbase field is estimated. */
|
|
5634
5979
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5980
|
+
/** Ground clearance of a vehicle as specified by the OEM, default in mm. */
|
|
5981
|
+
ground_clearance?: Maybe<Scalars["Float"]>;
|
|
5635
5982
|
/** Weight (unladen EU). */
|
|
5636
5983
|
weight: VehicleBodyWeight;
|
|
5637
5984
|
/** Maximum allowed vehicle weight with payload. */
|
|
@@ -5697,6 +6044,9 @@ export declare type VehiclePremiumBodyheightArgs = {
|
|
|
5697
6044
|
export declare type VehiclePremiumBodywheelbaseArgs = {
|
|
5698
6045
|
unit?: Maybe<MeasurementUnit>;
|
|
5699
6046
|
};
|
|
6047
|
+
export declare type VehiclePremiumBodyground_clearanceArgs = {
|
|
6048
|
+
unit?: Maybe<MeasurementUnit>;
|
|
6049
|
+
};
|
|
5700
6050
|
export declare type VehiclePremiumBodyweight_max_payloadArgs = {
|
|
5701
6051
|
unit?: Maybe<WeightUnit>;
|
|
5702
6052
|
};
|
|
@@ -5735,6 +6085,8 @@ export declare type VehiclePremiumCharge = {
|
|
|
5735
6085
|
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
5736
6086
|
/** Alternative upgrade for the standard onboard charger when available. */
|
|
5737
6087
|
alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
|
|
6088
|
+
/** Vehicle-to-everything charge support. */
|
|
6089
|
+
vehicle_to_everything?: Maybe<VehicleToEverything>;
|
|
5738
6090
|
};
|
|
5739
6091
|
export declare type VehiclePremiumChargeAlternativeOBC = {
|
|
5740
6092
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
@@ -6000,6 +6352,16 @@ export declare type VehiclePremiumFastCharge = {
|
|
|
6000
6352
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6001
6353
|
/** Charging details for fast charging. */
|
|
6002
6354
|
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
6355
|
+
/** Indicates if autocharge is available. */
|
|
6356
|
+
has_autocharge?: Maybe<Scalars["Boolean"]>;
|
|
6357
|
+
/** Status of Plug & Charge (PnC ISO15118) support for vehicle. */
|
|
6358
|
+
iso_15118_pnc_support?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6359
|
+
/** Status of Plug & Charge (PnC ISO15118) -2 protocol support for vehicle. */
|
|
6360
|
+
iso_15118_pnc_support_2?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6361
|
+
/** Status of Plug & Charge (PnC ISO15118) -20 protocol support for vehicle. */
|
|
6362
|
+
iso_15118_pnc_support_20?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6363
|
+
/** Indicates if the fastcharge data is based on a real-world test by Fastned. */
|
|
6364
|
+
is_fastned_tested?: Maybe<Scalars["Boolean"]>;
|
|
6003
6365
|
};
|
|
6004
6366
|
export declare type VehiclePremiumFastChargecharge_speedArgs = {
|
|
6005
6367
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
@@ -6091,6 +6453,10 @@ export declare type VehiclePremiumPriceValueWithGrant = {
|
|
|
6091
6453
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6092
6454
|
/** Grant that is applied to the starting price. */
|
|
6093
6455
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
6456
|
+
/** Total delivery fees (be aware that this field does not include grant). */
|
|
6457
|
+
price_delivery?: Maybe<Scalars["Int"]>;
|
|
6458
|
+
/** First registration fee (be aware that this field does not include grant). */
|
|
6459
|
+
price_first_registration_fee?: Maybe<Scalars["Int"]>;
|
|
6094
6460
|
};
|
|
6095
6461
|
export declare type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
6096
6462
|
unit?: Maybe<CurrencyUnit>;
|
|
@@ -6166,11 +6532,22 @@ export declare type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
|
6166
6532
|
unit?: Maybe<FuelConsumptionUnit>;
|
|
6167
6533
|
};
|
|
6168
6534
|
export declare type VehiclePremiumRoutingConsumption = {
|
|
6169
|
-
/**
|
|
6535
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc */
|
|
6536
|
+
auxiliary?: Maybe<Scalars["Float"]>;
|
|
6537
|
+
/**
|
|
6538
|
+
* Consumption, in kWh, of the auxiliaries.
|
|
6539
|
+
* @deprecated In favor of auxiliary
|
|
6540
|
+
*/
|
|
6170
6541
|
aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
6171
|
-
/**
|
|
6542
|
+
/**
|
|
6543
|
+
* Consumption, in kWh, of the battery management system.
|
|
6544
|
+
* @deprecated In favor of auxiliary
|
|
6545
|
+
*/
|
|
6172
6546
|
bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
6173
|
-
/**
|
|
6547
|
+
/**
|
|
6548
|
+
* Consumption, in kWh, of the vehicle in idle mode.
|
|
6549
|
+
* @deprecated In favor of auxiliary
|
|
6550
|
+
*/
|
|
6174
6551
|
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
6175
6552
|
};
|
|
6176
6553
|
export declare type VehiclePremiumRoutingConsumptionValue = {
|
|
@@ -6198,6 +6575,8 @@ export declare type VehiclePremiumSafetyEuroNcap = {
|
|
|
6198
6575
|
vru?: Maybe<Scalars["Int"]>;
|
|
6199
6576
|
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
6200
6577
|
sa?: Maybe<Scalars["Int"]>;
|
|
6578
|
+
/** Link to the EuroNCAP test report. */
|
|
6579
|
+
url?: Maybe<Scalars["String"]>;
|
|
6201
6580
|
};
|
|
6202
6581
|
/** Propulsion. */
|
|
6203
6582
|
export declare enum VehiclePropulsion {
|
|
@@ -6300,6 +6679,34 @@ export declare enum VehicleStatus {
|
|
|
6300
6679
|
/** Is archived and can not be used. */
|
|
6301
6680
|
ARCHIVED = "archived"
|
|
6302
6681
|
}
|
|
6682
|
+
export declare type VehicleToEverything = {
|
|
6683
|
+
/** Information about Vehicle-to-Load. */
|
|
6684
|
+
vehicle_to_load?: Maybe<VehicleToEverythingLoad>;
|
|
6685
|
+
/** Information about Vehicle-to-Home. */
|
|
6686
|
+
vehicle_to_home?: Maybe<VehicleToEverythingHomeGrid>;
|
|
6687
|
+
/** Information about Vehicle-to-Grid. */
|
|
6688
|
+
vehicle_to_grid?: Maybe<VehicleToEverythingHomeGrid>;
|
|
6689
|
+
};
|
|
6690
|
+
export declare type VehicleToEverythingHomeGrid = {
|
|
6691
|
+
/** Vehicle-to-Home/Grid AC power information. */
|
|
6692
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
6693
|
+
/** Vehicle-to-Home/Grid DC power information */
|
|
6694
|
+
dc?: Maybe<VehicleToEverythingPower>;
|
|
6695
|
+
};
|
|
6696
|
+
export declare type VehicleToEverythingLoad = {
|
|
6697
|
+
/** Vehicle-to-Load power information. */
|
|
6698
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
6699
|
+
/** Details on interior ports available for V2L. */
|
|
6700
|
+
interior_ports?: Maybe<Scalars["String"]>;
|
|
6701
|
+
/** Details on exterior ports available for V2L. */
|
|
6702
|
+
exterior_ports?: Maybe<Scalars["String"]>;
|
|
6703
|
+
};
|
|
6704
|
+
export declare type VehicleToEverythingPower = {
|
|
6705
|
+
/** Indicates if this charging is supported. */
|
|
6706
|
+
is_supported?: Maybe<PowerSupported>;
|
|
6707
|
+
/** Maximum power output, in kilowatts. */
|
|
6708
|
+
maximum_power?: Maybe<Scalars["String"]>;
|
|
6709
|
+
};
|
|
6303
6710
|
export declare enum VehicleType {
|
|
6304
6711
|
/** Any motor vehicle with two wheels or a motor vehicle with no more than four wheels, does not have parallel seating, and is controlled by means of handlebars. */
|
|
6305
6712
|
MOTORCYCLE = "motorcycle",
|