@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/src/graphql.ts
CHANGED
|
@@ -53,18 +53,37 @@ export type Address = {
|
|
|
53
53
|
country?: Maybe<Scalars["String"]>;
|
|
54
54
|
/** County code (2 letters). */
|
|
55
55
|
county?: Maybe<Scalars["String"]>;
|
|
56
|
+
/** State or province. */
|
|
57
|
+
state_province?: Maybe<Scalars["String"]>;
|
|
58
|
+
/** Municipality. */
|
|
59
|
+
municipality?: Maybe<Scalars["String"]>;
|
|
56
60
|
/** City. */
|
|
57
61
|
city?: Maybe<Scalars["String"]>;
|
|
58
62
|
/** Street name. */
|
|
59
63
|
street?: Maybe<Scalars["String"]>;
|
|
60
64
|
/** Street number. */
|
|
61
65
|
number?: Maybe<Scalars["String"]>;
|
|
62
|
-
/**
|
|
66
|
+
/**
|
|
67
|
+
* Postal code of the location.
|
|
68
|
+
* @deprecated In favor of postal_code.
|
|
69
|
+
*/
|
|
63
70
|
postalCode?: Maybe<Scalars["String"]>;
|
|
64
|
-
/**
|
|
71
|
+
/**
|
|
72
|
+
* String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>.
|
|
73
|
+
* @deprecated In favor of what_3_words.
|
|
74
|
+
*/
|
|
65
75
|
what3Words?: Maybe<Scalars["String"]>;
|
|
66
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* Human-readable address of the location.
|
|
78
|
+
* @deprecated In favor of formatted_address.
|
|
79
|
+
*/
|
|
67
80
|
formattedAddress?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
81
|
+
/** Postal code of the location. */
|
|
82
|
+
postal_code?: Maybe<Scalars["String"]>;
|
|
83
|
+
/** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>. */
|
|
84
|
+
what_3_words?: Maybe<Scalars["String"]>;
|
|
85
|
+
/** Human-readable address of the location. */
|
|
86
|
+
formatted_address?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
68
87
|
};
|
|
69
88
|
|
|
70
89
|
export enum AdhocAuthorisationMethod {
|
|
@@ -1436,42 +1455,42 @@ export type ChargeTotalInput = {
|
|
|
1436
1455
|
source?: Maybe<TelemetryInputSource>;
|
|
1437
1456
|
};
|
|
1438
1457
|
|
|
1439
|
-
/** A
|
|
1458
|
+
/** A grouped representation of EVSEs. */
|
|
1440
1459
|
export type Charger = {
|
|
1441
|
-
/** Type of charger */
|
|
1460
|
+
/** Type of a charger. */
|
|
1442
1461
|
standard?: Maybe<ConnectorType>;
|
|
1443
|
-
/** Power of a charger */
|
|
1462
|
+
/** Power of a charger. */
|
|
1444
1463
|
power?: Maybe<Scalars["Float"]>;
|
|
1445
|
-
/** Price of a charger */
|
|
1464
|
+
/** Price of a charger. */
|
|
1446
1465
|
price?: Maybe<Scalars["String"]>;
|
|
1447
|
-
/** Charging speed */
|
|
1466
|
+
/** Charging speed. */
|
|
1448
1467
|
speed?: Maybe<StationSpeedType>;
|
|
1449
|
-
/** Statuses of all the EVSEs grouped in a charger */
|
|
1468
|
+
/** Statuses of all the EVSEs grouped in a charger. */
|
|
1450
1469
|
status?: Maybe<ChargerStatuses>;
|
|
1451
|
-
/** Total number of EVSEs grouped in a charger */
|
|
1470
|
+
/** Total number of EVSEs grouped in a charger. */
|
|
1452
1471
|
total?: Maybe<Scalars["Int"]>;
|
|
1453
1472
|
};
|
|
1454
1473
|
|
|
1455
1474
|
export enum ChargerStatus {
|
|
1456
|
-
/** The charger is free */
|
|
1475
|
+
/** The charger is free. */
|
|
1457
1476
|
FREE = "free",
|
|
1458
|
-
/** The charger is occupied/busy */
|
|
1477
|
+
/** The charger is occupied/busy. */
|
|
1459
1478
|
BUSY = "busy",
|
|
1460
|
-
/** The charger is unknown */
|
|
1479
|
+
/** The charger is unknown. */
|
|
1461
1480
|
UNKNOWN = "unknown",
|
|
1462
|
-
/** The charger has an error */
|
|
1481
|
+
/** The charger has an error. */
|
|
1463
1482
|
ERROR = "error"
|
|
1464
1483
|
}
|
|
1465
1484
|
|
|
1466
|
-
/**
|
|
1485
|
+
/** Grouping by status of the chargers. */
|
|
1467
1486
|
export type ChargerStatuses = {
|
|
1468
|
-
/** How many are free */
|
|
1487
|
+
/** How many are free. */
|
|
1469
1488
|
free?: Maybe<Scalars["Int"]>;
|
|
1470
|
-
/** How many are busy */
|
|
1489
|
+
/** How many are busy. */
|
|
1471
1490
|
busy?: Maybe<Scalars["Int"]>;
|
|
1472
|
-
/** How many are unknown */
|
|
1491
|
+
/** How many are unknown. */
|
|
1473
1492
|
unknown?: Maybe<Scalars["Int"]>;
|
|
1474
|
-
/** How many are not available */
|
|
1493
|
+
/** How many are not available. */
|
|
1475
1494
|
error?: Maybe<Scalars["Int"]>;
|
|
1476
1495
|
};
|
|
1477
1496
|
|
|
@@ -1506,24 +1525,24 @@ export type ChargetripRangebestArgs = {
|
|
|
1506
1525
|
};
|
|
1507
1526
|
|
|
1508
1527
|
export type ChargingBehaviour = {
|
|
1509
|
-
/** Charging behaviour of users divided in groups, based on real-time information */
|
|
1528
|
+
/** Charging behaviour of users divided in groups, based on real-time information. */
|
|
1510
1529
|
code?: Maybe<ChargingBehaviourCode>;
|
|
1511
|
-
/** Description of charging behaviour */
|
|
1530
|
+
/** Description of charging behaviour. */
|
|
1512
1531
|
description?: Maybe<Scalars["String"]>;
|
|
1513
1532
|
};
|
|
1514
1533
|
|
|
1515
1534
|
export enum ChargingBehaviourCode {
|
|
1516
|
-
/** Mainly morning charging, and some mixed afternoon and evening charging */
|
|
1535
|
+
/** Mainly morning charging, and some mixed afternoon and evening charging. */
|
|
1517
1536
|
URBAN_CHARGING = "URBAN_CHARGING",
|
|
1518
|
-
/** Mainly fast charging, with some morning and afternoon charging */
|
|
1537
|
+
/** Mainly fast charging, with some morning and afternoon charging. */
|
|
1519
1538
|
FAST_CHARGING = "FAST_CHARGING",
|
|
1520
|
-
/** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging */
|
|
1539
|
+
/** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging. */
|
|
1521
1540
|
MIXED_CHARGING = "MIXED_CHARGING",
|
|
1522
|
-
/** Mainly noise charging */
|
|
1541
|
+
/** Mainly noise charging. */
|
|
1523
1542
|
NOISE_CHARGING = "NOISE_CHARGING",
|
|
1524
|
-
/** Mainly overnight charging */
|
|
1543
|
+
/** Mainly overnight charging. */
|
|
1525
1544
|
OVERNIGHT_CHARGING = "OVERNIGHT_CHARGING",
|
|
1526
|
-
/** Mainly morning charging, with some afternoon charging */
|
|
1545
|
+
/** Mainly morning charging, with some afternoon charging. */
|
|
1527
1546
|
OFFICE_CHARGING = "OFFICE_CHARGING"
|
|
1528
1547
|
}
|
|
1529
1548
|
|
|
@@ -1638,56 +1657,56 @@ export enum ConnectedVehicleStatus {
|
|
|
1638
1657
|
REMOVED = "removed"
|
|
1639
1658
|
}
|
|
1640
1659
|
|
|
1641
|
-
/** Connector data which extends OCPI Connector */
|
|
1660
|
+
/** Connector data which extends OCPI Connector. */
|
|
1642
1661
|
export type Connector = {
|
|
1643
|
-
/** 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. */
|
|
1662
|
+
/** 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. */
|
|
1644
1663
|
id?: Maybe<Scalars["String"]>;
|
|
1645
|
-
/** Standard of an installed connector. */
|
|
1664
|
+
/** Standard of an installed connector. This property is OCPI-compliant. */
|
|
1646
1665
|
standard?: Maybe<ConnectorType>;
|
|
1647
|
-
/** Format (socket/cable) of an installed connector. */
|
|
1666
|
+
/** Format (socket/cable) of an installed connector. This property is OCPI-compliant. */
|
|
1648
1667
|
format?: Maybe<OCPIConnectorFormat>;
|
|
1649
|
-
/** Type of power of an installed connector.
|
|
1668
|
+
/** Type of power of an installed connector. This property is OCPI-compliant. */
|
|
1650
1669
|
power_type?: Maybe<OCPIPowerType>;
|
|
1651
|
-
/** 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. */
|
|
1670
|
+
/** 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. */
|
|
1652
1671
|
max_voltage?: Maybe<Scalars["Int"]>;
|
|
1653
|
-
/** Maximum amperage of a connector, in ampere [A]. */
|
|
1672
|
+
/** Maximum amperage of a connector, in ampere [A]. This property is OCPI-compliant. */
|
|
1654
1673
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
1655
1674
|
/**
|
|
1656
1675
|
* 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.
|
|
1657
1676
|
* 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.
|
|
1658
|
-
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
1677
|
+
* For AC Charge Points, the amount of phases used can also have influence on the maximum power. This property is OCPI-compliant.
|
|
1659
1678
|
*/
|
|
1660
1679
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
1661
|
-
/** Maximum electric power in kW */
|
|
1680
|
+
/** Maximum electric power in kW. */
|
|
1662
1681
|
power?: Maybe<Scalars["Float"]>;
|
|
1663
1682
|
/**
|
|
1664
1683
|
* 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.
|
|
1665
1684
|
* 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.
|
|
1666
|
-
* For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff.
|
|
1685
|
+
* 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.
|
|
1667
1686
|
*/
|
|
1668
1687
|
tariff_ids?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
1669
|
-
/** URL to an operator’s terms and conditions. */
|
|
1688
|
+
/** URL to an operator’s terms and conditions. This property is OCPI-compliant. */
|
|
1670
1689
|
terms_and_conditions?: Maybe<Scalars["String"]>;
|
|
1671
|
-
/** Timestamp when a connector was last updated (or created). */
|
|
1690
|
+
/** Timestamp when a connector was last updated (or created). This property is OCPI-compliant. */
|
|
1672
1691
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
1673
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1692
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
1674
1693
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1675
|
-
/** List of valid charging tariffs */
|
|
1694
|
+
/** List of valid charging tariffs. */
|
|
1676
1695
|
tariff?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
1677
|
-
/**
|
|
1678
|
-
* Charging prices
|
|
1679
|
-
* @deprecated In favor of custom_properties.pricing
|
|
1680
|
-
*/
|
|
1696
|
+
/** Charging prices. */
|
|
1681
1697
|
pricing?: Maybe<Pricing>;
|
|
1682
|
-
/** 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 */
|
|
1698
|
+
/** 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. */
|
|
1683
1699
|
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1684
1700
|
};
|
|
1685
1701
|
|
|
1686
|
-
/** Custom properties for connectors */
|
|
1702
|
+
/** Custom properties for connectors. */
|
|
1687
1703
|
export type ConnectorCustomProperties = {
|
|
1688
|
-
/**
|
|
1704
|
+
/**
|
|
1705
|
+
* Charging prices.
|
|
1706
|
+
* @deprecated In favor of connector.pricing
|
|
1707
|
+
*/
|
|
1689
1708
|
pricing?: Maybe<Pricing>;
|
|
1690
|
-
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
1709
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
1691
1710
|
oicp?: Maybe<OICPConnectorCustomProperties>;
|
|
1692
1711
|
};
|
|
1693
1712
|
|
|
@@ -2053,6 +2072,7 @@ export enum CountryCodeAlpha2 {
|
|
|
2053
2072
|
VU = "VU",
|
|
2054
2073
|
WF = "WF",
|
|
2055
2074
|
WS = "WS",
|
|
2075
|
+
XK = "XK",
|
|
2056
2076
|
YE = "YE",
|
|
2057
2077
|
YT = "YT",
|
|
2058
2078
|
ZA = "ZA",
|
|
@@ -2088,6 +2108,17 @@ export enum CurrencyUnit {
|
|
|
2088
2108
|
GBP = "GBP"
|
|
2089
2109
|
}
|
|
2090
2110
|
|
|
2111
|
+
export enum DimensionUnit {
|
|
2112
|
+
/** Return the dimension in meters. */
|
|
2113
|
+
METER = "meter",
|
|
2114
|
+
/** Return the dimension in feet. */
|
|
2115
|
+
FOOT = "foot",
|
|
2116
|
+
/** Return the dimension in kilometers. */
|
|
2117
|
+
KILOMETER = "kilometer",
|
|
2118
|
+
/** Return the dimension in miles. */
|
|
2119
|
+
MILE = "mile"
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2091
2122
|
export enum DistanceUnit {
|
|
2092
2123
|
/** Return the distance in meters. */
|
|
2093
2124
|
METER = "meter",
|
|
@@ -2099,40 +2130,42 @@ export enum DistanceUnit {
|
|
|
2099
2130
|
MILE = "mile"
|
|
2100
2131
|
}
|
|
2101
2132
|
|
|
2102
|
-
/** EVSE data which extends OCPI EVSE */
|
|
2133
|
+
/** EVSE data which extends OCPI EVSE. */
|
|
2103
2134
|
export type EVSE = {
|
|
2104
2135
|
/**
|
|
2105
2136
|
* 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.
|
|
2106
|
-
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
|
|
2137
|
+
* 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.
|
|
2107
2138
|
*/
|
|
2108
2139
|
uid?: Maybe<Scalars["String"]>;
|
|
2109
|
-
/** 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. */
|
|
2140
|
+
/** 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. */
|
|
2110
2141
|
evse_id?: Maybe<Scalars["String"]>;
|
|
2111
|
-
/** Indicates the current status of an EVSE. */
|
|
2142
|
+
/** Indicates the current status of an EVSE. This property is OCPI-compliant. */
|
|
2112
2143
|
status?: Maybe<OCPIStatus>;
|
|
2113
|
-
/** Indicates a planned status update of a nEVSE. */
|
|
2144
|
+
/** Indicates a planned status update of a nEVSE. This property is OCPI-compliant. */
|
|
2114
2145
|
status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;
|
|
2115
|
-
/** List of functionalities that an EVSE is capable of. */
|
|
2146
|
+
/** List of functionalities that an EVSE is capable of. This property is OCPI-compliant. */
|
|
2116
2147
|
capabilities?: Maybe<Array<Maybe<OCPICapability>>>;
|
|
2117
|
-
/** List of available connectors on an EVSE. */
|
|
2148
|
+
/** List of available connectors on an EVSE. This property is OCPI-compliant. */
|
|
2118
2149
|
connectors?: Maybe<Array<Maybe<Connector>>>;
|
|
2119
|
-
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */
|
|
2150
|
+
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. This property is OCPI-compliant. */
|
|
2120
2151
|
floor_level?: Maybe<Scalars["String"]>;
|
|
2121
|
-
/** Coordinates of a EVSE. */
|
|
2152
|
+
/** Coordinates of a EVSE. This property is OCPI-compliant. */
|
|
2122
2153
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
2123
|
-
/** A number/string printed on the outside of an EVSE for visual identification. */
|
|
2154
|
+
/** A number/string printed on the outside of an EVSE for visual identification. This property is OCPI-compliant. */
|
|
2124
2155
|
physical_reference?: Maybe<Scalars["String"]>;
|
|
2125
|
-
/** Restrictions that apply to a parking spot. */
|
|
2156
|
+
/** Restrictions that apply to a parking spot. This property is OCPI-compliant. */
|
|
2126
2157
|
parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;
|
|
2127
|
-
/** Links to images related to an EVSE such as photos or logos. */
|
|
2158
|
+
/** Links to images related to an EVSE such as photos or logos. This property is OCPI-compliant. */
|
|
2128
2159
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
2129
|
-
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). */
|
|
2160
|
+
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). This property is OCPI-compliant. */
|
|
2130
2161
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2131
2162
|
/** Indicates if parking is free or paid. */
|
|
2132
2163
|
parking_cost?: Maybe<ParkingCost>;
|
|
2133
|
-
/**
|
|
2164
|
+
/** Unique ID of the location in the system of the CPO. */
|
|
2165
|
+
cpo_external_id?: Maybe<Scalars["String"]>;
|
|
2166
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
2134
2167
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2135
|
-
/** Custom properties of an EVSE */
|
|
2168
|
+
/** Custom properties of an EVSE. */
|
|
2136
2169
|
custom_properties?: Maybe<EvseCustomProperties>;
|
|
2137
2170
|
};
|
|
2138
2171
|
|
|
@@ -2160,15 +2193,15 @@ export enum EmissionRateUnit {
|
|
|
2160
2193
|
}
|
|
2161
2194
|
|
|
2162
2195
|
export enum EmissionUnit {
|
|
2163
|
-
/** Return the
|
|
2196
|
+
/** Return the emissions in grams. */
|
|
2164
2197
|
GRAM = "gram",
|
|
2165
|
-
/** Return the
|
|
2198
|
+
/** Return the emissions in ounces. */
|
|
2166
2199
|
OUNCE = "ounce"
|
|
2167
2200
|
}
|
|
2168
2201
|
|
|
2169
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2202
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
2170
2203
|
export type EvseCustomProperties = {
|
|
2171
|
-
/** OICP standard custom properties */
|
|
2204
|
+
/** OICP standard custom properties. */
|
|
2172
2205
|
oicp?: Maybe<OICPEvseCustomProperties>;
|
|
2173
2206
|
};
|
|
2174
2207
|
|
|
@@ -2271,6 +2304,39 @@ export type GeometryPoint = {
|
|
|
2271
2304
|
coordinates: Array<Scalars["Float"]>;
|
|
2272
2305
|
};
|
|
2273
2306
|
|
|
2307
|
+
export enum HeatPumpMode {
|
|
2308
|
+
/** Default to the vehicle configuration. */
|
|
2309
|
+
DEFAULT = "default",
|
|
2310
|
+
/** Vehicle has it installed. */
|
|
2311
|
+
INSTALLED = "installed",
|
|
2312
|
+
/** Vehicle doesn't have it installed. */
|
|
2313
|
+
NONE = "none"
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
2317
|
+
export enum HeavyVehiclesEUType {
|
|
2318
|
+
/** 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). */
|
|
2319
|
+
N1 = "N1",
|
|
2320
|
+
/** 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). */
|
|
2321
|
+
N2 = "N2",
|
|
2322
|
+
/** 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). */
|
|
2323
|
+
N3 = "N3"
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
/** List of facilities in the location. */
|
|
2327
|
+
export enum HeavyVehiclesFacility {
|
|
2328
|
+
/** Truck parking. */
|
|
2329
|
+
TRUCK_PARKING = "TRUCK_PARKING",
|
|
2330
|
+
/** Truck wash. */
|
|
2331
|
+
TRUCK_WASH = "TRUCK_WASH",
|
|
2332
|
+
/** Truck repair. */
|
|
2333
|
+
TRUCK_REPAIR = "TRUCK_REPAIR",
|
|
2334
|
+
/** Truck dealership. */
|
|
2335
|
+
TRUCK_DEALERSHIP = "TRUCK_DEALERSHIP",
|
|
2336
|
+
/** Secure truck parking. */
|
|
2337
|
+
SECURE_TRUCK_PARKING = "SECURE_TRUCK_PARKING"
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2274
2340
|
/** Navigation service providers available */
|
|
2275
2341
|
export enum InstructionsFormat {
|
|
2276
2342
|
/** Chargetrip raw instructions */
|
|
@@ -2292,6 +2358,25 @@ export type Isoline = {
|
|
|
2292
2358
|
request_input?: Maybe<IsolineRequestInput>;
|
|
2293
2359
|
};
|
|
2294
2360
|
|
|
2361
|
+
export type IsolineCabin = {
|
|
2362
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
2363
|
+
is_preconditioned?: Maybe<Scalars["Boolean"]>;
|
|
2364
|
+
/** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
2365
|
+
desired_temperature?: Maybe<Scalars["Float"]>;
|
|
2366
|
+
};
|
|
2367
|
+
|
|
2368
|
+
export type IsolineCabindesired_temperatureArgs = {
|
|
2369
|
+
unit?: Maybe<TemperatureUnit>;
|
|
2370
|
+
};
|
|
2371
|
+
|
|
2372
|
+
/** Information about the cabin of the vehicle. */
|
|
2373
|
+
export type IsolineCabinInput = {
|
|
2374
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
2375
|
+
is_preconditioned?: Maybe<Scalars["Boolean"]>;
|
|
2376
|
+
/** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
2377
|
+
desired_temperature?: Maybe<TemperatureInput>;
|
|
2378
|
+
};
|
|
2379
|
+
|
|
2295
2380
|
export enum IsolineFerryConnectionsType {
|
|
2296
2381
|
/** Ferry connections should not be included. */
|
|
2297
2382
|
NONE = "none",
|
|
@@ -2316,6 +2401,10 @@ export type IsolineInput = {
|
|
|
2316
2401
|
total_cargo_weight?: Maybe<TotalCargoWeightInput>;
|
|
2317
2402
|
/** Climate is on. */
|
|
2318
2403
|
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2404
|
+
/** Vehicle Heat Pump configuration. */
|
|
2405
|
+
heat_pump?: Maybe<HeatPumpMode>;
|
|
2406
|
+
/** Vehicle cabin configuration. */
|
|
2407
|
+
cabin?: Maybe<IsolineCabinInput>;
|
|
2319
2408
|
/** Season to be taken into account when generating the isoline. */
|
|
2320
2409
|
season?: Maybe<RouteSeason>;
|
|
2321
2410
|
/** Polygons precision quality. */
|
|
@@ -2353,6 +2442,10 @@ export type IsolineRequestInput = {
|
|
|
2353
2442
|
total_cargo_weight?: Maybe<Scalars["Float"]>;
|
|
2354
2443
|
/** Climate is on. */
|
|
2355
2444
|
climate_control?: Maybe<Scalars["Boolean"]>;
|
|
2445
|
+
/** Vehicle Heat Pump configuration. */
|
|
2446
|
+
heat_pump?: Maybe<HeatPumpMode>;
|
|
2447
|
+
/** Vehicle cabin configuration. */
|
|
2448
|
+
cabin?: Maybe<IsolineCabin>;
|
|
2356
2449
|
/** Season taken into account when isoline was generated. */
|
|
2357
2450
|
season?: Maybe<RouteSeason>;
|
|
2358
2451
|
/** Polygons precision quality. */
|
|
@@ -2560,6 +2653,8 @@ export type Navigation = {
|
|
|
2560
2653
|
alternative_stations: Array<NavigationStation>;
|
|
2561
2654
|
/** Navigation instructions */
|
|
2562
2655
|
instructions?: Maybe<Scalars["JSON"]>;
|
|
2656
|
+
/** Navigation meta information. */
|
|
2657
|
+
meta?: Maybe<NavigationMeta>;
|
|
2563
2658
|
};
|
|
2564
2659
|
|
|
2565
2660
|
/** The navigation session data */
|
|
@@ -2584,6 +2679,14 @@ export type NavigationInstructionsInput = {
|
|
|
2584
2679
|
precision?: Maybe<Scalars["Int"]>;
|
|
2585
2680
|
};
|
|
2586
2681
|
|
|
2682
|
+
/** Navigation meta information. */
|
|
2683
|
+
export type NavigationMeta = {
|
|
2684
|
+
/** Creation time of the navigation session. */
|
|
2685
|
+
created_at?: Maybe<Scalars["DateTime"]>;
|
|
2686
|
+
/** Last updated time of the navigation session. */
|
|
2687
|
+
updated_at?: Maybe<Scalars["DateTime"]>;
|
|
2688
|
+
};
|
|
2689
|
+
|
|
2587
2690
|
/** Input for the navigation recalculate */
|
|
2588
2691
|
export type NavigationRecalculateInput = {
|
|
2589
2692
|
/** ID of the navigation session */
|
|
@@ -2675,11 +2778,11 @@ export type NavigationUpdateLocationsInput = {
|
|
|
2675
2778
|
|
|
2676
2779
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2677
2780
|
export type OCPIAdditionalGeoLocation = {
|
|
2678
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
2781
|
+
/** 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. */
|
|
2679
2782
|
latitude?: Maybe<Scalars["String"]>;
|
|
2680
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
2783
|
+
/** 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. */
|
|
2681
2784
|
longitude?: Maybe<Scalars["String"]>;
|
|
2682
|
-
/** 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. */
|
|
2785
|
+
/** 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. */
|
|
2683
2786
|
name?: Maybe<OCPIDisplayText>;
|
|
2684
2787
|
};
|
|
2685
2788
|
|
|
@@ -2814,30 +2917,30 @@ export enum OCPIDayOfWeek {
|
|
|
2814
2917
|
}
|
|
2815
2918
|
|
|
2816
2919
|
export type OCPIDisplayText = {
|
|
2817
|
-
/** Language Code ISO 639-1 */
|
|
2920
|
+
/** Language Code ISO 639-1. This property is OCPI-compliant. */
|
|
2818
2921
|
language?: Maybe<Scalars["String"]>;
|
|
2819
|
-
/** Text to be displayed to an end user. No markup, html etc. allowed. */
|
|
2922
|
+
/** Text to be displayed to an end user. No markup, html etc. allowed. This property is OCPI-compliant. */
|
|
2820
2923
|
text?: Maybe<Scalars["String"]>;
|
|
2821
2924
|
};
|
|
2822
2925
|
|
|
2823
2926
|
/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
|
|
2824
2927
|
export type OCPIEnergyMix = {
|
|
2825
|
-
/** True if the power is 100% from regenerative sources */
|
|
2928
|
+
/** True if the power is 100% from regenerative sources. This property is OCPI-compliant. */
|
|
2826
2929
|
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2827
|
-
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */
|
|
2930
|
+
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. This property is OCPI-compliant. */
|
|
2828
2931
|
energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
|
|
2829
|
-
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */
|
|
2932
|
+
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. This property is OCPI-compliant. */
|
|
2830
2933
|
environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
|
|
2831
|
-
/** Name of the energy supplier, delivering the energy for this location or tariff
|
|
2934
|
+
/** Name of the energy supplier, delivering the energy for this location or tariff.*. This property is OCPI-compliant. */
|
|
2832
2935
|
supplier_name?: Maybe<Scalars["String"]>;
|
|
2833
|
-
/** Name of the energy suppliers product/tariff plan used at this location
|
|
2936
|
+
/** Name of the energy suppliers product/tariff plan used at this location.*. This property is OCPI-compliant. */
|
|
2834
2937
|
energy_product_name?: Maybe<Scalars["String"]>;
|
|
2835
2938
|
};
|
|
2836
2939
|
|
|
2837
2940
|
export type OCPIEnergySource = {
|
|
2838
|
-
/** The type of energy source. */
|
|
2941
|
+
/** The type of energy source. This property is OCPI-compliant. */
|
|
2839
2942
|
source?: Maybe<OCPIEnergySourceCategory>;
|
|
2840
|
-
/** Percentage of this source (0-100) in the mix. */
|
|
2943
|
+
/** Percentage of this source (0-100) in the mix. This property is OCPI-compliant. */
|
|
2841
2944
|
percentage?: Maybe<Scalars["Int"]>;
|
|
2842
2945
|
};
|
|
2843
2946
|
|
|
@@ -2863,9 +2966,9 @@ export enum OCPIEnergySourceCategory {
|
|
|
2863
2966
|
|
|
2864
2967
|
/** Amount of waste produced/emitted per kWh. */
|
|
2865
2968
|
export type OCPIEnvironmentalImpact = {
|
|
2866
|
-
/** The environmental impact category of this value. */
|
|
2969
|
+
/** The environmental impact category of this value. This property is OCPI-compliant. */
|
|
2867
2970
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2868
|
-
/** Amount of this portion in g/kWh. */
|
|
2971
|
+
/** Amount of this portion in g/kWh. This property is OCPI-compliant. */
|
|
2869
2972
|
amount?: Maybe<Scalars["Float"]>;
|
|
2870
2973
|
};
|
|
2871
2974
|
|
|
@@ -2879,9 +2982,9 @@ export enum OCPIEnvironmentalImpactCategory {
|
|
|
2879
2982
|
|
|
2880
2983
|
/** Specifies one exceptional period for opening or access hours. */
|
|
2881
2984
|
export type OCPIExceptionalPeriod = {
|
|
2882
|
-
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2985
|
+
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2883
2986
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2884
|
-
/** End of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2987
|
+
/** End of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2885
2988
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2886
2989
|
};
|
|
2887
2990
|
|
|
@@ -2930,36 +3033,36 @@ export enum OCPIFacility {
|
|
|
2930
3033
|
|
|
2931
3034
|
/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2932
3035
|
export type OCPIGeoLocation = {
|
|
2933
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
3036
|
+
/** 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. */
|
|
2934
3037
|
latitude?: Maybe<Scalars["String"]>;
|
|
2935
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
3038
|
+
/** 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. */
|
|
2936
3039
|
longitude?: Maybe<Scalars["String"]>;
|
|
2937
3040
|
};
|
|
2938
3041
|
|
|
2939
3042
|
/** Opening and access hours of the location. */
|
|
2940
3043
|
export type OCPIHours = {
|
|
2941
|
-
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. */
|
|
3044
|
+
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. This property is OCPI-compliant. */
|
|
2942
3045
|
twentyfourseven?: Maybe<Scalars["Boolean"]>;
|
|
2943
|
-
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */
|
|
3046
|
+
/** 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. */
|
|
2944
3047
|
regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
|
|
2945
|
-
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */
|
|
3048
|
+
/** 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. */
|
|
2946
3049
|
exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2947
|
-
/** 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. */
|
|
3050
|
+
/** 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. */
|
|
2948
3051
|
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2949
3052
|
};
|
|
2950
3053
|
|
|
2951
3054
|
export type OCPIImage = {
|
|
2952
|
-
/** URL from where the image data can be fetched through a web browser. */
|
|
3055
|
+
/** URL from where the image data can be fetched through a web browser. This property is OCPI-compliant. */
|
|
2953
3056
|
url?: Maybe<Scalars["String"]>;
|
|
2954
|
-
/** URL from where a thumbnail of the image can be fetched through a webbrowser. */
|
|
3057
|
+
/** URL from where a thumbnail of the image can be fetched through a webbrowser. This property is OCPI-compliant. */
|
|
2955
3058
|
thumbnail?: Maybe<Scalars["String"]>;
|
|
2956
|
-
/** Category of an image */
|
|
3059
|
+
/** Category of an image. This property is OCPI-compliant. */
|
|
2957
3060
|
category?: Maybe<OCPIImageCategory>;
|
|
2958
|
-
/** Image type: gif, jpeg, png, svg */
|
|
3061
|
+
/** Image type: gif, jpeg, png, svg. This property is OCPI-compliant. */
|
|
2959
3062
|
type?: Maybe<Scalars["String"]>;
|
|
2960
|
-
/** Width of the full scale image */
|
|
3063
|
+
/** Width of the full scale image. This property is OCPI-compliant. */
|
|
2961
3064
|
width?: Maybe<Scalars["Int"]>;
|
|
2962
|
-
/** Height of the full scale image */
|
|
3065
|
+
/** Height of the full scale image. This property is OCPI-compliant. */
|
|
2963
3066
|
height?: Maybe<Scalars["Int"]>;
|
|
2964
3067
|
};
|
|
2965
3068
|
|
|
@@ -3025,30 +3128,30 @@ export enum OCPIPowerType {
|
|
|
3025
3128
|
}
|
|
3026
3129
|
|
|
3027
3130
|
export type OCPIPrice = {
|
|
3028
|
-
/** Price/Cost excluding VAT. */
|
|
3131
|
+
/** Price/Cost excluding VAT. This property is OCPI-compliant. */
|
|
3029
3132
|
excl_vat?: Maybe<Scalars["Float"]>;
|
|
3030
|
-
/** Price/Cost including VAT. */
|
|
3133
|
+
/** Price/Cost including VAT. This property is OCPI-compliant. */
|
|
3031
3134
|
incl_vat?: Maybe<Scalars["Float"]>;
|
|
3032
3135
|
};
|
|
3033
3136
|
|
|
3034
3137
|
export type OCPIPriceComponent = {
|
|
3035
|
-
/** Type of tariff dimension. */
|
|
3138
|
+
/** Type of tariff dimension. This property is OCPI-compliant. */
|
|
3036
3139
|
type?: Maybe<OCPITariffDimensionType>;
|
|
3037
|
-
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
3140
|
+
/** Price per unit (excl. VAT) for this tariff dimension. This property is OCPI-compliant. */
|
|
3038
3141
|
price?: Maybe<Scalars["Float"]>;
|
|
3039
|
-
/** 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. */
|
|
3142
|
+
/** 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. */
|
|
3040
3143
|
vat?: Maybe<Scalars["Float"]>;
|
|
3041
|
-
/** 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. */
|
|
3144
|
+
/** 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. */
|
|
3042
3145
|
step_size?: Maybe<Scalars["Int"]>;
|
|
3043
3146
|
};
|
|
3044
3147
|
|
|
3045
3148
|
/** Regular recurring operation or access hours. */
|
|
3046
3149
|
export type OCPIRegularHours = {
|
|
3047
|
-
/** Number of days in the week, from Monday (1) till Sunday (7) */
|
|
3150
|
+
/** Number of days in the week, from Monday (1) till Sunday (7). This property is OCPI-compliant. */
|
|
3048
3151
|
weekday?: Maybe<Scalars["Int"]>;
|
|
3049
|
-
/** 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]. */
|
|
3152
|
+
/** 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. */
|
|
3050
3153
|
period_begin?: Maybe<Scalars["String"]>;
|
|
3051
|
-
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */
|
|
3154
|
+
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. This property is OCPI-compliant. */
|
|
3052
3155
|
period_end?: Maybe<Scalars["String"]>;
|
|
3053
3156
|
};
|
|
3054
3157
|
|
|
@@ -3083,42 +3186,42 @@ export enum OCPIStatus {
|
|
|
3083
3186
|
|
|
3084
3187
|
/** 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. */
|
|
3085
3188
|
export type OCPIStatusSchedule = {
|
|
3086
|
-
/** Begin of the scheduled period. */
|
|
3189
|
+
/** Begin of the scheduled period. This property is OCPI-compliant. */
|
|
3087
3190
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
3088
|
-
/** End of the scheduled period, if known. */
|
|
3191
|
+
/** End of the scheduled period, if known. This property is OCPI-compliant. */
|
|
3089
3192
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
3090
|
-
/** Status value during the scheduled period. */
|
|
3193
|
+
/** Status value during the scheduled period. This property is OCPI-compliant. */
|
|
3091
3194
|
status?: Maybe<OCPIStatus>;
|
|
3092
3195
|
};
|
|
3093
3196
|
|
|
3094
3197
|
export type OCPITariff = {
|
|
3095
|
-
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff */
|
|
3198
|
+
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff. This property is OCPI-compliant. */
|
|
3096
3199
|
country_code?: Maybe<Scalars["String"]>;
|
|
3097
|
-
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
|
|
3200
|
+
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
3098
3201
|
party_id?: Maybe<Scalars["String"]>;
|
|
3099
|
-
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
|
|
3202
|
+
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms). This property is OCPI-compliant. */
|
|
3100
3203
|
id?: Maybe<Scalars["String"]>;
|
|
3101
|
-
/** ISO-4217 code of the currency of this tariff. */
|
|
3204
|
+
/** ISO-4217 code of the currency of this tariff. This property is OCPI-compliant. */
|
|
3102
3205
|
currency?: Maybe<Scalars["String"]>;
|
|
3103
|
-
/** 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 */
|
|
3206
|
+
/** 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. */
|
|
3104
3207
|
type?: Maybe<OCPITariffType>;
|
|
3105
|
-
/** List of alternative tariff information texts, in multiple languages */
|
|
3208
|
+
/** List of alternative tariff information texts, in multiple languages. This property is OCPI-compliant. */
|
|
3106
3209
|
tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
3107
|
-
/** URL to a web page that contains an explanation of the tariff information in human readable form */
|
|
3210
|
+
/** URL to a web page that contains an explanation of the tariff information in human readable form. This property is OCPI-compliant. */
|
|
3108
3211
|
tariff_alt_url?: Maybe<Scalars["String"]>;
|
|
3109
|
-
/** 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 */
|
|
3212
|
+
/** 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. */
|
|
3110
3213
|
min_price?: Maybe<OCPIPrice>;
|
|
3111
|
-
/** When this field is set, a charging session with this tariff will NOT cost more than this amount */
|
|
3214
|
+
/** When this field is set, a charging session with this tariff will NOT cost more than this amount. This property is OCPI-compliant. */
|
|
3112
3215
|
max_price?: Maybe<OCPIPrice>;
|
|
3113
|
-
/** List of tariff elements */
|
|
3216
|
+
/** List of tariff elements. This property is OCPI-compliant. */
|
|
3114
3217
|
elements?: Maybe<Array<Maybe<OCPITariffElement>>>;
|
|
3115
|
-
/** 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 */
|
|
3218
|
+
/** 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. */
|
|
3116
3219
|
start_date_time?: Maybe<Scalars["DateTime"]>;
|
|
3117
|
-
/** 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 */
|
|
3220
|
+
/** 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. */
|
|
3118
3221
|
end_date_time?: Maybe<Scalars["DateTime"]>;
|
|
3119
|
-
/** Details about the energy supplied with this tariff */
|
|
3222
|
+
/** Details about the energy supplied with this tariff. This property is OCPI-compliant. */
|
|
3120
3223
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
3121
|
-
/** Timestamp when this tariff was last updated (or created) */
|
|
3224
|
+
/** Timestamp when this tariff was last updated (or created). This property is OCPI-compliant. */
|
|
3122
3225
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
3123
3226
|
};
|
|
3124
3227
|
|
|
@@ -3134,40 +3237,40 @@ export enum OCPITariffDimensionType {
|
|
|
3134
3237
|
}
|
|
3135
3238
|
|
|
3136
3239
|
export type OCPITariffElement = {
|
|
3137
|
-
/** List of price components that describe the pricing of a tariff. */
|
|
3240
|
+
/** List of price components that describe the pricing of a tariff. This property is OCPI-compliant. */
|
|
3138
3241
|
price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;
|
|
3139
|
-
/** Restrictions that describe the applicability of a tariff. */
|
|
3242
|
+
/** Restrictions that describe the applicability of a tariff. This property is OCPI-compliant. */
|
|
3140
3243
|
restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
|
|
3141
3244
|
};
|
|
3142
3245
|
|
|
3143
3246
|
export type OCPITariffRestrictions = {
|
|
3144
|
-
/** 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] */
|
|
3247
|
+
/** 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. */
|
|
3145
3248
|
start_time?: Maybe<Scalars["String"]>;
|
|
3146
|
-
/** 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. */
|
|
3249
|
+
/** 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. */
|
|
3147
3250
|
end_time?: Maybe<Scalars["String"]>;
|
|
3148
|
-
/** 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]) */
|
|
3251
|
+
/** 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. */
|
|
3149
3252
|
start_date?: Maybe<Scalars["String"]>;
|
|
3150
|
-
/** 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 */
|
|
3253
|
+
/** 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. */
|
|
3151
3254
|
end_date?: Maybe<Scalars["String"]>;
|
|
3152
|
-
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
|
|
3255
|
+
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used. This property is OCPI-compliant. */
|
|
3153
3256
|
min_kwh?: Maybe<Scalars["Float"]>;
|
|
3154
|
-
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */
|
|
3257
|
+
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used. This property is OCPI-compliant. */
|
|
3155
3258
|
max_kwh?: Maybe<Scalars["Float"]>;
|
|
3156
|
-
/** 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 */
|
|
3259
|
+
/** 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. */
|
|
3157
3260
|
min_current?: Maybe<Scalars["Float"]>;
|
|
3158
|
-
/** 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 */
|
|
3261
|
+
/** 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. */
|
|
3159
3262
|
max_current?: Maybe<Scalars["Float"]>;
|
|
3160
|
-
/** 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 */
|
|
3263
|
+
/** 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. */
|
|
3161
3264
|
min_power?: Maybe<Scalars["Float"]>;
|
|
3162
|
-
/** 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 */
|
|
3265
|
+
/** 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. */
|
|
3163
3266
|
max_power?: Maybe<Scalars["Float"]>;
|
|
3164
|
-
/** 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 */
|
|
3267
|
+
/** 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. */
|
|
3165
3268
|
min_duration?: Maybe<Scalars["Float"]>;
|
|
3166
|
-
/** 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 */
|
|
3269
|
+
/** 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. */
|
|
3167
3270
|
max_duration?: Maybe<Scalars["Float"]>;
|
|
3168
|
-
/** Which day(s) of the week this tariff element is active. */
|
|
3271
|
+
/** Which day(s) of the week this tariff element is active. This property is OCPI-compliant. */
|
|
3169
3272
|
day_of_week?: Maybe<OCPIDayOfWeek>;
|
|
3170
|
-
/** 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 */
|
|
3273
|
+
/** 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. */
|
|
3171
3274
|
reservation?: Maybe<OCPIReservationRestrictionType>;
|
|
3172
3275
|
};
|
|
3173
3276
|
|
|
@@ -3184,7 +3287,7 @@ export enum OCPITariffType {
|
|
|
3184
3287
|
REGULAR = "REGULAR"
|
|
3185
3288
|
}
|
|
3186
3289
|
|
|
3187
|
-
/** List of charging modes that are supported */
|
|
3290
|
+
/** List of charging modes that are supported. */
|
|
3188
3291
|
export enum OICPChargingModes {
|
|
3189
3292
|
MODE_1 = "mode_1",
|
|
3190
3293
|
MODE_2 = "mode_2",
|
|
@@ -3193,15 +3296,15 @@ export enum OICPChargingModes {
|
|
|
3193
3296
|
CHADEMO = "chademo"
|
|
3194
3297
|
}
|
|
3195
3298
|
|
|
3196
|
-
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
3299
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
3197
3300
|
export type OICPConnectorCustomProperties = {
|
|
3198
|
-
/** Returns whether the connector is able to deliver different power outputs */
|
|
3301
|
+
/** Returns whether the connector is able to deliver different power outputs. */
|
|
3199
3302
|
dynamic_power_level?: Maybe<Scalars["Boolean"]>;
|
|
3200
|
-
/** List of charging modes that are supported as specified by IEC 61851-1 */
|
|
3303
|
+
/** List of charging modes that are supported as specified by IEC 61851-1. */
|
|
3201
3304
|
charging_modes?: Maybe<Array<OICPChargingModes>>;
|
|
3202
3305
|
};
|
|
3203
3306
|
|
|
3204
|
-
/** List of authentication modes that are supported */
|
|
3307
|
+
/** List of authentication modes that are supported. */
|
|
3205
3308
|
export enum OICPEvseAuthenticationMode {
|
|
3206
3309
|
NFC_RFID_CLASSIC = "nfc_rfid_classic",
|
|
3207
3310
|
NFC_RFID_DESFIRE = "nfc_rfid_desfire",
|
|
@@ -3211,51 +3314,51 @@ export enum OICPEvseAuthenticationMode {
|
|
|
3211
3314
|
NO_AUTHENTICATION_REQUIRED = "no_authentication_required"
|
|
3212
3315
|
}
|
|
3213
3316
|
|
|
3214
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3317
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3215
3318
|
export type OICPEvseCustomProperties = {
|
|
3216
|
-
/** List of authentication modes that are supported */
|
|
3319
|
+
/** List of authentication modes that are supported. */
|
|
3217
3320
|
authentication_modes: Array<OICPEvseAuthenticationMode>;
|
|
3218
|
-
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh */
|
|
3321
|
+
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh. */
|
|
3219
3322
|
max_capacity?: Maybe<Scalars["Int"]>;
|
|
3220
|
-
/** List of payment options that are supported */
|
|
3323
|
+
/** List of payment options that are supported. */
|
|
3221
3324
|
payment_options: Array<OICPPaymentOptions>;
|
|
3222
|
-
/** List of value added services that are supported */
|
|
3325
|
+
/** List of value added services that are supported. */
|
|
3223
3326
|
value_added_services: Array<OICPValueAddedServices>;
|
|
3224
|
-
/** List of additional info by locale */
|
|
3327
|
+
/** List of additional info by locale. */
|
|
3225
3328
|
additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;
|
|
3226
|
-
/** When the value is set to false this station does not support remote start and stop by Hubject */
|
|
3329
|
+
/** When the value is set to false this station does not support remote start and stop by Hubject. */
|
|
3227
3330
|
is_hubject_compatible: Scalars["Boolean"];
|
|
3228
|
-
/** Name of the charging point manufacturer */
|
|
3331
|
+
/** Name of the charging point manufacturer. */
|
|
3229
3332
|
hardware_manufacturer?: Maybe<Scalars["String"]>;
|
|
3230
3333
|
};
|
|
3231
3334
|
|
|
3232
3335
|
export type OICPEvseCustomPropertiesAdditionalInfo = {
|
|
3233
|
-
/** The language in which the additional info text is provided */
|
|
3336
|
+
/** The language in which the additional info text is provided. */
|
|
3234
3337
|
lang?: Maybe<Scalars["String"]>;
|
|
3235
|
-
/** Additional info text value */
|
|
3338
|
+
/** Additional info text value. */
|
|
3236
3339
|
value?: Maybe<Scalars["String"]>;
|
|
3237
3340
|
};
|
|
3238
3341
|
|
|
3239
|
-
/** List of payment options that are supported */
|
|
3342
|
+
/** List of payment options that are supported. */
|
|
3240
3343
|
export enum OICPPaymentOptions {
|
|
3241
3344
|
NO_PAYMENT = "no_payment",
|
|
3242
3345
|
DIRECT = "direct",
|
|
3243
3346
|
CONTRACT = "contract"
|
|
3244
3347
|
}
|
|
3245
3348
|
|
|
3246
|
-
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3349
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3247
3350
|
export type OICPStationCustomProperties = {
|
|
3248
|
-
/** Returns whether the station is a parking facility */
|
|
3351
|
+
/** Returns whether the station is a parking facility. */
|
|
3249
3352
|
parking_facility?: Maybe<Scalars["Boolean"]>;
|
|
3250
|
-
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1 */
|
|
3353
|
+
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1. */
|
|
3251
3354
|
parking_spot?: Maybe<Scalars["String"]>;
|
|
3252
|
-
/** Returns information on how the charging station provides metering law data */
|
|
3355
|
+
/** Returns information on how the charging station provides metering law data. */
|
|
3253
3356
|
calibration_law_data_availability: Scalars["String"];
|
|
3254
|
-
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future */
|
|
3357
|
+
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future. */
|
|
3255
3358
|
clearinghouse_id?: Maybe<Scalars["String"]>;
|
|
3256
3359
|
};
|
|
3257
3360
|
|
|
3258
|
-
/** List of value added services that are supported */
|
|
3361
|
+
/** List of value added services that are supported. */
|
|
3259
3362
|
export enum OICPValueAddedServices {
|
|
3260
3363
|
RESERVATION = "reservation",
|
|
3261
3364
|
DYNAMIC_PRICING = "dynamic_pricing",
|
|
@@ -3276,49 +3379,52 @@ export type OdometerInput = {
|
|
|
3276
3379
|
source?: Maybe<TelemetryInputSource>;
|
|
3277
3380
|
};
|
|
3278
3381
|
|
|
3279
|
-
/**
|
|
3382
|
+
/** Operator data which extends OCPI BusinessDetails. */
|
|
3280
3383
|
export type Operator = {
|
|
3281
|
-
/** Unique operator ID */
|
|
3384
|
+
/** Unique operator ID. */
|
|
3282
3385
|
id?: Maybe<Scalars["ID"]>;
|
|
3283
|
-
/** External ID of an operator provided by the operator data source */
|
|
3386
|
+
/** External ID of an operator provided by the operator data source. */
|
|
3284
3387
|
external_id?: Maybe<Scalars["String"]>;
|
|
3285
|
-
/** Name of an operator */
|
|
3388
|
+
/** Name of an operator. This property is OCPI-compliant. */
|
|
3286
3389
|
name?: Maybe<Scalars["String"]>;
|
|
3287
|
-
/** Link to an operator’s website */
|
|
3390
|
+
/** Link to an operator’s website. This property is OCPI-compliant. */
|
|
3288
3391
|
website?: Maybe<Scalars["String"]>;
|
|
3289
|
-
/** Image link to an operator’s logo */
|
|
3392
|
+
/** Image link to an operator’s logo. This property is OCPI-compliant. */
|
|
3290
3393
|
logo?: Maybe<OCPIImage>;
|
|
3291
|
-
/**
|
|
3394
|
+
/**
|
|
3395
|
+
* ISO-3166 alpha-2 country code an operator is active in.
|
|
3396
|
+
* @deprecated In favor of countries.
|
|
3397
|
+
*/
|
|
3292
3398
|
country?: Maybe<Scalars["String"]>;
|
|
3293
3399
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3294
3400
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3295
|
-
/** Contact information */
|
|
3401
|
+
/** Contact information. */
|
|
3296
3402
|
contact?: Maybe<Contact>;
|
|
3297
|
-
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level */
|
|
3403
|
+
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level. */
|
|
3298
3404
|
ranking?: Maybe<Scalars["Int"]>;
|
|
3299
|
-
/** Flag which indicates if the operator is in the excluded list */
|
|
3405
|
+
/** Flag which indicates if the operator is in the excluded list. */
|
|
3300
3406
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3301
3407
|
};
|
|
3302
3408
|
|
|
3303
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3409
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3304
3410
|
export type OperatorListFilter = {
|
|
3305
3411
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3306
3412
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3307
|
-
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10 */
|
|
3413
|
+
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10. */
|
|
3308
3414
|
ranking?: Maybe<Array<Scalars["Int"]>>;
|
|
3309
|
-
/** Only retrieve operators that are in the excluded list */
|
|
3415
|
+
/** Only retrieve operators that are in the excluded list. */
|
|
3310
3416
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3311
3417
|
};
|
|
3312
3418
|
|
|
3313
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3419
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3314
3420
|
export type OperatorListQuery = {
|
|
3315
|
-
/** Unique operator ID */
|
|
3421
|
+
/** Unique operator ID. */
|
|
3316
3422
|
id?: Maybe<Scalars["ID"]>;
|
|
3317
|
-
/** External ID of an operator provided by an operator data source */
|
|
3423
|
+
/** External ID of an operator provided by an operator data source. */
|
|
3318
3424
|
external_id?: Maybe<Scalars["String"]>;
|
|
3319
|
-
/** Exact name */
|
|
3425
|
+
/** Exact name. */
|
|
3320
3426
|
name?: Maybe<Scalars["String"]>;
|
|
3321
|
-
/** Exact country code */
|
|
3427
|
+
/** Exact country code. */
|
|
3322
3428
|
country?: Maybe<Scalars["String"]>;
|
|
3323
3429
|
};
|
|
3324
3430
|
|
|
@@ -3332,9 +3438,9 @@ export type OutsideTempInput = {
|
|
|
3332
3438
|
};
|
|
3333
3439
|
|
|
3334
3440
|
export enum ParkingCost {
|
|
3335
|
-
/** Parking is free */
|
|
3441
|
+
/** Parking is free. */
|
|
3336
3442
|
FREE = "free",
|
|
3337
|
-
/** Parking includes a fee */
|
|
3443
|
+
/** Parking includes a fee. */
|
|
3338
3444
|
PAID = "paid"
|
|
3339
3445
|
}
|
|
3340
3446
|
|
|
@@ -3407,6 +3513,15 @@ export type PowerStats = {
|
|
|
3407
3513
|
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
3408
3514
|
};
|
|
3409
3515
|
|
|
3516
|
+
export enum PowerSupported {
|
|
3517
|
+
/** Power is supported. */
|
|
3518
|
+
AVAILABLE = "available",
|
|
3519
|
+
/** Power is not supported. */
|
|
3520
|
+
NOT_AVAILABLE = "not_available",
|
|
3521
|
+
/** Power is announced, but not yet supported. */
|
|
3522
|
+
ANNOUNCED = "announced"
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3410
3525
|
export enum PowerUnit {
|
|
3411
3526
|
/** Return the power in kilowatts. */
|
|
3412
3527
|
KILOWATT = "kilowatt",
|
|
@@ -3434,18 +3549,18 @@ export type Price = {
|
|
|
3434
3549
|
};
|
|
3435
3550
|
|
|
3436
3551
|
export type Pricing = {
|
|
3437
|
-
/** Unique ID of a price */
|
|
3552
|
+
/** Unique ID of a price. */
|
|
3438
3553
|
id?: Maybe<Scalars["String"]>;
|
|
3439
|
-
/** Price details */
|
|
3554
|
+
/** Price details. */
|
|
3440
3555
|
price_list?: Maybe<Array<Maybe<PricingList>>>;
|
|
3441
3556
|
};
|
|
3442
3557
|
|
|
3443
3558
|
export type PricingList = {
|
|
3444
|
-
/** (MSP) Mobility Service Provider */
|
|
3559
|
+
/** (MSP) Mobility Service Provider. */
|
|
3445
3560
|
partner?: Maybe<Scalars["String"]>;
|
|
3446
|
-
/** Product details */
|
|
3561
|
+
/** Product details. */
|
|
3447
3562
|
product?: Maybe<PricingListProduct>;
|
|
3448
|
-
/** Price product elements */
|
|
3563
|
+
/** Price product elements. */
|
|
3449
3564
|
elements?: Maybe<Array<Maybe<PricingListElement>>>;
|
|
3450
3565
|
};
|
|
3451
3566
|
|
|
@@ -3454,31 +3569,31 @@ export type PricingListElement = {
|
|
|
3454
3569
|
type?: Maybe<PricingListElementType>;
|
|
3455
3570
|
/** Price of the element type without VAT. */
|
|
3456
3571
|
price_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3457
|
-
/** VAT percentage to apply */
|
|
3572
|
+
/** VAT percentage to apply. */
|
|
3458
3573
|
vat?: Maybe<Scalars["Float"]>;
|
|
3459
3574
|
};
|
|
3460
3575
|
|
|
3461
3576
|
export enum PricingListElementType {
|
|
3462
|
-
/** Price per kWh */
|
|
3577
|
+
/** Price per kWh. */
|
|
3463
3578
|
ENERGY = "ENERGY",
|
|
3464
|
-
/** Starting price, fixed fee per charge session */
|
|
3579
|
+
/** Starting price, fixed fee per charge session. */
|
|
3465
3580
|
FLAT = "FLAT",
|
|
3466
|
-
/** Fixed price per hour */
|
|
3581
|
+
/** Fixed price per hour. */
|
|
3467
3582
|
TIME = "TIME",
|
|
3468
|
-
/** Parking price per hour */
|
|
3583
|
+
/** Parking price per hour. */
|
|
3469
3584
|
PARKING_TIME = "PARKING_TIME"
|
|
3470
3585
|
}
|
|
3471
3586
|
|
|
3472
3587
|
export type PricingListProduct = {
|
|
3473
|
-
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price */
|
|
3588
|
+
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price. */
|
|
3474
3589
|
name?: Maybe<Scalars["String"]>;
|
|
3475
|
-
/** Description of the product */
|
|
3590
|
+
/** Description of the product. */
|
|
3476
3591
|
description?: Maybe<Scalars["String"]>;
|
|
3477
|
-
/** Subscription type */
|
|
3592
|
+
/** Subscription type. */
|
|
3478
3593
|
subscription_type?: Maybe<Scalars["String"]>;
|
|
3479
|
-
/** Subscription fee without VAT */
|
|
3594
|
+
/** Subscription fee without VAT. */
|
|
3480
3595
|
subscription_fee_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3481
|
-
/** Currency */
|
|
3596
|
+
/** Currency. */
|
|
3482
3597
|
currency?: Maybe<Scalars["String"]>;
|
|
3483
3598
|
};
|
|
3484
3599
|
|
|
@@ -3515,17 +3630,17 @@ export type Query = {
|
|
|
3515
3630
|
userReviewList?: Maybe<Array<Review>>;
|
|
3516
3631
|
/** Get a route by ID */
|
|
3517
3632
|
route?: Maybe<Route>;
|
|
3518
|
-
/** [BETA]
|
|
3633
|
+
/** [BETA] Emissions profile for route. */
|
|
3519
3634
|
routeEmissions: RouteEmissions;
|
|
3520
3635
|
/** Retrieve information about a route path segment */
|
|
3521
3636
|
routePath?: Maybe<RoutePath>;
|
|
3522
3637
|
/** Get the station statistics */
|
|
3523
3638
|
stationStats?: Maybe<StationStats>;
|
|
3524
|
-
/** Get information about a station by its ID */
|
|
3639
|
+
/** Get information about a station by its ID. */
|
|
3525
3640
|
station?: Maybe<Station>;
|
|
3526
|
-
/** Get a full list of stations */
|
|
3641
|
+
/** Get a full list of stations. */
|
|
3527
3642
|
stationList?: Maybe<Array<Maybe<Station>>>;
|
|
3528
|
-
/** Search for stations around a GeoJSON point with a specific distance in meters */
|
|
3643
|
+
/** Search for stations around a GeoJSON point with a specific distance in meters. */
|
|
3529
3644
|
stationAround?: Maybe<Array<Maybe<Station>>>;
|
|
3530
3645
|
/** Get information about a tariff by the tariff ID */
|
|
3531
3646
|
tariff?: Maybe<OCPITariff>;
|
|
@@ -3696,6 +3811,10 @@ export type RequestEv = {
|
|
|
3696
3811
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3697
3812
|
/** Climate is on. The default is true. */
|
|
3698
3813
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3814
|
+
/** Vehicle Heat Pump configuration. */
|
|
3815
|
+
heatPump?: Maybe<HeatPumpMode>;
|
|
3816
|
+
/** Vehicle cabin configuration. */
|
|
3817
|
+
cabin?: Maybe<RequestEvCabin>;
|
|
3699
3818
|
/** Cargo weight, in kg. */
|
|
3700
3819
|
cargo?: Maybe<Scalars["Float"]>;
|
|
3701
3820
|
/**
|
|
@@ -3747,21 +3866,55 @@ export type RequestEvBatteryValue = {
|
|
|
3747
3866
|
type: BatteryInputType;
|
|
3748
3867
|
};
|
|
3749
3868
|
|
|
3869
|
+
/** Vehicle cabin configuration. */
|
|
3870
|
+
export type RequestEvCabin = {
|
|
3871
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
3872
|
+
isPreconditioned?: Maybe<Scalars["Boolean"]>;
|
|
3873
|
+
/** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
3874
|
+
desiredTemperature?: Maybe<Scalars["Float"]>;
|
|
3875
|
+
};
|
|
3876
|
+
|
|
3877
|
+
/** Vehicle cabin configuration. */
|
|
3878
|
+
export type RequestEvCabindesiredTemperatureArgs = {
|
|
3879
|
+
unit?: Maybe<TemperatureUnit>;
|
|
3880
|
+
};
|
|
3881
|
+
|
|
3882
|
+
/** Vehicle cabin configuration. */
|
|
3883
|
+
export type RequestEvCabinInput = {
|
|
3884
|
+
/** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */
|
|
3885
|
+
isPreconditioned?: Maybe<Scalars["Boolean"]>;
|
|
3886
|
+
/** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
|
|
3887
|
+
desiredTemperature?: Maybe<TemperatureInput>;
|
|
3888
|
+
};
|
|
3889
|
+
|
|
3750
3890
|
export type RequestEvConsumption = {
|
|
3751
|
-
/**
|
|
3891
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc */
|
|
3892
|
+
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3893
|
+
/**
|
|
3894
|
+
* Consumption, in kWh, of the auxiliaries.
|
|
3895
|
+
* @deprecated In favor of auxiliary
|
|
3896
|
+
*/
|
|
3752
3897
|
aux?: Maybe<CarConsumption>;
|
|
3753
|
-
/**
|
|
3898
|
+
/**
|
|
3899
|
+
* The consumption, in kWh, of the battery management system.
|
|
3900
|
+
* @deprecated In favor of auxiliary
|
|
3901
|
+
*/
|
|
3754
3902
|
bms?: Maybe<CarConsumption>;
|
|
3755
|
-
/**
|
|
3903
|
+
/**
|
|
3904
|
+
* The consumption, in kWh, of the vehicle in idle mode.
|
|
3905
|
+
* @deprecated In favor of auxiliary
|
|
3906
|
+
*/
|
|
3756
3907
|
idle?: Maybe<CarConsumption>;
|
|
3757
3908
|
};
|
|
3758
3909
|
|
|
3759
3910
|
export type RequestEvConsumptionInput = {
|
|
3760
|
-
/**
|
|
3911
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc. */
|
|
3912
|
+
auxiliary?: Maybe<Scalars["Float"]>;
|
|
3913
|
+
/** Deprecated in favor of auxiliary. */
|
|
3761
3914
|
aux?: Maybe<CarConsumptionInput>;
|
|
3762
|
-
/**
|
|
3915
|
+
/** Deprecated in favor of auxiliary. */
|
|
3763
3916
|
bms?: Maybe<CarConsumptionInput>;
|
|
3764
|
-
/**
|
|
3917
|
+
/** Deprecated in favor of auxiliary. */
|
|
3765
3918
|
idle?: Maybe<CarConsumptionInput>;
|
|
3766
3919
|
};
|
|
3767
3920
|
|
|
@@ -3778,6 +3931,10 @@ export type RequestEvInput = {
|
|
|
3778
3931
|
minPower?: Maybe<Scalars["Int"]>;
|
|
3779
3932
|
/** Flag which indicates if the climate is on. The default is true. */
|
|
3780
3933
|
climate?: Maybe<Scalars["Boolean"]>;
|
|
3934
|
+
/** Vehicle Heat Pump configuration. */
|
|
3935
|
+
heatPump?: Maybe<HeatPumpMode>;
|
|
3936
|
+
/** Vehicle cabin configuration. */
|
|
3937
|
+
cabin?: Maybe<RequestEvCabinInput>;
|
|
3781
3938
|
/** Number of occupants. */
|
|
3782
3939
|
occupants?: Maybe<Scalars["Int"]>;
|
|
3783
3940
|
/** Cargo weight, in kg. */
|
|
@@ -3892,109 +4049,109 @@ export type RequestUser = {
|
|
|
3892
4049
|
id?: Maybe<Scalars["ID"]>;
|
|
3893
4050
|
};
|
|
3894
4051
|
|
|
3895
|
-
/**
|
|
4052
|
+
/** Review model. */
|
|
3896
4053
|
export type Review = {
|
|
3897
|
-
/** ID of a review */
|
|
4054
|
+
/** ID of a review. */
|
|
3898
4055
|
id: Scalars["ID"];
|
|
3899
|
-
/** Station for which a review was provided */
|
|
4056
|
+
/** Station for which a review was provided. */
|
|
3900
4057
|
station?: Maybe<Station>;
|
|
3901
|
-
/** User who added a review. If a review was added by an anonymous user, this will be null */
|
|
4058
|
+
/** User who added a review. If a review was added by an anonymous user, this will be null. */
|
|
3902
4059
|
user?: Maybe<ReviewUser>;
|
|
3903
|
-
/** Rating of a review */
|
|
4060
|
+
/** Rating of a review. */
|
|
3904
4061
|
rating?: Maybe<Scalars["Int"]>;
|
|
3905
|
-
/** Message of a review */
|
|
4062
|
+
/** Message of a review. */
|
|
3906
4063
|
message?: Maybe<Scalars["String"]>;
|
|
3907
|
-
/** Locale of a message */
|
|
4064
|
+
/** Locale of a message. */
|
|
3908
4065
|
locale?: Maybe<Scalars["String"]>;
|
|
3909
|
-
/** Vehicle that was provided/selected by a user */
|
|
4066
|
+
/** Vehicle that was provided/selected by a user. */
|
|
3910
4067
|
ev?: Maybe<Car>;
|
|
3911
|
-
/** Plug type that was provided/selected by a user */
|
|
4068
|
+
/** Plug type that was provided/selected by a user. */
|
|
3912
4069
|
plugType?: Maybe<ConnectorType>;
|
|
3913
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
4070
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3914
4071
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3915
|
-
/** Boolean tags for a station review */
|
|
4072
|
+
/** Boolean tags for a station review. */
|
|
3916
4073
|
tags?: Maybe<ReviewTags>;
|
|
3917
|
-
/** Date and time when a review was created */
|
|
4074
|
+
/** Date and time when a review was created. */
|
|
3918
4075
|
createdAt?: Maybe<Scalars["String"]>;
|
|
3919
|
-
/** Date and time when a review was updated */
|
|
4076
|
+
/** Date and time when a review was updated. */
|
|
3920
4077
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
3921
4078
|
};
|
|
3922
4079
|
|
|
3923
|
-
/** Form input to add a new review */
|
|
4080
|
+
/** Form input to add a new review. */
|
|
3924
4081
|
export type ReviewAdd = {
|
|
3925
|
-
/** Station ID for which a review is provided */
|
|
4082
|
+
/** Station ID for which a review is provided. */
|
|
3926
4083
|
stationId: Scalars["String"];
|
|
3927
|
-
/** Rating of a review */
|
|
4084
|
+
/** Rating of a review. */
|
|
3928
4085
|
rating: Scalars["Int"];
|
|
3929
|
-
/** Review message */
|
|
4086
|
+
/** Review message. */
|
|
3930
4087
|
message?: Maybe<Scalars["String"]>;
|
|
3931
|
-
/** Locale of a message */
|
|
4088
|
+
/** Locale of a message. */
|
|
3932
4089
|
locale?: Maybe<Scalars["String"]>;
|
|
3933
|
-
/** ID of the vehicle that was provided/selected by a user */
|
|
4090
|
+
/** ID of the vehicle that was provided/selected by a user. */
|
|
3934
4091
|
ev?: Maybe<Scalars["String"]>;
|
|
3935
|
-
/** Plug type that was provided/selected by a user */
|
|
4092
|
+
/** Plug type that was provided/selected by a user. */
|
|
3936
4093
|
plugType?: Maybe<ConnectorType>;
|
|
3937
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
4094
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3938
4095
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3939
|
-
/** Boolean tags for a station review */
|
|
4096
|
+
/** Boolean tags for a station review. */
|
|
3940
4097
|
tags?: Maybe<ReviewTagsInput>;
|
|
3941
4098
|
};
|
|
3942
4099
|
|
|
3943
|
-
/** Form input for edit an existing review */
|
|
4100
|
+
/** Form input for edit an existing review. */
|
|
3944
4101
|
export type ReviewEdit = {
|
|
3945
|
-
/** Rating of a review */
|
|
4102
|
+
/** Rating of a review. */
|
|
3946
4103
|
rating: Scalars["Int"];
|
|
3947
|
-
/** Review message */
|
|
4104
|
+
/** Review message. */
|
|
3948
4105
|
message?: Maybe<Scalars["String"]>;
|
|
3949
|
-
/** Locale of a message */
|
|
4106
|
+
/** Locale of a message. */
|
|
3950
4107
|
locale?: Maybe<Scalars["String"]>;
|
|
3951
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
4108
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3952
4109
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3953
|
-
/** Boolean tags for a station review */
|
|
4110
|
+
/** Boolean tags for a station review. */
|
|
3954
4111
|
tags?: Maybe<ReviewTagsInput>;
|
|
3955
4112
|
};
|
|
3956
4113
|
|
|
3957
|
-
/** Statistical information for reviews of a station */
|
|
4114
|
+
/** Statistical information for reviews of a station. */
|
|
3958
4115
|
export type ReviewStats = {
|
|
3959
|
-
/** Average of all reviews */
|
|
4116
|
+
/** Average of all reviews. */
|
|
3960
4117
|
rating?: Maybe<Scalars["Float"]>;
|
|
3961
|
-
/** 'Total number of reviews */
|
|
4118
|
+
/** 'Total number of reviews. */
|
|
3962
4119
|
count?: Maybe<Scalars["Int"]>;
|
|
3963
4120
|
};
|
|
3964
4121
|
|
|
3965
|
-
/** Boolean tags for the station review */
|
|
4122
|
+
/** Boolean tags for the station review. */
|
|
3966
4123
|
export type ReviewTags = {
|
|
3967
|
-
/** Flag which indicates if the station was working when the review was added */
|
|
4124
|
+
/** Flag which indicates if the station was working when the review was added. */
|
|
3968
4125
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3969
|
-
/** Flag which indicates if the user recommended the station when the review was added */
|
|
4126
|
+
/** Flag which indicates if the user recommended the station when the review was added. */
|
|
3970
4127
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3971
4128
|
};
|
|
3972
4129
|
|
|
3973
|
-
/** Boolean tags for a station review */
|
|
4130
|
+
/** Boolean tags for a station review. */
|
|
3974
4131
|
export type ReviewTagsInput = {
|
|
3975
|
-
/** Flag which indicates if a station was working when the review was added */
|
|
4132
|
+
/** Flag which indicates if a station was working when the review was added. */
|
|
3976
4133
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3977
|
-
/** Flag which indicates if a user recommended a station when the review was added */
|
|
4134
|
+
/** Flag which indicates if a user recommended a station when the review was added. */
|
|
3978
4135
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3979
4136
|
};
|
|
3980
4137
|
|
|
3981
|
-
/** Special format for the user of a review */
|
|
4138
|
+
/** Special format for the user of a review. */
|
|
3982
4139
|
export type ReviewUser = {
|
|
3983
|
-
/** User full name. If a review was added by an anonymous user, this will be null */
|
|
4140
|
+
/** User full name. If a review was added by an anonymous user, this will be null. */
|
|
3984
4141
|
name?: Maybe<Scalars["String"]>;
|
|
3985
4142
|
/**
|
|
3986
|
-
* User ID
|
|
4143
|
+
* User ID.
|
|
3987
4144
|
* @deprecated Not sent back anymore, will be null
|
|
3988
4145
|
*/
|
|
3989
4146
|
id?: Maybe<Scalars["ID"]>;
|
|
3990
4147
|
/**
|
|
3991
|
-
* First name
|
|
3992
|
-
* @deprecated
|
|
4148
|
+
* First name.
|
|
4149
|
+
* @deprecated In favor of name.
|
|
3993
4150
|
*/
|
|
3994
4151
|
firstName?: Maybe<Scalars["String"]>;
|
|
3995
4152
|
/**
|
|
3996
|
-
* Last name
|
|
3997
|
-
* @deprecated
|
|
4153
|
+
* Last name.
|
|
4154
|
+
* @deprecated In favor of name
|
|
3998
4155
|
*/
|
|
3999
4156
|
lastName?: Maybe<Scalars["String"]>;
|
|
4000
4157
|
};
|
|
@@ -4046,13 +4203,13 @@ export type RouteAlternative = {
|
|
|
4046
4203
|
* @deprecated Will be removed in the future
|
|
4047
4204
|
*/
|
|
4048
4205
|
amenityRanking?: Maybe<Scalars["Int"]>;
|
|
4049
|
-
/**
|
|
4206
|
+
/** 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. */
|
|
4050
4207
|
rangeStart?: Maybe<Scalars["Int"]>;
|
|
4051
4208
|
/** Total energy in a battery at the beginning of a trip, in kWh. */
|
|
4052
4209
|
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
4053
4210
|
/** Total energy in a battery at the beginning of a trip, in percentage. */
|
|
4054
4211
|
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
4055
|
-
/**
|
|
4212
|
+
/** 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. */
|
|
4056
4213
|
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
4057
4214
|
/** 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. */
|
|
4058
4215
|
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
@@ -4230,7 +4387,7 @@ export type RouteEmissions = {
|
|
|
4230
4387
|
route_alternative_id: Scalars["ID"];
|
|
4231
4388
|
/** Emissions profile for the vehicle used in route. */
|
|
4232
4389
|
route_vehicle: RouteVehicleEmissions;
|
|
4233
|
-
/** Emissions profile for
|
|
4390
|
+
/** Emissions profile for an equivalent internal combustion engine vehicle. */
|
|
4234
4391
|
internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;
|
|
4235
4392
|
};
|
|
4236
4393
|
|
|
@@ -4363,7 +4520,7 @@ export enum RouteInstructionSign {
|
|
|
4363
4520
|
}
|
|
4364
4521
|
|
|
4365
4522
|
export type RouteInternalCombustionVehicleEmissions = {
|
|
4366
|
-
/** Total emissions. */
|
|
4523
|
+
/** Total co2e emissions. */
|
|
4367
4524
|
total: Scalars["Float"];
|
|
4368
4525
|
/** Embedded emissions. */
|
|
4369
4526
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4380,7 +4537,7 @@ export type RouteInternalCombustionVehicleEmissionstotalArgs = {
|
|
|
4380
4537
|
};
|
|
4381
4538
|
|
|
4382
4539
|
export type RouteInternalCombustionVehicleLegEmissions = {
|
|
4383
|
-
/** Total emissions for the leg. */
|
|
4540
|
+
/** Total co2e emissions for the leg. */
|
|
4384
4541
|
total: Scalars["Float"];
|
|
4385
4542
|
/** Embedded emissions for the leg. */
|
|
4386
4543
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4418,13 +4575,13 @@ export type RouteLeg = {
|
|
|
4418
4575
|
duration?: Maybe<Scalars["Int"]>;
|
|
4419
4576
|
/** Total energy used in a leg in kWh. */
|
|
4420
4577
|
consumption?: Maybe<Scalars["Float"]>;
|
|
4421
|
-
/**
|
|
4578
|
+
/** 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. */
|
|
4422
4579
|
rangeStart?: Maybe<Scalars["Int"]>;
|
|
4423
4580
|
/** Total energy in a battery at the beginning of a leg, in kWh. */
|
|
4424
4581
|
rangeStartKwh?: Maybe<Scalars["Float"]>;
|
|
4425
4582
|
/** Total energy in a battery at the beginning of a trip, in percentage. */
|
|
4426
4583
|
rangeStartPercentage?: Maybe<Scalars["Int"]>;
|
|
4427
|
-
/**
|
|
4584
|
+
/** 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. */
|
|
4428
4585
|
rangeEnd?: Maybe<Scalars["Int"]>;
|
|
4429
4586
|
/** 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. */
|
|
4430
4587
|
rangeEndKwh?: Maybe<Scalars["Float"]>;
|
|
@@ -5041,7 +5198,7 @@ export enum RouteTagType {
|
|
|
5041
5198
|
}
|
|
5042
5199
|
|
|
5043
5200
|
export type RouteVehicleEmissions = {
|
|
5044
|
-
/** Total emissions. */
|
|
5201
|
+
/** Total co2e emissions. */
|
|
5045
5202
|
total: Scalars["Float"];
|
|
5046
5203
|
/** Embedded emissions. */
|
|
5047
5204
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -5058,7 +5215,7 @@ export type RouteVehicleEmissionstotalArgs = {
|
|
|
5058
5215
|
};
|
|
5059
5216
|
|
|
5060
5217
|
export type RouteVehicleLegEmissions = {
|
|
5061
|
-
/** Total emissions for the leg. */
|
|
5218
|
+
/** Total co2e emissions for the leg. */
|
|
5062
5219
|
total: Scalars["Float"];
|
|
5063
5220
|
/** Embedded emissions for the leg. */
|
|
5064
5221
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -5136,207 +5293,347 @@ export enum StateOfChargeUnit {
|
|
|
5136
5293
|
PERCENTAGE = "percentage"
|
|
5137
5294
|
}
|
|
5138
5295
|
|
|
5139
|
-
/** Station data which extends OCPI Location */
|
|
5296
|
+
/** Station data which extends OCPI Location. */
|
|
5140
5297
|
export type Station = {
|
|
5141
|
-
/**
|
|
5142
|
-
review?: Maybe<ReviewStats>;
|
|
5143
|
-
/** Unique ID of a station */
|
|
5298
|
+
/** Unique ID of a station. This property is OCPI-compliant. */
|
|
5144
5299
|
id: Scalars["ID"];
|
|
5145
|
-
/** ISO-3166 alpha-2 country code of a station */
|
|
5300
|
+
/** ISO-3166 alpha-2 country code of a station. This property is OCPI-compliant. */
|
|
5146
5301
|
country_code?: Maybe<Scalars["String"]>;
|
|
5147
|
-
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard) */
|
|
5302
|
+
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
5148
5303
|
party_id?: Maybe<Scalars["String"]>;
|
|
5149
5304
|
/**
|
|
5150
5305
|
* Defines if a location may be published on a website or app etc.
|
|
5151
5306
|
* When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
|
|
5152
|
-
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created
|
|
5307
|
+
* 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.
|
|
5153
5308
|
*/
|
|
5154
5309
|
publish?: Maybe<Scalars["Boolean"]>;
|
|
5155
|
-
/** Name of a charging station */
|
|
5310
|
+
/** Name of a charging station. This property is OCPI-compliant. */
|
|
5156
5311
|
name?: Maybe<Scalars["String"]>;
|
|
5157
|
-
/** Street/block name and house number if available */
|
|
5312
|
+
/** Street/block name and house number if available. This property is OCPI-compliant. */
|
|
5158
5313
|
address?: Maybe<Scalars["String"]>;
|
|
5159
|
-
/** City or town */
|
|
5314
|
+
/** City or town. This property is OCPI-compliant. */
|
|
5160
5315
|
city?: Maybe<Scalars["String"]>;
|
|
5161
|
-
/** 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. */
|
|
5316
|
+
/** 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. */
|
|
5162
5317
|
postal_code?: Maybe<Scalars["String"]>;
|
|
5163
|
-
/** State or province of a location, only to be used when relevant */
|
|
5318
|
+
/** State or province of a location, only to be used when relevant. This property is OCPI-compliant. */
|
|
5164
5319
|
state?: Maybe<Scalars["String"]>;
|
|
5165
|
-
/** ISO 3166-1 alpha-3 code for the country of this station */
|
|
5320
|
+
/** ISO 3166-1 alpha-3 code for the country of this station. This property is OCPI-compliant. */
|
|
5166
5321
|
country?: Maybe<Scalars["String"]>;
|
|
5167
|
-
/** Coordinates of a location */
|
|
5322
|
+
/** Coordinates of a location. This property is OCPI-compliant. */
|
|
5168
5323
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
5169
|
-
/** Geographical location of related points relevant to a user */
|
|
5324
|
+
/** Geographical location of related points relevant to a user. This property is OCPI-compliant. */
|
|
5170
5325
|
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
5171
|
-
/** Type of parking at a charge point location */
|
|
5326
|
+
/** Type of parking at a charge point location. This property is OCPI-compliant. */
|
|
5172
5327
|
parking_type?: Maybe<OCPIParkingType>;
|
|
5173
|
-
/** EVSEs that belong to a station */
|
|
5328
|
+
/** EVSEs that belong to a station. This property is OCPI-compliant. */
|
|
5174
5329
|
evses?: Maybe<Array<Maybe<EVSE>>>;
|
|
5175
|
-
/** Human-readable directions on how to reach a station */
|
|
5330
|
+
/** Human-readable directions on how to reach a station. This property is OCPI-compliant. */
|
|
5176
5331
|
directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
5177
|
-
/** Information about an operator */
|
|
5332
|
+
/** Information about an operator. This property is OCPI-compliant. */
|
|
5178
5333
|
operator?: Maybe<Operator>;
|
|
5179
|
-
/** Information about a suboperator if applicable */
|
|
5334
|
+
/** Information about a suboperator if applicable. This property is OCPI-compliant. */
|
|
5180
5335
|
suboperator?: Maybe<Operator>;
|
|
5181
|
-
/** Information about an owner if available */
|
|
5336
|
+
/** Information about an owner if available. This property is OCPI-compliant. */
|
|
5182
5337
|
owner?: Maybe<Operator>;
|
|
5183
|
-
/** Facilities a charging station belongs to */
|
|
5338
|
+
/** Facilities a charging station belongs to. This property is OCPI-compliant. */
|
|
5184
5339
|
facilities?: Maybe<Array<Maybe<OCPIFacility>>>;
|
|
5185
|
-
/** 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) */
|
|
5340
|
+
/** 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. */
|
|
5186
5341
|
time_zone?: Maybe<Scalars["String"]>;
|
|
5187
|
-
/** Times when an EVSEs at a location can be accessed for charging */
|
|
5342
|
+
/** Times when an EVSEs at a location can be accessed for charging. This property is OCPI-compliant. */
|
|
5188
5343
|
opening_times?: Maybe<OCPIHours>;
|
|
5189
|
-
/** 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 */
|
|
5344
|
+
/** 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. */
|
|
5190
5345
|
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
5191
|
-
/** Links to images related to a location such as photos or logos */
|
|
5346
|
+
/** Links to images related to a location such as photos or logos. This property is OCPI-compliant. */
|
|
5192
5347
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
5193
|
-
/** Details of the energy supplied at a location */
|
|
5348
|
+
/** Details of the energy supplied at a location. This property is OCPI-compliant. */
|
|
5194
5349
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
5195
|
-
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created) */
|
|
5350
|
+
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). This property is OCPI-compliant. */
|
|
5196
5351
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
5197
|
-
/** ID provided by a station data source */
|
|
5352
|
+
/** ID provided by a station data source. */
|
|
5198
5353
|
external_id?: Maybe<Scalars["String"]>;
|
|
5199
|
-
/** GeoJSON location of a charging station */
|
|
5354
|
+
/** GeoJSON location of a charging station. */
|
|
5200
5355
|
location?: Maybe<Point>;
|
|
5201
|
-
/** Elevation (altitude) level */
|
|
5356
|
+
/** Elevation (altitude) level. */
|
|
5202
5357
|
elevation?: Maybe<Scalars["Int"]>;
|
|
5203
|
-
/** Groups of EVSEs by power and type */
|
|
5358
|
+
/** Groups of EVSEs by power and type. */
|
|
5204
5359
|
chargers?: Maybe<Array<Maybe<Charger>>>;
|
|
5205
|
-
/** Amenities located at this location */
|
|
5360
|
+
/** Amenities located at this location. */
|
|
5206
5361
|
amenities?: Maybe<Scalars["JSON"]>;
|
|
5207
|
-
/** Enriched information about the physical address of a station */
|
|
5362
|
+
/** Enriched information about the physical address of a station. */
|
|
5208
5363
|
physical_address?: Maybe<Address>;
|
|
5209
|
-
/**
|
|
5364
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
5365
|
+
heavy_vehicles_properties?: Maybe<StationHeavyVehiclesProperties>;
|
|
5366
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5367
|
+
heavy_vehicles_restrictions?: Maybe<StationHeavyVehiclesRestrictions>;
|
|
5368
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5369
|
+
vehicle_restrictions?: Maybe<StationVehicleRestrictions>;
|
|
5370
|
+
/** Type of location where the charge point is located. For example, shop. */
|
|
5371
|
+
location_category?: Maybe<Scalars["String"]>;
|
|
5372
|
+
/** Coordinates for the location's entrances in decimal degrees. If available, there can be more than one entrances to the location. */
|
|
5373
|
+
entrance_for_navigation?: Maybe<Array<OCPIAdditionalGeoLocation>>;
|
|
5374
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
5210
5375
|
properties?: Maybe<Scalars["JSON"]>;
|
|
5211
|
-
/** A flag that indicates if a station has real-time information about the availability of its connectors */
|
|
5376
|
+
/** A flag that indicates if a station has real-time information about the availability of its connectors. */
|
|
5212
5377
|
realtime?: Maybe<Scalars["Boolean"]>;
|
|
5213
|
-
/**
|
|
5378
|
+
/**
|
|
5379
|
+
* A flag that indicates if a station is on private property.
|
|
5380
|
+
* @deprecated In favor of access_type.
|
|
5381
|
+
*/
|
|
5214
5382
|
private?: Maybe<Scalars["Boolean"]>;
|
|
5215
|
-
/** Connectors grouped by power */
|
|
5383
|
+
/** Connectors grouped by power. */
|
|
5216
5384
|
power?: Maybe<Scalars["JSON"]>;
|
|
5217
5385
|
/**
|
|
5218
|
-
* Station availability
|
|
5219
|
-
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy
|
|
5386
|
+
* Station availability.
|
|
5387
|
+
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy.
|
|
5220
5388
|
*/
|
|
5221
5389
|
predicted_availability?: Maybe<Array<Maybe<StationPredictedAvailability>>>;
|
|
5222
|
-
/**
|
|
5223
|
-
* Predicted station occupancy
|
|
5224
|
-
* @deprecated In favor of custom_properties.predicted_occupancy
|
|
5225
|
-
*/
|
|
5390
|
+
/** Predicted station occupancy. */
|
|
5226
5391
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
5227
|
-
/** Charging speed for a station */
|
|
5392
|
+
/** Charging speed for a station. */
|
|
5228
5393
|
speed?: Maybe<StationSpeedType>;
|
|
5229
|
-
/** Global status for a station */
|
|
5394
|
+
/** Global status for a station. */
|
|
5230
5395
|
status?: Maybe<ChargerStatus>;
|
|
5231
|
-
/** 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 */
|
|
5396
|
+
/** 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. */
|
|
5232
5397
|
custom_properties?: Maybe<StationCustomProperties>;
|
|
5398
|
+
/** Review of a station. */
|
|
5399
|
+
review?: Maybe<ReviewStats>;
|
|
5400
|
+
/** List of eMSP cards accepted at a charging station. */
|
|
5401
|
+
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
5402
|
+
/** Phone number for assistance at a charging station. */
|
|
5403
|
+
support_phone_number?: Maybe<Scalars["String"]>;
|
|
5404
|
+
/** Charging behavior of a station. */
|
|
5405
|
+
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
5406
|
+
/** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values. */
|
|
5407
|
+
reliability_score?: Maybe<Scalars["Int"]>;
|
|
5408
|
+
/** Indicates the authentication and payment methods. */
|
|
5409
|
+
adhoc_authorisation_payment_method?: Maybe<
|
|
5410
|
+
Array<StationAdhocAuthorisationPaymentMethod>
|
|
5411
|
+
>;
|
|
5412
|
+
/** Type of access to the charging station. */
|
|
5413
|
+
access_type?: Maybe<AccessType>;
|
|
5233
5414
|
};
|
|
5234
5415
|
|
|
5235
|
-
|
|
5416
|
+
export enum StationAdhocAuthorisationPaymentMethod {
|
|
5417
|
+
/** Authentication by car through Plug and Charge. */
|
|
5418
|
+
AUTH_BY_CAR_PLUG_AND_CHARGE = "AUTH_BY_CAR_PLUG_AND_CHARGE",
|
|
5419
|
+
/** Apple Pay. */
|
|
5420
|
+
ONLINE_APPLE_PAY = "ONLINE_APPLE_PAY",
|
|
5421
|
+
/** Terminal in app. */
|
|
5422
|
+
TERMINAL_IN_APP = "TERMINAL_IN_APP",
|
|
5423
|
+
/** PayPal. */
|
|
5424
|
+
ONLINE_PAYPAL = "ONLINE_PAYPAL",
|
|
5425
|
+
/** Service Provider RFID Card. */
|
|
5426
|
+
SERVICE_PROVIDER_RFID_CARD = "SERVICE_PROVIDER_RFID_CARD",
|
|
5427
|
+
/** Terminal QR Code. */
|
|
5428
|
+
TERMINAL_QR_CODE = "TERMINAL_QR_CODE",
|
|
5429
|
+
/** Terminal Credit Card. */
|
|
5430
|
+
TERMINAL_CREDIT_CARD = "TERMINAL_CREDIT_CARD",
|
|
5431
|
+
/** Terminal Debit Card. */
|
|
5432
|
+
TERMINAL_DEBIT_CARD = "TERMINAL_DEBIT_CARD",
|
|
5433
|
+
/** Terminal SMS. */
|
|
5434
|
+
TERMINAL_SMS = "TERMINAL_SMS",
|
|
5435
|
+
/** Credit Card. */
|
|
5436
|
+
ONLINE_CREDIT_CARD = "ONLINE_CREDIT_CARD",
|
|
5437
|
+
/** Other. */
|
|
5438
|
+
OTHER_OTHER = "OTHER_OTHER",
|
|
5439
|
+
/** Terminal Contactless. */
|
|
5440
|
+
TERMINAL_CONTACTLESS = "TERMINAL_CONTACTLESS",
|
|
5441
|
+
/** Google Pay. */
|
|
5442
|
+
ONLINE_GOOGLE_PAY = "ONLINE_GOOGLE_PAY",
|
|
5443
|
+
/** Bank Payment. */
|
|
5444
|
+
ONLINE_BANK_PAYMENT = "ONLINE_BANK_PAYMENT",
|
|
5445
|
+
/** Authentication by car through Auto Charge. */
|
|
5446
|
+
AUTH_BY_CAR_AUTOCHARGE = "AUTH_BY_CAR_AUTOCHARGE"
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
/** Filter which can be applied to retrieve the station around list action. */
|
|
5236
5450
|
export type StationAroundFilter = {
|
|
5237
|
-
/**
|
|
5451
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
5238
5452
|
location?: Maybe<PointInput>;
|
|
5239
|
-
/** Distance, in meters, to search around */
|
|
5453
|
+
/** Distance, in meters, to search around. */
|
|
5240
5454
|
distance?: Maybe<Scalars["Int"]>;
|
|
5241
|
-
/** Powers in kWh */
|
|
5455
|
+
/** Powers in kWh. */
|
|
5242
5456
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5243
|
-
/** Amenities available near a station */
|
|
5457
|
+
/** Amenities available near a station. */
|
|
5244
5458
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
5245
|
-
/** Station speed */
|
|
5459
|
+
/** Station speed. */
|
|
5246
5460
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
5247
|
-
/** Station socket or plug standards */
|
|
5461
|
+
/** Station socket or plug standards. */
|
|
5248
5462
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
5249
|
-
/** Flag that allows you to return only available stations */
|
|
5463
|
+
/** Flag that allows you to return only available stations. */
|
|
5250
5464
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
5251
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
5465
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
5252
5466
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5253
5467
|
};
|
|
5254
5468
|
|
|
5255
|
-
/** Deprecated: Replaced by filter & search params */
|
|
5469
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
5256
5470
|
export type StationAroundQuery = {
|
|
5257
|
-
/**
|
|
5471
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
5258
5472
|
location?: Maybe<PointInput>;
|
|
5259
|
-
/** Distance, in meters, to search around */
|
|
5473
|
+
/** Distance, in meters, to search around. */
|
|
5260
5474
|
distance?: Maybe<Scalars["Int"]>;
|
|
5261
|
-
/** Power in kWh */
|
|
5475
|
+
/** Power in kWh. */
|
|
5262
5476
|
power?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5263
|
-
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park */
|
|
5477
|
+
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park. */
|
|
5264
5478
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
5265
5479
|
};
|
|
5266
5480
|
|
|
5267
5481
|
export type StationCustomProperties = {
|
|
5268
|
-
/**
|
|
5482
|
+
/**
|
|
5483
|
+
* List of eMSP cards accepted at a charging station.
|
|
5484
|
+
* @deprecated In favor of station.roaming.
|
|
5485
|
+
*/
|
|
5269
5486
|
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
5270
|
-
/**
|
|
5487
|
+
/**
|
|
5488
|
+
* Phone number for assistance at a charging station.
|
|
5489
|
+
* @deprecated In favor of station.support_phone_number.
|
|
5490
|
+
*/
|
|
5271
5491
|
support_phone_number?: Maybe<Scalars["String"]>;
|
|
5272
|
-
/**
|
|
5492
|
+
/**
|
|
5493
|
+
* Charging behavior of a station.
|
|
5494
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
5495
|
+
*/
|
|
5273
5496
|
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
5274
|
-
/**
|
|
5497
|
+
/**
|
|
5498
|
+
* Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.
|
|
5499
|
+
* @deprecated In favor of station.reliability_score.
|
|
5500
|
+
*/
|
|
5275
5501
|
reliability_score?: Maybe<Scalars["Int"]>;
|
|
5276
|
-
/**
|
|
5502
|
+
/**
|
|
5503
|
+
* List of available ad hoc payment methods.
|
|
5504
|
+
* @deprecated In favor of station.adhoc_authorisation_payment_method.
|
|
5505
|
+
*/
|
|
5277
5506
|
adhoc_authorisation_method?: Maybe<Array<Maybe<AdhocAuthorisationMethod>>>;
|
|
5278
|
-
/**
|
|
5507
|
+
/**
|
|
5508
|
+
* Predicted station occupancy.
|
|
5509
|
+
* @deprecated In favor of station.predicted_occupancy.
|
|
5510
|
+
*/
|
|
5279
5511
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
5280
|
-
/**
|
|
5512
|
+
/**
|
|
5513
|
+
* Type of access to the charging station.
|
|
5514
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
5515
|
+
*/
|
|
5281
5516
|
access_type?: Maybe<AccessType>;
|
|
5282
|
-
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
5517
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
5283
5518
|
oicp?: Maybe<OICPStationCustomProperties>;
|
|
5284
5519
|
};
|
|
5285
5520
|
|
|
5286
|
-
/**
|
|
5521
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
5522
|
+
export type StationHeavyVehiclesProperties = {
|
|
5523
|
+
/** Indicates whether the location was constructed mainly for the purpose of heavy vehicles like trucks. */
|
|
5524
|
+
is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
5525
|
+
/** List of facilities in the location. */
|
|
5526
|
+
facilities?: Maybe<Array<HeavyVehiclesFacility>>;
|
|
5527
|
+
/** Indicates whether the location is suitable for trucks with trailers. */
|
|
5528
|
+
is_trailer_accessible?: Maybe<Scalars["Boolean"]>;
|
|
5529
|
+
/** Indicates whether the location is drive-through. */
|
|
5530
|
+
is_drive_through?: Maybe<Scalars["Boolean"]>;
|
|
5531
|
+
/** Indicates whether the location allows charging of heavy vehicles transporting dangerous goods. */
|
|
5532
|
+
allows_dangerous_goods?: Maybe<Scalars["Boolean"]>;
|
|
5533
|
+
/** Indicates whether the location is suitable for rigid heavy vehicles. */
|
|
5534
|
+
allows_rigid_vehicles?: Maybe<Scalars["Boolean"]>;
|
|
5535
|
+
/** Indicates whether the location allows overnight charging of heavy vehicles. */
|
|
5536
|
+
allows_overnight_parking?: Maybe<Scalars["Boolean"]>;
|
|
5537
|
+
};
|
|
5538
|
+
|
|
5539
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5540
|
+
export type StationHeavyVehiclesRestrictions = {
|
|
5541
|
+
/** Maximum height of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5542
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5543
|
+
/** Maximum width of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5544
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5545
|
+
/** Maximum length of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5546
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5547
|
+
/** Maximum mass of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5548
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5549
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
5550
|
+
allowed_types_EU?: Maybe<Array<HeavyVehiclesEUType>>;
|
|
5551
|
+
};
|
|
5552
|
+
|
|
5553
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5554
|
+
export type StationHeavyVehiclesRestrictionsheightArgs = {
|
|
5555
|
+
unit?: Maybe<DimensionUnit>;
|
|
5556
|
+
};
|
|
5557
|
+
|
|
5558
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5559
|
+
export type StationHeavyVehiclesRestrictionswidthArgs = {
|
|
5560
|
+
unit?: Maybe<DimensionUnit>;
|
|
5561
|
+
};
|
|
5562
|
+
|
|
5563
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5564
|
+
export type StationHeavyVehiclesRestrictionslengthArgs = {
|
|
5565
|
+
unit?: Maybe<DimensionUnit>;
|
|
5566
|
+
};
|
|
5567
|
+
|
|
5568
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5569
|
+
export type StationHeavyVehiclesRestrictionsmassArgs = {
|
|
5570
|
+
unit?: Maybe<WeightUnit>;
|
|
5571
|
+
};
|
|
5572
|
+
|
|
5573
|
+
/** Filter which can be applied to retrieve the station list action. */
|
|
5287
5574
|
export type StationListFilter = {
|
|
5288
|
-
/** Powers in kWh */
|
|
5575
|
+
/** Powers in kWh. */
|
|
5289
5576
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5290
|
-
/** Amenities available near a station */
|
|
5577
|
+
/** Amenities available near a station. */
|
|
5291
5578
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
5292
|
-
/** Station speed */
|
|
5579
|
+
/** Station speed. */
|
|
5293
5580
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
5294
|
-
/** Station socket or plug standards */
|
|
5581
|
+
/** Station socket or plug standards. */
|
|
5295
5582
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
5296
|
-
/** Flag that allows you to return only available stations */
|
|
5583
|
+
/** Flag that allows you to return only available stations. */
|
|
5297
5584
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
5298
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
5585
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
5299
5586
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5300
5587
|
};
|
|
5301
5588
|
|
|
5302
|
-
/** Deprecated: Replaced by filter & search params */
|
|
5589
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
5303
5590
|
export type StationListQuery = {
|
|
5304
|
-
/** ID of the station */
|
|
5591
|
+
/** ID of the station. */
|
|
5305
5592
|
id?: Maybe<Scalars["ID"]>;
|
|
5306
|
-
/** External ID of the station provided by the station data source */
|
|
5593
|
+
/** External ID of the station provided by the station data source. */
|
|
5307
5594
|
external_id?: Maybe<Scalars["String"]>;
|
|
5308
|
-
/** Exact name */
|
|
5595
|
+
/** Exact name. */
|
|
5309
5596
|
name?: Maybe<Scalars["String"]>;
|
|
5310
5597
|
};
|
|
5311
5598
|
|
|
5312
|
-
/** Station availability for each weekday and hour */
|
|
5599
|
+
/** Station availability for each weekday and hour. */
|
|
5313
5600
|
export type StationPredictedAvailability = {
|
|
5314
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5601
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
5315
5602
|
weekday?: Maybe<Scalars["Int"]>;
|
|
5316
|
-
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)) */
|
|
5603
|
+
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)). */
|
|
5317
5604
|
prediction?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
5318
5605
|
};
|
|
5319
5606
|
|
|
5320
|
-
/** Station occupancy for each weekday and hour */
|
|
5607
|
+
/** Station occupancy for each weekday and hour. */
|
|
5321
5608
|
export type StationPredictedOccupancy = {
|
|
5322
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5609
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
5323
5610
|
weekday?: Maybe<Scalars["Int"]>;
|
|
5324
|
-
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied */
|
|
5611
|
+
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied. */
|
|
5325
5612
|
occupancy?: Maybe<Scalars["Int"]>;
|
|
5326
|
-
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5613
|
+
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
5327
5614
|
period_begin?: Maybe<Scalars["String"]>;
|
|
5328
|
-
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5615
|
+
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
5329
5616
|
period_end?: Maybe<Scalars["String"]>;
|
|
5330
5617
|
};
|
|
5331
5618
|
|
|
5332
5619
|
export type StationRoaming = {
|
|
5333
|
-
/**
|
|
5620
|
+
/** Unique id for a provider. It is created by Eco-Movement, and it is stable. */
|
|
5621
|
+
partner_id?: Maybe<Scalars["String"]>;
|
|
5622
|
+
/**
|
|
5623
|
+
* Unique E-Mobility Account Identifier (eMA ID) for a provider.
|
|
5624
|
+
* It is created by Eco-Movement by combining the country code where the charging station is located, and the party id of the provider.
|
|
5625
|
+
* For example, NL-ECO. Note: A provider can have multiple eMA IDs.
|
|
5626
|
+
* For example, if a company named 'Example Company A' acquired 'Example Company B' and owns the charging stations of Example Company B,
|
|
5627
|
+
* then this attribute maps Example Company B's eMA IDs to Example Company A's eMA IDs. For example, ['NL-EXA', 'NL-EXB'].
|
|
5628
|
+
*/
|
|
5629
|
+
ema_id?: Maybe<Array<Scalars["String"]>>;
|
|
5630
|
+
/** Name of the EMSP provider. */
|
|
5334
5631
|
emsp?: Maybe<Scalars["String"]>;
|
|
5335
|
-
/** Name of the card accepted at a charging station */
|
|
5632
|
+
/** Name of the card accepted at a charging station. */
|
|
5336
5633
|
card?: Maybe<Scalars["String"]>;
|
|
5337
|
-
/** Link to native Android app for card accepted at a charging station */
|
|
5634
|
+
/** Link to native Android app for card accepted at a charging station. */
|
|
5338
5635
|
android_app_link?: Maybe<Scalars["String"]>;
|
|
5339
|
-
/** Link to native iOS app for card accepted at a charging station */
|
|
5636
|
+
/** Link to native iOS app for card accepted at a charging station. */
|
|
5340
5637
|
ios_app_link?: Maybe<Scalars["String"]>;
|
|
5341
5638
|
};
|
|
5342
5639
|
|
|
@@ -5360,6 +5657,38 @@ export type StationStats = {
|
|
|
5360
5657
|
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
5361
5658
|
};
|
|
5362
5659
|
|
|
5660
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5661
|
+
export type StationVehicleRestrictions = {
|
|
5662
|
+
/** Maximum weight for a vehicle that is allowed at the location. */
|
|
5663
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5664
|
+
/** Maximum width for a vehicle that is allowed at the location. */
|
|
5665
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5666
|
+
/** Maximum height for a vehicle that is allowed at the location. */
|
|
5667
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5668
|
+
/** Maximum length for a vehicle that is allowed at the location. */
|
|
5669
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5670
|
+
};
|
|
5671
|
+
|
|
5672
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5673
|
+
export type StationVehicleRestrictionsmassArgs = {
|
|
5674
|
+
unit?: Maybe<WeightUnit>;
|
|
5675
|
+
};
|
|
5676
|
+
|
|
5677
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5678
|
+
export type StationVehicleRestrictionswidthArgs = {
|
|
5679
|
+
unit?: Maybe<DimensionUnit>;
|
|
5680
|
+
};
|
|
5681
|
+
|
|
5682
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5683
|
+
export type StationVehicleRestrictionsheightArgs = {
|
|
5684
|
+
unit?: Maybe<DimensionUnit>;
|
|
5685
|
+
};
|
|
5686
|
+
|
|
5687
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5688
|
+
export type StationVehicleRestrictionslengthArgs = {
|
|
5689
|
+
unit?: Maybe<DimensionUnit>;
|
|
5690
|
+
};
|
|
5691
|
+
|
|
5363
5692
|
/** Types of a route step. */
|
|
5364
5693
|
export enum StepType {
|
|
5365
5694
|
/** This step is a road. */
|
|
@@ -5556,6 +5885,20 @@ export enum TelemetryInputSource {
|
|
|
5556
5885
|
TELEMETRY = "telemetry"
|
|
5557
5886
|
}
|
|
5558
5887
|
|
|
5888
|
+
export type Temperature = {
|
|
5889
|
+
/** Value of the temperature. */
|
|
5890
|
+
value: Scalars["Float"];
|
|
5891
|
+
/** Type of temperature. */
|
|
5892
|
+
type: TemperatureUnit;
|
|
5893
|
+
};
|
|
5894
|
+
|
|
5895
|
+
export type TemperatureInput = {
|
|
5896
|
+
/** Value of the temperature. */
|
|
5897
|
+
value: Scalars["Float"];
|
|
5898
|
+
/** Type of temperature. */
|
|
5899
|
+
type: TemperatureUnit;
|
|
5900
|
+
};
|
|
5901
|
+
|
|
5559
5902
|
export enum TemperatureUnit {
|
|
5560
5903
|
/** Return the temperature in Celsius. */
|
|
5561
5904
|
CELSIUS = "Celsius",
|
|
@@ -5645,6 +5988,8 @@ export type Vehicle = {
|
|
|
5645
5988
|
purpose: VehiclePurpose;
|
|
5646
5989
|
/** Type of vehicle. */
|
|
5647
5990
|
type: VehicleType;
|
|
5991
|
+
/** Details about Heat Pump. */
|
|
5992
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
5648
5993
|
};
|
|
5649
5994
|
|
|
5650
5995
|
export type VehicleAvailability = {
|
|
@@ -5679,6 +6024,8 @@ export type VehicleBattery = {
|
|
|
5679
6024
|
full_kwh: Scalars["Float"];
|
|
5680
6025
|
/** Usable battery capacity in kWh. */
|
|
5681
6026
|
usable_kwh: Scalars["Float"];
|
|
6027
|
+
/** Type of battery. */
|
|
6028
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5682
6029
|
};
|
|
5683
6030
|
|
|
5684
6031
|
/** Battery field estimated. */
|
|
@@ -5693,6 +6040,11 @@ export enum VehicleBatteryFieldEstimations {
|
|
|
5693
6040
|
U = "U"
|
|
5694
6041
|
}
|
|
5695
6042
|
|
|
6043
|
+
export enum VehicleBatteryType {
|
|
6044
|
+
/** Lithium-Ion Battery. */
|
|
6045
|
+
LITHIUM_ION = "lithium_ion"
|
|
6046
|
+
}
|
|
6047
|
+
|
|
5696
6048
|
export type VehicleBody = {
|
|
5697
6049
|
/** Width with folded mirrors, default in mm. */
|
|
5698
6050
|
width: Scalars["Float"];
|
|
@@ -5805,6 +6157,13 @@ export enum VehicleFuel {
|
|
|
5805
6157
|
P = "P"
|
|
5806
6158
|
}
|
|
5807
6159
|
|
|
6160
|
+
export type VehicleHeatPump = {
|
|
6161
|
+
/** Indicates if a heat pump is available for a specific vehicle. */
|
|
6162
|
+
is_available?: Maybe<Scalars["Boolean"]>;
|
|
6163
|
+
/** Indicates if a heat pump is standard equipment for a specific vehicle. */
|
|
6164
|
+
is_standard_equipment?: Maybe<Scalars["Boolean"]>;
|
|
6165
|
+
};
|
|
6166
|
+
|
|
5808
6167
|
export type VehicleImage = {
|
|
5809
6168
|
/** Image id. */
|
|
5810
6169
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -5896,6 +6255,8 @@ export type VehicleListBattery = {
|
|
|
5896
6255
|
full_kwh: Scalars["Float"];
|
|
5897
6256
|
/** Usable battery capacity in kWh. */
|
|
5898
6257
|
usable_kwh: Scalars["Float"];
|
|
6258
|
+
/** Type of battery. */
|
|
6259
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5899
6260
|
};
|
|
5900
6261
|
|
|
5901
6262
|
export type VehicleListBody = {
|
|
@@ -6015,6 +6376,17 @@ export type VehiclePerformancetop_speedArgs = {
|
|
|
6015
6376
|
unit?: Maybe<SpeedUnit>;
|
|
6016
6377
|
};
|
|
6017
6378
|
|
|
6379
|
+
export enum VehiclePlugAndChargeSupport {
|
|
6380
|
+
/** Plug and charge is available. */
|
|
6381
|
+
AVAILABLE = "available",
|
|
6382
|
+
/** Plug and charge is announced, but not yet available. */
|
|
6383
|
+
ANNOUNCED = "announced",
|
|
6384
|
+
/** Plug and charge is available in a limited context. */
|
|
6385
|
+
LIMITED = "limited",
|
|
6386
|
+
/** Plug and charge is not available. */
|
|
6387
|
+
NOT_AVAILABLE = "not_available"
|
|
6388
|
+
}
|
|
6389
|
+
|
|
6018
6390
|
/** The output element of the vehiclePremium query. */
|
|
6019
6391
|
export type VehiclePremium = {
|
|
6020
6392
|
/** Vehicles unique ID. */
|
|
@@ -6066,6 +6438,8 @@ export type VehiclePremium = {
|
|
|
6066
6438
|
purpose: VehiclePurpose;
|
|
6067
6439
|
/** Type of vehicle. */
|
|
6068
6440
|
type: VehicleType;
|
|
6441
|
+
/** Details about Heat Pump. */
|
|
6442
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
6069
6443
|
};
|
|
6070
6444
|
|
|
6071
6445
|
export type VehiclePremiumAvailability = {
|
|
@@ -6104,6 +6478,8 @@ export type VehiclePremiumBattery = {
|
|
|
6104
6478
|
weight?: Maybe<Scalars["Float"]>;
|
|
6105
6479
|
/** Nominal voltage of battery. */
|
|
6106
6480
|
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
6481
|
+
/** Type of battery. */
|
|
6482
|
+
type?: Maybe<VehicleBatteryType>;
|
|
6107
6483
|
};
|
|
6108
6484
|
|
|
6109
6485
|
export type VehiclePremiumBody = {
|
|
@@ -6121,6 +6497,8 @@ export type VehiclePremiumBody = {
|
|
|
6121
6497
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
6122
6498
|
/** Indicates if wheelbase field is estimated. */
|
|
6123
6499
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6500
|
+
/** Ground clearance of a vehicle as specified by the OEM, default in mm. */
|
|
6501
|
+
ground_clearance?: Maybe<Scalars["Float"]>;
|
|
6124
6502
|
/** Weight (unladen EU). */
|
|
6125
6503
|
weight: VehicleBodyWeight;
|
|
6126
6504
|
/** Maximum allowed vehicle weight with payload. */
|
|
@@ -6192,6 +6570,10 @@ export type VehiclePremiumBodywheelbaseArgs = {
|
|
|
6192
6570
|
unit?: Maybe<MeasurementUnit>;
|
|
6193
6571
|
};
|
|
6194
6572
|
|
|
6573
|
+
export type VehiclePremiumBodyground_clearanceArgs = {
|
|
6574
|
+
unit?: Maybe<MeasurementUnit>;
|
|
6575
|
+
};
|
|
6576
|
+
|
|
6195
6577
|
export type VehiclePremiumBodyweight_max_payloadArgs = {
|
|
6196
6578
|
unit?: Maybe<WeightUnit>;
|
|
6197
6579
|
};
|
|
@@ -6239,6 +6621,8 @@ export type VehiclePremiumCharge = {
|
|
|
6239
6621
|
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
6240
6622
|
/** Alternative upgrade for the standard onboard charger when available. */
|
|
6241
6623
|
alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
|
|
6624
|
+
/** Vehicle-to-everything charge support. */
|
|
6625
|
+
vehicle_to_everything?: Maybe<VehicleToEverything>;
|
|
6242
6626
|
};
|
|
6243
6627
|
|
|
6244
6628
|
export type VehiclePremiumChargeAlternativeOBC = {
|
|
@@ -6546,6 +6930,16 @@ export type VehiclePremiumFastCharge = {
|
|
|
6546
6930
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6547
6931
|
/** Charging details for fast charging. */
|
|
6548
6932
|
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
6933
|
+
/** Indicates if autocharge is available. */
|
|
6934
|
+
has_autocharge?: Maybe<Scalars["Boolean"]>;
|
|
6935
|
+
/** Status of Plug & Charge (PnC ISO15118) support for vehicle. */
|
|
6936
|
+
iso_15118_pnc_support?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6937
|
+
/** Status of Plug & Charge (PnC ISO15118) -2 protocol support for vehicle. */
|
|
6938
|
+
iso_15118_pnc_support_2?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6939
|
+
/** Status of Plug & Charge (PnC ISO15118) -20 protocol support for vehicle. */
|
|
6940
|
+
iso_15118_pnc_support_20?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6941
|
+
/** Indicates if the fastcharge data is based on a real-world test by Fastned. */
|
|
6942
|
+
is_fastned_tested?: Maybe<Scalars["Boolean"]>;
|
|
6549
6943
|
};
|
|
6550
6944
|
|
|
6551
6945
|
export type VehiclePremiumFastChargecharge_speedArgs = {
|
|
@@ -6647,6 +7041,10 @@ export type VehiclePremiumPriceValueWithGrant = {
|
|
|
6647
7041
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6648
7042
|
/** Grant that is applied to the starting price. */
|
|
6649
7043
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
7044
|
+
/** Total delivery fees (be aware that this field does not include grant). */
|
|
7045
|
+
price_delivery?: Maybe<Scalars["Int"]>;
|
|
7046
|
+
/** First registration fee (be aware that this field does not include grant). */
|
|
7047
|
+
price_first_registration_fee?: Maybe<Scalars["Int"]>;
|
|
6650
7048
|
};
|
|
6651
7049
|
|
|
6652
7050
|
export type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
@@ -6735,11 +7133,22 @@ export type VehiclePremiumRoutingfuel_consumptionArgs = {
|
|
|
6735
7133
|
};
|
|
6736
7134
|
|
|
6737
7135
|
export type VehiclePremiumRoutingConsumption = {
|
|
6738
|
-
/**
|
|
7136
|
+
/** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc */
|
|
7137
|
+
auxiliary?: Maybe<Scalars["Float"]>;
|
|
7138
|
+
/**
|
|
7139
|
+
* Consumption, in kWh, of the auxiliaries.
|
|
7140
|
+
* @deprecated In favor of auxiliary
|
|
7141
|
+
*/
|
|
6739
7142
|
aux?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
6740
|
-
/**
|
|
7143
|
+
/**
|
|
7144
|
+
* Consumption, in kWh, of the battery management system.
|
|
7145
|
+
* @deprecated In favor of auxiliary
|
|
7146
|
+
*/
|
|
6741
7147
|
bms?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
6742
|
-
/**
|
|
7148
|
+
/**
|
|
7149
|
+
* Consumption, in kWh, of the vehicle in idle mode.
|
|
7150
|
+
* @deprecated In favor of auxiliary
|
|
7151
|
+
*/
|
|
6743
7152
|
idle?: Maybe<VehiclePremiumRoutingConsumptionValue>;
|
|
6744
7153
|
};
|
|
6745
7154
|
|
|
@@ -6770,6 +7179,8 @@ export type VehiclePremiumSafetyEuroNcap = {
|
|
|
6770
7179
|
vru?: Maybe<Scalars["Int"]>;
|
|
6771
7180
|
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
6772
7181
|
sa?: Maybe<Scalars["Int"]>;
|
|
7182
|
+
/** Link to the EuroNCAP test report. */
|
|
7183
|
+
url?: Maybe<Scalars["String"]>;
|
|
6773
7184
|
};
|
|
6774
7185
|
|
|
6775
7186
|
/** Propulsion. */
|
|
@@ -6886,6 +7297,38 @@ export enum VehicleStatus {
|
|
|
6886
7297
|
ARCHIVED = "archived"
|
|
6887
7298
|
}
|
|
6888
7299
|
|
|
7300
|
+
export type VehicleToEverything = {
|
|
7301
|
+
/** Information about Vehicle-to-Load. */
|
|
7302
|
+
vehicle_to_load?: Maybe<VehicleToEverythingLoad>;
|
|
7303
|
+
/** Information about Vehicle-to-Home. */
|
|
7304
|
+
vehicle_to_home?: Maybe<VehicleToEverythingHomeGrid>;
|
|
7305
|
+
/** Information about Vehicle-to-Grid. */
|
|
7306
|
+
vehicle_to_grid?: Maybe<VehicleToEverythingHomeGrid>;
|
|
7307
|
+
};
|
|
7308
|
+
|
|
7309
|
+
export type VehicleToEverythingHomeGrid = {
|
|
7310
|
+
/** Vehicle-to-Home/Grid AC power information. */
|
|
7311
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
7312
|
+
/** Vehicle-to-Home/Grid DC power information */
|
|
7313
|
+
dc?: Maybe<VehicleToEverythingPower>;
|
|
7314
|
+
};
|
|
7315
|
+
|
|
7316
|
+
export type VehicleToEverythingLoad = {
|
|
7317
|
+
/** Vehicle-to-Load power information. */
|
|
7318
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
7319
|
+
/** Details on interior ports available for V2L. */
|
|
7320
|
+
interior_ports?: Maybe<Scalars["String"]>;
|
|
7321
|
+
/** Details on exterior ports available for V2L. */
|
|
7322
|
+
exterior_ports?: Maybe<Scalars["String"]>;
|
|
7323
|
+
};
|
|
7324
|
+
|
|
7325
|
+
export type VehicleToEverythingPower = {
|
|
7326
|
+
/** Indicates if this charging is supported. */
|
|
7327
|
+
is_supported?: Maybe<PowerSupported>;
|
|
7328
|
+
/** Maximum power output, in kilowatts. */
|
|
7329
|
+
maximum_power?: Maybe<Scalars["String"]>;
|
|
7330
|
+
};
|
|
7331
|
+
|
|
6889
7332
|
export enum VehicleType {
|
|
6890
7333
|
/** 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. */
|
|
6891
7334
|
MOTORCYCLE = "motorcycle",
|