@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/dist/ts/graphql.d.ts
CHANGED
|
@@ -56,18 +56,37 @@ export declare type Address = {
|
|
|
56
56
|
country?: Maybe<Scalars["String"]>;
|
|
57
57
|
/** County code (2 letters). */
|
|
58
58
|
county?: Maybe<Scalars["String"]>;
|
|
59
|
+
/** State or province. */
|
|
60
|
+
state_province?: Maybe<Scalars["String"]>;
|
|
61
|
+
/** Municipality. */
|
|
62
|
+
municipality?: Maybe<Scalars["String"]>;
|
|
59
63
|
/** City. */
|
|
60
64
|
city?: Maybe<Scalars["String"]>;
|
|
61
65
|
/** Street name. */
|
|
62
66
|
street?: Maybe<Scalars["String"]>;
|
|
63
67
|
/** Street number. */
|
|
64
68
|
number?: Maybe<Scalars["String"]>;
|
|
65
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* Postal code of the location.
|
|
71
|
+
* @deprecated In favor of postal_code.
|
|
72
|
+
*/
|
|
66
73
|
postalCode?: Maybe<Scalars["String"]>;
|
|
67
|
-
/**
|
|
74
|
+
/**
|
|
75
|
+
* String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>.
|
|
76
|
+
* @deprecated In favor of what_3_words.
|
|
77
|
+
*/
|
|
68
78
|
what3Words?: Maybe<Scalars["String"]>;
|
|
69
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* Human-readable address of the location.
|
|
81
|
+
* @deprecated In favor of formatted_address.
|
|
82
|
+
*/
|
|
70
83
|
formattedAddress?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
84
|
+
/** Postal code of the location. */
|
|
85
|
+
postal_code?: Maybe<Scalars["String"]>;
|
|
86
|
+
/** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>. */
|
|
87
|
+
what_3_words?: Maybe<Scalars["String"]>;
|
|
88
|
+
/** Human-readable address of the location. */
|
|
89
|
+
formatted_address?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
71
90
|
};
|
|
72
91
|
export declare enum AdhocAuthorisationMethod {
|
|
73
92
|
CREDIT_CARD = "CREDIT_CARD",
|
|
@@ -1350,40 +1369,40 @@ export declare type ChargeTotalInput = {
|
|
|
1350
1369
|
/** Source of inputted data, defaults to 'manual'. */
|
|
1351
1370
|
source?: Maybe<TelemetryInputSource>;
|
|
1352
1371
|
};
|
|
1353
|
-
/** A
|
|
1372
|
+
/** A grouped representation of EVSEs. */
|
|
1354
1373
|
export declare type Charger = {
|
|
1355
|
-
/** Type of charger */
|
|
1374
|
+
/** Type of a charger. */
|
|
1356
1375
|
standard?: Maybe<ConnectorType>;
|
|
1357
|
-
/** Power of a charger */
|
|
1376
|
+
/** Power of a charger. */
|
|
1358
1377
|
power?: Maybe<Scalars["Float"]>;
|
|
1359
|
-
/** Price of a charger */
|
|
1378
|
+
/** Price of a charger. */
|
|
1360
1379
|
price?: Maybe<Scalars["String"]>;
|
|
1361
|
-
/** Charging speed */
|
|
1380
|
+
/** Charging speed. */
|
|
1362
1381
|
speed?: Maybe<StationSpeedType>;
|
|
1363
|
-
/** Statuses of all the EVSEs grouped in a charger */
|
|
1382
|
+
/** Statuses of all the EVSEs grouped in a charger. */
|
|
1364
1383
|
status?: Maybe<ChargerStatuses>;
|
|
1365
|
-
/** Total number of EVSEs grouped in a charger */
|
|
1384
|
+
/** Total number of EVSEs grouped in a charger. */
|
|
1366
1385
|
total?: Maybe<Scalars["Int"]>;
|
|
1367
1386
|
};
|
|
1368
1387
|
export declare enum ChargerStatus {
|
|
1369
|
-
/** The charger is free */
|
|
1388
|
+
/** The charger is free. */
|
|
1370
1389
|
FREE = "free",
|
|
1371
|
-
/** The charger is occupied/busy */
|
|
1390
|
+
/** The charger is occupied/busy. */
|
|
1372
1391
|
BUSY = "busy",
|
|
1373
|
-
/** The charger is unknown */
|
|
1392
|
+
/** The charger is unknown. */
|
|
1374
1393
|
UNKNOWN = "unknown",
|
|
1375
|
-
/** The charger has an error */
|
|
1394
|
+
/** The charger has an error. */
|
|
1376
1395
|
ERROR = "error"
|
|
1377
1396
|
}
|
|
1378
|
-
/**
|
|
1397
|
+
/** Grouping by status of the chargers. */
|
|
1379
1398
|
export declare type ChargerStatuses = {
|
|
1380
|
-
/** How many are free */
|
|
1399
|
+
/** How many are free. */
|
|
1381
1400
|
free?: Maybe<Scalars["Int"]>;
|
|
1382
|
-
/** How many are busy */
|
|
1401
|
+
/** How many are busy. */
|
|
1383
1402
|
busy?: Maybe<Scalars["Int"]>;
|
|
1384
|
-
/** How many are unknown */
|
|
1403
|
+
/** How many are unknown. */
|
|
1385
1404
|
unknown?: Maybe<Scalars["Int"]>;
|
|
1386
|
-
/** How many are not available */
|
|
1405
|
+
/** How many are not available. */
|
|
1387
1406
|
error?: Maybe<Scalars["Int"]>;
|
|
1388
1407
|
};
|
|
1389
1408
|
/**
|
|
@@ -1414,23 +1433,23 @@ export declare type ChargetripRangebestArgs = {
|
|
|
1414
1433
|
unit?: Maybe<DistanceUnit>;
|
|
1415
1434
|
};
|
|
1416
1435
|
export declare type ChargingBehaviour = {
|
|
1417
|
-
/** Charging behaviour of users divided in groups, based on real-time information */
|
|
1436
|
+
/** Charging behaviour of users divided in groups, based on real-time information. */
|
|
1418
1437
|
code?: Maybe<ChargingBehaviourCode>;
|
|
1419
|
-
/** Description of charging behaviour */
|
|
1438
|
+
/** Description of charging behaviour. */
|
|
1420
1439
|
description?: Maybe<Scalars["String"]>;
|
|
1421
1440
|
};
|
|
1422
1441
|
export declare enum ChargingBehaviourCode {
|
|
1423
|
-
/** Mainly morning charging, and some mixed afternoon and evening charging */
|
|
1442
|
+
/** Mainly morning charging, and some mixed afternoon and evening charging. */
|
|
1424
1443
|
URBAN_CHARGING = "URBAN_CHARGING",
|
|
1425
|
-
/** Mainly fast charging, with some morning and afternoon charging */
|
|
1444
|
+
/** Mainly fast charging, with some morning and afternoon charging. */
|
|
1426
1445
|
FAST_CHARGING = "FAST_CHARGING",
|
|
1427
|
-
/** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging */
|
|
1446
|
+
/** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging. */
|
|
1428
1447
|
MIXED_CHARGING = "MIXED_CHARGING",
|
|
1429
|
-
/** Mainly noise charging */
|
|
1448
|
+
/** Mainly noise charging. */
|
|
1430
1449
|
NOISE_CHARGING = "NOISE_CHARGING",
|
|
1431
|
-
/** Mainly overnight charging */
|
|
1450
|
+
/** Mainly overnight charging. */
|
|
1432
1451
|
OVERNIGHT_CHARGING = "OVERNIGHT_CHARGING",
|
|
1433
|
-
/** Mainly morning charging, with some afternoon charging */
|
|
1452
|
+
/** Mainly morning charging, with some afternoon charging. */
|
|
1434
1453
|
OFFICE_CHARGING = "OFFICE_CHARGING"
|
|
1435
1454
|
}
|
|
1436
1455
|
export declare type Connect = {
|
|
@@ -1532,55 +1551,55 @@ export declare enum ConnectedVehicleStatus {
|
|
|
1532
1551
|
/** Vehicle was removed and access has been revoked */
|
|
1533
1552
|
REMOVED = "removed"
|
|
1534
1553
|
}
|
|
1535
|
-
/** Connector data which extends OCPI Connector */
|
|
1554
|
+
/** Connector data which extends OCPI Connector. */
|
|
1536
1555
|
export declare type Connector = {
|
|
1537
|
-
/** Identifier of a connector within an EVSE. Two connectors may have the same ID as long as they do not belong to the same EVSE object. */
|
|
1556
|
+
/** Identifier of a connector within an EVSE. Two connectors may have the same ID as long as they do not belong to the same EVSE object. This property is OCPI-compliant. */
|
|
1538
1557
|
id?: Maybe<Scalars["String"]>;
|
|
1539
|
-
/** Standard of an installed connector. */
|
|
1558
|
+
/** Standard of an installed connector. This property is OCPI-compliant. */
|
|
1540
1559
|
standard?: Maybe<ConnectorType>;
|
|
1541
|
-
/** Format (socket/cable) of an installed connector. */
|
|
1560
|
+
/** Format (socket/cable) of an installed connector. This property is OCPI-compliant. */
|
|
1542
1561
|
format?: Maybe<OCPIConnectorFormat>;
|
|
1543
|
-
/** Type of power of an installed connector.
|
|
1562
|
+
/** Type of power of an installed connector. This property is OCPI-compliant. */
|
|
1544
1563
|
power_type?: Maybe<OCPIPowerType>;
|
|
1545
|
-
/** Maximum voltage of an connector (line to neutral for AC_3_PHASE), in volt [V]. For example: DC Chargers might vary the voltage during charging when battery almost full. */
|
|
1564
|
+
/** Maximum voltage of an connector (line to neutral for AC_3_PHASE), in volt [V]. For example: DC Chargers might vary the voltage during charging when battery almost full. This property is OCPI-compliant. */
|
|
1546
1565
|
max_voltage?: Maybe<Scalars["Int"]>;
|
|
1547
|
-
/** Maximum amperage of a connector, in ampere [A]. */
|
|
1566
|
+
/** Maximum amperage of a connector, in ampere [A]. This property is OCPI-compliant. */
|
|
1548
1567
|
max_amperage?: Maybe<Scalars["Int"]>;
|
|
1549
1568
|
/**
|
|
1550
1569
|
* Maximum electric power that can be delivered by a connector, in watt [W]. When the maximum electric power is lower than the calculated value from voltage and amperage, this value should be set.
|
|
1551
1570
|
* For example: A DC Charge Point which can deliver up to 920V and up to 400A can be limited to a maximum of 150kW. Depending on the vehicle, it may supply maximum voltage or current, but not both at the same time.
|
|
1552
|
-
* For AC Charge Points, the amount of phases used can also have influence on the maximum power.
|
|
1571
|
+
* For AC Charge Points, the amount of phases used can also have influence on the maximum power. This property is OCPI-compliant.
|
|
1553
1572
|
*/
|
|
1554
1573
|
max_electric_power?: Maybe<Scalars["Int"]>;
|
|
1555
|
-
/** Maximum electric power in kW */
|
|
1574
|
+
/** Maximum electric power in kW. */
|
|
1556
1575
|
power?: Maybe<Scalars["Float"]>;
|
|
1557
1576
|
/**
|
|
1558
1577
|
* Identifiers of the currently valid charging tariffs. Multiple tariffs are possible, but only one of each Tariff.type can be active at the same time. Tariffs with the same type are only allowed, if they are not active at the same time: start_date_time and end_date_time period not overlapping.
|
|
1559
1578
|
* When preference-based smart charging is supported, one tariff for every possible ProfileType should be provided. This tells the user about the options they have at this Connector, and what the tariff is for every option.
|
|
1560
|
-
* For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff.
|
|
1579
|
+
* For a "free of charge" tariff, this field should be set and point to a defined "free of charge" tariff. This property is OCPI-compliant.
|
|
1561
1580
|
*/
|
|
1562
1581
|
tariff_ids?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
1563
|
-
/** URL to an operator’s terms and conditions. */
|
|
1582
|
+
/** URL to an operator’s terms and conditions. This property is OCPI-compliant. */
|
|
1564
1583
|
terms_and_conditions?: Maybe<Scalars["String"]>;
|
|
1565
|
-
/** Timestamp when a connector was last updated (or created). */
|
|
1584
|
+
/** Timestamp when a connector was last updated (or created). This property is OCPI-compliant. */
|
|
1566
1585
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
1567
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
1586
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
1568
1587
|
properties?: Maybe<Scalars["JSON"]>;
|
|
1569
|
-
/** List of valid charging tariffs */
|
|
1588
|
+
/** List of valid charging tariffs. */
|
|
1570
1589
|
tariff?: Maybe<Array<Maybe<OCPITariff>>>;
|
|
1571
|
-
/**
|
|
1572
|
-
* Charging prices
|
|
1573
|
-
* @deprecated In favor of custom_properties.pricing
|
|
1574
|
-
*/
|
|
1590
|
+
/** Charging prices. */
|
|
1575
1591
|
pricing?: Maybe<Pricing>;
|
|
1576
|
-
/** Custom properties of a connector. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
1592
|
+
/** Custom properties of a connector. These are vendor specific and will return null values on the fields that are not supported by your station database. */
|
|
1577
1593
|
custom_properties?: Maybe<ConnectorCustomProperties>;
|
|
1578
1594
|
};
|
|
1579
|
-
/** Custom properties for connectors */
|
|
1595
|
+
/** Custom properties for connectors. */
|
|
1580
1596
|
export declare type ConnectorCustomProperties = {
|
|
1581
|
-
/**
|
|
1597
|
+
/**
|
|
1598
|
+
* Charging prices.
|
|
1599
|
+
* @deprecated In favor of connector.pricing
|
|
1600
|
+
*/
|
|
1582
1601
|
pricing?: Maybe<Pricing>;
|
|
1583
|
-
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
1602
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
1584
1603
|
oicp?: Maybe<OICPConnectorCustomProperties>;
|
|
1585
1604
|
};
|
|
1586
1605
|
/** The socket or plug standard of the charging point. */
|
|
@@ -1942,6 +1961,7 @@ export declare enum CountryCodeAlpha2 {
|
|
|
1942
1961
|
VU = "VU",
|
|
1943
1962
|
WF = "WF",
|
|
1944
1963
|
WS = "WS",
|
|
1964
|
+
XK = "XK",
|
|
1945
1965
|
YE = "YE",
|
|
1946
1966
|
YT = "YT",
|
|
1947
1967
|
ZA = "ZA",
|
|
@@ -1973,6 +1993,16 @@ export declare enum CurrencyUnit {
|
|
|
1973
1993
|
/** Return the currency in GBP. */
|
|
1974
1994
|
GBP = "GBP"
|
|
1975
1995
|
}
|
|
1996
|
+
export declare enum DimensionUnit {
|
|
1997
|
+
/** Return the dimension in meters. */
|
|
1998
|
+
METER = "meter",
|
|
1999
|
+
/** Return the dimension in feet. */
|
|
2000
|
+
FOOT = "foot",
|
|
2001
|
+
/** Return the dimension in kilometers. */
|
|
2002
|
+
KILOMETER = "kilometer",
|
|
2003
|
+
/** Return the dimension in miles. */
|
|
2004
|
+
MILE = "mile"
|
|
2005
|
+
}
|
|
1976
2006
|
export declare enum DistanceUnit {
|
|
1977
2007
|
/** Return the distance in meters. */
|
|
1978
2008
|
METER = "meter",
|
|
@@ -1983,40 +2013,42 @@ export declare enum DistanceUnit {
|
|
|
1983
2013
|
/** Return the distance in miles. */
|
|
1984
2014
|
MILE = "mile"
|
|
1985
2015
|
}
|
|
1986
|
-
/** EVSE data which extends OCPI EVSE */
|
|
2016
|
+
/** EVSE data which extends OCPI EVSE. */
|
|
1987
2017
|
export declare type EVSE = {
|
|
1988
2018
|
/**
|
|
1989
2019
|
* Uniquely identifies an EVSE within the CPOs platform (and suboperator platforms). For example a database ID or the actual "EVSE ID". This field can never be changed, modified or renamed. This is the 'technical' identification of the EVSE, not to be used as 'human readable' identification, use the field evse_id for that.
|
|
1990
|
-
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.
|
|
2020
|
+
* This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field. This property is OCPI-compliant.
|
|
1991
2021
|
*/
|
|
1992
2022
|
uid?: Maybe<Scalars["String"]>;
|
|
1993
|
-
/** Compliant with the following specification for EVSE ID from "eMI3 standard version V1.0" (http://emi3group.com/documents-links/) "Part 2: business objects." Optional because: if an evse_id is to be re-used in the real world, the evse_id can be removed from an EVSE object if the status is set to REMOVED. */
|
|
2023
|
+
/** Compliant with the following specification for EVSE ID from "eMI3 standard version V1.0" (http://emi3group.com/documents-links/) "Part 2: business objects." Optional because: if an evse_id is to be re-used in the real world, the evse_id can be removed from an EVSE object if the status is set to REMOVED. This property is OCPI-compliant. */
|
|
1994
2024
|
evse_id?: Maybe<Scalars["String"]>;
|
|
1995
|
-
/** Indicates the current status of an EVSE. */
|
|
2025
|
+
/** Indicates the current status of an EVSE. This property is OCPI-compliant. */
|
|
1996
2026
|
status?: Maybe<OCPIStatus>;
|
|
1997
|
-
/** Indicates a planned status update of a nEVSE. */
|
|
2027
|
+
/** Indicates a planned status update of a nEVSE. This property is OCPI-compliant. */
|
|
1998
2028
|
status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;
|
|
1999
|
-
/** List of functionalities that an EVSE is capable of. */
|
|
2029
|
+
/** List of functionalities that an EVSE is capable of. This property is OCPI-compliant. */
|
|
2000
2030
|
capabilities?: Maybe<Array<Maybe<OCPICapability>>>;
|
|
2001
|
-
/** List of available connectors on an EVSE. */
|
|
2031
|
+
/** List of available connectors on an EVSE. This property is OCPI-compliant. */
|
|
2002
2032
|
connectors?: Maybe<Array<Maybe<Connector>>>;
|
|
2003
|
-
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */
|
|
2033
|
+
/** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. This property is OCPI-compliant. */
|
|
2004
2034
|
floor_level?: Maybe<Scalars["String"]>;
|
|
2005
|
-
/** Coordinates of a EVSE. */
|
|
2035
|
+
/** Coordinates of a EVSE. This property is OCPI-compliant. */
|
|
2006
2036
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
2007
|
-
/** A number/string printed on the outside of an EVSE for visual identification. */
|
|
2037
|
+
/** A number/string printed on the outside of an EVSE for visual identification. This property is OCPI-compliant. */
|
|
2008
2038
|
physical_reference?: Maybe<Scalars["String"]>;
|
|
2009
|
-
/** Restrictions that apply to a parking spot. */
|
|
2039
|
+
/** Restrictions that apply to a parking spot. This property is OCPI-compliant. */
|
|
2010
2040
|
parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;
|
|
2011
|
-
/** Links to images related to an EVSE such as photos or logos. */
|
|
2041
|
+
/** Links to images related to an EVSE such as photos or logos. This property is OCPI-compliant. */
|
|
2012
2042
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
2013
|
-
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). */
|
|
2043
|
+
/** Timestamp when this EVSE or one of its Connectors was last updated (or created). This property is OCPI-compliant. */
|
|
2014
2044
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2015
2045
|
/** Indicates if parking is free or paid. */
|
|
2016
2046
|
parking_cost?: Maybe<ParkingCost>;
|
|
2017
|
-
/**
|
|
2047
|
+
/** Unique ID of the location in the system of the CPO. */
|
|
2048
|
+
cpo_external_id?: Maybe<Scalars["String"]>;
|
|
2049
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
2018
2050
|
properties?: Maybe<Scalars["JSON"]>;
|
|
2019
|
-
/** Custom properties of an EVSE */
|
|
2051
|
+
/** Custom properties of an EVSE. */
|
|
2020
2052
|
custom_properties?: Maybe<EvseCustomProperties>;
|
|
2021
2053
|
};
|
|
2022
2054
|
export declare type ElevationInput = {
|
|
@@ -2040,14 +2072,14 @@ export declare enum EmissionRateUnit {
|
|
|
2040
2072
|
OUNCES_PER_MILE = "ounces_per_mile"
|
|
2041
2073
|
}
|
|
2042
2074
|
export declare enum EmissionUnit {
|
|
2043
|
-
/** Return the
|
|
2075
|
+
/** Return the emissions in grams. */
|
|
2044
2076
|
GRAM = "gram",
|
|
2045
|
-
/** Return the
|
|
2077
|
+
/** Return the emissions in ounces. */
|
|
2046
2078
|
OUNCE = "ounce"
|
|
2047
2079
|
}
|
|
2048
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
2080
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
2049
2081
|
export declare type EvseCustomProperties = {
|
|
2050
|
-
/** OICP standard custom properties */
|
|
2082
|
+
/** OICP standard custom properties. */
|
|
2051
2083
|
oicp?: Maybe<OICPEvseCustomProperties>;
|
|
2052
2084
|
};
|
|
2053
2085
|
/** A GeoJSON Feature<LineString>. */
|
|
@@ -2137,6 +2169,28 @@ export declare type GeometryPoint = {
|
|
|
2137
2169
|
type: PointType;
|
|
2138
2170
|
coordinates: Array<Scalars["Float"]>;
|
|
2139
2171
|
};
|
|
2172
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
2173
|
+
export declare enum HeavyVehiclesEUType {
|
|
2174
|
+
/** 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). */
|
|
2175
|
+
N1 = "N1",
|
|
2176
|
+
/** 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). */
|
|
2177
|
+
N2 = "N2",
|
|
2178
|
+
/** 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). */
|
|
2179
|
+
N3 = "N3"
|
|
2180
|
+
}
|
|
2181
|
+
/** List of facilities in the location. */
|
|
2182
|
+
export declare enum HeavyVehiclesFacility {
|
|
2183
|
+
/** Truck parking. */
|
|
2184
|
+
TRUCK_PARKING = "TRUCK_PARKING",
|
|
2185
|
+
/** Truck wash. */
|
|
2186
|
+
TRUCK_WASH = "TRUCK_WASH",
|
|
2187
|
+
/** Truck repair. */
|
|
2188
|
+
TRUCK_REPAIR = "TRUCK_REPAIR",
|
|
2189
|
+
/** Truck dealership. */
|
|
2190
|
+
TRUCK_DEALERSHIP = "TRUCK_DEALERSHIP",
|
|
2191
|
+
/** Secure truck parking. */
|
|
2192
|
+
SECURE_TRUCK_PARKING = "SECURE_TRUCK_PARKING"
|
|
2193
|
+
}
|
|
2140
2194
|
/** Navigation service providers available */
|
|
2141
2195
|
export declare enum InstructionsFormat {
|
|
2142
2196
|
/** Chargetrip raw instructions */
|
|
@@ -2392,6 +2446,8 @@ export declare type Navigation = {
|
|
|
2392
2446
|
alternative_stations: Array<NavigationStation>;
|
|
2393
2447
|
/** Navigation instructions */
|
|
2394
2448
|
instructions?: Maybe<Scalars["JSON"]>;
|
|
2449
|
+
/** Navigation meta information. */
|
|
2450
|
+
meta?: Maybe<NavigationMeta>;
|
|
2395
2451
|
};
|
|
2396
2452
|
/** The navigation session data */
|
|
2397
2453
|
export declare type Navigationstate_of_chargeArgs = {
|
|
@@ -2412,6 +2468,13 @@ export declare type NavigationInstructionsInput = {
|
|
|
2412
2468
|
/** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6, the default is 5 */
|
|
2413
2469
|
precision?: Maybe<Scalars["Int"]>;
|
|
2414
2470
|
};
|
|
2471
|
+
/** Navigation meta information. */
|
|
2472
|
+
export declare type NavigationMeta = {
|
|
2473
|
+
/** Creation time of the navigation session. */
|
|
2474
|
+
created_at?: Maybe<Scalars["DateTime"]>;
|
|
2475
|
+
/** Last updated time of the navigation session. */
|
|
2476
|
+
updated_at?: Maybe<Scalars["DateTime"]>;
|
|
2477
|
+
};
|
|
2415
2478
|
/** Input for the navigation recalculate */
|
|
2416
2479
|
export declare type NavigationRecalculateInput = {
|
|
2417
2480
|
/** ID of the navigation session */
|
|
@@ -2495,11 +2558,11 @@ export declare type NavigationUpdateLocationsInput = {
|
|
|
2495
2558
|
};
|
|
2496
2559
|
/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2497
2560
|
export declare type OCPIAdditionalGeoLocation = {
|
|
2498
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
2561
|
+
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2499
2562
|
latitude?: Maybe<Scalars["String"]>;
|
|
2500
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
2563
|
+
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2501
2564
|
longitude?: Maybe<Scalars["String"]>;
|
|
2502
|
-
/** Name of the point in local language or as written at the location. For example the street name of a parking lot entrance or it’s number. */
|
|
2565
|
+
/** Name of the point in local language or as written at the location. For example the street name of a parking lot entrance or it’s number. This property is OCPI-compliant. */
|
|
2503
2566
|
name?: Maybe<OCPIDisplayText>;
|
|
2504
2567
|
};
|
|
2505
2568
|
/** The capabilities of an EVSE. */
|
|
@@ -2629,28 +2692,28 @@ export declare enum OCPIDayOfWeek {
|
|
|
2629
2692
|
SUNDAY = "SUNDAY"
|
|
2630
2693
|
}
|
|
2631
2694
|
export declare type OCPIDisplayText = {
|
|
2632
|
-
/** Language Code ISO 639-1 */
|
|
2695
|
+
/** Language Code ISO 639-1. This property is OCPI-compliant. */
|
|
2633
2696
|
language?: Maybe<Scalars["String"]>;
|
|
2634
|
-
/** Text to be displayed to an end user. No markup, html etc. allowed. */
|
|
2697
|
+
/** Text to be displayed to an end user. No markup, html etc. allowed. This property is OCPI-compliant. */
|
|
2635
2698
|
text?: Maybe<Scalars["String"]>;
|
|
2636
2699
|
};
|
|
2637
2700
|
/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */
|
|
2638
2701
|
export declare type OCPIEnergyMix = {
|
|
2639
|
-
/** True if the power is 100% from regenerative sources */
|
|
2702
|
+
/** True if the power is 100% from regenerative sources. This property is OCPI-compliant. */
|
|
2640
2703
|
is_green_energy?: Maybe<Scalars["Boolean"]>;
|
|
2641
|
-
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */
|
|
2704
|
+
/** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. This property is OCPI-compliant. */
|
|
2642
2705
|
energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;
|
|
2643
|
-
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */
|
|
2706
|
+
/** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. This property is OCPI-compliant. */
|
|
2644
2707
|
environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;
|
|
2645
|
-
/** Name of the energy supplier, delivering the energy for this location or tariff
|
|
2708
|
+
/** Name of the energy supplier, delivering the energy for this location or tariff.*. This property is OCPI-compliant. */
|
|
2646
2709
|
supplier_name?: Maybe<Scalars["String"]>;
|
|
2647
|
-
/** Name of the energy suppliers product/tariff plan used at this location
|
|
2710
|
+
/** Name of the energy suppliers product/tariff plan used at this location.*. This property is OCPI-compliant. */
|
|
2648
2711
|
energy_product_name?: Maybe<Scalars["String"]>;
|
|
2649
2712
|
};
|
|
2650
2713
|
export declare type OCPIEnergySource = {
|
|
2651
|
-
/** The type of energy source. */
|
|
2714
|
+
/** The type of energy source. This property is OCPI-compliant. */
|
|
2652
2715
|
source?: Maybe<OCPIEnergySourceCategory>;
|
|
2653
|
-
/** Percentage of this source (0-100) in the mix. */
|
|
2716
|
+
/** Percentage of this source (0-100) in the mix. This property is OCPI-compliant. */
|
|
2654
2717
|
percentage?: Maybe<Scalars["Int"]>;
|
|
2655
2718
|
};
|
|
2656
2719
|
/** Categories of energy sources. */
|
|
@@ -2674,9 +2737,9 @@ export declare enum OCPIEnergySourceCategory {
|
|
|
2674
2737
|
}
|
|
2675
2738
|
/** Amount of waste produced/emitted per kWh. */
|
|
2676
2739
|
export declare type OCPIEnvironmentalImpact = {
|
|
2677
|
-
/** The environmental impact category of this value. */
|
|
2740
|
+
/** The environmental impact category of this value. This property is OCPI-compliant. */
|
|
2678
2741
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2679
|
-
/** Amount of this portion in g/kWh. */
|
|
2742
|
+
/** Amount of this portion in g/kWh. This property is OCPI-compliant. */
|
|
2680
2743
|
amount?: Maybe<Scalars["Float"]>;
|
|
2681
2744
|
};
|
|
2682
2745
|
/** Categories of environmental impact values. */
|
|
@@ -2688,9 +2751,9 @@ export declare enum OCPIEnvironmentalImpactCategory {
|
|
|
2688
2751
|
}
|
|
2689
2752
|
/** Specifies one exceptional period for opening or access hours. */
|
|
2690
2753
|
export declare type OCPIExceptionalPeriod = {
|
|
2691
|
-
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2754
|
+
/** Begin of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2692
2755
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2693
|
-
/** End of the exception. In UTC, time_zone field can be used to convert to local time. */
|
|
2756
|
+
/** End of the exception. In UTC, time_zone field can be used to convert to local time. This property is OCPI-compliant. */
|
|
2694
2757
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2695
2758
|
};
|
|
2696
2759
|
export declare enum OCPIFacility {
|
|
@@ -2737,34 +2800,34 @@ export declare enum OCPIFacility {
|
|
|
2737
2800
|
}
|
|
2738
2801
|
/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */
|
|
2739
2802
|
export declare type OCPIGeoLocation = {
|
|
2740
|
-
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7} */
|
|
2803
|
+
/** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: "." Regex: -?[0-9]{1,2}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2741
2804
|
latitude?: Maybe<Scalars["String"]>;
|
|
2742
|
-
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7} */
|
|
2805
|
+
/** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: "." Regex: -?[0-9]{1,3}\.[0-9]{5,7}. This property is OCPI-compliant. */
|
|
2743
2806
|
longitude?: Maybe<Scalars["String"]>;
|
|
2744
2807
|
};
|
|
2745
2808
|
/** Opening and access hours of the location. */
|
|
2746
2809
|
export declare type OCPIHours = {
|
|
2747
|
-
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. */
|
|
2810
|
+
/** True to represent 24 hours a day and 7 days a week, except the given exceptions. This property is OCPI-compliant. */
|
|
2748
2811
|
twentyfourseven?: Maybe<Scalars["Boolean"]>;
|
|
2749
|
-
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */
|
|
2812
|
+
/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. This property is OCPI-compliant. */
|
|
2750
2813
|
regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;
|
|
2751
|
-
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */
|
|
2814
|
+
/** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. This property is OCPI-compliant. */
|
|
2752
2815
|
exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2753
|
-
/** Exceptions for specified calendar dates, time-range based. Periods the station is not operating/accessible. Overwriting regular_hours and exceptional_openings. Should not overlap exceptional_openings. */
|
|
2816
|
+
/** Exceptions for specified calendar dates, time-range based. Periods the station is not operating/accessible. Overwriting regular_hours and exceptional_openings. Should not overlap exceptional_openings. This property is OCPI-compliant. */
|
|
2754
2817
|
exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;
|
|
2755
2818
|
};
|
|
2756
2819
|
export declare type OCPIImage = {
|
|
2757
|
-
/** URL from where the image data can be fetched through a web browser. */
|
|
2820
|
+
/** URL from where the image data can be fetched through a web browser. This property is OCPI-compliant. */
|
|
2758
2821
|
url?: Maybe<Scalars["String"]>;
|
|
2759
|
-
/** URL from where a thumbnail of the image can be fetched through a webbrowser. */
|
|
2822
|
+
/** URL from where a thumbnail of the image can be fetched through a webbrowser. This property is OCPI-compliant. */
|
|
2760
2823
|
thumbnail?: Maybe<Scalars["String"]>;
|
|
2761
|
-
/** Category of an image */
|
|
2824
|
+
/** Category of an image. This property is OCPI-compliant. */
|
|
2762
2825
|
category?: Maybe<OCPIImageCategory>;
|
|
2763
|
-
/** Image type: gif, jpeg, png, svg */
|
|
2826
|
+
/** Image type: gif, jpeg, png, svg. This property is OCPI-compliant. */
|
|
2764
2827
|
type?: Maybe<Scalars["String"]>;
|
|
2765
|
-
/** Width of the full scale image */
|
|
2828
|
+
/** Width of the full scale image. This property is OCPI-compliant. */
|
|
2766
2829
|
width?: Maybe<Scalars["Int"]>;
|
|
2767
|
-
/** Height of the full scale image */
|
|
2830
|
+
/** Height of the full scale image. This property is OCPI-compliant. */
|
|
2768
2831
|
height?: Maybe<Scalars["Int"]>;
|
|
2769
2832
|
};
|
|
2770
2833
|
/** The category of an image to obtain the correct usage in a user presentation. The category has to be set accordingly to the image content in order to guarantee the right usage. */
|
|
@@ -2825,28 +2888,28 @@ export declare enum OCPIPowerType {
|
|
|
2825
2888
|
DC = "DC"
|
|
2826
2889
|
}
|
|
2827
2890
|
export declare type OCPIPrice = {
|
|
2828
|
-
/** Price/Cost excluding VAT. */
|
|
2891
|
+
/** Price/Cost excluding VAT. This property is OCPI-compliant. */
|
|
2829
2892
|
excl_vat?: Maybe<Scalars["Float"]>;
|
|
2830
|
-
/** Price/Cost including VAT. */
|
|
2893
|
+
/** Price/Cost including VAT. This property is OCPI-compliant. */
|
|
2831
2894
|
incl_vat?: Maybe<Scalars["Float"]>;
|
|
2832
2895
|
};
|
|
2833
2896
|
export declare type OCPIPriceComponent = {
|
|
2834
|
-
/** Type of tariff dimension. */
|
|
2897
|
+
/** Type of tariff dimension. This property is OCPI-compliant. */
|
|
2835
2898
|
type?: Maybe<OCPITariffDimensionType>;
|
|
2836
|
-
/** Price per unit (excl. VAT) for this tariff dimension. */
|
|
2899
|
+
/** Price per unit (excl. VAT) for this tariff dimension. This property is OCPI-compliant. */
|
|
2837
2900
|
price?: Maybe<Scalars["Float"]>;
|
|
2838
|
-
/** Applicable VAT percentage for this tariff dimension. If omitted, no VAT is applicable. Not providing a VAT is different from 0% VAT, which would be a value of 0.0 here. */
|
|
2901
|
+
/** Applicable VAT percentage for this tariff dimension. If omitted, no VAT is applicable. Not providing a VAT is different from 0% VAT, which would be a value of 0.0 here. This property is OCPI-compliant. */
|
|
2839
2902
|
vat?: Maybe<Scalars["Float"]>;
|
|
2840
|
-
/** Minimum amount to be billed. This unit will be billed in this step_size blocks. For example: if type is TIME and step_size has a value of 300, then time will be billed in blocks of 5 minutes. If 6 minutes were used, 10 minutes (2 blocks of step_size) will be billed. */
|
|
2903
|
+
/** Minimum amount to be billed. This unit will be billed in this step_size blocks. For example: if type is TIME and step_size has a value of 300, then time will be billed in blocks of 5 minutes. If 6 minutes were used, 10 minutes (2 blocks of step_size) will be billed. This property is OCPI-compliant. */
|
|
2841
2904
|
step_size?: Maybe<Scalars["Int"]>;
|
|
2842
2905
|
};
|
|
2843
2906
|
/** Regular recurring operation or access hours. */
|
|
2844
2907
|
export declare type OCPIRegularHours = {
|
|
2845
|
-
/** Number of days in the week, from Monday (1) till Sunday (7) */
|
|
2908
|
+
/** Number of days in the week, from Monday (1) till Sunday (7). This property is OCPI-compliant. */
|
|
2846
2909
|
weekday?: Maybe<Scalars["Int"]>;
|
|
2847
|
-
/** Begin of the regular period, in local time, given in hours and minutes. Must be in 24h format with leading zeros. Example: "18:15". Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9]. */
|
|
2910
|
+
/** Begin of the regular period, in local time, given in hours and minutes. Must be in 24h format with leading zeros. Example: "18:15". Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9]. This property is OCPI-compliant. */
|
|
2848
2911
|
period_begin?: Maybe<Scalars["String"]>;
|
|
2849
|
-
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */
|
|
2912
|
+
/** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. This property is OCPI-compliant. */
|
|
2850
2913
|
period_end?: Maybe<Scalars["String"]>;
|
|
2851
2914
|
};
|
|
2852
2915
|
export declare enum OCPIReservationRestrictionType {
|
|
@@ -2878,41 +2941,41 @@ export declare enum OCPIStatus {
|
|
|
2878
2941
|
}
|
|
2879
2942
|
/** This type is used to schedule status periods in the future. The eMSP can provide this information to the EV user for trip planning purposes. A period MAY have no end. Example: "This station will be running as of tomorrow. Today it is still planned and under construction. */
|
|
2880
2943
|
export declare type OCPIStatusSchedule = {
|
|
2881
|
-
/** Begin of the scheduled period. */
|
|
2944
|
+
/** Begin of the scheduled period. This property is OCPI-compliant. */
|
|
2882
2945
|
period_begin?: Maybe<Scalars["DateTime"]>;
|
|
2883
|
-
/** End of the scheduled period, if known. */
|
|
2946
|
+
/** End of the scheduled period, if known. This property is OCPI-compliant. */
|
|
2884
2947
|
period_end?: Maybe<Scalars["DateTime"]>;
|
|
2885
|
-
/** Status value during the scheduled period. */
|
|
2948
|
+
/** Status value during the scheduled period. This property is OCPI-compliant. */
|
|
2886
2949
|
status?: Maybe<OCPIStatus>;
|
|
2887
2950
|
};
|
|
2888
2951
|
export declare type OCPITariff = {
|
|
2889
|
-
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff */
|
|
2952
|
+
/** ISO-3166 alpha-2 country code of the CPO that owns this tariff. This property is OCPI-compliant. */
|
|
2890
2953
|
country_code?: Maybe<Scalars["String"]>;
|
|
2891
|
-
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */
|
|
2954
|
+
/** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
2892
2955
|
party_id?: Maybe<Scalars["String"]>;
|
|
2893
|
-
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */
|
|
2956
|
+
/** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms). This property is OCPI-compliant. */
|
|
2894
2957
|
id?: Maybe<Scalars["String"]>;
|
|
2895
|
-
/** ISO-4217 code of the currency of this tariff. */
|
|
2958
|
+
/** ISO-4217 code of the currency of this tariff. This property is OCPI-compliant. */
|
|
2896
2959
|
currency?: Maybe<Scalars["String"]>;
|
|
2897
|
-
/** Defines the type of the tariff. This allows for distinction in case of given charging preferences. When omitted, this tariff is valid for all sessions */
|
|
2960
|
+
/** Defines the type of the tariff. This allows for distinction in case of given charging preferences. When omitted, this tariff is valid for all sessions. This property is OCPI-compliant. */
|
|
2898
2961
|
type?: Maybe<OCPITariffType>;
|
|
2899
|
-
/** List of alternative tariff information texts, in multiple languages */
|
|
2962
|
+
/** List of alternative tariff information texts, in multiple languages. This property is OCPI-compliant. */
|
|
2900
2963
|
tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
2901
|
-
/** URL to a web page that contains an explanation of the tariff information in human readable form */
|
|
2964
|
+
/** URL to a web page that contains an explanation of the tariff information in human readable form. This property is OCPI-compliant. */
|
|
2902
2965
|
tariff_alt_url?: Maybe<Scalars["String"]>;
|
|
2903
|
-
/** When this field is set, a charging session with this tariff will cost at least the amount shown. This is different from a FLAT fee (start tariff, transaction fee), as a FLAT fee is a fixed amount that must be paid for any charging session. A minimum price indicates that when the cost of a charging session is lower than this amount, the cost of the session will be equal to this amount */
|
|
2966
|
+
/** When this field is set, a charging session with this tariff will cost at least the amount shown. This is different from a FLAT fee (start tariff, transaction fee), as a FLAT fee is a fixed amount that must be paid for any charging session. A minimum price indicates that when the cost of a charging session is lower than this amount, the cost of the session will be equal to this amount. This property is OCPI-compliant. */
|
|
2904
2967
|
min_price?: Maybe<OCPIPrice>;
|
|
2905
|
-
/** When this field is set, a charging session with this tariff will NOT cost more than this amount */
|
|
2968
|
+
/** When this field is set, a charging session with this tariff will NOT cost more than this amount. This property is OCPI-compliant. */
|
|
2906
2969
|
max_price?: Maybe<OCPIPrice>;
|
|
2907
|
-
/** List of tariff elements */
|
|
2970
|
+
/** List of tariff elements. This property is OCPI-compliant. */
|
|
2908
2971
|
elements?: Maybe<Array<Maybe<OCPITariffElement>>>;
|
|
2909
|
-
/** Time when this tariff becomes active, in UTC, time_zone field of the Location can be used to convert to local time. Typically used for a new tariff that is already given with the location, before it becomes active */
|
|
2972
|
+
/** Time when this tariff becomes active, in UTC, time_zone field of the Location can be used to convert to local time. Typically used for a new tariff that is already given with the location, before it becomes active. This property is OCPI-compliant. */
|
|
2910
2973
|
start_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2911
|
-
/** Time after which this tariff is no longer valid, in UTC, time_zone field if the location can be used to convert to local time. Typically used when this tariff is going to be replaced with a different tariff in the near future */
|
|
2974
|
+
/** Time after which this tariff is no longer valid, in UTC, time_zone field if the location can be used to convert to local time. Typically used when this tariff is going to be replaced with a different tariff in the near future. This property is OCPI-compliant. */
|
|
2912
2975
|
end_date_time?: Maybe<Scalars["DateTime"]>;
|
|
2913
|
-
/** Details about the energy supplied with this tariff */
|
|
2976
|
+
/** Details about the energy supplied with this tariff. This property is OCPI-compliant. */
|
|
2914
2977
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
2915
|
-
/** Timestamp when this tariff was last updated (or created) */
|
|
2978
|
+
/** Timestamp when this tariff was last updated (or created). This property is OCPI-compliant. */
|
|
2916
2979
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
2917
2980
|
};
|
|
2918
2981
|
export declare enum OCPITariffDimensionType {
|
|
@@ -2926,39 +2989,39 @@ export declare enum OCPITariffDimensionType {
|
|
|
2926
2989
|
TIME = "TIME"
|
|
2927
2990
|
}
|
|
2928
2991
|
export declare type OCPITariffElement = {
|
|
2929
|
-
/** List of price components that describe the pricing of a tariff. */
|
|
2992
|
+
/** List of price components that describe the pricing of a tariff. This property is OCPI-compliant. */
|
|
2930
2993
|
price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;
|
|
2931
|
-
/** Restrictions that describe the applicability of a tariff. */
|
|
2994
|
+
/** Restrictions that describe the applicability of a tariff. This property is OCPI-compliant. */
|
|
2932
2995
|
restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;
|
|
2933
2996
|
};
|
|
2934
2997
|
export declare type OCPITariffRestrictions = {
|
|
2935
|
-
/** Start time of day in local time, the time zone is defined in the time_zone field of the Location, for example 13:30, valid from this time of the day. Must be in 24h format with leading zeros. Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9] */
|
|
2998
|
+
/** Start time of day in local time, the time zone is defined in the time_zone field of the Location, for example 13:30, valid from this time of the day. Must be in 24h format with leading zeros. Hour/Minute separator: ":" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9]. This property is OCPI-compliant. */
|
|
2936
2999
|
start_time?: Maybe<Scalars["String"]>;
|
|
2937
|
-
/** End time of day in local time, the time zone is defined in the time_zone field of the Location, for example 19:45, valid until this time of the day. Same syntax as start_time. */
|
|
3000
|
+
/** End time of day in local time, the time zone is defined in the time_zone field of the Location, for example 19:45, valid until this time of the day. Same syntax as start_time. This property is OCPI-compliant. */
|
|
2938
3001
|
end_time?: Maybe<Scalars["String"]>;
|
|
2939
|
-
/** Start date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-24, valid from this day. Regex: ([12][0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]) */
|
|
3002
|
+
/** Start date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-24, valid from this day. Regex: ([12][0-9]{3})-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01]). This property is OCPI-compliant. */
|
|
2940
3003
|
start_date?: Maybe<Scalars["String"]>;
|
|
2941
|
-
/** End date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-27, valid until this day (exclusive). Same syntax as start_date */
|
|
3004
|
+
/** End date in local time, the time zone is defined in the time_zone field of the Location, for example: 2015-12-27, valid until this day (exclusive). Same syntax as start_date. This property is OCPI-compliant. */
|
|
2942
3005
|
end_date?: Maybe<Scalars["String"]>;
|
|
2943
|
-
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */
|
|
3006
|
+
/** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used. This property is OCPI-compliant. */
|
|
2944
3007
|
min_kwh?: Maybe<Scalars["Float"]>;
|
|
2945
|
-
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */
|
|
3008
|
+
/** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used. This property is OCPI-compliant. */
|
|
2946
3009
|
max_kwh?: Maybe<Scalars["Float"]>;
|
|
2947
|
-
/** Sum of the minimum current in over all phases, for example 5. When the EV is charging with more than the defined amount of current, this tariff element is/becomes active. If the charging current is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum current over the entire charging session. This restriction can make a tariff element become active when the charging current is above the defined value, but the tariff element MUST no longer be active when the charging current drops below the defined value */
|
|
3010
|
+
/** Sum of the minimum current in over all phases, for example 5. When the EV is charging with more than the defined amount of current, this tariff element is/becomes active. If the charging current is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum current over the entire charging session. This restriction can make a tariff element become active when the charging current is above the defined value, but the tariff element MUST no longer be active when the charging current drops below the defined value. This property is OCPI-compliant. */
|
|
2948
3011
|
min_current?: Maybe<Scalars["Float"]>;
|
|
2949
|
-
/** Sum of the maximum current in over all phases, for example 20. When the EV is charging with less than the defined amount of current, this tariff element becomes/is active. If the charging current is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This describes NOT the maximum current over the entire Charging Session. This restriction can make a tariff element become active when the charging current is below this value, but the tariff element MUST no longer be active when the charging current raises above the defined value */
|
|
3012
|
+
/** Sum of the maximum current in over all phases, for example 20. When the EV is charging with less than the defined amount of current, this tariff element becomes/is active. If the charging current is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This describes NOT the maximum current over the entire Charging Session. This restriction can make a tariff element become active when the charging current is below this value, but the tariff element MUST no longer be active when the charging current raises above the defined value. This property is OCPI-compliant. */
|
|
2950
3013
|
max_current?: Maybe<Scalars["Float"]>;
|
|
2951
|
-
/** Minimum power in kW, for example 5. When the EV is charging with more than the defined amount of power, this tariff element is/becomes active. If the charging power is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum power over the entire charging session. This restriction can make a tariff element become active when the charging power is above this value, but the TariffElement MUST no longer be active when the charging power drops below the defined value */
|
|
3014
|
+
/** Minimum power in kW, for example 5. When the EV is charging with more than the defined amount of power, this tariff element is/becomes active. If the charging power is or becomes lower, this tariff element is not or no longer valid and becomes inactive. This does not describe the minimum power over the entire charging session. This restriction can make a tariff element become active when the charging power is above this value, but the TariffElement MUST no longer be active when the charging power drops below the defined value. This property is OCPI-compliant. */
|
|
2952
3015
|
min_power?: Maybe<Scalars["Float"]>;
|
|
2953
|
-
/** Maximum power in kW, for example 20. When the EV is charging with less than the defined amount of power, this tariff element becomes/is active. If the charging power is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This does not describe the maximum power over the entire charging session. This restriction can make a tariff element become active when the charging power is below this value, but the TariffElement MUST no longer be active when the charging power raises above the defined value */
|
|
3016
|
+
/** Maximum power in kW, for example 20. When the EV is charging with less than the defined amount of power, this tariff element becomes/is active. If the charging power is or becomes higher, this tariff element is not or no longer valid and becomes inactive. This does not describe the maximum power over the entire charging session. This restriction can make a tariff element become active when the charging power is below this value, but the TariffElement MUST no longer be active when the charging power raises above the defined value. This property is OCPI-compliant. */
|
|
2954
3017
|
max_power?: Maybe<Scalars["Float"]>;
|
|
2955
|
-
/** Minimum duration in seconds the charging session MUST last (inclusive). When the duration of a charging session is longer than the defined value, this TariffElement is or becomes active. Before that moment, this tariff element is not yet active */
|
|
3018
|
+
/** Minimum duration in seconds the charging session MUST last (inclusive). When the duration of a charging session is longer than the defined value, this TariffElement is or becomes active. Before that moment, this tariff element is not yet active. This property is OCPI-compliant. */
|
|
2956
3019
|
min_duration?: Maybe<Scalars["Float"]>;
|
|
2957
|
-
/** Maximum duration in seconds the charging session MUST last (exclusive). When the duration of a charging session is shorter than the defined value, this tariff element is or becomes active. After that moment, this tariff element is no longer active */
|
|
3020
|
+
/** Maximum duration in seconds the charging session MUST last (exclusive). When the duration of a charging session is shorter than the defined value, this tariff element is or becomes active. After that moment, this tariff element is no longer active. This property is OCPI-compliant. */
|
|
2958
3021
|
max_duration?: Maybe<Scalars["Float"]>;
|
|
2959
|
-
/** Which day(s) of the week this tariff element is active. */
|
|
3022
|
+
/** Which day(s) of the week this tariff element is active. This property is OCPI-compliant. */
|
|
2960
3023
|
day_of_week?: Maybe<OCPIDayOfWeek>;
|
|
2961
|
-
/** When this field is present, the tariff element describes reservation costs. A reservation starts when the reservation is made, and ends when the drivers starts charging on the reserved EVSE/Location, or when the reservation expires. A reservation can only have: FLAT and TIME TariffDimensions, where TIME is for the duration of the reservation */
|
|
3024
|
+
/** When this field is present, the tariff element describes reservation costs. A reservation starts when the reservation is made, and ends when the drivers starts charging on the reserved EVSE/Location, or when the reservation expires. A reservation can only have: FLAT and TIME TariffDimensions, where TIME is for the duration of the reservation. This property is OCPI-compliant. */
|
|
2962
3025
|
reservation?: Maybe<OCPIReservationRestrictionType>;
|
|
2963
3026
|
};
|
|
2964
3027
|
export declare enum OCPITariffType {
|
|
@@ -2973,7 +3036,7 @@ export declare enum OCPITariffType {
|
|
|
2973
3036
|
/** Used to describe that a tariff is valid when using an RFID, without any charging preference, or when charging preference: REGULAR is set for the session */
|
|
2974
3037
|
REGULAR = "REGULAR"
|
|
2975
3038
|
}
|
|
2976
|
-
/** List of charging modes that are supported */
|
|
3039
|
+
/** List of charging modes that are supported. */
|
|
2977
3040
|
export declare enum OICPChargingModes {
|
|
2978
3041
|
MODE_1 = "mode_1",
|
|
2979
3042
|
MODE_2 = "mode_2",
|
|
@@ -2981,14 +3044,14 @@ export declare enum OICPChargingModes {
|
|
|
2981
3044
|
MODE_4 = "mode_4",
|
|
2982
3045
|
CHADEMO = "chademo"
|
|
2983
3046
|
}
|
|
2984
|
-
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values */
|
|
3047
|
+
/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
|
|
2985
3048
|
export declare type OICPConnectorCustomProperties = {
|
|
2986
|
-
/** Returns whether the connector is able to deliver different power outputs */
|
|
3049
|
+
/** Returns whether the connector is able to deliver different power outputs. */
|
|
2987
3050
|
dynamic_power_level?: Maybe<Scalars["Boolean"]>;
|
|
2988
|
-
/** List of charging modes that are supported as specified by IEC 61851-1 */
|
|
3051
|
+
/** List of charging modes that are supported as specified by IEC 61851-1. */
|
|
2989
3052
|
charging_modes?: Maybe<Array<OICPChargingModes>>;
|
|
2990
3053
|
};
|
|
2991
|
-
/** List of authentication modes that are supported */
|
|
3054
|
+
/** List of authentication modes that are supported. */
|
|
2992
3055
|
export declare enum OICPEvseAuthenticationMode {
|
|
2993
3056
|
NFC_RFID_CLASSIC = "nfc_rfid_classic",
|
|
2994
3057
|
NFC_RFID_DESFIRE = "nfc_rfid_desfire",
|
|
@@ -2997,47 +3060,47 @@ export declare enum OICPEvseAuthenticationMode {
|
|
|
2997
3060
|
DIRECT_PAYMENT = "direct_payment",
|
|
2998
3061
|
NO_AUTHENTICATION_REQUIRED = "no_authentication_required"
|
|
2999
3062
|
}
|
|
3000
|
-
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3063
|
+
/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3001
3064
|
export declare type OICPEvseCustomProperties = {
|
|
3002
|
-
/** List of authentication modes that are supported */
|
|
3065
|
+
/** List of authentication modes that are supported. */
|
|
3003
3066
|
authentication_modes: Array<OICPEvseAuthenticationMode>;
|
|
3004
|
-
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh */
|
|
3067
|
+
/** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh. */
|
|
3005
3068
|
max_capacity?: Maybe<Scalars["Int"]>;
|
|
3006
|
-
/** List of payment options that are supported */
|
|
3069
|
+
/** List of payment options that are supported. */
|
|
3007
3070
|
payment_options: Array<OICPPaymentOptions>;
|
|
3008
|
-
/** List of value added services that are supported */
|
|
3071
|
+
/** List of value added services that are supported. */
|
|
3009
3072
|
value_added_services: Array<OICPValueAddedServices>;
|
|
3010
|
-
/** List of additional info by locale */
|
|
3073
|
+
/** List of additional info by locale. */
|
|
3011
3074
|
additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;
|
|
3012
|
-
/** When the value is set to false this station does not support remote start and stop by Hubject */
|
|
3075
|
+
/** When the value is set to false this station does not support remote start and stop by Hubject. */
|
|
3013
3076
|
is_hubject_compatible: Scalars["Boolean"];
|
|
3014
|
-
/** Name of the charging point manufacturer */
|
|
3077
|
+
/** Name of the charging point manufacturer. */
|
|
3015
3078
|
hardware_manufacturer?: Maybe<Scalars["String"]>;
|
|
3016
3079
|
};
|
|
3017
3080
|
export declare type OICPEvseCustomPropertiesAdditionalInfo = {
|
|
3018
|
-
/** The language in which the additional info text is provided */
|
|
3081
|
+
/** The language in which the additional info text is provided. */
|
|
3019
3082
|
lang?: Maybe<Scalars["String"]>;
|
|
3020
|
-
/** Additional info text value */
|
|
3083
|
+
/** Additional info text value. */
|
|
3021
3084
|
value?: Maybe<Scalars["String"]>;
|
|
3022
3085
|
};
|
|
3023
|
-
/** List of payment options that are supported */
|
|
3086
|
+
/** List of payment options that are supported. */
|
|
3024
3087
|
export declare enum OICPPaymentOptions {
|
|
3025
3088
|
NO_PAYMENT = "no_payment",
|
|
3026
3089
|
DIRECT = "direct",
|
|
3027
3090
|
CONTRACT = "contract"
|
|
3028
3091
|
}
|
|
3029
|
-
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
3092
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
3030
3093
|
export declare type OICPStationCustomProperties = {
|
|
3031
|
-
/** Returns whether the station is a parking facility */
|
|
3094
|
+
/** Returns whether the station is a parking facility. */
|
|
3032
3095
|
parking_facility?: Maybe<Scalars["Boolean"]>;
|
|
3033
|
-
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1 */
|
|
3096
|
+
/** Returns an identifier for the precise parking spot. Eg. 36 or 12-1. */
|
|
3034
3097
|
parking_spot?: Maybe<Scalars["String"]>;
|
|
3035
|
-
/** Returns information on how the charging station provides metering law data */
|
|
3098
|
+
/** Returns information on how the charging station provides metering law data. */
|
|
3036
3099
|
calibration_law_data_availability: Scalars["String"];
|
|
3037
|
-
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future */
|
|
3100
|
+
/** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future. */
|
|
3038
3101
|
clearinghouse_id?: Maybe<Scalars["String"]>;
|
|
3039
3102
|
};
|
|
3040
|
-
/** List of value added services that are supported */
|
|
3103
|
+
/** List of value added services that are supported. */
|
|
3041
3104
|
export declare enum OICPValueAddedServices {
|
|
3042
3105
|
RESERVATION = "reservation",
|
|
3043
3106
|
DYNAMIC_PRICING = "dynamic_pricing",
|
|
@@ -3056,47 +3119,50 @@ export declare type OdometerInput = {
|
|
|
3056
3119
|
/** Source of inputted data, defaults to 'manual'. */
|
|
3057
3120
|
source?: Maybe<TelemetryInputSource>;
|
|
3058
3121
|
};
|
|
3059
|
-
/**
|
|
3122
|
+
/** Operator data which extends OCPI BusinessDetails. */
|
|
3060
3123
|
export declare type Operator = {
|
|
3061
|
-
/** Unique operator ID */
|
|
3124
|
+
/** Unique operator ID. */
|
|
3062
3125
|
id?: Maybe<Scalars["ID"]>;
|
|
3063
|
-
/** External ID of an operator provided by the operator data source */
|
|
3126
|
+
/** External ID of an operator provided by the operator data source. */
|
|
3064
3127
|
external_id?: Maybe<Scalars["String"]>;
|
|
3065
|
-
/** Name of an operator */
|
|
3128
|
+
/** Name of an operator. This property is OCPI-compliant. */
|
|
3066
3129
|
name?: Maybe<Scalars["String"]>;
|
|
3067
|
-
/** Link to an operator’s website */
|
|
3130
|
+
/** Link to an operator’s website. This property is OCPI-compliant. */
|
|
3068
3131
|
website?: Maybe<Scalars["String"]>;
|
|
3069
|
-
/** Image link to an operator’s logo */
|
|
3132
|
+
/** Image link to an operator’s logo. This property is OCPI-compliant. */
|
|
3070
3133
|
logo?: Maybe<OCPIImage>;
|
|
3071
|
-
/**
|
|
3134
|
+
/**
|
|
3135
|
+
* ISO-3166 alpha-2 country code an operator is active in.
|
|
3136
|
+
* @deprecated In favor of countries.
|
|
3137
|
+
*/
|
|
3072
3138
|
country?: Maybe<Scalars["String"]>;
|
|
3073
3139
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3074
3140
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3075
|
-
/** Contact information */
|
|
3141
|
+
/** Contact information. */
|
|
3076
3142
|
contact?: Maybe<Contact>;
|
|
3077
|
-
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level */
|
|
3143
|
+
/** Ranking level on which the operator is placed or null in case the operator is not on any ranking level. */
|
|
3078
3144
|
ranking?: Maybe<Scalars["Int"]>;
|
|
3079
|
-
/** Flag which indicates if the operator is in the excluded list */
|
|
3145
|
+
/** Flag which indicates if the operator is in the excluded list. */
|
|
3080
3146
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3081
3147
|
};
|
|
3082
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3148
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3083
3149
|
export declare type OperatorListFilter = {
|
|
3084
3150
|
/** ISO-3166 alpha-2 country codes an operator is active in. */
|
|
3085
3151
|
countries?: Maybe<Array<CountryCodeAlpha2>>;
|
|
3086
|
-
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10 */
|
|
3152
|
+
/** List of ranking level(s) to be retrieved. Valid values are 1 to 10. */
|
|
3087
3153
|
ranking?: Maybe<Array<Scalars["Int"]>>;
|
|
3088
|
-
/** Only retrieve operators that are in the excluded list */
|
|
3154
|
+
/** Only retrieve operators that are in the excluded list. */
|
|
3089
3155
|
excluded?: Maybe<Scalars["Boolean"]>;
|
|
3090
3156
|
};
|
|
3091
|
-
/** Filter which can be applied to retrieve the operator list action */
|
|
3157
|
+
/** Filter which can be applied to retrieve the operator list action. */
|
|
3092
3158
|
export declare type OperatorListQuery = {
|
|
3093
|
-
/** Unique operator ID */
|
|
3159
|
+
/** Unique operator ID. */
|
|
3094
3160
|
id?: Maybe<Scalars["ID"]>;
|
|
3095
|
-
/** External ID of an operator provided by an operator data source */
|
|
3161
|
+
/** External ID of an operator provided by an operator data source. */
|
|
3096
3162
|
external_id?: Maybe<Scalars["String"]>;
|
|
3097
|
-
/** Exact name */
|
|
3163
|
+
/** Exact name. */
|
|
3098
3164
|
name?: Maybe<Scalars["String"]>;
|
|
3099
|
-
/** Exact country code */
|
|
3165
|
+
/** Exact country code. */
|
|
3100
3166
|
country?: Maybe<Scalars["String"]>;
|
|
3101
3167
|
};
|
|
3102
3168
|
export declare type OutsideTempInput = {
|
|
@@ -3108,9 +3174,9 @@ export declare type OutsideTempInput = {
|
|
|
3108
3174
|
source?: Maybe<TelemetryInputSource>;
|
|
3109
3175
|
};
|
|
3110
3176
|
export declare enum ParkingCost {
|
|
3111
|
-
/** Parking is free */
|
|
3177
|
+
/** Parking is free. */
|
|
3112
3178
|
FREE = "free",
|
|
3113
|
-
/** Parking includes a fee */
|
|
3179
|
+
/** Parking includes a fee. */
|
|
3114
3180
|
PAID = "paid"
|
|
3115
3181
|
}
|
|
3116
3182
|
export declare type PathSegment = {
|
|
@@ -3174,6 +3240,14 @@ export declare type PowerStats = {
|
|
|
3174
3240
|
/** The list of powers for the speed type */
|
|
3175
3241
|
powers?: Maybe<Array<Maybe<PowerList>>>;
|
|
3176
3242
|
};
|
|
3243
|
+
export declare enum PowerSupported {
|
|
3244
|
+
/** Power is supported. */
|
|
3245
|
+
AVAILABLE = "available",
|
|
3246
|
+
/** Power is not supported. */
|
|
3247
|
+
NOT_AVAILABLE = "not_available",
|
|
3248
|
+
/** Power is announced, but not yet supported. */
|
|
3249
|
+
ANNOUNCED = "announced"
|
|
3250
|
+
}
|
|
3177
3251
|
export declare enum PowerUnit {
|
|
3178
3252
|
/** Return the power in kilowatts. */
|
|
3179
3253
|
KILOWATT = "kilowatt",
|
|
@@ -3198,17 +3272,17 @@ export declare type Price = {
|
|
|
3198
3272
|
displayValue?: Maybe<Scalars["String"]>;
|
|
3199
3273
|
};
|
|
3200
3274
|
export declare type Pricing = {
|
|
3201
|
-
/** Unique ID of a price */
|
|
3275
|
+
/** Unique ID of a price. */
|
|
3202
3276
|
id?: Maybe<Scalars["String"]>;
|
|
3203
|
-
/** Price details */
|
|
3277
|
+
/** Price details. */
|
|
3204
3278
|
price_list?: Maybe<Array<Maybe<PricingList>>>;
|
|
3205
3279
|
};
|
|
3206
3280
|
export declare type PricingList = {
|
|
3207
|
-
/** (MSP) Mobility Service Provider */
|
|
3281
|
+
/** (MSP) Mobility Service Provider. */
|
|
3208
3282
|
partner?: Maybe<Scalars["String"]>;
|
|
3209
|
-
/** Product details */
|
|
3283
|
+
/** Product details. */
|
|
3210
3284
|
product?: Maybe<PricingListProduct>;
|
|
3211
|
-
/** Price product elements */
|
|
3285
|
+
/** Price product elements. */
|
|
3212
3286
|
elements?: Maybe<Array<Maybe<PricingListElement>>>;
|
|
3213
3287
|
};
|
|
3214
3288
|
export declare type PricingListElement = {
|
|
@@ -3216,29 +3290,29 @@ export declare type PricingListElement = {
|
|
|
3216
3290
|
type?: Maybe<PricingListElementType>;
|
|
3217
3291
|
/** Price of the element type without VAT. */
|
|
3218
3292
|
price_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3219
|
-
/** VAT percentage to apply */
|
|
3293
|
+
/** VAT percentage to apply. */
|
|
3220
3294
|
vat?: Maybe<Scalars["Float"]>;
|
|
3221
3295
|
};
|
|
3222
3296
|
export declare enum PricingListElementType {
|
|
3223
|
-
/** Price per kWh */
|
|
3297
|
+
/** Price per kWh. */
|
|
3224
3298
|
ENERGY = "ENERGY",
|
|
3225
|
-
/** Starting price, fixed fee per charge session */
|
|
3299
|
+
/** Starting price, fixed fee per charge session. */
|
|
3226
3300
|
FLAT = "FLAT",
|
|
3227
|
-
/** Fixed price per hour */
|
|
3301
|
+
/** Fixed price per hour. */
|
|
3228
3302
|
TIME = "TIME",
|
|
3229
|
-
/** Parking price per hour */
|
|
3303
|
+
/** Parking price per hour. */
|
|
3230
3304
|
PARKING_TIME = "PARKING_TIME"
|
|
3231
3305
|
}
|
|
3232
3306
|
export declare type PricingListProduct = {
|
|
3233
|
-
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price */
|
|
3307
|
+
/** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price. */
|
|
3234
3308
|
name?: Maybe<Scalars["String"]>;
|
|
3235
|
-
/** Description of the product */
|
|
3309
|
+
/** Description of the product. */
|
|
3236
3310
|
description?: Maybe<Scalars["String"]>;
|
|
3237
|
-
/** Subscription type */
|
|
3311
|
+
/** Subscription type. */
|
|
3238
3312
|
subscription_type?: Maybe<Scalars["String"]>;
|
|
3239
|
-
/** Subscription fee without VAT */
|
|
3313
|
+
/** Subscription fee without VAT. */
|
|
3240
3314
|
subscription_fee_excl_vat?: Maybe<Scalars["Float"]>;
|
|
3241
|
-
/** Currency */
|
|
3315
|
+
/** Currency. */
|
|
3242
3316
|
currency?: Maybe<Scalars["String"]>;
|
|
3243
3317
|
};
|
|
3244
3318
|
export declare type Query = {
|
|
@@ -3274,17 +3348,17 @@ export declare type Query = {
|
|
|
3274
3348
|
userReviewList?: Maybe<Array<Review>>;
|
|
3275
3349
|
/** Get a route by ID */
|
|
3276
3350
|
route?: Maybe<Route>;
|
|
3277
|
-
/** [BETA]
|
|
3351
|
+
/** [BETA] Emissions profile for route. */
|
|
3278
3352
|
routeEmissions: RouteEmissions;
|
|
3279
3353
|
/** Retrieve information about a route path segment */
|
|
3280
3354
|
routePath?: Maybe<RoutePath>;
|
|
3281
3355
|
/** Get the station statistics */
|
|
3282
3356
|
stationStats?: Maybe<StationStats>;
|
|
3283
|
-
/** Get information about a station by its ID */
|
|
3357
|
+
/** Get information about a station by its ID. */
|
|
3284
3358
|
station?: Maybe<Station>;
|
|
3285
|
-
/** Get a full list of stations */
|
|
3359
|
+
/** Get a full list of stations. */
|
|
3286
3360
|
stationList?: Maybe<Array<Maybe<Station>>>;
|
|
3287
|
-
/** Search for stations around a GeoJSON point with a specific distance in meters */
|
|
3361
|
+
/** Search for stations around a GeoJSON point with a specific distance in meters. */
|
|
3288
3362
|
stationAround?: Maybe<Array<Maybe<Station>>>;
|
|
3289
3363
|
/** Get information about a tariff by the tariff ID */
|
|
3290
3364
|
tariff?: Maybe<OCPITariff>;
|
|
@@ -3610,103 +3684,103 @@ export declare type RequestUser = {
|
|
|
3610
3684
|
/** ID of the user. */
|
|
3611
3685
|
id?: Maybe<Scalars["ID"]>;
|
|
3612
3686
|
};
|
|
3613
|
-
/**
|
|
3687
|
+
/** Review model. */
|
|
3614
3688
|
export declare type Review = {
|
|
3615
|
-
/** ID of a review */
|
|
3689
|
+
/** ID of a review. */
|
|
3616
3690
|
id: Scalars["ID"];
|
|
3617
|
-
/** Station for which a review was provided */
|
|
3691
|
+
/** Station for which a review was provided. */
|
|
3618
3692
|
station?: Maybe<Station>;
|
|
3619
|
-
/** User who added a review. If a review was added by an anonymous user, this will be null */
|
|
3693
|
+
/** User who added a review. If a review was added by an anonymous user, this will be null. */
|
|
3620
3694
|
user?: Maybe<ReviewUser>;
|
|
3621
|
-
/** Rating of a review */
|
|
3695
|
+
/** Rating of a review. */
|
|
3622
3696
|
rating?: Maybe<Scalars["Int"]>;
|
|
3623
|
-
/** Message of a review */
|
|
3697
|
+
/** Message of a review. */
|
|
3624
3698
|
message?: Maybe<Scalars["String"]>;
|
|
3625
|
-
/** Locale of a message */
|
|
3699
|
+
/** Locale of a message. */
|
|
3626
3700
|
locale?: Maybe<Scalars["String"]>;
|
|
3627
|
-
/** Vehicle that was provided/selected by a user */
|
|
3701
|
+
/** Vehicle that was provided/selected by a user. */
|
|
3628
3702
|
ev?: Maybe<Car>;
|
|
3629
|
-
/** Plug type that was provided/selected by a user */
|
|
3703
|
+
/** Plug type that was provided/selected by a user. */
|
|
3630
3704
|
plugType?: Maybe<ConnectorType>;
|
|
3631
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3705
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3632
3706
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3633
|
-
/** Boolean tags for a station review */
|
|
3707
|
+
/** Boolean tags for a station review. */
|
|
3634
3708
|
tags?: Maybe<ReviewTags>;
|
|
3635
|
-
/** Date and time when a review was created */
|
|
3709
|
+
/** Date and time when a review was created. */
|
|
3636
3710
|
createdAt?: Maybe<Scalars["String"]>;
|
|
3637
|
-
/** Date and time when a review was updated */
|
|
3711
|
+
/** Date and time when a review was updated. */
|
|
3638
3712
|
updatedAt?: Maybe<Scalars["String"]>;
|
|
3639
3713
|
};
|
|
3640
|
-
/** Form input to add a new review */
|
|
3714
|
+
/** Form input to add a new review. */
|
|
3641
3715
|
export declare type ReviewAdd = {
|
|
3642
|
-
/** Station ID for which a review is provided */
|
|
3716
|
+
/** Station ID for which a review is provided. */
|
|
3643
3717
|
stationId: Scalars["String"];
|
|
3644
|
-
/** Rating of a review */
|
|
3718
|
+
/** Rating of a review. */
|
|
3645
3719
|
rating: Scalars["Int"];
|
|
3646
|
-
/** Review message */
|
|
3720
|
+
/** Review message. */
|
|
3647
3721
|
message?: Maybe<Scalars["String"]>;
|
|
3648
|
-
/** Locale of a message */
|
|
3722
|
+
/** Locale of a message. */
|
|
3649
3723
|
locale?: Maybe<Scalars["String"]>;
|
|
3650
|
-
/** ID of the vehicle that was provided/selected by a user */
|
|
3724
|
+
/** ID of the vehicle that was provided/selected by a user. */
|
|
3651
3725
|
ev?: Maybe<Scalars["String"]>;
|
|
3652
|
-
/** Plug type that was provided/selected by a user */
|
|
3726
|
+
/** Plug type that was provided/selected by a user. */
|
|
3653
3727
|
plugType?: Maybe<ConnectorType>;
|
|
3654
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3728
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3655
3729
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3656
|
-
/** Boolean tags for a station review */
|
|
3730
|
+
/** Boolean tags for a station review. */
|
|
3657
3731
|
tags?: Maybe<ReviewTagsInput>;
|
|
3658
3732
|
};
|
|
3659
|
-
/** Form input for edit an existing review */
|
|
3733
|
+
/** Form input for edit an existing review. */
|
|
3660
3734
|
export declare type ReviewEdit = {
|
|
3661
|
-
/** Rating of a review */
|
|
3735
|
+
/** Rating of a review. */
|
|
3662
3736
|
rating: Scalars["Int"];
|
|
3663
|
-
/** Review message */
|
|
3737
|
+
/** Review message. */
|
|
3664
3738
|
message?: Maybe<Scalars["String"]>;
|
|
3665
|
-
/** Locale of a message */
|
|
3739
|
+
/** Locale of a message. */
|
|
3666
3740
|
locale?: Maybe<Scalars["String"]>;
|
|
3667
|
-
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer */
|
|
3741
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
3668
3742
|
properties?: Maybe<Scalars["JSON"]>;
|
|
3669
|
-
/** Boolean tags for a station review */
|
|
3743
|
+
/** Boolean tags for a station review. */
|
|
3670
3744
|
tags?: Maybe<ReviewTagsInput>;
|
|
3671
3745
|
};
|
|
3672
|
-
/** Statistical information for reviews of a station */
|
|
3746
|
+
/** Statistical information for reviews of a station. */
|
|
3673
3747
|
export declare type ReviewStats = {
|
|
3674
|
-
/** Average of all reviews */
|
|
3748
|
+
/** Average of all reviews. */
|
|
3675
3749
|
rating?: Maybe<Scalars["Float"]>;
|
|
3676
|
-
/** 'Total number of reviews */
|
|
3750
|
+
/** 'Total number of reviews. */
|
|
3677
3751
|
count?: Maybe<Scalars["Int"]>;
|
|
3678
3752
|
};
|
|
3679
|
-
/** Boolean tags for the station review */
|
|
3753
|
+
/** Boolean tags for the station review. */
|
|
3680
3754
|
export declare type ReviewTags = {
|
|
3681
|
-
/** Flag which indicates if the station was working when the review was added */
|
|
3755
|
+
/** Flag which indicates if the station was working when the review was added. */
|
|
3682
3756
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3683
|
-
/** Flag which indicates if the user recommended the station when the review was added */
|
|
3757
|
+
/** Flag which indicates if the user recommended the station when the review was added. */
|
|
3684
3758
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3685
3759
|
};
|
|
3686
|
-
/** Boolean tags for a station review */
|
|
3760
|
+
/** Boolean tags for a station review. */
|
|
3687
3761
|
export declare type ReviewTagsInput = {
|
|
3688
|
-
/** Flag which indicates if a station was working when the review was added */
|
|
3762
|
+
/** Flag which indicates if a station was working when the review was added. */
|
|
3689
3763
|
working?: Maybe<Scalars["Boolean"]>;
|
|
3690
|
-
/** Flag which indicates if a user recommended a station when the review was added */
|
|
3764
|
+
/** Flag which indicates if a user recommended a station when the review was added. */
|
|
3691
3765
|
recommended?: Maybe<Scalars["Boolean"]>;
|
|
3692
3766
|
};
|
|
3693
|
-
/** Special format for the user of a review */
|
|
3767
|
+
/** Special format for the user of a review. */
|
|
3694
3768
|
export declare type ReviewUser = {
|
|
3695
|
-
/** User full name. If a review was added by an anonymous user, this will be null */
|
|
3769
|
+
/** User full name. If a review was added by an anonymous user, this will be null. */
|
|
3696
3770
|
name?: Maybe<Scalars["String"]>;
|
|
3697
3771
|
/**
|
|
3698
|
-
* User ID
|
|
3772
|
+
* User ID.
|
|
3699
3773
|
* @deprecated Not sent back anymore, will be null
|
|
3700
3774
|
*/
|
|
3701
3775
|
id?: Maybe<Scalars["ID"]>;
|
|
3702
3776
|
/**
|
|
3703
|
-
* First name
|
|
3704
|
-
* @deprecated
|
|
3777
|
+
* First name.
|
|
3778
|
+
* @deprecated In favor of name.
|
|
3705
3779
|
*/
|
|
3706
3780
|
firstName?: Maybe<Scalars["String"]>;
|
|
3707
3781
|
/**
|
|
3708
|
-
* Last name
|
|
3709
|
-
* @deprecated
|
|
3782
|
+
* Last name.
|
|
3783
|
+
* @deprecated In favor of name
|
|
3710
3784
|
*/
|
|
3711
3785
|
lastName?: Maybe<Scalars["String"]>;
|
|
3712
3786
|
};
|
|
@@ -3917,7 +3991,7 @@ export declare type RouteEmissions = {
|
|
|
3917
3991
|
route_alternative_id: Scalars["ID"];
|
|
3918
3992
|
/** Emissions profile for the vehicle used in route. */
|
|
3919
3993
|
route_vehicle: RouteVehicleEmissions;
|
|
3920
|
-
/** Emissions profile for
|
|
3994
|
+
/** Emissions profile for an equivalent internal combustion engine vehicle. */
|
|
3921
3995
|
internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;
|
|
3922
3996
|
};
|
|
3923
3997
|
export declare type RouteEmissionsinternal_combustion_vehicleArgs = {
|
|
@@ -4032,7 +4106,7 @@ export declare enum RouteInstructionSign {
|
|
|
4032
4106
|
IGNORE = "IGNORE"
|
|
4033
4107
|
}
|
|
4034
4108
|
export declare type RouteInternalCombustionVehicleEmissions = {
|
|
4035
|
-
/** Total emissions. */
|
|
4109
|
+
/** Total co2e emissions. */
|
|
4036
4110
|
total: Scalars["Float"];
|
|
4037
4111
|
/** Embedded emissions. */
|
|
4038
4112
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4047,7 +4121,7 @@ export declare type RouteInternalCombustionVehicleEmissionstotalArgs = {
|
|
|
4047
4121
|
unit?: Maybe<EmissionUnit>;
|
|
4048
4122
|
};
|
|
4049
4123
|
export declare type RouteInternalCombustionVehicleLegEmissions = {
|
|
4050
|
-
/** Total emissions for the leg. */
|
|
4124
|
+
/** Total co2e emissions for the leg. */
|
|
4051
4125
|
total: Scalars["Float"];
|
|
4052
4126
|
/** Embedded emissions for the leg. */
|
|
4053
4127
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4644,7 +4718,7 @@ export declare enum RouteTagType {
|
|
|
4644
4718
|
CROSSBORDER = "crossborder"
|
|
4645
4719
|
}
|
|
4646
4720
|
export declare type RouteVehicleEmissions = {
|
|
4647
|
-
/** Total emissions. */
|
|
4721
|
+
/** Total co2e emissions. */
|
|
4648
4722
|
total: Scalars["Float"];
|
|
4649
4723
|
/** Embedded emissions. */
|
|
4650
4724
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4659,7 +4733,7 @@ export declare type RouteVehicleEmissionstotalArgs = {
|
|
|
4659
4733
|
unit?: Maybe<EmissionUnit>;
|
|
4660
4734
|
};
|
|
4661
4735
|
export declare type RouteVehicleLegEmissions = {
|
|
4662
|
-
/** Total emissions for the leg. */
|
|
4736
|
+
/** Total co2e emissions for the leg. */
|
|
4663
4737
|
total: Scalars["Float"];
|
|
4664
4738
|
/** Embedded emissions for the leg. */
|
|
4665
4739
|
embedded: RouteEmbeddedEmissions;
|
|
@@ -4728,199 +4802,330 @@ export declare enum StateOfChargeUnit {
|
|
|
4728
4802
|
/** Return the state of charge as a percentage. */
|
|
4729
4803
|
PERCENTAGE = "percentage"
|
|
4730
4804
|
}
|
|
4731
|
-
/** Station data which extends OCPI Location */
|
|
4805
|
+
/** Station data which extends OCPI Location. */
|
|
4732
4806
|
export declare type Station = {
|
|
4733
|
-
/**
|
|
4734
|
-
review?: Maybe<ReviewStats>;
|
|
4735
|
-
/** Unique ID of a station */
|
|
4807
|
+
/** Unique ID of a station. This property is OCPI-compliant. */
|
|
4736
4808
|
id: Scalars["ID"];
|
|
4737
|
-
/** ISO-3166 alpha-2 country code of a station */
|
|
4809
|
+
/** ISO-3166 alpha-2 country code of a station. This property is OCPI-compliant. */
|
|
4738
4810
|
country_code?: Maybe<Scalars["String"]>;
|
|
4739
|
-
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard) */
|
|
4811
|
+
/** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). This property is OCPI-compliant. */
|
|
4740
4812
|
party_id?: Maybe<Scalars["String"]>;
|
|
4741
4813
|
/**
|
|
4742
4814
|
* Defines if a location may be published on a website or app etc.
|
|
4743
4815
|
* When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.
|
|
4744
|
-
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created
|
|
4816
|
+
* When the same location has EVSEs that may be published and may not be published, two 'locations' should be created. This property is OCPI-compliant.
|
|
4745
4817
|
*/
|
|
4746
4818
|
publish?: Maybe<Scalars["Boolean"]>;
|
|
4747
|
-
/** Name of a charging station */
|
|
4819
|
+
/** Name of a charging station. This property is OCPI-compliant. */
|
|
4748
4820
|
name?: Maybe<Scalars["String"]>;
|
|
4749
|
-
/** Street/block name and house number if available */
|
|
4821
|
+
/** Street/block name and house number if available. This property is OCPI-compliant. */
|
|
4750
4822
|
address?: Maybe<Scalars["String"]>;
|
|
4751
|
-
/** City or town */
|
|
4823
|
+
/** City or town. This property is OCPI-compliant. */
|
|
4752
4824
|
city?: Maybe<Scalars["String"]>;
|
|
4753
|
-
/** Postal code of a location, may only be omitted when a location has no postal code: in some countries charging locations at highways don’t have postal codes. */
|
|
4825
|
+
/** Postal code of a location, may only be omitted when a location has no postal code: in some countries charging locations at highways don’t have postal codes. This property is OCPI-compliant. */
|
|
4754
4826
|
postal_code?: Maybe<Scalars["String"]>;
|
|
4755
|
-
/** State or province of a location, only to be used when relevant */
|
|
4827
|
+
/** State or province of a location, only to be used when relevant. This property is OCPI-compliant. */
|
|
4756
4828
|
state?: Maybe<Scalars["String"]>;
|
|
4757
|
-
/** ISO 3166-1 alpha-3 code for the country of this station */
|
|
4829
|
+
/** ISO 3166-1 alpha-3 code for the country of this station. This property is OCPI-compliant. */
|
|
4758
4830
|
country?: Maybe<Scalars["String"]>;
|
|
4759
|
-
/** Coordinates of a location */
|
|
4831
|
+
/** Coordinates of a location. This property is OCPI-compliant. */
|
|
4760
4832
|
coordinates?: Maybe<OCPIGeoLocation>;
|
|
4761
|
-
/** Geographical location of related points relevant to a user */
|
|
4833
|
+
/** Geographical location of related points relevant to a user. This property is OCPI-compliant. */
|
|
4762
4834
|
related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;
|
|
4763
|
-
/** Type of parking at a charge point location */
|
|
4835
|
+
/** Type of parking at a charge point location. This property is OCPI-compliant. */
|
|
4764
4836
|
parking_type?: Maybe<OCPIParkingType>;
|
|
4765
|
-
/** EVSEs that belong to a station */
|
|
4837
|
+
/** EVSEs that belong to a station. This property is OCPI-compliant. */
|
|
4766
4838
|
evses?: Maybe<Array<Maybe<EVSE>>>;
|
|
4767
|
-
/** Human-readable directions on how to reach a station */
|
|
4839
|
+
/** Human-readable directions on how to reach a station. This property is OCPI-compliant. */
|
|
4768
4840
|
directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;
|
|
4769
|
-
/** Information about an operator */
|
|
4841
|
+
/** Information about an operator. This property is OCPI-compliant. */
|
|
4770
4842
|
operator?: Maybe<Operator>;
|
|
4771
|
-
/** Information about a suboperator if applicable */
|
|
4843
|
+
/** Information about a suboperator if applicable. This property is OCPI-compliant. */
|
|
4772
4844
|
suboperator?: Maybe<Operator>;
|
|
4773
|
-
/** Information about an owner if available */
|
|
4845
|
+
/** Information about an owner if available. This property is OCPI-compliant. */
|
|
4774
4846
|
owner?: Maybe<Operator>;
|
|
4775
|
-
/** Facilities a charging station belongs to */
|
|
4847
|
+
/** Facilities a charging station belongs to. This property is OCPI-compliant. */
|
|
4776
4848
|
facilities?: Maybe<Array<Maybe<OCPIFacility>>>;
|
|
4777
|
-
/** Value from the IANA time zone database representing the time zone of a location. Examples: "Europe/Oslo", "Europe/Zurich". (http://www.iana.org/time-zones) */
|
|
4849
|
+
/** Value from the IANA time zone database representing the time zone of a location. Examples: "Europe/Oslo", "Europe/Zurich". (http://www.iana.org/time-zones). This property is OCPI-compliant. */
|
|
4778
4850
|
time_zone?: Maybe<Scalars["String"]>;
|
|
4779
|
-
/** Times when an EVSEs at a location can be accessed for charging */
|
|
4851
|
+
/** Times when an EVSEs at a location can be accessed for charging. This property is OCPI-compliant. */
|
|
4780
4852
|
opening_times?: Maybe<OCPIHours>;
|
|
4781
|
-
/** Indicates if the EVSEs are still charging outside the opening hours. E.g. when a parking garage closes its barriers overnight, is it allowed to charge till the next morning? Default: true */
|
|
4853
|
+
/** Indicates if the EVSEs are still charging outside the opening hours. E.g. when a parking garage closes its barriers overnight, is it allowed to charge till the next morning? Default: true. This property is OCPI-compliant. */
|
|
4782
4854
|
charging_when_closed?: Maybe<Scalars["Boolean"]>;
|
|
4783
|
-
/** Links to images related to a location such as photos or logos */
|
|
4855
|
+
/** Links to images related to a location such as photos or logos. This property is OCPI-compliant. */
|
|
4784
4856
|
images?: Maybe<Array<Maybe<OCPIImage>>>;
|
|
4785
|
-
/** Details of the energy supplied at a location */
|
|
4857
|
+
/** Details of the energy supplied at a location. This property is OCPI-compliant. */
|
|
4786
4858
|
energy_mix?: Maybe<OCPIEnergyMix>;
|
|
4787
|
-
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created) */
|
|
4859
|
+
/** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). This property is OCPI-compliant. */
|
|
4788
4860
|
last_updated?: Maybe<Scalars["DateTime"]>;
|
|
4789
|
-
/** ID provided by a station data source */
|
|
4861
|
+
/** ID provided by a station data source. */
|
|
4790
4862
|
external_id?: Maybe<Scalars["String"]>;
|
|
4791
|
-
/** GeoJSON location of a charging station */
|
|
4863
|
+
/** GeoJSON location of a charging station. */
|
|
4792
4864
|
location?: Maybe<Point>;
|
|
4793
|
-
/** Elevation (altitude) level */
|
|
4865
|
+
/** Elevation (altitude) level. */
|
|
4794
4866
|
elevation?: Maybe<Scalars["Int"]>;
|
|
4795
|
-
/** Groups of EVSEs by power and type */
|
|
4867
|
+
/** Groups of EVSEs by power and type. */
|
|
4796
4868
|
chargers?: Maybe<Array<Maybe<Charger>>>;
|
|
4797
|
-
/** Amenities located at this location */
|
|
4869
|
+
/** Amenities located at this location. */
|
|
4798
4870
|
amenities?: Maybe<Scalars["JSON"]>;
|
|
4799
|
-
/** Enriched information about the physical address of a station */
|
|
4871
|
+
/** Enriched information about the physical address of a station. */
|
|
4800
4872
|
physical_address?: Maybe<Address>;
|
|
4801
|
-
/**
|
|
4873
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
4874
|
+
heavy_vehicles_properties?: Maybe<StationHeavyVehiclesProperties>;
|
|
4875
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
4876
|
+
heavy_vehicles_restrictions?: Maybe<StationHeavyVehiclesRestrictions>;
|
|
4877
|
+
/** Describes the vehicle restrictions at the location. */
|
|
4878
|
+
vehicle_restrictions?: Maybe<StationVehicleRestrictions>;
|
|
4879
|
+
/** Type of location where the charge point is located. For example, shop. */
|
|
4880
|
+
location_category?: Maybe<Scalars["String"]>;
|
|
4881
|
+
/** Coordinates for the location's entrances in decimal degrees. If available, there can be more than one entrances to the location. */
|
|
4882
|
+
entrance_for_navigation?: Maybe<Array<OCPIAdditionalGeoLocation>>;
|
|
4883
|
+
/** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
|
|
4802
4884
|
properties?: Maybe<Scalars["JSON"]>;
|
|
4803
|
-
/** A flag that indicates if a station has real-time information about the availability of its connectors */
|
|
4885
|
+
/** A flag that indicates if a station has real-time information about the availability of its connectors. */
|
|
4804
4886
|
realtime?: Maybe<Scalars["Boolean"]>;
|
|
4805
|
-
/**
|
|
4887
|
+
/**
|
|
4888
|
+
* A flag that indicates if a station is on private property.
|
|
4889
|
+
* @deprecated In favor of access_type.
|
|
4890
|
+
*/
|
|
4806
4891
|
private?: Maybe<Scalars["Boolean"]>;
|
|
4807
|
-
/** Connectors grouped by power */
|
|
4892
|
+
/** Connectors grouped by power. */
|
|
4808
4893
|
power?: Maybe<Scalars["JSON"]>;
|
|
4809
4894
|
/**
|
|
4810
|
-
* Station availability
|
|
4811
|
-
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy
|
|
4895
|
+
* Station availability.
|
|
4896
|
+
* @deprecated predicted_availability, no value will be sent. Deprecated in favor of predicted_occupancy.
|
|
4812
4897
|
*/
|
|
4813
4898
|
predicted_availability?: Maybe<Array<Maybe<StationPredictedAvailability>>>;
|
|
4814
|
-
/**
|
|
4815
|
-
* Predicted station occupancy
|
|
4816
|
-
* @deprecated In favor of custom_properties.predicted_occupancy
|
|
4817
|
-
*/
|
|
4899
|
+
/** Predicted station occupancy. */
|
|
4818
4900
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
4819
|
-
/** Charging speed for a station */
|
|
4901
|
+
/** Charging speed for a station. */
|
|
4820
4902
|
speed?: Maybe<StationSpeedType>;
|
|
4821
|
-
/** Global status for a station */
|
|
4903
|
+
/** Global status for a station. */
|
|
4822
4904
|
status?: Maybe<ChargerStatus>;
|
|
4823
|
-
/** Custom properties of a station. These are vendor specific and will return null values on the fields that are not supported by your station database */
|
|
4905
|
+
/** Custom properties of a station. These are vendor specific and will return null values on the fields that are not supported by your station database. */
|
|
4824
4906
|
custom_properties?: Maybe<StationCustomProperties>;
|
|
4907
|
+
/** Review of a station. */
|
|
4908
|
+
review?: Maybe<ReviewStats>;
|
|
4909
|
+
/** List of eMSP cards accepted at a charging station. */
|
|
4910
|
+
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
4911
|
+
/** Phone number for assistance at a charging station. */
|
|
4912
|
+
support_phone_number?: Maybe<Scalars["String"]>;
|
|
4913
|
+
/** Charging behavior of a station. */
|
|
4914
|
+
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
4915
|
+
/** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values. */
|
|
4916
|
+
reliability_score?: Maybe<Scalars["Int"]>;
|
|
4917
|
+
/** Indicates the authentication and payment methods. */
|
|
4918
|
+
adhoc_authorisation_payment_method?: Maybe<Array<StationAdhocAuthorisationPaymentMethod>>;
|
|
4919
|
+
/** Type of access to the charging station. */
|
|
4920
|
+
access_type?: Maybe<AccessType>;
|
|
4825
4921
|
};
|
|
4826
|
-
|
|
4922
|
+
export declare enum StationAdhocAuthorisationPaymentMethod {
|
|
4923
|
+
/** Authentication by car through Plug and Charge. */
|
|
4924
|
+
AUTH_BY_CAR_PLUG_AND_CHARGE = "AUTH_BY_CAR_PLUG_AND_CHARGE",
|
|
4925
|
+
/** Apple Pay. */
|
|
4926
|
+
ONLINE_APPLE_PAY = "ONLINE_APPLE_PAY",
|
|
4927
|
+
/** Terminal in app. */
|
|
4928
|
+
TERMINAL_IN_APP = "TERMINAL_IN_APP",
|
|
4929
|
+
/** PayPal. */
|
|
4930
|
+
ONLINE_PAYPAL = "ONLINE_PAYPAL",
|
|
4931
|
+
/** Service Provider RFID Card. */
|
|
4932
|
+
SERVICE_PROVIDER_RFID_CARD = "SERVICE_PROVIDER_RFID_CARD",
|
|
4933
|
+
/** Terminal QR Code. */
|
|
4934
|
+
TERMINAL_QR_CODE = "TERMINAL_QR_CODE",
|
|
4935
|
+
/** Terminal Credit Card. */
|
|
4936
|
+
TERMINAL_CREDIT_CARD = "TERMINAL_CREDIT_CARD",
|
|
4937
|
+
/** Terminal Debit Card. */
|
|
4938
|
+
TERMINAL_DEBIT_CARD = "TERMINAL_DEBIT_CARD",
|
|
4939
|
+
/** Terminal SMS. */
|
|
4940
|
+
TERMINAL_SMS = "TERMINAL_SMS",
|
|
4941
|
+
/** Credit Card. */
|
|
4942
|
+
ONLINE_CREDIT_CARD = "ONLINE_CREDIT_CARD",
|
|
4943
|
+
/** Other. */
|
|
4944
|
+
OTHER_OTHER = "OTHER_OTHER",
|
|
4945
|
+
/** Terminal Contactless. */
|
|
4946
|
+
TERMINAL_CONTACTLESS = "TERMINAL_CONTACTLESS",
|
|
4947
|
+
/** Google Pay. */
|
|
4948
|
+
ONLINE_GOOGLE_PAY = "ONLINE_GOOGLE_PAY",
|
|
4949
|
+
/** Bank Payment. */
|
|
4950
|
+
ONLINE_BANK_PAYMENT = "ONLINE_BANK_PAYMENT",
|
|
4951
|
+
/** Authentication by car through Auto Charge. */
|
|
4952
|
+
AUTH_BY_CAR_AUTOCHARGE = "AUTH_BY_CAR_AUTOCHARGE"
|
|
4953
|
+
}
|
|
4954
|
+
/** Filter which can be applied to retrieve the station around list action. */
|
|
4827
4955
|
export declare type StationAroundFilter = {
|
|
4828
|
-
/**
|
|
4956
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
4829
4957
|
location?: Maybe<PointInput>;
|
|
4830
|
-
/** Distance, in meters, to search around */
|
|
4958
|
+
/** Distance, in meters, to search around. */
|
|
4831
4959
|
distance?: Maybe<Scalars["Int"]>;
|
|
4832
|
-
/** Powers in kWh */
|
|
4960
|
+
/** Powers in kWh. */
|
|
4833
4961
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
4834
|
-
/** Amenities available near a station */
|
|
4962
|
+
/** Amenities available near a station. */
|
|
4835
4963
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
4836
|
-
/** Station speed */
|
|
4964
|
+
/** Station speed. */
|
|
4837
4965
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
4838
|
-
/** Station socket or plug standards */
|
|
4966
|
+
/** Station socket or plug standards. */
|
|
4839
4967
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
4840
|
-
/** Flag that allows you to return only available stations */
|
|
4968
|
+
/** Flag that allows you to return only available stations. */
|
|
4841
4969
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
4842
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
4970
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
4843
4971
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
4844
4972
|
};
|
|
4845
|
-
/** Deprecated: Replaced by filter & search params */
|
|
4973
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
4846
4974
|
export declare type StationAroundQuery = {
|
|
4847
|
-
/**
|
|
4975
|
+
/** GeoJSON Point of the center of the around me circle. */
|
|
4848
4976
|
location?: Maybe<PointInput>;
|
|
4849
|
-
/** Distance, in meters, to search around */
|
|
4977
|
+
/** Distance, in meters, to search around. */
|
|
4850
4978
|
distance?: Maybe<Scalars["Int"]>;
|
|
4851
|
-
/** Power in kWh */
|
|
4979
|
+
/** Power in kWh. */
|
|
4852
4980
|
power?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
4853
|
-
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park */
|
|
4981
|
+
/** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park. */
|
|
4854
4982
|
amenities?: Maybe<Array<Maybe<Scalars["String"]>>>;
|
|
4855
4983
|
};
|
|
4856
4984
|
export declare type StationCustomProperties = {
|
|
4857
|
-
/**
|
|
4985
|
+
/**
|
|
4986
|
+
* List of eMSP cards accepted at a charging station.
|
|
4987
|
+
* @deprecated In favor of station.roaming.
|
|
4988
|
+
*/
|
|
4858
4989
|
roaming?: Maybe<Array<Maybe<StationRoaming>>>;
|
|
4859
|
-
/**
|
|
4990
|
+
/**
|
|
4991
|
+
* Phone number for assistance at a charging station.
|
|
4992
|
+
* @deprecated In favor of station.support_phone_number.
|
|
4993
|
+
*/
|
|
4860
4994
|
support_phone_number?: Maybe<Scalars["String"]>;
|
|
4861
|
-
/**
|
|
4995
|
+
/**
|
|
4996
|
+
* Charging behavior of a station.
|
|
4997
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
4998
|
+
*/
|
|
4862
4999
|
charging_behaviour?: Maybe<ChargingBehaviour>;
|
|
4863
|
-
/**
|
|
5000
|
+
/**
|
|
5001
|
+
* Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.
|
|
5002
|
+
* @deprecated In favor of station.reliability_score.
|
|
5003
|
+
*/
|
|
4864
5004
|
reliability_score?: Maybe<Scalars["Int"]>;
|
|
4865
|
-
/**
|
|
5005
|
+
/**
|
|
5006
|
+
* List of available ad hoc payment methods.
|
|
5007
|
+
* @deprecated In favor of station.adhoc_authorisation_payment_method.
|
|
5008
|
+
*/
|
|
4866
5009
|
adhoc_authorisation_method?: Maybe<Array<Maybe<AdhocAuthorisationMethod>>>;
|
|
4867
|
-
/**
|
|
5010
|
+
/**
|
|
5011
|
+
* Predicted station occupancy.
|
|
5012
|
+
* @deprecated In favor of station.predicted_occupancy.
|
|
5013
|
+
*/
|
|
4868
5014
|
predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;
|
|
4869
|
-
/**
|
|
5015
|
+
/**
|
|
5016
|
+
* Type of access to the charging station.
|
|
5017
|
+
* @deprecated In favor of station.charging_behaviour.
|
|
5018
|
+
*/
|
|
4870
5019
|
access_type?: Maybe<AccessType>;
|
|
4871
|
-
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values */
|
|
5020
|
+
/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */
|
|
4872
5021
|
oicp?: Maybe<OICPStationCustomProperties>;
|
|
4873
5022
|
};
|
|
4874
|
-
/**
|
|
5023
|
+
/** Describes the heavy vehicle properties at the location. */
|
|
5024
|
+
export declare type StationHeavyVehiclesProperties = {
|
|
5025
|
+
/** Indicates whether the location was constructed mainly for the purpose of heavy vehicles like trucks. */
|
|
5026
|
+
is_dedicated?: Maybe<Scalars["Boolean"]>;
|
|
5027
|
+
/** List of facilities in the location. */
|
|
5028
|
+
facilities?: Maybe<Array<HeavyVehiclesFacility>>;
|
|
5029
|
+
/** Indicates whether the location is suitable for trucks with trailers. */
|
|
5030
|
+
is_trailer_accessible?: Maybe<Scalars["Boolean"]>;
|
|
5031
|
+
/** Indicates whether the location is drive-through. */
|
|
5032
|
+
is_drive_through?: Maybe<Scalars["Boolean"]>;
|
|
5033
|
+
/** Indicates whether the location allows charging of heavy vehicles transporting dangerous goods. */
|
|
5034
|
+
allows_dangerous_goods?: Maybe<Scalars["Boolean"]>;
|
|
5035
|
+
/** Indicates whether the location is suitable for rigid heavy vehicles. */
|
|
5036
|
+
allows_rigid_vehicles?: Maybe<Scalars["Boolean"]>;
|
|
5037
|
+
/** Indicates whether the location allows overnight charging of heavy vehicles. */
|
|
5038
|
+
allows_overnight_parking?: Maybe<Scalars["Boolean"]>;
|
|
5039
|
+
};
|
|
5040
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5041
|
+
export declare type StationHeavyVehiclesRestrictions = {
|
|
5042
|
+
/** Maximum height of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5043
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5044
|
+
/** Maximum width of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5045
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5046
|
+
/** Maximum length of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5047
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5048
|
+
/** Maximum mass of the heavy vehicle that is allowed to be parked at the charging station. */
|
|
5049
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5050
|
+
/** Allowed N (EU) types of heavy vehicles. */
|
|
5051
|
+
allowed_types_EU?: Maybe<Array<HeavyVehiclesEUType>>;
|
|
5052
|
+
};
|
|
5053
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5054
|
+
export declare type StationHeavyVehiclesRestrictionsheightArgs = {
|
|
5055
|
+
unit?: Maybe<DimensionUnit>;
|
|
5056
|
+
};
|
|
5057
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5058
|
+
export declare type StationHeavyVehiclesRestrictionswidthArgs = {
|
|
5059
|
+
unit?: Maybe<DimensionUnit>;
|
|
5060
|
+
};
|
|
5061
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5062
|
+
export declare type StationHeavyVehiclesRestrictionslengthArgs = {
|
|
5063
|
+
unit?: Maybe<DimensionUnit>;
|
|
5064
|
+
};
|
|
5065
|
+
/** Describes the heavy vehicle restrictions at the location. */
|
|
5066
|
+
export declare type StationHeavyVehiclesRestrictionsmassArgs = {
|
|
5067
|
+
unit?: Maybe<WeightUnit>;
|
|
5068
|
+
};
|
|
5069
|
+
/** Filter which can be applied to retrieve the station list action. */
|
|
4875
5070
|
export declare type StationListFilter = {
|
|
4876
|
-
/** Powers in kWh */
|
|
5071
|
+
/** Powers in kWh. */
|
|
4877
5072
|
powers?: Maybe<Array<Maybe<Scalars["Float"]>>>;
|
|
4878
|
-
/** Amenities available near a station */
|
|
5073
|
+
/** Amenities available near a station. */
|
|
4879
5074
|
amenities?: Maybe<Array<Maybe<Amenities>>>;
|
|
4880
|
-
/** Station speed */
|
|
5075
|
+
/** Station speed. */
|
|
4881
5076
|
power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;
|
|
4882
|
-
/** Station socket or plug standards */
|
|
5077
|
+
/** Station socket or plug standards. */
|
|
4883
5078
|
connectors?: Maybe<Array<Maybe<ConnectorType>>>;
|
|
4884
|
-
/** Flag that allows you to return only available stations */
|
|
5079
|
+
/** Flag that allows you to return only available stations. */
|
|
4885
5080
|
available_only?: Maybe<Scalars["Boolean"]>;
|
|
4886
|
-
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned */
|
|
5081
|
+
/** Flag indicating if only stations that are owned by an operator from a clients ranking list are returned. */
|
|
4887
5082
|
preferred_operator?: Maybe<Scalars["Boolean"]>;
|
|
4888
5083
|
};
|
|
4889
|
-
/** Deprecated: Replaced by filter & search params */
|
|
5084
|
+
/** Deprecated: Replaced by filter & search params. */
|
|
4890
5085
|
export declare type StationListQuery = {
|
|
4891
|
-
/** ID of the station */
|
|
5086
|
+
/** ID of the station. */
|
|
4892
5087
|
id?: Maybe<Scalars["ID"]>;
|
|
4893
|
-
/** External ID of the station provided by the station data source */
|
|
5088
|
+
/** External ID of the station provided by the station data source. */
|
|
4894
5089
|
external_id?: Maybe<Scalars["String"]>;
|
|
4895
|
-
/** Exact name */
|
|
5090
|
+
/** Exact name. */
|
|
4896
5091
|
name?: Maybe<Scalars["String"]>;
|
|
4897
5092
|
};
|
|
4898
|
-
/** Station availability for each weekday and hour */
|
|
5093
|
+
/** Station availability for each weekday and hour. */
|
|
4899
5094
|
export declare type StationPredictedAvailability = {
|
|
4900
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5095
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
4901
5096
|
weekday?: Maybe<Scalars["Int"]>;
|
|
4902
|
-
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)) */
|
|
5097
|
+
/** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)). */
|
|
4903
5098
|
prediction?: Maybe<Array<Maybe<Scalars["Int"]>>>;
|
|
4904
5099
|
};
|
|
4905
|
-
/** Station occupancy for each weekday and hour */
|
|
5100
|
+
/** Station occupancy for each weekday and hour. */
|
|
4906
5101
|
export declare type StationPredictedOccupancy = {
|
|
4907
|
-
/** Number of weekday from 1 (monday) to 7 (sunday) */
|
|
5102
|
+
/** Number of weekday from 1 (monday) to 7 (sunday). */
|
|
4908
5103
|
weekday?: Maybe<Scalars["Int"]>;
|
|
4909
|
-
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied */
|
|
5104
|
+
/** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied. */
|
|
4910
5105
|
occupancy?: Maybe<Scalars["Int"]>;
|
|
4911
|
-
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5106
|
+
/** Start of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
4912
5107
|
period_begin?: Maybe<Scalars["String"]>;
|
|
4913
|
-
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format) */
|
|
5108
|
+
/** End of the period of the occupancy prediction (string of 'hh-mmZ' format). */
|
|
4914
5109
|
period_end?: Maybe<Scalars["String"]>;
|
|
4915
5110
|
};
|
|
4916
5111
|
export declare type StationRoaming = {
|
|
4917
|
-
/**
|
|
5112
|
+
/** Unique id for a provider. It is created by Eco-Movement, and it is stable. */
|
|
5113
|
+
partner_id?: Maybe<Scalars["String"]>;
|
|
5114
|
+
/**
|
|
5115
|
+
* Unique E-Mobility Account Identifier (eMA ID) for a provider.
|
|
5116
|
+
* It is created by Eco-Movement by combining the country code where the charging station is located, and the party id of the provider.
|
|
5117
|
+
* For example, NL-ECO. Note: A provider can have multiple eMA IDs.
|
|
5118
|
+
* For example, if a company named 'Example Company A' acquired 'Example Company B' and owns the charging stations of Example Company B,
|
|
5119
|
+
* then this attribute maps Example Company B's eMA IDs to Example Company A's eMA IDs. For example, ['NL-EXA', 'NL-EXB'].
|
|
5120
|
+
*/
|
|
5121
|
+
ema_id?: Maybe<Array<Scalars["String"]>>;
|
|
5122
|
+
/** Name of the EMSP provider. */
|
|
4918
5123
|
emsp?: Maybe<Scalars["String"]>;
|
|
4919
|
-
/** Name of the card accepted at a charging station */
|
|
5124
|
+
/** Name of the card accepted at a charging station. */
|
|
4920
5125
|
card?: Maybe<Scalars["String"]>;
|
|
4921
|
-
/** Link to native Android app for card accepted at a charging station */
|
|
5126
|
+
/** Link to native Android app for card accepted at a charging station. */
|
|
4922
5127
|
android_app_link?: Maybe<Scalars["String"]>;
|
|
4923
|
-
/** Link to native iOS app for card accepted at a charging station */
|
|
5128
|
+
/** Link to native iOS app for card accepted at a charging station. */
|
|
4924
5129
|
ios_app_link?: Maybe<Scalars["String"]>;
|
|
4925
5130
|
};
|
|
4926
5131
|
/** The station speed type. */
|
|
@@ -4941,6 +5146,33 @@ export declare type StationStats = {
|
|
|
4941
5146
|
/** Stations count grouped by amenities */
|
|
4942
5147
|
amenities?: Maybe<Array<Maybe<AmenityStats>>>;
|
|
4943
5148
|
};
|
|
5149
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5150
|
+
export declare type StationVehicleRestrictions = {
|
|
5151
|
+
/** Maximum weight for a vehicle that is allowed at the location. */
|
|
5152
|
+
mass?: Maybe<Scalars["Float"]>;
|
|
5153
|
+
/** Maximum width for a vehicle that is allowed at the location. */
|
|
5154
|
+
width?: Maybe<Scalars["Float"]>;
|
|
5155
|
+
/** Maximum height for a vehicle that is allowed at the location. */
|
|
5156
|
+
height?: Maybe<Scalars["Float"]>;
|
|
5157
|
+
/** Maximum length for a vehicle that is allowed at the location. */
|
|
5158
|
+
length?: Maybe<Scalars["Float"]>;
|
|
5159
|
+
};
|
|
5160
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5161
|
+
export declare type StationVehicleRestrictionsmassArgs = {
|
|
5162
|
+
unit?: Maybe<WeightUnit>;
|
|
5163
|
+
};
|
|
5164
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5165
|
+
export declare type StationVehicleRestrictionswidthArgs = {
|
|
5166
|
+
unit?: Maybe<DimensionUnit>;
|
|
5167
|
+
};
|
|
5168
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5169
|
+
export declare type StationVehicleRestrictionsheightArgs = {
|
|
5170
|
+
unit?: Maybe<DimensionUnit>;
|
|
5171
|
+
};
|
|
5172
|
+
/** Describes the vehicle restrictions at the location. */
|
|
5173
|
+
export declare type StationVehicleRestrictionslengthArgs = {
|
|
5174
|
+
unit?: Maybe<DimensionUnit>;
|
|
5175
|
+
};
|
|
4944
5176
|
/** Types of a route step. */
|
|
4945
5177
|
export declare enum StepType {
|
|
4946
5178
|
/** This step is a road. */
|
|
@@ -5197,6 +5429,8 @@ export declare type Vehicle = {
|
|
|
5197
5429
|
purpose: VehiclePurpose;
|
|
5198
5430
|
/** Type of vehicle. */
|
|
5199
5431
|
type: VehicleType;
|
|
5432
|
+
/** Details about Heat Pump. */
|
|
5433
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
5200
5434
|
};
|
|
5201
5435
|
export declare type VehicleAvailability = {
|
|
5202
5436
|
/** Availability of the vehicle. */
|
|
@@ -5228,6 +5462,8 @@ export declare type VehicleBattery = {
|
|
|
5228
5462
|
full_kwh: Scalars["Float"];
|
|
5229
5463
|
/** Usable battery capacity in kWh. */
|
|
5230
5464
|
usable_kwh: Scalars["Float"];
|
|
5465
|
+
/** Type of battery. */
|
|
5466
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5231
5467
|
};
|
|
5232
5468
|
/** Battery field estimated. */
|
|
5233
5469
|
export declare enum VehicleBatteryFieldEstimations {
|
|
@@ -5240,6 +5476,10 @@ export declare enum VehicleBatteryFieldEstimations {
|
|
|
5240
5476
|
/** usable_kwh field is estimated. */
|
|
5241
5477
|
U = "U"
|
|
5242
5478
|
}
|
|
5479
|
+
export declare enum VehicleBatteryType {
|
|
5480
|
+
/** Lithium-Ion Battery. */
|
|
5481
|
+
LITHIUM_ION = "lithium_ion"
|
|
5482
|
+
}
|
|
5243
5483
|
export declare type VehicleBody = {
|
|
5244
5484
|
/** Width with folded mirrors, default in mm. */
|
|
5245
5485
|
width: Scalars["Float"];
|
|
@@ -5337,6 +5577,12 @@ export declare enum VehicleFuel {
|
|
|
5337
5577
|
/** ICE engine available. Uses petrol. */
|
|
5338
5578
|
P = "P"
|
|
5339
5579
|
}
|
|
5580
|
+
export declare type VehicleHeatPump = {
|
|
5581
|
+
/** Indicates if a heat pump is available for a specific vehicle. */
|
|
5582
|
+
is_available?: Maybe<Scalars["Boolean"]>;
|
|
5583
|
+
/** Indicates if a heat pump is standard equipment for a specific vehicle. */
|
|
5584
|
+
is_standard_equipment?: Maybe<Scalars["Boolean"]>;
|
|
5585
|
+
};
|
|
5340
5586
|
export declare type VehicleImage = {
|
|
5341
5587
|
/** Image id. */
|
|
5342
5588
|
id?: Maybe<Scalars["ID"]>;
|
|
@@ -5423,6 +5669,8 @@ export declare type VehicleListBattery = {
|
|
|
5423
5669
|
full_kwh: Scalars["Float"];
|
|
5424
5670
|
/** Usable battery capacity in kWh. */
|
|
5425
5671
|
usable_kwh: Scalars["Float"];
|
|
5672
|
+
/** Type of battery. */
|
|
5673
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5426
5674
|
};
|
|
5427
5675
|
export declare type VehicleListBody = {
|
|
5428
5676
|
/** Number of seats in a vehicle. */
|
|
@@ -5529,6 +5777,16 @@ export declare type VehiclePerformanceaccelerationArgs = {
|
|
|
5529
5777
|
export declare type VehiclePerformancetop_speedArgs = {
|
|
5530
5778
|
unit?: Maybe<SpeedUnit>;
|
|
5531
5779
|
};
|
|
5780
|
+
export declare enum VehiclePlugAndChargeSupport {
|
|
5781
|
+
/** Plug and charge is available. */
|
|
5782
|
+
AVAILABLE = "available",
|
|
5783
|
+
/** Plug and charge is announced, but not yet available. */
|
|
5784
|
+
ANNOUNCED = "announced",
|
|
5785
|
+
/** Plug and charge is available in a limited context. */
|
|
5786
|
+
LIMITED = "limited",
|
|
5787
|
+
/** Plug and charge is not available. */
|
|
5788
|
+
NOT_AVAILABLE = "not_available"
|
|
5789
|
+
}
|
|
5532
5790
|
/** The output element of the vehiclePremium query. */
|
|
5533
5791
|
export declare type VehiclePremium = {
|
|
5534
5792
|
/** Vehicles unique ID. */
|
|
@@ -5580,6 +5838,8 @@ export declare type VehiclePremium = {
|
|
|
5580
5838
|
purpose: VehiclePurpose;
|
|
5581
5839
|
/** Type of vehicle. */
|
|
5582
5840
|
type: VehicleType;
|
|
5841
|
+
/** Details about Heat Pump. */
|
|
5842
|
+
heat_pump?: Maybe<VehicleHeatPump>;
|
|
5583
5843
|
};
|
|
5584
5844
|
export declare type VehiclePremiumAvailability = {
|
|
5585
5845
|
/** Availability of the vehicle. */
|
|
@@ -5616,6 +5876,8 @@ export declare type VehiclePremiumBattery = {
|
|
|
5616
5876
|
weight?: Maybe<Scalars["Float"]>;
|
|
5617
5877
|
/** Nominal voltage of battery. */
|
|
5618
5878
|
nominal_voltage?: Maybe<Scalars["Float"]>;
|
|
5879
|
+
/** Type of battery. */
|
|
5880
|
+
type?: Maybe<VehicleBatteryType>;
|
|
5619
5881
|
};
|
|
5620
5882
|
export declare type VehiclePremiumBody = {
|
|
5621
5883
|
/** Length, default in mm. */
|
|
@@ -5632,6 +5894,8 @@ export declare type VehiclePremiumBody = {
|
|
|
5632
5894
|
wheelbase?: Maybe<Scalars["Float"]>;
|
|
5633
5895
|
/** Indicates if wheelbase field is estimated. */
|
|
5634
5896
|
wheelbase_is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5897
|
+
/** Ground clearance of a vehicle as specified by the OEM, default in mm. */
|
|
5898
|
+
ground_clearance?: Maybe<Scalars["Float"]>;
|
|
5635
5899
|
/** Weight (unladen EU). */
|
|
5636
5900
|
weight: VehicleBodyWeight;
|
|
5637
5901
|
/** Maximum allowed vehicle weight with payload. */
|
|
@@ -5697,6 +5961,9 @@ export declare type VehiclePremiumBodyheightArgs = {
|
|
|
5697
5961
|
export declare type VehiclePremiumBodywheelbaseArgs = {
|
|
5698
5962
|
unit?: Maybe<MeasurementUnit>;
|
|
5699
5963
|
};
|
|
5964
|
+
export declare type VehiclePremiumBodyground_clearanceArgs = {
|
|
5965
|
+
unit?: Maybe<MeasurementUnit>;
|
|
5966
|
+
};
|
|
5700
5967
|
export declare type VehiclePremiumBodyweight_max_payloadArgs = {
|
|
5701
5968
|
unit?: Maybe<WeightUnit>;
|
|
5702
5969
|
};
|
|
@@ -5735,6 +6002,8 @@ export declare type VehiclePremiumCharge = {
|
|
|
5735
6002
|
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
5736
6003
|
/** Alternative upgrade for the standard onboard charger when available. */
|
|
5737
6004
|
alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
|
|
6005
|
+
/** Vehicle-to-everything charge support. */
|
|
6006
|
+
vehicle_to_everything?: Maybe<VehicleToEverything>;
|
|
5738
6007
|
};
|
|
5739
6008
|
export declare type VehiclePremiumChargeAlternativeOBC = {
|
|
5740
6009
|
/** Maximum power OBC can accept to charge a battery (standard OBC). */
|
|
@@ -6000,6 +6269,16 @@ export declare type VehiclePremiumFastCharge = {
|
|
|
6000
6269
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6001
6270
|
/** Charging details for fast charging. */
|
|
6002
6271
|
table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;
|
|
6272
|
+
/** Indicates if autocharge is available. */
|
|
6273
|
+
has_autocharge?: Maybe<Scalars["Boolean"]>;
|
|
6274
|
+
/** Status of Plug & Charge (PnC ISO15118) support for vehicle. */
|
|
6275
|
+
iso_15118_pnc_support?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6276
|
+
/** Status of Plug & Charge (PnC ISO15118) -2 protocol support for vehicle. */
|
|
6277
|
+
iso_15118_pnc_support_2?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6278
|
+
/** Status of Plug & Charge (PnC ISO15118) -20 protocol support for vehicle. */
|
|
6279
|
+
iso_15118_pnc_support_20?: Maybe<VehiclePlugAndChargeSupport>;
|
|
6280
|
+
/** Indicates if the fastcharge data is based on a real-world test by Fastned. */
|
|
6281
|
+
is_fastned_tested?: Maybe<Scalars["Boolean"]>;
|
|
6003
6282
|
};
|
|
6004
6283
|
export declare type VehiclePremiumFastChargecharge_speedArgs = {
|
|
6005
6284
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
@@ -6091,6 +6370,10 @@ export declare type VehiclePremiumPriceValueWithGrant = {
|
|
|
6091
6370
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
6092
6371
|
/** Grant that is applied to the starting price. */
|
|
6093
6372
|
grant_applied?: Maybe<Scalars["Int"]>;
|
|
6373
|
+
/** Total delivery fees (be aware that this field does not include grant). */
|
|
6374
|
+
price_delivery?: Maybe<Scalars["Int"]>;
|
|
6375
|
+
/** First registration fee (be aware that this field does not include grant). */
|
|
6376
|
+
price_first_registration_fee?: Maybe<Scalars["Int"]>;
|
|
6094
6377
|
};
|
|
6095
6378
|
export declare type VehiclePremiumPriceValueWithGrantvalueArgs = {
|
|
6096
6379
|
unit?: Maybe<CurrencyUnit>;
|
|
@@ -6198,6 +6481,8 @@ export declare type VehiclePremiumSafetyEuroNcap = {
|
|
|
6198
6481
|
vru?: Maybe<Scalars["Int"]>;
|
|
6199
6482
|
/** EuroNCAP rating of safety assists (out of 100%). */
|
|
6200
6483
|
sa?: Maybe<Scalars["Int"]>;
|
|
6484
|
+
/** Link to the EuroNCAP test report. */
|
|
6485
|
+
url?: Maybe<Scalars["String"]>;
|
|
6201
6486
|
};
|
|
6202
6487
|
/** Propulsion. */
|
|
6203
6488
|
export declare enum VehiclePropulsion {
|
|
@@ -6300,6 +6585,34 @@ export declare enum VehicleStatus {
|
|
|
6300
6585
|
/** Is archived and can not be used. */
|
|
6301
6586
|
ARCHIVED = "archived"
|
|
6302
6587
|
}
|
|
6588
|
+
export declare type VehicleToEverything = {
|
|
6589
|
+
/** Information about Vehicle-to-Load. */
|
|
6590
|
+
vehicle_to_load?: Maybe<VehicleToEverythingLoad>;
|
|
6591
|
+
/** Information about Vehicle-to-Home. */
|
|
6592
|
+
vehicle_to_home?: Maybe<VehicleToEverythingHomeGrid>;
|
|
6593
|
+
/** Information about Vehicle-to-Grid. */
|
|
6594
|
+
vehicle_to_grid?: Maybe<VehicleToEverythingHomeGrid>;
|
|
6595
|
+
};
|
|
6596
|
+
export declare type VehicleToEverythingHomeGrid = {
|
|
6597
|
+
/** Vehicle-to-Home/Grid AC power information. */
|
|
6598
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
6599
|
+
/** Vehicle-to-Home/Grid DC power information */
|
|
6600
|
+
dc?: Maybe<VehicleToEverythingPower>;
|
|
6601
|
+
};
|
|
6602
|
+
export declare type VehicleToEverythingLoad = {
|
|
6603
|
+
/** Vehicle-to-Load power information. */
|
|
6604
|
+
ac?: Maybe<VehicleToEverythingPower>;
|
|
6605
|
+
/** Details on interior ports available for V2L. */
|
|
6606
|
+
interior_ports?: Maybe<Scalars["String"]>;
|
|
6607
|
+
/** Details on exterior ports available for V2L. */
|
|
6608
|
+
exterior_ports?: Maybe<Scalars["String"]>;
|
|
6609
|
+
};
|
|
6610
|
+
export declare type VehicleToEverythingPower = {
|
|
6611
|
+
/** Indicates if this charging is supported. */
|
|
6612
|
+
is_supported?: Maybe<PowerSupported>;
|
|
6613
|
+
/** Maximum power output, in kilowatts. */
|
|
6614
|
+
maximum_power?: Maybe<Scalars["String"]>;
|
|
6615
|
+
};
|
|
6303
6616
|
export declare enum VehicleType {
|
|
6304
6617
|
/** Any motor vehicle with two wheels or a motor vehicle with no more than four wheels, does not have parallel seating, and is controlled by means of handlebars. */
|
|
6305
6618
|
MOTORCYCLE = "motorcycle",
|