@chargetrip/types 1.39.0 → 1.40.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 +7 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +87 -12
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +87 -12
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +653 -340
- package/graphql.schema.json +1725 -381
- package/package.json +1 -1
- package/src/graphql.ts +680 -340
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,30 @@ export type GeometryPoint = {
|
|
|
2271
2304
|
coordinates: Array<Scalars["Float"]>;
|
|
2272
2305
|
};
|
|
2273
2306
|
|
|
2307
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
2308
|
+
export enum HeavyVehiclesEUType {
|
|
2309
|
+
/** 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). */
|
|
2310
|
+
N1 = "N1",
|
|
2311
|
+
/** 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). */
|
|
2312
|
+
N2 = "N2",
|
|
2313
|
+
/** 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). */
|
|
2314
|
+
N3 = "N3"
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2317
|
+
/** List of facilities in the location. */
|
|
2318
|
+
export enum HeavyVehiclesFacility {
|
|
2319
|
+
/** Truck parking. */
|
|
2320
|
+
TRUCK_PARKING = "TRUCK_PARKING",
|
|
2321
|
+
/** Truck wash. */
|
|
2322
|
+
TRUCK_WASH = "TRUCK_WASH",
|
|
2323
|
+
/** Truck repair. */
|
|
2324
|
+
TRUCK_REPAIR = "TRUCK_REPAIR",
|
|
2325
|
+
/** Truck dealership. */
|
|
2326
|
+
TRUCK_DEALERSHIP = "TRUCK_DEALERSHIP",
|
|
2327
|
+
/** Secure truck parking. */
|
|
2328
|
+
SECURE_TRUCK_PARKING = "SECURE_TRUCK_PARKING"
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2274
2331
|
/** Navigation service providers available */
|
|
2275
2332
|
export enum InstructionsFormat {
|
|
2276
2333
|
/** Chargetrip raw instructions */
|
|
@@ -2560,6 +2617,8 @@ export type Navigation = {
|
|
|
2560
2617
|
alternative_stations: Array<NavigationStation>;
|
|
2561
2618
|
/** Navigation instructions */
|
|
2562
2619
|
instructions?: Maybe<Scalars["JSON"]>;
|
|
2620
|
+
/** Navigation meta information. */
|
|
2621
|
+
meta?: Maybe<NavigationMeta>;
|
|
2563
2622
|
};
|
|
2564
2623
|
|
|
2565
2624
|
/** The navigation session data */
|
|
@@ -2584,6 +2643,14 @@ export type NavigationInstructionsInput = {
|
|
|
2584
2643
|
precision?: Maybe<Scalars["Int"]>;
|
|
2585
2644
|
};
|
|
2586
2645
|
|
|
2646
|
+
/** Navigation meta information. */
|
|
2647
|
+
export type NavigationMeta = {
|
|
2648
|
+
/** Creation time of the navigation session. */
|
|
2649
|
+
created_at?: Maybe<Scalars["DateTime"]>;
|
|
2650
|
+
/** Last updated time of the navigation session. */
|
|
2651
|
+
updated_at?: Maybe<Scalars["DateTime"]>;
|
|
2652
|
+
};
|
|
2653
|
+
|
|
2587
2654
|
/** Input for the navigation recalculate */
|
|
2588
2655
|
export type NavigationRecalculateInput = {
|
|
2589
2656
|
/** ID of the navigation session */
|
|
@@ -2675,11 +2742,11 @@ export type NavigationUpdateLocationsInput = {
|
|
|
2675
2742
|
|
|
2676
2743
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2677
2744
|
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} */
|
|
2745
|
+
/** 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
2746
|
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} */
|
|
2747
|
+
/** 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
2748
|
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. */
|
|
2749
|
+
/** 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
2750
|
name?: Maybe<OCPIDisplayText>;
|
|
2684
2751
|
};
|
|
2685
2752
|
|
|
@@ -2814,30 +2881,30 @@ export enum OCPIDayOfWeek {
|
|
|
2814
2881
|
}
|
|
2815
2882
|
|
|
2816
2883
|
export type OCPIDisplayText = {
|
|
2817
|
-
/** Language Code ISO 639-1 */
|
|
2884
|
+
/** Language Code ISO 639-1. This property is OCPI-compliant. */
|
|
2818
2885
|
language?: Maybe<Scalars["String"]>;
|
|
2819
|
-
/** Text to be displayed to an end user. No markup, html etc. allowed. */
|
|
2886
|
+
/** Text to be displayed to an end user. No markup, html etc. allowed. This property is OCPI-compliant. */
|
|
2820
2887
|
text?: Maybe<Scalars["String"]>;
|
|
2821
2888
|
};
|
|
2822
2889
|
|
|
2823
2890
|
/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
|
|
2824
2891
|
export type OCPIEnergyMix = {
|
|
2825
|
-
/** True if the power is 100% from regenerative sources */
|
|
2892
|
+
/** True if the power is 100% from regenerative sources. This property is OCPI-compliant. */
|
|
2826
2893
|
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2827
|
-
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */
|
|
2894
|
+
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. This property is OCPI-compliant. */
|
|
2828
2895
|
energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
|
|
2829
|
-
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */
|
|
2896
|
+
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. This property is OCPI-compliant. */
|
|
2830
2897
|
environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
|
|
2831
|
-
/** Name of the energy supplier, delivering the energy for this location or tariff
|
|
2898
|
+
/** Name of the energy supplier, delivering the energy for this location or tariff.*. This property is OCPI-compliant. */
|
|
2832
2899
|
supplier_name?: Maybe<Scalars["String"]>;
|
|
2833
|
-
/** Name of the energy suppliers product/tariff plan used at this location
|
|
2900
|
+
/** Name of the energy suppliers product/tariff plan used at this location.*. This property is OCPI-compliant. */
|
|
2834
2901
|
energy_product_name?: Maybe<Scalars["String"]>;
|
|
2835
2902
|
};
|
|
2836
2903
|
|
|
2837
2904
|
export type OCPIEnergySource = {
|
|
2838
|
-
/** The type of energy source. */
|
|
2905
|
+
/** The type of energy source. This property is OCPI-compliant. */
|
|
2839
2906
|
source?: Maybe<OCPIEnergySourceCategory>;
|
|
2840
|
-
/** Percentage of this source (0-100) in the mix. */
|
|
2907
|
+
/** Percentage of this source (0-100) in the mix. This property is OCPI-compliant. */
|
|
2841
2908
|
percentage?: Maybe<Scalars["Int"]>;
|
|
2842
2909
|
};
|
|
2843
2910
|
|
|
@@ -2863,9 +2930,9 @@ export enum OCPIEnergySourceCategory {
|
|
|
2863
2930
|
|
|
2864
2931
|
/** Amount of waste produced/emitted per kWh. */
|
|
2865
2932
|
export type OCPIEnvironmentalImpact = {
|
|
2866
|
-
/** The environmental impact category of this value. */
|
|
2933
|
+
/** The environmental impact category of this value. This property is OCPI-compliant. */
|
|
2867
2934
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2868
|
-
/** Amount of this portion in g/kWh. */
|
|
2935
|
+
/** Amount of this portion in g/kWh. This property is OCPI-compliant. */
|
|
2869
2936
|
amount?: Maybe<Scalars["Float"]>;
|
|
2870
2937
|
};
|
|
2871
2938
|
|
|
@@ -2879,9 +2946,9 @@ export enum OCPIEnvironmentalImpactCategory {
|
|
|
2879
2946
|
|
|
2880
2947
|
/** Specifies one exceptional period for opening or access hours. */
|
|
2881
2948
|
export type OCPIExceptionalPeriod = {
|
|
2882
|
-
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2949
|
+
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2883
2950
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2884
|
-
/** End of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2951
|
+
/** End of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2885
2952
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2886
2953
|
};
|
|
2887
2954
|
|
|
@@ -2930,36 +2997,36 @@ export enum OCPIFacility {
|
|
|
2930
2997
|
|
|
2931
2998
|
/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2932
2999
|
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} */
|
|
3000
|
+
/** 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
3001
|
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} */
|
|
3002
|
+
/** 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
3003
|
longitude?: Maybe<Scalars["String"]>;
|
|
2937
3004
|
};
|
|
2938
3005
|
|
|
2939
3006
|
/** Opening and access hours of the location. */
|
|
2940
3007
|
export type OCPIHours = {
|
|
2941
|
-
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. */
|
|
3008
|
+
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. This property is OCPI-compliant. */
|
|
2942
3009
|
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. */
|
|
3010
|
+
/** 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
3011
|
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. */
|
|
3012
|
+
/** 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
3013
|
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. */
|
|
3014
|
+
/** 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
3015
|
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2949
3016
|
};
|
|
2950
3017
|
|
|
2951
3018
|
export type OCPIImage = {
|
|
2952
|
-
/** URL from where the image data can be fetched through a web browser. */
|
|
3019
|
+
/** URL from where the image data can be fetched through a web browser. This property is OCPI-compliant. */
|
|
2953
3020
|
url?: Maybe<Scalars["String"]>;
|
|
2954
|
-
/** URL from where a thumbnail of the image can be fetched through a webbrowser. */
|
|
3021
|
+
/** URL from where a thumbnail of the image can be fetched through a webbrowser. This property is OCPI-compliant. */
|
|
2955
3022
|
thumbnail?: Maybe<Scalars["String"]>;
|
|
2956
|
-
/** Category of an image */
|
|
3023
|
+
/** Category of an image. This property is OCPI-compliant. */
|
|
2957
3024
|
category?: Maybe<OCPIImageCategory>;
|
|
2958
|
-
/** Image type: gif, jpeg, png, svg */
|
|
3025
|
+
/** Image type: gif, jpeg, png, svg. This property is OCPI-compliant. */
|
|
2959
3026
|
type?: Maybe<Scalars["String"]>;
|
|
2960
|
-
/** Width of the full scale image */
|
|
3027
|
+
/** Width of the full scale image. This property is OCPI-compliant. */
|
|
2961
3028
|
width?: Maybe<Scalars["Int"]>;
|
|
2962
|
-
/** Height of the full scale image */
|
|
3029
|
+
/** Height of the full scale image. This property is OCPI-compliant. */
|
|
2963
3030
|
height?: Maybe<Scalars["Int"]>;
|
|
2964
3031
|
};
|
|
2965
3032
|
|
|
@@ -3025,30 +3092,30 @@ export enum OCPIPowerType {
|
|
|
3025
3092
|
}
|
|
3026
3093
|
|
|
3027
3094
|
export type OCPIPrice = {
|
|
3028
|
-
/** Price/Cost excluding VAT. */
|
|
3095
|
+
/** Price/Cost excluding VAT. This property is OCPI-compliant. */
|
|
3029
3096
|
excl_vat?: Maybe<Scalars["Float"]>;
|
|
3030
|
-
/** Price/Cost including VAT. */
|
|
3097
|
+
/** Price/Cost including VAT. This property is OCPI-compliant. */
|
|
3031
3098
|
incl_vat?: Maybe<Scalars["Float"]>;
|
|
3032
3099
|
};
|
|
3033
3100
|
|
|
3034
3101
|
export type OCPIPriceComponent = {
|
|
3035
|
-
/** Type of tariff dimension. */
|
|
3102
|
+
/** Type of tariff dimension. This property is OCPI-compliant. */
|
|
3036
3103
|
type?: Maybe<OCPITariffDimensionType>;
|
|
3037
|
-
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
3104
|
+
/** Price per unit (excl. VAT) for this tariff dimension. This property is OCPI-compliant. */
|
|
3038
3105
|
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. */
|
|
3106
|
+
/** 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
3107
|
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. */
|
|
3108
|
+
/** 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
3109
|
step_size?: Maybe<Scalars["Int"]>;
|
|
3043
3110
|
};
|
|
3044
3111
|
|
|
3045
3112
|
/** Regular recurring operation or access hours. */
|
|
3046
3113
|
export type OCPIRegularHours = {
|
|
3047
|
-
/** Number of days in the week, from Monday (1) till Sunday (7) */
|
|
3114
|
+
/** Number of days in the week, from Monday (1) till Sunday (7). This property is OCPI-compliant. */
|
|
3048
3115
|
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]. */
|
|
3116
|
+
/** 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
3117
|
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. */
|
|
3118
|
+
/** 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
3119
|
period_end?: Maybe<Scalars["String"]>;
|
|
3053
3120
|
};
|
|
3054
3121
|
|
|
@@ -3083,42 +3150,42 @@ export enum OCPIStatus {
|
|
|
3083
3150
|
|
|
3084
3151
|
/** 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
3152
|
export type OCPIStatusSchedule = {
|
|
3086
|
-
/** Begin of the scheduled period. */
|
|
3153
|
+
/** Begin of the scheduled period. This property is OCPI-compliant. */
|
|
3087
3154
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
3088
|
-
/** End of the scheduled period, if known. */
|
|
3155
|
+
/** End of the scheduled period, if known. This property is OCPI-compliant. */
|
|
3089
3156
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
3090
|
-
/** Status value during the scheduled period. */
|
|
3157
|
+
/** Status value during the scheduled period. This property is OCPI-compliant. */
|
|
3091
3158
|
status?: Maybe<OCPIStatus>;
|
|
3092
3159
|
};
|
|
3093
3160
|
|
|
3094
3161
|
export type OCPITariff = {
|
|
3095
|
-
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff */
|
|
3162
|
+
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff. This property is OCPI-compliant. */
|
|
3096
3163
|
country_code?: Maybe<Scalars["String"]>;
|
|
3097
|
-
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
|
|
3164
|
+
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
3098
3165
|
party_id?: Maybe<Scalars["String"]>;
|
|
3099
|
-
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
|
|
3166
|
+
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms). This property is OCPI-compliant. */
|
|
3100
3167
|
id?: Maybe<Scalars["String"]>;
|
|
3101
|
-
/** ISO-4217 code of the currency of this tariff. */
|
|
3168
|
+
/** ISO-4217 code of the currency of this tariff. This property is OCPI-compliant. */
|
|
3102
3169
|
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 */
|
|
3170
|
+
/** 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
3171
|
type?: Maybe<OCPITariffType>;
|
|
3105
|
-
/** List of alternative tariff information texts, in multiple languages */
|
|
3172
|
+
/** List of alternative tariff information texts, in multiple languages. This property is OCPI-compliant. */
|
|
3106
3173
|
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 */
|
|
3174
|
+
/** URL to a web page that contains an explanation of the tariff information in human readable form. This property is OCPI-compliant. */
|
|
3108
3175
|
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 */
|
|
3176
|
+
/** 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
3177
|
min_price?: Maybe<OCPIPrice>;
|
|
3111
|
-
/** When this field is set, a charging session with this tariff will NOT cost more than this amount */
|
|
3178
|
+
/** When this field is set, a charging session with this tariff will NOT cost more than this amount. This property is OCPI-compliant. */
|
|
3112
3179
|
max_price?: Maybe<OCPIPrice>;
|
|
3113
|
-
/** List of tariff elements */
|
|
3180
|
+
/** List of tariff elements. This property is OCPI-compliant. */
|
|
3114
3181
|
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 */
|
|
3182
|
+
/** 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
3183
|
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 */
|
|
3184
|
+
/** 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
3185
|
end_date_time?: Maybe<Scalars["DateTime"]>;
|
|
3119
|
-
/** Details about the energy supplied with this tariff */
|
|
3186
|
+
/** Details about the energy supplied with this tariff. This property is OCPI-compliant. */
|
|
3120
3187
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
3121
|
-
/** Timestamp when this tariff was last updated (or created) */
|
|
3188
|
+
/** Timestamp when this tariff was last updated (or created). This property is OCPI-compliant. */
|
|
3122
3189
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
3123
3190
|
};
|
|
3124
3191
|
|
|
@@ -3134,40 +3201,40 @@ export enum OCPITariffDimensionType {
|
|
|
3134
3201
|
}
|
|
3135
3202
|
|
|
3136
3203
|
export type OCPITariffElement = {
|
|
3137
|
-
/** List of price components that describe the pricing of a tariff. */
|
|
3204
|
+
/** List of price components that describe the pricing of a tariff. This property is OCPI-compliant. */
|
|
3138
3205
|
price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;
|
|
3139
|
-
/** Restrictions that describe the applicability of a tariff. */
|
|
3206
|
+
/** Restrictions that describe the applicability of a tariff. This property is OCPI-compliant. */
|
|
3140
3207
|
restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
|
|
3141
3208
|
};
|
|
3142
3209
|
|
|
3143
3210
|
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] */
|
|
3211
|
+
/** 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
3212
|
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. */
|
|
3213
|
+
/** 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
3214
|
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]) */
|
|
3215
|
+
/** 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
3216
|
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 */
|
|
3217
|
+
/** 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
3218
|
end_date?: Maybe<Scalars["String"]>;
|
|
3152
|
-
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
|
|
3219
|
+
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used. This property is OCPI-compliant. */
|
|
3153
3220
|
min_kwh?: Maybe<Scalars["Float"]>;
|
|
3154
|
-
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */
|
|
3221
|
+
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used. This property is OCPI-compliant. */
|
|
3155
3222
|
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 */
|
|
3223
|
+
/** 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
3224
|
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 */
|
|
3225
|
+
/** 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
3226
|
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 */
|
|
3227
|
+
/** 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
3228
|
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 */
|
|
3229
|
+
/** 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
3230
|
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 */
|
|
3231
|
+
/** 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
3232
|
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 */
|
|
3233
|
+
/** 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
3234
|
max_duration?: Maybe<Scalars["Float"]>;
|
|
3168
|
-
/** Which day(s) of the week this tariff element is active. */
|
|
3235
|
+
/** Which day(s) of the week this tariff element is active. This property is OCPI-compliant. */
|
|
3169
3236
|
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 */
|
|
3237
|
+
/** 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
3238
|
reservation?: Maybe<OCPIReservationRestrictionType>;
|
|
3172
3239
|
};
|
|
3173
3240
|
|
|
@@ -3184,7 +3251,7 @@ export enum OCPITariffType {
|
|
|
3184
3251
|
REGULAR = "REGULAR"
|
|
3185
3252
|
}
|
|
3186
3253
|
|
|
3187
|
-
/** List of charging modes that are supported */
|
|
3254
|
+
/** List of charging modes that are supported. */
|
|
3188
3255
|
export enum OICPChargingModes {
|
|
3189
3256
|
MODE_1 = "mode_1",
|
|
3190
3257
|
MODE_2 = "mode_2",
|
|
@@ -3193,15 +3260,15 @@ export enum OICPChargingModes {
|
|
|
3193
3260
|
CHADEMO = "chademo"
|
|
3194
3261
|
}
|
|
3195
3262
|
|
|
3196
|
-
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
3263
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
3197
3264
|
export type OICPConnectorCustomProperties = {
|
|
3198
|
-
/** Returns whether the connector is able to deliver different power outputs */
|
|
3265
|
+
/** Returns whether the connector is able to deliver different power outputs. */
|
|
3199
3266
|
dynamic_power_level?: Maybe<Scalars["Boolean"]>;
|
|
3200
|
-
/** List of charging modes that are supported as specified by IEC 61851-1 */
|
|
3267
|
+
/** List of charging modes that are supported as specified by IEC 61851-1. */
|
|
3201
3268
|
charging_modes?: Maybe<Array<OICPChargingModes>>;
|
|
3202
3269
|
};
|
|
3203
3270
|
|
|
3204
|
-
/** List of authentication modes that are supported */
|
|
3271
|
+
/** List of authentication modes that are supported. */
|
|
3205
3272
|
export enum OICPEvseAuthenticationMode {
|
|
3206
3273
|
NFC_RFID_CLASSIC = "nfc_rfid_classic",
|
|
3207
3274
|
NFC_RFID_DESFIRE = "nfc_rfid_desfire",
|
|
@@ -3211,51 +3278,51 @@ export enum OICPEvseAuthenticationMode {
|
|
|
3211
3278
|
NO_AUTHENTICATION_REQUIRED = "no_authentication_required"
|
|
3212
3279
|
}
|
|
3213
3280
|
|
|
3214
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3281
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3215
3282
|
export type OICPEvseCustomProperties = {
|
|
3216
|
-
/** List of authentication modes that are supported */
|
|
3283
|
+
/** List of authentication modes that are supported. */
|
|
3217
3284
|
authentication_modes: Array<OICPEvseAuthenticationMode>;
|
|
3218
|
-
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh */
|
|
3285
|
+
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh. */
|
|
3219
3286
|
max_capacity?: Maybe<Scalars["Int"]>;
|
|
3220
|
-
/** List of payment options that are supported */
|
|
3287
|
+
/** List of payment options that are supported. */
|
|
3221
3288
|
payment_options: Array<OICPPaymentOptions>;
|
|
3222
|
-
/** List of value added services that are supported */
|
|
3289
|
+
/** List of value added services that are supported. */
|
|
3223
3290
|
value_added_services: Array<OICPValueAddedServices>;
|
|
3224
|
-
/** List of additional info by locale */
|
|
3291
|
+
/** List of additional info by locale. */
|
|
3225
3292
|
additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;
|
|
3226
|
-
/** When the value is set to false this station does not support remote start and stop by Hubject */
|
|
3293
|
+
/** When the value is set to false this station does not support remote start and stop by Hubject. */
|
|
3227
3294
|
is_hubject_compatible: Scalars["Boolean"];
|
|
3228
|
-
/** Name of the charging point manufacturer */
|
|
3295
|
+
/** Name of the charging point manufacturer. */
|
|
3229
3296
|
hardware_manufacturer?: Maybe<Scalars["String"]>;
|
|
3230
3297
|
};
|
|
3231
3298
|
|
|
3232
3299
|
export type OICPEvseCustomPropertiesAdditionalInfo = {
|
|
3233
|
-
/** The language in which the additional info text is provided */
|
|
3300
|
+
/** The language in which the additional info text is provided. */
|
|
3234
3301
|
lang?: Maybe<Scalars["String"]>;
|
|
3235
|
-
/** Additional info text value */
|
|
3302
|
+
/** Additional info text value. */
|
|
3236
3303
|
value?: Maybe<Scalars["String"]>;
|
|
3237
3304
|
};
|
|
3238
3305
|
|
|
3239
|
-
/** List of payment options that are supported */
|
|
3306
|
+
/** List of payment options that are supported. */
|
|
3240
3307
|
export enum OICPPaymentOptions {
|
|
3241
3308
|
NO_PAYMENT = "no_payment",
|
|
3242
3309
|
DIRECT = "direct",
|
|
3243
3310
|
CONTRACT = "contract"
|
|
3244
3311
|
}
|
|
3245
3312
|
|
|
3246
|
-
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3313
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3247
3314
|
export type OICPStationCustomProperties = {
|
|
3248
|
-
/** Returns whether the station is a parking facility */
|
|
3315
|
+
/** Returns whether the station is a parking facility. */
|
|
3249
3316
|
parking_facility?: Maybe<Scalars["Boolean"]>;
|
|
3250
|
-
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1 */
|
|
3317
|
+
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1. */
|
|
3251
3318
|
parking_spot?: Maybe<Scalars["String"]>;
|
|
3252
|
-
/** Returns information on how the charging station provides metering law data */
|
|
3319
|
+
/** Returns information on how the charging station provides metering law data. */
|
|
3253
3320
|
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 */
|
|
3321
|
+
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future. */
|
|
3255
3322
|
clearinghouse_id?: Maybe<Scalars["String"]>;
|
|
3256
3323
|
};
|
|
3257
3324
|
|
|
3258
|
-
/** List of value added services that are supported */
|
|
3325
|
+
/** List of value added services that are supported. */
|
|
3259
3326
|
export enum OICPValueAddedServices {
|
|
3260
3327
|
RESERVATION = "reservation",
|
|
3261
3328
|
DYNAMIC_PRICING = "dynamic_pricing",
|
|
@@ -3276,49 +3343,52 @@ export type OdometerInput = {
|
|
|
3276
3343
|
source?: Maybe<TelemetryInputSource>;
|
|
3277
3344
|
};
|
|
3278
3345
|
|
|
3279
|
-
/**
|
|
3346
|
+
/** Operator data which extends OCPI BusinessDetails. */
|
|
3280
3347
|
export type Operator = {
|
|
3281
|
-
/** Unique operator ID */
|
|
3348
|
+
/** Unique operator ID. */
|
|
3282
3349
|
id?: Maybe<Scalars["ID"]>;
|
|
3283
|
-
/** External ID of an operator provided by the operator data source */
|
|
3350
|
+
/** External ID of an operator provided by the operator data source. */
|
|
3284
3351
|
external_id?: Maybe<Scalars["String"]>;
|
|
3285
|
-
/** Name of an operator */
|
|
3352
|
+
/** Name of an operator. This property is OCPI-compliant. */
|
|
3286
3353
|
name?: Maybe<Scalars["String"]>;
|
|
3287
|
-
/** Link to an operator’s website */
|
|
3354
|
+
/** Link to an operator’s website. This property is OCPI-compliant. */
|
|
3288
3355
|
website?: Maybe<Scalars["String"]>;
|
|
3289
|
-
/** Image link to an operator’s logo */
|
|
3356
|
+
/** Image link to an operator’s logo. This property is OCPI-compliant. */
|
|
3290
3357
|
logo?: Maybe<OCPIImage>;
|
|
3291
|
-
/**
|
|
3358
|
+
/**
|
|
3359
|
+
* ISO-3166 alpha-2 country code an operator is active in.
|
|
3360
|
+
* @deprecated In favor of countries.
|
|
3361
|
+
*/
|
|
3292
3362
|
country?: Maybe<Scalars["String"]>;
|
|
3293
3363
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3294
3364
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3295
|
-
/** Contact information */
|
|
3365
|
+
/** Contact information. */
|
|
3296
3366
|
contact?: Maybe<Contact>;
|
|
3297
|
-
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level */
|
|
3367
|
+
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level. */
|
|
3298
3368
|
ranking?: Maybe<Scalars["Int"]>;
|
|
3299
|
-
/** Flag which indicates if the operator is in the excluded list */
|
|
3369
|
+
/** Flag which indicates if the operator is in the excluded list. */
|
|
3300
3370
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3301
3371
|
};
|
|
3302
3372
|
|
|
3303
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3373
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3304
3374
|
export type OperatorListFilter = {
|
|
3305
3375
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3306
3376
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3307
|
-
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10 */
|
|
3377
|
+
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10. */
|
|
3308
3378
|
ranking?: Maybe<Array<Scalars["Int"]>>;
|
|
3309
|
-
/** Only retrieve operators that are in the excluded list */
|
|
3379
|
+
/** Only retrieve operators that are in the excluded list. */
|
|
3310
3380
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3311
3381
|
};
|
|
3312
3382
|
|
|
3313
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3383
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3314
3384
|
export type OperatorListQuery = {
|
|
3315
|
-
/** Unique operator ID */
|
|
3385
|
+
/** Unique operator ID. */
|
|
3316
3386
|
id?: Maybe<Scalars["ID"]>;
|
|
3317
|
-
/** External ID of an operator provided by an operator data source */
|
|
3387
|
+
/** External ID of an operator provided by an operator data source. */
|
|
3318
3388
|
external_id?: Maybe<Scalars["String"]>;
|
|
3319
|
-
/** Exact name */
|
|
3389
|
+
/** Exact name. */
|
|
3320
3390
|
name?: Maybe<Scalars["String"]>;
|
|
3321
|
-
/** Exact country code */
|
|
3391
|
+
/** Exact country code. */
|
|
3322
3392
|
country?: Maybe<Scalars["String"]>;
|
|
3323
3393
|
};
|
|
3324
3394
|
|
|
@@ -3332,9 +3402,9 @@ export type OutsideTempInput = {
|
|
|
3332
3402
|
};
|
|
3333
3403
|
|
|
3334
3404
|
export enum ParkingCost {
|
|
3335
|
-
/** Parking is free */
|
|
3405
|
+
/** Parking is free. */
|
|
3336
3406
|
FREE = "free",
|
|
3337
|
-
/** Parking includes a fee */
|
|
3407
|
+
/** Parking includes a fee. */
|
|
3338
3408
|
PAID = "paid"
|
|
3339
3409
|
}
|
|
3340
3410
|
|
|
@@ -3407,6 +3477,15 @@ export type PowerStats = {
|
|
|
3407
3477
|
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
3408
3478
|
};
|
|
3409
3479
|
|
|
3480
|
+
export enum PowerSupported {
|
|
3481
|
+
/** Power is supported. */
|
|
3482
|
+
AVAILABLE = "available",
|
|
3483
|
+
/** Power is not supported. */
|
|
3484
|
+
NOT_AVAILABLE = "not_available",
|
|
3485
|
+
/** Power is announced, but not yet supported. */
|
|
3486
|
+
ANNOUNCED = "announced"
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3410
3489
|
export enum PowerUnit {
|
|
3411
3490
|
/** Return the power in kilowatts. */
|
|
3412
3491
|
KILOWATT = "kilowatt",
|
|
@@ -3434,18 +3513,18 @@ export type Price = {
|
|
|
3434
3513
|
};
|
|
3435
3514
|
|
|
3436
3515
|
export type Pricing = {
|
|
3437
|
-
/** Unique ID of a price */
|
|
3516
|
+
/** Unique ID of a price. */
|
|
3438
3517
|
id?: Maybe<Scalars["String"]>;
|
|
3439
|
-
/** Price details */
|
|
3518
|
+
/** Price details. */
|
|
3440
3519
|
price_list?: Maybe<Array<Maybe<PricingList>>>;
|
|
3441
3520
|
};
|
|
3442
3521
|
|
|
3443
3522
|
export type PricingList = {
|
|
3444
|
-
/** (MSP) Mobility Service Provider */
|
|
3523
|
+
/** (MSP) Mobility Service Provider. */
|
|
3445
3524
|
partner?: Maybe<Scalars["String"]>;
|
|
3446
|
-
/** Product details */
|
|
3525
|
+
/** Product details. */
|
|
3447
3526
|
product?: Maybe<PricingListProduct>;
|
|
3448
|
-
/** Price product elements */
|
|
3527
|
+
/** Price product elements. */
|
|
3449
3528
|
elements?: Maybe<Array<Maybe<PricingListElement>>>;
|
|
3450
3529
|
};
|
|
3451
3530
|
|
|
@@ -3454,31 +3533,31 @@ export type PricingListElement = {
|
|
|
3454
3533
|
type?: Maybe<PricingListElementType>;
|
|
3455
3534
|
/** Price of the element type without VAT. */
|
|
3456
3535
|
price_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3457
|
-
/** VAT percentage to apply */
|
|
3536
|
+
/** VAT percentage to apply. */
|
|
3458
3537
|
vat?: Maybe<Scalars["Float"]>;
|
|
3459
3538
|
};
|
|
3460
3539
|
|
|
3461
3540
|
export enum PricingListElementType {
|
|
3462
|
-
/** Price per kWh */
|
|
3541
|
+
/** Price per kWh. */
|
|
3463
3542
|
ENERGY = "ENERGY",
|
|
3464
|
-
/** Starting price, fixed fee per charge session */
|
|
3543
|
+
/** Starting price, fixed fee per charge session. */
|
|
3465
3544
|
FLAT = "FLAT",
|
|
3466
|
-
/** Fixed price per hour */
|
|
3545
|
+
/** Fixed price per hour. */
|
|
3467
3546
|
TIME = "TIME",
|
|
3468
|
-
/** Parking price per hour */
|
|
3547
|
+
/** Parking price per hour. */
|
|
3469
3548
|
PARKING_TIME = "PARKING_TIME"
|
|
3470
3549
|
}
|
|
3471
3550
|
|
|
3472
3551
|
export type PricingListProduct = {
|
|
3473
|
-
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price */
|
|
3552
|
+
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price. */
|
|
3474
3553
|
name?: Maybe<Scalars["String"]>;
|
|
3475
|
-
/** Description of the product */
|
|
3554
|
+
/** Description of the product. */
|
|
3476
3555
|
description?: Maybe<Scalars["String"]>;
|
|
3477
|
-
/** Subscription type */
|
|
3556
|
+
/** Subscription type. */
|
|
3478
3557
|
subscription_type?: Maybe<Scalars["String"]>;
|
|
3479
|
-
/** Subscription fee without VAT */
|
|
3558
|
+
/** Subscription fee without VAT. */
|
|
3480
3559
|
subscription_fee_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3481
|
-
/** Currency */
|
|
3560
|
+
/** Currency. */
|
|
3482
3561
|
currency?: Maybe<Scalars["String"]>;
|
|
3483
3562
|
};
|
|
3484
3563
|
|
|
@@ -3515,17 +3594,17 @@ export type Query = {
|
|
|
3515
3594
|
userReviewList?: Maybe<Array<Review>>;
|
|
3516
3595
|
/** Get a route by ID */
|
|
3517
3596
|
route?: Maybe<Route>;
|
|
3518
|
-
/** [BETA]
|
|
3597
|
+
/** [BETA] Emissions profile for route. */
|
|
3519
3598
|
routeEmissions: RouteEmissions;
|
|
3520
3599
|
/** Retrieve information about a route path segment */
|
|
3521
3600
|
routePath?: Maybe<RoutePath>;
|
|
3522
3601
|
/** Get the station statistics */
|
|
3523
3602
|
stationStats?: Maybe<StationStats>;
|
|
3524
|
-
/** Get information about a station by its ID */
|
|
3603
|
+
/** Get information about a station by its ID. */
|
|
3525
3604
|
station?: Maybe<Station>;
|
|
3526
|
-
/** Get a full list of stations */
|
|
3605
|
+
/** Get a full list of stations. */
|
|
3527
3606
|
stationList?: Maybe<Array<Maybe<Station>>>;
|
|
3528
|
-
/** Search for stations around a GeoJSON point with a specific distance in meters */
|
|
3607
|
+
/** Search for stations around a GeoJSON point with a specific distance in meters. */
|
|
3529
3608
|
stationAround?: Maybe<Array<Maybe<Station>>>;
|
|
3530
3609
|
/** Get information about a tariff by the tariff ID */
|
|
3531
3610
|
tariff?: Maybe<OCPITariff>;
|
|
@@ -3892,109 +3971,109 @@ export type RequestUser = {
|
|
|
3892
3971
|
id?: Maybe<Scalars["ID"]>;
|
|
3893
3972
|
};
|
|
3894
3973
|
|
|
3895
|
-
/**
|
|
3974
|
+
/** Review model. */
|
|
3896
3975
|
export type Review = {
|
|
3897
|
-
/** ID of a review */
|
|
3976
|
+
/** ID of a review. */
|
|
3898
3977
|
id: Scalars["ID"];
|
|
3899
|
-
/** Station for which a review was provided */
|
|
3978
|
+
/** Station for which a review was provided. */
|
|
3900
3979
|
station?: Maybe<Station>;
|
|
3901
|
-
/** User who added a review. If a review was added by an anonymous user, this will be null */
|
|
3980
|
+
/** User who added a review. If a review was added by an anonymous user, this will be null. */
|
|
3902
3981
|
user?: Maybe<ReviewUser>;
|
|
3903
|
-
/** Rating of a review */
|
|
3982
|
+
/** Rating of a review. */
|
|
3904
3983
|
rating?: Maybe<Scalars["Int"]>;
|
|
3905
|
-
/** Message of a review */
|
|
3984
|
+
/** Message of a review. */
|
|
3906
3985
|
message?: Maybe<Scalars["String"]>;
|
|
3907
|
-
/** Locale of a message */
|
|
3986
|
+
/** Locale of a message. */
|
|
3908
3987
|
locale?: Maybe<Scalars["String"]>;
|
|
3909
|
-
/** Vehicle that was provided/selected by a user */
|
|
3988
|
+
/** Vehicle that was provided/selected by a user. */
|
|
3910
3989
|
ev?: Maybe<Car>;
|
|
3911
|
-
/** Plug type that was provided/selected by a user */
|
|
3990
|
+
/** Plug type that was provided/selected by a user. */
|
|
3912
3991
|
plugType?: Maybe<ConnectorType>;
|
|
3913
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3992
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3914
3993
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3915
|
-
/** Boolean tags for a station review */
|
|
3994
|
+
/** Boolean tags for a station review. */
|
|
3916
3995
|
tags?: Maybe<ReviewTags>;
|
|
3917
|
-
/** Date and time when a review was created */
|
|
3996
|
+
/** Date and time when a review was created. */
|
|
3918
3997
|
createdAt?: Maybe<Scalars["String"]>;
|
|
3919
|
-
/** Date and time when a review was updated */
|
|
3998
|
+
/** Date and time when a review was updated. */
|
|
3920
3999
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
3921
4000
|
};
|
|
3922
4001
|
|
|
3923
|
-
/** Form input to add a new review */
|
|
4002
|
+
/** Form input to add a new review. */
|
|
3924
4003
|
export type ReviewAdd = {
|
|
3925
|
-
/** Station ID for which a review is provided */
|
|
4004
|
+
/** Station ID for which a review is provided. */
|
|
3926
4005
|
stationId: Scalars["String"];
|
|
3927
|
-
/** Rating of a review */
|
|
4006
|
+
/** Rating of a review. */
|
|
3928
4007
|
rating: Scalars["Int"];
|
|
3929
|
-
/** Review message */
|
|
4008
|
+
/** Review message. */
|
|
3930
4009
|
message?: Maybe<Scalars["String"]>;
|
|
3931
|
-
/** Locale of a message */
|
|
4010
|
+
/** Locale of a message. */
|
|
3932
4011
|
locale?: Maybe<Scalars["String"]>;
|
|
3933
|
-
/** ID of the vehicle that was provided/selected by a user */
|
|
4012
|
+
/** ID of the vehicle that was provided/selected by a user. */
|
|
3934
4013
|
ev?: Maybe<Scalars["String"]>;
|
|
3935
|
-
/** Plug type that was provided/selected by a user */
|
|
4014
|
+
/** Plug type that was provided/selected by a user. */
|
|
3936
4015
|
plugType?: Maybe<ConnectorType>;
|
|
3937
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
4016
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3938
4017
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3939
|
-
/** Boolean tags for a station review */
|
|
4018
|
+
/** Boolean tags for a station review. */
|
|
3940
4019
|
tags?: Maybe<ReviewTagsInput>;
|
|
3941
4020
|
};
|
|
3942
4021
|
|
|
3943
|
-
/** Form input for edit an existing review */
|
|
4022
|
+
/** Form input for edit an existing review. */
|
|
3944
4023
|
export type ReviewEdit = {
|
|
3945
|
-
/** Rating of a review */
|
|
4024
|
+
/** Rating of a review. */
|
|
3946
4025
|
rating: Scalars["Int"];
|
|
3947
|
-
/** Review message */
|
|
4026
|
+
/** Review message. */
|
|
3948
4027
|
message?: Maybe<Scalars["String"]>;
|
|
3949
|
-
/** Locale of a message */
|
|
4028
|
+
/** Locale of a message. */
|
|
3950
4029
|
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 */
|
|
4030
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3952
4031
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3953
|
-
/** Boolean tags for a station review */
|
|
4032
|
+
/** Boolean tags for a station review. */
|
|
3954
4033
|
tags?: Maybe<ReviewTagsInput>;
|
|
3955
4034
|
};
|
|
3956
4035
|
|
|
3957
|
-
/** Statistical information for reviews of a station */
|
|
4036
|
+
/** Statistical information for reviews of a station. */
|
|
3958
4037
|
export type ReviewStats = {
|
|
3959
|
-
/** Average of all reviews */
|
|
4038
|
+
/** Average of all reviews. */
|
|
3960
4039
|
rating?: Maybe<Scalars["Float"]>;
|
|
3961
|
-
/** 'Total number of reviews */
|
|
4040
|
+
/** 'Total number of reviews. */
|
|
3962
4041
|
count?: Maybe<Scalars["Int"]>;
|
|
3963
4042
|
};
|
|
3964
4043
|
|
|
3965
|
-
/** Boolean tags for the station review */
|
|
4044
|
+
/** Boolean tags for the station review. */
|
|
3966
4045
|
export type ReviewTags = {
|
|
3967
|
-
/** Flag which indicates if the station was working when the review was added */
|
|
4046
|
+
/** Flag which indicates if the station was working when the review was added. */
|
|
3968
4047
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3969
|
-
/** Flag which indicates if the user recommended the station when the review was added */
|
|
4048
|
+
/** Flag which indicates if the user recommended the station when the review was added. */
|
|
3970
4049
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3971
4050
|
};
|
|
3972
4051
|
|
|
3973
|
-
/** Boolean tags for a station review */
|
|
4052
|
+
/** Boolean tags for a station review. */
|
|
3974
4053
|
export type ReviewTagsInput = {
|
|
3975
|
-
/** Flag which indicates if a station was working when the review was added */
|
|
4054
|
+
/** Flag which indicates if a station was working when the review was added. */
|
|
3976
4055
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3977
|
-
/** Flag which indicates if a user recommended a station when the review was added */
|
|
4056
|
+
/** Flag which indicates if a user recommended a station when the review was added. */
|
|
3978
4057
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3979
4058
|
};
|
|
3980
4059
|
|
|
3981
|
-
/** Special format for the user of a review */
|
|
4060
|
+
/** Special format for the user of a review. */
|
|
3982
4061
|
export type ReviewUser = {
|
|
3983
|
-
/** User full name. If a review was added by an anonymous user, this will be null */
|
|
4062
|
+
/** User full name. If a review was added by an anonymous user, this will be null. */
|
|
3984
4063
|
name?: Maybe<Scalars["String"]>;
|
|
3985
4064
|
/**
|
|
3986
|
-
* User ID
|
|
4065
|
+
* User ID.
|
|
3987
4066
|
* @deprecated Not sent back anymore, will be null
|
|
3988
4067
|
*/
|
|
3989
4068
|
id?: Maybe<Scalars["ID"]>;
|
|
3990
4069
|
/**
|
|
3991
|
-
* First name
|
|
3992
|
-
* @deprecated
|
|
4070
|
+
* First name.
|
|
4071
|
+
* @deprecated In favor of name.
|
|
3993
4072
|
*/
|
|
3994
4073
|
firstName?: Maybe<Scalars["String"]>;
|
|
3995
4074
|
/**
|
|
3996
|
-
* Last name
|
|
3997
|
-
* @deprecated
|
|
4075
|
+
* Last name.
|
|
4076
|
+
* @deprecated In favor of name
|
|
3998
4077
|
*/
|
|
3999
4078
|
lastName?: Maybe<Scalars["String"]>;
|
|
4000
4079
|
};
|
|
@@ -4230,7 +4309,7 @@ export type RouteEmissions = {
|
|
|
4230
4309
|
route_alternative_id: Scalars["ID"];
|
|
4231
4310
|
/** Emissions profile for the vehicle used in route. */
|
|
4232
4311
|
route_vehicle: RouteVehicleEmissions;
|
|
4233
|
-
/** Emissions profile for
|
|
4312
|
+
/** Emissions profile for an equivalent internal combustion engine vehicle. */
|
|
4234
4313
|
internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;
|
|
4235
4314
|
};
|
|
4236
4315
|
|
|
@@ -4363,7 +4442,7 @@ export enum RouteInstructionSign {
|
|
|
4363
4442
|
}
|
|
4364
4443
|
|
|
4365
4444
|
export type RouteInternalCombustionVehicleEmissions = {
|
|
4366
|
-
/** Total emissions. */
|
|
4445
|
+
/** Total co2e emissions. */
|
|
4367
4446
|
total: Scalars["Float"];
|
|
4368
4447
|
/** Embedded emissions. */
|
|
4369
4448
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4380,7 +4459,7 @@ export type RouteInternalCombustionVehicleEmissionstotalArgs = {
|
|
|
4380
4459
|
};
|
|
4381
4460
|
|
|
4382
4461
|
export type RouteInternalCombustionVehicleLegEmissions = {
|
|
4383
|
-
/** Total emissions for the leg. */
|
|
4462
|
+
/** Total co2e emissions for the leg. */
|
|
4384
4463
|
total: Scalars["Float"];
|
|
4385
4464
|
/** Embedded emissions for the leg. */
|
|
4386
4465
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -5041,7 +5120,7 @@ export enum RouteTagType {
|
|
|
5041
5120
|
}
|
|
5042
5121
|
|
|
5043
5122
|
export type RouteVehicleEmissions = {
|
|
5044
|
-
/** Total emissions. */
|
|
5123
|
+
/** Total co2e emissions. */
|
|
5045
5124
|
total: Scalars["Float"];
|
|
5046
5125
|
/** Embedded emissions. */
|
|
5047
5126
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -5058,7 +5137,7 @@ export type RouteVehicleEmissionstotalArgs = {
|
|
|
5058
5137
|
};
|
|
5059
5138
|
|
|
5060
5139
|
export type RouteVehicleLegEmissions = {
|
|
5061
|
-
/** Total emissions for the leg. */
|
|
5140
|
+
/** Total co2e emissions for the leg. */
|
|
5062
5141
|
total: Scalars["Float"];
|
|
5063
5142
|
/** Embedded emissions for the leg. */
|
|
5064
5143
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -5136,207 +5215,347 @@ export enum StateOfChargeUnit {
|
|
|
5136
5215
|
PERCENTAGE = "percentage"
|
|
5137
5216
|
}
|
|
5138
5217
|
|
|
5139
|
-
/** Station data which extends OCPI Location */
|
|
5218
|
+
/** Station data which extends OCPI Location. */
|
|
5140
5219
|
export type Station = {
|
|
5141
|
-
/**
|
|
5142
|
-
review?: Maybe<ReviewStats>;
|
|
5143
|
-
/** Unique ID of a station */
|
|
5220
|
+
/** Unique ID of a station. This property is OCPI-compliant. */
|
|
5144
5221
|
id: Scalars["ID"];
|
|
5145
|
-
/** ISO-3166 alpha-2 country code of a station */
|
|
5222
|
+
/** ISO-3166 alpha-2 country code of a station. This property is OCPI-compliant. */
|
|
5146
5223
|
country_code?: Maybe<Scalars["String"]>;
|
|
5147
|
-
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard) */
|
|
5224
|
+
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
5148
5225
|
party_id?: Maybe<Scalars["String"]>;
|
|
5149
5226
|
/**
|
|
5150
5227
|
* Defines if a location may be published on a website or app etc.
|
|
5151
5228
|
* 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
|
|
5229
|
+
* 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
5230
|
*/
|
|
5154
5231
|
publish?: Maybe<Scalars["Boolean"]>;
|
|
5155
|
-
/** Name of a charging station */
|
|
5232
|
+
/** Name of a charging station. This property is OCPI-compliant. */
|
|
5156
5233
|
name?: Maybe<Scalars["String"]>;
|
|
5157
|
-
/** Street/block name and house number if available */
|
|
5234
|
+
/** Street/block name and house number if available. This property is OCPI-compliant. */
|
|
5158
5235
|
address?: Maybe<Scalars["String"]>;
|
|
5159
|
-
/** City or town */
|
|
5236
|
+
/** City or town. This property is OCPI-compliant. */
|
|
5160
5237
|
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. */
|
|
5238
|
+
/** 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
5239
|
postal_code?: Maybe<Scalars["String"]>;
|
|
5163
|
-
/** State or province of a location, only to be used when relevant */
|
|
5240
|
+
/** State or province of a location, only to be used when relevant. This property is OCPI-compliant. */
|
|
5164
5241
|
state?: Maybe<Scalars["String"]>;
|
|
5165
|
-
/** ISO 3166-1 alpha-3 code for the country of this station */
|
|
5242
|
+
/** ISO 3166-1 alpha-3 code for the country of this station. This property is OCPI-compliant. */
|
|
5166
5243
|
country?: Maybe<Scalars["String"]>;
|
|
5167
|
-
/** Coordinates of a location */
|
|
5244
|
+
/** Coordinates of a location. This property is OCPI-compliant. */
|
|
5168
5245
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
5169
|
-
/** Geographical location of related points relevant to a user */
|
|
5246
|
+
/** Geographical location of related points relevant to a user. This property is OCPI-compliant. */
|
|
5170
5247
|
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
5171
|
-
/** Type of parking at a charge point location */
|
|
5248
|
+
/** Type of parking at a charge point location. This property is OCPI-compliant. */
|
|
5172
5249
|
parking_type?: Maybe<OCPIParkingType>;
|
|
5173
|
-
/** EVSEs that belong to a station */
|
|
5250
|
+
/** EVSEs that belong to a station. This property is OCPI-compliant. */
|
|
5174
5251
|
evses?: Maybe<Array<Maybe<EVSE>>>;
|
|
5175
|
-
/** Human-readable directions on how to reach a station */
|
|
5252
|
+
/** Human-readable directions on how to reach a station. This property is OCPI-compliant. */
|
|
5176
5253
|
directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
5177
|
-
/** Information about an operator */
|
|
5254
|
+
/** Information about an operator. This property is OCPI-compliant. */
|
|
5178
5255
|
operator?: Maybe<Operator>;
|
|
5179
|
-
/** Information about a suboperator if applicable */
|
|
5256
|
+
/** Information about a suboperator if applicable. This property is OCPI-compliant. */
|
|
5180
5257
|
suboperator?: Maybe<Operator>;
|
|
5181
|
-
/** Information about an owner if available */
|
|
5258
|
+
/** Information about an owner if available. This property is OCPI-compliant. */
|
|
5182
5259
|
owner?: Maybe<Operator>;
|
|
5183
|
-
/** Facilities a charging station belongs to */
|
|
5260
|
+
/** Facilities a charging station belongs to. This property is OCPI-compliant. */
|
|
5184
5261
|
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) */
|
|
5262
|
+
/** 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
5263
|
time_zone?: Maybe<Scalars["String"]>;
|
|
5187
|
-
/** Times when an EVSEs at a location can be accessed for charging */
|
|
5264
|
+
/** Times when an EVSEs at a location can be accessed for charging. This property is OCPI-compliant. */
|
|
5188
5265
|
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 */
|
|
5266
|
+
/** 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
5267
|
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
5191
|
-
/** Links to images related to a location such as photos or logos */
|
|
5268
|
+
/** Links to images related to a location such as photos or logos. This property is OCPI-compliant. */
|
|
5192
5269
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
5193
|
-
/** Details of the energy supplied at a location */
|
|
5270
|
+
/** Details of the energy supplied at a location. This property is OCPI-compliant. */
|
|
5194
5271
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
5195
|
-
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created) */
|
|
5272
|
+
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). This property is OCPI-compliant. */
|
|
5196
5273
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
5197
|
-
/** ID provided by a station data source */
|
|
5274
|
+
/** ID provided by a station data source. */
|
|
5198
5275
|
external_id?: Maybe<Scalars["String"]>;
|
|
5199
|
-
/** GeoJSON location of a charging station */
|
|
5276
|
+
/** GeoJSON location of a charging station. */
|
|
5200
5277
|
location?: Maybe<Point>;
|
|
5201
|
-
/** Elevation (altitude) level */
|
|
5278
|
+
/** Elevation (altitude) level. */
|
|
5202
5279
|
elevation?: Maybe<Scalars["Int"]>;
|
|
5203
|
-
/** Groups of EVSEs by power and type */
|
|
5280
|
+
/** Groups of EVSEs by power and type. */
|
|
5204
5281
|
chargers?: Maybe<Array<Maybe<Charger>>>;
|
|
5205
|
-
/** Amenities located at this location */
|
|
5282
|
+
/** Amenities located at this location. */
|
|
5206
5283
|
amenities?: Maybe<Scalars["JSON"]>;
|
|
5207
|
-
/** Enriched information about the physical address of a station */
|
|
5284
|
+
/** Enriched information about the physical address of a station. */
|
|
5208
5285
|
physical_address?: Maybe<Address>;
|
|
5209
|
-
/**
|
|
5286
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
5287
|
+
heavy_vehicles_properties?: Maybe<StationHeavyVehiclesProperties>;
|
|
5288
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5289
|
+
heavy_vehicles_restrictions?: Maybe<StationHeavyVehiclesRestrictions>;
|
|
5290
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5291
|
+
vehicle_restrictions?: Maybe<StationVehicleRestrictions>;
|
|
5292
|
+
/** Type of location where the charge point is located. For example, shop. */
|
|
5293
|
+
location_category?: Maybe<Scalars["String"]>;
|
|
5294
|
+
/** Coordinates for the location's entrances in decimal degrees. If available, there can be more than one entrances to the location. */
|
|
5295
|
+
entrance_for_navigation?: Maybe<Array<OCPIAdditionalGeoLocation>>;
|
|
5296
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
5210
5297
|
properties?: Maybe<Scalars["JSON"]>;
|
|
5211
|
-
/** A flag that indicates if a station has real-time information about the availability of its connectors */
|
|
5298
|
+
/** A flag that indicates if a station has real-time information about the availability of its connectors. */
|
|
5212
5299
|
realtime?: Maybe<Scalars["Boolean"]>;
|
|
5213
|
-
/**
|
|
5300
|
+
/**
|
|
5301
|
+
* A flag that indicates if a station is on private property.
|
|
5302
|
+
* @deprecated In favor of access_type.
|
|
5303
|
+
*/
|
|
5214
5304
|
private?: Maybe<Scalars["Boolean"]>;
|
|
5215
|
-
/** Connectors grouped by power */
|
|
5305
|
+
/** Connectors grouped by power. */
|
|
5216
5306
|
power?: Maybe<Scalars["JSON"]>;
|
|
5217
5307
|
/**
|
|
5218
|
-
* Station availability
|
|
5219
|
-
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy
|
|
5308
|
+
* Station availability.
|
|
5309
|
+
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy.
|
|
5220
5310
|
*/
|
|
5221
5311
|
predicted_availability?: Maybe<Array<Maybe<StationPredictedAvailability>>>;
|
|
5222
|
-
/**
|
|
5223
|
-
* Predicted station occupancy
|
|
5224
|
-
* @deprecated In favor of custom_properties.predicted_occupancy
|
|
5225
|
-
*/
|
|
5312
|
+
/** Predicted station occupancy. */
|
|
5226
5313
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
5227
|
-
/** Charging speed for a station */
|
|
5314
|
+
/** Charging speed for a station. */
|
|
5228
5315
|
speed?: Maybe<StationSpeedType>;
|
|
5229
|
-
/** Global status for a station */
|
|
5316
|
+
/** Global status for a station. */
|
|
5230
5317
|
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 */
|
|
5318
|
+
/** 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
5319
|
custom_properties?: Maybe<StationCustomProperties>;
|
|
5320
|
+
/** Review of a station. */
|
|
5321
|
+
review?: Maybe<ReviewStats>;
|
|
5322
|
+
/** List of eMSP cards accepted at a charging station. */
|
|
5323
|
+
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
5324
|
+
/** Phone number for assistance at a charging station. */
|
|
5325
|
+
support_phone_number?: Maybe<Scalars["String"]>;
|
|
5326
|
+
/** Charging behavior of a station. */
|
|
5327
|
+
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
5328
|
+
/** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values. */
|
|
5329
|
+
reliability_score?: Maybe<Scalars["Int"]>;
|
|
5330
|
+
/** Indicates the authentication and payment methods. */
|
|
5331
|
+
adhoc_authorisation_payment_method?: Maybe<
|
|
5332
|
+
Array<StationAdhocAuthorisationPaymentMethod>
|
|
5333
|
+
>;
|
|
5334
|
+
/** Type of access to the charging station. */
|
|
5335
|
+
access_type?: Maybe<AccessType>;
|
|
5233
5336
|
};
|
|
5234
5337
|
|
|
5235
|
-
|
|
5338
|
+
export enum StationAdhocAuthorisationPaymentMethod {
|
|
5339
|
+
/** Authentication by car through Plug and Charge. */
|
|
5340
|
+
AUTH_BY_CAR_PLUG_AND_CHARGE = "AUTH_BY_CAR_PLUG_AND_CHARGE",
|
|
5341
|
+
/** Apple Pay. */
|
|
5342
|
+
ONLINE_APPLE_PAY = "ONLINE_APPLE_PAY",
|
|
5343
|
+
/** Terminal in app. */
|
|
5344
|
+
TERMINAL_IN_APP = "TERMINAL_IN_APP",
|
|
5345
|
+
/** PayPal. */
|
|
5346
|
+
ONLINE_PAYPAL = "ONLINE_PAYPAL",
|
|
5347
|
+
/** Service Provider RFID Card. */
|
|
5348
|
+
SERVICE_PROVIDER_RFID_CARD = "SERVICE_PROVIDER_RFID_CARD",
|
|
5349
|
+
/** Terminal QR Code. */
|
|
5350
|
+
TERMINAL_QR_CODE = "TERMINAL_QR_CODE",
|
|
5351
|
+
/** Terminal Credit Card. */
|
|
5352
|
+
TERMINAL_CREDIT_CARD = "TERMINAL_CREDIT_CARD",
|
|
5353
|
+
/** Terminal Debit Card. */
|
|
5354
|
+
TERMINAL_DEBIT_CARD = "TERMINAL_DEBIT_CARD",
|
|
5355
|
+
/** Terminal SMS. */
|
|
5356
|
+
TERMINAL_SMS = "TERMINAL_SMS",
|
|
5357
|
+
/** Credit Card. */
|
|
5358
|
+
ONLINE_CREDIT_CARD = "ONLINE_CREDIT_CARD",
|
|
5359
|
+
/** Other. */
|
|
5360
|
+
OTHER_OTHER = "OTHER_OTHER",
|
|
5361
|
+
/** Terminal Contactless. */
|
|
5362
|
+
TERMINAL_CONTACTLESS = "TERMINAL_CONTACTLESS",
|
|
5363
|
+
/** Google Pay. */
|
|
5364
|
+
ONLINE_GOOGLE_PAY = "ONLINE_GOOGLE_PAY",
|
|
5365
|
+
/** Bank Payment. */
|
|
5366
|
+
ONLINE_BANK_PAYMENT = "ONLINE_BANK_PAYMENT",
|
|
5367
|
+
/** Authentication by car through Auto Charge. */
|
|
5368
|
+
AUTH_BY_CAR_AUTOCHARGE = "AUTH_BY_CAR_AUTOCHARGE"
|
|
5369
|
+
}
|
|
5370
|
+
|
|
5371
|
+
/** Filter which can be applied to retrieve the station around list action. */
|
|
5236
5372
|
export type StationAroundFilter = {
|
|
5237
|
-
/**
|
|
5373
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
5238
5374
|
location?: Maybe<PointInput>;
|
|
5239
|
-
/** Distance, in meters, to search around */
|
|
5375
|
+
/** Distance, in meters, to search around. */
|
|
5240
5376
|
distance?: Maybe<Scalars["Int"]>;
|
|
5241
|
-
/** Powers in kWh */
|
|
5377
|
+
/** Powers in kWh. */
|
|
5242
5378
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5243
|
-
/** Amenities available near a station */
|
|
5379
|
+
/** Amenities available near a station. */
|
|
5244
5380
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
5245
|
-
/** Station speed */
|
|
5381
|
+
/** Station speed. */
|
|
5246
5382
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
5247
|
-
/** Station socket or plug standards */
|
|
5383
|
+
/** Station socket or plug standards. */
|
|
5248
5384
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
5249
|
-
/** Flag that allows you to return only available stations */
|
|
5385
|
+
/** Flag that allows you to return only available stations. */
|
|
5250
5386
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
5251
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
5387
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
5252
5388
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5253
5389
|
};
|
|
5254
5390
|
|
|
5255
|
-
/** Deprecated: Replaced by filter & search params */
|
|
5391
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
5256
5392
|
export type StationAroundQuery = {
|
|
5257
|
-
/**
|
|
5393
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
5258
5394
|
location?: Maybe<PointInput>;
|
|
5259
|
-
/** Distance, in meters, to search around */
|
|
5395
|
+
/** Distance, in meters, to search around. */
|
|
5260
5396
|
distance?: Maybe<Scalars["Int"]>;
|
|
5261
|
-
/** Power in kWh */
|
|
5397
|
+
/** Power in kWh. */
|
|
5262
5398
|
power?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5263
|
-
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park */
|
|
5399
|
+
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park. */
|
|
5264
5400
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
5265
5401
|
};
|
|
5266
5402
|
|
|
5267
5403
|
export type StationCustomProperties = {
|
|
5268
|
-
/**
|
|
5404
|
+
/**
|
|
5405
|
+
* List of eMSP cards accepted at a charging station.
|
|
5406
|
+
* @deprecated In favor of station.roaming.
|
|
5407
|
+
*/
|
|
5269
5408
|
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
5270
|
-
/**
|
|
5409
|
+
/**
|
|
5410
|
+
* Phone number for assistance at a charging station.
|
|
5411
|
+
* @deprecated In favor of station.support_phone_number.
|
|
5412
|
+
*/
|
|
5271
5413
|
support_phone_number?: Maybe<Scalars["String"]>;
|
|
5272
|
-
/**
|
|
5414
|
+
/**
|
|
5415
|
+
* Charging behavior of a station.
|
|
5416
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
5417
|
+
*/
|
|
5273
5418
|
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
5274
|
-
/**
|
|
5419
|
+
/**
|
|
5420
|
+
* Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.
|
|
5421
|
+
* @deprecated In favor of station.reliability_score.
|
|
5422
|
+
*/
|
|
5275
5423
|
reliability_score?: Maybe<Scalars["Int"]>;
|
|
5276
|
-
/**
|
|
5424
|
+
/**
|
|
5425
|
+
* List of available ad hoc payment methods.
|
|
5426
|
+
* @deprecated In favor of station.adhoc_authorisation_payment_method.
|
|
5427
|
+
*/
|
|
5277
5428
|
adhoc_authorisation_method?: Maybe<Array<Maybe<AdhocAuthorisationMethod>>>;
|
|
5278
|
-
/**
|
|
5429
|
+
/**
|
|
5430
|
+
* Predicted station occupancy.
|
|
5431
|
+
* @deprecated In favor of station.predicted_occupancy.
|
|
5432
|
+
*/
|
|
5279
5433
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
5280
|
-
/**
|
|
5434
|
+
/**
|
|
5435
|
+
* Type of access to the charging station.
|
|
5436
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
5437
|
+
*/
|
|
5281
5438
|
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 */
|
|
5439
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
5283
5440
|
oicp?: Maybe<OICPStationCustomProperties>;
|
|
5284
5441
|
};
|
|
5285
5442
|
|
|
5286
|
-
/**
|
|
5443
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
5444
|
+
export type StationHeavyVehiclesProperties = {
|
|
5445
|
+
/** Indicates whether the location was constructed mainly for the purpose of heavy vehicles like trucks. */
|
|
5446
|
+
is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
5447
|
+
/** List of facilities in the location. */
|
|
5448
|
+
facilities?: Maybe<Array<HeavyVehiclesFacility>>;
|
|
5449
|
+
/** Indicates whether the location is suitable for trucks with trailers. */
|
|
5450
|
+
is_trailer_accessible?: Maybe<Scalars["Boolean"]>;
|
|
5451
|
+
/** Indicates whether the location is drive-through. */
|
|
5452
|
+
is_drive_through?: Maybe<Scalars["Boolean"]>;
|
|
5453
|
+
/** Indicates whether the location allows charging of heavy vehicles transporting dangerous goods. */
|
|
5454
|
+
allows_dangerous_goods?: Maybe<Scalars["Boolean"]>;
|
|
5455
|
+
/** Indicates whether the location is suitable for rigid heavy vehicles. */
|
|
5456
|
+
allows_rigid_vehicles?: Maybe<Scalars["Boolean"]>;
|
|
5457
|
+
/** Indicates whether the location allows overnight charging of heavy vehicles. */
|
|
5458
|
+
allows_overnight_parking?: Maybe<Scalars["Boolean"]>;
|
|
5459
|
+
};
|
|
5460
|
+
|
|
5461
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5462
|
+
export type StationHeavyVehiclesRestrictions = {
|
|
5463
|
+
/** Maximum height of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5464
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5465
|
+
/** Maximum width of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5466
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5467
|
+
/** Maximum length of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5468
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5469
|
+
/** Maximum mass of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5470
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5471
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
5472
|
+
allowed_types_EU?: Maybe<Array<HeavyVehiclesEUType>>;
|
|
5473
|
+
};
|
|
5474
|
+
|
|
5475
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5476
|
+
export type StationHeavyVehiclesRestrictionsheightArgs = {
|
|
5477
|
+
unit?: Maybe<DimensionUnit>;
|
|
5478
|
+
};
|
|
5479
|
+
|
|
5480
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5481
|
+
export type StationHeavyVehiclesRestrictionswidthArgs = {
|
|
5482
|
+
unit?: Maybe<DimensionUnit>;
|
|
5483
|
+
};
|
|
5484
|
+
|
|
5485
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5486
|
+
export type StationHeavyVehiclesRestrictionslengthArgs = {
|
|
5487
|
+
unit?: Maybe<DimensionUnit>;
|
|
5488
|
+
};
|
|
5489
|
+
|
|
5490
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5491
|
+
export type StationHeavyVehiclesRestrictionsmassArgs = {
|
|
5492
|
+
unit?: Maybe<WeightUnit>;
|
|
5493
|
+
};
|
|
5494
|
+
|
|
5495
|
+
/** Filter which can be applied to retrieve the station list action. */
|
|
5287
5496
|
export type StationListFilter = {
|
|
5288
|
-
/** Powers in kWh */
|
|
5497
|
+
/** Powers in kWh. */
|
|
5289
5498
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
5290
|
-
/** Amenities available near a station */
|
|
5499
|
+
/** Amenities available near a station. */
|
|
5291
5500
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
5292
|
-
/** Station speed */
|
|
5501
|
+
/** Station speed. */
|
|
5293
5502
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
5294
|
-
/** Station socket or plug standards */
|
|
5503
|
+
/** Station socket or plug standards. */
|
|
5295
5504
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
5296
|
-
/** Flag that allows you to return only available stations */
|
|
5505
|
+
/** Flag that allows you to return only available stations. */
|
|
5297
5506
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
5298
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
5507
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
5299
5508
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
5300
5509
|
};
|
|
5301
5510
|
|
|
5302
|
-
/** Deprecated: Replaced by filter & search params */
|
|
5511
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
5303
5512
|
export type StationListQuery = {
|
|
5304
|
-
/** ID of the station */
|
|
5513
|
+
/** ID of the station. */
|
|
5305
5514
|
id?: Maybe<Scalars["ID"]>;
|
|
5306
|
-
/** External ID of the station provided by the station data source */
|
|
5515
|
+
/** External ID of the station provided by the station data source. */
|
|
5307
5516
|
external_id?: Maybe<Scalars["String"]>;
|
|
5308
|
-
/** Exact name */
|
|
5517
|
+
/** Exact name. */
|
|
5309
5518
|
name?: Maybe<Scalars["String"]>;
|
|
5310
5519
|
};
|
|
5311
5520
|
|
|
5312
|
-
/** Station availability for each weekday and hour */
|
|
5521
|
+
/** Station availability for each weekday and hour. */
|
|
5313
5522
|
export type StationPredictedAvailability = {
|
|
5314
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5523
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
5315
5524
|
weekday?: Maybe<Scalars["Int"]>;
|
|
5316
|
-
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)) */
|
|
5525
|
+
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)). */
|
|
5317
5526
|
prediction?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
5318
5527
|
};
|
|
5319
5528
|
|
|
5320
|
-
/** Station occupancy for each weekday and hour */
|
|
5529
|
+
/** Station occupancy for each weekday and hour. */
|
|
5321
5530
|
export type StationPredictedOccupancy = {
|
|
5322
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5531
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
5323
5532
|
weekday?: Maybe<Scalars["Int"]>;
|
|
5324
|
-
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied */
|
|
5533
|
+
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied. */
|
|
5325
5534
|
occupancy?: Maybe<Scalars["Int"]>;
|
|
5326
|
-
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5535
|
+
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
5327
5536
|
period_begin?: Maybe<Scalars["String"]>;
|
|
5328
|
-
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5537
|
+
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
5329
5538
|
period_end?: Maybe<Scalars["String"]>;
|
|
5330
5539
|
};
|
|
5331
5540
|
|
|
5332
5541
|
export type StationRoaming = {
|
|
5333
|
-
/**
|
|
5542
|
+
/** Unique id for a provider. It is created by Eco-Movement, and it is stable. */
|
|
5543
|
+
partner_id?: Maybe<Scalars["String"]>;
|
|
5544
|
+
/**
|
|
5545
|
+
* Unique E-Mobility Account Identifier (eMA ID) for a provider.
|
|
5546
|
+
* It is created by Eco-Movement by combining the country code where the charging station is located, and the party id of the provider.
|
|
5547
|
+
* For example, NL-ECO. Note: A provider can have multiple eMA IDs.
|
|
5548
|
+
* For example, if a company named 'Example Company A' acquired 'Example Company B' and owns the charging stations of Example Company B,
|
|
5549
|
+
* then this attribute maps Example Company B's eMA IDs to Example Company A's eMA IDs. For example, ['NL-EXA', 'NL-EXB'].
|
|
5550
|
+
*/
|
|
5551
|
+
ema_id?: Maybe<Array<Scalars["String"]>>;
|
|
5552
|
+
/** Name of the EMSP provider. */
|
|
5334
5553
|
emsp?: Maybe<Scalars["String"]>;
|
|
5335
|
-
/** Name of the card accepted at a charging station */
|
|
5554
|
+
/** Name of the card accepted at a charging station. */
|
|
5336
5555
|
card?: Maybe<Scalars["String"]>;
|
|
5337
|
-
/** Link to native Android app for card accepted at a charging station */
|
|
5556
|
+
/** Link to native Android app for card accepted at a charging station. */
|
|
5338
5557
|
android_app_link?: Maybe<Scalars["String"]>;
|
|
5339
|
-
/** Link to native iOS app for card accepted at a charging station */
|
|
5558
|
+
/** Link to native iOS app for card accepted at a charging station. */
|
|
5340
5559
|
ios_app_link?: Maybe<Scalars["String"]>;
|
|
5341
5560
|
};
|
|
5342
5561
|
|
|
@@ -5360,6 +5579,38 @@ export type StationStats = {
|
|
|
5360
5579
|
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
5361
5580
|
};
|
|
5362
5581
|
|
|
5582
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5583
|
+
export type StationVehicleRestrictions = {
|
|
5584
|
+
/** Maximum weight for a vehicle that is allowed at the location. */
|
|
5585
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5586
|
+
/** Maximum width for a vehicle that is allowed at the location. */
|
|
5587
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5588
|
+
/** Maximum height for a vehicle that is allowed at the location. */
|
|
5589
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5590
|
+
/** Maximum length for a vehicle that is allowed at the location. */
|
|
5591
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5592
|
+
};
|
|
5593
|
+
|
|
5594
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5595
|
+
export type StationVehicleRestrictionsmassArgs = {
|
|
5596
|
+
unit?: Maybe<WeightUnit>;
|
|
5597
|
+
};
|
|
5598
|
+
|
|
5599
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5600
|
+
export type StationVehicleRestrictionswidthArgs = {
|
|
5601
|
+
unit?: Maybe<DimensionUnit>;
|
|
5602
|
+
};
|
|
5603
|
+
|
|
5604
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5605
|
+
export type StationVehicleRestrictionsheightArgs = {
|
|
5606
|
+
unit?: Maybe<DimensionUnit>;
|
|
5607
|
+
};
|
|
5608
|
+
|
|
5609
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5610
|
+
export type StationVehicleRestrictionslengthArgs = {
|
|
5611
|
+
unit?: Maybe<DimensionUnit>;
|
|
5612
|
+
};
|
|
5613
|
+
|
|
5363
5614
|
/** Types of a route step. */
|
|
5364
5615
|
export enum StepType {
|
|
5365
5616
|
/** This step is a road. */
|
|
@@ -5645,6 +5896,8 @@ export type Vehicle = {
|
|
|
5645
5896
|
purpose: VehiclePurpose;
|
|
5646
5897
|
/** Type of vehicle. */
|
|
5647
5898
|
type: VehicleType;
|
|
5899
|
+
/** Details about Heat Pump. */
|
|
5900
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
5648
5901
|
};
|
|
5649
5902
|
|
|
5650
5903
|
export type VehicleAvailability = {
|
|
@@ -5679,6 +5932,8 @@ export type VehicleBattery = {
|
|
|
5679
5932
|
full_kwh: Scalars["Float"];
|
|
5680
5933
|
/** Usable battery capacity in kWh. */
|
|
5681
5934
|
usable_kwh: Scalars["Float"];
|
|
5935
|
+
/** Type of battery. */
|
|
5936
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5682
5937
|
};
|
|
5683
5938
|
|
|
5684
5939
|
/** Battery field estimated. */
|
|
@@ -5693,6 +5948,11 @@ export enum VehicleBatteryFieldEstimations {
|
|
|
5693
5948
|
U = "U"
|
|
5694
5949
|
}
|
|
5695
5950
|
|
|
5951
|
+
export enum VehicleBatteryType {
|
|
5952
|
+
/** Lithium-Ion Battery. */
|
|
5953
|
+
LITHIUM_ION = "lithium_ion"
|
|
5954
|
+
}
|
|
5955
|
+
|
|
5696
5956
|
export type VehicleBody = {
|
|
5697
5957
|
/** Width with folded mirrors, default in mm. */
|
|
5698
5958
|
width: Scalars["Float"];
|
|
@@ -5805,6 +6065,13 @@ export enum VehicleFuel {
|
|
|
5805
6065
|
P = "P"
|
|
5806
6066
|
}
|
|
5807
6067
|
|
|
6068
|
+
export type VehicleHeatPump = {
|
|
6069
|
+
/** Indicates if a heat pump is available for a specific vehicle. */
|
|
6070
|
+
is_available?: Maybe<Scalars["Boolean"]>;
|
|
6071
|
+
/** Indicates if a heat pump is standard equipment for a specific vehicle. */
|
|
6072
|
+
is_standard_equipment?: Maybe<Scalars["Boolean"]>;
|
|
6073
|
+
};
|
|
6074
|
+
|
|
5808
6075
|
export type VehicleImage = {
|
|
5809
6076
|
/** Image id. */
|
|
5810
6077
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -5896,6 +6163,8 @@ export type VehicleListBattery = {
|
|
|
5896
6163
|
full_kwh: Scalars["Float"];
|
|
5897
6164
|
/** Usable battery capacity in kWh. */
|
|
5898
6165
|
usable_kwh: Scalars["Float"];
|
|
6166
|
+
/** Type of battery. */
|
|
6167
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5899
6168
|
};
|
|
5900
6169
|
|
|
5901
6170
|
export type VehicleListBody = {
|
|
@@ -6015,6 +6284,17 @@ export type VehiclePerformancetop_speedArgs = {
|
|
|
6015
6284
|
unit?: Maybe<SpeedUnit>;
|
|
6016
6285
|
};
|
|
6017
6286
|
|
|
6287
|
+
export enum VehiclePlugAndChargeSupport {
|
|
6288
|
+
/** Plug and charge is available. */
|
|
6289
|
+
AVAILABLE = "available",
|
|
6290
|
+
/** Plug and charge is announced, but not yet available. */
|
|
6291
|
+
ANNOUNCED = "announced",
|
|
6292
|
+
/** Plug and charge is available in a limited context. */
|
|
6293
|
+
LIMITED = "limited",
|
|
6294
|
+
/** Plug and charge is not available. */
|
|
6295
|
+
NOT_AVAILABLE = "not_available"
|
|
6296
|
+
}
|
|
6297
|
+
|
|
6018
6298
|
/** The output element of the vehiclePremium query. */
|
|
6019
6299
|
export type VehiclePremium = {
|
|
6020
6300
|
/** Vehicles unique ID. */
|
|
@@ -6066,6 +6346,8 @@ export type VehiclePremium = {
|
|
|
6066
6346
|
purpose: VehiclePurpose;
|
|
6067
6347
|
/** Type of vehicle. */
|
|
6068
6348
|
type: VehicleType;
|
|
6349
|
+
/** Details about Heat Pump. */
|
|
6350
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
6069
6351
|
};
|
|
6070
6352
|
|
|
6071
6353
|
export type VehiclePremiumAvailability = {
|
|
@@ -6104,6 +6386,8 @@ export type VehiclePremiumBattery = {
|
|
|
6104
6386
|
weight?: Maybe<Scalars["Float"]>;
|
|
6105
6387
|
/** Nominal voltage of battery. */
|
|
6106
6388
|
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
6389
|
+
/** Type of battery. */
|
|
6390
|
+
type?: Maybe<VehicleBatteryType>;
|
|
6107
6391
|
};
|
|
6108
6392
|
|
|
6109
6393
|
export type VehiclePremiumBody = {
|
|
@@ -6121,6 +6405,8 @@ export type VehiclePremiumBody = {
|
|
|
6121
6405
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
6122
6406
|
/** Indicates if wheelbase field is estimated. */
|
|
6123
6407
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6408
|
+
/** Ground clearance of a vehicle as specified by the OEM, default in mm. */
|
|
6409
|
+
ground_clearance?: Maybe<Scalars["Float"]>;
|
|
6124
6410
|
/** Weight (unladen EU). */
|
|
6125
6411
|
weight: VehicleBodyWeight;
|
|
6126
6412
|
/** Maximum allowed vehicle weight with payload. */
|
|
@@ -6192,6 +6478,10 @@ export type VehiclePremiumBodywheelbaseArgs = {
|
|
|
6192
6478
|
unit?: Maybe<MeasurementUnit>;
|
|
6193
6479
|
};
|
|
6194
6480
|
|
|
6481
|
+
export type VehiclePremiumBodyground_clearanceArgs = {
|
|
6482
|
+
unit?: Maybe<MeasurementUnit>;
|
|
6483
|
+
};
|
|
6484
|
+
|
|
6195
6485
|
export type VehiclePremiumBodyweight_max_payloadArgs = {
|
|
6196
6486
|
unit?: Maybe<WeightUnit>;
|
|
6197
6487
|
};
|
|
@@ -6239,6 +6529,8 @@ export type VehiclePremiumCharge = {
|
|
|
6239
6529
|
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
6240
6530
|
/** Alternative upgrade for the standard onboard charger when available. */
|
|
6241
6531
|
alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
|
|
6532
|
+
/** Vehicle-to-everything charge support. */
|
|
6533
|
+
vehicle_to_everything?: Maybe<VehicleToEverything>;
|
|
6242
6534
|
};
|
|
6243
6535
|
|
|
6244
6536
|
export type VehiclePremiumChargeAlternativeOBC = {
|
|
@@ -6546,6 +6838,16 @@ export type VehiclePremiumFastCharge = {
|
|
|
6546
6838
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6547
6839
|
/** Charging details for fast charging. */
|
|
6548
6840
|
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
6841
|
+
/** Indicates if autocharge is available. */
|
|
6842
|
+
has_autocharge?: Maybe<Scalars["Boolean"]>;
|
|
6843
|
+
/** Status of Plug & Charge (PnC ISO15118) support for vehicle. */
|
|
6844
|
+
iso_15118_pnc_support?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6845
|
+
/** Status of Plug & Charge (PnC ISO15118) -2 protocol support for vehicle. */
|
|
6846
|
+
iso_15118_pnc_support_2?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6847
|
+
/** Status of Plug & Charge (PnC ISO15118) -20 protocol support for vehicle. */
|
|
6848
|
+
iso_15118_pnc_support_20?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6849
|
+
/** Indicates if the fastcharge data is based on a real-world test by Fastned. */
|
|
6850
|
+
is_fastned_tested?: Maybe<Scalars["Boolean"]>;
|
|
6549
6851
|
};
|
|
6550
6852
|
|
|
6551
6853
|
export type VehiclePremiumFastChargecharge_speedArgs = {
|
|
@@ -6647,6 +6949,10 @@ export type VehiclePremiumPriceValueWithGrant = {
|
|
|
6647
6949
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6648
6950
|
/** Grant that is applied to the starting price. */
|
|
6649
6951
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
6952
|
+
/** Total delivery fees (be aware that this field does not include grant). */
|
|
6953
|
+
price_delivery?: Maybe<Scalars["Int"]>;
|
|
6954
|
+
/** First registration fee (be aware that this field does not include grant). */
|
|
6955
|
+
price_first_registration_fee?: Maybe<Scalars["Int"]>;
|
|
6650
6956
|
};
|
|
6651
6957
|
|
|
6652
6958
|
export type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
@@ -6770,6 +7076,8 @@ export type VehiclePremiumSafetyEuroNcap = {
|
|
|
6770
7076
|
vru?: Maybe<Scalars["Int"]>;
|
|
6771
7077
|
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
6772
7078
|
sa?: Maybe<Scalars["Int"]>;
|
|
7079
|
+
/** Link to the EuroNCAP test report. */
|
|
7080
|
+
url?: Maybe<Scalars["String"]>;
|
|
6773
7081
|
};
|
|
6774
7082
|
|
|
6775
7083
|
/** Propulsion. */
|
|
@@ -6886,6 +7194,38 @@ export enum VehicleStatus {
|
|
|
6886
7194
|
ARCHIVED = "archived"
|
|
6887
7195
|
}
|
|
6888
7196
|
|
|
7197
|
+
export type VehicleToEverything = {
|
|
7198
|
+
/** Information about Vehicle-to-Load. */
|
|
7199
|
+
vehicle_to_load?: Maybe<VehicleToEverythingLoad>;
|
|
7200
|
+
/** Information about Vehicle-to-Home. */
|
|
7201
|
+
vehicle_to_home?: Maybe<VehicleToEverythingHomeGrid>;
|
|
7202
|
+
/** Information about Vehicle-to-Grid. */
|
|
7203
|
+
vehicle_to_grid?: Maybe<VehicleToEverythingHomeGrid>;
|
|
7204
|
+
};
|
|
7205
|
+
|
|
7206
|
+
export type VehicleToEverythingHomeGrid = {
|
|
7207
|
+
/** Vehicle-to-Home/Grid AC power information. */
|
|
7208
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
7209
|
+
/** Vehicle-to-Home/Grid DC power information */
|
|
7210
|
+
dc?: Maybe<VehicleToEverythingPower>;
|
|
7211
|
+
};
|
|
7212
|
+
|
|
7213
|
+
export type VehicleToEverythingLoad = {
|
|
7214
|
+
/** Vehicle-to-Load power information. */
|
|
7215
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
7216
|
+
/** Details on interior ports available for V2L. */
|
|
7217
|
+
interior_ports?: Maybe<Scalars["String"]>;
|
|
7218
|
+
/** Details on exterior ports available for V2L. */
|
|
7219
|
+
exterior_ports?: Maybe<Scalars["String"]>;
|
|
7220
|
+
};
|
|
7221
|
+
|
|
7222
|
+
export type VehicleToEverythingPower = {
|
|
7223
|
+
/** Indicates if this charging is supported. */
|
|
7224
|
+
is_supported?: Maybe<PowerSupported>;
|
|
7225
|
+
/** Maximum power output, in kilowatts. */
|
|
7226
|
+
maximum_power?: Maybe<Scalars["String"]>;
|
|
7227
|
+
};
|
|
7228
|
+
|
|
6889
7229
|
export enum VehicleType {
|
|
6890
7230
|
/** 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
7231
|
MOTORCYCLE = "motorcycle",
|