@chargetrip/types 1.65.0 → 1.66.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.
@@ -1 +1 @@
1
- {"version":3,"file":"graphql.js","names":["AccelerationUnit","AccessType","AdhocAuthorisationMethod","AirPressureUnit","Amenities","AmenityType","AmenityWheelchairAccessibilityType","AuxiliaryConsumptionUnit","BatteryInputType","CarConnectivityProvider","ChargeMode","ChargeSpeedUnit","ChargerStatus","ChargingBehaviourCode","CongestionLevel","ConnectProvider","ConnectScope","ConnectedVehicleStatus","ConnectorPriceElementComponentType","ConnectorPriceProductSubscriptionType","ConnectorPriceProductType","ConnectorPriceRestrictionsOverstayTimeUnit","ConnectorPriceRestrictionsReservationType","ConnectorType","ConsumptionUnit","CountryCodeAlpha2","Currency","CurrencyUnit","DayOfWeek","DimensionUnit","DistanceUnit","ElevationUnit","EmissionRateUnit","EmissionUnit","EmissionsFactorType","FeatureType","FuelConsumptionUnit","FuelUnit","HeatPumpMode","HeavyVehiclesEUType","HeavyVehiclesFacility","IsolineFerryConnectionsType","IsolineQuality","IsolineStatus","LegType","LineStringType","MeasurementUnit","MultiPolygonType","NavigationChangeSource","NavigationChangeType","NavigationStatus","NavigationVehicleStatus","OCPICapability","OCPIConnectorFormat","OCPIConnectorType","OCPIDayOfWeek","OCPIEnergySourceCategory","OCPIEnvironmentalImpactCategory","OCPIFacility","OCPIImageCategory","OCPIParkingRestriction","OCPIParkingType","OCPIPowerType","OCPIReservationRestrictionType","OCPIStatus","OCPITariffDimensionType","OCPITariffType","OICPChargingModes","OICPEvseAuthenticationMode","OICPPaymentOptions","OICPValueAddedServices","OperatorPreferenceType","OperatorRankingLevel","ParkingCost","PointType","PolylineInputDecimals","PowerSupported","PowerUnit","PressureUnit","PricingListElementType","RouteAlternativeType","RouteAvoid","RouteDetailsLegManeuverType","RouteDetailsLegSectionType","RouteDetailsLegType","RouteDetailsLegWarningCode","RouteDetailsTag","RouteDrivingStyle","RouteInstructionSign","RouteOperationalElectricityClimate","RouteOperationalElectricityEnergySourceModel","RouteOperationalElectricitySeason","RouteOperationalFuelType","RouteOperatorsType","RouteSeason","RouteStatus","RouteTagType","RouteTruckAvoid","RouteWarningCode","SolarIrradianceUnit","SortDirection","SpeedUnit","StateOfChargeUnit","StationAdhocAuthorisationPaymentMethod","StationSpeedType","StepType","TelemetryInputSource","TemperatureUnit","TorqueUnit","TurningCircleUnit","VehicleAvailabilityStatus","VehicleBatteryFieldEstimations","VehicleBatteryType","VehicleDataProvider","VehicleDrivetrainType","VehicleFuel","VehicleImageType","VehicleImageTypeUploadable","VehicleMode","VehiclePlugAndChargeSupport","VehiclePropulsion","VehicleProviderStatus","VehiclePurpose","VehicleRegion","VehicleType","VolumeUnit","WeatherType","WeightUnit"],"sources":["../../src/graphql.ts"],"sourcesContent":["export type Maybe<T> = T | null;\nexport type Exact<T extends { [key: string]: unknown }> = {\n [K in keyof T]: T[K];\n};\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> &\n { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> &\n { [SubKey in K]: Maybe<T[SubKey]> };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: string;\n String: string;\n Boolean: boolean;\n Int: number;\n Float: number;\n /** The date and time scalar. */\n DateTime: string;\n /** Email address scalar, email regex with HTML sanitization. */\n Email: any;\n /** Any JSON object or array. */\n JSON: { [key: string]: number | string | boolean | null | Scalars[\"JSON\"] };\n /** The non empty string scalar. */\n NonEmptyString: any;\n /** The `PlainID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The `PlainID` type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as \"4\") or integer (such as 4) input value will be accepted as an ID. */\n PlainID: any;\n /**\n * The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.\n * The PlainString type represents free-form human-readable text with HTML sanitization.\n */\n PlainString: any;\n /** The File Upload scalar. */\n Upload: any;\n};\n\nexport enum AccelerationUnit {\n /** Return the acceleration in seconds to 100 kilometers per hour. */\n SECONDS_TO_100_KILOMETERS_PER_HOUR = \"seconds_to_100_kilometers_per_hour\",\n /** Return the acceleration in seconds to 60 miles per hour. */\n SECONDS_TO_60_MILES_PER_HOUR = \"seconds_to_60_miles_per_hour\"\n}\n\nexport enum AccessType {\n PUBLIC = \"Public\",\n RESTRICTED = \"Restricted\",\n PRIVATE = \"Private\"\n}\n\n/** Information about an address. */\nexport type Address = {\n /** Continent code (2 letters). */\n continent?: Maybe<Scalars[\"String\"]>;\n /** Country code (2 letters). */\n country?: Maybe<Scalars[\"String\"]>;\n /** County code (2 letters). */\n county?: Maybe<Scalars[\"String\"]>;\n /** State or province. */\n state_province?: Maybe<Scalars[\"String\"]>;\n /** Municipality. */\n municipality?: Maybe<Scalars[\"String\"]>;\n /** City. */\n city?: Maybe<Scalars[\"String\"]>;\n /** Street name. */\n street?: Maybe<Scalars[\"String\"]>;\n /** Street number. */\n number?: Maybe<Scalars[\"String\"]>;\n /**\n * Postal code of the location.\n * @deprecated In favor of `postal_code`.\n */\n postalCode?: Maybe<Scalars[\"String\"]>;\n /**\n * String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>.\n * @deprecated In favor of `what_3_words`.\n */\n what3Words?: Maybe<Scalars[\"String\"]>;\n /**\n * Human-readable address of the location.\n * @deprecated In favor of `formatted_address`.\n */\n formattedAddress?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Postal code of the location. */\n postal_code?: Maybe<Scalars[\"String\"]>;\n /** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>. */\n what_3_words?: Maybe<Scalars[\"String\"]>;\n /** Human-readable address of the location. */\n formatted_address?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n};\n\nexport enum AdhocAuthorisationMethod {\n CREDIT_CARD = \"CREDIT_CARD\",\n DEBIT_CARD = \"DEBIT_CARD\",\n OTHER = \"OTHER\",\n OTHER_APPLE_PAY = \"OTHER_Apple_Pay\",\n OTHER_AUTHENTICATION_BY_CAR = \"OTHER_Authentication_by_car\",\n OTHER_GOOGLE_PAY = \"OTHER_Google_Pay\",\n QR_CODE = \"QR_CODE\",\n SMS = \"SMS\"\n}\n\nexport type AirPressure = {\n /** Value of the atmospheric pressure. */\n value: Scalars[\"Float\"];\n /** Atmospheric pressure unit. */\n type: AirPressureUnit;\n};\n\nexport type AirPressureInput = {\n /** Value of the atmospheric pressure. */\n value: Scalars[\"Float\"];\n /** Atmospheric pressure unit. */\n type: AirPressureUnit;\n};\n\nexport enum AirPressureUnit {\n MILLIBAR = \"millibar\"\n}\n\nexport type AlternativeStationRadius = {\n /** Value of the alternative station radius. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the alternative station radius. */\n type: DistanceUnit;\n /**\n * Source of inputted data.\n * @deprecated Not in use.\n */\n source: TelemetryInputSource;\n};\n\nexport type AlternativeStationRadiusInput = {\n /** Value of the alternative station radius. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the alternative station radius. */\n type: DistanceUnit;\n /** Source of inputted data. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Amenities available near a station. */\nexport enum Amenities {\n PARK = \"park\",\n RESTAURANT = \"restaurant\",\n MUSEUM = \"museum\",\n COFFEE = \"coffee\",\n HOTEL = \"hotel\",\n SHOPPING = \"shopping\",\n BATHROOM = \"bathroom\",\n SUPERMARKET = \"supermarket\",\n PLAYGROUND = \"playground\",\n PHARMACY = \"pharmacy\",\n BAKERY = \"bakery\",\n CONVENIENCE_STORE = \"convenience_store\"\n}\n\n/** Amenity data. */\nexport type Amenity = {\n /** Unique amenity ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /**\n * ID provided by an amenity data source as the row ID.\n * @deprecated In favor of `external_id`.\n */\n externalId?: Maybe<Scalars[\"String\"]>;\n /** ID provided by an amenity data source as the row ID. */\n external_id: Scalars[\"String\"];\n /** Name of the amenity. */\n name: Scalars[\"String\"];\n /** Geo location coordinates. This is a GeoJSON Point. */\n location: Point;\n /** Address of the amenity. */\n address?: Maybe<Address>;\n /** Type of amenity. An amenity can belong to multiple categories. */\n type: Array<Maybe<Scalars[\"String\"]>>;\n /**\n * Computed distance between station and amenity.\n * @deprecated In favor of `station_distance`.\n */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Computed distance between station and amenity. */\n station_distance: Scalars[\"Float\"];\n /**\n * Full path URL to amenity foursquare page.\n * @deprecated Will be removed.\n */\n foursquareUrl?: Maybe<Scalars[\"String\"]>;\n /** Opening hours of the amenity. */\n opening_hours?: Maybe<AmenityOpeningHours>;\n /** Indicates whether pets are allowed. This does not apply to assistance dogs, which may have legal access. */\n pets_allowed?: Maybe<Scalars[\"Boolean\"]>;\n /** Accessibility options at the amenity. */\n accessibility?: Maybe<AmenityAccessibility>;\n /** Contact information for the amenity. */\n contact?: Maybe<AmenityContact>;\n /** Rating of an amenity, the value will be between 0.0 and 10.0. If no rating has been given, the value will be set to null. */\n rating?: Maybe<Scalars[\"Float\"]>;\n /**\n * Date and time when an amenity was created.\n * @deprecated Will be removed.\n */\n createdAt?: Maybe<Scalars[\"String\"]>;\n /**\n * Date and time when an amenity was last updated.\n * @deprecated In favor of `last_updated`.\n */\n updatedAt?: Maybe<Scalars[\"String\"]>;\n /** Date and time when an amenity was last updated. */\n last_updated: Scalars[\"DateTime\"];\n};\n\n/** Amenity data. */\nexport type Amenitystation_distanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Accessibility options at the amenity. */\nexport type AmenityAccessibility = {\n /** Type of wheelchair accessibility at the amenity. */\n wheelchair?: Maybe<AmenityWheelchairAccessibilityType>;\n};\n\n/** Contact information for the amenity. */\nexport type AmenityContact = {\n /** Phone number to contact the amenity. */\n phone?: Maybe<Scalars[\"String\"]>;\n /** Website of the amenity. */\n website?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Filter that can be applied to retrieve the amenity list. */\nexport type AmenityListFilter = {\n /** Type of amenity. An amenity can belong to multiple categories. */\n type?: Maybe<Array<Amenities>>;\n};\n\n/** Opening and access hours of the location. */\nexport type AmenityOpeningHours = {\n /** True to represent 24 hours a day and 7 days a week. */\n twentyfourseven?: Maybe<Scalars[\"Boolean\"]>;\n /** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */\n regular_hours?: Maybe<Array<Maybe<AmenityRegularHours>>>;\n};\n\n/** Amenity preferences for a route. */\nexport type AmenityPreferencesInput = {\n /** Desired amenities near all charge-stops along a route, with a 1 kilometer radius. */\n all_charge_stops?: Maybe<Array<AmenityType>>;\n /** Scheduled charge stops, with a specified amenity and timeline. */\n scheduled_charge_stops?: Maybe<Array<ScheduledChargeStopInput>>;\n};\n\n/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */\nexport type AmenityRegularHours = {\n /** Number of days in the week, from Monday (1) till Sunday (7). */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** Beginning 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]. */\n period_begin?: Maybe<Scalars[\"String\"]>;\n /** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */\n period_end?: Maybe<Scalars[\"String\"]>;\n};\n\n/** A list of amenity types. */\nexport enum AmenityType {\n PARK = \"park\",\n RESTAURANT = \"restaurant\",\n MUSEUM = \"museum\",\n COFFEE = \"coffee\",\n HOTEL = \"hotel\",\n SHOPPING = \"shopping\",\n BATHROOM = \"bathroom\",\n SUPERMARKET = \"supermarket\",\n PLAYGROUND = \"playground\",\n PHARMACY = \"pharmacy\",\n BAKERY = \"bakery\",\n CONVENIENCE_STORE = \"convenience_store\"\n}\n\n/** Type of wheelchair accessibility at the amenity. */\nexport enum AmenityWheelchairAccessibilityType {\n /** Wheelchairs have full unrestricted access. */\n YES = \"yes\",\n /** Wheelchairs have partial access (e.g some areas can be accessed and others not, areas requiring assistance by someone pushing up a steep gradient). */\n LIMITED = \"limited\",\n /** Wheelchairs have no unrestricted access (e.g. stair only access). */\n NO = \"no\",\n /** The amenity is designated or purpose-built for wheelchairs (e.g. bathroom designed for wheelchair access only). */\n DESIGNATED = \"designated\"\n}\n\nexport type AuthorizeConnectedVehicleInput = {\n /** Id from the connected vehicle */\n id: Scalars[\"ID\"];\n /** Provider specific options. See the developer portal for more details */\n options: AuthorizeConnectedVehicleOptions;\n};\n\nexport type AuthorizeConnectedVehicleOptions = {\n /** OAuth code returned as a query parameter on the OAuth callback */\n code?: Maybe<Scalars[\"PlainString\"]>;\n};\n\nexport type AuxiliaryConsumption = {\n /** Value of the vehicle's auxiliary power consumption. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's auxiliary power consumption. */\n type: AuxiliaryConsumptionUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type AuxiliaryConsumptionInput = {\n /** Value of the vehicle's auxiliary power consumption. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's auxiliary power consumption. */\n type: AuxiliaryConsumptionUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Auxiliary consumption units. */\nexport enum AuxiliaryConsumptionUnit {\n /** Return the auxiliary consumption in kilowatt hours. */\n KILOWATT_HOUR = \"kilowatt_hour\"\n}\n\n/** The type of the battery value. */\nexport enum BatteryInputType {\n KWH = \"kwh\",\n KM = \"km\",\n MILES = \"miles\",\n PERCENTAGE = \"percentage\"\n}\n\nexport type BatteryTemperatureInput = {\n /** Value of the temperature of the battery. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the temperature of the battery. */\n type: TemperatureUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum CarConnectivityProvider {\n ENODE = \"Enode\"\n}\n\n/** Consumption of the car. */\nexport type CarConsumption = {\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<Scalars[\"Float\"]>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Consumption of the car. */\nexport type CarConsumptionInput = {\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<Scalars[\"Float\"]>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Charging mode used at charging stations. */\nexport enum ChargeMode {\n /** Optimizes the charging time at each station, in order to decrease the total travel time. Charges the vehicle only to the SOC required to reach the next stop, without exceeding the configured 'maximum_state_of_charge'. */\n OPTIMIZE_TRAVEL_TIME = \"OPTIMIZE_TRAVEL_TIME\",\n /** Charges up to the maximum configured state of charge (SoC) at each station. The maximum SoC is determined by 'maximum_state_of_charge'. */\n ALWAYS_TO_MAX_CHARGE = \"ALWAYS_TO_MAX_CHARGE\"\n}\n\nexport type ChargeSpeed = {\n /** Value of the charge speed of the battery. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the battery's charge speed. */\n type: ChargeSpeedUnit;\n /** Source of inputted data */\n source: TelemetryInputSource;\n};\n\nexport type ChargeSpeedInput = {\n /** Value of the battery's charge speed. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the battery's charge speed. */\n type: ChargeSpeedUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum ChargeSpeedUnit {\n /** Return the charge speed in kilowatt hours. */\n KILOWATT_HOUR = \"kilowatt_hour\",\n /** Return the charge speed in kilometers per hour. */\n KILOMETERS_PER_HOUR = \"kilometers_per_hour\",\n /** Return the charge speed in miles per hour. */\n MILES_PER_HOUR = \"miles_per_hour\"\n}\n\nexport type ChargeTotalInput = {\n /** Value of the temperature of the battery. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the total charge amount. */\n type: StateOfChargeUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** A grouped representation of EVSEs. */\nexport type Charger = {\n /** Type of a charger. */\n standard?: Maybe<ConnectorType>;\n /** Power of a charger, in kW. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Price of a charger. */\n price?: Maybe<Scalars[\"String\"]>;\n /** Charging speed. */\n speed?: Maybe<StationSpeedType>;\n /** Statuses of all the EVSEs grouped in a charger. */\n status?: Maybe<ChargerStatuses>;\n /** Total number of EVSEs grouped in a charger. */\n total?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport enum ChargerStatus {\n /** The charger is free. */\n FREE = \"free\",\n /** The charger is occupied/busy. */\n BUSY = \"busy\",\n /** The charger is unknown. */\n UNKNOWN = \"unknown\",\n /** The charger has an error. */\n ERROR = \"error\"\n}\n\n/** Grouping by status of the chargers. */\nexport type ChargerStatuses = {\n /** How many are free. */\n free?: Maybe<Scalars[\"Int\"]>;\n /** How many are busy. */\n busy?: Maybe<Scalars[\"Int\"]>;\n /** How many are unknown. */\n unknown?: Maybe<Scalars[\"Int\"]>;\n /** How many are not available. */\n error?: Maybe<Scalars[\"Int\"]>;\n};\n\n/**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\nexport type ChargetripRange = {\n /**\n * Range calculated using the worst conditions.\n * Worst conditions are based on -0°C, including use of heating.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n worst?: Maybe<Scalars[\"Float\"]>;\n /**\n * Range calculated using the best conditions.\n * Best conditions are based on 25°C, including use of A/C.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\n/**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\nexport type ChargetripRangeworstArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\nexport type ChargetripRangebestArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type ChargingBehaviour = {\n /** Charging behaviour of users divided in groups, based on real-time information. */\n code?: Maybe<ChargingBehaviourCode>;\n /** Description of charging behaviour. */\n description?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum ChargingBehaviourCode {\n /** Mainly morning charging, and some mixed afternoon and evening charging. */\n URBAN_CHARGING = \"URBAN_CHARGING\",\n /** Mainly fast charging, with some morning and afternoon charging. */\n FAST_CHARGING = \"FAST_CHARGING\",\n /** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging. */\n MIXED_CHARGING = \"MIXED_CHARGING\",\n /** Mainly noise charging. */\n NOISE_CHARGING = \"NOISE_CHARGING\",\n /** Mainly overnight charging. */\n OVERNIGHT_CHARGING = \"OVERNIGHT_CHARGING\",\n /** Mainly morning charging, with some afternoon charging. */\n OFFICE_CHARGING = \"OFFICE_CHARGING\"\n}\n\nexport enum CongestionLevel {\n /** Congestion level is unknown or could not be determined. */\n UNKNOWN = \"unknown\",\n /** Traffic is flowing freely with little to no delay. */\n LOW = \"low\",\n /** Increased traffic volume causing minor delays. */\n MEDIUM = \"medium\",\n /** Significant traffic volume causing heavy delays and potential standstills. */\n HIGH = \"high\"\n}\n\nexport type Connect = {\n /** List of connectivity providers to which the vehicle can connect. This field returns null for free users. Please contact customer success for more information. */\n providers?: Maybe<Array<ConnectProvider>>;\n};\n\nexport type ConnectBattery = {\n /** Estimated range by OEM */\n range?: Maybe<Scalars[\"Float\"]>;\n /** Percentage of the battery remaining */\n percentage?: Maybe<Scalars[\"Float\"]>;\n /** Capacity of the battery, in kwh */\n capacity?: Maybe<Scalars[\"Float\"]>;\n /** Date when the battery data was retrieved, as ISO-8601 date */\n date?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport type ConnectCharge = {\n /** Vehicle is plugged in */\n is_plugged_in?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle is charging */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n /** Battery is fully charged */\n is_fully_charged?: Maybe<Scalars[\"Boolean\"]>;\n /** Charge limit defined by vehicle owner */\n limit?: Maybe<Scalars[\"Int\"]>;\n /** Charge speed, in kwh */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Estimation when charging is completed, as ISO-8601 date */\n fully_charged_at?: Maybe<Scalars[\"DateTime\"]>;\n /** Estimated minutes till charged */\n minutes_till_charged?: Maybe<Scalars[\"Int\"]>;\n /** Date when the charge data was retrieved, as ISO-8601 date */\n date?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport type ConnectFilter = {\n /** List of connectivity providers to which a vehicle can connect. */\n providers?: Maybe<Array<Maybe<ConnectProvider>>>;\n};\n\n/** Location of the vehicle */\nexport type ConnectLocation = {\n /** Feature type */\n type: FeatureType;\n /** Geometry of the feature */\n geometry: GeometryPoint;\n /** Properties object containing meta data about the feature point */\n properties?: Maybe<ConnectLocationProperties>;\n};\n\n/** Properties of a vehicle location */\nexport type ConnectLocationProperties = {\n /** Date when the location was retrieved, as ISO-8601 date */\n date: Scalars[\"DateTime\"];\n};\n\nexport type ConnectOdometer = {\n /** Odometer value, distance driven, default in km */\n distance?: Maybe<Scalars[\"Float\"]>;\n /** Date when the odometer data was retrieved, as ISO-8601 date */\n date?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport enum ConnectProvider {\n ENODE = \"Enode\"\n}\n\nexport enum ConnectScope {\n /** Vehicle location, applicable for: Enode */\n LOCATION = \"location\",\n /** Charge state, applicable for: Enode */\n CHARGE_STATE = \"charge_state\",\n /** Odometer reading, applicable for: Enode */\n ODOMETER = \"odometer\"\n}\n\nexport type ConnectedVehicle = {\n /** Unique ID of the connected vehicle */\n id: Scalars[\"ID\"];\n /** Unique ID of the vehicle */\n vehicle_id: Scalars[\"ID\"];\n /** Status of the connected vehicle */\n status: ConnectedVehicleStatus;\n /** URL to connect the vehicle to the connectivity provider */\n authorization_url?: Maybe<Scalars[\"String\"]>;\n /** Connectivity provider */\n provider: CarConnectivityProvider;\n /** Scope for accessing the vehicle */\n scope?: Maybe<Array<Maybe<ConnectScope>>>;\n /** Custom label for a connected vehicle that can be assigned by a user */\n label?: Maybe<Scalars[\"String\"]>;\n /** Vehicle identification number, unique identifier for a vehicle */\n vin?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type ConnectedVehicleListFilter = {\n /** Status of the connected vehicle */\n status?: Maybe<Array<ConnectedVehicleStatus>>;\n};\n\nexport enum ConnectedVehicleStatus {\n /** Vehicle was added to the Chargetrip Connect platform but not yet authorized */\n PENDING_AUTHORIZATION = \"pending_authorization\",\n /** Vehicle was authorized. Chargetrip can retrieve data on behave of the user */\n AUTHORIZED = \"authorized\",\n /** Pending vehicle removal */\n PENDING_REMOVAL = \"pending_removal\",\n /** Vehicle was removed and access has been revoked */\n REMOVED = \"removed\"\n}\n\n/** Connector data which extends OCPI Connector. */\nexport type Connector = {\n /** 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. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Standard of an installed connector. */\n standard?: Maybe<ConnectorType>;\n /** Format (socket/cable) of an installed connector. */\n format?: Maybe<OCPIConnectorFormat>;\n /** Type of power of an installed connector. */\n power_type?: Maybe<OCPIPowerType>;\n /** 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. */\n max_voltage?: Maybe<Scalars[\"Int\"]>;\n /** Maximum amperage of a connector, in ampere [A]. */\n max_amperage?: Maybe<Scalars[\"Int\"]>;\n /**\n * 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.\n * 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.\n * For AC Charge Points, the amount of phases used can also have influence on the maximum power.\n */\n max_electric_power?: Maybe<Scalars[\"Int\"]>;\n /** Maximum electric power in kW. */\n power?: Maybe<Scalars[\"Float\"]>;\n /**\n * 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.\n * 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.\n * For a \"free of charge\" tariff, this field should be set and point to a defined \"free of charge\" tariff.\n */\n tariff_ids?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** URL to an operator’s terms and conditions. */\n terms_and_conditions?: Maybe<Scalars[\"String\"]>;\n /** Timestamp when a connector was last updated (or created). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** List of valid charging tariffs. */\n tariff?: Maybe<Array<Maybe<OCPITariff>>>;\n /**\n * Charging prices.\n * @deprecated In favor of `prices`.\n */\n pricing?: Maybe<Pricing>;\n /** Dynamic charging prices. */\n prices?: Maybe<Array<ConnectorPrice>>;\n /** 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. */\n custom_properties?: Maybe<ConnectorCustomProperties>;\n};\n\n/** Custom properties for connectors. */\nexport type ConnectorCustomProperties = {\n /**\n * Charging prices.\n * @deprecated In favor of `connector.prices`.\n */\n pricing?: Maybe<Pricing>;\n /** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */\n oicp?: Maybe<OICPConnectorCustomProperties>;\n};\n\n/** Connector charging price. */\nexport type ConnectorPrice = {\n /** ID for the price. */\n external_id: Scalars[\"String\"];\n /** Owner of the payment product. */\n partner?: Maybe<Scalars[\"String\"]>;\n /** ID for the owner of the payment product. */\n partner_id: Scalars[\"String\"];\n /** Payment product. */\n product: ConnectorPriceProduct;\n /** Price product elements. */\n elements: Array<ConnectorPriceElement>;\n /** Indicates when the pricing data was last updated. The date is in ISO 8601 standard and the time zone is UTC. The update could be a price update or any other update (for example, pricing type update). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport type ConnectorPriceElement = {\n /** Connector price element components. */\n components: Array<ConnectorPriceElementComponent>;\n /** Connector price element restrictions. */\n restrictions?: Maybe<ConnectorPriceElementRestrictions>;\n};\n\nexport type ConnectorPriceElementComponent = {\n /** Type of pricing that is applicable. */\n type: ConnectorPriceElementComponentType;\n /** Applicable price excluding VAT. */\n price_excl_vat: Scalars[\"Float\"];\n /** Applicable VAT. */\n vat: Scalars[\"Float\"];\n /**\n * Indicates the minimum amount that is billed.\n * A unit is billed in step-size blocks. For example, if the type is TIME and step_size is 300, then the time is billed in blocks of 5 minutes. Hence, if 6 minutes is used, then 10 minutes (2 blocks of step_size) is billed.\n * Note: step_size also depends on the type. Every type (except FLAT) defines a step_size multiplier. This is the size of every 'step' and the unit. For example, PARKING_TIME has a step-size multiplier of 1 second. Therefore, the step_size of a price component is multiplied by 1 second. Thus, step_size = 300 means 300 seconds.\"\n */\n step_size: Scalars[\"Int\"];\n};\n\n/** Type of pricing that is applicable. */\nexport enum ConnectorPriceElementComponentType {\n /** Price per kWh. */\n ENERGY = \"energy\",\n /** Fixed price per charging session. */\n FLAT = \"flat\",\n /** Parking price per hour. This fee is applicable if the parked car is not charging. */\n PARKING_TIME = \"parking_time\",\n /** Fixed price per unit of time defined in the step size. */\n TIME = \"time\"\n}\n\nexport type ConnectorPriceElementRestrictions = {\n /** Starting time of the day for the prices. */\n start_time?: Maybe<Scalars[\"String\"]>;\n /** Ending time of the day for the prices. */\n end_time?: Maybe<Scalars[\"String\"]>;\n /** Starting date for the prices. */\n start_date?: Maybe<Scalars[\"String\"]>;\n /** Ending date for the prices. */\n end_date?: Maybe<Scalars[\"String\"]>;\n /** Minimum energy used, in kWh. */\n minimum_kwh?: Maybe<Scalars[\"Float\"]>;\n /** Maximum energy used, in kWh. */\n maximum_kwh?: Maybe<Scalars[\"Float\"]>;\n /** Minimum charging speed, in kW. */\n minimum_power?: Maybe<Scalars[\"Float\"]>;\n /** Maximum charging speed, in kW. */\n maximum_power?: Maybe<Scalars[\"Float\"]>;\n /** Sum of the minimum current (in Amperes) over all the phases. When the EV is charging with more than or equal to this value the prices are active. If the charging current is lower, this price is inactive. */\n minimum_current?: Maybe<Scalars[\"Float\"]>;\n /** Sum of the maximum current (in Amperes) over all the phases. When the EV is charging with less than this value the prices are active. If the charging current is higher, this price is inactive. */\n maximum_current?: Maybe<Scalars[\"Float\"]>;\n /** Minimum price based on the amount of kWh that is being delivered. */\n minimum_price?: Maybe<Scalars[\"Float\"]>;\n /** Maximum price based on the amount of kWh that is being delivered. */\n maximum_price?: Maybe<Scalars[\"Float\"]>;\n /** Battery percentage at which the overstay prices are active. */\n overstay_battery_percentage?: Maybe<\n ConnectorPriceRestrictionsOverstayBatteryPercentage\n >;\n /** Time after which the overstay prices are active. */\n overstay_time?: Maybe<ConnectorPriceRestrictionsOverstayTime>;\n /** Minimum duration, in seconds. */\n minimum_duration?: Maybe<Scalars[\"Int\"]>;\n /** Maximum duration, in seconds. */\n maximum_duration?: Maybe<Scalars[\"Int\"]>;\n /** Day(s) of the week that the prices are valid. */\n day_of_week?: Maybe<Array<DayOfWeek>>;\n /** Contract signed between the eMSP and the customer. */\n emsp_contract_date?: Maybe<ConnectorPriceRestrictionsEmspContractDate>;\n /**\n * When this field is present, the ConnectorPriceElement describes reservation costs.\n * A reservation starts when the reservation is made, and ends when the driver starts charging on the reserved EVSE/Location,\n * or when the reservation expires. A reservation can only have: `flat` and `time` ConnectorPriceElementComponentType,\n * where time is for the duration of the reservation.\n * When a price has both, `reservation` and `reservation_expires` ConnectorPriceElement,\n * where both ConnectorPriceElement have a time ConnectorPriceElementComponent,\n * then the time based cost of an expired reservation will be calculated based on the `reservation_expires` ConnectorPriceElement.\n */\n reservation?: Maybe<ConnectorPriceRestrictionsReservationType>;\n};\n\n/** Payment product. */\nexport type ConnectorPriceProduct = {\n /** Name of the payment product. */\n name: Scalars[\"String\"];\n /** Type of the payment product. */\n type: ConnectorPriceProductType;\n /** A brief description of the product. */\n description: Scalars[\"String\"];\n /** Indicates the type of subscription. */\n subscription_type: ConnectorPriceProductSubscriptionType;\n /** Subscription price for a month or year, excluding VAT, if applicable. */\n subscription_fee_excl_vat: Scalars[\"Float\"];\n /** Three-digit currency code of the country where the charging station is located. */\n currency: CurrencyUnit;\n};\n\n/** Type of the payment product. */\nexport enum ConnectorPriceProductSubscriptionType {\n /** The subscription fee is applicable every month. */\n MONTHLY = \"monthly\",\n /** The subscription fee is applicable every year. */\n YEARLY = \"yearly\",\n /** An initial fee is applicable to purchase a RFID card or chip, but there isn't a recurring subscription fee. */\n ONE_OFF = \"one_off\",\n /** The product doesn’t have a subscription option. */\n NOT_APPLICABLE = \"not_applicable\"\n}\n\n/** Type of the payment product. */\nexport enum ConnectorPriceProductType {\n AD_HOC = \"ad_hoc\",\n MSP = \"msp\",\n CPO_SUBSCRIPTION = \"cpo_subscription\"\n}\n\nexport type ConnectorPriceRestrictionsEmspContractDate = {\n /** Name of the contract signed between the eMSP and a customer. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Prices are active from this date, which is based on the contract signed between the eMSP and a customer. */\n from?: Maybe<Scalars[\"String\"]>;\n /** Prices are active until this date, which is based on the contract signed between the eMSP and a customer. */\n to?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type ConnectorPriceRestrictionsOverstayBatteryPercentage = {\n /** Battery percentage at which the overstay prices are active. */\n minimum?: Maybe<Scalars[\"Int\"]>;\n /** Battery percentage at which the overstay prices are inactive. */\n maximum?: Maybe<Scalars[\"Int\"]>;\n /** Unit for the time after which the prices are active. */\n unit?: Maybe<ConnectorPriceRestrictionsOverstayTimeUnit>;\n};\n\nexport type ConnectorPriceRestrictionsOverstayTime = {\n /** Time at which the overstay prices are active. */\n minimum?: Maybe<Scalars[\"Int\"]>;\n /** Time at which the overstay prices are inactive. */\n maximum?: Maybe<Scalars[\"Int\"]>;\n /** Unit for the time after which the prices are active. */\n unit?: Maybe<ConnectorPriceRestrictionsOverstayTimeUnit>;\n};\n\n/** The unit of time after which the overstay restrictions are applicable. */\nexport enum ConnectorPriceRestrictionsOverstayTimeUnit {\n /** The overstay restrictions are applicable after a certain number of seconds. */\n SECONDS = \"seconds\",\n /** The overstay restrictions are applicable after a certain number of minutes. */\n MINUTES = \"minutes\",\n /** The overstay restrictions are applicable after a certain number of hours. */\n HOURS = \"hours\"\n}\n\n/** Describes the cost associated with reserving a charging station. */\nexport enum ConnectorPriceRestrictionsReservationType {\n /** Describes costs for a reservation. */\n RESERVATION = \"reservation\",\n /** Describes costs for a reservation that expires (i.e. driver does not start a charging session before expiry date of the reservation). */\n RESERVATION_EXPIRES = \"reservation_expires\"\n}\n\n/** Socket or plug standard of the charging point. */\nexport enum ConnectorType {\n /** The connector type is CHAdeMO, DC. */\n CHADEMO = \"CHADEMO\",\n /** Standard/domestic household, type \"A\", NEMA 1-15, 2 pins. */\n DOMESTIC_A = \"DOMESTIC_A\",\n /** Standard/domestic household, type \"B\", NEMA 5-15, 3 pins. */\n DOMESTIC_B = \"DOMESTIC_B\",\n /** Standard/domestic household, type \"C\", CEE 7/17, 2 pins. */\n DOMESTIC_C = \"DOMESTIC_C\",\n /** Standard/domestic household, type \"D\", 3 pins. */\n DOMESTIC_D = \"DOMESTIC_D\",\n /** Standard/domestic household, type \"E\", CEE 7/5 3 pins. */\n DOMESTIC_E = \"DOMESTIC_E\",\n /** Standard/domestic household, type \"F\", CEE 7/4, Schuko, 3 pins. */\n DOMESTIC_F = \"DOMESTIC_F\",\n /** Standard/domestic household, type \"G\", BS 1363, Commonwealth, 3 pins. */\n DOMESTIC_G = \"DOMESTIC_G\",\n /** Standard/domestic household, type \"H\", SI-32, 3 pins. */\n DOMESTIC_H = \"DOMESTIC_H\",\n /** Standard/domestic household, type \"I\", AS 3112, 3 pins. */\n DOMESTIC_I = \"DOMESTIC_I\",\n /** Standard/domestic household, type \"J\", SEV 1011, 3 pins. */\n DOMESTIC_J = \"DOMESTIC_J\",\n /** Standard/domestic household, type \"K\", DS 60884-2-D1, 3 pins. */\n DOMESTIC_K = \"DOMESTIC_K\",\n /** Standard/domestic household, type \"L\", CEI 23-16-VII, 3 pins. */\n DOMESTIC_L = \"DOMESTIC_L\",\n /** Standard/Domestic household, type \"M\", BS 546, 3 pins. */\n DOMESTIC_M = \"DOMESTIC_M\",\n /** Standard/Domestic household, type \"N\", NBR 14136, 3 pins. */\n DOMESTIC_N = \"DOMESTIC_N\",\n /** Standard/Domestic household, type \"O\", TIS 166-2549, 3 pins. */\n DOMESTIC_O = \"DOMESTIC_O\",\n /** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue). */\n IEC_60309_2_SINGLE_16 = \"IEC_60309_2_single_16\",\n /** IEC 60309-2 Industrial connector three phase 16 amperes (usually red). */\n IEC_60309_2_THREE_16 = \"IEC_60309_2_three_16\",\n /** IEC 60309-2 Industrial connector three phase 32 amperes (usually red). */\n IEC_60309_2_THREE_32 = \"IEC_60309_2_three_32\",\n /** IEC 60309-2 Industrial connector three phase 64 amperes (usually red). */\n IEC_60309_2_THREE_64 = \"IEC_60309_2_three_64\",\n /** IEC 62196 Type 1 \"SAE J1772\". */\n IEC_62196_T1 = \"IEC_62196_T1\",\n /** Combo Type 1 based, DC. */\n IEC_62196_T1_COMBO = \"IEC_62196_T1_COMBO\",\n /** IEC 62196 Type 2 \"Mennekes\". */\n IEC_62196_T2 = \"IEC_62196_T2\",\n /** Combo Type 2 based, DC. */\n IEC_62196_T2_COMBO = \"IEC_62196_T2_COMBO\",\n /** IEC 62196 Type 3A. */\n IEC_62196_T3A = \"IEC_62196_T3A\",\n /** IEC 62196 Type 3C \"Scame\". */\n IEC_62196_T3C = \"IEC_62196_T3C\",\n /** On-board bottom-up-pantograph typically for bus charging. */\n PANTOGRAPH_BOTTOM_UP = \"PANTOGRAPH_BOTTOM_UP\",\n /** Off-board top-down-pantograph typically for bus charging. */\n PANTOGRAPH_TOP_DOWN = \"PANTOGRAPH_TOP_DOWN\",\n /** Tesla connector \"Roadster\"-type (round, 4 pins). */\n TESLA_R = \"TESLA_R\",\n /** Tesla connector \"Model-S\"-type (oval, 5 pins). */\n TESLA_S = \"TESLA_S\",\n /** The connector type is GB_T (Chinese standard), DC. */\n GB_T = \"GB_T\",\n /** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */\n CHAOJI = \"CHAOJI\",\n /** The connector type is NEMA 5-20, 3 pins. */\n NEMA_5_20 = \"NEMA_5_20\",\n /** The connector type is NEMA 6-30, 3 pins. */\n NEMA_6_30 = \"NEMA_6_30\",\n /** The connector type is NEMA 6-50, 3 pins. */\n NEMA_6_50 = \"NEMA_6_50\",\n /** The connector type is NEMA 10-30, 3 pins. */\n NEMA_10_30 = \"NEMA_10_30\",\n /** The connector type is NEMA 10-50, 3 pins. */\n NEMA_10_50 = \"NEMA_10_50\",\n /** The connector type is NEMA 14-30, 3 pins, rating of 30 A. */\n NEMA_14_30 = \"NEMA_14_30\",\n /** The connector type is NEMA 14-50, 3 pins, rating of 50 A. */\n NEMA_14_50 = \"NEMA_14_50\",\n /** Guobiao GB/T 20234.2 AC socket/connector. */\n GBT_AC = \"GBT_AC\",\n /** Guobiao GB/T 20234.3 DC connector. */\n GBT_DC = \"GBT_DC\"\n}\n\nexport enum ConsumptionUnit {\n /** Return the consumption in kilowatt hours per 100 kilometers. */\n KILOWATT_HOURS_PER_100_KILOMETERS = \"kilowatt_hours_per_100_kilometers\",\n /** Return the consumption in watt hours per kilometer. */\n WATT_HOURS_PER_KILOMETER = \"watt_hours_per_kilometer\",\n /** Return the consumption in kilometers per kilowatt hour. */\n KILOMETERS_PER_KILOWATT_HOUR = \"kilometers_per_kilowatt_hour\",\n /** Return the consumption in kilowatt hours per 100 miles. */\n KILOWATT_HOURS_PER_100_MILES = \"kilowatt_hours_per_100_miles\",\n /** Return the consumption in watt hours per mile. */\n WATT_HOURS_PER_MILE = \"watt_hours_per_mile\",\n /** Return the consumption in miles per kilowatt hour. */\n MILES_PER_KILOWATT_HOUR = \"miles_per_kilowatt_hour\"\n}\n\n/** The complete contact information. */\nexport type Contact = {\n /** The phone number in international format. */\n phone?: Maybe<Scalars[\"String\"]>;\n /** The email address. */\n email?: Maybe<Scalars[\"String\"]>;\n /** The absolute URL of the website. */\n website?: Maybe<Scalars[\"String\"]>;\n /** The absolute URL of the facebook profile page. */\n facebook?: Maybe<Scalars[\"String\"]>;\n /** The absolute URL of the twitter profile page. */\n twitter?: Maybe<Scalars[\"String\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** ISO-3166 alpha-2 country codes. */\nexport enum CountryCodeAlpha2 {\n AA = \"AA\",\n AD = \"AD\",\n AE = \"AE\",\n AF = \"AF\",\n AG = \"AG\",\n AI = \"AI\",\n AL = \"AL\",\n AM = \"AM\",\n AN = \"AN\",\n AO = \"AO\",\n AQ = \"AQ\",\n AR = \"AR\",\n AS = \"AS\",\n AT = \"AT\",\n AU = \"AU\",\n AW = \"AW\",\n AX = \"AX\",\n AZ = \"AZ\",\n BA = \"BA\",\n BB = \"BB\",\n BD = \"BD\",\n BE = \"BE\",\n BF = \"BF\",\n BG = \"BG\",\n BH = \"BH\",\n BI = \"BI\",\n BJ = \"BJ\",\n BL = \"BL\",\n BM = \"BM\",\n BN = \"BN\",\n BO = \"BO\",\n BQ = \"BQ\",\n BR = \"BR\",\n BS = \"BS\",\n BT = \"BT\",\n BV = \"BV\",\n BW = \"BW\",\n BY = \"BY\",\n BZ = \"BZ\",\n CA = \"CA\",\n CC = \"CC\",\n CD = \"CD\",\n CF = \"CF\",\n CG = \"CG\",\n CH = \"CH\",\n CI = \"CI\",\n CK = \"CK\",\n CL = \"CL\",\n CM = \"CM\",\n CN = \"CN\",\n CO = \"CO\",\n CR = \"CR\",\n CS = \"CS\",\n CU = \"CU\",\n CV = \"CV\",\n CW = \"CW\",\n CX = \"CX\",\n CY = \"CY\",\n CZ = \"CZ\",\n DE = \"DE\",\n DJ = \"DJ\",\n DK = \"DK\",\n DM = \"DM\",\n DO = \"DO\",\n DZ = \"DZ\",\n EC = \"EC\",\n EE = \"EE\",\n EG = \"EG\",\n EH = \"EH\",\n ER = \"ER\",\n ES = \"ES\",\n ET = \"ET\",\n FI = \"FI\",\n FJ = \"FJ\",\n FK = \"FK\",\n FM = \"FM\",\n FO = \"FO\",\n FR = \"FR\",\n GA = \"GA\",\n GB = \"GB\",\n GD = \"GD\",\n GE = \"GE\",\n GF = \"GF\",\n GG = \"GG\",\n GH = \"GH\",\n GI = \"GI\",\n GL = \"GL\",\n GM = \"GM\",\n GN = \"GN\",\n GP = \"GP\",\n GQ = \"GQ\",\n GR = \"GR\",\n GS = \"GS\",\n GT = \"GT\",\n GU = \"GU\",\n GW = \"GW\",\n GY = \"GY\",\n HK = \"HK\",\n HM = \"HM\",\n HN = \"HN\",\n HR = \"HR\",\n HT = \"HT\",\n HU = \"HU\",\n ID = \"ID\",\n IE = \"IE\",\n IL = \"IL\",\n IM = \"IM\",\n IN = \"IN\",\n IO = \"IO\",\n IQ = \"IQ\",\n IR = \"IR\",\n IS = \"IS\",\n IT = \"IT\",\n JE = \"JE\",\n JM = \"JM\",\n JO = \"JO\",\n JP = \"JP\",\n KE = \"KE\",\n KG = \"KG\",\n KH = \"KH\",\n KI = \"KI\",\n KM = \"KM\",\n KN = \"KN\",\n KP = \"KP\",\n KR = \"KR\",\n KW = \"KW\",\n KY = \"KY\",\n KZ = \"KZ\",\n LA = \"LA\",\n LB = \"LB\",\n LC = \"LC\",\n LI = \"LI\",\n LK = \"LK\",\n LR = \"LR\",\n LS = \"LS\",\n LT = \"LT\",\n LU = \"LU\",\n LV = \"LV\",\n LY = \"LY\",\n MA = \"MA\",\n MC = \"MC\",\n MD = \"MD\",\n ME = \"ME\",\n MF = \"MF\",\n MG = \"MG\",\n MH = \"MH\",\n MK = \"MK\",\n ML = \"ML\",\n MM = \"MM\",\n MN = \"MN\",\n MO = \"MO\",\n MP = \"MP\",\n MQ = \"MQ\",\n MR = \"MR\",\n MS = \"MS\",\n MT = \"MT\",\n MU = \"MU\",\n MV = \"MV\",\n MW = \"MW\",\n MX = \"MX\",\n MY = \"MY\",\n MZ = \"MZ\",\n NA = \"NA\",\n NC = \"NC\",\n NE = \"NE\",\n NF = \"NF\",\n NG = \"NG\",\n NI = \"NI\",\n NL = \"NL\",\n NO = \"NO\",\n NP = \"NP\",\n NR = \"NR\",\n NU = \"NU\",\n NZ = \"NZ\",\n OM = \"OM\",\n PA = \"PA\",\n PE = \"PE\",\n PF = \"PF\",\n PG = \"PG\",\n PH = \"PH\",\n PK = \"PK\",\n PL = \"PL\",\n PM = \"PM\",\n PN = \"PN\",\n PR = \"PR\",\n PS = \"PS\",\n PT = \"PT\",\n PW = \"PW\",\n PY = \"PY\",\n QA = \"QA\",\n RE = \"RE\",\n RKS = \"RKS\",\n RO = \"RO\",\n RS = \"RS\",\n RU = \"RU\",\n RW = \"RW\",\n SA = \"SA\",\n SB = \"SB\",\n SC = \"SC\",\n SD = \"SD\",\n SE = \"SE\",\n SG = \"SG\",\n SH = \"SH\",\n SI = \"SI\",\n SJ = \"SJ\",\n SK = \"SK\",\n SL = \"SL\",\n SM = \"SM\",\n SN = \"SN\",\n SO = \"SO\",\n SR = \"SR\",\n SS = \"SS\",\n ST = \"ST\",\n SV = \"SV\",\n SX = \"SX\",\n SY = \"SY\",\n SZ = \"SZ\",\n TC = \"TC\",\n TD = \"TD\",\n TF = \"TF\",\n TG = \"TG\",\n TH = \"TH\",\n TJ = \"TJ\",\n TK = \"TK\",\n TL = \"TL\",\n TM = \"TM\",\n TN = \"TN\",\n TO = \"TO\",\n TR = \"TR\",\n TT = \"TT\",\n TV = \"TV\",\n TW = \"TW\",\n TZ = \"TZ\",\n UA = \"UA\",\n UG = \"UG\",\n UM = \"UM\",\n US = \"US\",\n UY = \"UY\",\n UZ = \"UZ\",\n VA = \"VA\",\n VC = \"VC\",\n VE = \"VE\",\n VG = \"VG\",\n VI = \"VI\",\n VN = \"VN\",\n VU = \"VU\",\n WF = \"WF\",\n WS = \"WS\",\n XK = \"XK\",\n YE = \"YE\",\n YT = \"YT\",\n ZA = \"ZA\",\n ZM = \"ZM\",\n ZW = \"ZW\"\n}\n\nexport type CreateConnectedVehicleInput = {\n /** Id from the vehicle */\n vehicle_id: Scalars[\"ID\"];\n /** Connectivity provider used to retrieve data from the vehicle */\n provider: CarConnectivityProvider;\n /** Label for a connected vehicle */\n label?: Maybe<Scalars[\"PlainString\"]>;\n /** Provider specific options. See the developer portal for more details */\n options: CreateConnectedVehicleOptions;\n};\n\nexport type CreateConnectedVehicleOptions = {\n /** Redirect uri */\n redirect_uri?: Maybe<Scalars[\"PlainString\"]>;\n /** Scope */\n scope?: Maybe<Array<ConnectScope>>;\n};\n\nexport type CreateRoute = {\n /** Vehicle used on a route. */\n vehicle: RouteVehicle;\n /** Origin of a route. */\n origin: RouteOriginFeaturePoint;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePoint;\n /** Via points of a route. */\n via?: Maybe<Array<RouteViaFeaturePoint>>;\n /** Operator preferences for a route. */\n operators?: Maybe<RouteOperatorPreferences>;\n /**\n * Season of a route.\n * @deprecated In favor of `weather`.\n */\n season?: Maybe<RouteSeason>;\n /** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */\n alternative_station_radius?: Maybe<AlternativeStationRadius>;\n /** [BETA] Number of alternative routes to request. */\n alternative_routes?: Maybe<Scalars[\"Int\"]>;\n /** Route departure time. */\n departure_time: Scalars[\"DateTime\"];\n /** [BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteAvoid>>;\n /** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */\n driving_preferences?: Maybe<RouteDrivingPreferences>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. */\n weather?: Maybe<RouteWeather>;\n /** Charging stations preferences for route calculation. */\n station_preferences?: Maybe<RouteStationPreferences>;\n /** [BETA] Indicates whether current traffic conditions were considered during route calculation. This feature is disabled by default and requires explicit enablement for your project. Please contact Chargetrip support for more information. */\n traffic_aware?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Input for the create route mutation. */\nexport type CreateRouteInput = {\n /** Vehicle specific input. */\n vehicle: RouteVehicleInput;\n /** Origin of a route. */\n origin: RouteOriginFeaturePointInput;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePointInput;\n /** Optional via points of a route. */\n via?: Maybe<Array<RouteViaFeaturePointInput>>;\n /** Operator preferences and restrictions for route calculation. If not specified, excludes operators per project settings, but applies no operator ranking. */\n operators?: Maybe<RouteOperatorPreferencesInput>;\n /** Optional flag to specify the season. If not specified, defaults to real-time weather data */\n season?: Maybe<RouteSeason>;\n /** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */\n alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;\n /** [BETA] Additional alternative routes to calculate. Performed on a best-effort basis, it may return fewer than requested, or even none. Set to 0 to create only the recommended route. */\n alternative_routes?: Maybe<Scalars[\"Int\"]>;\n /** Route departure time. Used to calculate the expected arrival time. If not specified, defaults to the route's request time. */\n departure_time?: Maybe<Scalars[\"DateTime\"]>;\n /** [BETA] Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteAvoid>>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data. */\n weather?: Maybe<RouteWeatherInput>;\n /** Charging stations preferences for route calculation. */\n station_preferences?: Maybe<RouteStationPreferencesInput>;\n /** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */\n driving_preferences?: Maybe<RouteDrivingPreferencesInput>;\n /** [BETA] Route should consider current traffic conditions. This feature is disabled by default and requires explicit enablement for your project. Please contact Chargetrip support for more information. */\n traffic_aware?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type CreateTruckRoute = {\n /** Vehicle specific input. */\n vehicle: RouteTruckVehicle;\n /** Origin of a route. */\n origin: RouteTruckOriginFeaturePoint;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePoint;\n /** Optional via points of a route. */\n via?: Maybe<Array<RouteTruckViaFeaturePoint>>;\n /** Prioritized operators for a route calculation. */\n operators?: Maybe<RouteOperatorPreferences>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. */\n weather?: Maybe<RouteWeather>;\n /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. If not specified, no alternative stations will be discovered. */\n alternative_station_radius?: Maybe<AlternativeStationRadius>;\n /** Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data. If not specified, defaults to the current request time. */\n departure_time?: Maybe<Scalars[\"DateTime\"]>;\n /** Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteTruckAvoid>>;\n /** Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. */\n maximum_speed?: Maybe<MaximumSpeed>;\n};\n\nexport type CreateTruckRouteInput = {\n /** Vehicle specific input. */\n vehicle: RouteTruckVehicleInput;\n /** Origin of a route. */\n origin: RouteTruckOriginFeaturePointInput;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePointInput;\n /** Optional via points of a route. */\n via?: Maybe<Array<RouteTruckViaFeaturePointInput>>;\n /** Prioritized operators for a route calculation. */\n operators?: Maybe<RouteOperatorPreferencesInput>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. */\n weather?: Maybe<RouteWeatherInput>;\n /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. If not specified, no alternative stations will be discovered. */\n alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;\n /** Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data. If not specified, defaults to the current request time. */\n departure_time?: Maybe<Scalars[\"DateTime\"]>;\n /** Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteTruckAvoid>>;\n /** Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. */\n maximum_speed?: Maybe<MaximumSpeedInput>;\n};\n\n/** Currency in the ISO 4217 format. */\nexport enum Currency {\n AED = \"AED\",\n AFN = \"AFN\",\n ALL = \"ALL\",\n AMD = \"AMD\",\n ANG = \"ANG\",\n AOA = \"AOA\",\n ARS = \"ARS\",\n AUD = \"AUD\",\n AWG = \"AWG\",\n AZN = \"AZN\",\n BAM = \"BAM\",\n BBD = \"BBD\",\n BDT = \"BDT\",\n BGN = \"BGN\",\n BHD = \"BHD\",\n BIF = \"BIF\",\n BMD = \"BMD\",\n BND = \"BND\",\n BOB = \"BOB\",\n BRL = \"BRL\",\n BSD = \"BSD\",\n BTN = \"BTN\",\n BWP = \"BWP\",\n BYN = \"BYN\",\n BYR = \"BYR\",\n BZD = \"BZD\",\n CAD = \"CAD\",\n CDF = \"CDF\",\n CHF = \"CHF\",\n CLF = \"CLF\",\n CLP = \"CLP\",\n CNY = \"CNY\",\n COP = \"COP\",\n CRC = \"CRC\",\n CUC = \"CUC\",\n CUP = \"CUP\",\n CVE = \"CVE\",\n CZK = \"CZK\",\n DJF = \"DJF\",\n DKK = \"DKK\",\n DOP = \"DOP\",\n DZD = \"DZD\",\n EGP = \"EGP\",\n ERN = \"ERN\",\n ETB = \"ETB\",\n EUR = \"EUR\",\n FJD = \"FJD\",\n FKP = \"FKP\",\n GBP = \"GBP\",\n GEL = \"GEL\",\n GGP = \"GGP\",\n GHS = \"GHS\",\n GIP = \"GIP\",\n GMD = \"GMD\",\n GNF = \"GNF\",\n GTQ = \"GTQ\",\n GYD = \"GYD\",\n HKD = \"HKD\",\n HNL = \"HNL\",\n HRK = \"HRK\",\n HTG = \"HTG\",\n HUF = \"HUF\",\n IDR = \"IDR\",\n ILS = \"ILS\",\n IMP = \"IMP\",\n INR = \"INR\",\n IQD = \"IQD\",\n IRR = \"IRR\",\n ISK = \"ISK\",\n JEP = \"JEP\",\n JMD = \"JMD\",\n JOD = \"JOD\",\n JPY = \"JPY\",\n KES = \"KES\",\n KGS = \"KGS\",\n KHR = \"KHR\",\n KMF = \"KMF\",\n KPW = \"KPW\",\n KRW = \"KRW\",\n KWD = \"KWD\",\n KYD = \"KYD\",\n KZT = \"KZT\",\n LAK = \"LAK\",\n LBP = \"LBP\",\n LKR = \"LKR\",\n LRD = \"LRD\",\n LSL = \"LSL\",\n LTL = \"LTL\",\n LVL = \"LVL\",\n LYD = \"LYD\",\n MAD = \"MAD\",\n MDL = \"MDL\",\n MGA = \"MGA\",\n MKD = \"MKD\",\n MMK = \"MMK\",\n MNT = \"MNT\",\n MOP = \"MOP\",\n MRO = \"MRO\",\n MUR = \"MUR\",\n MVR = \"MVR\",\n MWK = \"MWK\",\n MXN = \"MXN\",\n MYR = \"MYR\",\n MZN = \"MZN\",\n NAD = \"NAD\",\n NGN = \"NGN\",\n NIO = \"NIO\",\n NOK = \"NOK\",\n NPR = \"NPR\",\n NZD = \"NZD\",\n OMR = \"OMR\",\n PAB = \"PAB\",\n PEN = \"PEN\",\n PGK = \"PGK\",\n PHP = \"PHP\",\n PKR = \"PKR\",\n PLN = \"PLN\",\n PYG = \"PYG\",\n QAR = \"QAR\",\n RON = \"RON\",\n RSD = \"RSD\",\n RUB = \"RUB\",\n RWF = \"RWF\",\n SAR = \"SAR\",\n SBD = \"SBD\",\n SCR = \"SCR\",\n SDG = \"SDG\",\n SEK = \"SEK\",\n SGD = \"SGD\",\n SHP = \"SHP\",\n SLL = \"SLL\",\n SOS = \"SOS\",\n SRD = \"SRD\",\n STD = \"STD\",\n SVC = \"SVC\",\n SYP = \"SYP\",\n SZL = \"SZL\",\n THB = \"THB\",\n TJS = \"TJS\",\n TMT = \"TMT\",\n TND = \"TND\",\n TOP = \"TOP\",\n TRY = \"TRY\",\n TTD = \"TTD\",\n TWD = \"TWD\",\n TZS = \"TZS\",\n UAH = \"UAH\",\n UGX = \"UGX\",\n USD = \"USD\",\n UYU = \"UYU\",\n UZS = \"UZS\",\n VEF = \"VEF\",\n VND = \"VND\",\n VUV = \"VUV\",\n WST = \"WST\",\n XAF = \"XAF\",\n XAG = \"XAG\",\n XAU = \"XAU\",\n XCD = \"XCD\",\n XDR = \"XDR\",\n XOF = \"XOF\",\n XPF = \"XPF\",\n YER = \"YER\",\n ZAR = \"ZAR\",\n ZMK = \"ZMK\",\n ZMW = \"ZMW\",\n ZWL = \"ZWL\",\n XPT = \"XPT\",\n XPD = \"XPD\",\n BTC = \"BTC\",\n ETH = \"ETH\",\n BNB = \"BNB\",\n XRP = \"XRP\",\n SOL = \"SOL\",\n DOT = \"DOT\",\n AVAX = \"AVAX\",\n MATIC = \"MATIC\",\n LTC = \"LTC\",\n ADA = \"ADA\"\n}\n\n/** Currency according to the ISO 4217 standard. */\nexport enum CurrencyUnit {\n /** Return the currency in EUR. */\n EUR = \"EUR\",\n /** Return the currency in USD. */\n USD = \"USD\",\n /** Return the currency in GBP. */\n GBP = \"GBP\",\n AED = \"AED\",\n AFN = \"AFN\",\n ALL = \"ALL\",\n AMD = \"AMD\",\n ANG = \"ANG\",\n AOA = \"AOA\",\n ARS = \"ARS\",\n AUD = \"AUD\",\n AWG = \"AWG\",\n AZN = \"AZN\",\n BAM = \"BAM\",\n BBD = \"BBD\",\n BDT = \"BDT\",\n BGN = \"BGN\",\n BIF = \"BIF\",\n BMD = \"BMD\",\n BND = \"BND\",\n BOB = \"BOB\",\n BRL = \"BRL\",\n BSD = \"BSD\",\n BWP = \"BWP\",\n BYN = \"BYN\",\n BZD = \"BZD\",\n CAD = \"CAD\",\n CDF = \"CDF\",\n CHF = \"CHF\",\n CLP = \"CLP\",\n CNY = \"CNY\",\n COP = \"COP\",\n CRC = \"CRC\",\n CVE = \"CVE\",\n CZK = \"CZK\",\n DJF = \"DJF\",\n DKK = \"DKK\",\n DOP = \"DOP\",\n DZD = \"DZD\",\n EGP = \"EGP\",\n ETB = \"ETB\",\n FJD = \"FJD\",\n FKP = \"FKP\",\n GEL = \"GEL\",\n GIP = \"GIP\",\n GMD = \"GMD\",\n GNF = \"GNF\",\n GTQ = \"GTQ\",\n GYD = \"GYD\",\n HKD = \"HKD\",\n HNL = \"HNL\",\n HTG = \"HTG\",\n HUF = \"HUF\",\n IDR = \"IDR\",\n ILS = \"ILS\",\n INR = \"INR\",\n ISK = \"ISK\",\n JMD = \"JMD\",\n JPY = \"JPY\",\n KES = \"KES\",\n KGS = \"KGS\",\n KHR = \"KHR\",\n KMF = \"KMF\",\n KRW = \"KRW\",\n KYD = \"KYD\",\n KZT = \"KZT\",\n LAK = \"LAK\",\n LBP = \"LBP\",\n LKR = \"LKR\",\n LRD = \"LRD\",\n LSL = \"LSL\",\n MAD = \"MAD\",\n MDL = \"MDL\",\n MGA = \"MGA\",\n MKD = \"MKD\",\n MMK = \"MMK\",\n MNT = \"MNT\",\n MOP = \"MOP\",\n MUR = \"MUR\",\n MVR = \"MVR\",\n MWK = \"MWK\",\n MXN = \"MXN\",\n MYR = \"MYR\",\n MZN = \"MZN\",\n NAD = \"NAD\",\n NGN = \"NGN\",\n NIO = \"NIO\",\n NOK = \"NOK\",\n NPR = \"NPR\",\n NZD = \"NZD\",\n PAB = \"PAB\",\n PEN = \"PEN\",\n PGK = \"PGK\",\n PHP = \"PHP\",\n PKR = \"PKR\",\n PLN = \"PLN\",\n PYG = \"PYG\",\n QAR = \"QAR\",\n RON = \"RON\",\n RSD = \"RSD\",\n RUB = \"RUB\",\n RWF = \"RWF\",\n SAR = \"SAR\",\n SBD = \"SBD\",\n SCR = \"SCR\",\n SEK = \"SEK\",\n SGD = \"SGD\",\n SHP = \"SHP\",\n SLE = \"SLE\",\n SOS = \"SOS\",\n SRD = \"SRD\",\n STD = \"STD\",\n SZL = \"SZL\",\n THB = \"THB\",\n TJS = \"TJS\",\n TOP = \"TOP\",\n TRY = \"TRY\",\n TTD = \"TTD\",\n TWD = \"TWD\",\n TZS = \"TZS\",\n UAH = \"UAH\",\n UGX = \"UGX\",\n UYU = \"UYU\",\n UZS = \"UZS\",\n VND = \"VND\",\n VUV = \"VUV\",\n WST = \"WST\",\n XAF = \"XAF\",\n XCD = \"XCD\",\n XOF = \"XOF\",\n XPF = \"XPF\",\n YER = \"YER\",\n ZAR = \"ZAR\",\n ZMW = \"ZMW\"\n}\n\n/** Represents a day of the week. */\nexport enum DayOfWeek {\n MONDAY = \"monday\",\n TUESDAY = \"tuesday\",\n WEDNESDAY = \"wednesday\",\n THURSDAY = \"thursday\",\n FRIDAY = \"friday\",\n SATURDAY = \"saturday\",\n SUNDAY = \"sunday\"\n}\n\nexport enum DimensionUnit {\n /** Return the dimension in meters. */\n METER = \"meter\",\n /** Return the dimension in feet. */\n FOOT = \"foot\",\n /** Return the dimension in kilometers. */\n KILOMETER = \"kilometer\",\n /** Return the dimension in miles. */\n MILE = \"mile\"\n}\n\nexport type DimensionsInput = {\n /** Value of the dimension */\n value: Scalars[\"Float\"];\n /** Dimension unit */\n type: MeasurementUnit;\n};\n\nexport type DistanceInput = {\n /** Value of the distance. */\n value: Scalars[\"Float\"];\n /** Unit of distance. */\n unit: DistanceUnit;\n};\n\nexport enum DistanceUnit {\n /** Distance in meters. */\n METER = \"meter\",\n /** Distance in feet. */\n FOOT = \"foot\",\n /** Distance in kilometers. */\n KILOMETER = \"kilometer\",\n /** Distance in miles. */\n MILE = \"mile\"\n}\n\n/** EVSE data which extends OCPI EVSE. */\nexport type EVSE = {\n /**\n * 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.\n * This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.\n */\n uid?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n evse_id?: Maybe<Scalars[\"String\"]>;\n /** Indicates the current status of an EVSE. */\n status?: Maybe<OCPIStatus>;\n /** Indicates a planned status update of a nEVSE. */\n status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;\n /** List of functionalities that an EVSE is capable of. */\n capabilities?: Maybe<Array<Maybe<OCPICapability>>>;\n /** List of available connectors on an EVSE. */\n connectors?: Maybe<Array<Maybe<Connector>>>;\n /** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */\n floor_level?: Maybe<Scalars[\"String\"]>;\n /** Coordinates of a EVSE. */\n coordinates?: Maybe<OCPIGeoLocation>;\n /** A number/string printed on the outside of an EVSE for visual identification. */\n physical_reference?: Maybe<Scalars[\"String\"]>;\n /** Restrictions that apply to a parking spot. */\n parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;\n /** Links to images related to an EVSE such as photos or logos. */\n images?: Maybe<Array<Maybe<OCPIImage>>>;\n /** Timestamp when this EVSE or one of its Connectors was last updated (or created). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n /** Indicates if parking is free or paid. */\n parking_cost?: Maybe<ParkingCost>;\n /** Unique ID of the location in the system of the CPO. */\n cpo_external_id?: Maybe<Scalars[\"String\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Custom properties of an EVSE. */\n custom_properties?: Maybe<EvseCustomProperties>;\n};\n\nexport type ElectricityGenerationMethod = {\n /** Fraction of total electricity production. */\n fraction: Scalars[\"Float\"];\n /** Emissions per kWh of the generation method. */\n intensity: Scalars[\"Float\"];\n};\n\nexport type ElectricityGenerationMethodintensityArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type ElevationInput = {\n /** Value of the elevation. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the elevation. */\n type: DistanceUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum ElevationUnit {\n /** Return the elevation in meters. */\n METER = \"meter\",\n /** Return the elevation in feet. */\n FOOT = \"foot\"\n}\n\nexport enum EmissionRateUnit {\n /** Return the emission rate in grams per kilometer. */\n GRAMS_PER_KILOMETER = \"grams_per_kilometer\",\n /** Return the emission rate in ounces per mile. */\n OUNCES_PER_MILE = \"ounces_per_mile\"\n}\n\nexport enum EmissionUnit {\n /** Return the emissions in grams. */\n GRAM = \"gram\",\n /** Return the emissions in ounces. */\n OUNCE = \"ounce\"\n}\n\nexport type EmissionsFactor = {\n /** The name of the area for which the emissions factor was calculated. */\n name: Scalars[\"String\"];\n /** The type of area for which the emissions factor was calculated. */\n type: EmissionsFactorType;\n /** The base regional emissions factor in CO2e/kWh. */\n value: Scalars[\"Float\"];\n};\n\nexport type EmissionsFactorvalueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Emissions factor type. */\nexport enum EmissionsFactorType {\n COUNTRY = \"country\",\n SUBREGION = \"subregion\",\n REGION = \"region\"\n}\n\n/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\nexport type EvseCustomProperties = {\n /** OICP standard custom properties. */\n oicp?: Maybe<OICPEvseCustomProperties>;\n};\n\n/** A GeoJSON Feature<LineString>. */\nexport type FeatureLineString = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: LineString;\n};\n\n/** A GeoJSON Feature<MultiPolygon>. */\nexport type FeatureMultiPolygon = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: MultiPolygon;\n /** Properties of the MultiPolygon Feature. */\n properties?: Maybe<PolygonProperties>;\n};\n\n/** A GeoJSON Feature<Point>. */\nexport type FeatureMultiPolygonPoint = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Optional object where you can store custom data you need in your application. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** A GeoJSON Feature<Point>. */\nexport type FeaturePoint = {\n /** Feature ID. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** A GeoJSON Feature<Point> input. */\nexport type FeaturePointInput = {\n /** The feature ID. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** A GeoJSON Feature<Point> input. */\nexport type FeaturePointPolygonInput = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Optional object where you can store custom data you need in your application. */\n properties?: Maybe<FeaturePointPolygonPropertiesInput>;\n};\n\n/** Properties for Feature<Point> input. */\nexport type FeaturePointPolygonProperties = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Properties for Feature<Point> input. */\nexport type FeaturePointPolygonPropertiesInput = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\n/** GeoJSON Feature type. */\nexport enum FeatureType {\n FEATURE = \"Feature\"\n}\n\nexport type FluidEndOfLifeEmissions = {\n /** Total fluid end of life emissions. */\n total: Scalars[\"Float\"];\n /** Wiper fluid end of life emissions. */\n wiper: Scalars[\"Float\"];\n /** Brake fluid end of life emissions. */\n brake: Scalars[\"Float\"];\n /** Powertrain coolant fluid end of life emissions. */\n powertrain_coolant: Scalars[\"Float\"];\n /** Transmission fluid end of life emissions. */\n transmission: Scalars[\"Float\"];\n /** Motor oil end of life emissions. */\n motor_oil?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type FluidEndOfLifeEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionswiperArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionsbrakeArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionspowertrain_coolantArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionstransmissionArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionsmotor_oilArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidMaintenanceEmissions = {\n /** Total fluid maintenance emissions. */\n total: RouteOperationalMaintenanceEmissionsField;\n /** Wiper fluid maintenance emissions. */\n wiper: RouteOperationalMaintenanceEmissionsField;\n /** Brake fluid maintenance emissions. */\n brake: RouteOperationalMaintenanceEmissionsField;\n /** Powertrain coolant fluid maintenance emissions. */\n powertrain_coolant: RouteOperationalMaintenanceEmissionsField;\n /** Transmission fluid maintenance emissions. */\n transmission: RouteOperationalMaintenanceEmissionsField;\n /** Motor oil maintenance emissions. */\n motor_oil?: Maybe<RouteOperationalMaintenanceEmissionsField>;\n};\n\nexport enum FuelConsumptionUnit {\n /** Return the fuel consumption in liters per 100 kilometers. */\n LITERS_PER_100_KILOMETERS = \"liters_per_100_kilometers\",\n /** Return the fuel consumption in miles per gallon. */\n MILES_PER_GALLON = \"miles_per_gallon\"\n}\n\nexport enum FuelUnit {\n /** Return the fuel consumption in liters. */\n LITER = \"liter\",\n /** Return the fuel consumption in US gallon. */\n GALLON = \"gallon\"\n}\n\n/** Geometry point with GPS coordinates */\nexport type GeometryPoint = {\n type: PointType;\n coordinates: Array<Scalars[\"Float\"]>;\n};\n\n/** Mode of heat pump. */\nexport enum HeatPumpMode {\n /** Default to the vehicle configuration. */\n DEFAULT = \"default\",\n /** Vehicle has it installed. */\n INSTALLED = \"installed\",\n /** Vehicle doesn't have it installed. */\n NONE = \"none\"\n}\n\n/** Allowed N (EU) types of heavy vehicles. */\nexport enum HeavyVehiclesEUType {\n /** 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). */\n N1 = \"N1\",\n /** 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). */\n N2 = \"N2\",\n /** 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). */\n N3 = \"N3\",\n /** N3 type of heavy vehicles having O4 type of trailers can be parked at the charging station. N3 vehicles have a maximum mass exceeding 12 tonnes (26,000 lbs) and O4 trailers have a maximum mass exceeding 10 tonnes (22000 lbs). */\n N3_O4 = \"N3_O4\"\n}\n\n/** List of facilities in the location. */\nexport enum HeavyVehiclesFacility {\n /** Truck parking. */\n TRUCK_PARKING = \"TRUCK_PARKING\",\n /** Truck wash. */\n TRUCK_WASH = \"TRUCK_WASH\",\n /** Truck repair. */\n TRUCK_REPAIR = \"TRUCK_REPAIR\",\n /** Truck dealership. */\n TRUCK_DEALERSHIP = \"TRUCK_DEALERSHIP\",\n /** Secure truck parking. */\n SECURE_TRUCK_PARKING = \"SECURE_TRUCK_PARKING\"\n}\n\nexport type Isoline = {\n /** Isoline id. */\n id: Scalars[\"ID\"];\n /** Isoline status. */\n status: IsolineStatus;\n /** Distance from the origin to the furthest reachable point within the isoline. Represents the longest drivable distance, not a straight-line or vehicle range. */\n maximum_distance?: Maybe<Scalars[\"Float\"]>;\n /** Shape of the isoline consisting in a list of multipolygons. */\n polygons?: Maybe<Array<Maybe<FeatureMultiPolygon>>>;\n /** List of the ferries uniting islands formed by the isoline. */\n ferries?: Maybe<Array<Maybe<FeatureLineString>>>;\n /** The inputted request data for the isoline used to compute it. */\n request_input?: Maybe<IsolineRequestInput>;\n};\n\nexport type Isolinemaximum_distanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type IsolineCabin = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type IsolineCabindesired_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\n/** Information about the cabin of the vehicle. */\nexport type IsolineCabinInput = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature?: Maybe<TemperatureInput>;\n};\n\nexport enum IsolineFerryConnectionsType {\n /** Ferry connections should not be included. */\n NONE = \"none\",\n /** Ferry connections should be taken into account but only one level deep. For example: from the European mainland to England and no other connecting ferries departing from England. */\n SINGLE = \"single\"\n}\n\nexport type IsolineInput = {\n /** Vehicle id. */\n vehicle_id: Scalars[\"ID\"];\n /** Origin point of the request. */\n origin: FeaturePointPolygonInput;\n /** Numbers of polygons to be generated (maximum: 20). */\n polygon_count?: Maybe<Scalars[\"Int\"]>;\n /** Vehicle should be able to return to the origin point from any point. */\n round_trip?: Maybe<Scalars[\"Boolean\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Cumulated weight of the occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Cargo weight. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n /** Climate is on. */\n climate_control?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<IsolineCabinInput>;\n /** Weather configuration for the isoline. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data. */\n weather?: Maybe<IsolineWeatherInput>;\n /** Season to be taken into account when generating the isoline. If not specified, defaults to real-time weather data. */\n season?: Maybe<RouteSeason>;\n /** Polygons precision quality. */\n quality?: Maybe<IsolineQuality>;\n /** Include ferry connections. Single and multiple ferry connections increase the calculation time and the number of polygons. */\n ferry_connections?: Maybe<IsolineFerryConnectionsType>;\n /** Battery state of charge. Default is usable battery kwh of the inputted vehicle. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Minimum final battery state of charge. Default is 0 */\n final_state_of_charge?: Maybe<StateOfChargeInput>;\n /** [BETA] User-defined maximum speed used for the isoline. */\n maximum_speed?: Maybe<MaximumSpeedInput>;\n};\n\n/** Granularity of the isoline. */\nexport enum IsolineQuality {\n /** High polygons precisions. */\n HIGH = \"high\",\n /** Low polygons precisions. */\n LOW = \"low\"\n}\n\nexport type IsolineRequestInput = {\n /** Vehicle id. */\n vehicle_id: Scalars[\"ID\"];\n /** Origin point of the request. */\n origin: FeaturePoint;\n /** Numbers of polygons that were generated. */\n polygon_count?: Maybe<Scalars[\"Int\"]>;\n /** Vehicle should be able to return to the origin point from any point. */\n round_trip?: Maybe<Scalars[\"Boolean\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Cumulated weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Cargo weight. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Climate is on. */\n climate_control?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<IsolineCabin>;\n /**\n * Season taken into account when isoline was generated.\n * @deprecated In favor of weather.\n */\n season?: Maybe<RouteSeason>;\n /** Weather configuration for the isoline. Defined by a preset or custom weather conditions. */\n weather?: Maybe<IsolineWeather>;\n /** Polygons precision quality. */\n quality?: Maybe<IsolineQuality>;\n /** Ferry connections. */\n ferry_connections?: Maybe<IsolineFerryConnectionsType>;\n /** Battery state of charge. */\n state_of_charge: Scalars[\"Float\"];\n /** Minimum final battery state of charge. */\n final_state_of_charge: Scalars[\"Float\"];\n /** [BETA] Maximum speed to consider when generating the isoline. In the segments where legal speed is lower than this value, the legal speed will be used instead. */\n maximum_speed?: Maybe<MaximumSpeed>;\n};\n\nexport type IsolineRequestInputtotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type IsolineRequestInputtotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type IsolineRequestInputstate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type IsolineRequestInputfinal_state_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Status of the isoline label. */\nexport enum IsolineStatus {\n /** Isoline label has been successfully generated. */\n DONE = \"done\",\n /** Isoline label is under processing. */\n PENDING = \"pending\",\n /** There was an error while generating the isoline label. */\n ERROR = \"error\"\n}\n\nexport type IsolineWeather = {\n /** Weather configuration applied to the isoline. */\n type: WeatherType;\n /** [BETA] Custom weather conditions applied to the isoline. Only present when 'type' is set to 'CUSTOM'. */\n custom?: Maybe<IsolineWeatherCustomConditions>;\n};\n\nexport type IsolineWeatherCustomConditions = {\n /** Average ambient temperature estimated along the isoline. */\n temperature: Temperature;\n /** Atmospheric pressure along the isoline. */\n air_pressure: AirPressure;\n /** Solar irradiance along the isoline. */\n solar_irradiance: SolarIrradiance;\n};\n\nexport type IsolineWeatherCustomConditionsInput = {\n /** Average ambient temperature estimated within the isoline. */\n temperature: TemperatureInput;\n /** Atmospheric pressure within the isoline. */\n air_pressure: AirPressureInput;\n /** Solar irradiance within the isoline. */\n solar_irradiance: SolarIrradianceInput;\n};\n\nexport type IsolineWeatherInput = {\n /** Weather configuration applied within the isoline. */\n type?: Maybe<WeatherType>;\n /** [BETA] Custom weather conditions to apply within the isoline. Required only when 'type' is 'CUSTOM'. Must be omitted for other weather types. */\n custom?: Maybe<IsolineWeatherCustomConditionsInput>;\n};\n\n/** Types of a leg. */\nexport enum LegType {\n /** This leg ends at a charging station and the vehicle must recharge. */\n STATION = \"station\",\n /** This leg ends at a via charging station and the vehicle must recharge. */\n STATIONVIA = \"stationVia\",\n /** This leg ends at a scheduled charging station and the vehicle must recharge. */\n STATIONAMENITY = \"stationAmenity\",\n /** This leg ends at a via location. */\n VIA = \"via\",\n /** This leg ends at the destination, and is the last leg of the route. */\n FINAL = \"final\",\n /** This leg ends at the destination which is a charging station, and is the last leg of the route. */\n STATIONFINAL = \"stationFinal\"\n}\n\n/** A GeoJSON LineString. */\nexport type LineString = {\n /** LineString type. */\n type: LineStringType;\n /** List of coordinates arrays with longitude as first value and latitude as second one. */\n coordinates: Array<Maybe<Array<Scalars[\"Float\"]>>>;\n};\n\n/** GeoJSON LineString type. */\nexport enum LineStringType {\n LINESTRING = \"LineString\"\n}\n\nexport type MaximumSpeed = {\n /** Numeric value of the user-defined maximum speed. */\n value: Scalars[\"Int\"];\n /** Unit in which speed is measured. */\n type: SpeedUnit;\n};\n\nexport type MaximumSpeedInput = {\n /** Numeric value of the user-defined maximum speed. */\n value: Scalars[\"Int\"];\n /** Unit in which speed is measured. */\n type: SpeedUnit;\n};\n\nexport enum MeasurementUnit {\n /** Return the measurement in millimeters. */\n MILLIMETER = \"millimeter\",\n /** Return the measurement in inches. */\n INCH = \"inch\"\n}\n\n/** A GeoJSON Polygon. */\nexport type MultiPolygon = {\n /** MultiPolygon type. */\n type: MultiPolygonType;\n /** List of coordinates representing a polygon. */\n coordinates: Array<\n Maybe<Array<Maybe<Array<Maybe<Array<Scalars[\"Float\"]>>>>>>\n >;\n};\n\n/** GeoJSON MultiPolygon type. */\nexport enum MultiPolygonType {\n MULTIPOLYGON = \"MultiPolygon\"\n}\n\nexport type Mutation = {\n /** [BETA] Create a connected vehicle for a given vehicle id and a connectivity provider */\n createConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Authorize a connected vehicle */\n authorizeConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Update a connected vehicle */\n updateConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Remove a connected vehicle and revoke access */\n removeConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** Create a consumption based isoline. */\n createIsoline?: Maybe<Scalars[\"ID\"]>;\n /** [BETA] Start a new navigation session on top of an existing route */\n startNavigation?: Maybe<Scalars[\"ID\"]>;\n /** [BETA] Update the navigation session */\n updateNavigation?: Maybe<Scalars[\"Boolean\"]>;\n /** [BETA] Recalculate the current navigation route */\n recalculateNavigation?: Maybe<Scalars[\"Boolean\"]>;\n /** [BETA] End a navigation session */\n finishNavigation?: Maybe<Scalars[\"Boolean\"]>;\n /**\n * Add a new review.\n * If the `x-token` header is send for a valid user, the review will belong to it, otherwise will be added for an anonymouse user\n */\n addReview: Review;\n /**\n * Remove a review added by an authenticated user.\n * The `x-token` header is mandatory in order to authorize the user who wants to remove a review.\n * In case it is not sent, an error will occur.\n * In case the review was not found or belongs to another user an error will occur.\n * This is a premium feature, contact Chargetrip for more information.\n */\n deleteUserReview: Review;\n /**\n * Create a new route from the route input.\n * @deprecated In favor of `createRoute`.\n */\n newRoute?: Maybe<Scalars[\"ID\"]>;\n /** Create a new route from the route input. */\n createRoute: Scalars[\"ID\"];\n /** [ALPHA] Create a new truck route from the route input and its ID. */\n createTruckRoute: Scalars[\"ID\"];\n};\n\nexport type MutationcreateConnectedVehicleArgs = {\n input?: Maybe<CreateConnectedVehicleInput>;\n};\n\nexport type MutationauthorizeConnectedVehicleArgs = {\n input?: Maybe<AuthorizeConnectedVehicleInput>;\n};\n\nexport type MutationupdateConnectedVehicleArgs = {\n input: UpdateConnectedVehicleInput;\n};\n\nexport type MutationremoveConnectedVehicleArgs = {\n input: RemoveConnectedVehicleInput;\n};\n\nexport type MutationcreateIsolineArgs = {\n input: IsolineInput;\n};\n\nexport type MutationstartNavigationArgs = {\n input: NavigationStartInput;\n};\n\nexport type MutationupdateNavigationArgs = {\n input: NavigationUpdateInput;\n};\n\nexport type MutationrecalculateNavigationArgs = {\n input: NavigationRecalculateInput;\n};\n\nexport type MutationfinishNavigationArgs = {\n input: NavigationFinishInput;\n};\n\nexport type MutationaddReviewArgs = {\n review: ReviewAdd;\n};\n\nexport type MutationdeleteUserReviewArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type MutationnewRouteArgs = {\n input?: Maybe<RequestInput>;\n};\n\nexport type MutationcreateRouteArgs = {\n input: CreateRouteInput;\n};\n\nexport type MutationcreateTruckRouteArgs = {\n input: CreateTruckRouteInput;\n};\n\n/** Navigation session data. */\nexport type Navigation = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** Navigation session details overview. */\n overview: NavigationOverview;\n /** The status of the navigation session vehicle. The status can be driving, charging or parked. */\n vehicle_status: NavigationVehicleStatus;\n /** The status of a navigation session. The status can be active, finished or error. */\n status: NavigationStatus;\n /** Navigation meta information. */\n meta?: Maybe<NavigationMeta>;\n};\n\n/** Navigation session alternative station type. */\nexport type NavigationAlternativeStation = {\n /** Coordinates of a station. */\n location: Point;\n /** ID of the station. */\n station_id: Scalars[\"ID\"];\n /** ID of the EVSE that was selected in a route. */\n evse_id?: Maybe<Scalars[\"ID\"]>;\n /** ID of the connector that was selected in a route. */\n connector_id: Scalars[\"ID\"];\n /** Station operator. */\n operator?: Maybe<NavigationStationOperator>;\n};\n\n/** Represents the most recent completed meaningful change to the navigation session. */\nexport type NavigationChange = {\n /** Timestamp when the change was finalized. */\n created_at: Scalars[\"DateTime\"];\n /** What kind of change occurred. */\n type: NavigationChangeType;\n /** Where the change originated from. */\n source: NavigationChangeSource;\n};\n\nexport enum NavigationChangeSource {\n /** Triggered by an explicit client action (e.g. a recalculateNavigation call). */\n CLIENT = \"client\",\n /** Triggered by backend domain changes (e.g. station availability, background recalculation). */\n SERVER = \"server\"\n}\n\nexport enum NavigationChangeType {\n /** Navigation session has just started. */\n STARTED = \"started\",\n /** The route has been modified or recalculated. */\n ROUTE_UPDATED = \"route_updated\",\n /** Next station availability has changed. */\n NEXT_STATION_AVAILABILITY_UPDATED = \"next_station_availability_updated\"\n}\n\n/** Input for the navigation finish. */\nexport type NavigationFinishInput = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** Current coordinates. */\n current_location: PointInput;\n};\n\n/** Navigation route leg section details. */\nexport type NavigationLegSection = {\n /** Section type. */\n type: RouteDetailsLegSectionType;\n /** Origin point. */\n origin: RouteDetailsLegSectionFeaturePoint;\n /** Destination point. */\n destination: RouteDetailsLegSectionFeaturePoint;\n /** Aggregation of tags over the current section. */\n tags: Array<RouteDetailsTag>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Total duration of a section, in seconds. The value will be 0 for walking sections. */\n duration: Scalars[\"Float\"];\n};\n\n/** Navigation route leg section details. */\nexport type NavigationLegSectionpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type NavigationLiveRouteRequest = {\n /** Vehicle used on a route. */\n vehicle: NavigationRouteVehicle;\n /** Origin of a route. */\n origin: RouteOriginFeaturePoint;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePoint;\n /** Via points of a route. */\n via?: Maybe<Array<NavigationViaFeaturePoint>>;\n /** Operator preferences for a route. When provided, prefers routes that use higher order operators. */\n operators?: Maybe<RouteOperatorPreferences>;\n /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */\n alternative_station_radius?: Maybe<AlternativeStationRadius>;\n /** [BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteAvoid>>;\n /** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */\n driving_preferences?: Maybe<RouteDrivingPreferences>;\n /** Charging stations preferences for route calculation. */\n station_preferences?: Maybe<RouteStationPreferences>;\n};\n\n/** Navigation meta information. */\nexport type NavigationMeta = {\n /** Creation time of the navigation session. */\n created_at: Scalars[\"DateTime\"];\n /** Last updated time of the navigation session. */\n updated_at: Scalars[\"DateTime\"];\n};\n\n/** Navigation session overview details. */\nexport type NavigationOverview = {\n /** State of charge at the last known location. */\n state_of_charge: Scalars[\"Float\"];\n /** Last known location. */\n last_known_location: Point;\n /** Next stop details. Can be a charging or a location stop. */\n next_stop: NavigationStop;\n /** Continuously updated route legs. */\n legs: Array<Maybe<NavigationRouteLeg>>;\n /** Continuously updated durations of the route. */\n durations: RouteDetailsDurations;\n /** Navigation route instructions. */\n instructions: Array<Maybe<RouteInstruction>>;\n /** Continuously updated route request input. */\n live_route_request: NavigationLiveRouteRequest;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Telemetry data. */\n telemetry?: Maybe<Telemetry>;\n};\n\n/** Navigation session overview details. */\nexport type NavigationOverviewstate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Navigation session overview details. */\nexport type NavigationOverviewpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type NavigationPropertiesStation = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type NavigationPropertiesStationInput = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type NavigationPropertiesVehicle = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight: TotalOccupantWeight;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeight>;\n};\n\nexport type NavigationPropertiesVehicleInput = {\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n};\n\nexport type NavigationPropertiesViaLocation = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type NavigationPropertiesViaLocationInput = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Input for the navigation recalculate. */\nexport type NavigationRecalculateInput = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** State of charge at origin. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Origin location of a new route. */\n current_location: PointInput;\n /** Via points of a new route. If this field is not sent, the original via points will be used. */\n via?: Maybe<Array<NavigationViaFeaturePointInput>>;\n /** Telemetry data input. */\n telemetry?: Maybe<TelemetryInput>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLeg = {\n /** Distance from the start to the end of a leg. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route leg. */\n durations: RouteDetailsDurations;\n /** Origin point location. */\n origin: RouteDetailsLegFeaturePoint;\n /** Destination point location. */\n destination: RouteDetailsLegFeaturePoint;\n /** Range at the start of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Range after charging on the leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_after_charge?: Maybe<Scalars[\"Float\"]>;\n /** Type of a leg. */\n type: RouteDetailsLegType;\n /** Information about the station at the destination of a leg. */\n station?: Maybe<RouteDetailsLegStation>;\n /** Road sections of a leg - divided by means of transportation. */\n sections: Array<NavigationLegSection>;\n /** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegrange_after_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type NavigationRouteVehicle = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery: RouteVehicleBattery;\n /** Charging configuration. */\n charging: RouteVehicleCharging;\n /** Flag indicating if climate control is on. */\n climate: Scalars[\"Boolean\"];\n /** Vehicle Heat Pump configuration. */\n heat_pump: HeatPumpMode;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin: RouteVehicleCabin;\n};\n\n/** Input for the navigation start. */\nexport type NavigationStartInput = {\n /** ID of the route of the navigation session. */\n route_id: Scalars[\"ID\"];\n /** Current coordinates. */\n current_location: PointInput;\n};\n\n/** Navigation session station type. */\nexport type NavigationStation = {\n /** ID of the station. */\n station_id: Scalars[\"ID\"];\n /** ID of the EVSE that was selected in a route. */\n evse_id?: Maybe<Scalars[\"ID\"]>;\n /** ID of the connector that was selected in a route. */\n connector_id: Scalars[\"ID\"];\n /** Station operator. */\n operator?: Maybe<NavigationStationOperator>;\n};\n\n/** Navigation session station operator. */\nexport type NavigationStationOperator = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n};\n\n/** Status of navigation session. */\nexport enum NavigationStatus {\n /** Navigation session is live and currently tracking. */\n ACTIVE = \"active\",\n /** Navigation session is completed (either manually or automatically 48 hours after the last update). */\n FINISHED = \"finished\",\n /** Failed to update navigation session due to route error or not found. */\n ERROR = \"error\"\n}\n\n/** Next stop details. Can be a charging or a location stop. */\nexport type NavigationStop = {\n /** Estimated arrival state of charge at next stop. For HEVs and PHEVs this field will return null. */\n arrival_state_of_charge: Scalars[\"Float\"];\n /** Estimated arrival time at the next stop. */\n arrival_time: Scalars[\"DateTime\"];\n /** Coordinates of the next stop. */\n location: Point;\n /** Next stop's station to charge. Only present if the next stop is a station. */\n station?: Maybe<NavigationStation>;\n /** A set of alternative charging stations to next station. Only present if next stop is a station. */\n alternative_stations?: Maybe<Array<NavigationAlternativeStation>>;\n};\n\n/** Next stop details. Can be a charging or a location stop. */\nexport type NavigationStoparrival_state_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** The navigation session subscription data */\nexport type NavigationSubscription = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** The status of the navigation session vehicle. The status can be driving, charging or parked. */\n vehicle_status: NavigationVehicleStatus;\n /** The status of the navigation session. The status can be active, finished or error. */\n status: NavigationStatus;\n /** Navigation meta information. */\n meta?: Maybe<NavigationMeta>;\n /** Information about the latest completed change. */\n last_change: NavigationChange;\n};\n\n/** Input for the navigation update. */\nexport type NavigationUpdateInput = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** A list of locations that were collected since the last update. */\n location_data: Array<NavigationUpdateLocationsInput>;\n};\n\n/** Input for the navigation update locations. */\nexport type NavigationUpdateLocationsInput = {\n /** Location coordinates [longitude, latitude]. */\n coordinates: Array<Scalars[\"Float\"]>;\n /** Current route leg index corresponding to a location. */\n route_leg: Scalars[\"Int\"];\n /** UNIX timestamp at location, in seconds. */\n timestamp: Scalars[\"Int\"];\n /** Telemetry data input. */\n telemetry?: Maybe<TelemetryInput>;\n};\n\n/** Status of navigation session vehicle. */\nexport enum NavigationVehicleStatus {\n /** Vehicle is driving. */\n DRIVING = \"driving\",\n /** Vehicle is charging. */\n CHARGING = \"charging\",\n /** Vehicle is parked. */\n PARKED = \"parked\"\n}\n\nexport type NavigationViaFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<NavigationViaProperties>;\n};\n\nexport type NavigationViaFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<NavigationViaPropertiesInput>;\n};\n\nexport type NavigationViaProperties = {\n /** Location data of the via point. */\n location?: Maybe<NavigationPropertiesViaLocation>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<NavigationPropertiesVehicle>;\n /** Station data of the via point. */\n station?: Maybe<NavigationPropertiesStation>;\n};\n\nexport type NavigationViaPropertiesInput = {\n /** Location data of the via point. */\n location?: Maybe<NavigationPropertiesViaLocationInput>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<NavigationPropertiesVehicleInput>;\n /** Specifies a charging station at the via. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop. */\n station?: Maybe<NavigationPropertiesStationInput>;\n};\n\n/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */\nexport type OCPIAdditionalGeoLocation = {\n /** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: \".\" Regex: -?[0-9]{1,2}\\.[0-9]{5,7} */\n latitude?: Maybe<Scalars[\"String\"]>;\n /** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: \".\" Regex: -?[0-9]{1,3}\\.[0-9]{5,7} */\n longitude?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n name?: Maybe<OCPIDisplayText>;\n};\n\n/** The capabilities of an EVSE. */\nexport enum OCPICapability {\n /** The EVSE supports charging profiles. */\n CHARGING_PROFILE_CAPABLE = \"CHARGING_PROFILE_CAPABLE\",\n /** The EVSE supports charging preferences. */\n CHARGING_PREFERENCES_CAPABLE = \"CHARGING_PREFERENCES_CAPABLE\",\n /** EVSE has a payment terminal that supports chip cards. */\n CHIP_CARD_SUPPORT = \"CHIP_CARD_SUPPORT\",\n /** EVSE has a payment terminal that supports contactless cards. */\n CONTACTLESS_CARD_SUPPORT = \"CONTACTLESS_CARD_SUPPORT\",\n /** EVSE has a payment terminal that makes it possible to pay for charging using a credit card. */\n CREDIT_CARD_PAYABLE = \"CREDIT_CARD_PAYABLE\",\n /** EVSE has a payment terminal that makes it possible to pay for charging using a debit card. */\n DEBIT_CARD_PAYABLE = \"DEBIT_CARD_PAYABLE\",\n /** EVSE has a payment terminal with a pin-code entry device. */\n PED_TERMINAL = \"PED_TERMINAL\",\n /** The EVSE can remotely be started/stopped. */\n REMOTE_START_STOP_CAPABLE = \"REMOTE_START_STOP_CAPABLE\",\n /** The EVSE can be reserved. */\n RESERVABLE = \"RESERVABLE\",\n /** Charging at this EVSE can be authorized with an RFID token. */\n RFID_READER = \"RFID_READER\",\n /** This EVSE supports token groups, two or more tokens work as one, so that a session can be started with one token and stopped with another (handy when a card and key-fob are given to the EV-driver). */\n TOKEN_GROUP_CAPABLE = \"TOKEN_GROUP_CAPABLE\",\n /** Connectors have a mechanical lock that can be requested by the eMSP to be unlocked. */\n UNLOCK_CAPABLE = \"UNLOCK_CAPABLE\",\n /** When a StartSession is sent to this EVSE, the MSP is required to add the optional connector_id field in the StartSession object. */\n START_SESSION_CONNECTOR_REQUIRED = \"START_SESSION_CONNECTOR_REQUIRED\"\n}\n\n/** The format of the connector, whether it is a socket or a plug. */\nexport enum OCPIConnectorFormat {\n /** The connector is a socket; the EV user needs to bring a fitting plug. */\n SOCKET = \"SOCKET\",\n /** The connector is an attached cable; the EV users car needs to have a fitting inlet. */\n CABLE = \"CABLE\"\n}\n\n/** Socket or plug standard of the charging point. */\nexport enum OCPIConnectorType {\n /** The connector type is CHAdeMO, DC */\n CHADEMO = \"CHADEMO\",\n /** Standard/domestic household, type \"A\", NEMA 1-15, 2 pins */\n DOMESTIC_A = \"DOMESTIC_A\",\n /** Standard/domestic household, type \"B\", NEMA 5-15, 3 pins */\n DOMESTIC_B = \"DOMESTIC_B\",\n /** Standard/domestic household, type \"C\", CEE 7/17, 2 pins */\n DOMESTIC_C = \"DOMESTIC_C\",\n /** Standard/domestic household, type \"D\", 3 pins */\n DOMESTIC_D = \"DOMESTIC_D\",\n /** Standard/domestic household, type \"E\", CEE 7/5 3 pins */\n DOMESTIC_E = \"DOMESTIC_E\",\n /** Standard/domestic household, type \"F\", CEE 7/4, Schuko, 3 pins */\n DOMESTIC_F = \"DOMESTIC_F\",\n /** Standard/domestic household, type \"G\", BS 1363, Commonwealth, 3 pins */\n DOMESTIC_G = \"DOMESTIC_G\",\n /** Standard/domestic household, type \"H\", SI-32, 3 pins */\n DOMESTIC_H = \"DOMESTIC_H\",\n /** Standard/domestic household, type \"I\", AS 3112, 3 pins */\n DOMESTIC_I = \"DOMESTIC_I\",\n /** Standard/domestic household, type \"J\", SEV 1011, 3 pins */\n DOMESTIC_J = \"DOMESTIC_J\",\n /** Standard/domestic household, type \"K\", DS 60884-2-D1, 3 pins */\n DOMESTIC_K = \"DOMESTIC_K\",\n /** Standard/domestic household, type \"L\", CEI 23-16-VII, 3 pins */\n DOMESTIC_L = \"DOMESTIC_L\",\n /** Standard/Domestic household, type \"M\", BS 546, 3 pins */\n DOMESTIC_M = \"DOMESTIC_M\",\n /** Standard/Domestic household, type \"N\", NBR 14136, 3 pins */\n DOMESTIC_N = \"DOMESTIC_N\",\n /** Standard/Domestic household, type \"O\", TIS 166-2549, 3 pins */\n DOMESTIC_O = \"DOMESTIC_O\",\n /** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue) */\n IEC_60309_2_SINGLE_16 = \"IEC_60309_2_single_16\",\n /** IEC 60309-2 Industrial connector three phase 16 amperes (usually red) */\n IEC_60309_2_THREE_16 = \"IEC_60309_2_three_16\",\n /** IEC 60309-2 Industrial connector three phase 32 amperes (usually red) */\n IEC_60309_2_THREE_32 = \"IEC_60309_2_three_32\",\n /** IEC 60309-2 Industrial connector three phase 64 amperes (usually red) */\n IEC_60309_2_THREE_64 = \"IEC_60309_2_three_64\",\n /** IEC 62196 Type 1 \"SAE J1772\" */\n IEC_62196_T1 = \"IEC_62196_T1\",\n /** Combo Type 1 based, DC */\n IEC_62196_T1_COMBO = \"IEC_62196_T1_COMBO\",\n /** IEC 62196 Type 2 \"Mennekes\" */\n IEC_62196_T2 = \"IEC_62196_T2\",\n /** Combo Type 2 based, DC */\n IEC_62196_T2_COMBO = \"IEC_62196_T2_COMBO\",\n /** IEC 62196 Type 3A */\n IEC_62196_T3A = \"IEC_62196_T3A\",\n /** IEC 62196 Type 3C \"Scame\" */\n IEC_62196_T3C = \"IEC_62196_T3C\",\n /** On-board bottom-up-pantograph typically for bus charging */\n PANTOGRAPH_BOTTOM_UP = \"PANTOGRAPH_BOTTOM_UP\",\n /** Off-board top-down-pantograph typically for bus charging */\n PANTOGRAPH_TOP_DOWN = \"PANTOGRAPH_TOP_DOWN\",\n /** Tesla connector \"Roadster\"-type (round, 4 pins) */\n TESLA_R = \"TESLA_R\",\n /** Tesla connector \"Model-S\"-type (oval, 5 pins) */\n TESLA_S = \"TESLA_S\",\n /** The connector type is GB_T (Chinese standard), DC */\n GB_T = \"GB_T\",\n /** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */\n CHAOJI = \"CHAOJI\",\n /** The connector type is NEMA 5-20, 3 pins */\n NEMA_5_20 = \"NEMA_5_20\",\n /** The connector type is NEMA 6-30, 3 pins */\n NEMA_6_30 = \"NEMA_6_30\",\n /** The connector type is NEMA 6-50, 3 pins */\n NEMA_6_50 = \"NEMA_6_50\",\n /** The connector type is NEMA 10-30, 3 pins */\n NEMA_10_30 = \"NEMA_10_30\",\n /** The connector type is NEMA 10-50, 3 pins */\n NEMA_10_50 = \"NEMA_10_50\",\n /** The connector type is NEMA 14-30, 3 pins, rating of 30 A */\n NEMA_14_30 = \"NEMA_14_30\",\n /** The connector type is NEMA 14-50, 3 pins, rating of 50 A */\n NEMA_14_50 = \"NEMA_14_50\",\n /** Guobiao GB/T 20234.2 AC socket/connector. */\n GBT_AC = \"GBT_AC\",\n /** Guobiao GB/T 20234.3 DC connector. */\n GBT_DC = \"GBT_DC\"\n}\n\nexport enum OCPIDayOfWeek {\n MONDAY = \"MONDAY\",\n TUESDAY = \"TUESDAY\",\n WEDNESDAY = \"WEDNESDAY\",\n THURSDAY = \"THURSDAY\",\n FRIDAY = \"FRIDAY\",\n SATURDAY = \"SATURDAY\",\n SUNDAY = \"SUNDAY\"\n}\n\nexport type OCPIDisplayText = {\n /** Language Code ISO 639-1 */\n language?: Maybe<Scalars[\"String\"]>;\n /** Text to be displayed to an end user. No markup, html etc. allowed. */\n text?: Maybe<Scalars[\"String\"]>;\n};\n\n/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */\nexport type OCPIEnergyMix = {\n /** True if the power is 100% from regenerative sources */\n is_green_energy?: Maybe<Scalars[\"Boolean\"]>;\n /** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */\n energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;\n /** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */\n environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;\n /** Name of the energy supplier, delivering the energy for this location or tariff.* */\n supplier_name?: Maybe<Scalars[\"String\"]>;\n /** Name of the energy suppliers product/tariff plan used at this location.* */\n energy_product_name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type OCPIEnergySource = {\n /** The type of energy source. */\n source?: Maybe<OCPIEnergySourceCategory>;\n /** Percentage of this source (0-100) in the mix. */\n percentage?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Categories of energy sources. */\nexport enum OCPIEnergySourceCategory {\n /** Nuclear power sources. */\n NUCLEAR = \"NUCLEAR\",\n /** All kinds of fossil power sources. */\n GENERAL_FOSSIL = \"GENERAL_FOSSIL\",\n /** Fossil power from coal. */\n COAL = \"COAL\",\n /** Fossil power from gas. */\n GAS = \"GAS\",\n /** All kinds of regenerative power sources. */\n GENERAL_GREEN = \"GENERAL_GREEN\",\n /** Regenerative power from PV. */\n SOLAR = \"SOLAR\",\n /** Regenerative power from wind turbines. */\n WIND = \"WIND\",\n /** Regenerative power from water turbines. */\n WATER = \"WATER\"\n}\n\n/** Amount of waste produced/emitted per kWh. */\nexport type OCPIEnvironmentalImpact = {\n /** The environmental impact category of this value. */\n category?: Maybe<OCPIEnvironmentalImpactCategory>;\n /** Amount of this portion in g/kWh. */\n amount?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Categories of environmental impact values. */\nexport enum OCPIEnvironmentalImpactCategory {\n /** Produced nuclear waste in g/kWh. */\n NUCLEAR_WASTE = \"NUCLEAR_WASTE\",\n /** Exhausted carbon dioxide in g/kWh. */\n CARBON_DIOXIDE = \"CARBON_DIOXIDE\"\n}\n\n/** Specifies one exceptional period for opening or access hours. */\nexport type OCPIExceptionalPeriod = {\n /** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */\n period_begin?: Maybe<Scalars[\"DateTime\"]>;\n /** End of the exception. In UTC, time_zone field can be used to convert to local time. */\n period_end?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport enum OCPIFacility {\n /** A hotel. */\n HOTEL = \"HOTEL\",\n /** A restaurant. */\n RESTAURANT = \"RESTAURANT\",\n /** A cafe. */\n CAFE = \"CAFE\",\n /** A mall or shopping center. */\n MALL = \"MALL\",\n /** A supermarket. */\n SUPERMARKET = \"SUPERMARKET\",\n /** Sport facilities: gym, field etc. */\n SPORT = \"SPORT\",\n /** A recreation area. */\n RECREATION_AREA = \"RECREATION_AREA\",\n /** Located in, or close to, a park, nature reserve etc. */\n NATURE = \"NATURE\",\n /** A museum. */\n MUSEUM = \"MUSEUM\",\n /** A bike/e-bike/e-scooter sharing location. */\n BIKE_SHARING = \"BIKE_SHARING\",\n /** A bus stop. */\n BUS_STOP = \"BUS_STOP\",\n /** A taxi stand. */\n TAXI_STAND = \"TAXI_STAND\",\n /** A tram stop/station. */\n TRAM_STOP = \"TRAM_STOP\",\n /** A metro station. */\n METRO_STATION = \"METRO_STATION\",\n /** A train station. */\n TRAIN_STATION = \"TRAIN_STATION\",\n /** An airport. */\n AIRPORT = \"AIRPORT\",\n /** A parking lot. */\n PARKING_LOT = \"PARKING_LOT\",\n /** A carpool parking. */\n CARPOOL_PARKING = \"CARPOOL_PARKING\",\n /** A Fuel station. */\n FUEL_STATION = \"FUEL_STATION\",\n /** Wifi or other type of internet available. */\n WIFI = \"WIFI\"\n}\n\n/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */\nexport type OCPIGeoLocation = {\n /** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: \".\" Regex: -?[0-9]{1,2}\\.[0-9]{5,7} */\n latitude?: Maybe<Scalars[\"String\"]>;\n /** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: \".\" Regex: -?[0-9]{1,3}\\.[0-9]{5,7} */\n longitude?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Opening and access hours of the location. */\nexport type OCPIHours = {\n /** True to represent 24 hours a day and 7 days a week, except the given exceptions. */\n twentyfourseven?: Maybe<Scalars[\"Boolean\"]>;\n /** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */\n regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;\n /** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */\n exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;\n /** 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. */\n exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;\n};\n\nexport type OCPIImage = {\n /** URL from where the image data can be fetched through a web browser. */\n url?: Maybe<Scalars[\"String\"]>;\n /** URL from where a thumbnail of the image can be fetched through a webbrowser. */\n thumbnail?: Maybe<Scalars[\"String\"]>;\n /** Category of an image */\n category?: Maybe<OCPIImageCategory>;\n /** Image type: gif, jpeg, png, svg */\n type?: Maybe<Scalars[\"String\"]>;\n /** Width of the full scale image */\n width?: Maybe<Scalars[\"Int\"]>;\n /** Height of the full scale image */\n height?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** 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. */\nexport enum OCPIImageCategory {\n /** Photo of the physical device that contains one or more EVSEs. */\n CHARGER = \"CHARGER\",\n /** Location entrance photo. Should show the car entrance to the location from street side. */\n ENTRANCE = \"ENTRANCE\",\n /** Location overview photo. */\n LOCATION = \"LOCATION\",\n /** Logo of an associated roaming network to be displayed with the EVSE for example in lists, maps and detailed information views. */\n NETWORK = \"NETWORK\",\n /** Logo of the charge point operator, for example a municipality, to be displayed in the EVSEs detailed information view or in lists and maps, if no network logo is present. */\n OPERATOR = \"OPERATOR\",\n /** Other */\n OTHER = \"OTHER\",\n /** Logo of the charge point owner, for example a local store, to be displayed in the EVSEs detailed information view. */\n OWNER = \"OWNER\"\n}\n\n/** This value, if provided, represents the restriction to the parking spot for different purposes. */\nexport enum OCPIParkingRestriction {\n /** Reserved parking spot for electric vehicles. */\n EV_ONLY = \"EV_ONLY\",\n /** Parking is only allowed while plugged in (charging). */\n PLUGGED = \"PLUGGED\",\n /** Reserved parking spot for disabled people with valid ID. */\n DISABLED = \"DISABLED\",\n /** Parking spot for customers/guests only, for example in case of a hotel or shop. */\n CUSTOMERS = \"CUSTOMERS\",\n /** Parking spot only suitable for (electric) motorcycles or scooters. */\n MOTORCYCLES = \"MOTORCYCLES\"\n}\n\n/** Reflects the general type of the charge point’s location. May be used for user information. */\nexport enum OCPIParkingType {\n /** Location on a parking facility/rest area along a motorway, freeway, interstate, highway etc. */\n ALONG_MOTORWAY = \"ALONG_MOTORWAY\",\n /** Multistorey car park. */\n PARKING_GARAGE = \"PARKING_GARAGE\",\n /** A cleared area that is intended for parking vehicles, i.e. at supermarkets, bars, etc. */\n PARKING_LOT = \"PARKING_LOT\",\n /** Location is on the driveway of a house/building. */\n ON_DRIVEWAY = \"ON_DRIVEWAY\",\n /** Parking in public space along a street. */\n ON_STREET = \"ON_STREET\",\n /** Multistorey car park, mainly underground. */\n UNDERGROUND_GARAGE = \"UNDERGROUND_GARAGE\"\n}\n\nexport enum OCPIPowerType {\n /** AC single phase. */\n AC_1_PHASE = \"AC_1_PHASE\",\n /** AC three phase. */\n AC_3_PHASE = \"AC_3_PHASE\",\n /** AC two phases, only two of the three available phases connected. */\n AC_2_PHASE = \"AC_2_PHASE\",\n /** AC two phases using split phase system. */\n AC_2_PHASE_SPLIT = \"AC_2_PHASE_SPLIT\",\n /** Direct Current. */\n DC = \"DC\"\n}\n\nexport type OCPIPrice = {\n /** Price/Cost excluding VAT. */\n excl_vat?: Maybe<Scalars[\"Float\"]>;\n /** Price/Cost including VAT. */\n incl_vat?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type OCPIPriceComponent = {\n /** Type of tariff dimension. */\n type?: Maybe<OCPITariffDimensionType>;\n /** Price per unit (excl. VAT) for this tariff dimension. */\n price?: Maybe<Scalars[\"Float\"]>;\n /** 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. */\n vat?: Maybe<Scalars[\"Float\"]>;\n /** 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. */\n step_size?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Regular recurring operation or access hours. */\nexport type OCPIRegularHours = {\n /** Number of days in the week, from Monday (1) till Sunday (7) */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** 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]. */\n period_begin?: Maybe<Scalars[\"String\"]>;\n /** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */\n period_end?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum OCPIReservationRestrictionType {\n /** Used in TariffElements to describe costs for a reservation. */\n RESERVATION = \"RESERVATION\",\n /** Used in TariffElements to describe costs for a reservation that expires (i.e. driver does not start a charging session before expiry_date of the reservation). */\n RESERVATION_EXPIRES = \"RESERVATION_EXPIRES\"\n}\n\n/** The status of an EVSE. */\nexport enum OCPIStatus {\n /** The EVSE/Connector is able to start a new charging session. */\n AVAILABLE = \"AVAILABLE\",\n /** The EVSE/Connector is not accessible because of a physical barrier, i.e. a car. */\n BLOCKED = \"BLOCKED\",\n /** The EVSE/Connector is in use. */\n CHARGING = \"CHARGING\",\n /** The EVSE/Connector is not yet active or it is no longer available (deleted). */\n INOPERATIVE = \"INOPERATIVE\",\n /** The EVSE/Connector is currently out of order. */\n OUTOFORDER = \"OUTOFORDER\",\n /** The EVSE/Connector is planned, will be operating soon. */\n PLANNED = \"PLANNED\",\n /** The EVSE/Connector was discontinued/removed. */\n REMOVED = \"REMOVED\",\n /** The EVSE/Connector is reserved for a particular EV driver and is unavailable for other drivers. */\n RESERVED = \"RESERVED\",\n /** No status information available (also used when offline). */\n UNKNOWN = \"UNKNOWN\"\n}\n\n/** 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. */\nexport type OCPIStatusSchedule = {\n /** Begin of the scheduled period. */\n period_begin?: Maybe<Scalars[\"DateTime\"]>;\n /** End of the scheduled period, if known. */\n period_end?: Maybe<Scalars[\"DateTime\"]>;\n /** Status value during the scheduled period. */\n status?: Maybe<OCPIStatus>;\n};\n\nexport type OCPITariff = {\n /** ISO-3166 alpha-2 country code of the CPO that owns this tariff */\n country_code?: Maybe<Scalars[\"String\"]>;\n /** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */\n party_id?: Maybe<Scalars[\"String\"]>;\n /** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */\n id?: Maybe<Scalars[\"String\"]>;\n /** ISO-4217 code of the currency of this tariff. */\n currency?: Maybe<Scalars[\"String\"]>;\n /** 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 */\n type?: Maybe<OCPITariffType>;\n /** List of alternative tariff information texts, in multiple languages */\n tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;\n /** URL to a web page that contains an explanation of the tariff information in human readable form */\n tariff_alt_url?: Maybe<Scalars[\"String\"]>;\n /** 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 */\n min_price?: Maybe<OCPIPrice>;\n /** When this field is set, a charging session with this tariff will NOT cost more than this amount */\n max_price?: Maybe<OCPIPrice>;\n /** List of tariff elements */\n elements?: Maybe<Array<Maybe<OCPITariffElement>>>;\n /** 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 */\n start_date_time?: Maybe<Scalars[\"DateTime\"]>;\n /** 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 */\n end_date_time?: Maybe<Scalars[\"DateTime\"]>;\n /** Details about the energy supplied with this tariff */\n energy_mix?: Maybe<OCPIEnergyMix>;\n /** Timestamp when this tariff was last updated (or created) */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport enum OCPITariffDimensionType {\n /** Defined in kWh, step_size multiplier: 1 Wh */\n ENERGY = \"ENERGY\",\n /** Flat fee without unit for step_size */\n FLAT = \"FLAT\",\n /** Time not charging: defined in hours, step_size multiplier: 1 second */\n PARKING_TIME = \"PARKING_TIME\",\n /** Time charging: defined in hours, step_size multiplier: 1 second Can also be used in combination with a RESERVATION restriction to describe the price of the reservation time. */\n TIME = \"TIME\"\n}\n\nexport type OCPITariffElement = {\n /** List of price components that describe the pricing of a tariff. */\n price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;\n /** Restrictions that describe the applicability of a tariff. */\n restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;\n};\n\nexport type OCPITariffRestrictions = {\n /** 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] */\n start_time?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n end_time?: Maybe<Scalars[\"String\"]>;\n /** 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]) */\n start_date?: Maybe<Scalars[\"String\"]>;\n /** 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 */\n end_date?: Maybe<Scalars[\"String\"]>;\n /** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */\n min_kwh?: Maybe<Scalars[\"Float\"]>;\n /** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */\n max_kwh?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n min_current?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n max_current?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n min_power?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n max_power?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n min_duration?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n max_duration?: Maybe<Scalars[\"Float\"]>;\n /** Which day(s) of the week this tariff element is active. */\n day_of_week?: Maybe<OCPIDayOfWeek>;\n /** 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 */\n reservation?: Maybe<OCPIReservationRestrictionType>;\n};\n\nexport enum OCPITariffType {\n /** Used to describe that a tariff is valid when ad-hoc payment is used at the charge point (for example: Debit or Credit card payment terminal) */\n AD_HOC_PAYMENT = \"AD_HOC_PAYMENT\",\n /** Used to describe that a tariff is valid when charging preference: CHEAP is set for the session */\n PROFILE_CHEAP = \"PROFILE_CHEAP\",\n /** Used to describe that a tariff is valid when charging preference: FAST is set for the session */\n PROFILE_FAST = \"PROFILE_FAST\",\n /** Used to describe that a tariff is valid when charging preference: GREEN is set for the session */\n PROFILE_GREEN = \"PROFILE_GREEN\",\n /** 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 */\n REGULAR = \"REGULAR\"\n}\n\n/** List of charging modes that are supported. */\nexport enum OICPChargingModes {\n MODE_1 = \"mode_1\",\n MODE_2 = \"mode_2\",\n MODE_3 = \"mode_3\",\n MODE_4 = \"mode_4\",\n CHADEMO = \"chademo\"\n}\n\n/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */\nexport type OICPConnectorCustomProperties = {\n /** Returns whether the connector is able to deliver different power outputs. */\n dynamic_power_level?: Maybe<Scalars[\"Boolean\"]>;\n /** List of charging modes that are supported as specified by IEC 61851-1. */\n charging_modes?: Maybe<Array<OICPChargingModes>>;\n};\n\n/** List of authentication modes that are supported. */\nexport enum OICPEvseAuthenticationMode {\n NFC_RFID_CLASSIC = \"nfc_rfid_classic\",\n NFC_RFID_DESFIRE = \"nfc_rfid_desfire\",\n PNC = \"pnc\",\n REMOTE = \"remote\",\n DIRECT_PAYMENT = \"direct_payment\",\n NO_AUTHENTICATION_REQUIRED = \"no_authentication_required\"\n}\n\n/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\nexport type OICPEvseCustomProperties = {\n /** List of authentication modes that are supported. */\n authentication_modes: Array<OICPEvseAuthenticationMode>;\n /** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh. */\n max_capacity?: Maybe<Scalars[\"Int\"]>;\n /** List of payment options that are supported. */\n payment_options: Array<OICPPaymentOptions>;\n /** List of value added services that are supported. */\n value_added_services: Array<OICPValueAddedServices>;\n /** List of additional info by locale. */\n additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;\n /** When the value is set to false this station does not support remote start and stop by Hubject. */\n is_hubject_compatible: Scalars[\"Boolean\"];\n /** Name of the charging point manufacturer. */\n hardware_manufacturer?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type OICPEvseCustomPropertiesAdditionalInfo = {\n /** The language in which the additional info text is provided. */\n lang?: Maybe<Scalars[\"String\"]>;\n /** Additional info text value. */\n value?: Maybe<Scalars[\"String\"]>;\n};\n\n/** List of payment options that are supported. */\nexport enum OICPPaymentOptions {\n NO_PAYMENT = \"no_payment\",\n DIRECT = \"direct\",\n CONTRACT = \"contract\"\n}\n\n/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\nexport type OICPStationCustomProperties = {\n /** Returns whether the station is a parking facility. */\n parking_facility?: Maybe<Scalars[\"Boolean\"]>;\n /** Returns an identifier for the precise parking spot. Eg. 36 or 12-1. */\n parking_spot?: Maybe<Scalars[\"String\"]>;\n /** Returns information on how the charging station provides metering law data. */\n calibration_law_data_availability: Scalars[\"String\"];\n /** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future. */\n clearinghouse_id?: Maybe<Scalars[\"String\"]>;\n};\n\n/** List of value added services that are supported. */\nexport enum OICPValueAddedServices {\n RESERVATION = \"reservation\",\n DYNAMIC_PRICING = \"dynamic_pricing\",\n PARKING_SENSORS = \"parking_sensors\",\n MAXIMUM_POWER_CHARGING = \"maximum_power_charging\",\n PREDICTIVE_CHARGE_POINT_USAGE = \"predictive_charge_point_usage\",\n CHARGING_PLANS = \"charging_plans\",\n ROOF_PROVIDED = \"roof_provided\",\n NONE = \"none\"\n}\n\nexport type Odometer = {\n /** Value of the vehicle's odometer. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's odometer. */\n type: DistanceUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type OdometerInput = {\n /** Value of the vehicle's odometer. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's odometer. */\n type: DistanceUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Operator data which extends OCPI BusinessDetails. */\nexport type Operator = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of an operator provided by the operator data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** Name of an operator. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Link to an operator’s website. */\n website?: Maybe<Scalars[\"String\"]>;\n /** Image link to an operator’s logo. */\n logo?: Maybe<OCPIImage>;\n /**\n * ISO-3166 alpha-2 country code an operator is active in.\n * @deprecated In favor of `countries`.\n */\n country?: Maybe<Scalars[\"String\"]>;\n /** ISO-3166 alpha-2 country codes an operator is active in. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n /** Contact information. */\n contact?: Maybe<Contact>;\n /**\n * Ranking level on which the operator is placed or null in case the operator is not on any ranking level. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.\n * @deprecated In favor of `ranking_levels`.\n */\n ranking?: Maybe<Scalars[\"Int\"]>;\n /**\n * Flag which indicates if the operator is in the excluded list. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.\n * @deprecated In favor of `excluded_countries`.\n */\n excluded?: Maybe<Scalars[\"Boolean\"]>;\n /** Ranking configuration for the operator. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n ranking_levels?: Maybe<OperatorRankingLevels>;\n /** List of countries where the operator is excluded. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n excluded_countries?: Maybe<Array<CountryCodeAlpha2>>;\n /** List of countries where the operator is avoided. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n avoided_countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\n/** Criteria to filter operators in the operator list query. */\nexport type OperatorListFilter = {\n /** ISO-3166 alpha-2 country codes an operator is active in. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n /** List of ranking level(s) to be retrieved. Valid values are 1 to 10. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request. */\n ranking?: Maybe<Array<Scalars[\"Int\"]>>;\n /** Only retrieve operators that are in the excluded list. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request. */\n excluded?: Maybe<Scalars[\"Boolean\"]>;\n /** List of ranking level(s) to be retrieved. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n ranking_levels?: Maybe<OperatorRankingLevelsFilter>;\n /** List of countries where the operator is excluded. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n excluded_countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\n/** Query parameters to filter operators in the operator list query. */\nexport type OperatorListQuery = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of an operator provided by an operator data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** Exact name. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Exact country code. */\n country?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum OperatorPreferenceType {\n /** Operators that have been set as preferred or required. */\n RANKED = \"ranked\",\n /** Operators that have not been set as neither preferred or required or avoided nor excluded. */\n UNRANKED = \"unranked\",\n /** Operators that have been set to be avoided. */\n AVOIDED = \"avoided\",\n /** Operators that have been set to be excluded. */\n EXCLUDED = \"excluded\"\n}\n\n/** Operator ranking level. */\nexport enum OperatorRankingLevel {\n LOW = \"low\",\n MEDIUM = \"medium\",\n HIGH = \"high\"\n}\n\n/** Ranking configuration for the operator. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\nexport type OperatorRankingLevels = {\n /** Low level for operators ranking. */\n low?: Maybe<Array<CountryCodeAlpha2>>;\n /** Medium level for operators ranking. */\n medium?: Maybe<Array<CountryCodeAlpha2>>;\n /** High level for operators ranking. */\n high?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\n/** Filter operators by ranking levels. */\nexport type OperatorRankingLevelsFilter = {\n /** Low level for operators ranking. */\n low?: Maybe<Array<CountryCodeAlpha2>>;\n /** Medium level for operators ranking. */\n medium?: Maybe<Array<CountryCodeAlpha2>>;\n /** High level for operators ranking. */\n high?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\nexport type OutsideTempInput = {\n /** Value of the outside temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the outside temperature. */\n type: TemperatureUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type OutsideTemperature = {\n /** Value of the temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the outside temperature. */\n type: TemperatureUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type OutsideTemperatureInput = {\n /** Value of the outside temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the outside temperature. */\n type: TemperatureUnit;\n /** Source of inputted data. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Information about the list page. */\nexport type PageInfo = {\n /** Flag that indicates if it has a next page. */\n has_next_page: Scalars[\"Boolean\"];\n /** Flag that indicates if it has a previous page. */\n has_previous_page: Scalars[\"Boolean\"];\n /** Cursor of the first connection of the page. If the page is empty, this is null. */\n start_cursor?: Maybe<Scalars[\"String\"]>;\n /** Cursor of the last connection of the page. If the page is empty, this is null. */\n end_cursor?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum ParkingCost {\n /** Parking is free. */\n FREE = \"free\",\n /** Parking includes a fee. */\n PAID = \"paid\"\n}\n\nexport type PathSegment = {\n /** Elevation (altitude) in meters. */\n elevation?: Maybe<Scalars[\"Int\"]>;\n /** Average speed, in km/h, for this route path segment. */\n averageSpeed?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of a route path segment. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh per km, of a route path segment. */\n consumptionPerKm?: Maybe<Scalars[\"Float\"]>;\n /** Distance, in meters, of a route path segment. */\n distance?: Maybe<Scalars[\"Float\"]>;\n /** Duration, in seconds, of a route path segment. */\n duration?: Maybe<Scalars[\"Float\"]>;\n /** State of charge, in kWh, of a route path segment. */\n stateOfCharge?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** A GeoJSON Point. */\nexport type Point = {\n /** Point type. */\n type: PointType;\n /** The coordinates array with longitude as first value and latitude as second one. */\n coordinates: Array<Scalars[\"Float\"]>;\n};\n\n/** A GeoJSON Point input. */\nexport type PointInput = {\n /** Point type. */\n type: PointType;\n /** Coordinates [longitude, latitude]. */\n coordinates: Array<Scalars[\"Float\"]>;\n};\n\n/** GeoJSON Point type. */\nexport enum PointType {\n POINT = \"Point\"\n}\n\n/** Polygon properties. */\nexport type PolygonProperties = {\n /** Index of the feature inside the list. */\n index?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Number of decimals for a polyline. */\nexport enum PolylineInputDecimals {\n FIVE = \"five\",\n SIX = \"six\"\n}\n\nexport type PowerInput = {\n /** Value of the positive or negative power. When negative the vehicle is charging. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the power. */\n type: PowerUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum PowerSupported {\n /** Power is supported. */\n AVAILABLE = \"available\",\n /** Power is not supported. */\n NOT_AVAILABLE = \"not_available\",\n /** Power is announced, but not yet supported. */\n ANNOUNCED = \"announced\"\n}\n\nexport enum PowerUnit {\n /** Return the power in kilowatts. */\n KILOWATT = \"kilowatt\",\n /** Return the power in horsepower. */\n HORSEPOWER = \"horsepower\"\n}\n\nexport enum PressureUnit {\n /** Return the pressure in bar. */\n BAR = \"bar\",\n /** Return the pressure in pounds per square inch. */\n POUNDS_PER_SQUARE_INCH = \"pounds_per_square_inch\"\n}\n\nexport type Pricing = {\n /** Unique ID of a price. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Price details. */\n price_list?: Maybe<Array<Maybe<PricingList>>>;\n};\n\nexport type PricingList = {\n /** (MSP) Mobility Service Provider. */\n partner?: Maybe<Scalars[\"String\"]>;\n /** Product details. */\n product?: Maybe<PricingListProduct>;\n /** Price product elements. */\n elements?: Maybe<Array<Maybe<PricingListElement>>>;\n};\n\nexport type PricingListElement = {\n /** Price element type. */\n type?: Maybe<PricingListElementType>;\n /** Price of the element type without VAT. */\n price_excl_vat?: Maybe<Scalars[\"Float\"]>;\n /** VAT percentage to apply. */\n vat?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport enum PricingListElementType {\n /** Price per kWh. */\n ENERGY = \"ENERGY\",\n /** Starting price, fixed fee per charge session. */\n FLAT = \"FLAT\",\n /** Fixed price per hour. */\n TIME = \"TIME\",\n /** Parking price per hour. */\n PARKING_TIME = \"PARKING_TIME\"\n}\n\nexport type PricingListProduct = {\n /** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Description of the product. */\n description?: Maybe<Scalars[\"String\"]>;\n /** Subscription type. */\n subscription_type?: Maybe<Scalars[\"String\"]>;\n /** Subscription fee without VAT. */\n subscription_fee_excl_vat?: Maybe<Scalars[\"Float\"]>;\n /** Currency. */\n currency?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type Query = {\n /** Get a full list of amenities around a station. */\n amenityList?: Maybe<Array<Maybe<Amenity>>>;\n /** [BETA] Get a connected vehicles by id */\n connectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Get the connected vehicles for the current user */\n connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;\n /** [BETA] Retrieve live vehicle data by connected vehicle id */\n connectedVehicleData?: Maybe<VehicleData>;\n /** Get an isoline by ID. */\n isoline?: Maybe<Isoline>;\n /** [BETA] Get a navigation session by ID */\n navigation?: Maybe<Navigation>;\n /** Get a full list of operators. */\n operatorList?: Maybe<Array<Maybe<Operator>>>;\n /** Get information about an operator by its ID. */\n operator?: Maybe<Operator>;\n /** Get all reviews of a station by the station ID. */\n reviewList?: Maybe<Array<Review>>;\n /**\n * Get all reviews of stations that were added by an authenticated user.\n * The `x-token` header is mandatory in order to authorize the user who wants to retrieve all the reviews added by him/her.\n * This is a premium feature, contact Chargetrip for more information.\n */\n userReviewList?: Maybe<Array<Review>>;\n /**\n * Get emissions for a route.\n * @deprecated In favor of `getRouteEmissions`.\n */\n routeEmissions: RouteEmissions;\n /**\n * Get a route by ID.\n * @deprecated In favor of `getRoute`.\n */\n route?: Maybe<Route>;\n /**\n * Get a route path segment by ID.\n * @deprecated In favor of `RouteDetails.path_plot`.\n */\n routePath?: Maybe<RoutePath>;\n /** Get emissions for a route. */\n getRouteEmissions: RouteDetailsEmissions;\n /** Get a route by ID. */\n getRoute: RouteResponse;\n /** [BETA] Search for stations with amenities within a specific time window and distance of a previously calculated route. */\n getRouteStationsWithAmenities: RouteStationsWithAmenitiesConnection;\n /** [ALPHA] Get a e-truck route by ID. */\n getTruckRoute: TruckRouteResponse;\n /** Get information about a station by its ID. */\n station?: Maybe<Station>;\n /** Get a full list of stations. */\n stationList?: Maybe<Array<Maybe<Station>>>;\n /** Search for stations around a GeoJSON point with a specific distance in meters. */\n stationAround?: Maybe<Array<Maybe<Station>>>;\n /** Get information about a tariff by the tariff ID. */\n tariff?: Maybe<OCPITariff>;\n /** Get the full list of tariffs. */\n tariffList?: Maybe<Array<Maybe<OCPITariff>>>;\n /** Get information about a vehicle by its ID. */\n vehicle?: Maybe<Vehicle>;\n /** Vehicle premium data provides even more information about your vehicle: tire pressure, prices, drivetrain data, and more. Please contact us for access to premium data. */\n vehiclePremium?: Maybe<VehiclePremium>;\n /** Get a full list of vehicles. */\n vehicleList?: Maybe<Array<Maybe<VehicleList>>>;\n /** [BETA] Get a full list of vehicle makes. */\n vehicleMakes?: Maybe<VehicleMakesConnection>;\n /** [BETA] Get a full list of vehicle make models. */\n vehicleModels?: Maybe<VehicleModelsConnection>;\n};\n\nexport type QueryamenityListArgs = {\n stationId: Scalars[\"ID\"];\n filter?: Maybe<AmenityListFilter>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryconnectedVehicleArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryconnectedVehicleListArgs = {\n filter?: Maybe<ConnectedVehicleListFilter>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryconnectedVehicleDataArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryisolineArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerynavigationArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryoperatorListArgs = {\n query?: Maybe<OperatorListQuery>;\n search?: Maybe<Scalars[\"String\"]>;\n filter?: Maybe<OperatorListFilter>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryoperatorArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryreviewListArgs = {\n stationId: Scalars[\"ID\"];\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryuserReviewListArgs = {\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryrouteEmissionsArgs = {\n route_id: Scalars[\"ID\"];\n route_alternative_id?: Maybe<Scalars[\"ID\"]>;\n};\n\nexport type QueryrouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryroutePathArgs = {\n id: Scalars[\"ID\"];\n location: PointInput;\n alternativeId?: Maybe<Scalars[\"ID\"]>;\n};\n\nexport type QuerygetRouteEmissionsArgs = {\n route_id: Scalars[\"ID\"];\n route_details_id: Scalars[\"ID\"];\n};\n\nexport type QuerygetRouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerygetRouteStationsWithAmenitiesArgs = {\n route_id: Scalars[\"ID\"];\n route_details_id: Scalars[\"ID\"];\n time_window: RouteTimeWindow;\n amenity_types: Array<AmenityType>;\n filter?: Maybe<RouteStationsWithAmenityFilter>;\n first?: Maybe<Scalars[\"Int\"]>;\n after?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type QuerygetTruckRouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerystationArgs = {\n id?: Maybe<Scalars[\"ID\"]>;\n evse_id?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type QuerystationListArgs = {\n query?: Maybe<StationListQuery>;\n filter?: Maybe<StationListFilter>;\n search?: Maybe<Scalars[\"String\"]>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QuerystationAroundArgs = {\n query?: Maybe<StationAroundQuery>;\n filter?: Maybe<StationAroundFilter>;\n search?: Maybe<Scalars[\"String\"]>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QuerytariffArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerytariffListArgs = {\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryvehicleArgs = {\n id: Scalars[\"ID\"];\n country?: Maybe<CountryCodeAlpha2>;\n};\n\nexport type QueryvehiclePremiumArgs = {\n id: Scalars[\"ID\"];\n country?: Maybe<CountryCodeAlpha2>;\n};\n\nexport type QueryvehicleListArgs = {\n search?: Maybe<Scalars[\"String\"]>;\n filter?: Maybe<VehicleListFilter>;\n country?: Maybe<CountryCodeAlpha2>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryvehicleMakesArgs = {\n country?: Maybe<CountryCodeAlpha2>;\n filter?: Maybe<VehicleMakesFilter>;\n first?: Maybe<Scalars[\"Int\"]>;\n after?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type QueryvehicleModelsArgs = {\n filter?: Maybe<VehicleModelsFilter>;\n country?: Maybe<CountryCodeAlpha2>;\n first?: Maybe<Scalars[\"Int\"]>;\n after?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RemoveConnectedVehicleInput = {\n /** Id from the connected vehicle */\n id: Scalars[\"ID\"];\n};\n\n/** EV specific data for a route request. */\nexport type RequestEv = {\n /** Internal ID of a Vehicle. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** EV battery specific data. */\n battery?: Maybe<RequestEvBattery>;\n /** Supported plugs for an EV. */\n plugs?: Maybe<Array<Maybe<RequestEvPlug>>>;\n /** Supported adapters of plugs for an EV. */\n adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;\n /** Minimum desired power of chargers. */\n minPower?: Maybe<Scalars[\"Int\"]>;\n /** Climate is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heatPump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<RequestEvCabin>;\n /** Cargo weight, in kg. */\n cargo?: Maybe<Scalars[\"Float\"]>;\n /**\n * Number of passengers on board.\n * @deprecated In favor of `occupants`.\n */\n numberOfPassengers?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Consumption specific to an EV or inputted by a request. */\n consumption?: Maybe<RequestEvConsumption>;\n};\n\nexport type RequestEvBattery = {\n /** Usable capacity of the battery used to compute the route. If this in not filled in, value as the vehicle battery.usable_kwh. */\n capacity?: Maybe<RequestEvBatteryValue>;\n /** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value. */\n capacityKwh?: Maybe<Scalars[\"Float\"]>;\n /** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and it will be equal to the battery.usable_kwh. */\n stateOfCharge?: Maybe<RequestEvBatteryValue>;\n /** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge. */\n stateOfChargeKwh?: Maybe<Scalars[\"Float\"]>;\n /** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the vehicle battery.usable_kwh. */\n finalStateOfCharge?: Maybe<RequestEvBatteryValue>;\n /** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge. */\n finalStateOfChargeKwh?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RequestEvBatteryInput = {\n /** Usable capacity of a battery used to compute a route. We recommend you stay between 50% and 150%. If this in not filled in, we assume it is the same value as the vehicle battery.usable_kwh. */\n capacity?: Maybe<RequestEvBatteryInputValue>;\n /** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and we fill it in with vehicle battery.usable_kwh. */\n stateOfCharge?: Maybe<RequestEvBatteryInputValue>;\n /** Desired final amount of energy in a battery. The value should be between 0 and 80% of the vehicle battery.usable_kwh If this is not filled in, we assume it is 20% of the vehicle battery.usable_kwh. */\n finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;\n};\n\nexport type RequestEvBatteryInputValue = {\n /** Value of a desired final amount of energy in a battery. */\n value: Scalars[\"Float\"];\n /** Type of a desired final amount of energy in a battery. */\n type: BatteryInputType;\n};\n\nexport type RequestEvBatteryValue = {\n /** Value of the desired final amount of energy in a battery. */\n value: Scalars[\"Float\"];\n /** Type of the desired final amount of energy in a battery. */\n type: BatteryInputType;\n};\n\n/** Vehicle cabin configuration. */\nexport type RequestEvCabin = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n isPreconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desiredTemperature?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Vehicle cabin configuration. */\nexport type RequestEvCabindesiredTemperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\n/** Vehicle cabin configuration. */\nexport type RequestEvCabinInput = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n isPreconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desiredTemperature?: Maybe<TemperatureInput>;\n};\n\nexport type RequestEvConsumption = {\n /** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc */\n auxiliary?: Maybe<Scalars[\"Float\"]>;\n /**\n * Consumption, in kWh, of the auxiliaries.\n * @deprecated In favor of `auxiliary`\n */\n aux?: Maybe<CarConsumption>;\n /**\n * Consumption, in kWh, of the battery management system.\n * @deprecated In favor of `auxiliary`\n */\n bms?: Maybe<CarConsumption>;\n /**\n * Consumption, in kWh, of the vehicle in idle mode.\n * @deprecated In favor of `auxiliary`\n */\n idle?: Maybe<CarConsumption>;\n};\n\nexport type RequestEvConsumptionInput = {\n /** Amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc. */\n auxiliary?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of the auxiliaries. */\n aux?: Maybe<CarConsumptionInput>;\n /** Consumption, in kWh, of the battery management system. */\n bms?: Maybe<CarConsumptionInput>;\n /** Consumption, in kWh, of the vehicle in idle mode. */\n idle?: Maybe<CarConsumptionInput>;\n};\n\nexport type RequestEvInput = {\n /** Internal ID of a Vehicle. */\n id: Scalars[\"ID\"];\n /** The EV battery specific data. */\n battery?: Maybe<RequestEvBatteryInput>;\n /** Supported plugs of an EV. */\n plugs?: Maybe<Array<Maybe<RequestEvPlugInput>>>;\n /** Supported adapters of plugs of an EV. */\n adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;\n /** Minimum desired power of chargers. */\n minPower?: Maybe<Scalars[\"Int\"]>;\n /** Flag which indicates if the climate is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heatPump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<RequestEvCabinInput>;\n /** Number of passengers on board. */\n numberOfPassengers?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Cargo weight, in kg. */\n cargo?: Maybe<Scalars[\"Int\"]>;\n /** Consumption specific to the EV or inputted by the request. */\n consumption?: Maybe<RequestEvConsumptionInput>;\n /** Consumption, in kWh, of the auxiliaries. */\n auxConsumption?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of the battery management system. */\n bmsConsumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RequestEvPlug = {\n /** Type of the plug. */\n standard?: Maybe<ConnectorType>;\n /** Maximum charging speed for a plug. */\n chargingPower?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RequestEvPlugInput = {\n /** Type of a plug. */\n standard: ConnectorType;\n /** Maximum charging speed for this plug. */\n chargingPower: Scalars[\"Float\"];\n};\n\nexport type RequestInput = {\n /** EV specific data for a route request. */\n ev: RequestEvInput;\n /** Route request data. */\n routeRequest: RequestRouteInput;\n /** Telemetry data used to overwrite routing parameters. */\n telemetry?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport type RequestRoute = {\n /**\n * Requested amenities near the stations, within a 1 kilometer radius.\n * @deprecated In favor of `amenity_preferences`.\n */\n amenities?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Amenity preferences for a route. */\n amenity_preferences?: Maybe<RouteAmenityPreferences>;\n /**\n * Requested operators.\n * @deprecated In favor of `operators`.\n */\n operatorIds?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /**\n * Preferred operators are required. In case there are no preferred operators the route cannot be calculated.\n * @deprecated In favor of `operators`.\n */\n operatorRequired?: Maybe<Scalars[\"Boolean\"]>;\n /**\n * Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated.\n * @deprecated In favor of `operators`.\n */\n operatorPrefer?: Maybe<Scalars[\"Boolean\"]>;\n /** Operator prioritization for a route. */\n operators?: Maybe<RouteOperators>;\n /** Season. */\n season?: Maybe<RouteSeason>;\n /** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60. When omitted, the project configuration is used. */\n safeRiskMargin?: Maybe<Scalars[\"Int\"]>;\n /** Origin of a route. */\n origin?: Maybe<FeaturePoint>;\n /** Destination of a route. */\n destination?: Maybe<FeaturePoint>;\n /** Locations where a route will stop. */\n via?: Maybe<Array<Maybe<FeaturePoint>>>;\n /** Radius in meters for alternative stations along a route (min 500 - max 5000). */\n stationsAlongRouteRadius?: Maybe<Scalars[\"Int\"]>;\n /**\n * Flag indicating wether the turn-by-turn navigation instructions should be prepared. Disclaimer: The functionality is under active development and the final API is a subject to change. Not ready for production.\n * @deprecated All routes will have turn-by-turn instructions prepared. Boolean will be ignored.\n */\n instructions?: Maybe<Scalars[\"Boolean\"]>;\n /** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */\n chargeMode?: Maybe<ChargeMode>;\n};\n\nexport type RequestRouteInput = {\n /** A list of desired amenities near the stations, with a 1 kilometer radius. */\n amenities?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Amenity preferences for a route. */\n amenity_preferences?: Maybe<AmenityPreferencesInput>;\n /** A list of requested operators. */\n operatorIds?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Flag which indicates if the operators are required. */\n operatorRequired?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag which indicates if the preferred operators should be loaded. */\n operatorPrefer?: Maybe<Scalars[\"Boolean\"]>;\n /** Operator prioritization for a route. */\n operators?: Maybe<RouteOperatorsInput>;\n /** Optional flag to specify the season. */\n season?: Maybe<RouteSeason>;\n /** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60. When omitted, the project configuration is used. */\n safeRiskMargin?: Maybe<Scalars[\"Int\"]>;\n /** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */\n chargeMode?: Maybe<ChargeMode>;\n /** Origin of a route. */\n origin: FeaturePointInput;\n /** Destination of a route. */\n destination: FeaturePointInput;\n /** An optional list of locations where we should stop. */\n via?: Maybe<Array<Maybe<FeaturePointInput>>>;\n /** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */\n stationsAlongRouteRadius?: Maybe<Scalars[\"Int\"]>;\n /** Flag to enable turn-by-turn instructions. */\n instructions?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RequestUser = {\n /** ID of the user. */\n id?: Maybe<Scalars[\"ID\"]>;\n};\n\n/** Review model. */\nexport type Review = {\n /** ID of a review. */\n id: Scalars[\"ID\"];\n /** Station for which a review was provided. */\n station?: Maybe<Station>;\n /** User who added a review. If a review was added by an anonymous user, this will be null. */\n user?: Maybe<ReviewUser>;\n /** Rating of a review. */\n rating?: Maybe<Scalars[\"Int\"]>;\n /** Message of a review. */\n message?: Maybe<Scalars[\"String\"]>;\n /** Locale of a message. */\n locale?: Maybe<Scalars[\"String\"]>;\n /** Vehicle that was provided/selected by a user. */\n ev?: Maybe<Vehicle>;\n /** Plug type that was provided/selected by a user. */\n plugType?: Maybe<ConnectorType>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Boolean tags for a station review. */\n tags?: Maybe<ReviewTags>;\n /** Date and time when a review was created. */\n createdAt?: Maybe<Scalars[\"DateTime\"]>;\n /** Date and time when a review was updated. */\n updatedAt?: Maybe<Scalars[\"DateTime\"]>;\n};\n\n/** Form input to add a new review. */\nexport type ReviewAdd = {\n /** Station ID for which a review is provided. */\n stationId: Scalars[\"String\"];\n /** Rating of a review. */\n rating: Scalars[\"Int\"];\n /** Review message. */\n message?: Maybe<Scalars[\"String\"]>;\n /** Locale of a message. */\n locale?: Maybe<Scalars[\"String\"]>;\n /** ID of the vehicle that was provided/selected by a user. */\n ev?: Maybe<Scalars[\"String\"]>;\n /** Plug type that was provided/selected by a user. */\n plugType?: Maybe<ConnectorType>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Boolean tags for a station review. */\n tags?: Maybe<ReviewTagsInput>;\n};\n\n/** Form input for edit an existing review. */\nexport type ReviewEdit = {\n /** Rating of a review. */\n rating: Scalars[\"Int\"];\n /** Review message. */\n message?: Maybe<Scalars[\"String\"]>;\n /** Locale of a message. */\n locale?: Maybe<Scalars[\"String\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Boolean tags for a station review. */\n tags?: Maybe<ReviewTagsInput>;\n};\n\n/** Statistical information for reviews of a station. */\nexport type ReviewStats = {\n /** Average of all reviews. */\n rating?: Maybe<Scalars[\"Float\"]>;\n /** 'Total number of reviews. */\n count?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Boolean tags for the station review. */\nexport type ReviewTags = {\n /** Flag which indicates if the station was working when the review was added. */\n working?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag which indicates if the user recommended the station when the review was added. */\n recommended?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Boolean tags for a station review. */\nexport type ReviewTagsInput = {\n /** Flag which indicates if a station was working when the review was added. */\n working?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag which indicates if a user recommended a station when the review was added. */\n recommended?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Special format for the user of a review. */\nexport type ReviewUser = {\n /** User full name. If a review was added by an anonymous user, this will be null. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type Route = {\n /** Recommended route. */\n route?: Maybe<RouteAlternative>;\n /** Available alternatives. */\n alternatives?: Maybe<Array<Maybe<RouteAlternative>>>;\n /** EV specific data for a route request. */\n ev?: Maybe<RequestEv>;\n /** Route telemetry data. */\n telemetry?: Maybe<Scalars[\"JSON\"]>;\n /** @deprecated You will receive null values. */\n user?: Maybe<RequestUser>;\n /** Route request data. */\n routeRequest?: Maybe<RequestRoute>;\n /** Application who requested a route. */\n app?: Maybe<RouteApp>;\n /** Route status. */\n status?: Maybe<RouteStatus>;\n};\n\nexport type RouteAlternative = {\n /** ID of a route alternative. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Type of alternative route. */\n type?: Maybe<RouteAlternativeType>;\n /** Number of charging stops required for this route. */\n charges?: Maybe<Scalars[\"Int\"]>;\n /** Number of available charges along a route. */\n chargesAvailable?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupied charges along a route. */\n chargesOccupied?: Maybe<Scalars[\"Int\"]>;\n /** Number of unknown charges along a route. */\n chargesUnknown?: Maybe<Scalars[\"Int\"]>;\n /** Number of out of order charges along a route. */\n chargesOutOfOrder?: Maybe<Scalars[\"Int\"]>;\n /** Total distance of a route in meters. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Total duration of a route, including charge time, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Total energy used for a route in kWh. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Total time required to charge for an entire route, in seconds. */\n chargeTime?: Maybe<Scalars[\"Float\"]>;\n /**\n * Amenity ranking for an alternative.\n * @deprecated Will be removed.\n */\n amenityRanking?: Maybe<Scalars[\"Int\"]>;\n /** Display value that indicates the range, in meters, available at the beginning of the trip. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. */\n rangeStart?: Maybe<Scalars[\"Int\"]>;\n /** Total energy in a battery at the beginning of a trip, in kWh. */\n rangeStartKwh?: Maybe<Scalars[\"Float\"]>;\n /** Total energy in a battery at the beginning of a trip, in percentage. */\n rangeStartPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Display value that indicates the range, in meters, available at the end of the trip. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. Please note: In case of a non BEV where the range end is negative, the value will be 0. */\n rangeEnd?: Maybe<Scalars[\"Int\"]>;\n /** Remaining range, energy in kWh, at the end of a trip. In the case of a non BEV where the range end is negative, the value will be 0. */\n rangeEndKwh?: Maybe<Scalars[\"Float\"]>;\n /** Remaining range, energy in percentage, at the end of a trip. */\n rangeEndPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Text information about a route direction. */\n via?: Maybe<Scalars[\"String\"]>;\n /** Polyline containing encoded coordinates. */\n polyline?: Maybe<Scalars[\"String\"]>;\n /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */\n pathPlot?: Maybe<Array<Maybe<PathSegment>>>;\n /**\n * Elevation values. Each elevationPlot has a hundred points, independent of the length of a route.\n * @deprecated In favor of `pathPlot`.\n */\n elevationPlot?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Total number of meters which are going up on a route. */\n elevationUp?: Maybe<Scalars[\"Float\"]>;\n /** Total number of meters which are going down on a route. */\n elevationDown?: Maybe<Scalars[\"Float\"]>;\n /** Highest value from the elevation array. */\n elevationMax?: Maybe<Scalars[\"Float\"]>;\n /** Money and CO2 saving information. */\n saving?: Maybe<RouteAlternativeSaving>;\n /** Legs of the route. */\n legs?: Maybe<Array<Maybe<RouteLeg>>>;\n /** List of raw turn-by-turn navigation instructions. */\n instructions?: Maybe<Array<Maybe<RouteInstruction>>>;\n /** Alternative stations along a route within specified radius in meters. Only if it was provided at newRoute mutation. */\n stationsAlongRoute?: Maybe<Array<Maybe<RouteStationsAlong>>>;\n /** Tags of a route alternative. Values: road, highway, toll, ferry, etc. */\n tags?: Maybe<Array<Maybe<RouteTagType>>>;\n};\n\nexport type RouteAlternativepolylineArgs = {\n decimals?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteAlternativeSaving = {\n /** Total amount of CO2, in grams, which would be used with a gasoline vehicle. */\n co2?: Maybe<Scalars[\"String\"]>;\n /** Money saved by a user driving this route with the electric vehicle. */\n money?: Maybe<Scalars[\"String\"]>;\n /** Currency. */\n currency?: Maybe<Scalars[\"String\"]>;\n /** Average gas price with which the calculation was made. */\n averageGasPrice?: Maybe<Scalars[\"String\"]>;\n /** Average energy price with which the calculation was made. */\n averageEnergyPrice?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Types of an alternative route. */\nexport enum RouteAlternativeType {\n /** Fastest route between origin and destination. */\n FASTEST = \"fastest\",\n /** Best matching route based on operator and amenities preferences. */\n BESTMATCHING = \"bestMatching\",\n /** An alternative to the fastest route. */\n ALTERNATIVE = \"alternative\"\n}\n\nexport type RouteAmenityFilter = {\n /** Maximum distance from the station to the amenity. The value must be between 0 and 1 000 meters. If not specified, defaults to 250 meters. */\n maximum_distance_from_station?: Maybe<DistanceInput>;\n};\n\n/** Amenity preferences for a route. */\nexport type RouteAmenityPreferences = {\n /** Desired amenities near all charge-stops along a route, with a 1 kilometer radius. */\n all_charge_stops?: Maybe<Array<AmenityType>>;\n /** Scheduled charge stops, with a specified amenity and timeline. */\n scheduled_charge_stops?: Maybe<Array<RouteScheduledChargeStop>>;\n};\n\nexport type RouteApp = {\n /** ID of the app who requested a route. */\n id?: Maybe<Scalars[\"ID\"]>;\n};\n\n/** Types of route features that can be avoided in routing. */\nexport enum RouteAvoid {\n TOLL_ROAD = \"toll_road\",\n FERRY = \"ferry\"\n}\n\nexport type RouteDestinationFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<Point>;\n /** Additional feature properties. */\n properties?: Maybe<RouteDestinationProperties>;\n};\n\nexport type RouteDestinationFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<PointInput>;\n /** Additional feature properties. */\n properties?: Maybe<RouteDestinationPropertiesInput>;\n};\n\nexport type RouteDestinationProperties = {\n /** Data about the destination location. */\n location?: Maybe<RoutePropertiesLocation>;\n /** Data about the destination station. */\n station?: Maybe<RoutePropertiesStation>;\n};\n\nexport type RouteDestinationPropertiesInput = {\n /** Data about the destination location. */\n location?: Maybe<RoutePropertiesLocationInput>;\n /** Specifies a charging station at the destination. If an existing station is provided, it is treated as a regular location stop and no charging will be scheduled at this location. Any configured operator preferences are ignored for this stop. */\n station?: Maybe<RoutePropertiesStationInput>;\n};\n\nexport type RouteDetails = {\n /** ID of a route computation. */\n id: Scalars[\"ID\"];\n /** Total distance of a route. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route. */\n durations: RouteDetailsDurations;\n /** Total energy used for a route in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the start of a trip. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a trip. Note: The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */\n path_plot: Array<RouteDetailsPathSegment>;\n /** Details about elevation on a route. */\n elevation: RouteDetailsElevation;\n /** Money saving information. */\n savings?: Maybe<RouteDetailsSavings>;\n /** Legs of a route. */\n legs: Array<RouteDetailsLeg>;\n /**\n * Alternative stations along a route within a specified radius.\n *\n * Includes stations from preferred/required/avoided operators but excludes stations from excluded operators.\n * This list is only populated if `alternative_station_radius` was specified in the `createRoute` mutation.\n */\n alternative_stations: Array<RouteDetailsAlternativeStation>;\n /** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Number of charging stops required for this route. */\n charges: Scalars[\"Int\"];\n /** [BETA] Warnings that certain conditions specified in a route mutation are not respected. */\n warnings?: Maybe<Array<RouteWarning>>;\n /** [BETA] Traffic conditions along the route. Only returns data if `traffic_aware` is set to true in the `createRoute` mutation. */\n traffic?: Maybe<RouteDetailsTraffic>;\n};\n\nexport type RouteDetailsdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type RouteDetailsrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type RouteDetailspolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type RouteDetailsAlternativeStation = {\n /** ID of a station. */\n id: Scalars[\"ID\"];\n /** GeoJSON location of a station. */\n location: Point;\n /** Speed of a station. A station along a route can be either fast or turbo. */\n speed: StationSpeedType;\n /** Status of a station. */\n status: ChargerStatus;\n /** The value indicates the operator's ranking based on the station's location, in accordance with the list of countries from the configuration or request. */\n operator_ranking?: Maybe<OperatorRankingLevel>;\n /** ID of the station's operator. */\n operator_id?: Maybe<Scalars[\"ID\"]>;\n};\n\nexport type RouteDetailsDurations = {\n /** Total duration, in seconds. */\n total: Scalars[\"Int\"];\n /** Total charging duration, in seconds. */\n charging: Scalars[\"Int\"];\n /** Total driving duration, in seconds. Takes into account traffic congestion when `traffic_aware` is set to true in the `createRoute` mutation. */\n driving: Scalars[\"Int\"];\n /** Total duration stopped at a location via or at a station via, excluding charging time and charging penalty, in seconds. */\n stopover: Scalars[\"Int\"];\n /** Total ferry duration, in seconds. */\n ferry: Scalars[\"Int\"];\n};\n\nexport type RouteDetailsElevation = {\n /** Total value driving uphill on a route. */\n up: Scalars[\"Float\"];\n /** Total value driving downhill on a route. */\n down: Scalars[\"Float\"];\n /** Maximum elevation on a route. */\n maximum: Scalars[\"Float\"];\n /** Minimum elevation on a route. */\n minimum: Scalars[\"Float\"];\n};\n\nexport type RouteDetailsElevationupArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsElevationdownArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsElevationmaximumArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsElevationminimumArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsEmissions = {\n /** ID of the route for which we retrieve the emissions profile. */\n route_id: Scalars[\"ID\"];\n route_alternative_id: Scalars[\"ID\"];\n /** Emissions profile for the vehicle used in route. */\n route_vehicle: RouteVehicleEmissions;\n internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;\n /** Estimated GHG emissions saved by a user driving this route with the electric vehicle in grams of CO2e. */\n co2e_saved: Scalars[\"Float\"];\n};\n\nexport type RouteDetailsEmissionsinternal_combustion_vehicleArgs = {\n fuel_type?: Maybe<RouteOperationalFuelType>;\n};\n\nexport type RouteDetailsEmissionsco2e_savedArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLeg = {\n /** Distance from the start to the end of a leg. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route leg. */\n durations: RouteDetailsDurations;\n /** Total energy used in a leg in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Origin point location. */\n origin: RouteDetailsLegFeaturePoint;\n /** Destination point location. */\n destination: RouteDetailsLegFeaturePoint;\n /** Range at the start of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Range after charging on the leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_after_charge?: Maybe<Scalars[\"Float\"]>;\n /** Type of a leg. */\n type: RouteDetailsLegType;\n /** Information about the station at the destination of a leg. */\n station?: Maybe<RouteDetailsLegStation>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Maneuvers of a leg - used to generate turn-by-turn instructions. */\n maneuvers: Array<RouteDetailsManeuver>;\n /** Road sections of a leg - divided by means of transportation. */\n sections: Array<RouteDetailsLegSection>;\n /** [BETA] Warnings that certain conditions specified in a route mutation are not respected. */\n warnings?: Maybe<Array<RouteDetailsLegWarning>>;\n /** [BETA] Traffic conditions along the leg. Only returns data if `traffic_aware` is set to true in the `createRoute` mutation. */\n traffic?: Maybe<RouteDetailsLegTraffic>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegrange_after_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type RouteDetailsLegFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties?: Maybe<RouteDetailsLegFeatureProperties>;\n};\n\nexport type RouteDetailsLegFeatureProperties = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n /** ID of the station. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Temperature at the location. */\n temperature?: Maybe<Scalars[\"Int\"]>;\n /** Air pressure at the location. */\n air_pressure?: Maybe<Scalars[\"Float\"]>;\n /** Solar irradiance at the location. */\n solar_irradiance?: Maybe<Scalars[\"Float\"]>;\n /**\n * Duration, in seconds, of time spent at this location.\n * @deprecated In favor of `legs.durations`.\n */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Value of the combined weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteDetailsLegFeaturePropertiestemperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type RouteDetailsLegFeaturePropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegFeaturePropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegManeuverPoints = {\n /** Number of polyline points which are included in this instruction. */\n size: Scalars[\"Int\"];\n /** Interval of points included in this instruction, represented as an array with two values: the first is the index of the polyline where the interval starts, and the second is where it ends. */\n interval: Array<Scalars[\"Int\"]>;\n};\n\n/** Type of a maneuver indicating the main action. */\nexport enum RouteDetailsLegManeuverType {\n UNKNOWN = \"UNKNOWN\",\n U_TURN_UNKNOWN = \"U_TURN_UNKNOWN\",\n U_TURN_LEFT = \"U_TURN_LEFT\",\n KEEP_LEFT = \"KEEP_LEFT\",\n LEAVE_ROUNDABOUT = \"LEAVE_ROUNDABOUT\",\n TURN_SHARP_LEFT = \"TURN_SHARP_LEFT\",\n TURN_LEFT = \"TURN_LEFT\",\n TURN_SLIGHT_LEFT = \"TURN_SLIGHT_LEFT\",\n CONTINUE_ON_STREET = \"CONTINUE_ON_STREET\",\n TURN_SLIGHT_RIGHT = \"TURN_SLIGHT_RIGHT\",\n TURN_RIGHT = \"TURN_RIGHT\",\n TURN_SHARP_RIGHT = \"TURN_SHARP_RIGHT\",\n FINISH = \"FINISH\",\n REACHED_VIA = \"REACHED_VIA\",\n REACHED_CHARGING_STATION = \"REACHED_CHARGING_STATION\",\n USE_ROUNDABOUT = \"USE_ROUNDABOUT\",\n KEEP_RIGHT = \"KEEP_RIGHT\",\n U_TURN_RIGHT = \"U_TURN_RIGHT\",\n PT_START_TRIP = \"PT_START_TRIP\",\n PT_TRANSFER = \"PT_TRANSFER\",\n PT_END_TRIP = \"PT_END_TRIP\",\n IGNORE = \"IGNORE\"\n}\n\nexport type RouteDetailsLegSection = {\n /** Section type. */\n type: RouteDetailsLegSectionType;\n /** Origin point. */\n origin: RouteDetailsLegSectionFeaturePoint;\n /** Destination point. */\n destination: RouteDetailsLegSectionFeaturePoint;\n /** Aggregation of tags over the current section. */\n tags: Array<RouteDetailsTag>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Distance from the start to the end of a section. */\n distance: Scalars[\"Float\"];\n /** Total duration of a section, in seconds. The value will be 0 for walking sections. */\n duration: Scalars[\"Float\"];\n /** Total energy used in a section in kilowatt-hours. The value will be 0 for walking sections. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** [BETA] Information regarding traffic conditions along the leg's section. Available for routes created with traffic_aware set to true. */\n traffic?: Maybe<RouteDetailsLegSectionTraffic>;\n};\n\nexport type RouteDetailsLegSectionpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type RouteDetailsLegSectiondistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsLegSectionFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties: RouteDetailsLegSectionFeaturePointProperties;\n};\n\nexport type RouteDetailsLegSectionFeaturePointProperties = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Value of the combined weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteDetailsLegSectionFeaturePointPropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegSectionFeaturePointPropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegSectionTraffic = {\n /** [BETA] Traffic congestion intervals mapped to the polyline indices of the leg's section. */\n congestions: Array<TrafficCongestionInterval>;\n};\n\n/** Type of a route details leg section. */\nexport enum RouteDetailsLegSectionType {\n DRIVING = \"driving\",\n FERRY = \"ferry\",\n WALKING = \"walking\"\n}\n\nexport type RouteDetailsLegStation = {\n /** ID of a station. */\n station_id: Scalars[\"ID\"];\n /** ID of the EVSE that was selected in a route. */\n evse_id?: Maybe<Scalars[\"ID\"]>;\n /** ID of the connector that was selected in a route. */\n connector_id: Scalars[\"ID\"];\n};\n\nexport type RouteDetailsLegTraffic = {\n /** [BETA] Traffic congestion intervals mapped to the polyline indices of the leg. */\n congestions: Array<TrafficCongestionInterval>;\n};\n\n/** Type of a leg. */\nexport enum RouteDetailsLegType {\n /** This leg ends at a charging station and the vehicle must recharge. */\n STATION = \"station\",\n /** This leg ends at a via charging station and the vehicle must recharge. */\n STATION_VIA = \"station_via\",\n /** This leg ends at the destination which is a charging station, and is the last leg of the route. */\n STATION_FINAL = \"station_final\",\n /** This leg ends at a scheduled charging station and the vehicle must recharge. */\n STATION_AMENITY = \"station_amenity\",\n /** This leg ends at a via location. */\n VIA = \"via\",\n /** This leg ends at the destination, and is the last leg of the route. */\n FINAL = \"final\"\n}\n\nexport type RouteDetailsLegWarning = {\n /** The code of the warning. */\n code: RouteDetailsLegWarningCode;\n};\n\n/** Types of warnings that can be encountered in a route leg. */\nexport enum RouteDetailsLegWarningCode {\n /** The via location cannot be reached by vehicle. */\n VIA_NOT_VEHICLE_ACCESSIBLE = \"via_not_vehicle_accessible\",\n /** The leg could not use stations from the preferred operator(s). */\n OPERATORS_PREFERRED_NOT_AVAILABLE = \"operators_preferred_not_available\",\n /** Vehicle's load may exceed the maximum supported weight of the vehicle. */\n MAXIMUM_WEIGHT_EXCEEDED = \"maximum_weight_exceeded\",\n /** The leg includes sections requested to be avoided. */\n SEGMENT_UNAVOIDABLE = \"segment_unavoidable\",\n /** The charging station used in the leg has limited opening hours. */\n STATION_LIMITED_OPEN_HOURS = \"station_limited_open_hours\",\n /** The leg's charging station has unknown open hours. */\n STATION_UNKNOWN_OPEN_HOURS = \"station_unknown_open_hours\",\n /** The leg's charging station is closed at the estimated time of arrival. */\n STATION_CLOSED = \"station_closed\",\n /** The leg's charging station is closing within 45 minutes of the estimated time of arrival. */\n STATION_CLOSING_SOON = \"station_closing_soon\",\n /** The specified stop duration at the via charging station is insufficient to start a charging session. */\n VIA_INSUFFICIENT_CHARGING_TIME = \"via_insufficient_charging_time\",\n /** The selected via station does not have compatible connectors that meet the minimum power threshold. The route still includes this charging stop, but charging will be slower than requested. */\n VIA_STATION_BELOW_MINIMUM_POWER = \"via_station_below_minimum_power\",\n /** The charging station at the destination does not have any connectors compatible with the selected vehicle. */\n DESTINATION_CHARGER_INCOMPATIBLE = \"destination_charger_incompatible\",\n /** The charging station at the destination is restricted to heavy-duty trucks. */\n DESTINATION_STATION_TRUCK_ONLY = \"destination_station_truck_only\",\n /** Expected arrival state of charge for the leg is below the safety risk margin. */\n RISK_MARGIN_SOC_NOT_POSSIBLE = \"risk_margin_soc_not_possible\",\n /** Requested final state of charge value is below the specified safe risk margin. Safe risk margin is used instead. */\n FINAL_SOC_BELOW_RISK_MARGIN = \"final_soc_below_risk_margin\"\n}\n\nexport type RouteDetailsManeuver = {\n /** Type of instruction. */\n type: RouteDetailsLegManeuverType;\n /** Location of the maneuver. */\n location: RouteDetailsLegSectionFeaturePoint;\n /** Name of the street associated with the instruction. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Distance, in meters, of a route instruction. */\n distance: Scalars[\"Float\"];\n /** Duration, in seconds, of a route instruction. */\n duration: Scalars[\"Int\"];\n /** Information about the points on a polyline. */\n points: RouteDetailsLegManeuverPoints;\n /** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise this value is null. */\n exit_number?: Maybe<Scalars[\"Int\"]>;\n /** Curvature angle between the roundabout and the exit of the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise this value is `null`. */\n turn_angle?: Maybe<Scalars[\"Float\"]>;\n /** Aggregation of tags over the current maneuver. */\n tags: Array<RouteDetailsTag>;\n};\n\nexport type RouteDetailsManeuverdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsPathSegment = {\n /** Elevation value of a route path segment. */\n elevation: Scalars[\"Float\"];\n /** Average speed of a route path segment. This value is determined using legal maximum speed and, if provided, the user defined maximum speed. */\n average_speed: Scalars[\"Float\"];\n /** Consumption, in kilowatt hours, of a route path segment. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Distance of a route path segment. */\n distance: Scalars[\"Float\"];\n /** Duration, in seconds, of a route path segment. */\n duration: Scalars[\"Float\"];\n /** State of charge, in kilowatt hours, of a route path segment. For HEVs and PHEVs this field will return null. */\n state_of_charge?: Maybe<Scalars[\"Float\"]>;\n /**\n * Maximum vehicle speed of a route path segment.\n * @deprecated Will be removed.\n */\n maximum_speed: Scalars[\"Float\"];\n};\n\nexport type RouteDetailsPathSegmentelevationArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsPathSegmentaverage_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport type RouteDetailsPathSegmentdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsPathSegmentstate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type RouteDetailsPathSegmentmaximum_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavings = {\n /** Money saved by a user driving this route with an electric vehicle. */\n money?: Maybe<Scalars[\"Float\"]>;\n /** Average gas price with which the calculation was made. */\n average_gas_price: Scalars[\"Float\"];\n /** Average energy price with which the calculation was made. */\n average_energy_price: Scalars[\"Float\"];\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavingsmoneyArgs = {\n currency?: Maybe<Currency>;\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavingsaverage_gas_priceArgs = {\n currency?: Maybe<Currency>;\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavingsaverage_energy_priceArgs = {\n currency?: Maybe<Currency>;\n};\n\n/** Tags of a route. */\nexport enum RouteDetailsTag {\n ROAD = \"road\",\n HIGHWAY = \"highway\",\n TOLL = \"toll\",\n FERRY = \"ferry\",\n WALKING = \"walking\",\n CROSSBORDER = \"crossborder\"\n}\n\nexport type RouteDetailsTraffic = {\n /** [BETA] Additional driving duration, in seconds, caused by traffic congestion compared to free-flow conditions. This value is already included in route total and driving durations. */\n delay: Scalars[\"Int\"];\n /** [BETA] Traffic congestion intervals mapped to the polyline indices of the leg. */\n congestions: Array<Maybe<TrafficCongestionInterval>>;\n};\n\nexport type RouteDrivingPreferences = {\n /** [BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'. */\n speed_factor?: Maybe<Scalars[\"Float\"]>;\n /** [BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'. */\n maximum_speed?: Maybe<MaximumSpeed>;\n /** [BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'. */\n style?: Maybe<RouteDrivingStyle>;\n};\n\nexport type RouteDrivingPreferencesInput = {\n /** [BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'. */\n speed_factor?: Maybe<Scalars[\"Float\"]>;\n /** [BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'. */\n maximum_speed?: Maybe<MaximumSpeedInput>;\n /** [BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'. */\n style?: Maybe<RouteDrivingStyle>;\n};\n\nexport enum RouteDrivingStyle {\n /** Lower average driving speed and lower energy consumption. Applies a speed limit of 110 km/h to all segments where a higher legal limit is allowed and reduces by 5% the route's average driving speed. */\n ECO = \"eco\",\n /** Higher average driving speed and higher energy consumption. Applies no speed limit and increases by 5% the route's average driving speed. */\n SPORT = \"sport\"\n}\n\nexport type RouteEmbeddedEmissions = {\n /** Total embedded emissions. */\n total: Scalars[\"Float\"];\n /** Manufacturing emissions. */\n manufacturing: RouteEmbeddedManufacturingEmissions;\n /** Total distribution emissions. */\n distribution: Scalars[\"Float\"];\n /** Distribution sea segment emissions. */\n maritime: RouteEmbeddedMaritimeEmissions;\n /** Distribution land segment emissions. */\n land: RouteEmbeddedLandEmissions;\n};\n\nexport type RouteEmbeddedEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedEmissionsdistributionArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedLandEmissions = {\n /** Total embedded land segment emissions. */\n total: Scalars[\"Float\"];\n /** Distribution land segment emissions from fuel consumption. */\n fuel: Scalars[\"Float\"];\n /** Distribution land segment lifecycle emissions. */\n lifecycle: Scalars[\"Float\"];\n};\n\nexport type RouteEmbeddedLandEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedLandEmissionsfuelArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedLandEmissionslifecycleArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedManufacturingEmissions = {\n /** Total embedded manufacturing emissions. */\n total: Scalars[\"Float\"];\n /** Vehicle body manufacturing emissions. */\n body: Scalars[\"Float\"];\n /** Lithium ion battery manufacturing emissions. */\n battery?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteEmbeddedManufacturingEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedManufacturingEmissionsbodyArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedManufacturingEmissionsbatteryArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissions = {\n /** Total embedded maritime emissions. */\n total: Scalars[\"Float\"];\n /** Fuel related maritime segment emissions. */\n fuel: Scalars[\"Float\"];\n /** Port facility related maritime segment emissions. */\n port: Scalars[\"Float\"];\n /** Idling related maritime segment emissions. */\n idle: Scalars[\"Float\"];\n /** Distributed lifecycle related maritime segment emissions. */\n lifecycle: Scalars[\"Float\"];\n};\n\nexport type RouteEmbeddedMaritimeEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionsfuelArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionsportArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionsidleArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionslifecycleArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmissions = {\n /** ID of the route for which we retrieve the emissions profile. */\n route_id: Scalars[\"ID\"];\n /** ID of the route alternative for which we retrieve the emissions profile. */\n route_alternative_id: Scalars[\"ID\"];\n /** Emissions profile for the vehicle used in route. */\n route_vehicle: RouteVehicleEmissions;\n /** Emissions profile for an equivalent internal combustion engine vehicle. */\n internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;\n};\n\nexport type RouteEmissionsinternal_combustion_vehicleArgs = {\n fuel_type?: Maybe<RouteOperationalFuelType>;\n};\n\nexport type RouteEndOfLifeEmissions = {\n /** Total end of life emissions. */\n total: Scalars[\"Float\"];\n /** Fluid related end of life emissions. */\n fluids: FluidEndOfLifeEmissions;\n /** Battery related end of life emissions. */\n battery: Scalars[\"Float\"];\n /** Tire related end of life emissions. */\n tires: Scalars[\"Float\"];\n /** Body end of life emissions. */\n body: Scalars[\"Float\"];\n /** Transport end of life emissions. */\n transport: Scalars[\"Float\"];\n};\n\nexport type RouteEndOfLifeEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionsbatteryArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionstiresArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionsbodyArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionstransportArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInstruction = {\n /** Information about the points on the polyline. */\n points?: Maybe<RouteInstructionPoints>;\n /** Sign of the instruction. See `RouteInstructionSign`. */\n sign?: Maybe<RouteInstructionSign>;\n /** Name of the street on which the instruction is. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Distance, in meters, of the current route instruction. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Duration, in seconds, of the current route instruction. */\n time?: Maybe<Scalars[\"Int\"]>;\n /** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null. */\n exit_number?: Maybe<Scalars[\"Int\"]>;\n /** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null. */\n turn_angle?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteInstructionPoints = {\n /** Number of polyline points which are included in this instruction. */\n size?: Maybe<Scalars[\"Int\"]>;\n /** The interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends. */\n interval?: Maybe<Array<Maybe<Scalars[\"Int\"]>>>;\n};\n\n/** Sign belonging to the instruction indicating the main maneuver. */\nexport enum RouteInstructionSign {\n UNKNOWN = \"UNKNOWN\",\n U_TURN_UNKNOWN = \"U_TURN_UNKNOWN\",\n U_TURN_LEFT = \"U_TURN_LEFT\",\n KEEP_LEFT = \"KEEP_LEFT\",\n LEAVE_ROUNDABOUT = \"LEAVE_ROUNDABOUT\",\n TURN_SHARP_LEFT = \"TURN_SHARP_LEFT\",\n TURN_LEFT = \"TURN_LEFT\",\n TURN_SLIGHT_LEFT = \"TURN_SLIGHT_LEFT\",\n CONTINUE_ON_STREET = \"CONTINUE_ON_STREET\",\n TURN_SLIGHT_RIGHT = \"TURN_SLIGHT_RIGHT\",\n TURN_RIGHT = \"TURN_RIGHT\",\n TURN_SHARP_RIGHT = \"TURN_SHARP_RIGHT\",\n FINISH = \"FINISH\",\n REACHED_VIA = \"REACHED_VIA\",\n REACHED_CHARGING_STATION = \"REACHED_CHARGING_STATION\",\n USE_ROUNDABOUT = \"USE_ROUNDABOUT\",\n KEEP_RIGHT = \"KEEP_RIGHT\",\n U_TURN_RIGHT = \"U_TURN_RIGHT\",\n PT_START_TRIP = \"PT_START_TRIP\",\n PT_TRANSFER = \"PT_TRANSFER\",\n PT_END_TRIP = \"PT_END_TRIP\",\n IGNORE = \"IGNORE\"\n}\n\nexport type RouteInternalCombustionVehicleEmissions = {\n /** Total co2e emissions. */\n total: Scalars[\"Float\"];\n /** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions. */\n operational: RouteInternalCombustionVehicleOperationalEmissions;\n /** End of life emissions. */\n end_of_life: RouteEndOfLifeEmissions;\n /** Emissions info for the legs in the same order as in the route. */\n legs: Array<RouteInternalCombustionVehicleLegEmissions>;\n};\n\nexport type RouteInternalCombustionVehicleEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleLegEmissions = {\n /** Total co2e emissions. */\n total: Scalars[\"Float\"];\n /** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions. */\n operational: RouteInternalCombustionVehicleOperationalEmissions;\n /** End of life emissions. */\n end_of_life: RouteEndOfLifeEmissions;\n};\n\nexport type RouteInternalCombustionVehicleLegEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleLegEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleOperationalEmissions = {\n /** Total operational emissions. */\n total: Scalars[\"Float\"];\n /** Fuel emissions. */\n fuel: RouteOperationalFuelEmissions;\n /** Road infrastructure emissions. */\n infrastructure: RouteOperationalInfrastructureEmissions;\n /** Maintenance emissions. */\n maintenance: RouteOperationalMaintenanceEmissions;\n};\n\nexport type RouteInternalCombustionVehicleOperationalEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLeg = {\n /** ID of a leg. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Distance from the start to the end of a leg, in meters. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Total drive time from the start to the end of a leg, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Total energy used in a leg in kWh. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Display value that indicates the range, in meters, available at the beginning of the leg. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. */\n rangeStart?: Maybe<Scalars[\"Int\"]>;\n /** Total energy in a battery at the beginning of a leg, in kWh. */\n rangeStartKwh?: Maybe<Scalars[\"Float\"]>;\n /** Total energy in a battery at the beginning of a trip, in percentage. */\n rangeStartPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Display value that indicates the range, in meters, available at the end of the leg. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. Please note: In case of a non BEV where the range end is negative, the value will be 0. */\n rangeEnd?: Maybe<Scalars[\"Int\"]>;\n /** Total energy left in a battery at the end of a leg, in kWh. In the case of a non BEV where the range end is negative, the value will be 0. */\n rangeEndKwh?: Maybe<Scalars[\"Float\"]>;\n /** Remaining range, energy in percentage, at the end of a trip. */\n rangeEndPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Origin point location. */\n origin?: Maybe<FeaturePoint>;\n /** Destination point location. */\n destination?: Maybe<FeaturePoint>;\n /** Type of a leg. */\n type?: Maybe<LegType>;\n /** Name of a destination. This is the station name in case a user should charge or the name of the location in case this was provided. */\n name?: Maybe<Scalars[\"String\"]>;\n /** ID of a station. */\n stationId?: Maybe<Scalars[\"String\"]>;\n /** ID of an operator. */\n operatorId?: Maybe<Scalars[\"String\"]>;\n /** Name of an operator. */\n operatorName?: Maybe<Scalars[\"String\"]>;\n /** Ranking of an operator. */\n operatorRanking?: Maybe<Scalars[\"Int\"]>;\n /** Total time required to charge a battery until 80%, in seconds. */\n chargeTime?: Maybe<Scalars[\"Int\"]>;\n /** Recommended EVSE where to charge. */\n evse?: Maybe<EVSE>;\n /** Recommended connector for charging. */\n connector?: Maybe<Connector>;\n /** Number of compatible plugs available at a charge station. */\n plugsAvailable?: Maybe<Scalars[\"Int\"]>;\n /** Number of compatible plugs occupied at a charge station. */\n plugsOccupied?: Maybe<Scalars[\"Int\"]>;\n /** Number of compatible plugs unknown at a charge station. */\n plugsUnknown?: Maybe<Scalars[\"Int\"]>;\n /** Number of compatible plugs out of order at a charge station. */\n plugsOutOfOrder?: Maybe<Scalars[\"Int\"]>;\n /** Total number of compatible plugs at a charge station. */\n plugsCount?: Maybe<Scalars[\"Int\"]>;\n /** Polyline containing encoded coordinates. */\n polyline?: Maybe<Scalars[\"String\"]>;\n /** Steps of a leg. */\n steps?: Maybe<Array<Maybe<RouteStep>>>;\n /** Tags of a leg. Values: road, highway, toll, ferry. */\n tags?: Maybe<Array<Maybe<RouteTagType>>>;\n /** Cargo weight in a vehicle for the duration of a leg, in kg. */\n cargo?: Maybe<Scalars[\"Float\"]>;\n /** Number of occupants in a vehicle for the duration of a leg. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteLegpolylineArgs = {\n decimals?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteLegMeta = {\n /** Warnings that certain conditions specified in a route mutation are not respected. */\n warnings: Array<RouteMetaWarning>;\n};\n\nexport type RouteLegOperationalElectricityEmissions = {\n /** Total electricity emissions. */\n total: Scalars[\"Float\"];\n /** Base emissions without efficiency losses. */\n base_value: Scalars[\"Float\"];\n /** Emissions for electricity lost in the battery. */\n battery_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost in transmission. */\n transmission_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost during charging. */\n chargepoint_losses: Scalars[\"Float\"];\n /** Electricity efficiency information. */\n efficiency: RouteOperationalElectricityEmissionsEfficiency;\n /** Electricity intensity information. */\n intensity: RouteLegOperationalElectricityEmissionsIntensity;\n};\n\nexport type RouteLegOperationalElectricityEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionsbase_valueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionsbattery_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionstransmission_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionschargepoint_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for a leg */\nexport type RouteLegOperationalElectricityEmissionsIntensity = {\n /** Total average electricity emissions intensity in unit CO2e/kWh. */\n total: Scalars[\"Float\"];\n /** Base regional electricity emissions intensity for the leg. */\n base_regional_value: EmissionsFactor;\n /** Base regional electricity intensity used for the ISO 14083:2023 emissions estimation. */\n base_iso_14083_2023_regional_value: EmissionsFactor;\n /** Electricity mix for the leg. */\n energy_sources: RouteOperationalElectricityEnergySources;\n /** Model used to estimate the electricity mix. */\n energy_source_model: RouteOperationalElectricityEnergySourceModel;\n /** Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh. */\n infrastructure: Scalars[\"Float\"];\n /** Season for which the leg was calculated. */\n season: RouteOperationalElectricitySeason;\n /** Climate for which the leg was calculated. */\n climate: RouteOperationalElectricityClimate;\n /** Estimated electricity demand at the time and place the electricity for this leg was obtained as a fraction of the annual average demand. */\n average_demand: Scalars[\"Float\"];\n /** Fraction of regional power generation that is not affected by demand (is assumed to always be on). */\n base_load_fraction: Scalars[\"Float\"];\n};\n\n/** Electricity emission intensity for a leg */\nexport type RouteLegOperationalElectricityEmissionsIntensitytotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for a leg */\nexport type RouteLegOperationalElectricityEmissionsIntensityinfrastructureArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteMeta = {\n /** Warnings that certain conditions specified in a route mutation are not respected. */\n warnings: Array<RouteMetaWarning>;\n};\n\nexport type RouteMetaWarning = {\n /** Static identifier, can be used for production purposes such as i18n. */\n code: Scalars[\"String\"];\n /** Human readable explanation of the warning, for development purposes. */\n message: Scalars[\"String\"];\n /** Optional JSON object containing data explaining the warning, for development purposes. */\n data?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport type RouteMetadata = {\n /** Refers to the x-app-id specified in the headers. */\n app_id: Scalars[\"ID\"];\n /** Date when a route was created by a createRoute mutation. */\n created_at: Scalars[\"DateTime\"];\n /** Last updated date of a route. */\n updated_at: Scalars[\"DateTime\"];\n /** Length of time required to successfully calculate a route, in milliseconds. */\n computation_time?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Köppen climate classification. */\nexport enum RouteOperationalElectricityClimate {\n /** Tropical rain forest climate. */\n AF = \"Af\",\n /** Tropical monsoon climate. */\n AM = \"Am\",\n /** Tropical savanna climate, dry summer. */\n AW = \"Aw\",\n /** Tropical savanna climate, dry winter. */\n AS = \"As\",\n /** Hot desert climate. */\n BWH = \"BWh\",\n /** Cold desert climate. */\n BWK = \"BWk\",\n /** Hot semi-arid climate. */\n BSH = \"BSh\",\n /** Cold semi-arid climate. */\n BSK = \"BSk\",\n /** Monsoon-influenced humid subtropical climate. */\n CWA = \"Cwa\",\n /** Subtropical highland climate. */\n CWB = \"Cwb\",\n /** Cold subtropical highland climate. */\n CWC = \"Cwc\",\n /** Humid subtropical climate. */\n CFA = \"Cfa\",\n /** Temperate oceanic climate. */\n CFB = \"Cfb\",\n /** Sub polar oceanic climate. */\n CFC = \"Cfc\",\n /** Hot-summer Mediterranean climate. */\n CSA = \"Csa\",\n /** Warm-summer Mediterranean climate. */\n CSB = \"Csb\",\n /** Cold-summer Mediterranean climate. */\n CSC = \"Csc\",\n /** Monsoon-influenced hot-summer humid continental climate. */\n DWA = \"Dwa\",\n /** Monsoon-influenced warm-summer humid continental climate. */\n DWB = \"Dwb\",\n /** Monsoon-influenced subarctic climate. */\n DWC = \"Dwc\",\n /** Monsoon-influenced extremely cold subarctic climate. */\n DWD = \"Dwd\",\n /** Hot-summer humid continental climate. */\n DFA = \"Dfa\",\n /** Warm-summer humid continental climate. */\n DFB = \"Dfb\",\n /** Subarctic climate. */\n DFC = \"Dfc\",\n /** Extremely cold subarctic climate. */\n DFD = \"Dfd\",\n /** Mediterranean-influenced hot-summer humid continental climate. */\n DSA = \"Dsa\",\n /** Mediterranean-influenced warm-summer humid continental climate. */\n DSB = \"Dsb\",\n /** Mediterranean-influenced subarctic climate. */\n DSC = \"Dsc\",\n /** Mediterranean-influenced extremely cold subarctic climate. */\n DSD = \"Dsd\",\n /** Tundra climate. */\n ET = \"ET\",\n /** Ice cap climate. */\n EF = \"EF\"\n}\n\nexport type RouteOperationalElectricityEmissions = {\n /** Total electricity emissions. */\n total: Scalars[\"Float\"];\n /** Base emissions without efficiency losses. */\n base_value: Scalars[\"Float\"];\n /** Emissions for electricity lost in the battery. */\n battery_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost in transmission. */\n transmission_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost during charging. */\n chargepoint_losses: Scalars[\"Float\"];\n /** Electricity efficiency information. */\n efficiency: RouteOperationalElectricityEmissionsEfficiency;\n /** Electricity intensity information. */\n intensity: RouteOperationalElectricityEmissionsIntensity;\n};\n\nexport type RouteOperationalElectricityEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsbase_valueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsbattery_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionstransmission_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionschargepoint_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsEfficiency = {\n /** Average total electricity efficiency. */\n total: Scalars[\"Float\"];\n /** Average efficiency of the battery. */\n battery: Scalars[\"Float\"];\n /** Average estimated transmission efficiency using the base transmission efficiency adjusting for temperature. */\n transmission: Scalars[\"Float\"];\n /** Average base regional grid transmission efficiency. */\n base_transmission: Scalars[\"Float\"];\n /** Average transmission efficiency change due to temperature. */\n transmission_temperature_modifier: Scalars[\"Float\"];\n /** Average efficiency of the chargepoint. */\n chargepoint: Scalars[\"Float\"];\n /** Average evse (electric vehicle supply equipment) efficiency of the chargepoint. */\n evse: Scalars[\"Float\"];\n /** Average circuit breaker efficiency of the chargepoint. */\n breaker: Scalars[\"Float\"];\n /** Average power electronics unit efficiency of the chargepoint. */\n power_electronics_unit: Scalars[\"Float\"];\n /** Average transformer efficiency of the chargepoint. */\n transformer: Scalars[\"Float\"];\n /** Change in chargepoint efficiency due to temperature. */\n chargepoint_temperature_modifier: Scalars[\"Float\"];\n /** Average charging current in amperes. */\n average_charging_current: Scalars[\"Float\"];\n /** Average charging voltage in volts. */\n average_charging_voltage: Scalars[\"Float\"];\n /** Average outside temperature. */\n average_temperature: Scalars[\"Float\"];\n /** Average regional temperature. */\n average_regional_temperature: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalElectricityEmissionsEfficiencyaverage_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsEfficiencyaverage_regional_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensity = {\n /** Total average electricity emissions intensity in unit CO2e/kWh. */\n total: Scalars[\"Float\"];\n /** Average base regional electricity emissions intensity in unit CO2e/kWh. */\n average_base_regional_value: Scalars[\"Float\"];\n /** Total electricity intensity used for iso 14083:2023 scope emissions estimate in unit CO2e/kWh. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Average electricity mix for the route. */\n energy_sources: RouteOperationalElectricityEnergySources;\n /** Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh. */\n infrastructure: Scalars[\"Float\"];\n /** Average electricity demand at the time of route charges as a fraction of the annual average demand. */\n average_demand: Scalars[\"Float\"];\n /** Fraction of regional power generation that is not affected by demand (is assumed to always be on). */\n base_load_fraction: Scalars[\"Float\"];\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensitytotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensityaverage_base_regional_valueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensityiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensityinfrastructureArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Energy source models. */\nexport enum RouteOperationalElectricityEnergySourceModel {\n /** The current energy mix of the charging station provided by the CPO was used. */\n OCPI_STATION_ENERGY_MIX = \"ocpi_station_energy_mix\",\n /** Historical average energy mix for the month. */\n GRID_MONTHLY_AVERAGE = \"grid_monthly_average\",\n /** Historical average energy mix for the month and hour. */\n GRID_HOURLY_AVERAGE = \"grid_hourly_average\",\n /** Estimate using historical average electricity demand for the month. */\n GRID_DEMAND_BASED_MONTHLY_AVERAGE = \"grid_demand_based_monthly_average\",\n /** Estimate using historical average electricity demand for the month and hour. */\n GRID_DEMAND_BASED_HOURLY_AVERAGE = \"grid_demand_based_hourly_average\",\n /** Estimate using the seasonal average electricity demand for the climate. */\n CLIMATE_DEMAND_BASED_SEASONAL_AVERAGE = \"climate_demand_based_seasonal_average\",\n /** Estimate using the seasonal average electricity demand for the hour and climate. */\n CLIMATE_DEMAND_BASED_HOURLY_AVERAGE = \"climate_demand_based_hourly_average\",\n /** Regional default energy mix. */\n DEFAULT = \"default\"\n}\n\nexport type RouteOperationalElectricityEnergySources = {\n /** Electricity produced by coal power plants. */\n coal: ElectricityGenerationMethod;\n /** Electricity produced by natural gas power plants. */\n gas: ElectricityGenerationMethod;\n /** Electricity produced by hydroelectric power. */\n hydro: ElectricityGenerationMethod;\n /** Electricity produced by solar power. */\n solar: ElectricityGenerationMethod;\n /** Electricity produced by wind power. */\n wind: ElectricityGenerationMethod;\n /** Electricity produced by oil and other miscellaneous fossil fuel power plants. */\n oil: ElectricityGenerationMethod;\n /** Electricity produced by nuclear power plants. */\n nuclear: ElectricityGenerationMethod;\n /** Electricity produced by biofuel/biomass. */\n biofuel: ElectricityGenerationMethod;\n /** Electricity produced by geothermal power plants. */\n geothermal: ElectricityGenerationMethod;\n /** Electricity produced by other means. */\n other: ElectricityGenerationMethod;\n};\n\n/** Yearly seasons. */\nexport enum RouteOperationalElectricitySeason {\n /** Winter season. */\n WINTER = \"winter\",\n /** Spring season. */\n SPRING = \"spring\",\n /** Summer season. */\n SUMMER = \"summer\",\n /** Fall season. */\n FALL = \"fall\"\n}\n\nexport type RouteOperationalFuelEmissions = {\n /** Total fuel emissions for the route. */\n total: Scalars[\"Float\"];\n /** Direct (tank to wheels) fuel emissions for the route. */\n direct: Scalars[\"Float\"];\n /** Indirect (well to tank) fuel emissions for the route. */\n indirect: Scalars[\"Float\"];\n /** Total fuel consumption for the route. */\n consumption: Scalars[\"Float\"];\n /** Estimated internal combustion vehicle weight. */\n vehicle_weight: Scalars[\"Float\"];\n /** Estimated internal combustion vehicle engine torque. */\n engine_torque: Scalars[\"Float\"];\n /** Average powertrain efficiency. */\n powertrain_efficiency: Scalars[\"Float\"];\n /** Average base powertrain efficiency. */\n base_powertrain_efficiency: Scalars[\"Float\"];\n /** Speed related change in powertrain efficiency from the base. */\n powertrain_efficiency_speed_modifier: Scalars[\"Float\"];\n /** Average speed of the vehicle. */\n average_speed: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalFuelEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsdirectArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsindirectArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsconsumptionArgs = {\n unit?: Maybe<FuelUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsvehicle_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsengine_torqueArgs = {\n unit?: Maybe<TorqueUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsaverage_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\n/** Fuel types. */\nexport enum RouteOperationalFuelType {\n /** Gasoline fuel. */\n GASOLINE = \"gasoline\",\n /** Diesel fuel. */\n DIESEL = \"diesel\"\n}\n\nexport type RouteOperationalInfrastructureEmissions = {\n /** Total road infrastructure emissions. */\n total: Scalars[\"Float\"];\n /** Embedded (construction, decommissioning, etc) road infrastructure emissions. */\n embedded: Scalars[\"Float\"];\n /** Induced road infrastructure maintenance emissions. */\n maintenance: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalInfrastructureEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalInfrastructureEmissionsembeddedArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalInfrastructureEmissionsmaintenanceArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalMaintenanceEmissions = {\n /** Total maintenance emissions. */\n total: RouteOperationalMaintenanceEmissionsField;\n /** Fluid related maintenance emissions. */\n fluids: FluidMaintenanceEmissions;\n /** Battery related maintenance emissions. */\n battery: RouteOperationalMaintenanceEmissionsField;\n /** Tire related maintenance emissions. */\n tires: RouteOperationalMaintenanceEmissionsField;\n /** Miscellaneous component maintenance emissions. */\n components: RouteOperationalMaintenanceEmissionsField;\n /** Accident repair related maintenance emissions. */\n repair: RouteOperationalMaintenanceEmissionsField;\n};\n\nexport type RouteOperationalMaintenanceEmissionsField = {\n /** Total emissions. */\n total: Scalars[\"Float\"];\n /** Emissions from replacement production and transport. */\n production: Scalars[\"Float\"];\n /** Emissions from disposal. */\n disposal: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalMaintenanceEmissionsFieldtotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalMaintenanceEmissionsFieldproductionArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalMaintenanceEmissionsFielddisposalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperatorPreferences = {\n /** Ranking of an operator with multiple levels, each level having its own penalty value. */\n ranking?: Maybe<RouteOperatorPreferencesRanking>;\n /** Operators that should be excluded for a route calculation. */\n exclude?: Maybe<Array<RouteOperatorsValue>>;\n /** Operators that should be avoided, but not excluded, for a route calculation. */\n avoid?: Maybe<Array<RouteOperatorsValue>>;\n};\n\n/** Prioritized operators for a route calculation. */\nexport type RouteOperatorPreferencesInput = {\n /** Operators to be preferred in route calculation. If not specified, no operator ranking is applied (including project-configured ranking). */\n ranking?: Maybe<RouteOperatorPreferencesRankingInput>;\n /** Operators to be excluded from route calculation. If specified, overrides project-configured operator exclusions. If not specified, applies project-configured operator exclusions. */\n exclude?: Maybe<Array<RouteOperatorsValueInput>>;\n /** Operators that should be avoided, but not excluded, for a route calculation. */\n avoid?: Maybe<Array<RouteOperatorsValueInput>>;\n};\n\nexport type RouteOperatorPreferencesRanking = {\n /** Flag indicating if an operator should be preferred or required. */\n type: RouteOperatorsType;\n /** Ranking levels for operator ranking. */\n levels?: Maybe<RouteOperatorPreferencesRankingLevels>;\n};\n\nexport type RouteOperatorPreferencesRankingInput = {\n /** Determines how operator preferences are applied to stations during route calculation. If no ranking is provided through 'levels' or project settings, no operator preference is applied. */\n type: RouteOperatorsType;\n /** Priority levels for operator ranking. If not specified, applies the specified enforcement type to the project-configured operator ranking. */\n levels?: Maybe<RouteOperatorPreferencesRankingLevelsInput>;\n};\n\nexport type RouteOperatorPreferencesRankingLevels = {\n /** Least significant level for operators ranking. */\n low?: Maybe<Array<RouteOperatorsValue>>;\n /** Medium level for operators ranking. */\n medium?: Maybe<Array<RouteOperatorsValue>>;\n /** Most significant level for operator ranking. */\n high?: Maybe<Array<RouteOperatorsValue>>;\n};\n\nexport type RouteOperatorPreferencesRankingLevelsInput = {\n /** Least significant level for operator ranking. */\n low?: Maybe<Array<RouteOperatorsValueInput>>;\n /** Medium level for operator ranking. */\n medium?: Maybe<Array<RouteOperatorsValueInput>>;\n /** Most significant level for operator ranking. */\n high?: Maybe<Array<RouteOperatorsValueInput>>;\n};\n\n/** Prioritized operators for a route calculation. */\nexport type RouteOperators = {\n /** Flag indicating if the operators ranking should be preferred or required. */\n type?: Maybe<RouteOperatorsType>;\n /** Ranking of an operator with multiple levels, each level having it's own penalty value. */\n ranking?: Maybe<RouteOperatorsRanking>;\n /** Operator IDs which should be excluded from a route. */\n exclude?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Prioritized operators for a route calculation. */\nexport type RouteOperatorsInput = {\n /** Flag indicating if the operators ranking should be preferred or required. */\n type?: Maybe<RouteOperatorsType>;\n /** Ranking of an operator with multiple levels, each level having it's own penalty value. */\n ranking?: Maybe<RouteOperatorsRankingInput>;\n /** Operator IDs which should be excluded from a route. */\n exclude?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Ranking configuration for prioritized operators. */\nexport type RouteOperatorsRanking = {\n /** Level 1 (most significant) for operator ranking. */\n level1?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 2 for operator ranking. */\n level2?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 3 for operator ranking. */\n level3?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 4 for operator ranking. */\n level4?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 5 for operator ranking. */\n level5?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 6 for operator ranking. */\n level6?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 7 for operator ranking. */\n level7?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 8 for operator ranking. */\n level8?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 9 for operator ranking. */\n level9?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 10 (least significant) for operator ranking. */\n level10?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Ranking configuration for prioritized operators. */\nexport type RouteOperatorsRankingInput = {\n /** Level 1 (most significant) for operator ranking. */\n level1?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 2 for operator ranking. */\n level2?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 3 for operator ranking. */\n level3?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 4 for operator ranking. */\n level4?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 5 for operator ranking. */\n level5?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 6 for operator ranking. */\n level6?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 7 for operator ranking. */\n level7?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 8 for operator ranking. */\n level8?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 9 for operator ranking. */\n level9?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 10 (least significant) for operator ranking. */\n level10?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Type of operator prioritization for a route. */\nexport enum RouteOperatorsType {\n /** Operators ranking will not be taken into account if no type is given. */\n NONE = \"none\",\n /** Operators given in the operators ranking will be preferred when calculating routes. */\n PREFERRED = \"preferred\",\n /** Operators given in the operators ranking will be required when calculating routes, all other operators will be ignored. */\n REQUIRED = \"required\"\n}\n\nexport type RouteOperatorsValue = {\n /** ID of an operator. */\n id: Scalars[\"ID\"];\n /** List of countries in which the operator should be preferred/excluded. When omitted the operator will be preferred/excluded in every country. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\nexport type RouteOperatorsValueInput = {\n /** ID of an operator. */\n id: Scalars[\"ID\"];\n /** List of countries in which the operator should be preferred/excluded/avoided. When omitted the operator will be preferred/excluded in every country. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\nexport type RouteOriginFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteOriginProperties>;\n};\n\nexport type RouteOriginFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteOriginPropertiesInput>;\n};\n\nexport type RouteOriginProperties = {\n /** Data about the origin location. */\n location?: Maybe<RoutePropertiesLocation>;\n /** Vehicle data at the origin location. */\n vehicle?: Maybe<RoutePropertiesVehicle>;\n};\n\nexport type RouteOriginPropertiesInput = {\n /** Data about the origin location. */\n location?: Maybe<RoutePropertiesLocationInput>;\n /** Vehicle data at the origin location. */\n vehicle?: Maybe<RoutePropertiesVehicleInput>;\n};\n\nexport type RoutePath = {\n /** GeoJSON location of a route path segment. */\n location?: Maybe<Point>;\n /** Elevation (altitude) in meters. */\n elevation?: Maybe<Scalars[\"Int\"]>;\n /** Average speed, in km/h, for this route path segment. */\n averageSpeed?: Maybe<Scalars[\"Float\"]>;\n /** Recommended speed, in km/h for this route path segment to optimise the consumption. */\n recommendedSpeed?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of a route path segment. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh per km, of a route path segment. */\n consumptionPerKm?: Maybe<Scalars[\"Float\"]>;\n /** Distance, in meters, of a route path segment. */\n distance?: Maybe<Scalars[\"Float\"]>;\n /** Duration, in seconds, of a route path segment. */\n duration?: Maybe<Scalars[\"Float\"]>;\n /** State of charge, in kWh, of a route path segment. */\n stateOfCharge?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RoutePropertiesLocation = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RoutePropertiesLocationInput = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RoutePropertiesStation = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RoutePropertiesStationInput = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RoutePropertiesVehicle = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight: TotalOccupantWeight;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeight>;\n};\n\nexport type RoutePropertiesVehicleInput = {\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n};\n\nexport type RoutePropertiesViaLocation = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RoutePropertiesViaLocationInput = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteResponse = {\n /** ID of a route calculation. */\n id: Scalars[\"ID\"];\n /** Status of a route. */\n status: RouteStatus;\n /** Recommended route. */\n recommended?: Maybe<RouteDetails>;\n /** [BETA] Alternative routes. */\n alternatives?: Maybe<Array<RouteDetails>>;\n /** Meta data for a route. */\n meta: RouteMetadata;\n /** Route request. */\n request_input: CreateRoute;\n};\n\n/** Scheduled charge stop along a route. */\nexport type RouteScheduledChargeStop = {\n /** List of amenity types. */\n types?: Maybe<Array<Maybe<AmenityType>>>;\n /** Duration at the amenity, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Maximum allowed offset from the stop_after value in seconds. Default is 1800. */\n offset?: Maybe<Scalars[\"Int\"]>;\n /** Desired drive time before a scheduled stop after leaving the previous stop, in seconds. */\n stop_after?: Maybe<Scalars[\"Int\"]>;\n /** Maximum distance from a station to an amenity, in meters. */\n max_distance_from_station?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** The season of the route. */\nexport enum RouteSeason {\n /** We suppose it is summer and we have the best weather conditions. */\n SUMMER = \"summer\",\n /** We suppose it is winter and we have the worst weather conditions. */\n WINTER = \"winter\",\n /** We fetch the current weather conditions. */\n CURRENT = \"current\"\n}\n\nexport type RouteStationFilter = {\n /** Filters stations within this distance from the route path. The value must be between 0 and 10 000 meters. If not specified, defaults to 1 000 meters. */\n maximum_distance_from_path?: Maybe<DistanceInput>;\n /** Filters stations by operator preference types. This filter depends exclusively on the preferences used for the route calculation. If not specified, stations from all preference types (ranked, unranked, avoided, excluded) are returned. */\n operator_preference?: Maybe<Array<OperatorPreferenceType>>;\n};\n\nexport type RouteStationOperator = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Operator's preference status specifically for this route calculation. */\n preference_type: OperatorPreferenceType;\n};\n\nexport type RouteStationPreferences = {\n /** Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. */\n prefer_highway_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RouteStationPreferencesInput = {\n /** Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. This logic may require additional client-specific tuning. Please contact Chargetrip if the behavior seems suboptimal. */\n prefer_highway_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RouteStationWithAmenities = {\n /** ID of the station. */\n id: Scalars[\"ID\"];\n /** ID of the station provided by the station data source. */\n external_id?: Maybe<Scalars[\"ID\"]>;\n /** GeoJSON location of the station. */\n location: Point;\n /** Information about the station's operator. */\n operator: RouteStationOperator;\n /** Distance of the station to the closest point in the original route. */\n distance_from_path: Scalars[\"Float\"];\n /** List of up to 5 amenities matching the specified amenity type. Sorted by ascending distance from the station. */\n matching_amenities: Array<Amenity>;\n};\n\nexport type RouteStationWithAmenitiesdistance_from_pathArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteStationsAlong = {\n /** The ID of station. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Geojson location of a station. */\n location?: Maybe<Point>;\n /** Speed of a station. A station along a route can be either fast or turbo. */\n speed?: Maybe<StationSpeedType>;\n /** Status of a station. */\n status?: Maybe<ChargerStatus>;\n /** The station uses a preferred operator. */\n preferredOperator?: Maybe<Scalars[\"Boolean\"]>;\n /** Distance in meters between station and route path. */\n distance?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteStationsWithAmenitiesConnection = {\n /** Total number of stations with amenities of the specified type. */\n total_count: Scalars[\"Int\"];\n /** Information about the current page. */\n page_info: PageInfo;\n /** List of stations with amenities of the specified type. */\n nodes: Array<RouteStationWithAmenities>;\n};\n\nexport type RouteStationsWithAmenityFilter = {\n /** Station filters. */\n station?: Maybe<RouteStationFilter>;\n /** Amenity filters. */\n amenity?: Maybe<RouteAmenityFilter>;\n};\n\n/** The status of a route. The status can be pending, processing, done, not_found or error. */\nexport enum RouteStatus {\n /** Route is queued and pending processing. Temporary status. */\n PENDING = \"pending\",\n /** We are computing the route for your request. Temporary status. */\n PROCESSING = \"processing\",\n /** We finished computing the route, with a result. Final status. */\n DONE = \"done\",\n /** We finished computing the route, without any result. Final status. */\n NOT_FOUND = \"not_found\",\n /** An error occurred while computing the route. Final status. */\n ERROR = \"error\"\n}\n\nexport type RouteStep = {\n /** ID of a step. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Type of a step. */\n type?: Maybe<StepType>;\n /** Polyline containing encoded coordinates. */\n polyline?: Maybe<Scalars[\"String\"]>;\n /** Distance from the start to the end of a step, in meters. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Total drive time from the start to the end of a step, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Total energy used in a step in kWh. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteSteppolylineArgs = {\n decimals?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Tags of a route. */\nexport enum RouteTagType {\n ROAD = \"road\",\n HIGHWAY = \"highway\",\n TOLL = \"toll\",\n FERRY = \"ferry\",\n WALKING = \"walking\",\n CROSSBORDER = \"crossborder\"\n}\n\n/** Specifies a temporal window to search for stations with matching amenity types. Defined by a center from the journey origin and a surrounding time margin. */\nexport type RouteTimeWindow = {\n /** Center point of the search, expressed as the travel time, in seconds, from the journey's origin. */\n center: Scalars[\"Int\"];\n /** Duration in seconds to extend the search on either side of the 'center'. Maximum allowed value is 2700 (45 minutes). If not specified, defaults to 900 seconds (15 minutes). */\n margin?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Types of route features that can be avoided in truck routing. */\nexport enum RouteTruckAvoid {\n TOLL_ROAD = \"toll_road\",\n FERRY = \"ferry\"\n}\n\nexport type RouteTruckOriginFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Additional location and vehicle properties can be specified. */\n properties?: Maybe<RouteTruckOriginProperties>;\n};\n\nexport type RouteTruckOriginFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Additional location and vehicle properties can be specified. */\n properties?: Maybe<RouteTruckOriginPropertiesInput>;\n};\n\nexport type RouteTruckOriginProperties = {\n /** Data about the origin location. */\n location?: Maybe<RouteTruckPropertiesLocation>;\n /** Vehicle configuration at this point. Properties defined here are persistent and will be applied to all subsequent via points in the route unless explicitly overridden at a specific point. If not specified, assumes one occupant, with 80kg of mass and no trailers added */\n vehicle?: Maybe<RouteTruckPropertiesVehicle>;\n};\n\nexport type RouteTruckOriginPropertiesInput = {\n /** Data about the origin location. */\n location?: Maybe<RouteTruckPropertiesLocationInput>;\n /** Vehicle configuration at this point. Properties defined here are persistent and will be applied to all subsequent via points in the route unless explicitly overridden at a specific point. If not specified, assumes one occupant, with 80kg of mass and no trailers added */\n vehicle?: Maybe<RouteTruckPropertiesVehicleInput>;\n};\n\nexport type RouteTruckPropertiesLocation = {\n /** Name override for the choosen location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RouteTruckPropertiesLocationInput = {\n /** Name override for the choosen location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RouteTruckPropertiesVehicle = {\n /** Number of occupants in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Combined weight of the all occupants. Defaults to 80kg if not specified. */\n total_occupant_weight?: Maybe<TotalOccupantWeight>;\n /** Total weight of all cargo in the vehicle, including the cargo in any attached trailers. */\n total_cargo_weight?: Maybe<TotalCargoWeight>;\n /** The number of axles of the main vehicle (e.g., rigid truck or tractor unit) in contact with the road. Excludes semi-trailer axles, those should be provided in trailer object. If not specified, it assumes main vehicle's all axles (liftable and rigid) are in use. */\n axles_in_use?: Maybe<Scalars[\"Int\"]>;\n /** Configuration and dimensions for attached trailers. Required when the choosen vehicle is tractor unit. If not specified, no trailer configuration is set . */\n trailer?: Maybe<RouteTruckVehicleTrailer>;\n};\n\nexport type RouteTruckPropertiesVehicleInput = {\n /** Number of occupants in the vehicle. Defaults to 1 if not specified. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Combined weight of the all occupants. Defaults to 80kg if not specified. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Total weight of all cargo in the vehicle, including the cargo in any attached trailers. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n /** The number of axles of the main vehicle (e.g., rigid truck or tractor unit) in contact with the road. Excludes semi-trailer axles, those should be provided in trailer object. If not specified, it assumes main vehicle's all axles (liftable and rigid) are in use. */\n axles_in_use?: Maybe<Scalars[\"Int\"]>;\n /** Configuration and dimensions for attached trailers. Required when the choosen vehicle is tractor unit. If not specified, no trailer configuration is set . */\n trailer?: Maybe<RouteTruckVehicleTrailerInput>;\n};\n\nexport type RouteTruckVehicle = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery: RouteVehicleBattery;\n /** Charging configuration. */\n charging: RouteVehicleCharging;\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption: AuxiliaryConsumption;\n /** Flag indicating if climate control is on. */\n climate: Scalars[\"Boolean\"];\n /** Vehicle Heat Pump configuration. */\n heat_pump: HeatPumpMode;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin: RouteVehicleCabin;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure: TirePressure;\n};\n\nexport type RouteTruckVehicleInput = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery?: Maybe<RouteVehicleBatteryInput>;\n /** Charging configuration. */\n charging?: Maybe<RouteVehicleChargingInput>;\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;\n /** Flag indicating if climate control is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin?: Maybe<RouteVehicleCabinInput>;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure?: Maybe<TirePressureInput>;\n};\n\nexport type RouteTruckVehicleTrailer = {\n /** Number of trailers. */\n count: Scalars[\"Int\"];\n /** Number of axles of all attached trailers in contact with the road. This value does not include the main vehicle/tractor unit axles. Will be combined with the main vehicle's known number of axles. */\n axles_in_use: Scalars[\"Int\"];\n /** Total unladen (empty) weight of all attached trailers. Will be combined with the main vehicle's known unladen weight. */\n unladen_weight: Scalars[\"Float\"];\n /** Total physical dimensions of the vehicle combination of the main vehicle and trailers. */\n combined_vehicle_dimensions: TruckTrailerCombinedDimensions;\n};\n\nexport type RouteTruckVehicleTrailerunladen_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteTruckVehicleTrailerInput = {\n /** Number of trailers. */\n count: Scalars[\"Int\"];\n /** Number of axles of all attached trailers in contact with the road. This value does not include the main vehicle/tractor unit axles. Will be combined with the main vehicle's known number of axles. */\n axles_in_use: Scalars[\"Int\"];\n /** Total unladen (empty) weight of all attached trailers. Will be combined with the main vehicle's known unladen weight. */\n unladen_weight: WeightInput;\n /** Total physical dimensions of the vehicle combination of the main vehicle and trailers. */\n combined_vehicle_dimensions: TruckTrailerCombinedDimensionsInput;\n};\n\nexport type RouteTruckViaFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<Point>;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteTruckViaProperties>;\n};\n\nexport type RouteTruckViaFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<PointInput>;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteTruckViaPropertiesInput>;\n};\n\nexport type RouteTruckViaProperties = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocation>;\n /** Vehicle configuration at this point. Properties defined here override previous settings and persist for all subsequent segments of the route until changed again. If not specified, the vehicle state from the previous point remains in effect. */\n vehicle?: Maybe<RouteTruckPropertiesVehicle>;\n /** Station data of the via point. */\n station?: Maybe<RoutePropertiesStation>;\n};\n\nexport type RouteTruckViaPropertiesInput = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocationInput>;\n /** Vehicle configuration at this point. Properties defined here override previous settings and persist for all subsequent segments of the route until changed again. If not specified, the vehicle state from the previous point remains in effect. */\n vehicle?: Maybe<RouteTruckPropertiesVehicleInput>;\n /** Station data of the via point. */\n station?: Maybe<RoutePropertiesStationInput>;\n};\n\nexport type RouteVehicle = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery: RouteVehicleBattery;\n /** Charging configuration. */\n charging: RouteVehicleCharging;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure: TirePressure;\n /** Value of the vehicle's odometer. */\n odometer?: Maybe<Odometer>;\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption: AuxiliaryConsumption;\n /** Flag indicating if climate control is on. */\n climate: Scalars[\"Boolean\"];\n /** Vehicle Heat Pump configuration. */\n heat_pump: HeatPumpMode;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin: RouteVehicleCabin;\n /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Value of the outside temperature. */\n outside_temperature?: Maybe<OutsideTemperature>;\n /** Flag indicating if a vehicle is in park, neutral, or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Value of the vehicle's speed. */\n vehicle_speed?: Maybe<VehicleSpeed>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteVehicleBattery = {\n /** Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default. */\n capacity: StateOfCharge;\n /** Current amount of energy in a battery. If not provided, battery is assumed to be fully charged. */\n state_of_charge: StateOfCharge;\n /** Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default. */\n final_state_of_charge: StateOfCharge;\n /** Temperature of the battery. */\n temperature?: Maybe<Temperature>;\n /** Battery current in ampere. */\n current?: Maybe<Scalars[\"Float\"]>;\n /** Battery voltage in volts. */\n voltage?: Maybe<Scalars[\"Float\"]>;\n /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Flag indicating if the vehicle is charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** EV battery specific configuration for a create route mutation. */\nexport type RouteVehicleBatteryInput = {\n /** Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default. */\n capacity?: Maybe<StateOfChargeInput>;\n /** Current amount of energy in a battery. If not provided, battery is assumed to be fully charged. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default. */\n final_state_of_charge?: Maybe<StateOfChargeInput>;\n /** Battery temperature. */\n temperature?: Maybe<TemperatureInput>;\n /** Battery current in ampere. */\n current?: Maybe<Scalars[\"Float\"]>;\n /** Battery voltage in volts. */\n voltage?: Maybe<Scalars[\"Float\"]>;\n /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Flag indicating if the vehicle is charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RouteVehicleCabin = {\n /** Flag indicating if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned: Scalars[\"Boolean\"];\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature: Temperature;\n};\n\nexport type RouteVehicleCabinInput = {\n /** Flag indicating if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature?: Maybe<TemperatureInput>;\n};\n\nexport type RouteVehicleCharging = {\n /** Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge. */\n mode: ChargeMode;\n /** Minimum desired power of chargers, in kWh. */\n minimum_power: Scalars[\"Float\"];\n /** Minimum remaining state of charge at charging stops, expressed as a percentage. The value must be between 0 and 60. If not provided, the project configuration value is used. */\n risk_margin: Scalars[\"Int\"];\n /** Supported connectors. If not specified, it defaults to the vehicle's connectors. */\n connectors: Array<RouteVehicleChargingConnector>;\n /** Supported adapters. If not specified, adapters will not be considered. */\n adapters: Array<RouteVehicleChargingConnector>;\n /** Maximum state of charge (%) the vehicle can reach at any charging stop. If not specified defaults to 80%. */\n maximum_state_of_charge: Scalars[\"Int\"];\n};\n\nexport type RouteVehicleChargingConnector = {\n /** Type of the plug. */\n standard: ConnectorType;\n /** Maximum charging speed for this plug. */\n maximum_charge_speed: ChargeSpeed;\n};\n\nexport type RouteVehicleChargingConnectorInput = {\n /** Plug type. */\n standard: ConnectorType;\n /** Maximum charging speed for this plug. */\n maximum_charge_speed: ChargeSpeedInput;\n};\n\nexport type RouteVehicleChargingInput = {\n /** Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge. */\n mode?: Maybe<ChargeMode>;\n /** Minimum desired power of chargers, in kWh. */\n minimum_power?: Maybe<Scalars[\"Float\"]>;\n /** Minimum remaining state of charge at charging stops, expressed as a percentage. The value must be between 0 and 60. If not provided, the project configuration value is used. */\n risk_margin?: Maybe<Scalars[\"Int\"]>;\n /** Supported connectors. If not specified, it defaults to the vehicle's connectors. */\n connectors?: Maybe<Array<RouteVehicleChargingConnectorInput>>;\n /** Supported adapters. If not specified, adapters will not be considered. */\n adapters?: Maybe<Array<RouteVehicleChargingConnectorInput>>;\n /** Maximum state of charge (%) the vehicle can reach at any charging stop. The value must be between 80 and 100. */\n maximum_state_of_charge?: Scalars[\"Int\"];\n};\n\nexport type RouteVehicleEmissions = {\n /** Total co2e emissions. */\n total: Scalars[\"Float\"];\n /** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions. */\n operational: RouteVehicleOperationalEmissions;\n /** End of life emissions. */\n end_of_life: RouteEndOfLifeEmissions;\n /** Emissions info for the legs in the same order as in the route. */\n legs: Array<RouteVehicleLegEmissions>;\n};\n\nexport type RouteVehicleEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Vehicle specific input for a create route mutation. */\nexport type RouteVehicleInput = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery?: Maybe<RouteVehicleBatteryInput>;\n /** Charging configuration. */\n charging?: Maybe<RouteVehicleChargingInput>;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure?: Maybe<TirePressureInput>;\n /** Odometer (mileage) reading. */\n odometer?: Maybe<OdometerInput>;\n /** Average auxiliary power consumption. */\n auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;\n /** Flag indicating if climate control is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin?: Maybe<RouteVehicleCabinInput>;\n /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Outside temperature. */\n outside_temperature?: Maybe<OutsideTemperatureInput>;\n /** Flag indicating if a vehicle is in park, neutral, or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle speed. */\n vehicle_speed?: Maybe<VehicleSpeedInput>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteVehicleLegEmissions = {\n /** Total co2e emissions for the leg. */\n total: Scalars[\"Float\"];\n /** Total leg co2e emissions from vehicle operational processes using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions for the leg. */\n operational: RouteVehicleLegOperationalEmissions;\n /** End of life emissions for the leg. */\n end_of_life: RouteEndOfLifeEmissions;\n};\n\nexport type RouteVehicleLegEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleLegEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleLegOperationalEmissions = {\n /** Total operational emissions for the leg. */\n total: Scalars[\"Float\"];\n /** Electricity emissions data for the leg. */\n electricity: RouteLegOperationalElectricityEmissions;\n /** Total road infrastructure emissions for the leg. */\n infrastructure: RouteOperationalInfrastructureEmissions;\n /** Total maintenance emissions for the leg. */\n maintenance: RouteOperationalMaintenanceEmissions;\n};\n\nexport type RouteVehicleLegOperationalEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleOperationalEmissions = {\n /** Total operational emissions. */\n total: Scalars[\"Float\"];\n /** Electricity emissions. */\n electricity: RouteOperationalElectricityEmissions;\n /** Road infrastructure emissions. */\n infrastructure: RouteOperationalInfrastructureEmissions;\n /** Maintenance emissions. */\n maintenance: RouteOperationalMaintenanceEmissions;\n};\n\nexport type RouteVehicleOperationalEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteViaFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<Point>;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<RouteViaProperties>;\n};\n\nexport type RouteViaFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<PointInput>;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<RouteViaPropertiesInput>;\n};\n\nexport type RouteViaProperties = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocation>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<RoutePropertiesVehicle>;\n /** Station data of the via point. */\n station?: Maybe<RoutePropertiesStation>;\n};\n\nexport type RouteViaPropertiesInput = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocationInput>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<RoutePropertiesVehicleInput>;\n /** Specifies a charging station at the via. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop. */\n station?: Maybe<RoutePropertiesStationInput>;\n};\n\nexport type RouteWarning = {\n /** The code of the warning. */\n code: RouteWarningCode;\n};\n\n/** Types of warnings that can be encountered in a route. */\nexport enum RouteWarningCode {\n /** Selected vehicle model is unavailable on one or more regions along the route. */\n EV_UNAVAILABLE_IN_REGION = \"ev_unavailable_in_region\",\n /** Route excludes charging stations as a hybrid vehicle does not require external charging. */\n HEV_NO_CHARGING_STATIONS = \"hev_no_charging_stations\",\n /** Route is calculated using only the battery range of the extended-range vehicle. */\n EREV_BATTERY_ONLY_RANGE = \"erev_battery_only_range\",\n /** Origin location cannot be reached by vehicle and requires a walking section to reach the point. */\n ORIGIN_NOT_VEHICLE_ACCESSIBLE = \"origin_not_vehicle_accessible\",\n /** Destination location cannot be reached by vehicle and requires a walking section to reach the point. */\n DESTINATION_NOT_VEHICLE_ACCESSIBLE = \"destination_not_vehicle_accessible\",\n /** Requested final state of charge cannot be achieved. */\n FINAL_SOC_NOT_POSSIBLE = \"final_soc_not_possible\",\n /** Set maximum speed is too low (below 50 km/h) and may result in an inefficient route. */\n LOW_SPEED = \"low_speed\",\n /** Operator preferences were ignored because they have not been configured for this project nor provided in the route create request. */\n OPERATOR_PREFERENCES_NOT_FOUND = \"operator_preferences_not_found\",\n /** Traffic data for this route is not available. */\n TRAFFIC_DATA_NOT_AVAILABLE = \"traffic_data_not_available\",\n /** Not possible to fetch weather data for a departure time further than 4 days in the future. Current weather used as alternative. */\n WEATHER_FORECAST_NOT_AVAILABLE = \"weather_forecast_not_available\",\n /** Not possible to fetch weather data for a departure time longer than 2 years ago. Current weather used as an alternative. */\n WEATHER_HISTORY_NOT_AVAILABLE = \"weather_history_not_available\",\n /** One or more preferred, excluded, or avoided operators have no active stations available and were ignored. */\n OPERATORS_IGNORED = \"operators_ignored\"\n}\n\nexport type RouteWeather = {\n /** Weather configuration applied to the route. */\n type: WeatherType;\n /** [BETA] Custom weather conditions applied to the route. Only present when 'type' is set to 'CUSTOM'. */\n custom?: Maybe<RouteWeatherCustomConditions>;\n};\n\nexport type RouteWeatherCustomConditions = {\n /** Average ambient temperature estimated along the route. */\n temperature: Temperature;\n /** Atmospheric pressure along the route. */\n air_pressure: AirPressure;\n /** Solar irradiance along the route. */\n solar_irradiance: SolarIrradiance;\n};\n\nexport type RouteWeatherCustomConditionsInput = {\n /** Average ambient temperature estimated along the route. */\n temperature: TemperatureInput;\n /** Atmospheric pressure along the route. */\n air_pressure: AirPressureInput;\n /** Solar irradiance along the route. */\n solar_irradiance: SolarIrradianceInput;\n};\n\nexport type RouteWeatherInput = {\n /** Weather configuration applied to the route. */\n type?: Maybe<WeatherType>;\n /** [BETA] Custom weather conditions to apply to the route. Required only when 'type' is 'CUSTOM'. Must be omitted for other weather types. */\n custom?: Maybe<RouteWeatherCustomConditionsInput>;\n};\n\n/** Scheduled charge stop along a route. */\nexport type ScheduledChargeStopInput = {\n /** List of amenity types. */\n types: Array<AmenityType>;\n /** Duration at the amenity, in seconds. The value should be between 900 and 86400. */\n duration: Scalars[\"Int\"];\n /** Maximum allowed offset from the stop_after value in seconds. */\n offset?: Maybe<Scalars[\"Int\"]>;\n /** Desired drive time for a scheduled stop after leaving the origin point, in seconds. */\n stop_after: Scalars[\"Int\"];\n /** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. */\n max_distance_from_station?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type SolarIrradiance = {\n /** Value of the solar irradiance. */\n value: Scalars[\"Float\"];\n /** Solar irradiance unit. */\n type: SolarIrradianceUnit;\n};\n\nexport type SolarIrradianceInput = {\n /** Value of the solar irradiance. */\n value: Scalars[\"Float\"];\n /** Solar irradiance unit. */\n type: SolarIrradianceUnit;\n};\n\nexport enum SolarIrradianceUnit {\n WATTS_PER_SQUARE_METER = \"watts_per_square_meter\"\n}\n\nexport enum SortDirection {\n ASCENDING = \"ascending\",\n DESCENDING = \"descending\"\n}\n\nexport enum SpeedUnit {\n /** Return the speed in kilometers per hour. */\n KILOMETERS_PER_HOUR = \"kilometers_per_hour\",\n /** Return the speed in miles per hour. */\n MILES_PER_HOUR = \"miles_per_hour\"\n}\n\nexport type StateOfCharge = {\n /** Value of the state of charge of the vehicle. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's state of charge. */\n type: StateOfChargeUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type StateOfChargeInput = {\n /** Value of the vehicle's state of charge. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's state of charge. */\n type: StateOfChargeUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum StateOfChargeUnit {\n /** Return the state of charge in kilometers. */\n KILOMETER = \"kilometer\",\n /** Return the state of charge in miles. */\n MILE = \"mile\",\n /** Return the state of charge in kilowatt hours. */\n KILOWATT_HOUR = \"kilowatt_hour\",\n /** Return the state of charge as a percentage. */\n PERCENTAGE = \"percentage\"\n}\n\n/** Station data which extends OCPI Location. */\nexport type Station = {\n /** Unique ID of a station. */\n id: Scalars[\"ID\"];\n /** ISO-3166 alpha-2 country code of a station. */\n country_code?: Maybe<Scalars[\"String\"]>;\n /** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). */\n party_id?: Maybe<Scalars[\"String\"]>;\n /**\n * Defines if a location may be published on a website or app etc.\n * When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.\n * When the same location has EVSEs that may be published and may not be published, two 'locations' should be created.\n */\n publish?: Maybe<Scalars[\"Boolean\"]>;\n /** Name of a charging station. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Street/block name and house number if available. */\n address?: Maybe<Scalars[\"String\"]>;\n /** City or town */\n city?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n postal_code?: Maybe<Scalars[\"String\"]>;\n /** State or province of a location, only to be used when relevant. */\n state?: Maybe<Scalars[\"String\"]>;\n /** ISO 3166-1 alpha-3 code for the country of this station. */\n country?: Maybe<Scalars[\"String\"]>;\n /** Coordinates of a location. */\n coordinates?: Maybe<OCPIGeoLocation>;\n /** Geographical location of related points relevant to a user. */\n related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;\n /** Type of parking at a charge point location. */\n parking_type?: Maybe<OCPIParkingType>;\n /** EVSEs that belong to a station. */\n evses?: Maybe<Array<Maybe<EVSE>>>;\n /** Human-readable directions on how to reach a station. */\n directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;\n /** Information about an operator. */\n operator?: Maybe<Operator>;\n /** Information about a suboperator if applicable. */\n suboperator?: Maybe<Operator>;\n /** Information about an owner if available. */\n owner?: Maybe<Operator>;\n /** Facilities a charging station belongs to. */\n facilities?: Maybe<Array<Maybe<OCPIFacility>>>;\n /** 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). */\n time_zone?: Maybe<Scalars[\"String\"]>;\n /** Times when an EVSEs at a location can be accessed for charging. */\n opening_times?: Maybe<OCPIHours>;\n /** 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. */\n charging_when_closed?: Maybe<Scalars[\"Boolean\"]>;\n /** Links to images related to a location such as photos or logos. */\n images?: Maybe<Array<Maybe<OCPIImage>>>;\n /** Details of the energy supplied at a location. */\n energy_mix?: Maybe<OCPIEnergyMix>;\n /** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n /** ID provided by a station data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** GeoJSON location of a charging station. */\n location?: Maybe<Point>;\n /** Elevation (altitude) level. */\n elevation?: Maybe<Scalars[\"Int\"]>;\n /** Groups of EVSEs by power and type. */\n chargers?: Maybe<Array<Maybe<Charger>>>;\n /** Amenities located at this location. */\n amenities?: Maybe<Scalars[\"JSON\"]>;\n /** Enriched information about the physical address of a station. */\n physical_address?: Maybe<Address>;\n /** Describes the heavy vehicle properties at the location. */\n heavy_vehicles_properties?: Maybe<StationHeavyVehiclesProperties>;\n /** Describes the heavy vehicle restrictions at the location. */\n heavy_vehicles_restrictions?: Maybe<StationHeavyVehiclesRestrictions>;\n /** Describes the vehicle restrictions at the location. */\n vehicle_restrictions?: Maybe<StationVehicleRestrictions>;\n /** Type of location where the charge point is located. For example, shop. */\n location_category?: Maybe<Scalars[\"String\"]>;\n /** Coordinates for the location's entrances in decimal degrees. If available, there can be more than one entrances to the location. */\n entrance_for_navigation?: Maybe<Array<OCPIAdditionalGeoLocation>>;\n /**\n * Optional object where you can store custom data you need in your application. This extends the current functionalities we offer.\n * @deprecated No longer used.\n */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** A flag that indicates if a station has real-time information about the availability of its connectors. */\n realtime?: Maybe<Scalars[\"Boolean\"]>;\n /** Connectors grouped by power. */\n power?: Maybe<Scalars[\"JSON\"]>;\n /** Predicted station occupancy. */\n predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;\n /** Charging speed for a station. */\n speed?: Maybe<StationSpeedType>;\n /** Global status for a station. */\n status?: Maybe<ChargerStatus>;\n /** 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. */\n custom_properties?: Maybe<StationCustomProperties>;\n /** Review of a station. */\n review?: Maybe<ReviewStats>;\n /** List of eMSP cards accepted at a charging station. */\n roaming?: Maybe<Array<Maybe<StationRoaming>>>;\n /** Phone number for assistance at a charging station. */\n support_phone_number?: Maybe<Scalars[\"String\"]>;\n /** Charging behavior of a station. */\n charging_behaviour?: Maybe<ChargingBehaviour>;\n /** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values. */\n reliability_score?: Maybe<Scalars[\"Int\"]>;\n /** Indicates the authentication and payment methods. */\n adhoc_authorisation_payment_method?: Maybe<\n Array<StationAdhocAuthorisationPaymentMethod>\n >;\n /** Type of access to the charging station. */\n access_type?: Maybe<AccessType>;\n /** [ALPHA] List of active boosting groups to which the station belongs. */\n boosting_group_ids?: Maybe<Array<Scalars[\"ID\"]>>;\n};\n\nexport enum StationAdhocAuthorisationPaymentMethod {\n /** Authentication by car through Plug and Charge. */\n AUTH_BY_CAR_PLUG_AND_CHARGE = \"AUTH_BY_CAR_PLUG_AND_CHARGE\",\n /** Apple Pay. */\n ONLINE_APPLE_PAY = \"ONLINE_APPLE_PAY\",\n /** Terminal in app. */\n TERMINAL_IN_APP = \"TERMINAL_IN_APP\",\n /** PayPal. */\n ONLINE_PAYPAL = \"ONLINE_PAYPAL\",\n /** Service Provider RFID Card. */\n SERVICE_PROVIDER_RFID_CARD = \"SERVICE_PROVIDER_RFID_CARD\",\n /** Terminal QR Code. */\n TERMINAL_QR_CODE = \"TERMINAL_QR_CODE\",\n /** Terminal Credit Card. */\n TERMINAL_CREDIT_CARD = \"TERMINAL_CREDIT_CARD\",\n /** Terminal Debit Card. */\n TERMINAL_DEBIT_CARD = \"TERMINAL_DEBIT_CARD\",\n /** Terminal SMS. */\n TERMINAL_SMS = \"TERMINAL_SMS\",\n /** Credit Card. */\n ONLINE_CREDIT_CARD = \"ONLINE_CREDIT_CARD\",\n /** Other. */\n OTHER_OTHER = \"OTHER_OTHER\",\n /** Terminal Contactless. */\n TERMINAL_CONTACTLESS = \"TERMINAL_CONTACTLESS\",\n /** Google Pay. */\n ONLINE_GOOGLE_PAY = \"ONLINE_GOOGLE_PAY\",\n /** Bank Payment. */\n ONLINE_BANK_PAYMENT = \"ONLINE_BANK_PAYMENT\",\n /** Authentication by car through Auto Charge. */\n AUTH_BY_CAR_AUTOCHARGE = \"AUTH_BY_CAR_AUTOCHARGE\"\n}\n\n/** Criteria to filter stations in the station around query. */\nexport type StationAroundFilter = {\n /** GeoJSON Point of the center of the around me circle. */\n location?: Maybe<PointInput>;\n /** Distance, in meters, to search around. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Powers in kW. */\n powers?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Amenities available near a station. */\n amenities?: Maybe<Array<Maybe<Amenities>>>;\n /** Station speed. */\n power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;\n /** Station socket or plug standards. */\n connectors?: Maybe<Array<Maybe<ConnectorType>>>;\n /** Flag that allows you to return only available stations. */\n available_only?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag to filter for stations operated by an operator present in the project's ranking list. */\n preferred_operator?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Query parameters to filter stations in the station around query. */\nexport type StationAroundQuery = {\n /** GeoJSON Point of the center of the around me circle. */\n location?: Maybe<PointInput>;\n /** Distance, in meters, to search around. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Power in kW. */\n power?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park. */\n amenities?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n};\n\nexport type StationCustomProperties = {\n /**\n * Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.\n * @deprecated In favor of `station.reliability_score`.\n */\n reliability_score?: Maybe<Scalars[\"Int\"]>;\n /** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\n oicp?: Maybe<OICPStationCustomProperties>;\n};\n\n/** Describes the heavy vehicle properties at the location. */\nexport type StationHeavyVehiclesProperties = {\n /** Indicates whether the location was constructed mainly for the purpose of heavy vehicles like trucks. */\n is_dedicated?: Maybe<Scalars[\"Boolean\"]>;\n /** List of facilities in the location. */\n facilities?: Maybe<Array<HeavyVehiclesFacility>>;\n /** Indicates whether the location is suitable for trucks with trailers. */\n is_trailer_accessible?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location is drive-through. */\n is_drive_through?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location allows charging of heavy vehicles transporting dangerous goods. */\n allows_dangerous_goods?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location is suitable for rigid heavy vehicles. */\n allows_rigid_vehicles?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location allows overnight charging of heavy vehicles. */\n allows_overnight_parking?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictions = {\n /** Maximum height of the heavy vehicle that is allowed to be parked at the charging station. */\n height?: Maybe<Scalars[\"Float\"]>;\n /** Maximum width of the heavy vehicle that is allowed to be parked at the charging station. */\n width?: Maybe<Scalars[\"Float\"]>;\n /** Maximum length of the heavy vehicle that is allowed to be parked at the charging station. */\n length?: Maybe<Scalars[\"Float\"]>;\n /** Maximum mass of the heavy vehicle that is allowed to be parked at the charging station. */\n mass?: Maybe<Scalars[\"Float\"]>;\n /** Allowed N (EU) types of heavy vehicles. */\n allowed_types_EU?: Maybe<Array<HeavyVehiclesEUType>>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionsheightArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionswidthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionslengthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionsmassArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\n/** Criteria to filter stations in the station list query. */\nexport type StationListFilter = {\n /** Powers in kW. */\n powers?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Amenities available near a station. */\n amenities?: Maybe<Array<Maybe<Amenities>>>;\n /** Station speed. */\n power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;\n /** Station socket or plug standards. */\n connectors?: Maybe<Array<Maybe<ConnectorType>>>;\n /** Flag that allows you to return only available stations. */\n available_only?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag to filter for stations operated by an operator present in the project's ranking list. */\n preferred_operator?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Query parameters to filter stations in the station list query. */\nexport type StationListQuery = {\n /** ID of the station. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station provided by the station data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** Exact name. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Station availability for each weekday and hour. */\nexport type StationPredictedAvailability = {\n /** Number of weekday from 1 (monday) to 7 (sunday). */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)). */\n prediction?: Maybe<Array<Maybe<Scalars[\"Int\"]>>>;\n};\n\n/** Station occupancy for each weekday and hour. */\nexport type StationPredictedOccupancy = {\n /** Number of weekday from 1 (monday) to 7 (sunday). */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied. */\n occupancy?: Maybe<Scalars[\"Int\"]>;\n /** Start of the period of the occupancy prediction (string of 'hh-mmZ' format). */\n period_begin?: Maybe<Scalars[\"String\"]>;\n /** End of the period of the occupancy prediction (string of 'hh-mmZ' format). */\n period_end?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type StationRoaming = {\n /** Unique id for a provider. It is created by Eco-Movement, and it is stable. */\n partner_id?: Maybe<Scalars[\"String\"]>;\n /**\n * Unique E-Mobility Account Identifier (eMA ID) for a provider.\n * It is created by Eco-Movement by combining the country code where the charging station is located, and the party id of the provider.\n * For example, NL-ECO. Note: A provider can have multiple eMA IDs.\n * For example, if a company named 'Example Company A' acquired 'Example Company B' and owns the charging stations of Example Company B,\n * then this attribute maps Example Company B's eMA IDs to Example Company A's eMA IDs. For example, ['NL-EXA', 'NL-EXB'].\n */\n ema_id?: Maybe<Array<Scalars[\"String\"]>>;\n /** Name of the EMSP provider. */\n emsp?: Maybe<Scalars[\"String\"]>;\n /** Name of the card accepted at a charging station. */\n card?: Maybe<Scalars[\"String\"]>;\n /** Link to native Android app for card accepted at a charging station. */\n android_app_link?: Maybe<Scalars[\"String\"]>;\n /** Link to native iOS app for card accepted at a charging station. */\n ios_app_link?: Maybe<Scalars[\"String\"]>;\n};\n\n/** The station speed type. */\nexport enum StationSpeedType {\n /** Slow charging (below 43 kW). */\n SLOW = \"slow\",\n /** Fast charging stations (above 43 kW and below 150 kW). */\n FAST = \"fast\",\n /** Ultra fast charging stations (above 150 kW). */\n TURBO = \"turbo\"\n}\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictions = {\n /** Maximum weight for a vehicle that is allowed at the location. */\n mass?: Maybe<Scalars[\"Float\"]>;\n /** Maximum width for a vehicle that is allowed at the location. */\n width?: Maybe<Scalars[\"Float\"]>;\n /** Maximum height for a vehicle that is allowed at the location. */\n height?: Maybe<Scalars[\"Float\"]>;\n /** Maximum length for a vehicle that is allowed at the location. */\n length?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionsmassArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionswidthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionsheightArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionslengthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Types of a route step. */\nexport enum StepType {\n /** This step is a road. */\n ROAD = \"road\",\n /** This step is a highway. */\n HIGHWAY = \"highway\",\n /** This step is a toll road. */\n TOLL = \"toll\",\n /** This step is a ferry. */\n FERRY = \"ferry\",\n /** This step is reachable by walking. */\n WALKING = \"walking\",\n /** This step is a crossborder. */\n CROSSBORDER = \"crossborder\"\n}\n\nexport type Subscription = {\n /**\n * Subscribe to a specific route to receive system event updates.\n * @deprecated In favor of `route`.\n */\n routeUpdatedById?: Maybe<Route>;\n /** Subscribe to a specific route to receive system event updates. */\n route: RouteResponse;\n /** [ALPHA] Subscribe to e-truck route to receive system event updates. */\n truckRoute: TruckRouteResponse;\n /** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates. */\n navigation?: Maybe<NavigationSubscription>;\n /** [BETA] Subscribe to a connected vehicle. */\n connectedVehicle?: Maybe<ConnectedVehicle>;\n /** Subscribe to an isoline in order to receive updates. */\n isoline?: Maybe<Isoline>;\n};\n\nexport type SubscriptionrouteUpdatedByIdArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionrouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptiontruckRouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionnavigationArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionconnectedVehicleArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionisolineArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type Telemetry = {\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption?: Maybe<Scalars[\"Float\"]>;\n /** Battery current in ampere. */\n battery_current?: Maybe<Scalars[\"Float\"]>;\n /** Value of the temperature of the battery. */\n battery_temperature?: Maybe<Scalars[\"Float\"]>;\n /** Battery voltage in volts. */\n battery_voltage?: Maybe<Scalars[\"Float\"]>;\n /** Is the vehicle currently charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n /** Value of the rate of charge of the battery. */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Value of the amount of battery charged. */\n charge_total?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current elevation. */\n elevation?: Maybe<Scalars[\"Float\"]>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n /** RPM of the motor. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Value of the vehicle's odometer. */\n odometer?: Maybe<Scalars[\"Float\"]>;\n /** Value of the outside temperature. */\n outside_temperature?: Maybe<Scalars[\"Float\"]>;\n /** Vehicle is in park, neutral or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Value of the positive or negative power. When negative the vehicle is charging. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Value of the state of charge of the vehicle. */\n state_of_charge?: Maybe<Scalars[\"Float\"]>;\n /** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear. */\n tire_pressure?: Maybe<Array<Scalars[\"Float\"]>>;\n /** Value of the vehicle speed. */\n vehicle_speed?: Maybe<Scalars[\"Float\"]>;\n /** Custom input fields can be added based on telemetry architecture. */\n custom?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport type Telemetryauxiliary_consumptionArgs = {\n unit?: Maybe<AuxiliaryConsumptionUnit>;\n};\n\nexport type Telemetrybattery_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type Telemetrycharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type Telemetrycharge_totalArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type Telemetrytotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type Telemetrytotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TelemetryelevationArgs = {\n unit?: Maybe<ElevationUnit>;\n};\n\nexport type TelemetryodometerArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type Telemetryoutside_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type TelemetrypowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type Telemetrystate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type Telemetrytire_pressureArgs = {\n unit?: Maybe<PressureUnit>;\n};\n\nexport type Telemetryvehicle_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport type TelemetryInput = {\n /** Average auxiliary power consumption. */\n auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;\n /** Battery current in ampere. */\n battery_current?: Maybe<Scalars[\"Float\"]>;\n /** Battery temperature. */\n battery_temperature?: Maybe<BatteryTemperatureInput>;\n /** Battery voltage in volts. */\n battery_voltage?: Maybe<Scalars[\"Float\"]>;\n /** Is the vehicle currently charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n /** Rate of charge. */\n charge_speed?: Maybe<ChargeSpeedInput>;\n /** Amount charged. */\n charge_total?: Maybe<ChargeTotalInput>;\n /** Cumulated weight of the occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n /** Current elevation. */\n elevation?: Maybe<ElevationInput>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n /** RPM of the motor. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Mileage or odometer reading. */\n odometer?: Maybe<OdometerInput>;\n /** Outside temperature. */\n outside_temperature?: Maybe<OutsideTempInput>;\n /** Vehicle is in park, neutral or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle power. */\n power?: Maybe<PowerInput>;\n /** Battery state of charge. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Average tire pressures of all wheels, starting from the front side right to left and to the rear. */\n tire_pressure?: Maybe<TirePressureInput>;\n /** Vehicle speed. */\n vehicle_speed?: Maybe<VehicleSpeedInput>;\n /** Custom input fields can be added based on telemetry architecture. */\n custom?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport enum TelemetryInputSource {\n /** Manually inputted value. */\n MANUAL = \"manual\",\n /** Value from the vehicle's telemetry. */\n TELEMETRY = \"telemetry\",\n /** Default value. */\n DEFAULT = \"default\"\n}\n\nexport type Temperature = {\n /** Value of the temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the temperature. */\n type: TemperatureUnit;\n};\n\nexport type TemperatureInput = {\n /** Value of the temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the temperature. */\n type: TemperatureUnit;\n};\n\nexport enum TemperatureUnit {\n /** Return the temperature in Celsius. */\n CELSIUS = \"Celsius\",\n /** Return the temperature in Fahrenheit. */\n FAHRENHEIT = \"Fahrenheit\"\n}\n\nexport type TirePressure = {\n /** Values for the tire pressure, ordered from front right to front left, then rear left to rear right. */\n value: Array<Scalars[\"Float\"]>;\n /** Preferred unit for the tire pressure. */\n type: PressureUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type TirePressureInput = {\n /** Values for the tire pressure, ordered from front right to front left, then rear left to rear right. */\n value: Array<Scalars[\"Float\"]>;\n /** Preferred unit for the tire pressure. */\n type: PressureUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum TorqueUnit {\n /** Return the torque in newton meters. */\n NEWTON_METER = \"newton_meter\",\n /** Return the torque in foot pounds. */\n FOOT_POUND = \"foot_pound\"\n}\n\nexport type TotalCargoWeight = {\n /** Value of the current weight of the cargo. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the cargo. */\n type: WeightUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type TotalCargoWeightInput = {\n /** Value of the current weight of the cargo. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the cargo. */\n type: WeightUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type TotalOccupantWeight = {\n /** Value of the combined weight of the occupants. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the occupants. */\n type: WeightUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type TotalOccupantWeightInput = {\n /** Value of the combined weight of the occupants. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the occupants. */\n type: WeightUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type TrafficCongestionInterval = {\n /** Starting index of this interval in the polyline. */\n start_index: Scalars[\"Int\"];\n /** Ending index of this interval in the polyline. */\n end_index: Scalars[\"Int\"];\n /** Congestion level for this specific interval. */\n level: CongestionLevel;\n};\n\nexport type TruckRouteDetails = {\n /** ID of a route computation. */\n id: Scalars[\"ID\"];\n /** Total distance of a route. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route. */\n durations: RouteDetailsDurations;\n /** Total energy used for a route in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the start of a trip. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a trip. Note: The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */\n path_plot: Array<RouteDetailsPathSegment>;\n /** Details about elevation on a route. */\n elevation: RouteDetailsElevation;\n /** Money saving information. */\n savings?: Maybe<RouteDetailsSavings>;\n /** Legs of a route. */\n legs: Array<TruckRouteDetailsLeg>;\n /** Alternative stations along a route within a specified radius. Will only return stations if alternative_station_radius was specified in the createRoute mutation. */\n alternative_stations: Array<RouteDetailsAlternativeStation>;\n /** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Number of charging stops required for this route. */\n charges: Scalars[\"Int\"];\n};\n\nexport type TruckRouteDetailsdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type TruckRouteDetailsrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type TruckRouteDetailsrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type TruckRouteDetailspolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLeg = {\n /** Distance from the start to the end of a leg. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route leg. */\n durations: RouteDetailsDurations;\n /** Total energy used in a leg in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Origin point location. */\n origin: TruckRouteDetailsLegFeaturePoint;\n /** Destination point location. */\n destination: TruckRouteDetailsLegFeaturePoint;\n /** Range at the start of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Range after charging on the leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_after_charge?: Maybe<Scalars[\"Float\"]>;\n /** Type of a leg. */\n type: RouteDetailsLegType;\n /** Information about the station at the destination of a leg. */\n station?: Maybe<RouteDetailsLegStation>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Maneuvers of a leg - used to generate turn-by-turn instructions. */\n maneuvers: Array<RouteDetailsManeuver>;\n /** Road sections of a leg - divided by means of transportation. */\n sections: Array<TruckRouteDetailsLegSection>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegrange_after_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type TruckRouteDetailsLegFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties?: Maybe<TruckRouteDetailsLegFeatureProperties>;\n};\n\nexport type TruckRouteDetailsLegFeatureProperties = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n /** ID of the station. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Temperature at the location. */\n temperature?: Maybe<Scalars[\"Int\"]>;\n /** Air pressure at the location. */\n air_pressure?: Maybe<Scalars[\"Float\"]>;\n /** Solar irradiance at the location. */\n solar_irradiance?: Maybe<Scalars[\"Float\"]>;\n /** Duration, in seconds, of time spent at this location. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Value of the combined weight of the occupants. */\n total_occupant_weight: Scalars[\"Float\"];\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Number of trailers. */\n trailer_count: Scalars[\"Int\"];\n};\n\nexport type TruckRouteDetailsLegFeaturePropertiestemperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type TruckRouteDetailsLegFeaturePropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteDetailsLegFeaturePropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteDetailsLegSection = {\n /** Section type. */\n type: RouteDetailsLegSectionType;\n /** Origin point. */\n origin: TruckRouteDetailsLegSectionFeaturePoint;\n /** Destination point. */\n destination: TruckRouteDetailsLegSectionFeaturePoint;\n /** Aggregation of tags over the current section. */\n tags: Array<RouteDetailsTag>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Distance from the start to the end of a section. */\n distance: Scalars[\"Float\"];\n /** Total duration of a section, in seconds. The value will be 0 for walking sections. */\n duration: Scalars[\"Float\"];\n /** Total energy used in a section in kilowatt-hours. The value will be 0 for walking sections. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type TruckRouteDetailsLegSectionpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type TruckRouteDetailsLegSectiondistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties: TruckRouteDetailsLegSectionFeaturePointProperties;\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePointProperties = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Value of the combined weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Number of trailers. */\n trailer_count: Scalars[\"Int\"];\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePointPropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePointPropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteResponse = {\n /** ID of a route calculation. */\n id: Scalars[\"ID\"];\n /** Status of a route. */\n status: RouteStatus;\n /** Recommended route. */\n recommended?: Maybe<TruckRouteDetails>;\n /** Meta data for a route. */\n meta: RouteMetadata;\n /** Route request. */\n request_input: CreateTruckRoute;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensions = {\n /** Maximum height of the combination trailer and main vehicle combination (ground to highest vehicle point). */\n height: Scalars[\"Float\"];\n /** Maximum width of the trailers and main vehicle combination. */\n width: Scalars[\"Float\"];\n /** Total length of the trailers and main vehicle combination (bumper to bumper). */\n length: Scalars[\"Float\"];\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionsheightArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionswidthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionslengthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionsInput = {\n /** Maximum height of the combination trailer and main vehicle combination (ground to highest vehicle point). */\n height: DimensionsInput;\n /** Maximum width of the trailers and main vehicle combination. */\n width: DimensionsInput;\n /** Total length of the trailers and main vehicle combination (bumper to bumper). */\n length: DimensionsInput;\n};\n\nexport enum TurningCircleUnit {\n /** Return the turning circle in meters. */\n METER = \"meter\",\n /** Return the turning circle in feet. */\n FOOT = \"foot\"\n}\n\nexport type UpdateConnectedVehicleInput = {\n /** Id from the connected vehicle */\n id: Scalars[\"ID\"];\n /** New label for a connected vehicle */\n label?: Maybe<Scalars[\"PlainString\"]>;\n};\n\n/** Output of a vehicle query. */\nexport type Vehicle = {\n /** Vehicles unique ID. */\n id: Scalars[\"ID\"];\n /** Naming of the vehicle. */\n naming: VehicleNaming;\n /** Drivetrain of the vehicle. */\n drivetrain: VehicleDrivetrain;\n /** Available connectors for the vehicle. Please note that for HEVs this will always be an empty array. */\n connectors: Array<VehicleConnector>;\n /** Adapters for the connectors of the vehicle. Please note that for HEVs this will always be an empty array. */\n adapters: Array<VehicleConnector>;\n /** Battery of the vehicle. */\n battery: VehicleBattery;\n /** Body of the vehicle. */\n body: VehicleBody;\n /** Availability of the vehicle. */\n availability: VehicleAvailability;\n /** Performance of the vehicle. */\n performance?: Maybe<VehiclePerformance>;\n /** Range of the vehicle. */\n range: VehicleRange;\n /** Media of the vehicle. */\n media: VehicleMedia;\n /** Routing of the vehicle. */\n routing: VehicleRouting;\n /** Information about vehicle connectivity. */\n connect: Connect;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region: Array<VehicleRegion>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose: VehiclePurpose;\n /** Type of vehicle. */\n type: VehicleType;\n /** Details about Heat Pump. */\n heat_pump?: Maybe<VehicleHeatPump>;\n};\n\nexport type VehicleAvailability = {\n /** Availability of the vehicle. */\n status: VehicleAvailabilityStatus;\n};\n\n/** Availability status of a vehicle. */\nexport enum VehicleAvailabilityStatus {\n /** Vehicle no longer for sale in any market / region. */\n NO_LONGER_AVAILABLE = \"no_longer_available\",\n /** Vehicle currently for sale in at least one market / region. */\n AVAILABLE = \"available\",\n /** Vehicle expected in market from Date_From (estimated), pre-order open. */\n RELEASE_DATE_ANNOUNCED_PREORDERABLE = \"release_date_announced_preorderable\",\n /** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open. */\n RELEASE_DATE_ANNOUNCED = \"release_date_announced\",\n /** Concept vehicle, nearing production and/or confirmed, pre-order open. */\n CONCEPT_VEHICLE_PREORDERABLE = \"concept_vehicle_preorderable\",\n /** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open. */\n CONCEPT_VEHICLE = \"concept_vehicle\",\n /** Concept vehicle, not close to production and/or unconfirmed, pre-order open. */\n CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = \"concept_vehicle_release_date_tba_preorderable\",\n /** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown. */\n CONCEPT_VEHICLE_RELEASE_DATE_TBA = \"concept_vehicle_release_date_tba\",\n /** Status uncertain, introduction date and/or pricing unclear. */\n UNCERTAIN = \"uncertain\"\n}\n\nexport type VehicleBattery = {\n /** Full battery capacity in kWh. */\n full_kwh: Scalars[\"Float\"];\n /** Usable battery capacity in kWh. */\n usable_kwh: Scalars[\"Float\"];\n /** Type of battery. */\n type?: Maybe<VehicleBatteryType>;\n};\n\n/** Battery field estimated. */\nexport enum VehicleBatteryFieldEstimations {\n /** Both of the battery kWh fields are estimations. */\n B = \"B\",\n /** full_kwh field is estimated. */\n F = \"F\",\n /** None of the battery kWh fields are estimations. */\n N = \"N\",\n /** usable_kwh field is estimated. */\n U = \"U\"\n}\n\nexport enum VehicleBatteryType {\n /** Lithium-Ion Battery. */\n LITHIUM_ION = \"lithium_ion\"\n}\n\nexport type VehicleBody = {\n /** Width with folded mirrors. */\n width: Scalars[\"Float\"];\n /** Height (average height for adjustable suspensions). */\n height: Scalars[\"Float\"];\n /** Weight (unladen). */\n weight: VehicleBodyWeight;\n /** Number of seats. */\n seats: Scalars[\"Int\"];\n};\n\nexport type VehicleBodywidthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehicleBodyheightArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehicleBodyWeight = {\n /** Minimum weight. */\n minimum?: Maybe<Scalars[\"Float\"]>;\n /** Nominal weight. */\n nominal?: Maybe<Scalars[\"Float\"]>;\n /** Maximal weight. */\n maximal?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehicleBodyWeightminimumArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehicleBodyWeightnominalArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehicleBodyWeightmaximalArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnector = {\n /** Connector type, known as connector standard in OCPI. */\n standard: ConnectorType;\n /** Usable electric power. */\n power: Scalars[\"Float\"];\n /** Maximum electric power. */\n max_electric_power: Scalars[\"Float\"];\n /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */\n time: Scalars[\"Int\"];\n /**\n * Charging speed.\n * @deprecated In favor of `charge_speed`.\n */\n speed: Scalars[\"Float\"];\n /** Charging speed. */\n charge_speed: Scalars[\"Float\"];\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectorpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectormax_electric_powerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectorspeedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectorcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\n/** The consumption of the vehicle. */\nexport type VehicleConsumptionInput = {\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<Scalars[\"Float\"]>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehicleData = {\n /** Battery data */\n battery?: Maybe<ConnectBattery>;\n /** Charge data */\n charge?: Maybe<ConnectCharge>;\n /** Location data */\n location?: Maybe<ConnectLocation>;\n /** Odometer data */\n odometer?: Maybe<ConnectOdometer>;\n};\n\nexport enum VehicleDataProvider {\n /** Internal data provider. */\n CHARGETRIP = \"chargetrip\",\n /** EV database data provider. */\n EVDATABASE = \"evdatabase\"\n}\n\nexport type VehicleDrivetrain = {\n /** Type of drivetrain. */\n type: VehicleDrivetrainType;\n};\n\n/** Drivetrain. */\nexport enum VehicleDrivetrainType {\n /** Battery Electric Vehicle. */\n BEV = \"BEV\",\n /** Extended Range Electric Vehicle. */\n EREV = \"EREV\",\n /** Hybrid Electric Vehicle. */\n HEV = \"HEV\",\n /** Plug-in Hybrid Electric Vehicle. */\n PHEV = \"PHEV\"\n}\n\n/** Fuel type. */\nexport enum VehicleFuel {\n /** ICE engine available. Uses diesel. */\n D = \"D\",\n /** Electricity only. Full electric vehicle. */\n E = \"E\",\n /** ICE engine available. Uses gasoline. */\n P = \"P\"\n}\n\nexport type VehicleHeatPump = {\n /** Indicates if a heat pump is available for a specific vehicle. */\n is_available?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates if a heat pump is standard equipment for a specific vehicle. */\n is_standard_equipment?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehicleImage = {\n /** Image id. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Image type. */\n type: VehicleImageType;\n /** Full path URL of a large image. */\n url: Scalars[\"String\"];\n /** Height of a large image in pixels. */\n height: Scalars[\"Int\"];\n /** Width of a large image in pixels. */\n width: Scalars[\"Int\"];\n /** Full path URL of a thumbnail image. */\n thumbnail_url: Scalars[\"String\"];\n /** Height of a thumbnail image in pixels. */\n thumbnail_height: Scalars[\"Int\"];\n /** Width of a thumbnail image in pixels. */\n thumbnail_width: Scalars[\"Int\"];\n};\n\n/** Available types of images which can be found for a vehicle. Each type has specific image sizes. */\nexport enum VehicleImageType {\n /** Images provided by a Vehicle Datasource. */\n PROVIDER = \"provider\",\n /** Full-sized image at 1536x864 px. */\n IMAGE = \"image\",\n /** Thumbnail of a full-sized image at 131x72 px. */\n IMAGE_THUMBNAIL = \"image_thumbnail\",\n /** Premium image. */\n IMAGE_PREMIUM = \"image_premium\",\n /** Thumbnail of a premium image. */\n PREMIUM_IMAGE_THUMBNAIL = \"premium_image_thumbnail\",\n /** Full-sized brand (make) logo at 768x432 px. */\n BRAND = \"brand\",\n /** Thumbnail of a full-sized brand (make) logo at 56x24 px. */\n BRAND_THUMBNAIL = \"brand_thumbnail\",\n /** Placeholder image at 1536x864 px. */\n PLACEHOLDER = \"placeholder\"\n}\n\n/** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system. */\nexport enum VehicleImageTypeUploadable {\n /** Freemium vehicle image. */\n IMAGE = \"image\",\n /** Premium vehicle image. */\n IMAGE_PREMIUM = \"image_premium\"\n}\n\n/** The output element of the vehicleList query. */\nexport type VehicleList = {\n /** Vehicles unique ID. */\n id: Scalars[\"ID\"];\n /** Naming of the vehicle. */\n naming: VehicleListNaming;\n /** Drivetrain of the vehicle. */\n drivetrain: VehicleDrivetrain;\n /** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */\n connectors: Array<VehicleConnector>;\n /** Adapters available for the vehicle. Please note that for HEVs this will always be an empty array. */\n adapters: Array<VehicleConnector>;\n /** Battery of the vehicle. */\n battery: VehicleListBattery;\n /** Body of the vehicle. */\n body: VehicleListBody;\n /** Availability of the vehicle. */\n availability: VehicleListAvailability;\n /** Range of the vehicle. */\n range: VehicleListRange;\n /** Media of the vehicle. */\n media: VehicleListMedia;\n /** Routing of the vehicle. */\n routing: VehicleListRouting;\n /** Information about vehicle connectivity. */\n connect: Connect;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region: Array<VehicleRegion>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose: VehiclePurpose;\n /** Type of vehicle. */\n type: VehicleType;\n};\n\nexport type VehicleListAvailability = {\n /** Availability of the vehicle. */\n status: VehicleAvailabilityStatus;\n};\n\nexport type VehicleListBattery = {\n /** Full battery capacity in kWh. */\n full_kwh: Scalars[\"Float\"];\n /** Usable battery capacity in kWh. */\n usable_kwh: Scalars[\"Float\"];\n /** Type of battery. */\n type?: Maybe<VehicleBatteryType>;\n};\n\nexport type VehicleListBody = {\n /** Number of seats in a vehicle. */\n seats: Scalars[\"Int\"];\n};\n\nexport type VehicleListFilter = {\n /** Availability of a vehicle. */\n availability?: Maybe<Array<VehicleAvailabilityStatus>>;\n /** Drivetrain type of a vehicle. */\n drivetrain?: Maybe<Array<VehicleDrivetrainType>>;\n /** Information about vehicle connectivity. */\n connect?: Maybe<ConnectFilter>;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region?: Maybe<Array<VehicleRegion>>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose?: Maybe<Array<VehiclePurpose>>;\n /** Type of vehicle. */\n type?: Maybe<Array<VehicleType>>;\n /** ID of the vehicle make. */\n make?: Maybe<Scalars[\"String\"]>;\n /** [BETA] Model of vehicle. */\n model?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehicleListMedia = {\n /** Featured image of the vehicle from a 45-degree angle. */\n image: VehicleImage;\n /**\n * Latest make logo of the vehicle.\n * @deprecated In favor of `make`.\n */\n brand: VehicleImage;\n /** Latest make logo of the vehicle. */\n make: VehicleImage;\n /** Latest video of the vehicle. */\n video?: Maybe<VehicleVideo>;\n};\n\nexport type VehicleListNaming = {\n /** Vehicle manufacturer name. */\n make: Scalars[\"String\"];\n /** Vehicle model name. */\n model: Scalars[\"String\"];\n /** Version, edition or submodel of the vehicle. */\n version?: Maybe<Scalars[\"String\"]>;\n /** Another submodel level of the vehicle. */\n edition?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */\n chargetrip_version: Scalars[\"String\"];\n};\n\nexport type VehicleListRange = {\n /**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n chargetrip_range: ChargetripRange;\n};\n\nexport type VehicleListRouting = {\n /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */\n fast_charging_support: Scalars[\"Boolean\"];\n};\n\n/** Vehicle make data. */\nexport type VehicleMake = {\n /** ID of the vehicle make. */\n id: Scalars[\"ID\"];\n /** Vehicle make name. */\n name: Scalars[\"String\"];\n /** Vehicle make image. */\n image: VehicleImage;\n /** Number of public and private unique models manufactured by the make. */\n model_count: Scalars[\"Int\"];\n};\n\n/** Vehicle makes response object. */\nexport type VehicleMakesConnection = {\n /** Total number of unique vehicle makes. */\n total_count: Scalars[\"Int\"];\n /** Information about the current page. */\n page_info: PageInfo;\n /** List of vehicle makes. */\n nodes: Array<VehicleMake>;\n};\n\n/** Filter vehicle make list result. */\nexport type VehicleMakesFilter = {\n /** Regions in which the Make has vehicles. */\n region?: Maybe<Array<VehicleRegion>>;\n /** Type of vehicle which the Make has vehicles. */\n type?: Maybe<Array<VehicleType>>;\n};\n\nexport type VehicleMedia = {\n /** Featured image of the vehicle from a 45-degree angle. */\n image: VehicleImage;\n /**\n * Latest make logo.\n * @deprecated In favor of `make`.\n */\n brand: VehicleImage;\n /** Latest make logo. */\n make: VehicleImage;\n /** All images of the vehicle. */\n image_list: Array<VehicleImage>;\n /** Latest video. */\n video?: Maybe<VehicleVideo>;\n /** All videos of the vehicle. */\n video_list?: Maybe<Array<VehicleVideo>>;\n};\n\n/** Mode (state) of the current production. */\nexport enum VehicleMode {\n /** Old vehicle that is no longer manufactured. */\n INDEX_ONLY = \"index_only\",\n /** Vehicle is in production and has been released. */\n PRODUCTION = \"production\",\n /** Future releases of a vehicle, a concept of the vehicle, specs may change over time. */\n CONCEPT = \"concept\"\n}\n\n/** Vehicle model data. */\nexport type VehicleModel = {\n /** Vehicle model name. */\n name: Scalars[\"String\"];\n /** Number of public and private vehicles associated to this model. */\n vehicle_count: Scalars[\"Int\"];\n};\n\n/** Vehicle models response object. */\nexport type VehicleModelsConnection = {\n /** Total number of unique vehicle models. */\n total_count: Scalars[\"Int\"];\n /** Information about the current page. */\n page_info: PageInfo;\n /** List of vehicle models. */\n nodes: Array<VehicleModel>;\n};\n\n/** Filter vehicle model list result. */\nexport type VehicleModelsFilter = {\n /** Vehicle make. */\n make: Scalars[\"ID\"];\n};\n\nexport type VehicleNaming = {\n /** Vehicle manufacturer name. */\n make: Scalars[\"String\"];\n /** Vehicle model name. */\n model: Scalars[\"String\"];\n /** Version, edition or submodel of the vehicle. */\n version?: Maybe<Scalars[\"String\"]>;\n /** Another submodel level of the vehicle. */\n edition?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */\n chargetrip_version: Scalars[\"String\"];\n};\n\nexport type VehiclePerformance = {\n /** Acceleration. */\n acceleration?: Maybe<Scalars[\"Float\"]>;\n /** Top speed of the vehicle. */\n top_speed?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePerformanceaccelerationArgs = {\n unit?: Maybe<AccelerationUnit>;\n};\n\nexport type VehiclePerformancetop_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport enum VehiclePlugAndChargeSupport {\n /** Plug and charge is available. */\n AVAILABLE = \"available\",\n /** Plug and charge is announced, but not yet available. */\n ANNOUNCED = \"announced\",\n /** Plug and charge is available in a limited context. */\n LIMITED = \"limited\",\n /** Plug and charge is not available. */\n NOT_AVAILABLE = \"not_available\"\n}\n\n/** The output element of the vehiclePremium query. */\nexport type VehiclePremium = {\n /** Vehicles unique ID. */\n id: Scalars[\"ID\"];\n /** Internal ID of the successor vehicle trim. */\n succesor_id?: Maybe<Scalars[\"String\"]>;\n /** Naming of the vehicle. */\n naming: VehiclePremiumNaming;\n /** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */\n connectors: Array<VehicleConnector>;\n /** Charge details. */\n charge: VehiclePremiumCharge;\n /** Fast charge details. */\n fast_charge: VehiclePremiumFastCharge;\n /** Adapters of connectors available for a connectors of the vehicle. Please note that for HEVs this will always be an empty array. */\n adapters: Array<VehicleConnector>;\n /** Battery of the vehicle. */\n battery: VehiclePremiumBattery;\n /** Body of the vehicle. */\n body: VehiclePremiumBody;\n /** Availability of the vehicle. */\n availability: VehiclePremiumAvailability;\n /** Starting price in the currency defined in the field argument. If not defined, it will return the starting price in the currency returned in the currency field. */\n pricing: VehiclePremiumPriceValueWithGrant;\n /** Drivetrain of the vehicle. */\n drivetrain: VehiclePremiumDrivetrain;\n /** Performance of the vehicle. */\n performance?: Maybe<VehiclePremiumPerformance>;\n /** Range of the vehicle. */\n range: VehiclePremiumRange;\n /** Efficiency of the vehicle. */\n efficiency: VehiclePremiumEfficiency;\n /** Safety of the vehicle. */\n safety?: Maybe<VehiclePremiumSafety>;\n /** Media of the vehicle. */\n media: VehiclePremiumMedia;\n /** Routing of the vehicle. */\n routing: VehiclePremiumRouting;\n /** Information about vehicle connectivity. */\n connect: Connect;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region: Array<VehicleRegion>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose: VehiclePurpose;\n /** Type of vehicle. */\n type: VehicleType;\n /** Details about Heat Pump. */\n heat_pump?: Maybe<VehicleHeatPump>;\n};\n\nexport type VehiclePremiumAvailability = {\n /** Availability of the vehicle. */\n status: VehicleAvailabilityStatus;\n /** Date of introduction, mm-yyyy. */\n date_from?: Maybe<Scalars[\"String\"]>;\n /** Indicates if date from field is estimated. */\n date_from_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Date last available, mm-yyyy. */\n date_to?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumBattery = {\n /** Usable battery capacity in kWh. */\n usable_kwh: Scalars[\"Float\"];\n /** Full battery capacity in kWh. */\n full_kwh: Scalars[\"Float\"];\n /** Indicates which battery fields are estimated. */\n estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;\n /** Battery thermal management system (active/passive, air/liquid). */\n thermal_management_system?: Maybe<Scalars[\"String\"]>;\n /** Duration of battery warranty in years. */\n warranty_period?: Maybe<Scalars[\"Float\"]>;\n /** Mileage of battery warranty in kilometers. */\n warranty_mileage?: Maybe<Scalars[\"Float\"]>;\n /** Chemistry of the battery. */\n chemistry?: Maybe<Scalars[\"String\"]>;\n /** Manufacturer of the battery. */\n manufacturer?: Maybe<Scalars[\"String\"]>;\n /** Number of battery modules. */\n modules?: Maybe<Scalars[\"Float\"]>;\n /** Number of cells in the battery pack, can include configuration (s = serial, p = parallel). */\n cells?: Maybe<Scalars[\"String\"]>;\n /** Weight of the battery pack. */\n weight?: Maybe<Scalars[\"Float\"]>;\n /** Nominal voltage of battery. */\n nominal_voltage?: Maybe<Scalars[\"Float\"]>;\n /** Type of battery. */\n type?: Maybe<VehicleBatteryType>;\n};\n\nexport type VehiclePremiumBatteryweightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBody = {\n /** Length. */\n length?: Maybe<Scalars[\"Float\"]>;\n /** Width with folded mirrors. */\n width: Scalars[\"Float\"];\n /** Width of vehicle including mirrors. */\n full_width?: Maybe<Scalars[\"Float\"]>;\n /** Height (average height for adjustable suspensions). */\n height: Scalars[\"Float\"];\n /** Indicates if length/width/height fields are estimations. */\n size_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Wheelbase. */\n wheelbase?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if wheelbase field is estimated. */\n wheelbase_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Ground clearance of a vehicle as specified by the OEM. */\n ground_clearance?: Maybe<Scalars[\"Float\"]>;\n /** Weight (unladen EU). */\n weight: VehicleBodyWeight;\n /** Maximum allowed vehicle weight with payload. */\n weight_gvwr?: Maybe<VehicleBodyWeight>;\n /** Maximum allowed vehicle and trailer weight with payload. */\n weight_gtw?: Maybe<VehicleBodyWeight>;\n /** Allowed payload weight. */\n weight_payload?: Maybe<VehicleBodyWeight>;\n /** Indicates if weight field is estimated. */\n weight_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum payload allowed for the vehicle. */\n weight_max_payload?: Maybe<Scalars[\"Float\"]>;\n /** Standard luggage capacity. */\n boot_capacity?: Maybe<Scalars[\"Float\"]>;\n /** Storage capacity of front trunk/under the hood (frunk). */\n boot_front_capacity?: Maybe<Scalars[\"Float\"]>;\n /** Maximum luggage capacity. */\n boot_capacity_max?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */\n tow_hitch_compatible?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum unbraked towing weight. */\n tow_weight_unbraked?: Maybe<Scalars[\"Float\"]>;\n /** Maximum braked towing weight. */\n tow_weight_braked?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if tow weight fields are estimations. */\n tow_weight_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation. */\n tow_weight_vertical_load?: Maybe<Scalars[\"Float\"]>;\n /** Maximum load on roof of the vehicle. */\n roof_load_max?: Maybe<Scalars[\"Float\"]>;\n /** Body type, listed in local naming convention where applicable. */\n body_type?: Maybe<Scalars[\"String\"]>;\n /** Segment, listed in local naming convention where applicable. */\n segment?: Maybe<Scalars[\"String\"]>;\n /** Number of seats. */\n seats: Scalars[\"Int\"];\n /** Indicates whether a vehicle has roof rails as a standard. */\n has_roofrails?: Maybe<Scalars[\"Boolean\"]>;\n /** Turning circle of the vehicle kerb-to-kerb. */\n turning_circle?: Maybe<Scalars[\"Float\"]>;\n /** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms). */\n vehicle_platform?: Maybe<Scalars[\"String\"]>;\n /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */\n vehicle_platform_is_dedicated?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumBodylengthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodywidthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyfull_widthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyheightArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodywheelbaseArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyground_clearanceArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyweight_max_payloadArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodyboot_capacityArgs = {\n unit?: Maybe<VolumeUnit>;\n};\n\nexport type VehiclePremiumBodyboot_front_capacityArgs = {\n unit?: Maybe<VolumeUnit>;\n};\n\nexport type VehiclePremiumBodyboot_capacity_maxArgs = {\n unit?: Maybe<VolumeUnit>;\n};\n\nexport type VehiclePremiumBodytow_weight_unbrakedArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodytow_weight_brakedArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodytow_weight_vertical_loadArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodyroof_load_maxArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodyturning_circleArgs = {\n unit?: Maybe<TurningCircleUnit>;\n};\n\nexport type VehiclePremiumCharge = {\n /** Information about the main connector. */\n plug?: Maybe<VehiclePremiumChargePlug>;\n /** Information about vehicles secondary onboard charger. */\n second_plug?: Maybe<VehiclePremiumChargeSecondPlug>;\n /** Information about the vehicle standard onboard charger. */\n standard?: Maybe<VehiclePremiumChargeStandardOBC>;\n /** Optional upgrade for the standard onboard charger when available. */\n option?: Maybe<VehiclePremiumChargeOptionOBC>;\n /** Alternative upgrade for the standard onboard charger when available. */\n alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;\n /** Vehicle-to-everything charge support. */\n vehicle_to_everything?: Maybe<VehicleToEverything>;\n};\n\nexport type VehiclePremiumChargeAlternativeOBC = {\n /** Maximum power OBC can accept to charge a battery (alternative OBC). */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases the OBC accepts to achieve maximum power (alternative OBC). */\n phases?: Maybe<Scalars[\"Int\"]>;\n /** Maximum current the OBC accepts per phase to achieve maximum power (alternative OBC). */\n phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (alternative OBC). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (alternative OBC). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Charging details for the alternative OBC at several charging points. */\n table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;\n};\n\nexport type VehiclePremiumChargeAlternativeOBCpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumChargeOBCTable = {\n /** Voltage between phase and neutral for this EVSE (phase voltage). */\n evse_phase_voltage?: Maybe<Scalars[\"Int\"]>;\n /** Current per phase for this EVSE (phase current). */\n evse_phase_amperage?: Maybe<Scalars[\"Int\"]>;\n /** Number of phases for this EVSE. */\n evse_phases?: Maybe<Scalars[\"Int\"]>;\n /** Voltage between phase and neutral used by standard OBC (phase voltage). */\n charge_phase_voltage?: Maybe<Scalars[\"Int\"]>;\n /** Current per phase used by standard OBC (phase current). */\n charge_phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases used by standard OBC. */\n charge_phases?: Maybe<Scalars[\"Int\"]>;\n /** Power used by standard OBC (before OBC losses). */\n charge_power?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (standard OBC with this EVSE). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumChargeOBCTablecharge_powerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeOBCTablecharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumChargeOptionOBC = {\n /** Maximum power OBC can accept to charge a battery (standard OBC). */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */\n phases?: Maybe<Scalars[\"Int\"]>;\n /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */\n phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (standard OBC). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (standard OBC). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Charging details for the standard OBC at several charging points. */\n table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;\n};\n\nexport type VehiclePremiumChargeOptionOBCpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeOptionOBCcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumChargePlug = {\n /** Type of charge port on vehicle. */\n value?: Maybe<ConnectorType>;\n /** Indicates if value is an estimate. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Location of charge port. */\n location?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumChargePower = {\n /** Maximum value. */\n max?: Maybe<Scalars[\"Float\"]>;\n /** Average value. */\n average?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumChargePowermaxArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargePoweraverageArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeSecondPlug = {\n /** Location of charge port. */\n location?: Maybe<Scalars[\"String\"]>;\n /** Indicates if second charge port is optional. */\n is_optional?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumChargeStandardOBC = {\n /** Maximum power OBC can accept to charge a battery (standard OBC). */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */\n phases?: Maybe<Scalars[\"Int\"]>;\n /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */\n phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (standard OBC). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (standard OBC). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if Charge_Standard fields are estimated. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Charging details for the standard OBC at several charging points. */\n table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;\n};\n\nexport type VehiclePremiumChargeStandardOBCpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeStandardOBCcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumDrivetrain = {\n /** Type of drivetrain. */\n type: VehicleDrivetrainType;\n /** Fuel type. */\n fuel?: Maybe<VehicleFuel>;\n /** Propulsion type. */\n propulsion?: Maybe<VehiclePropulsion>;\n /** Indicates if propulsion field is estimated. */\n propulsion_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum (combined) power output. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if power field is estimated. */\n power_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum (combine) power output. */\n power_hp?: Maybe<Scalars[\"Float\"]>;\n /** Maximum (combine) torque output. */\n torque?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if torque field is estimated. */\n torque_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumDrivetrainpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumDrivetrainpower_hpArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumDrivetraintorqueArgs = {\n unit?: Maybe<TorqueUnit>;\n};\n\nexport type VehiclePremiumEfficiency = {\n /** Rated efficiency in WLTP combined cycle. */\n wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;\n /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */\n wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;\n /** Rated efficiency in NEDC combined cycle. */\n nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;\n /** Vehicle efficiency based on provider range. */\n provider?: Maybe<VehiclePremiumEfficiencyProvider>;\n};\n\nexport type VehiclePremiumEfficiencyNEDC = {\n /** Rated efficiency in NEDC combined cycle. */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Rated efficiency in NEDC combined cycle presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in NEDC combined cycle (based on value). */\n vehicle?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent. */\n vehicle_fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated). */\n co2?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCvalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCvehicleArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCvehicle_fuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCco2Args = {\n unit?: Maybe<EmissionRateUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProvider = {\n /** Vehicle efficiency based on RealRange (usable battery/range). */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Vehicle efficiency based on RealRange presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<VehiclePremiumEfficiencyProviderValue>;\n};\n\nexport type VehiclePremiumEfficiencyProvidervalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValue = {\n /** Estimated value on highway or express roads. */\n highway?: Maybe<Scalars[\"Float\"]>;\n /** Estimated value on city roads. */\n city?: Maybe<Scalars[\"Float\"]>;\n /** Estimated combined value. */\n combined?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValuehighwayArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValuecityArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValuecombinedArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTP = {\n /** Rated efficiency in WLTP combined cycle. */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Rated efficiency in WLTP combined cycle presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP combined cycle (based on value). */\n vehicle?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent. */\n vehicle_fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated). */\n co2?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPvalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPvehicleArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPvehicle_fuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPco2Args = {\n unit?: Maybe<EmissionRateUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEH = {\n /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value). */\n vehicle?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent. */\n vehicle_fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated). */\n co2?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHvalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHvehicleArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHvehicle_fuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHco2Args = {\n unit?: Maybe<EmissionRateUnit>;\n};\n\nexport type VehiclePremiumFastCharge = {\n /** Details about the connector. */\n plug?: Maybe<VehiclePremiumChargePlug>;\n /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */\n power?: Maybe<VehiclePremiumChargePower>;\n /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */\n charge_time?: Maybe<Scalars[\"Float\"]>;\n /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if fast charge is optional in some markets/regions. */\n is_optional?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates what fields are estimated. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Charging details for fast charging. */\n table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;\n /** Indicates if autocharge is available. */\n has_autocharge?: Maybe<Scalars[\"Boolean\"]>;\n /** Status of Plug & Charge (PnC ISO15118) support for vehicle. */\n iso_15118_pnc_support?: Maybe<VehiclePlugAndChargeSupport>;\n /** Status of Plug & Charge (PnC ISO15118) -2 protocol support for vehicle. */\n iso_15118_pnc_support_2?: Maybe<VehiclePlugAndChargeSupport>;\n /** Status of Plug & Charge (PnC ISO15118) -20 protocol support for vehicle. */\n iso_15118_pnc_support_20?: Maybe<VehiclePlugAndChargeSupport>;\n /** Indicates if the fastcharge data is based on a real-world test by Fastned. */\n is_fastned_tested?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumFastChargecharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumFastChargeTable = {\n /** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC). */\n format?: Maybe<Scalars[\"String\"]>;\n /** Fast charge power. */\n power?: Maybe<VehiclePremiumChargePower>;\n /** Minutes needed to charge from 10% to 80% (optimal conditions). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed during fast charging from 10% to 80% (optimal conditions). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if maximum power during fast charging is limited by the vehicle. */\n is_limited?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates if average power during fast charging is limited by the vehicle. */\n average_is_limited?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumFastChargeTablecharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumMedia = {\n /** URL for more details. */\n provider_details_url?: Maybe<Scalars[\"String\"]>;\n /** Featured image of the vehicle from a 45-degree angle. */\n image: VehicleImage;\n /**\n * Latest make logo.\n * @deprecated In favor of `make`.\n */\n brand: VehicleImage;\n /** Latest make logo. */\n make: VehicleImage;\n /** All images of the vehicle. */\n image_list: Array<VehicleImage>;\n /** Latest video. */\n video?: Maybe<VehicleVideo>;\n /** All videos of the vehicle. */\n video_list?: Maybe<Array<VehicleVideo>>;\n /** URL of the OEM page for this vehicle. */\n oem_details_url?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumNaming = {\n /** Vehicle manufacturer name. */\n make: Scalars[\"String\"];\n /** Vehicle model name. */\n model: Scalars[\"String\"];\n /** Version, edition or submodel of the vehicle. */\n version?: Maybe<Scalars[\"String\"]>;\n /** Another submodel level of the vehicle. */\n edition?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years. */\n chargetrip_version: Scalars[\"String\"];\n /** Vehicle model length version. */\n length_version?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model height version. */\n height_version?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumPerformance = {\n /** Acceleration 0-100 km/h. */\n acceleration?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if acceleration field is estimated. */\n acceleration_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Top speed of the vehicle. */\n top_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if top_speed field is estimated. */\n top_speed_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumPerformanceaccelerationArgs = {\n unit?: Maybe<AccelerationUnit>;\n};\n\nexport type VehiclePremiumPerformancetop_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport type VehiclePremiumPrice = {\n /** Starting price for German market. */\n DE?: Maybe<VehiclePremiumPriceValueWithGrant>;\n /** Starting price for Dutch market. */\n NL?: Maybe<VehiclePremiumPriceValueWithGrant>;\n /** Starting price for British market. */\n GB?: Maybe<VehiclePremiumPriceValueWithGrant>;\n};\n\nexport type VehiclePremiumPriceValueWithGrant = {\n /** Starting price for local market expressed in the currency in the field currency. */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Currency in which the value without optional field conversion is expressed. */\n currency?: Maybe<CurrencyUnit>;\n /** Indicates if the starting price is based on an estimate. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Grant that is applied to the starting price. */\n grant_applied?: Maybe<Scalars[\"Int\"]>;\n /** Total delivery fees (be aware that this field does not include grant). */\n price_delivery?: Maybe<Scalars[\"Int\"]>;\n /** First registration fee (be aware that this field does not include grant). */\n price_first_registration_fee?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type VehiclePremiumPriceValueWithGrantvalueArgs = {\n unit?: Maybe<CurrencyUnit>;\n};\n\nexport type VehiclePremiumRange = {\n /** Rated range in WLTP combined cycle (NULL if not WLTP rated). */\n wltp?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if WLTP range is estimated (NULL if not WLTP rated). */\n wltp_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */\n wltp_teh?: Maybe<Scalars[\"Float\"]>;\n /** Rated range in NEDC combined cycle (NULL if not NEDC rated). */\n nedc?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if NEDC range is estimated (NULL if not NEDC rated). */\n nedc_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Index range. */\n provider?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if index range is estimated. */\n provider_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Worst conditions are based on -10°C and use of heating. */\n worst: VehiclePremiumRangeValue;\n /** Best conditions are based on 23°C and no use of A/C. */\n best: VehiclePremiumRangeValue;\n /**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n chargetrip_range: ChargetripRange;\n};\n\nexport type VehiclePremiumRangewltpArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangewltp_tehArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangenedcArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeproviderArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeValue = {\n /** Estimated value on highway or express roads. */\n highway: Scalars[\"Float\"];\n /** Estimated value on city roads. */\n city: Scalars[\"Float\"];\n /** Estimated combined value. */\n combined: Scalars[\"Float\"];\n};\n\nexport type VehiclePremiumRangeValuehighwayArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeValuecityArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeValuecombinedArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRouting = {\n /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */\n fast_charging_support: Scalars[\"Boolean\"];\n /** Drag coefficient. */\n drag_coefficient: Scalars[\"Float\"];\n /** Tire pressure recommended by manufacturer. */\n tire_pressure: Scalars[\"Float\"];\n /** Extra consumption model. */\n consumption?: Maybe<VehiclePremiumRoutingConsumption>;\n /** Amount of gasoline that an equivalent gasoline vehicle would consume. */\n fuel_consumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumRoutingtire_pressureArgs = {\n unit?: Maybe<PressureUnit>;\n};\n\nexport type VehiclePremiumRoutingfuel_consumptionArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumRoutingConsumption = {\n /** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc */\n auxiliary?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumRoutingConsumptionauxiliaryArgs = {\n unit?: Maybe<AuxiliaryConsumptionUnit>;\n};\n\nexport type VehiclePremiumSafety = {\n /** Number of seats equipped with ISOFIX. */\n isofix_seats?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP results. */\n euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;\n};\n\nexport type VehiclePremiumSafetyEuroNcap = {\n /** EuroNCAP rating (out of 5 stars). */\n rating?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP year of rating. */\n year?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of adult protection (out of 100%). */\n adult?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of child protection (out of 100%). */\n child?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of vulnerable road users (out of 100%). */\n vru?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of safety assists (out of 100%). */\n sa?: Maybe<Scalars[\"Int\"]>;\n /** Link to the EuroNCAP test report. */\n url?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Propulsion. */\nexport enum VehiclePropulsion {\n /** All-wheel drive vehicle. */\n AWD = \"AWD\",\n /** Front-wheel drive vehicle. */\n FRONT = \"Front\",\n /** Rear-wheel drive vehicle. */\n REAR = \"Rear\"\n}\n\n/** Status of a vehicle provider. */\nexport enum VehicleProviderStatus {\n /** Is imported from any of the data providers. */\n NEW = \"new\",\n /** Has been attached to core vehicle. */\n ATTACHED = \"attached\",\n /** Has been detached from a core vehicle. */\n DETACHED = \"detached\",\n /** Has been archived by database maintainer. */\n ARCHIVED = \"archived\"\n}\n\nexport enum VehiclePurpose {\n /** Vehicle intended for the transportation of passengers. */\n PASSENGER = \"passenger\",\n /** Vehicle intended for the transportation of cargo. */\n CARGO = \"cargo\",\n /** Vehicle intended for the transportation of everything except cargo or passengers. Eg: ambulances, agricultural vehicles, etcetera. */\n UTILITY = \"utility\"\n}\n\nexport type VehicleRange = {\n /** Index range. */\n provider?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if index range is estimated. */\n provider_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Worst conditions are based on -10°C and use of heating. */\n worst: VehicleRangeValue;\n /** Best conditions are based on 23°C and no use of A/C. */\n best: VehicleRangeValue;\n /**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n chargetrip_range: ChargetripRange;\n};\n\nexport type VehicleRangeproviderArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehicleRangeValue = {\n /** Estimated value on the highway or express roads. */\n highway: Scalars[\"Float\"];\n /** Estimated value on the cities road. */\n city: Scalars[\"Float\"];\n /** Estimated combined value. */\n combined: Scalars[\"Float\"];\n};\n\nexport type VehicleRangeValuehighwayArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehicleRangeValuecityArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehicleRangeValuecombinedArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport enum VehicleRegion {\n /** Africa. */\n AF = \"AF\",\n /** Asia. */\n AS = \"AS\",\n /** Europe. */\n EU = \"EU\",\n /** North America. */\n NA = \"NA\",\n /** Oceania. */\n OC = \"OC\",\n /** South America. */\n SA = \"SA\"\n}\n\nexport type VehicleRouting = {\n /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */\n fast_charging_support: Scalars[\"Boolean\"];\n};\n\nexport type VehicleSpeed = {\n /** Value of the vehicle speed. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's speed. */\n type: SpeedUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type VehicleSpeedInput = {\n /** Value of the vehicle's speed. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's speed. */\n type: SpeedUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type VehicleToEverything = {\n /** Information about Vehicle-to-Load. */\n vehicle_to_load?: Maybe<VehicleToEverythingLoad>;\n /** Information about Vehicle-to-Home. */\n vehicle_to_home?: Maybe<VehicleToEverythingHomeGrid>;\n /** Information about Vehicle-to-Grid. */\n vehicle_to_grid?: Maybe<VehicleToEverythingHomeGrid>;\n};\n\nexport type VehicleToEverythingHomeGrid = {\n /** Vehicle-to-Home/Grid AC power information. */\n ac?: Maybe<VehicleToEverythingPower>;\n /** Vehicle-to-Home/Grid DC power information */\n dc?: Maybe<VehicleToEverythingPower>;\n};\n\nexport type VehicleToEverythingLoad = {\n /** Vehicle-to-Load power information. */\n ac?: Maybe<VehicleToEverythingPower>;\n /** Details on interior ports available for V2L. */\n interior_ports?: Maybe<Scalars[\"String\"]>;\n /** Details on exterior ports available for V2L. */\n exterior_ports?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehicleToEverythingPower = {\n /** Indicates if this charging is supported. */\n is_supported?: Maybe<PowerSupported>;\n /** Maximum power output, in kilowatts. */\n maximum_power?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum VehicleType {\n /** 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. */\n MOTORCYCLE = \"motorcycle\",\n /** A motor vehicle with three or four wheels that is not a Motorcycle, Pickup, Van, Truck, or Utility vehicle and either has a top speed of less than 60kph or an unladen weight of less than 400kg. */\n MICROCAR = \"microcar\",\n /** A motor vehicle that does not have an enclosed cab, is not a microcar or utility vehicle, is capable of carrying eight or fewer people, and that has less than one third of its internal volume dedicated to cargo, living, or sleeping space in its default configuration. */\n CAR = \"car\",\n /** A motor vehicle that has an enclosed cab, is not a utility vehicle, and has a fixed, non-articulated, open-top back cargo bed that is enclosed on at least three sides. */\n PICKUP = \"pickup\",\n /**\n * A motor vehicle that does not have an enclosed cab, is not a utility vehicle, that fulfills exactly one of the following conditions:\n * 1) It is capable of carrying more than eight but less than twenty people.\n * 2) At least one third of its internal volume is dedicated to cargo space in its default configuration.\n * 3) It is the passenger variant of a vehicle that meets criterion 2.\n */\n VAN = \"van\",\n /** A motor vehicle that does not have an enclosed cab, is not a Utility vehicle, and is capable of carrying 20 or more people in its default configuration. */\n BUS = \"bus\",\n /** A motor vehicle that has an enclosed cab and is not a Pickup or Utility vehicle. */\n TRUCK = \"truck\",\n /**\n * A motor vehicle that fulfills at least one of the following conditions:\n * 1) It does not have wheels.\n * 2) It has some mode of locomotion other than wheels in its default configuration such as treads, skis, or floats.\n * 3) It is capable of air or water travel in its default configuration.\n * 4) It was manufactured primarily for some purpose other than transporting cargo or passengers.\n * 5) It does not conform to any of the criteria for the other vehicle categories.\n */\n UTILITY = \"utility\"\n}\n\nexport type VehicleVideo = {\n /** Video id. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Full path URL of a video. */\n url?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum VolumeUnit {\n /** Return the volume in liters. */\n LITER = \"liter\",\n /** Return the volume in cubic meters. */\n CUBIC_METER = \"cubic_meter\",\n /** Return the volume in cubic feet. */\n CUBIC_FOOT = \"cubic_foot\"\n}\n\n/** Type of weather conditions used in the route calculation. */\nexport enum WeatherType {\n /** Fixed seasonal preset representing typical summer weather conditions. Can't be used in combination with weather.custom. */\n SUMMER = \"summer\",\n /** Fixed seasonal preset representing typical winter weather conditions. Can't be used in combination with weather.custom. */\n WINTER = \"winter\",\n /** A dynamic preset that uses real weather data based on the route's departure time. Can't be used in combination with weather.custom. */\n ACTUAL = \"actual\",\n /** Must be used in combination with weather.custom object. */\n CUSTOM = \"custom\"\n}\n\nexport type WeightInput = {\n /** Preferred unit for the weight */\n type: WeightUnit;\n /** Value of weight */\n value: Scalars[\"Float\"];\n};\n\nexport enum WeightUnit {\n /** Return the weight in kilograms. */\n KILOGRAM = \"kilogram\",\n /** Return the weight in pounds. */\n POUND = \"pound\"\n}\n"],"mappings":"AAQA;AA0BA,WAAYA,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAOZ,WAAYC,UAAZ;AAMA;;WANYA,U;EAAAA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AA+CZ,WAAYC,wBAAZ;;WAAYA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AAyBZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAyBZ;AACA,WAAYC,SAAZ;AAeA;;WAfYA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAyHZ;AACA,WAAYC,WAAZ;AAeA;;WAfYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAgBZ,WAAYC,kCAAZ;;WAAYA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;GAAAA,kC,KAAAA,kC;;AAyCZ;AACA,WAAYC,wBAAZ;AAKA;;WALYA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AAMZ,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAgBZ,WAAYC,uBAAZ;AAIA;;WAJYA,uB;EAAAA,uB;GAAAA,uB,KAAAA,uB;;AAoBZ;AACA,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAyBZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAkCZ,WAAYC,aAAZ;AAWA;;WAXYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAuEZ,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAeZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AA0EZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAIZ,WAAYC,YAAZ;;WAAYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAiCZ,WAAYC,sBAAZ;AAWA;;WAXYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AA2GZ;AACA,WAAYC,kCAAZ;;WAAYA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;GAAAA,kC,KAAAA,kC;;AA8EZ;AACA,WAAYC,qCAAZ;AAWA;;WAXYA,qC;EAAAA,qC;EAAAA,qC;EAAAA,qC;EAAAA,qC;GAAAA,qC,KAAAA,qC;;AAYZ,WAAYC,yBAAZ;;WAAYA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;GAAAA,yB,KAAAA,yB;;AAiCZ;AACA,WAAYC,0CAAZ;AASA;;WATYA,0C;EAAAA,0C;EAAAA,0C;EAAAA,0C;GAAAA,0C,KAAAA,0C;;AAUZ,WAAYC,yCAAZ;AAOA;;WAPYA,yC;EAAAA,yC;EAAAA,yC;GAAAA,yC,KAAAA,yC;;AAQZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAqFZ,WAAYC,eAAZ;AAeA;;WAfYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AA+BZ;AACA,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAmYZ;AACA,WAAYC,QAAZ;AAsLA;;WAtLYA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;AAuLZ,WAAYC,YAAZ;AA4IA;;WA5IYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AA6IZ,WAAYC,SAAZ;;WAAYA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAUZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAyBZ,WAAYC,YAAZ;AAWA;;WAXYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAsEZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAOZ,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAOZ,WAAYC,YAAZ;;WAAYA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAoBZ;AACA,WAAYC,mBAAZ;AAMA;;WANYA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAsFZ;AACA,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AA0DZ,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAOZ,WAAYC,QAAZ;AAOA;;WAPYA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;AAaZ;AACA,WAAYC,YAAZ;AASA;;WATYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAUZ,WAAYC,mBAAZ;AAWA;;WAXYA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAYZ,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAmDZ,WAAYC,2BAAZ;;WAAYA,2B;EAAAA,2B;EAAAA,2B;GAAAA,2B,KAAAA,2B;;AA4CZ;AACA,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AA+DZ;AACA,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAyCZ;AACA,WAAYC,OAAZ;AAeA;;WAfYA,O;EAAAA,O;EAAAA,O;EAAAA,O;EAAAA,O;EAAAA,O;EAAAA,O;GAAAA,O,KAAAA,O;;AAuBZ;AACA,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AAkBZ,WAAYC,eAAZ;AAOA;;WAPYA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAiBZ;AACA,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AA6IZ,WAAYC,sBAAZ;;WAAYA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAOZ,WAAYC,oBAAZ;AASA;;WATYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AA0PZ;AACA,WAAYC,gBAAZ;AASA;;WATYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AA8DZ;AACA,WAAYC,uBAAZ;;WAAYA,uB;EAAAA,uB;EAAAA,uB;EAAAA,uB;GAAAA,uB,KAAAA,uB;;AA2DZ;AACA,WAAYC,cAAZ;AA6BA;;WA7BYA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AA8BZ,WAAYC,mBAAZ;AAOA;;WAPYA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAQZ,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAqFZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAsCZ;AACA,WAAYC,wBAAZ;AAmBA;;WAnBYA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AA2BZ;AACA,WAAYC,+BAAZ;AAOA;;WAPYA,+B;EAAAA,+B;EAAAA,+B;GAAAA,+B,KAAAA,+B;;AAeZ,WAAYC,YAAZ;AA2CA;;WA3CYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AA8EZ;AACA,WAAYC,iBAAZ;AAiBA;;WAjBYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAkBZ,WAAYC,sBAAZ;AAaA;;WAbYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAcZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAeZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAyCZ,WAAYC,8BAAZ;AAOA;;WAPYA,8B;EAAAA,8B;EAAAA,8B;GAAAA,8B,KAAAA,8B;;AAQZ,WAAYC,UAAZ;AAqBA;;WArBYA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AA8DZ,WAAYC,uBAAZ;;WAAYA,uB;EAAAA,uB;EAAAA,uB;EAAAA,uB;EAAAA,uB;GAAAA,uB,KAAAA,uB;;AAiDZ,WAAYC,cAAZ;AAaA;;WAbYA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AAcZ,WAAYC,iBAAZ;AAQA;;WARYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAgBZ;AACA,WAAYC,0BAAZ;AASA;;WATYA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAkCZ;AACA,WAAYC,kBAAZ;AAMA;;WANYA,kB;EAAAA,kB;EAAAA,kB;EAAAA,kB;GAAAA,kB,KAAAA,kB;;AAkBZ;AACA,WAAYC,sBAAZ;;WAAYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AA8FZ,WAAYC,sBAAZ;AAWA;;WAXYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAYZ,WAAYC,oBAAZ;AAMA;;WANYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AAiEZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAwCZ;AACA,WAAYC,SAAZ;AAIA;;WAJYA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAUZ;AACA,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAcZ,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AASZ,WAAYC,SAAZ;;WAAYA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAOZ,WAAYC,YAAZ;;WAAYA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAgCZ,WAAYC,sBAAZ;;WAAYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAisBZ;AACA,WAAYC,oBAAZ;;WAAYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AA2BZ;AACA,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAgSZ;AACA,WAAYC,2BAAZ;;WAAYA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;GAAAA,2B,KAAAA,2B;;AAuFZ;AACA,WAAYC,0BAAZ;;WAAYA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAoBZ;AACA,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAoBZ;AACA,WAAYC,0BAAZ;;WAAYA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAyHZ;AACA,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAkCZ,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAiLZ;AACA,WAAYC,oBAAZ;;WAAYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AA8PZ;AACA,WAAYC,kCAAZ;;WAAYA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;GAAAA,kC,KAAAA,kC;;AAqLZ;AACA,WAAYC,4CAAZ;;WAAYA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;GAAAA,4C,KAAAA,4C;;AA0CZ;AACA,WAAYC,iCAAZ;;WAAYA,iC;EAAAA,iC;EAAAA,iC;EAAAA,iC;EAAAA,iC;GAAAA,iC,KAAAA,iC;;AA8DZ;AACA,WAAYC,wBAAZ;;WAAYA,wB;EAAAA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AAuLZ;AACA,WAAYC,kBAAZ;;WAAYA,kB;EAAAA,kB;EAAAA,kB;EAAAA,kB;GAAAA,kB,KAAAA,kB;;AAyKZ;AACA,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAmFZ;AACA,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAgCZ;AACA,WAAYC,YAAZ;AASA;;WATYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAiBZ;AACA,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AA4cZ;AACA,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAuFZ,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAIZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAKZ,WAAYC,SAAZ;;WAAYA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAyBZ,WAAYC,iBAAZ;AAWA;;WAXYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AA8HZ,WAAYC,sCAAZ;AAiCA;;WAjCYA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;GAAAA,sC,KAAAA,sC;;AAkMZ;AACA,WAAYC,gBAAZ;AASA;;WATYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAyCZ;AACA,WAAYC,QAAZ;;WAAYA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;AAuMZ,WAAYC,oBAAZ;;WAAYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AAuBZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAyBZ,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAqTZ,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAyDZ;AACA,WAAYC,yBAAZ;;WAAYA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;GAAAA,yB,KAAAA,yB;;AA8BZ;AACA,WAAYC,8BAAZ;;WAAYA,8B;EAAAA,8B;EAAAA,8B;EAAAA,8B;EAAAA,8B;GAAAA,8B,KAAAA,8B;;AAWZ,WAAYC,kBAAZ;;WAAYA,kB;EAAAA,kB;GAAAA,kB,KAAAA,kB;;AAuGZ,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAYZ;AACA,WAAYC,qBAAZ;AAWA;;WAXYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAYZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAmCZ;AACA,WAAYC,gBAAZ;AAmBA;;WAnBYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAoBZ,WAAYC,0BAAZ;AAOA;;WAPYA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAyKZ;AACA,WAAYC,WAAZ;AASA;;WATYA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AA6DZ,WAAYC,2BAAZ;AAWA;;WAXYA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;GAAAA,2B,KAAAA,2B;;AA4yBZ;AACA,WAAYC,iBAAZ;AASA;;WATYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAUZ,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAWZ,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AAoDZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAsEZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAsCZ,WAAYC,UAAZ;AASA;;WATYA,U;EAAAA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAUZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAkBZ,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U"}
1
+ {"version":3,"file":"graphql.js","names":["AccelerationUnit","AccessType","AdhocAuthorisationMethod","AirPressureUnit","Amenities","AmenityType","AmenityWheelchairAccessibilityType","AuxiliaryConsumptionUnit","BatteryInputType","CarConnectivityProvider","ChargeMode","ChargeSpeedUnit","ChargerStatus","ChargingBehaviourCode","CongestionLevel","ConnectProvider","ConnectScope","ConnectedVehicleStatus","ConnectorPriceElementComponentType","ConnectorPriceProductSubscriptionType","ConnectorPriceProductType","ConnectorPriceRestrictionsOverstayTimeUnit","ConnectorPriceRestrictionsReservationType","ConnectorType","ConsumptionUnit","CountryCodeAlpha2","Currency","CurrencyUnit","DayOfWeek","DimensionUnit","DistanceUnit","ElevationUnit","EmissionRateUnit","EmissionUnit","EmissionsFactorType","FeatureType","FuelConsumptionUnit","FuelUnit","HeatPumpMode","HeavyVehiclesEUType","HeavyVehiclesFacility","IsolineFerryConnectionsType","IsolineQuality","IsolineStatus","LegType","LineStringType","MeasurementUnit","MultiPolygonType","NavigationChangeSource","NavigationChangeType","NavigationStatus","NavigationVehicleStatus","OCPICapability","OCPIConnectorFormat","OCPIConnectorType","OCPIDayOfWeek","OCPIEnergySourceCategory","OCPIEnvironmentalImpactCategory","OCPIFacility","OCPIImageCategory","OCPIParkingRestriction","OCPIParkingType","OCPIPowerType","OCPIReservationRestrictionType","OCPIStatus","OCPITariffDimensionType","OCPITariffType","OICPChargingModes","OICPEvseAuthenticationMode","OICPPaymentOptions","OICPValueAddedServices","OperatorPreferenceType","OperatorRankingLevel","ParkingCost","PointType","PolylineInputDecimals","PowerSupported","PowerUnit","PressureUnit","PricingListElementType","RouteAlternativeType","RouteAvoid","RouteDetailsLegManeuverType","RouteDetailsLegSectionType","RouteDetailsLegType","RouteDetailsLegWarningCode","RouteDetailsTag","RouteDrivingStyle","RouteInstructionSign","RouteOperationalElectricityClimate","RouteOperationalElectricityEnergySourceModel","RouteOperationalElectricitySeason","RouteOperationalFuelType","RouteOperatorsType","RouteSeason","RouteStatus","RouteTagType","RouteTruckAvoid","RouteWarningCode","SolarIrradianceUnit","SortDirection","SpeedUnit","StateOfChargeUnit","StationAdhocAuthorisationPaymentMethod","StationSpeedType","StepType","TelemetryInputSource","TemperatureUnit","TorqueUnit","TurningCircleUnit","VehicleAvailabilityStatus","VehicleBatteryFieldEstimations","VehicleBatteryType","VehicleDataProvider","VehicleDrivetrainType","VehicleFuel","VehicleImageType","VehicleImageTypeUploadable","VehicleMode","VehiclePlugAndChargeSupport","VehiclePropulsion","VehicleProviderStatus","VehiclePurpose","VehicleRegion","VehicleType","VolumeUnit","WeatherType","WeightUnit"],"sources":["../../src/graphql.ts"],"sourcesContent":["export type Maybe<T> = T | null;\nexport type Exact<T extends { [key: string]: unknown }> = {\n [K in keyof T]: T[K];\n};\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> &\n { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> &\n { [SubKey in K]: Maybe<T[SubKey]> };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: string;\n String: string;\n Boolean: boolean;\n Int: number;\n Float: number;\n /** The date and time scalar. */\n DateTime: string;\n /** Email address scalar, email regex with HTML sanitization. */\n Email: any;\n /** Any JSON object or array. */\n JSON: { [key: string]: number | string | boolean | null | Scalars[\"JSON\"] };\n /** The non empty string scalar. */\n NonEmptyString: any;\n /** The `PlainID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The `PlainID` type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as \"4\") or integer (such as 4) input value will be accepted as an ID. */\n PlainID: any;\n /**\n * The `PlainString` scalar type represents textual data, represented as UTF-8 character sequences.\n * The PlainString type represents free-form human-readable text with HTML sanitization.\n */\n PlainString: any;\n /** The File Upload scalar. */\n Upload: any;\n};\n\nexport enum AccelerationUnit {\n /** Return the acceleration in seconds to 100 kilometers per hour. */\n SECONDS_TO_100_KILOMETERS_PER_HOUR = \"seconds_to_100_kilometers_per_hour\",\n /** Return the acceleration in seconds to 60 miles per hour. */\n SECONDS_TO_60_MILES_PER_HOUR = \"seconds_to_60_miles_per_hour\"\n}\n\nexport enum AccessType {\n PUBLIC = \"Public\",\n RESTRICTED = \"Restricted\",\n PRIVATE = \"Private\"\n}\n\n/** Information about an address. */\nexport type Address = {\n /** Continent code (2 letters). */\n continent?: Maybe<Scalars[\"String\"]>;\n /** Country code (2 letters). */\n country?: Maybe<Scalars[\"String\"]>;\n /** County code (2 letters). */\n county?: Maybe<Scalars[\"String\"]>;\n /** State or province. */\n state_province?: Maybe<Scalars[\"String\"]>;\n /** Municipality. */\n municipality?: Maybe<Scalars[\"String\"]>;\n /** City. */\n city?: Maybe<Scalars[\"String\"]>;\n /** Street name. */\n street?: Maybe<Scalars[\"String\"]>;\n /** Street number. */\n number?: Maybe<Scalars[\"String\"]>;\n /**\n * Postal code of the location.\n * @deprecated In favor of `postal_code`.\n */\n postalCode?: Maybe<Scalars[\"String\"]>;\n /**\n * String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>.\n * @deprecated In favor of `what_3_words`.\n */\n what3Words?: Maybe<Scalars[\"String\"]>;\n /**\n * Human-readable address of the location.\n * @deprecated In favor of `formatted_address`.\n */\n formattedAddress?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Postal code of the location. */\n postal_code?: Maybe<Scalars[\"String\"]>;\n /** String composed of 3 words which represent the location of an address on the globe. More details: http://w3w.co/<what3Words>. */\n what_3_words?: Maybe<Scalars[\"String\"]>;\n /** Human-readable address of the location. */\n formatted_address?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n};\n\nexport enum AdhocAuthorisationMethod {\n CREDIT_CARD = \"CREDIT_CARD\",\n DEBIT_CARD = \"DEBIT_CARD\",\n OTHER = \"OTHER\",\n OTHER_APPLE_PAY = \"OTHER_Apple_Pay\",\n OTHER_AUTHENTICATION_BY_CAR = \"OTHER_Authentication_by_car\",\n OTHER_GOOGLE_PAY = \"OTHER_Google_Pay\",\n QR_CODE = \"QR_CODE\",\n SMS = \"SMS\"\n}\n\n/** Input fields to continue the navigation session to the next leg. */\nexport type AdvanceNavigationLegInput = {\n /** The unique identifier of the active navigation session. */\n id: Scalars[\"ID\"];\n /** State of charge (SOC) of the vehicle at the current location. If the current leg ends at a charging stop and this value is omitted, the navigation will assume the vehicle charges to its estimated optimal SOC. If the current leg ends at a non-charging via point and this value is omitted, the last known vehicle SOC is retained. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Geographic coordinates of the vehicle's current location. */\n current_location: PointInput;\n};\n\nexport type AirPressure = {\n /** Value of the atmospheric pressure. */\n value: Scalars[\"Float\"];\n /** Atmospheric pressure unit. */\n type: AirPressureUnit;\n};\n\nexport type AirPressureInput = {\n /** Value of the atmospheric pressure. */\n value: Scalars[\"Float\"];\n /** Atmospheric pressure unit. */\n type: AirPressureUnit;\n};\n\nexport enum AirPressureUnit {\n MILLIBAR = \"millibar\"\n}\n\nexport type AlternativeStationRadius = {\n /** Value of the alternative station radius. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the alternative station radius. */\n type: DistanceUnit;\n /**\n * Source of inputted data.\n * @deprecated Not in use.\n */\n source: TelemetryInputSource;\n};\n\nexport type AlternativeStationRadiusInput = {\n /** Value of the alternative station radius. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the alternative station radius. */\n type: DistanceUnit;\n /** Source of inputted data. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Amenities available near a station. */\nexport enum Amenities {\n PARK = \"park\",\n RESTAURANT = \"restaurant\",\n MUSEUM = \"museum\",\n COFFEE = \"coffee\",\n HOTEL = \"hotel\",\n SHOPPING = \"shopping\",\n BATHROOM = \"bathroom\",\n SUPERMARKET = \"supermarket\",\n PLAYGROUND = \"playground\",\n PHARMACY = \"pharmacy\",\n BAKERY = \"bakery\",\n CONVENIENCE_STORE = \"convenience_store\"\n}\n\n/** Amenity data. */\nexport type Amenity = {\n /** Unique amenity ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /**\n * ID provided by an amenity data source as the row ID.\n * @deprecated In favor of `external_id`.\n */\n externalId?: Maybe<Scalars[\"String\"]>;\n /** ID provided by an amenity data source as the row ID. */\n external_id: Scalars[\"String\"];\n /** Name of the amenity. */\n name: Scalars[\"String\"];\n /** Geo location coordinates. This is a GeoJSON Point. */\n location: Point;\n /** Address of the amenity. */\n address?: Maybe<Address>;\n /** Type of amenity. An amenity can belong to multiple categories. */\n type: Array<Maybe<Scalars[\"String\"]>>;\n /**\n * Computed distance between station and amenity.\n * @deprecated In favor of `station_distance`.\n */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Computed distance between station and amenity. */\n station_distance: Scalars[\"Float\"];\n /**\n * Full path URL to amenity foursquare page.\n * @deprecated Will be removed.\n */\n foursquareUrl?: Maybe<Scalars[\"String\"]>;\n /** Opening hours of the amenity. */\n opening_hours?: Maybe<AmenityOpeningHours>;\n /** Indicates whether pets are allowed. This does not apply to assistance dogs, which may have legal access. */\n pets_allowed?: Maybe<Scalars[\"Boolean\"]>;\n /** Accessibility options at the amenity. */\n accessibility?: Maybe<AmenityAccessibility>;\n /** Contact information for the amenity. */\n contact?: Maybe<AmenityContact>;\n /** Rating of an amenity, the value will be between 0.0 and 10.0. If no rating has been given, the value will be set to null. */\n rating?: Maybe<Scalars[\"Float\"]>;\n /**\n * Date and time when an amenity was created.\n * @deprecated Will be removed.\n */\n createdAt?: Maybe<Scalars[\"String\"]>;\n /**\n * Date and time when an amenity was last updated.\n * @deprecated In favor of `last_updated`.\n */\n updatedAt?: Maybe<Scalars[\"String\"]>;\n /** Date and time when an amenity was last updated. */\n last_updated: Scalars[\"DateTime\"];\n};\n\n/** Amenity data. */\nexport type Amenitystation_distanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Accessibility options at the amenity. */\nexport type AmenityAccessibility = {\n /** Type of wheelchair accessibility at the amenity. */\n wheelchair?: Maybe<AmenityWheelchairAccessibilityType>;\n};\n\n/** Contact information for the amenity. */\nexport type AmenityContact = {\n /** Phone number to contact the amenity. */\n phone?: Maybe<Scalars[\"String\"]>;\n /** Website of the amenity. */\n website?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Filter that can be applied to retrieve the amenity list. */\nexport type AmenityListFilter = {\n /** Type of amenity. An amenity can belong to multiple categories. */\n type?: Maybe<Array<Amenities>>;\n};\n\n/** Opening and access hours of the location. */\nexport type AmenityOpeningHours = {\n /** True to represent 24 hours a day and 7 days a week. */\n twentyfourseven?: Maybe<Scalars[\"Boolean\"]>;\n /** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */\n regular_hours?: Maybe<Array<Maybe<AmenityRegularHours>>>;\n};\n\n/** Amenity preferences for a route. */\nexport type AmenityPreferencesInput = {\n /** Desired amenities near all charge-stops along a route, with a 1 kilometer radius. */\n all_charge_stops?: Maybe<Array<AmenityType>>;\n /** Scheduled charge stops, with a specified amenity and timeline. */\n scheduled_charge_stops?: Maybe<Array<ScheduledChargeStopInput>>;\n};\n\n/** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */\nexport type AmenityRegularHours = {\n /** Number of days in the week, from Monday (1) till Sunday (7). */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** Beginning 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]. */\n period_begin?: Maybe<Scalars[\"String\"]>;\n /** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */\n period_end?: Maybe<Scalars[\"String\"]>;\n};\n\n/** A list of amenity types. */\nexport enum AmenityType {\n PARK = \"park\",\n RESTAURANT = \"restaurant\",\n MUSEUM = \"museum\",\n COFFEE = \"coffee\",\n HOTEL = \"hotel\",\n SHOPPING = \"shopping\",\n BATHROOM = \"bathroom\",\n SUPERMARKET = \"supermarket\",\n PLAYGROUND = \"playground\",\n PHARMACY = \"pharmacy\",\n BAKERY = \"bakery\",\n CONVENIENCE_STORE = \"convenience_store\"\n}\n\n/** Type of wheelchair accessibility at the amenity. */\nexport enum AmenityWheelchairAccessibilityType {\n /** Wheelchairs have full unrestricted access. */\n YES = \"yes\",\n /** Wheelchairs have partial access (e.g some areas can be accessed and others not, areas requiring assistance by someone pushing up a steep gradient). */\n LIMITED = \"limited\",\n /** Wheelchairs have no unrestricted access (e.g. stair only access). */\n NO = \"no\",\n /** The amenity is designated or purpose-built for wheelchairs (e.g. bathroom designed for wheelchair access only). */\n DESIGNATED = \"designated\"\n}\n\nexport type AuthorizeConnectedVehicleInput = {\n /** Id from the connected vehicle */\n id: Scalars[\"ID\"];\n /** Provider specific options. See the developer portal for more details */\n options: AuthorizeConnectedVehicleOptions;\n};\n\nexport type AuthorizeConnectedVehicleOptions = {\n /** OAuth code returned as a query parameter on the OAuth callback */\n code?: Maybe<Scalars[\"PlainString\"]>;\n};\n\nexport type AuxiliaryConsumption = {\n /** Value of the vehicle's auxiliary power consumption. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's auxiliary power consumption. */\n type: AuxiliaryConsumptionUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type AuxiliaryConsumptionInput = {\n /** Value of the vehicle's auxiliary power consumption. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's auxiliary power consumption. */\n type: AuxiliaryConsumptionUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Auxiliary consumption units. */\nexport enum AuxiliaryConsumptionUnit {\n /** Return the auxiliary consumption in kilowatt hours. */\n KILOWATT_HOUR = \"kilowatt_hour\"\n}\n\n/** The type of the battery value. */\nexport enum BatteryInputType {\n KWH = \"kwh\",\n KM = \"km\",\n MILES = \"miles\",\n PERCENTAGE = \"percentage\"\n}\n\nexport type BatteryTemperatureInput = {\n /** Value of the temperature of the battery. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the temperature of the battery. */\n type: TemperatureUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum CarConnectivityProvider {\n ENODE = \"Enode\"\n}\n\n/** Consumption of the car. */\nexport type CarConsumption = {\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<Scalars[\"Float\"]>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Consumption of the car. */\nexport type CarConsumptionInput = {\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<Scalars[\"Float\"]>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Charging mode used at charging stations. */\nexport enum ChargeMode {\n /** Optimizes the charging time at each station, in order to decrease the total travel time. Charges the vehicle only to the SOC required to reach the next stop, without exceeding the configured 'maximum_state_of_charge'. */\n OPTIMIZE_TRAVEL_TIME = \"OPTIMIZE_TRAVEL_TIME\",\n /** Charges up to the maximum configured state of charge (SoC) at each station. The maximum SoC is determined by 'maximum_state_of_charge'. */\n ALWAYS_TO_MAX_CHARGE = \"ALWAYS_TO_MAX_CHARGE\"\n}\n\nexport type ChargeSpeed = {\n /** Value of the charge speed of the battery. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the battery's charge speed. */\n type: ChargeSpeedUnit;\n /** Source of inputted data */\n source: TelemetryInputSource;\n};\n\nexport type ChargeSpeedInput = {\n /** Value of the battery's charge speed. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the battery's charge speed. */\n type: ChargeSpeedUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum ChargeSpeedUnit {\n /** Return the charge speed in kilowatt hours. */\n KILOWATT_HOUR = \"kilowatt_hour\",\n /** Return the charge speed in kilometers per hour. */\n KILOMETERS_PER_HOUR = \"kilometers_per_hour\",\n /** Return the charge speed in miles per hour. */\n MILES_PER_HOUR = \"miles_per_hour\"\n}\n\nexport type ChargeTotalInput = {\n /** Value of the temperature of the battery. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the total charge amount. */\n type: StateOfChargeUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** A grouped representation of EVSEs. */\nexport type Charger = {\n /** Type of a charger. */\n standard?: Maybe<ConnectorType>;\n /** Power of a charger, in kW. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Price of a charger. */\n price?: Maybe<Scalars[\"String\"]>;\n /** Charging speed. */\n speed?: Maybe<StationSpeedType>;\n /** Statuses of all the EVSEs grouped in a charger. */\n status?: Maybe<ChargerStatuses>;\n /** Total number of EVSEs grouped in a charger. */\n total?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport enum ChargerStatus {\n /** The charger is free. */\n FREE = \"free\",\n /** The charger is occupied/busy. */\n BUSY = \"busy\",\n /** The charger is unknown. */\n UNKNOWN = \"unknown\",\n /** The charger has an error. */\n ERROR = \"error\"\n}\n\n/** Grouping by status of the chargers. */\nexport type ChargerStatuses = {\n /** How many are free. */\n free?: Maybe<Scalars[\"Int\"]>;\n /** How many are busy. */\n busy?: Maybe<Scalars[\"Int\"]>;\n /** How many are unknown. */\n unknown?: Maybe<Scalars[\"Int\"]>;\n /** How many are not available. */\n error?: Maybe<Scalars[\"Int\"]>;\n};\n\n/**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\nexport type ChargetripRange = {\n /**\n * Range calculated using the worst conditions.\n * Worst conditions are based on -0°C, including use of heating.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n worst?: Maybe<Scalars[\"Float\"]>;\n /**\n * Range calculated using the best conditions.\n * Best conditions are based on 25°C, including use of A/C.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\n/**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\nexport type ChargetripRangeworstArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\nexport type ChargetripRangebestArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type ChargingBehaviour = {\n /** Charging behaviour of users divided in groups, based on real-time information. */\n code?: Maybe<ChargingBehaviourCode>;\n /** Description of charging behaviour. */\n description?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum ChargingBehaviourCode {\n /** Mainly morning charging, and some mixed afternoon and evening charging. */\n URBAN_CHARGING = \"URBAN_CHARGING\",\n /** Mainly fast charging, with some morning and afternoon charging. */\n FAST_CHARGING = \"FAST_CHARGING\",\n /** Mixed behaviour between morning, afternoon, evening, overnight, and noise charging. */\n MIXED_CHARGING = \"MIXED_CHARGING\",\n /** Mainly noise charging. */\n NOISE_CHARGING = \"NOISE_CHARGING\",\n /** Mainly overnight charging. */\n OVERNIGHT_CHARGING = \"OVERNIGHT_CHARGING\",\n /** Mainly morning charging, with some afternoon charging. */\n OFFICE_CHARGING = \"OFFICE_CHARGING\"\n}\n\nexport enum CongestionLevel {\n /** Congestion level is unknown or could not be determined. */\n UNKNOWN = \"unknown\",\n /** Traffic is flowing freely with little to no delay. */\n LOW = \"low\",\n /** Increased traffic volume causing minor delays. */\n MEDIUM = \"medium\",\n /** Significant traffic volume causing heavy delays and potential standstills. */\n HIGH = \"high\"\n}\n\nexport type Connect = {\n /** List of connectivity providers to which the vehicle can connect. This field returns null for free users. Please contact customer success for more information. */\n providers?: Maybe<Array<ConnectProvider>>;\n};\n\nexport type ConnectBattery = {\n /** Estimated range by OEM */\n range?: Maybe<Scalars[\"Float\"]>;\n /** Percentage of the battery remaining */\n percentage?: Maybe<Scalars[\"Float\"]>;\n /** Capacity of the battery, in kwh */\n capacity?: Maybe<Scalars[\"Float\"]>;\n /** Date when the battery data was retrieved, as ISO-8601 date */\n date?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport type ConnectCharge = {\n /** Vehicle is plugged in */\n is_plugged_in?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle is charging */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n /** Battery is fully charged */\n is_fully_charged?: Maybe<Scalars[\"Boolean\"]>;\n /** Charge limit defined by vehicle owner */\n limit?: Maybe<Scalars[\"Int\"]>;\n /** Charge speed, in kwh */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Estimation when charging is completed, as ISO-8601 date */\n fully_charged_at?: Maybe<Scalars[\"DateTime\"]>;\n /** Estimated minutes till charged */\n minutes_till_charged?: Maybe<Scalars[\"Int\"]>;\n /** Date when the charge data was retrieved, as ISO-8601 date */\n date?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport type ConnectFilter = {\n /** List of connectivity providers to which a vehicle can connect. */\n providers?: Maybe<Array<Maybe<ConnectProvider>>>;\n};\n\n/** Location of the vehicle */\nexport type ConnectLocation = {\n /** Feature type */\n type: FeatureType;\n /** Geometry of the feature */\n geometry: GeometryPoint;\n /** Properties object containing meta data about the feature point */\n properties?: Maybe<ConnectLocationProperties>;\n};\n\n/** Properties of a vehicle location */\nexport type ConnectLocationProperties = {\n /** Date when the location was retrieved, as ISO-8601 date */\n date: Scalars[\"DateTime\"];\n};\n\nexport type ConnectOdometer = {\n /** Odometer value, distance driven, default in km */\n distance?: Maybe<Scalars[\"Float\"]>;\n /** Date when the odometer data was retrieved, as ISO-8601 date */\n date?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport enum ConnectProvider {\n ENODE = \"Enode\"\n}\n\nexport enum ConnectScope {\n /** Vehicle location, applicable for: Enode */\n LOCATION = \"location\",\n /** Charge state, applicable for: Enode */\n CHARGE_STATE = \"charge_state\",\n /** Odometer reading, applicable for: Enode */\n ODOMETER = \"odometer\"\n}\n\nexport type ConnectedVehicle = {\n /** Unique ID of the connected vehicle */\n id: Scalars[\"ID\"];\n /** Unique ID of the vehicle */\n vehicle_id: Scalars[\"ID\"];\n /** Status of the connected vehicle */\n status: ConnectedVehicleStatus;\n /** URL to connect the vehicle to the connectivity provider */\n authorization_url?: Maybe<Scalars[\"String\"]>;\n /** Connectivity provider */\n provider: CarConnectivityProvider;\n /** Scope for accessing the vehicle */\n scope?: Maybe<Array<Maybe<ConnectScope>>>;\n /** Custom label for a connected vehicle that can be assigned by a user */\n label?: Maybe<Scalars[\"String\"]>;\n /** Vehicle identification number, unique identifier for a vehicle */\n vin?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type ConnectedVehicleListFilter = {\n /** Status of the connected vehicle */\n status?: Maybe<Array<ConnectedVehicleStatus>>;\n};\n\nexport enum ConnectedVehicleStatus {\n /** Vehicle was added to the Chargetrip Connect platform but not yet authorized */\n PENDING_AUTHORIZATION = \"pending_authorization\",\n /** Vehicle was authorized. Chargetrip can retrieve data on behave of the user */\n AUTHORIZED = \"authorized\",\n /** Pending vehicle removal */\n PENDING_REMOVAL = \"pending_removal\",\n /** Vehicle was removed and access has been revoked */\n REMOVED = \"removed\"\n}\n\n/** Connector data which extends OCPI Connector. */\nexport type Connector = {\n /** 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. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Standard of an installed connector. */\n standard?: Maybe<ConnectorType>;\n /** Format (socket/cable) of an installed connector. */\n format?: Maybe<OCPIConnectorFormat>;\n /** Type of power of an installed connector. */\n power_type?: Maybe<OCPIPowerType>;\n /** 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. */\n max_voltage?: Maybe<Scalars[\"Int\"]>;\n /** Maximum amperage of a connector, in ampere [A]. */\n max_amperage?: Maybe<Scalars[\"Int\"]>;\n /**\n * 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.\n * 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.\n * For AC Charge Points, the amount of phases used can also have influence on the maximum power.\n */\n max_electric_power?: Maybe<Scalars[\"Int\"]>;\n /** Maximum electric power in kW. */\n power?: Maybe<Scalars[\"Float\"]>;\n /**\n * 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.\n * 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.\n * For a \"free of charge\" tariff, this field should be set and point to a defined \"free of charge\" tariff.\n */\n tariff_ids?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** URL to an operator’s terms and conditions. */\n terms_and_conditions?: Maybe<Scalars[\"String\"]>;\n /** Timestamp when a connector was last updated (or created). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** List of valid charging tariffs. */\n tariff?: Maybe<Array<Maybe<OCPITariff>>>;\n /**\n * Charging prices.\n * @deprecated In favor of `prices`.\n */\n pricing?: Maybe<Pricing>;\n /** Dynamic charging prices. */\n prices?: Maybe<Array<ConnectorPrice>>;\n /** 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. */\n custom_properties?: Maybe<ConnectorCustomProperties>;\n};\n\n/** Custom properties for connectors. */\nexport type ConnectorCustomProperties = {\n /**\n * Charging prices.\n * @deprecated In favor of `connector.prices`.\n */\n pricing?: Maybe<Pricing>;\n /** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */\n oicp?: Maybe<OICPConnectorCustomProperties>;\n};\n\n/** Connector charging price. */\nexport type ConnectorPrice = {\n /** ID for the price. */\n external_id: Scalars[\"String\"];\n /** Owner of the payment product. */\n partner?: Maybe<Scalars[\"String\"]>;\n /** ID for the owner of the payment product. */\n partner_id: Scalars[\"String\"];\n /** Payment product. */\n product: ConnectorPriceProduct;\n /** Price product elements. */\n elements: Array<ConnectorPriceElement>;\n /** Indicates when the pricing data was last updated. The date is in ISO 8601 standard and the time zone is UTC. The update could be a price update or any other update (for example, pricing type update). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport type ConnectorPriceElement = {\n /** Connector price element components. */\n components: Array<ConnectorPriceElementComponent>;\n /** Connector price element restrictions. */\n restrictions?: Maybe<ConnectorPriceElementRestrictions>;\n};\n\nexport type ConnectorPriceElementComponent = {\n /** Type of pricing that is applicable. */\n type: ConnectorPriceElementComponentType;\n /** Applicable price excluding VAT. */\n price_excl_vat: Scalars[\"Float\"];\n /** Applicable VAT. */\n vat: Scalars[\"Float\"];\n /**\n * Indicates the minimum amount that is billed.\n * A unit is billed in step-size blocks. For example, if the type is TIME and step_size is 300, then the time is billed in blocks of 5 minutes. Hence, if 6 minutes is used, then 10 minutes (2 blocks of step_size) is billed.\n * Note: step_size also depends on the type. Every type (except FLAT) defines a step_size multiplier. This is the size of every 'step' and the unit. For example, PARKING_TIME has a step-size multiplier of 1 second. Therefore, the step_size of a price component is multiplied by 1 second. Thus, step_size = 300 means 300 seconds.\"\n */\n step_size: Scalars[\"Int\"];\n};\n\n/** Type of pricing that is applicable. */\nexport enum ConnectorPriceElementComponentType {\n /** Price per kWh. */\n ENERGY = \"energy\",\n /** Fixed price per charging session. */\n FLAT = \"flat\",\n /** Parking price per hour. This fee is applicable if the parked car is not charging. */\n PARKING_TIME = \"parking_time\",\n /** Fixed price per unit of time defined in the step size. */\n TIME = \"time\"\n}\n\nexport type ConnectorPriceElementRestrictions = {\n /** Starting time of the day for the prices. */\n start_time?: Maybe<Scalars[\"String\"]>;\n /** Ending time of the day for the prices. */\n end_time?: Maybe<Scalars[\"String\"]>;\n /** Starting date for the prices. */\n start_date?: Maybe<Scalars[\"String\"]>;\n /** Ending date for the prices. */\n end_date?: Maybe<Scalars[\"String\"]>;\n /** Minimum energy used, in kWh. */\n minimum_kwh?: Maybe<Scalars[\"Float\"]>;\n /** Maximum energy used, in kWh. */\n maximum_kwh?: Maybe<Scalars[\"Float\"]>;\n /** Minimum charging speed, in kW. */\n minimum_power?: Maybe<Scalars[\"Float\"]>;\n /** Maximum charging speed, in kW. */\n maximum_power?: Maybe<Scalars[\"Float\"]>;\n /** Sum of the minimum current (in Amperes) over all the phases. When the EV is charging with more than or equal to this value the prices are active. If the charging current is lower, this price is inactive. */\n minimum_current?: Maybe<Scalars[\"Float\"]>;\n /** Sum of the maximum current (in Amperes) over all the phases. When the EV is charging with less than this value the prices are active. If the charging current is higher, this price is inactive. */\n maximum_current?: Maybe<Scalars[\"Float\"]>;\n /** Minimum price based on the amount of kWh that is being delivered. */\n minimum_price?: Maybe<Scalars[\"Float\"]>;\n /** Maximum price based on the amount of kWh that is being delivered. */\n maximum_price?: Maybe<Scalars[\"Float\"]>;\n /** Battery percentage at which the overstay prices are active. */\n overstay_battery_percentage?: Maybe<\n ConnectorPriceRestrictionsOverstayBatteryPercentage\n >;\n /** Time after which the overstay prices are active. */\n overstay_time?: Maybe<ConnectorPriceRestrictionsOverstayTime>;\n /** Minimum duration, in seconds. */\n minimum_duration?: Maybe<Scalars[\"Int\"]>;\n /** Maximum duration, in seconds. */\n maximum_duration?: Maybe<Scalars[\"Int\"]>;\n /** Day(s) of the week that the prices are valid. */\n day_of_week?: Maybe<Array<DayOfWeek>>;\n /** Contract signed between the eMSP and the customer. */\n emsp_contract_date?: Maybe<ConnectorPriceRestrictionsEmspContractDate>;\n /**\n * When this field is present, the ConnectorPriceElement describes reservation costs.\n * A reservation starts when the reservation is made, and ends when the driver starts charging on the reserved EVSE/Location,\n * or when the reservation expires. A reservation can only have: `flat` and `time` ConnectorPriceElementComponentType,\n * where time is for the duration of the reservation.\n * When a price has both, `reservation` and `reservation_expires` ConnectorPriceElement,\n * where both ConnectorPriceElement have a time ConnectorPriceElementComponent,\n * then the time based cost of an expired reservation will be calculated based on the `reservation_expires` ConnectorPriceElement.\n */\n reservation?: Maybe<ConnectorPriceRestrictionsReservationType>;\n};\n\n/** Payment product. */\nexport type ConnectorPriceProduct = {\n /** Name of the payment product. */\n name: Scalars[\"String\"];\n /** Type of the payment product. */\n type: ConnectorPriceProductType;\n /** A brief description of the product. */\n description: Scalars[\"String\"];\n /** Indicates the type of subscription. */\n subscription_type: ConnectorPriceProductSubscriptionType;\n /** Subscription price for a month or year, excluding VAT, if applicable. */\n subscription_fee_excl_vat: Scalars[\"Float\"];\n /** Three-digit currency code of the country where the charging station is located. */\n currency: CurrencyUnit;\n};\n\n/** Type of the payment product. */\nexport enum ConnectorPriceProductSubscriptionType {\n /** The subscription fee is applicable every month. */\n MONTHLY = \"monthly\",\n /** The subscription fee is applicable every year. */\n YEARLY = \"yearly\",\n /** An initial fee is applicable to purchase a RFID card or chip, but there isn't a recurring subscription fee. */\n ONE_OFF = \"one_off\",\n /** The product doesn’t have a subscription option. */\n NOT_APPLICABLE = \"not_applicable\"\n}\n\n/** Type of the payment product. */\nexport enum ConnectorPriceProductType {\n AD_HOC = \"ad_hoc\",\n MSP = \"msp\",\n CPO_SUBSCRIPTION = \"cpo_subscription\"\n}\n\nexport type ConnectorPriceRestrictionsEmspContractDate = {\n /** Name of the contract signed between the eMSP and a customer. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Prices are active from this date, which is based on the contract signed between the eMSP and a customer. */\n from?: Maybe<Scalars[\"String\"]>;\n /** Prices are active until this date, which is based on the contract signed between the eMSP and a customer. */\n to?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type ConnectorPriceRestrictionsOverstayBatteryPercentage = {\n /** Battery percentage at which the overstay prices are active. */\n minimum?: Maybe<Scalars[\"Int\"]>;\n /** Battery percentage at which the overstay prices are inactive. */\n maximum?: Maybe<Scalars[\"Int\"]>;\n /** Unit for the time after which the prices are active. */\n unit?: Maybe<ConnectorPriceRestrictionsOverstayTimeUnit>;\n};\n\nexport type ConnectorPriceRestrictionsOverstayTime = {\n /** Time at which the overstay prices are active. */\n minimum?: Maybe<Scalars[\"Int\"]>;\n /** Time at which the overstay prices are inactive. */\n maximum?: Maybe<Scalars[\"Int\"]>;\n /** Unit for the time after which the prices are active. */\n unit?: Maybe<ConnectorPriceRestrictionsOverstayTimeUnit>;\n};\n\n/** The unit of time after which the overstay restrictions are applicable. */\nexport enum ConnectorPriceRestrictionsOverstayTimeUnit {\n /** The overstay restrictions are applicable after a certain number of seconds. */\n SECONDS = \"seconds\",\n /** The overstay restrictions are applicable after a certain number of minutes. */\n MINUTES = \"minutes\",\n /** The overstay restrictions are applicable after a certain number of hours. */\n HOURS = \"hours\"\n}\n\n/** Describes the cost associated with reserving a charging station. */\nexport enum ConnectorPriceRestrictionsReservationType {\n /** Describes costs for a reservation. */\n RESERVATION = \"reservation\",\n /** Describes costs for a reservation that expires (i.e. driver does not start a charging session before expiry date of the reservation). */\n RESERVATION_EXPIRES = \"reservation_expires\"\n}\n\n/** Socket or plug standard of the charging point. */\nexport enum ConnectorType {\n /** The connector type is CHAdeMO, DC. */\n CHADEMO = \"CHADEMO\",\n /** Standard/domestic household, type \"A\", NEMA 1-15, 2 pins. */\n DOMESTIC_A = \"DOMESTIC_A\",\n /** Standard/domestic household, type \"B\", NEMA 5-15, 3 pins. */\n DOMESTIC_B = \"DOMESTIC_B\",\n /** Standard/domestic household, type \"C\", CEE 7/17, 2 pins. */\n DOMESTIC_C = \"DOMESTIC_C\",\n /** Standard/domestic household, type \"D\", 3 pins. */\n DOMESTIC_D = \"DOMESTIC_D\",\n /** Standard/domestic household, type \"E\", CEE 7/5 3 pins. */\n DOMESTIC_E = \"DOMESTIC_E\",\n /** Standard/domestic household, type \"F\", CEE 7/4, Schuko, 3 pins. */\n DOMESTIC_F = \"DOMESTIC_F\",\n /** Standard/domestic household, type \"G\", BS 1363, Commonwealth, 3 pins. */\n DOMESTIC_G = \"DOMESTIC_G\",\n /** Standard/domestic household, type \"H\", SI-32, 3 pins. */\n DOMESTIC_H = \"DOMESTIC_H\",\n /** Standard/domestic household, type \"I\", AS 3112, 3 pins. */\n DOMESTIC_I = \"DOMESTIC_I\",\n /** Standard/domestic household, type \"J\", SEV 1011, 3 pins. */\n DOMESTIC_J = \"DOMESTIC_J\",\n /** Standard/domestic household, type \"K\", DS 60884-2-D1, 3 pins. */\n DOMESTIC_K = \"DOMESTIC_K\",\n /** Standard/domestic household, type \"L\", CEI 23-16-VII, 3 pins. */\n DOMESTIC_L = \"DOMESTIC_L\",\n /** Standard/Domestic household, type \"M\", BS 546, 3 pins. */\n DOMESTIC_M = \"DOMESTIC_M\",\n /** Standard/Domestic household, type \"N\", NBR 14136, 3 pins. */\n DOMESTIC_N = \"DOMESTIC_N\",\n /** Standard/Domestic household, type \"O\", TIS 166-2549, 3 pins. */\n DOMESTIC_O = \"DOMESTIC_O\",\n /** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue). */\n IEC_60309_2_SINGLE_16 = \"IEC_60309_2_single_16\",\n /** IEC 60309-2 Industrial connector three phase 16 amperes (usually red). */\n IEC_60309_2_THREE_16 = \"IEC_60309_2_three_16\",\n /** IEC 60309-2 Industrial connector three phase 32 amperes (usually red). */\n IEC_60309_2_THREE_32 = \"IEC_60309_2_three_32\",\n /** IEC 60309-2 Industrial connector three phase 64 amperes (usually red). */\n IEC_60309_2_THREE_64 = \"IEC_60309_2_three_64\",\n /** IEC 62196 Type 1 \"SAE J1772\". */\n IEC_62196_T1 = \"IEC_62196_T1\",\n /** Combo Type 1 based, DC. */\n IEC_62196_T1_COMBO = \"IEC_62196_T1_COMBO\",\n /** IEC 62196 Type 2 \"Mennekes\". */\n IEC_62196_T2 = \"IEC_62196_T2\",\n /** Combo Type 2 based, DC. */\n IEC_62196_T2_COMBO = \"IEC_62196_T2_COMBO\",\n /** IEC 62196 Type 3A. */\n IEC_62196_T3A = \"IEC_62196_T3A\",\n /** IEC 62196 Type 3C \"Scame\". */\n IEC_62196_T3C = \"IEC_62196_T3C\",\n /** On-board bottom-up-pantograph typically for bus charging. */\n PANTOGRAPH_BOTTOM_UP = \"PANTOGRAPH_BOTTOM_UP\",\n /** Off-board top-down-pantograph typically for bus charging. */\n PANTOGRAPH_TOP_DOWN = \"PANTOGRAPH_TOP_DOWN\",\n /** Tesla connector \"Roadster\"-type (round, 4 pins). */\n TESLA_R = \"TESLA_R\",\n /** Tesla connector \"Model-S\"-type (oval, 5 pins). */\n TESLA_S = \"TESLA_S\",\n /** The connector type is GB_T (Chinese standard), DC. */\n GB_T = \"GB_T\",\n /** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */\n CHAOJI = \"CHAOJI\",\n /** The connector type is NEMA 5-20, 3 pins. */\n NEMA_5_20 = \"NEMA_5_20\",\n /** The connector type is NEMA 6-30, 3 pins. */\n NEMA_6_30 = \"NEMA_6_30\",\n /** The connector type is NEMA 6-50, 3 pins. */\n NEMA_6_50 = \"NEMA_6_50\",\n /** The connector type is NEMA 10-30, 3 pins. */\n NEMA_10_30 = \"NEMA_10_30\",\n /** The connector type is NEMA 10-50, 3 pins. */\n NEMA_10_50 = \"NEMA_10_50\",\n /** The connector type is NEMA 14-30, 3 pins, rating of 30 A. */\n NEMA_14_30 = \"NEMA_14_30\",\n /** The connector type is NEMA 14-50, 3 pins, rating of 50 A. */\n NEMA_14_50 = \"NEMA_14_50\",\n /** Guobiao GB/T 20234.2 AC socket/connector. */\n GBT_AC = \"GBT_AC\",\n /** Guobiao GB/T 20234.3 DC connector. */\n GBT_DC = \"GBT_DC\"\n}\n\nexport enum ConsumptionUnit {\n /** Return the consumption in kilowatt hours per 100 kilometers. */\n KILOWATT_HOURS_PER_100_KILOMETERS = \"kilowatt_hours_per_100_kilometers\",\n /** Return the consumption in watt hours per kilometer. */\n WATT_HOURS_PER_KILOMETER = \"watt_hours_per_kilometer\",\n /** Return the consumption in kilometers per kilowatt hour. */\n KILOMETERS_PER_KILOWATT_HOUR = \"kilometers_per_kilowatt_hour\",\n /** Return the consumption in kilowatt hours per 100 miles. */\n KILOWATT_HOURS_PER_100_MILES = \"kilowatt_hours_per_100_miles\",\n /** Return the consumption in watt hours per mile. */\n WATT_HOURS_PER_MILE = \"watt_hours_per_mile\",\n /** Return the consumption in miles per kilowatt hour. */\n MILES_PER_KILOWATT_HOUR = \"miles_per_kilowatt_hour\"\n}\n\n/** The complete contact information. */\nexport type Contact = {\n /** The phone number in international format. */\n phone?: Maybe<Scalars[\"String\"]>;\n /** The email address. */\n email?: Maybe<Scalars[\"String\"]>;\n /** The absolute URL of the website. */\n website?: Maybe<Scalars[\"String\"]>;\n /** The absolute URL of the facebook profile page. */\n facebook?: Maybe<Scalars[\"String\"]>;\n /** The absolute URL of the twitter profile page. */\n twitter?: Maybe<Scalars[\"String\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** ISO-3166 alpha-2 country codes. */\nexport enum CountryCodeAlpha2 {\n AA = \"AA\",\n AD = \"AD\",\n AE = \"AE\",\n AF = \"AF\",\n AG = \"AG\",\n AI = \"AI\",\n AL = \"AL\",\n AM = \"AM\",\n AN = \"AN\",\n AO = \"AO\",\n AQ = \"AQ\",\n AR = \"AR\",\n AS = \"AS\",\n AT = \"AT\",\n AU = \"AU\",\n AW = \"AW\",\n AX = \"AX\",\n AZ = \"AZ\",\n BA = \"BA\",\n BB = \"BB\",\n BD = \"BD\",\n BE = \"BE\",\n BF = \"BF\",\n BG = \"BG\",\n BH = \"BH\",\n BI = \"BI\",\n BJ = \"BJ\",\n BL = \"BL\",\n BM = \"BM\",\n BN = \"BN\",\n BO = \"BO\",\n BQ = \"BQ\",\n BR = \"BR\",\n BS = \"BS\",\n BT = \"BT\",\n BV = \"BV\",\n BW = \"BW\",\n BY = \"BY\",\n BZ = \"BZ\",\n CA = \"CA\",\n CC = \"CC\",\n CD = \"CD\",\n CF = \"CF\",\n CG = \"CG\",\n CH = \"CH\",\n CI = \"CI\",\n CK = \"CK\",\n CL = \"CL\",\n CM = \"CM\",\n CN = \"CN\",\n CO = \"CO\",\n CR = \"CR\",\n CS = \"CS\",\n CU = \"CU\",\n CV = \"CV\",\n CW = \"CW\",\n CX = \"CX\",\n CY = \"CY\",\n CZ = \"CZ\",\n DE = \"DE\",\n DJ = \"DJ\",\n DK = \"DK\",\n DM = \"DM\",\n DO = \"DO\",\n DZ = \"DZ\",\n EC = \"EC\",\n EE = \"EE\",\n EG = \"EG\",\n EH = \"EH\",\n ER = \"ER\",\n ES = \"ES\",\n ET = \"ET\",\n FI = \"FI\",\n FJ = \"FJ\",\n FK = \"FK\",\n FM = \"FM\",\n FO = \"FO\",\n FR = \"FR\",\n GA = \"GA\",\n GB = \"GB\",\n GD = \"GD\",\n GE = \"GE\",\n GF = \"GF\",\n GG = \"GG\",\n GH = \"GH\",\n GI = \"GI\",\n GL = \"GL\",\n GM = \"GM\",\n GN = \"GN\",\n GP = \"GP\",\n GQ = \"GQ\",\n GR = \"GR\",\n GS = \"GS\",\n GT = \"GT\",\n GU = \"GU\",\n GW = \"GW\",\n GY = \"GY\",\n HK = \"HK\",\n HM = \"HM\",\n HN = \"HN\",\n HR = \"HR\",\n HT = \"HT\",\n HU = \"HU\",\n ID = \"ID\",\n IE = \"IE\",\n IL = \"IL\",\n IM = \"IM\",\n IN = \"IN\",\n IO = \"IO\",\n IQ = \"IQ\",\n IR = \"IR\",\n IS = \"IS\",\n IT = \"IT\",\n JE = \"JE\",\n JM = \"JM\",\n JO = \"JO\",\n JP = \"JP\",\n KE = \"KE\",\n KG = \"KG\",\n KH = \"KH\",\n KI = \"KI\",\n KM = \"KM\",\n KN = \"KN\",\n KP = \"KP\",\n KR = \"KR\",\n KW = \"KW\",\n KY = \"KY\",\n KZ = \"KZ\",\n LA = \"LA\",\n LB = \"LB\",\n LC = \"LC\",\n LI = \"LI\",\n LK = \"LK\",\n LR = \"LR\",\n LS = \"LS\",\n LT = \"LT\",\n LU = \"LU\",\n LV = \"LV\",\n LY = \"LY\",\n MA = \"MA\",\n MC = \"MC\",\n MD = \"MD\",\n ME = \"ME\",\n MF = \"MF\",\n MG = \"MG\",\n MH = \"MH\",\n MK = \"MK\",\n ML = \"ML\",\n MM = \"MM\",\n MN = \"MN\",\n MO = \"MO\",\n MP = \"MP\",\n MQ = \"MQ\",\n MR = \"MR\",\n MS = \"MS\",\n MT = \"MT\",\n MU = \"MU\",\n MV = \"MV\",\n MW = \"MW\",\n MX = \"MX\",\n MY = \"MY\",\n MZ = \"MZ\",\n NA = \"NA\",\n NC = \"NC\",\n NE = \"NE\",\n NF = \"NF\",\n NG = \"NG\",\n NI = \"NI\",\n NL = \"NL\",\n NO = \"NO\",\n NP = \"NP\",\n NR = \"NR\",\n NU = \"NU\",\n NZ = \"NZ\",\n OM = \"OM\",\n PA = \"PA\",\n PE = \"PE\",\n PF = \"PF\",\n PG = \"PG\",\n PH = \"PH\",\n PK = \"PK\",\n PL = \"PL\",\n PM = \"PM\",\n PN = \"PN\",\n PR = \"PR\",\n PS = \"PS\",\n PT = \"PT\",\n PW = \"PW\",\n PY = \"PY\",\n QA = \"QA\",\n RE = \"RE\",\n RKS = \"RKS\",\n RO = \"RO\",\n RS = \"RS\",\n RU = \"RU\",\n RW = \"RW\",\n SA = \"SA\",\n SB = \"SB\",\n SC = \"SC\",\n SD = \"SD\",\n SE = \"SE\",\n SG = \"SG\",\n SH = \"SH\",\n SI = \"SI\",\n SJ = \"SJ\",\n SK = \"SK\",\n SL = \"SL\",\n SM = \"SM\",\n SN = \"SN\",\n SO = \"SO\",\n SR = \"SR\",\n SS = \"SS\",\n ST = \"ST\",\n SV = \"SV\",\n SX = \"SX\",\n SY = \"SY\",\n SZ = \"SZ\",\n TC = \"TC\",\n TD = \"TD\",\n TF = \"TF\",\n TG = \"TG\",\n TH = \"TH\",\n TJ = \"TJ\",\n TK = \"TK\",\n TL = \"TL\",\n TM = \"TM\",\n TN = \"TN\",\n TO = \"TO\",\n TR = \"TR\",\n TT = \"TT\",\n TV = \"TV\",\n TW = \"TW\",\n TZ = \"TZ\",\n UA = \"UA\",\n UG = \"UG\",\n UM = \"UM\",\n US = \"US\",\n UY = \"UY\",\n UZ = \"UZ\",\n VA = \"VA\",\n VC = \"VC\",\n VE = \"VE\",\n VG = \"VG\",\n VI = \"VI\",\n VN = \"VN\",\n VU = \"VU\",\n WF = \"WF\",\n WS = \"WS\",\n XK = \"XK\",\n YE = \"YE\",\n YT = \"YT\",\n ZA = \"ZA\",\n ZM = \"ZM\",\n ZW = \"ZW\"\n}\n\nexport type CreateConnectedVehicleInput = {\n /** Id from the vehicle */\n vehicle_id: Scalars[\"ID\"];\n /** Connectivity provider used to retrieve data from the vehicle */\n provider: CarConnectivityProvider;\n /** Label for a connected vehicle */\n label?: Maybe<Scalars[\"PlainString\"]>;\n /** Provider specific options. See the developer portal for more details */\n options: CreateConnectedVehicleOptions;\n};\n\nexport type CreateConnectedVehicleOptions = {\n /** Redirect uri */\n redirect_uri?: Maybe<Scalars[\"PlainString\"]>;\n /** Scope */\n scope?: Maybe<Array<ConnectScope>>;\n};\n\nexport type CreateRoute = {\n /** Vehicle used on a route. */\n vehicle: RouteVehicle;\n /** Origin of a route. */\n origin: RouteOriginFeaturePoint;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePoint;\n /** Via points of a route. */\n via?: Maybe<Array<RouteViaFeaturePoint>>;\n /** Operator preferences for a route. */\n operators?: Maybe<RouteOperatorPreferences>;\n /**\n * Season of a route.\n * @deprecated In favor of `weather`.\n */\n season?: Maybe<RouteSeason>;\n /** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */\n alternative_station_radius?: Maybe<AlternativeStationRadius>;\n /** [BETA] Number of alternative routes to request. */\n alternative_routes?: Maybe<Scalars[\"Int\"]>;\n /** Route departure time. */\n departure_time: Scalars[\"DateTime\"];\n /** [BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteAvoid>>;\n /** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */\n driving_preferences?: Maybe<RouteDrivingPreferences>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. */\n weather?: Maybe<RouteWeather>;\n /** Charging stations preferences for route calculation. */\n station_preferences?: Maybe<RouteStationPreferences>;\n /** [BETA] Indicates whether current traffic conditions were considered during route calculation. This feature is disabled by default and requires explicit enablement for your project. Please contact Chargetrip support for more information. */\n traffic_aware?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Input for the create route mutation. */\nexport type CreateRouteInput = {\n /** Vehicle specific input. */\n vehicle: RouteVehicleInput;\n /** Origin of a route. */\n origin: RouteOriginFeaturePointInput;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePointInput;\n /** Optional via points of a route. */\n via?: Maybe<Array<RouteViaFeaturePointInput>>;\n /** Operator preferences and restrictions for route calculation. If not specified, excludes operators per project settings, but applies no operator ranking. */\n operators?: Maybe<RouteOperatorPreferencesInput>;\n /** Optional flag to specify the season. If not specified, defaults to real-time weather data */\n season?: Maybe<RouteSeason>;\n /** Search radius for alternative charging stations along the route. Accepts a value between 500 and 5000 meters (or unit equivalent). If not specified, disables the alternative station search for the generated route. */\n alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;\n /** [BETA] Additional alternative routes to calculate. Performed on a best-effort basis, it may return fewer than requested, or even none. Set to 0 to create only the recommended route. */\n alternative_routes?: Maybe<Scalars[\"Int\"]>;\n /** Route departure time. Used to calculate the expected arrival time. If not specified, defaults to the route's request time. */\n departure_time?: Maybe<Scalars[\"DateTime\"]>;\n /** [BETA] Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteAvoid>>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data. */\n weather?: Maybe<RouteWeatherInput>;\n /** Charging stations preferences for route calculation. */\n station_preferences?: Maybe<RouteStationPreferencesInput>;\n /** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */\n driving_preferences?: Maybe<RouteDrivingPreferencesInput>;\n /** [BETA] Route should consider current traffic conditions. This feature is disabled by default and requires explicit enablement for your project. Please contact Chargetrip support for more information. */\n traffic_aware?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type CreateTruckRoute = {\n /** Vehicle specific input. */\n vehicle: RouteTruckVehicle;\n /** Origin of a route. */\n origin: RouteTruckOriginFeaturePoint;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePoint;\n /** Optional via points of a route. */\n via?: Maybe<Array<RouteTruckViaFeaturePoint>>;\n /** Prioritized operators for a route calculation. */\n operators?: Maybe<RouteOperatorPreferences>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. */\n weather?: Maybe<RouteWeather>;\n /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. If not specified, no alternative stations will be discovered. */\n alternative_station_radius?: Maybe<AlternativeStationRadius>;\n /** Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data. If not specified, defaults to the current request time. */\n departure_time?: Maybe<Scalars[\"DateTime\"]>;\n /** Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteTruckAvoid>>;\n /** Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. */\n maximum_speed?: Maybe<MaximumSpeed>;\n};\n\nexport type CreateTruckRouteInput = {\n /** Vehicle specific input. */\n vehicle: RouteTruckVehicleInput;\n /** Origin of a route. */\n origin: RouteTruckOriginFeaturePointInput;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePointInput;\n /** Optional via points of a route. */\n via?: Maybe<Array<RouteTruckViaFeaturePointInput>>;\n /** Prioritized operators for a route calculation. */\n operators?: Maybe<RouteOperatorPreferencesInput>;\n /** Weather configuration for the route. Defined by a preset or custom weather conditions. */\n weather?: Maybe<RouteWeatherInput>;\n /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. If not specified, no alternative stations will be discovered. */\n alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;\n /** Route departure time. Used to calculate the expected arrival time and, if set in the past, to apply historical weather data. If not specified, defaults to the current request time. */\n departure_time?: Maybe<Scalars[\"DateTime\"]>;\n /** Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteTruckAvoid>>;\n /** Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. */\n maximum_speed?: Maybe<MaximumSpeedInput>;\n};\n\n/** Currency in the ISO 4217 format. */\nexport enum Currency {\n AED = \"AED\",\n AFN = \"AFN\",\n ALL = \"ALL\",\n AMD = \"AMD\",\n ANG = \"ANG\",\n AOA = \"AOA\",\n ARS = \"ARS\",\n AUD = \"AUD\",\n AWG = \"AWG\",\n AZN = \"AZN\",\n BAM = \"BAM\",\n BBD = \"BBD\",\n BDT = \"BDT\",\n BGN = \"BGN\",\n BHD = \"BHD\",\n BIF = \"BIF\",\n BMD = \"BMD\",\n BND = \"BND\",\n BOB = \"BOB\",\n BRL = \"BRL\",\n BSD = \"BSD\",\n BTN = \"BTN\",\n BWP = \"BWP\",\n BYN = \"BYN\",\n BYR = \"BYR\",\n BZD = \"BZD\",\n CAD = \"CAD\",\n CDF = \"CDF\",\n CHF = \"CHF\",\n CLF = \"CLF\",\n CLP = \"CLP\",\n CNY = \"CNY\",\n COP = \"COP\",\n CRC = \"CRC\",\n CUC = \"CUC\",\n CUP = \"CUP\",\n CVE = \"CVE\",\n CZK = \"CZK\",\n DJF = \"DJF\",\n DKK = \"DKK\",\n DOP = \"DOP\",\n DZD = \"DZD\",\n EGP = \"EGP\",\n ERN = \"ERN\",\n ETB = \"ETB\",\n EUR = \"EUR\",\n FJD = \"FJD\",\n FKP = \"FKP\",\n GBP = \"GBP\",\n GEL = \"GEL\",\n GGP = \"GGP\",\n GHS = \"GHS\",\n GIP = \"GIP\",\n GMD = \"GMD\",\n GNF = \"GNF\",\n GTQ = \"GTQ\",\n GYD = \"GYD\",\n HKD = \"HKD\",\n HNL = \"HNL\",\n HRK = \"HRK\",\n HTG = \"HTG\",\n HUF = \"HUF\",\n IDR = \"IDR\",\n ILS = \"ILS\",\n IMP = \"IMP\",\n INR = \"INR\",\n IQD = \"IQD\",\n IRR = \"IRR\",\n ISK = \"ISK\",\n JEP = \"JEP\",\n JMD = \"JMD\",\n JOD = \"JOD\",\n JPY = \"JPY\",\n KES = \"KES\",\n KGS = \"KGS\",\n KHR = \"KHR\",\n KMF = \"KMF\",\n KPW = \"KPW\",\n KRW = \"KRW\",\n KWD = \"KWD\",\n KYD = \"KYD\",\n KZT = \"KZT\",\n LAK = \"LAK\",\n LBP = \"LBP\",\n LKR = \"LKR\",\n LRD = \"LRD\",\n LSL = \"LSL\",\n LTL = \"LTL\",\n LVL = \"LVL\",\n LYD = \"LYD\",\n MAD = \"MAD\",\n MDL = \"MDL\",\n MGA = \"MGA\",\n MKD = \"MKD\",\n MMK = \"MMK\",\n MNT = \"MNT\",\n MOP = \"MOP\",\n MRO = \"MRO\",\n MUR = \"MUR\",\n MVR = \"MVR\",\n MWK = \"MWK\",\n MXN = \"MXN\",\n MYR = \"MYR\",\n MZN = \"MZN\",\n NAD = \"NAD\",\n NGN = \"NGN\",\n NIO = \"NIO\",\n NOK = \"NOK\",\n NPR = \"NPR\",\n NZD = \"NZD\",\n OMR = \"OMR\",\n PAB = \"PAB\",\n PEN = \"PEN\",\n PGK = \"PGK\",\n PHP = \"PHP\",\n PKR = \"PKR\",\n PLN = \"PLN\",\n PYG = \"PYG\",\n QAR = \"QAR\",\n RON = \"RON\",\n RSD = \"RSD\",\n RUB = \"RUB\",\n RWF = \"RWF\",\n SAR = \"SAR\",\n SBD = \"SBD\",\n SCR = \"SCR\",\n SDG = \"SDG\",\n SEK = \"SEK\",\n SGD = \"SGD\",\n SHP = \"SHP\",\n SLL = \"SLL\",\n SOS = \"SOS\",\n SRD = \"SRD\",\n STD = \"STD\",\n SVC = \"SVC\",\n SYP = \"SYP\",\n SZL = \"SZL\",\n THB = \"THB\",\n TJS = \"TJS\",\n TMT = \"TMT\",\n TND = \"TND\",\n TOP = \"TOP\",\n TRY = \"TRY\",\n TTD = \"TTD\",\n TWD = \"TWD\",\n TZS = \"TZS\",\n UAH = \"UAH\",\n UGX = \"UGX\",\n USD = \"USD\",\n UYU = \"UYU\",\n UZS = \"UZS\",\n VEF = \"VEF\",\n VND = \"VND\",\n VUV = \"VUV\",\n WST = \"WST\",\n XAF = \"XAF\",\n XAG = \"XAG\",\n XAU = \"XAU\",\n XCD = \"XCD\",\n XDR = \"XDR\",\n XOF = \"XOF\",\n XPF = \"XPF\",\n YER = \"YER\",\n ZAR = \"ZAR\",\n ZMK = \"ZMK\",\n ZMW = \"ZMW\",\n ZWL = \"ZWL\",\n XPT = \"XPT\",\n XPD = \"XPD\",\n BTC = \"BTC\",\n ETH = \"ETH\",\n BNB = \"BNB\",\n XRP = \"XRP\",\n SOL = \"SOL\",\n DOT = \"DOT\",\n AVAX = \"AVAX\",\n MATIC = \"MATIC\",\n LTC = \"LTC\",\n ADA = \"ADA\"\n}\n\n/** Currency according to the ISO 4217 standard. */\nexport enum CurrencyUnit {\n /** Return the currency in EUR. */\n EUR = \"EUR\",\n /** Return the currency in USD. */\n USD = \"USD\",\n /** Return the currency in GBP. */\n GBP = \"GBP\",\n AED = \"AED\",\n AFN = \"AFN\",\n ALL = \"ALL\",\n AMD = \"AMD\",\n ANG = \"ANG\",\n AOA = \"AOA\",\n ARS = \"ARS\",\n AUD = \"AUD\",\n AWG = \"AWG\",\n AZN = \"AZN\",\n BAM = \"BAM\",\n BBD = \"BBD\",\n BDT = \"BDT\",\n BGN = \"BGN\",\n BIF = \"BIF\",\n BMD = \"BMD\",\n BND = \"BND\",\n BOB = \"BOB\",\n BRL = \"BRL\",\n BSD = \"BSD\",\n BWP = \"BWP\",\n BYN = \"BYN\",\n BZD = \"BZD\",\n CAD = \"CAD\",\n CDF = \"CDF\",\n CHF = \"CHF\",\n CLP = \"CLP\",\n CNY = \"CNY\",\n COP = \"COP\",\n CRC = \"CRC\",\n CVE = \"CVE\",\n CZK = \"CZK\",\n DJF = \"DJF\",\n DKK = \"DKK\",\n DOP = \"DOP\",\n DZD = \"DZD\",\n EGP = \"EGP\",\n ETB = \"ETB\",\n FJD = \"FJD\",\n FKP = \"FKP\",\n GEL = \"GEL\",\n GIP = \"GIP\",\n GMD = \"GMD\",\n GNF = \"GNF\",\n GTQ = \"GTQ\",\n GYD = \"GYD\",\n HKD = \"HKD\",\n HNL = \"HNL\",\n HTG = \"HTG\",\n HUF = \"HUF\",\n IDR = \"IDR\",\n ILS = \"ILS\",\n INR = \"INR\",\n ISK = \"ISK\",\n JMD = \"JMD\",\n JPY = \"JPY\",\n KES = \"KES\",\n KGS = \"KGS\",\n KHR = \"KHR\",\n KMF = \"KMF\",\n KRW = \"KRW\",\n KYD = \"KYD\",\n KZT = \"KZT\",\n LAK = \"LAK\",\n LBP = \"LBP\",\n LKR = \"LKR\",\n LRD = \"LRD\",\n LSL = \"LSL\",\n MAD = \"MAD\",\n MDL = \"MDL\",\n MGA = \"MGA\",\n MKD = \"MKD\",\n MMK = \"MMK\",\n MNT = \"MNT\",\n MOP = \"MOP\",\n MUR = \"MUR\",\n MVR = \"MVR\",\n MWK = \"MWK\",\n MXN = \"MXN\",\n MYR = \"MYR\",\n MZN = \"MZN\",\n NAD = \"NAD\",\n NGN = \"NGN\",\n NIO = \"NIO\",\n NOK = \"NOK\",\n NPR = \"NPR\",\n NZD = \"NZD\",\n PAB = \"PAB\",\n PEN = \"PEN\",\n PGK = \"PGK\",\n PHP = \"PHP\",\n PKR = \"PKR\",\n PLN = \"PLN\",\n PYG = \"PYG\",\n QAR = \"QAR\",\n RON = \"RON\",\n RSD = \"RSD\",\n RUB = \"RUB\",\n RWF = \"RWF\",\n SAR = \"SAR\",\n SBD = \"SBD\",\n SCR = \"SCR\",\n SEK = \"SEK\",\n SGD = \"SGD\",\n SHP = \"SHP\",\n SLE = \"SLE\",\n SOS = \"SOS\",\n SRD = \"SRD\",\n STD = \"STD\",\n SZL = \"SZL\",\n THB = \"THB\",\n TJS = \"TJS\",\n TOP = \"TOP\",\n TRY = \"TRY\",\n TTD = \"TTD\",\n TWD = \"TWD\",\n TZS = \"TZS\",\n UAH = \"UAH\",\n UGX = \"UGX\",\n UYU = \"UYU\",\n UZS = \"UZS\",\n VND = \"VND\",\n VUV = \"VUV\",\n WST = \"WST\",\n XAF = \"XAF\",\n XCD = \"XCD\",\n XOF = \"XOF\",\n XPF = \"XPF\",\n YER = \"YER\",\n ZAR = \"ZAR\",\n ZMW = \"ZMW\"\n}\n\n/** Represents a day of the week. */\nexport enum DayOfWeek {\n MONDAY = \"monday\",\n TUESDAY = \"tuesday\",\n WEDNESDAY = \"wednesday\",\n THURSDAY = \"thursday\",\n FRIDAY = \"friday\",\n SATURDAY = \"saturday\",\n SUNDAY = \"sunday\"\n}\n\nexport enum DimensionUnit {\n /** Return the dimension in meters. */\n METER = \"meter\",\n /** Return the dimension in feet. */\n FOOT = \"foot\",\n /** Return the dimension in kilometers. */\n KILOMETER = \"kilometer\",\n /** Return the dimension in miles. */\n MILE = \"mile\"\n}\n\nexport type DimensionsInput = {\n /** Value of the dimension */\n value: Scalars[\"Float\"];\n /** Dimension unit */\n type: MeasurementUnit;\n};\n\nexport type DistanceInput = {\n /** Value of the distance. */\n value: Scalars[\"Float\"];\n /** Unit of distance. */\n unit: DistanceUnit;\n};\n\nexport enum DistanceUnit {\n /** Distance in meters. */\n METER = \"meter\",\n /** Distance in feet. */\n FOOT = \"foot\",\n /** Distance in kilometers. */\n KILOMETER = \"kilometer\",\n /** Distance in miles. */\n MILE = \"mile\"\n}\n\n/** EVSE data which extends OCPI EVSE. */\nexport type EVSE = {\n /**\n * 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.\n * This field is named uid instead of id, because id could be confused with evse_id which is an eMI3 defined field.\n */\n uid?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n evse_id?: Maybe<Scalars[\"String\"]>;\n /** Indicates the current status of an EVSE. */\n status?: Maybe<OCPIStatus>;\n /** Indicates a planned status update of a nEVSE. */\n status_schedule?: Maybe<Array<Maybe<OCPIStatusSchedule>>>;\n /** List of functionalities that an EVSE is capable of. */\n capabilities?: Maybe<Array<Maybe<OCPICapability>>>;\n /** List of available connectors on an EVSE. */\n connectors?: Maybe<Array<Maybe<Connector>>>;\n /** Level on which a Charge Point is located (in garage buildings) in the locally displayed numbering scheme. */\n floor_level?: Maybe<Scalars[\"String\"]>;\n /** Coordinates of a EVSE. */\n coordinates?: Maybe<OCPIGeoLocation>;\n /** A number/string printed on the outside of an EVSE for visual identification. */\n physical_reference?: Maybe<Scalars[\"String\"]>;\n /** Restrictions that apply to a parking spot. */\n parking_restrictions?: Maybe<Array<Maybe<OCPIParkingRestriction>>>;\n /** Links to images related to an EVSE such as photos or logos. */\n images?: Maybe<Array<Maybe<OCPIImage>>>;\n /** Timestamp when this EVSE or one of its Connectors was last updated (or created). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n /** Indicates if parking is free or paid. */\n parking_cost?: Maybe<ParkingCost>;\n /** Unique ID of the location in the system of the CPO. */\n cpo_external_id?: Maybe<Scalars[\"String\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Custom properties of an EVSE. */\n custom_properties?: Maybe<EvseCustomProperties>;\n};\n\nexport type ElectricityGenerationMethod = {\n /** Fraction of total electricity production. */\n fraction: Scalars[\"Float\"];\n /** Emissions per kWh of the generation method. */\n intensity: Scalars[\"Float\"];\n};\n\nexport type ElectricityGenerationMethodintensityArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type ElevationInput = {\n /** Value of the elevation. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the elevation. */\n type: DistanceUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum ElevationUnit {\n /** Return the elevation in meters. */\n METER = \"meter\",\n /** Return the elevation in feet. */\n FOOT = \"foot\"\n}\n\nexport enum EmissionRateUnit {\n /** Return the emission rate in grams per kilometer. */\n GRAMS_PER_KILOMETER = \"grams_per_kilometer\",\n /** Return the emission rate in ounces per mile. */\n OUNCES_PER_MILE = \"ounces_per_mile\"\n}\n\nexport enum EmissionUnit {\n /** Return the emissions in grams. */\n GRAM = \"gram\",\n /** Return the emissions in ounces. */\n OUNCE = \"ounce\"\n}\n\nexport type EmissionsFactor = {\n /** The name of the area for which the emissions factor was calculated. */\n name: Scalars[\"String\"];\n /** The type of area for which the emissions factor was calculated. */\n type: EmissionsFactorType;\n /** The base regional emissions factor in CO2e/kWh. */\n value: Scalars[\"Float\"];\n};\n\nexport type EmissionsFactorvalueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Emissions factor type. */\nexport enum EmissionsFactorType {\n COUNTRY = \"country\",\n SUBREGION = \"subregion\",\n REGION = \"region\"\n}\n\n/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\nexport type EvseCustomProperties = {\n /** OICP standard custom properties. */\n oicp?: Maybe<OICPEvseCustomProperties>;\n};\n\n/** A GeoJSON Feature<LineString>. */\nexport type FeatureLineString = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: LineString;\n};\n\n/** A GeoJSON Feature<MultiPolygon>. */\nexport type FeatureMultiPolygon = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: MultiPolygon;\n /** Properties of the MultiPolygon Feature. */\n properties?: Maybe<PolygonProperties>;\n};\n\n/** A GeoJSON Feature<Point>. */\nexport type FeatureMultiPolygonPoint = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Optional object where you can store custom data you need in your application. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** A GeoJSON Feature<Point>. */\nexport type FeaturePoint = {\n /** Feature ID. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** A GeoJSON Feature<Point> input. */\nexport type FeaturePointInput = {\n /** The feature ID. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n};\n\n/** A GeoJSON Feature<Point> input. */\nexport type FeaturePointPolygonInput = {\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Optional object where you can store custom data you need in your application. */\n properties?: Maybe<FeaturePointPolygonPropertiesInput>;\n};\n\n/** Properties for Feature<Point> input. */\nexport type FeaturePointPolygonProperties = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Properties for Feature<Point> input. */\nexport type FeaturePointPolygonPropertiesInput = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\n/** GeoJSON Feature type. */\nexport enum FeatureType {\n FEATURE = \"Feature\"\n}\n\nexport type FluidEndOfLifeEmissions = {\n /** Total fluid end of life emissions. */\n total: Scalars[\"Float\"];\n /** Wiper fluid end of life emissions. */\n wiper: Scalars[\"Float\"];\n /** Brake fluid end of life emissions. */\n brake: Scalars[\"Float\"];\n /** Powertrain coolant fluid end of life emissions. */\n powertrain_coolant: Scalars[\"Float\"];\n /** Transmission fluid end of life emissions. */\n transmission: Scalars[\"Float\"];\n /** Motor oil end of life emissions. */\n motor_oil?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type FluidEndOfLifeEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionswiperArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionsbrakeArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionspowertrain_coolantArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionstransmissionArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidEndOfLifeEmissionsmotor_oilArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type FluidMaintenanceEmissions = {\n /** Total fluid maintenance emissions. */\n total: RouteOperationalMaintenanceEmissionsField;\n /** Wiper fluid maintenance emissions. */\n wiper: RouteOperationalMaintenanceEmissionsField;\n /** Brake fluid maintenance emissions. */\n brake: RouteOperationalMaintenanceEmissionsField;\n /** Powertrain coolant fluid maintenance emissions. */\n powertrain_coolant: RouteOperationalMaintenanceEmissionsField;\n /** Transmission fluid maintenance emissions. */\n transmission: RouteOperationalMaintenanceEmissionsField;\n /** Motor oil maintenance emissions. */\n motor_oil?: Maybe<RouteOperationalMaintenanceEmissionsField>;\n};\n\nexport enum FuelConsumptionUnit {\n /** Return the fuel consumption in liters per 100 kilometers. */\n LITERS_PER_100_KILOMETERS = \"liters_per_100_kilometers\",\n /** Return the fuel consumption in miles per gallon. */\n MILES_PER_GALLON = \"miles_per_gallon\"\n}\n\nexport enum FuelUnit {\n /** Return the fuel consumption in liters. */\n LITER = \"liter\",\n /** Return the fuel consumption in US gallon. */\n GALLON = \"gallon\"\n}\n\n/** Geometry point with GPS coordinates */\nexport type GeometryPoint = {\n type: PointType;\n coordinates: Array<Scalars[\"Float\"]>;\n};\n\n/** Mode of heat pump. */\nexport enum HeatPumpMode {\n /** Default to the vehicle configuration. */\n DEFAULT = \"default\",\n /** Vehicle has it installed. */\n INSTALLED = \"installed\",\n /** Vehicle doesn't have it installed. */\n NONE = \"none\"\n}\n\n/** Allowed N (EU) types of heavy vehicles. */\nexport enum HeavyVehiclesEUType {\n /** 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). */\n N1 = \"N1\",\n /** 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). */\n N2 = \"N2\",\n /** 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). */\n N3 = \"N3\",\n /** N3 type of heavy vehicles having O4 type of trailers can be parked at the charging station. N3 vehicles have a maximum mass exceeding 12 tonnes (26,000 lbs) and O4 trailers have a maximum mass exceeding 10 tonnes (22000 lbs). */\n N3_O4 = \"N3_O4\"\n}\n\n/** List of facilities in the location. */\nexport enum HeavyVehiclesFacility {\n /** Truck parking. */\n TRUCK_PARKING = \"TRUCK_PARKING\",\n /** Truck wash. */\n TRUCK_WASH = \"TRUCK_WASH\",\n /** Truck repair. */\n TRUCK_REPAIR = \"TRUCK_REPAIR\",\n /** Truck dealership. */\n TRUCK_DEALERSHIP = \"TRUCK_DEALERSHIP\",\n /** Secure truck parking. */\n SECURE_TRUCK_PARKING = \"SECURE_TRUCK_PARKING\"\n}\n\nexport type Isoline = {\n /** Isoline id. */\n id: Scalars[\"ID\"];\n /** Isoline status. */\n status: IsolineStatus;\n /** Distance from the origin to the furthest reachable point within the isoline. Represents the longest drivable distance, not a straight-line or vehicle range. */\n maximum_distance?: Maybe<Scalars[\"Float\"]>;\n /** Shape of the isoline consisting in a list of multipolygons. */\n polygons?: Maybe<Array<Maybe<FeatureMultiPolygon>>>;\n /** List of the ferries uniting islands formed by the isoline. */\n ferries?: Maybe<Array<Maybe<FeatureLineString>>>;\n /** The inputted request data for the isoline used to compute it. */\n request_input?: Maybe<IsolineRequestInput>;\n};\n\nexport type Isolinemaximum_distanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type IsolineCabin = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type IsolineCabindesired_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\n/** Information about the cabin of the vehicle. */\nexport type IsolineCabinInput = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature?: Maybe<TemperatureInput>;\n};\n\nexport enum IsolineFerryConnectionsType {\n /** Ferry connections should not be included. */\n NONE = \"none\",\n /** Ferry connections should be taken into account but only one level deep. For example: from the European mainland to England and no other connecting ferries departing from England. */\n SINGLE = \"single\"\n}\n\nexport type IsolineInput = {\n /** Vehicle id. */\n vehicle_id: Scalars[\"ID\"];\n /** Origin point of the request. */\n origin: FeaturePointPolygonInput;\n /** Numbers of polygons to be generated (maximum: 20). */\n polygon_count?: Maybe<Scalars[\"Int\"]>;\n /** Vehicle should be able to return to the origin point from any point. */\n round_trip?: Maybe<Scalars[\"Boolean\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Cumulated weight of the occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Cargo weight. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n /** Climate is on. */\n climate_control?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<IsolineCabinInput>;\n /** Weather configuration for the isoline. Defined by a preset or custom weather conditions. If not specified, defaults to real-time weather data. */\n weather?: Maybe<IsolineWeatherInput>;\n /** Season to be taken into account when generating the isoline. If not specified, defaults to real-time weather data. */\n season?: Maybe<RouteSeason>;\n /** Polygons precision quality. */\n quality?: Maybe<IsolineQuality>;\n /** Include ferry connections. Single and multiple ferry connections increase the calculation time and the number of polygons. */\n ferry_connections?: Maybe<IsolineFerryConnectionsType>;\n /** Battery state of charge. Default is usable battery kwh of the inputted vehicle. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Minimum final battery state of charge. Default is 0 */\n final_state_of_charge?: Maybe<StateOfChargeInput>;\n /** [BETA] User-defined maximum speed used for the isoline. */\n maximum_speed?: Maybe<MaximumSpeedInput>;\n};\n\n/** Granularity of the isoline. */\nexport enum IsolineQuality {\n /** High polygons precisions. */\n HIGH = \"high\",\n /** Low polygons precisions. */\n LOW = \"low\"\n}\n\nexport type IsolineRequestInput = {\n /** Vehicle id. */\n vehicle_id: Scalars[\"ID\"];\n /** Origin point of the request. */\n origin: FeaturePoint;\n /** Numbers of polygons that were generated. */\n polygon_count?: Maybe<Scalars[\"Int\"]>;\n /** Vehicle should be able to return to the origin point from any point. */\n round_trip?: Maybe<Scalars[\"Boolean\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Cumulated weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Cargo weight. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Climate is on. */\n climate_control?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<IsolineCabin>;\n /**\n * Season taken into account when isoline was generated.\n * @deprecated In favor of weather.\n */\n season?: Maybe<RouteSeason>;\n /** Weather configuration for the isoline. Defined by a preset or custom weather conditions. */\n weather?: Maybe<IsolineWeather>;\n /** Polygons precision quality. */\n quality?: Maybe<IsolineQuality>;\n /** Ferry connections. */\n ferry_connections?: Maybe<IsolineFerryConnectionsType>;\n /** Battery state of charge. */\n state_of_charge: Scalars[\"Float\"];\n /** Minimum final battery state of charge. */\n final_state_of_charge: Scalars[\"Float\"];\n /** [BETA] Maximum speed to consider when generating the isoline. In the segments where legal speed is lower than this value, the legal speed will be used instead. */\n maximum_speed?: Maybe<MaximumSpeed>;\n};\n\nexport type IsolineRequestInputtotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type IsolineRequestInputtotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type IsolineRequestInputstate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type IsolineRequestInputfinal_state_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Status of the isoline label. */\nexport enum IsolineStatus {\n /** Isoline label has been successfully generated. */\n DONE = \"done\",\n /** Isoline label is under processing. */\n PENDING = \"pending\",\n /** There was an error while generating the isoline label. */\n ERROR = \"error\"\n}\n\nexport type IsolineWeather = {\n /** Weather configuration applied to the isoline. */\n type: WeatherType;\n /** [BETA] Custom weather conditions applied to the isoline. Only present when 'type' is set to 'CUSTOM'. */\n custom?: Maybe<IsolineWeatherCustomConditions>;\n};\n\nexport type IsolineWeatherCustomConditions = {\n /** Average ambient temperature estimated along the isoline. */\n temperature: Temperature;\n /** Atmospheric pressure along the isoline. */\n air_pressure: AirPressure;\n /** Solar irradiance along the isoline. */\n solar_irradiance: SolarIrradiance;\n};\n\nexport type IsolineWeatherCustomConditionsInput = {\n /** Average ambient temperature estimated within the isoline. */\n temperature: TemperatureInput;\n /** Atmospheric pressure within the isoline. */\n air_pressure: AirPressureInput;\n /** Solar irradiance within the isoline. */\n solar_irradiance: SolarIrradianceInput;\n};\n\nexport type IsolineWeatherInput = {\n /** Weather configuration applied within the isoline. */\n type?: Maybe<WeatherType>;\n /** [BETA] Custom weather conditions to apply within the isoline. Required only when 'type' is 'CUSTOM'. Must be omitted for other weather types. */\n custom?: Maybe<IsolineWeatherCustomConditionsInput>;\n};\n\n/** Types of a leg. */\nexport enum LegType {\n /** This leg ends at a charging station and the vehicle must recharge. */\n STATION = \"station\",\n /** This leg ends at a via charging station and the vehicle must recharge. */\n STATIONVIA = \"stationVia\",\n /** This leg ends at a scheduled charging station and the vehicle must recharge. */\n STATIONAMENITY = \"stationAmenity\",\n /** This leg ends at a via location. */\n VIA = \"via\",\n /** This leg ends at the destination, and is the last leg of the route. */\n FINAL = \"final\",\n /** This leg ends at the destination which is a charging station, and is the last leg of the route. */\n STATIONFINAL = \"stationFinal\"\n}\n\n/** A GeoJSON LineString. */\nexport type LineString = {\n /** LineString type. */\n type: LineStringType;\n /** List of coordinates arrays with longitude as first value and latitude as second one. */\n coordinates: Array<Maybe<Array<Scalars[\"Float\"]>>>;\n};\n\n/** GeoJSON LineString type. */\nexport enum LineStringType {\n LINESTRING = \"LineString\"\n}\n\nexport type MaximumSpeed = {\n /** Numeric value of the user-defined maximum speed. */\n value: Scalars[\"Int\"];\n /** Unit in which speed is measured. */\n type: SpeedUnit;\n};\n\nexport type MaximumSpeedInput = {\n /** Numeric value of the user-defined maximum speed. */\n value: Scalars[\"Int\"];\n /** Unit in which speed is measured. */\n type: SpeedUnit;\n};\n\nexport enum MeasurementUnit {\n /** Return the measurement in millimeters. */\n MILLIMETER = \"millimeter\",\n /** Return the measurement in inches. */\n INCH = \"inch\"\n}\n\n/** A GeoJSON Polygon. */\nexport type MultiPolygon = {\n /** MultiPolygon type. */\n type: MultiPolygonType;\n /** List of coordinates representing a polygon. */\n coordinates: Array<\n Maybe<Array<Maybe<Array<Maybe<Array<Scalars[\"Float\"]>>>>>>\n >;\n};\n\n/** GeoJSON MultiPolygon type. */\nexport enum MultiPolygonType {\n MULTIPOLYGON = \"MultiPolygon\"\n}\n\nexport type Mutation = {\n /** [BETA] Create a connected vehicle for a given vehicle id and a connectivity provider */\n createConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Authorize a connected vehicle */\n authorizeConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Update a connected vehicle */\n updateConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Remove a connected vehicle and revoke access */\n removeConnectedVehicle?: Maybe<ConnectedVehicle>;\n /** Create a consumption based isoline. */\n createIsoline?: Maybe<Scalars[\"ID\"]>;\n /** [BETA] Start a new navigation session on top of an existing route */\n startNavigation?: Maybe<Scalars[\"ID\"]>;\n /** [BETA] Update the navigation session */\n updateNavigation?: Maybe<Scalars[\"Boolean\"]>;\n /** [BETA] Recalculate the current navigation route */\n recalculateNavigation?: Maybe<Scalars[\"Boolean\"]>;\n /** [BETA] End a navigation session. */\n finishNavigation?: Maybe<Scalars[\"Boolean\"]>;\n /** [BETA] Advances the active navigation session to the next route leg. */\n advanceNavigationLeg?: Maybe<Scalars[\"Boolean\"]>;\n /**\n * Add a new review.\n * If the `x-token` header is send for a valid user, the review will belong to it, otherwise will be added for an anonymouse user\n */\n addReview: Review;\n /**\n * Remove a review added by an authenticated user.\n * The `x-token` header is mandatory in order to authorize the user who wants to remove a review.\n * In case it is not sent, an error will occur.\n * In case the review was not found or belongs to another user an error will occur.\n * This is a premium feature, contact Chargetrip for more information.\n */\n deleteUserReview: Review;\n /**\n * Create a new route from the route input.\n * @deprecated In favor of `createRoute`.\n */\n newRoute?: Maybe<Scalars[\"ID\"]>;\n /** Create a new route from the route input. */\n createRoute: Scalars[\"ID\"];\n /** [ALPHA] Create a new truck route from the route input and its ID. */\n createTruckRoute: Scalars[\"ID\"];\n};\n\nexport type MutationcreateConnectedVehicleArgs = {\n input?: Maybe<CreateConnectedVehicleInput>;\n};\n\nexport type MutationauthorizeConnectedVehicleArgs = {\n input?: Maybe<AuthorizeConnectedVehicleInput>;\n};\n\nexport type MutationupdateConnectedVehicleArgs = {\n input: UpdateConnectedVehicleInput;\n};\n\nexport type MutationremoveConnectedVehicleArgs = {\n input: RemoveConnectedVehicleInput;\n};\n\nexport type MutationcreateIsolineArgs = {\n input: IsolineInput;\n};\n\nexport type MutationstartNavigationArgs = {\n input: NavigationStartInput;\n};\n\nexport type MutationupdateNavigationArgs = {\n input: NavigationUpdateInput;\n};\n\nexport type MutationrecalculateNavigationArgs = {\n input: NavigationRecalculateInput;\n};\n\nexport type MutationfinishNavigationArgs = {\n input: NavigationFinishInput;\n};\n\nexport type MutationadvanceNavigationLegArgs = {\n input: AdvanceNavigationLegInput;\n};\n\nexport type MutationaddReviewArgs = {\n review: ReviewAdd;\n};\n\nexport type MutationdeleteUserReviewArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type MutationnewRouteArgs = {\n input?: Maybe<RequestInput>;\n};\n\nexport type MutationcreateRouteArgs = {\n input: CreateRouteInput;\n};\n\nexport type MutationcreateTruckRouteArgs = {\n input: CreateTruckRouteInput;\n};\n\n/** Navigation session data. */\nexport type Navigation = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** Navigation session details overview. */\n overview: NavigationOverview;\n /** The status of the navigation session vehicle. The status can be driving, charging or parked. */\n vehicle_status: NavigationVehicleStatus;\n /** The status of a navigation session. The status can be active or finished. */\n status: NavigationStatus;\n /** Navigation meta information. */\n meta?: Maybe<NavigationMeta>;\n};\n\n/** Navigation session alternative station type. */\nexport type NavigationAlternativeStation = {\n /** Coordinates of a station. */\n location: Point;\n /** ID of the station. */\n station_id: Scalars[\"ID\"];\n /** ID of the EVSE that was selected in a route. */\n evse_id?: Maybe<Scalars[\"ID\"]>;\n /** ID of the connector that was selected in a route. */\n connector_id: Scalars[\"ID\"];\n /** Station operator. */\n operator?: Maybe<NavigationStationOperator>;\n};\n\n/** Represents the most recent completed meaningful change to the navigation session. */\nexport type NavigationChange = {\n /** Timestamp when the change was finalized. */\n created_at: Scalars[\"DateTime\"];\n /** What kind of change occurred. */\n type: NavigationChangeType;\n /** Where the change originated from. */\n source: NavigationChangeSource;\n};\n\nexport enum NavigationChangeSource {\n /** Triggered by an explicit client action (e.g. a recalculateNavigation call). */\n CLIENT = \"client\",\n /** Triggered by backend domain changes (e.g. station availability, background recalculation). */\n SERVER = \"server\"\n}\n\nexport enum NavigationChangeType {\n /** Navigation session has just started. */\n STARTED = \"started\",\n /** The route has been modified or recalculated. */\n ROUTE_UPDATED = \"route_updated\",\n /** Next station availability has changed. */\n NEXT_STATION_AVAILABILITY_UPDATED = \"next_station_availability_updated\",\n /** Explicit recalculation/reroute failed. The previous route geometry was kept. */\n ROUTE_UPDATE_FAILED = \"route_update_failed\"\n}\n\n/** Input for the navigation finish. */\nexport type NavigationFinishInput = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** Current coordinates. */\n current_location: PointInput;\n};\n\n/** Navigation route leg section details. */\nexport type NavigationLegSection = {\n /** Section type. */\n type: RouteDetailsLegSectionType;\n /** Origin point. */\n origin: RouteDetailsLegSectionFeaturePoint;\n /** Destination point. */\n destination: RouteDetailsLegSectionFeaturePoint;\n /** Aggregation of tags over the current section. */\n tags: Array<RouteDetailsTag>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Total duration of a section, in seconds. The value will be 0 for walking sections. */\n duration: Scalars[\"Float\"];\n};\n\n/** Navigation route leg section details. */\nexport type NavigationLegSectionpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type NavigationLiveRouteRequest = {\n /** Vehicle used on a route. */\n vehicle: NavigationRouteVehicle;\n /** Origin of a route. */\n origin: RouteOriginFeaturePoint;\n /** Destination of a route. */\n destination: RouteDestinationFeaturePoint;\n /** Via points of a route. */\n via?: Maybe<Array<NavigationViaFeaturePoint>>;\n /** Operator preferences for a route. When provided, prefers routes that use higher order operators. */\n operators?: Maybe<RouteOperatorPreferences>;\n /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */\n alternative_station_radius?: Maybe<AlternativeStationRadius>;\n /** [BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable. */\n avoid?: Maybe<Array<RouteAvoid>>;\n /** [BETA] Configuration options for the route's driving conditions. Includes factors to adjust average speed, set a maximum speed, and define a base driving style. If not specified, no adjustments are applied. */\n driving_preferences?: Maybe<RouteDrivingPreferences>;\n /** Charging stations preferences for route calculation. */\n station_preferences?: Maybe<RouteStationPreferences>;\n};\n\n/** Navigation meta information. */\nexport type NavigationMeta = {\n /** Creation time of the navigation session. */\n created_at: Scalars[\"DateTime\"];\n /** Last updated time of the navigation session. */\n updated_at: Scalars[\"DateTime\"];\n};\n\n/** Navigation session overview details. */\nexport type NavigationOverview = {\n /** State of charge at the last known location. */\n state_of_charge: Scalars[\"Float\"];\n /** Last known location. */\n last_known_location: Point;\n /** Index of the current active route leg. */\n current_leg: Scalars[\"Int\"];\n /** Next stop details. Can be a charging or a location stop. */\n next_stop: NavigationStop;\n /** Continuously updated route legs. */\n legs: Array<Maybe<NavigationRouteLeg>>;\n /** Continuously updated durations of the route. */\n durations: RouteDetailsDurations;\n /** Navigation route instructions. */\n instructions: Array<Maybe<RouteInstruction>>;\n /** Continuously updated route request input. */\n live_route_request: NavigationLiveRouteRequest;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Telemetry data. */\n telemetry?: Maybe<Telemetry>;\n};\n\n/** Navigation session overview details. */\nexport type NavigationOverviewstate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Navigation session overview details. */\nexport type NavigationOverviewpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type NavigationPropertiesStation = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type NavigationPropertiesStationInput = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. Includes charging time and charging penalty. When not provided, the duration is optimized based on the vehicle’s charging needs and selected charging mode. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type NavigationPropertiesVehicle = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight: TotalOccupantWeight;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeight>;\n};\n\nexport type NavigationPropertiesVehicleInput = {\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n};\n\nexport type NavigationPropertiesViaLocation = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type NavigationPropertiesViaLocationInput = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Input for the navigation recalculate. */\nexport type NavigationRecalculateInput = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** State of charge at origin. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Origin location of a new route. */\n current_location: PointInput;\n /** Via points of a new route. If this field is not sent, the original via points will be used. */\n via?: Maybe<Array<NavigationViaFeaturePointInput>>;\n /** Telemetry data input. */\n telemetry?: Maybe<TelemetryInput>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLeg = {\n /** Distance from the start to the end of a leg. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route leg. */\n durations: RouteDetailsDurations;\n /** Origin point location. */\n origin: RouteDetailsLegFeaturePoint;\n /** Destination point location. */\n destination: RouteDetailsLegFeaturePoint;\n /** Range at the start of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Range after charging on the leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_after_charge?: Maybe<Scalars[\"Float\"]>;\n /** Type of a leg. */\n type: RouteDetailsLegType;\n /** Information about the station at the destination of a leg. */\n station?: Maybe<RouteDetailsLegStation>;\n /** Road sections of a leg - divided by means of transportation. */\n sections: Array<NavigationLegSection>;\n /** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Navigation route leg details. */\nexport type NavigationRouteLegrange_after_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type NavigationRouteVehicle = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery: RouteVehicleBattery;\n /** Charging configuration. */\n charging: RouteVehicleCharging;\n /** Flag indicating if climate control is on. */\n climate: Scalars[\"Boolean\"];\n /** Vehicle Heat Pump configuration. */\n heat_pump: HeatPumpMode;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin: RouteVehicleCabin;\n};\n\n/** Input for the navigation start. */\nexport type NavigationStartInput = {\n /** ID of the route request. */\n route_id: Scalars[\"ID\"];\n /** ID of the route. */\n route_details_id: Scalars[\"ID\"];\n /** Current coordinates. */\n current_location: PointInput;\n};\n\n/** Navigation session station type. */\nexport type NavigationStation = {\n /** ID of the station. */\n station_id: Scalars[\"ID\"];\n /** ID of the EVSE that was selected in a route. */\n evse_id?: Maybe<Scalars[\"ID\"]>;\n /** ID of the connector that was selected in a route. */\n connector_id: Scalars[\"ID\"];\n /** Station operator. */\n operator?: Maybe<NavigationStationOperator>;\n};\n\n/** Navigation session station operator. */\nexport type NavigationStationOperator = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n};\n\n/** Status of navigation session. */\nexport enum NavigationStatus {\n /** Navigation session is live and currently tracking. */\n ACTIVE = \"active\",\n /** Navigation session is completed (either manually or automatically 48 hours after the last update). */\n FINISHED = \"finished\"\n}\n\n/** Next stop details. Can be a charging or a location stop. */\nexport type NavigationStop = {\n /** Estimated arrival state of charge at next stop. For HEVs and PHEVs this field will return null. */\n arrival_state_of_charge: Scalars[\"Float\"];\n /** Estimated arrival time at the next stop. */\n arrival_time: Scalars[\"DateTime\"];\n /** Coordinates of the next stop. */\n location: Point;\n /** Next stop's station to charge. Only present if the next stop is a station. */\n station?: Maybe<NavigationStation>;\n /** A set of alternative charging stations to next station. Only present if next stop is a station. */\n alternative_stations?: Maybe<Array<NavigationAlternativeStation>>;\n};\n\n/** Next stop details. Can be a charging or a location stop. */\nexport type NavigationStoparrival_state_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** The navigation session subscription data */\nexport type NavigationSubscription = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** The status of the navigation session vehicle. The status can be driving, charging or parked. */\n vehicle_status: NavigationVehicleStatus;\n /** The status of the navigation session. The status can be active or finished. */\n status: NavigationStatus;\n /** Navigation meta information. */\n meta?: Maybe<NavigationMeta>;\n /** Information about the latest completed change. */\n last_change: NavigationChange;\n /** Index of the current active route leg. */\n current_leg: Scalars[\"Int\"];\n};\n\n/** Input for the navigation update. */\nexport type NavigationUpdateInput = {\n /** ID of the navigation session. */\n id: Scalars[\"ID\"];\n /** A list of locations that were collected since the last update. */\n location_data: Array<NavigationUpdateLocationsInput>;\n};\n\n/** Input for the navigation update locations. */\nexport type NavigationUpdateLocationsInput = {\n /** Location coordinates [longitude, latitude]. */\n coordinates: Array<Scalars[\"Float\"]>;\n /** UNIX timestamp at location, in seconds. */\n timestamp: Scalars[\"Int\"];\n /** Telemetry data input. */\n telemetry?: Maybe<TelemetryInput>;\n};\n\n/** Status of navigation session vehicle. */\nexport enum NavigationVehicleStatus {\n /** Vehicle is driving. */\n DRIVING = \"driving\",\n /** Vehicle is charging. */\n CHARGING = \"charging\",\n /** Vehicle is parked. */\n PARKED = \"parked\"\n}\n\nexport type NavigationViaFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<NavigationViaProperties>;\n};\n\nexport type NavigationViaFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<NavigationViaPropertiesInput>;\n};\n\nexport type NavigationViaProperties = {\n /** Location data of the via point. */\n location?: Maybe<NavigationPropertiesViaLocation>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<NavigationPropertiesVehicle>;\n /** Station data of the via point. */\n station?: Maybe<NavigationPropertiesStation>;\n};\n\nexport type NavigationViaPropertiesInput = {\n /** Location data of the via point. */\n location?: Maybe<NavigationPropertiesViaLocationInput>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<NavigationPropertiesVehicleInput>;\n /** Specifies a charging station at the via. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop. */\n station?: Maybe<NavigationPropertiesStationInput>;\n};\n\n/** This class defines an additional geo location that is relevant for the Charge Point. The geodetic system to be used is WGS 84. */\nexport type OCPIAdditionalGeoLocation = {\n /** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: \".\" Regex: -?[0-9]{1,2}\\.[0-9]{5,7} */\n latitude?: Maybe<Scalars[\"String\"]>;\n /** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: \".\" Regex: -?[0-9]{1,3}\\.[0-9]{5,7} */\n longitude?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n name?: Maybe<OCPIDisplayText>;\n};\n\n/** The capabilities of an EVSE. */\nexport enum OCPICapability {\n /** The EVSE supports charging profiles. */\n CHARGING_PROFILE_CAPABLE = \"CHARGING_PROFILE_CAPABLE\",\n /** The EVSE supports charging preferences. */\n CHARGING_PREFERENCES_CAPABLE = \"CHARGING_PREFERENCES_CAPABLE\",\n /** EVSE has a payment terminal that supports chip cards. */\n CHIP_CARD_SUPPORT = \"CHIP_CARD_SUPPORT\",\n /** EVSE has a payment terminal that supports contactless cards. */\n CONTACTLESS_CARD_SUPPORT = \"CONTACTLESS_CARD_SUPPORT\",\n /** EVSE has a payment terminal that makes it possible to pay for charging using a credit card. */\n CREDIT_CARD_PAYABLE = \"CREDIT_CARD_PAYABLE\",\n /** EVSE has a payment terminal that makes it possible to pay for charging using a debit card. */\n DEBIT_CARD_PAYABLE = \"DEBIT_CARD_PAYABLE\",\n /** EVSE has a payment terminal with a pin-code entry device. */\n PED_TERMINAL = \"PED_TERMINAL\",\n /** The EVSE can remotely be started/stopped. */\n REMOTE_START_STOP_CAPABLE = \"REMOTE_START_STOP_CAPABLE\",\n /** The EVSE can be reserved. */\n RESERVABLE = \"RESERVABLE\",\n /** Charging at this EVSE can be authorized with an RFID token. */\n RFID_READER = \"RFID_READER\",\n /** This EVSE supports token groups, two or more tokens work as one, so that a session can be started with one token and stopped with another (handy when a card and key-fob are given to the EV-driver). */\n TOKEN_GROUP_CAPABLE = \"TOKEN_GROUP_CAPABLE\",\n /** Connectors have a mechanical lock that can be requested by the eMSP to be unlocked. */\n UNLOCK_CAPABLE = \"UNLOCK_CAPABLE\",\n /** When a StartSession is sent to this EVSE, the MSP is required to add the optional connector_id field in the StartSession object. */\n START_SESSION_CONNECTOR_REQUIRED = \"START_SESSION_CONNECTOR_REQUIRED\"\n}\n\n/** The format of the connector, whether it is a socket or a plug. */\nexport enum OCPIConnectorFormat {\n /** The connector is a socket; the EV user needs to bring a fitting plug. */\n SOCKET = \"SOCKET\",\n /** The connector is an attached cable; the EV users car needs to have a fitting inlet. */\n CABLE = \"CABLE\"\n}\n\n/** Socket or plug standard of the charging point. */\nexport enum OCPIConnectorType {\n /** The connector type is CHAdeMO, DC */\n CHADEMO = \"CHADEMO\",\n /** Standard/domestic household, type \"A\", NEMA 1-15, 2 pins */\n DOMESTIC_A = \"DOMESTIC_A\",\n /** Standard/domestic household, type \"B\", NEMA 5-15, 3 pins */\n DOMESTIC_B = \"DOMESTIC_B\",\n /** Standard/domestic household, type \"C\", CEE 7/17, 2 pins */\n DOMESTIC_C = \"DOMESTIC_C\",\n /** Standard/domestic household, type \"D\", 3 pins */\n DOMESTIC_D = \"DOMESTIC_D\",\n /** Standard/domestic household, type \"E\", CEE 7/5 3 pins */\n DOMESTIC_E = \"DOMESTIC_E\",\n /** Standard/domestic household, type \"F\", CEE 7/4, Schuko, 3 pins */\n DOMESTIC_F = \"DOMESTIC_F\",\n /** Standard/domestic household, type \"G\", BS 1363, Commonwealth, 3 pins */\n DOMESTIC_G = \"DOMESTIC_G\",\n /** Standard/domestic household, type \"H\", SI-32, 3 pins */\n DOMESTIC_H = \"DOMESTIC_H\",\n /** Standard/domestic household, type \"I\", AS 3112, 3 pins */\n DOMESTIC_I = \"DOMESTIC_I\",\n /** Standard/domestic household, type \"J\", SEV 1011, 3 pins */\n DOMESTIC_J = \"DOMESTIC_J\",\n /** Standard/domestic household, type \"K\", DS 60884-2-D1, 3 pins */\n DOMESTIC_K = \"DOMESTIC_K\",\n /** Standard/domestic household, type \"L\", CEI 23-16-VII, 3 pins */\n DOMESTIC_L = \"DOMESTIC_L\",\n /** Standard/Domestic household, type \"M\", BS 546, 3 pins */\n DOMESTIC_M = \"DOMESTIC_M\",\n /** Standard/Domestic household, type \"N\", NBR 14136, 3 pins */\n DOMESTIC_N = \"DOMESTIC_N\",\n /** Standard/Domestic household, type \"O\", TIS 166-2549, 3 pins */\n DOMESTIC_O = \"DOMESTIC_O\",\n /** IEC 60309-2 Industrial connector single phase 16 amperes (usually blue) */\n IEC_60309_2_SINGLE_16 = \"IEC_60309_2_single_16\",\n /** IEC 60309-2 Industrial connector three phase 16 amperes (usually red) */\n IEC_60309_2_THREE_16 = \"IEC_60309_2_three_16\",\n /** IEC 60309-2 Industrial connector three phase 32 amperes (usually red) */\n IEC_60309_2_THREE_32 = \"IEC_60309_2_three_32\",\n /** IEC 60309-2 Industrial connector three phase 64 amperes (usually red) */\n IEC_60309_2_THREE_64 = \"IEC_60309_2_three_64\",\n /** IEC 62196 Type 1 \"SAE J1772\" */\n IEC_62196_T1 = \"IEC_62196_T1\",\n /** Combo Type 1 based, DC */\n IEC_62196_T1_COMBO = \"IEC_62196_T1_COMBO\",\n /** IEC 62196 Type 2 \"Mennekes\" */\n IEC_62196_T2 = \"IEC_62196_T2\",\n /** Combo Type 2 based, DC */\n IEC_62196_T2_COMBO = \"IEC_62196_T2_COMBO\",\n /** IEC 62196 Type 3A */\n IEC_62196_T3A = \"IEC_62196_T3A\",\n /** IEC 62196 Type 3C \"Scame\" */\n IEC_62196_T3C = \"IEC_62196_T3C\",\n /** On-board bottom-up-pantograph typically for bus charging */\n PANTOGRAPH_BOTTOM_UP = \"PANTOGRAPH_BOTTOM_UP\",\n /** Off-board top-down-pantograph typically for bus charging */\n PANTOGRAPH_TOP_DOWN = \"PANTOGRAPH_TOP_DOWN\",\n /** Tesla connector \"Roadster\"-type (round, 4 pins) */\n TESLA_R = \"TESLA_R\",\n /** Tesla connector \"Model-S\"-type (oval, 5 pins) */\n TESLA_S = \"TESLA_S\",\n /** The connector type is GB_T (Chinese standard), DC */\n GB_T = \"GB_T\",\n /** The ChaoJi connector. The new generation charging connector, harmonized between CHAdeMO and GB/T. DC. */\n CHAOJI = \"CHAOJI\",\n /** The connector type is NEMA 5-20, 3 pins */\n NEMA_5_20 = \"NEMA_5_20\",\n /** The connector type is NEMA 6-30, 3 pins */\n NEMA_6_30 = \"NEMA_6_30\",\n /** The connector type is NEMA 6-50, 3 pins */\n NEMA_6_50 = \"NEMA_6_50\",\n /** The connector type is NEMA 10-30, 3 pins */\n NEMA_10_30 = \"NEMA_10_30\",\n /** The connector type is NEMA 10-50, 3 pins */\n NEMA_10_50 = \"NEMA_10_50\",\n /** The connector type is NEMA 14-30, 3 pins, rating of 30 A */\n NEMA_14_30 = \"NEMA_14_30\",\n /** The connector type is NEMA 14-50, 3 pins, rating of 50 A */\n NEMA_14_50 = \"NEMA_14_50\",\n /** Guobiao GB/T 20234.2 AC socket/connector. */\n GBT_AC = \"GBT_AC\",\n /** Guobiao GB/T 20234.3 DC connector. */\n GBT_DC = \"GBT_DC\"\n}\n\nexport enum OCPIDayOfWeek {\n MONDAY = \"MONDAY\",\n TUESDAY = \"TUESDAY\",\n WEDNESDAY = \"WEDNESDAY\",\n THURSDAY = \"THURSDAY\",\n FRIDAY = \"FRIDAY\",\n SATURDAY = \"SATURDAY\",\n SUNDAY = \"SUNDAY\"\n}\n\nexport type OCPIDisplayText = {\n /** Language Code ISO 639-1 */\n language?: Maybe<Scalars[\"String\"]>;\n /** Text to be displayed to an end user. No markup, html etc. allowed. */\n text?: Maybe<Scalars[\"String\"]>;\n};\n\n/** This type is used to specify the energy mix and environmental impact of the supplied energy at a location or in a tariff. */\nexport type OCPIEnergyMix = {\n /** True if the power is 100% from regenerative sources */\n is_green_energy?: Maybe<Scalars[\"Boolean\"]>;\n /** Key-value pairs (enum + percentage) of energy sources of this location’s tariff. */\n energy_sources?: Maybe<Array<Maybe<OCPIEnergySource>>>;\n /** Key-value pairs (enum + percentage) of nuclear waste and CO2 exhaust of this location’s tariff. */\n environ_impact?: Maybe<Array<Maybe<OCPIEnvironmentalImpact>>>;\n /** Name of the energy supplier, delivering the energy for this location or tariff.* */\n supplier_name?: Maybe<Scalars[\"String\"]>;\n /** Name of the energy suppliers product/tariff plan used at this location.* */\n energy_product_name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type OCPIEnergySource = {\n /** The type of energy source. */\n source?: Maybe<OCPIEnergySourceCategory>;\n /** Percentage of this source (0-100) in the mix. */\n percentage?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Categories of energy sources. */\nexport enum OCPIEnergySourceCategory {\n /** Nuclear power sources. */\n NUCLEAR = \"NUCLEAR\",\n /** All kinds of fossil power sources. */\n GENERAL_FOSSIL = \"GENERAL_FOSSIL\",\n /** Fossil power from coal. */\n COAL = \"COAL\",\n /** Fossil power from gas. */\n GAS = \"GAS\",\n /** All kinds of regenerative power sources. */\n GENERAL_GREEN = \"GENERAL_GREEN\",\n /** Regenerative power from PV. */\n SOLAR = \"SOLAR\",\n /** Regenerative power from wind turbines. */\n WIND = \"WIND\",\n /** Regenerative power from water turbines. */\n WATER = \"WATER\"\n}\n\n/** Amount of waste produced/emitted per kWh. */\nexport type OCPIEnvironmentalImpact = {\n /** The environmental impact category of this value. */\n category?: Maybe<OCPIEnvironmentalImpactCategory>;\n /** Amount of this portion in g/kWh. */\n amount?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Categories of environmental impact values. */\nexport enum OCPIEnvironmentalImpactCategory {\n /** Produced nuclear waste in g/kWh. */\n NUCLEAR_WASTE = \"NUCLEAR_WASTE\",\n /** Exhausted carbon dioxide in g/kWh. */\n CARBON_DIOXIDE = \"CARBON_DIOXIDE\"\n}\n\n/** Specifies one exceptional period for opening or access hours. */\nexport type OCPIExceptionalPeriod = {\n /** Begin of the exception. In UTC, time_zone field can be used to convert to local time. */\n period_begin?: Maybe<Scalars[\"DateTime\"]>;\n /** End of the exception. In UTC, time_zone field can be used to convert to local time. */\n period_end?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport enum OCPIFacility {\n /** A hotel. */\n HOTEL = \"HOTEL\",\n /** A restaurant. */\n RESTAURANT = \"RESTAURANT\",\n /** A cafe. */\n CAFE = \"CAFE\",\n /** A mall or shopping center. */\n MALL = \"MALL\",\n /** A supermarket. */\n SUPERMARKET = \"SUPERMARKET\",\n /** Sport facilities: gym, field etc. */\n SPORT = \"SPORT\",\n /** A recreation area. */\n RECREATION_AREA = \"RECREATION_AREA\",\n /** Located in, or close to, a park, nature reserve etc. */\n NATURE = \"NATURE\",\n /** A museum. */\n MUSEUM = \"MUSEUM\",\n /** A bike/e-bike/e-scooter sharing location. */\n BIKE_SHARING = \"BIKE_SHARING\",\n /** A bus stop. */\n BUS_STOP = \"BUS_STOP\",\n /** A taxi stand. */\n TAXI_STAND = \"TAXI_STAND\",\n /** A tram stop/station. */\n TRAM_STOP = \"TRAM_STOP\",\n /** A metro station. */\n METRO_STATION = \"METRO_STATION\",\n /** A train station. */\n TRAIN_STATION = \"TRAIN_STATION\",\n /** An airport. */\n AIRPORT = \"AIRPORT\",\n /** A parking lot. */\n PARKING_LOT = \"PARKING_LOT\",\n /** A carpool parking. */\n CARPOOL_PARKING = \"CARPOOL_PARKING\",\n /** A Fuel station. */\n FUEL_STATION = \"FUEL_STATION\",\n /** Wifi or other type of internet available. */\n WIFI = \"WIFI\"\n}\n\n/** This class defines the geo location of the Charge Point. The geodetic system to be used is WGS 84. */\nexport type OCPIGeoLocation = {\n /** Latitude of the point in decimal degree. Example: 50.770774. Decimal separator: \".\" Regex: -?[0-9]{1,2}\\.[0-9]{5,7} */\n latitude?: Maybe<Scalars[\"String\"]>;\n /** Longitude of the point in decimal degree. Example: -126.104965. Decimal separator: \".\" Regex: -?[0-9]{1,3}\\.[0-9]{5,7} */\n longitude?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Opening and access hours of the location. */\nexport type OCPIHours = {\n /** True to represent 24 hours a day and 7 days a week, except the given exceptions. */\n twentyfourseven?: Maybe<Scalars[\"Boolean\"]>;\n /** Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object. */\n regular_hours?: Maybe<Array<Maybe<OCPIRegularHours>>>;\n /** Exceptions for specified calendar dates, time-range based. Periods the station is operating/accessible. Additional to regular_hours. May overlap regular rules. */\n exceptional_openings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;\n /** 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. */\n exceptional_closings?: Maybe<Array<Maybe<OCPIExceptionalPeriod>>>;\n};\n\nexport type OCPIImage = {\n /** URL from where the image data can be fetched through a web browser. */\n url?: Maybe<Scalars[\"String\"]>;\n /** URL from where a thumbnail of the image can be fetched through a webbrowser. */\n thumbnail?: Maybe<Scalars[\"String\"]>;\n /** Category of an image */\n category?: Maybe<OCPIImageCategory>;\n /** Image type: gif, jpeg, png, svg */\n type?: Maybe<Scalars[\"String\"]>;\n /** Width of the full scale image */\n width?: Maybe<Scalars[\"Int\"]>;\n /** Height of the full scale image */\n height?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** 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. */\nexport enum OCPIImageCategory {\n /** Photo of the physical device that contains one or more EVSEs. */\n CHARGER = \"CHARGER\",\n /** Location entrance photo. Should show the car entrance to the location from street side. */\n ENTRANCE = \"ENTRANCE\",\n /** Location overview photo. */\n LOCATION = \"LOCATION\",\n /** Logo of an associated roaming network to be displayed with the EVSE for example in lists, maps and detailed information views. */\n NETWORK = \"NETWORK\",\n /** Logo of the charge point operator, for example a municipality, to be displayed in the EVSEs detailed information view or in lists and maps, if no network logo is present. */\n OPERATOR = \"OPERATOR\",\n /** Other */\n OTHER = \"OTHER\",\n /** Logo of the charge point owner, for example a local store, to be displayed in the EVSEs detailed information view. */\n OWNER = \"OWNER\"\n}\n\n/** This value, if provided, represents the restriction to the parking spot for different purposes. */\nexport enum OCPIParkingRestriction {\n /** Reserved parking spot for electric vehicles. */\n EV_ONLY = \"EV_ONLY\",\n /** Parking is only allowed while plugged in (charging). */\n PLUGGED = \"PLUGGED\",\n /** Reserved parking spot for disabled people with valid ID. */\n DISABLED = \"DISABLED\",\n /** Parking spot for customers/guests only, for example in case of a hotel or shop. */\n CUSTOMERS = \"CUSTOMERS\",\n /** Parking spot only suitable for (electric) motorcycles or scooters. */\n MOTORCYCLES = \"MOTORCYCLES\"\n}\n\n/** Reflects the general type of the charge point’s location. May be used for user information. */\nexport enum OCPIParkingType {\n /** Location on a parking facility/rest area along a motorway, freeway, interstate, highway etc. */\n ALONG_MOTORWAY = \"ALONG_MOTORWAY\",\n /** Multistorey car park. */\n PARKING_GARAGE = \"PARKING_GARAGE\",\n /** A cleared area that is intended for parking vehicles, i.e. at supermarkets, bars, etc. */\n PARKING_LOT = \"PARKING_LOT\",\n /** Location is on the driveway of a house/building. */\n ON_DRIVEWAY = \"ON_DRIVEWAY\",\n /** Parking in public space along a street. */\n ON_STREET = \"ON_STREET\",\n /** Multistorey car park, mainly underground. */\n UNDERGROUND_GARAGE = \"UNDERGROUND_GARAGE\"\n}\n\nexport enum OCPIPowerType {\n /** AC single phase. */\n AC_1_PHASE = \"AC_1_PHASE\",\n /** AC three phase. */\n AC_3_PHASE = \"AC_3_PHASE\",\n /** AC two phases, only two of the three available phases connected. */\n AC_2_PHASE = \"AC_2_PHASE\",\n /** AC two phases using split phase system. */\n AC_2_PHASE_SPLIT = \"AC_2_PHASE_SPLIT\",\n /** Direct Current. */\n DC = \"DC\"\n}\n\nexport type OCPIPrice = {\n /** Price/Cost excluding VAT. */\n excl_vat?: Maybe<Scalars[\"Float\"]>;\n /** Price/Cost including VAT. */\n incl_vat?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type OCPIPriceComponent = {\n /** Type of tariff dimension. */\n type?: Maybe<OCPITariffDimensionType>;\n /** Price per unit (excl. VAT) for this tariff dimension. */\n price?: Maybe<Scalars[\"Float\"]>;\n /** 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. */\n vat?: Maybe<Scalars[\"Float\"]>;\n /** 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. */\n step_size?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Regular recurring operation or access hours. */\nexport type OCPIRegularHours = {\n /** Number of days in the week, from Monday (1) till Sunday (7) */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** 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]. */\n period_begin?: Maybe<Scalars[\"String\"]>;\n /** End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin. */\n period_end?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum OCPIReservationRestrictionType {\n /** Used in TariffElements to describe costs for a reservation. */\n RESERVATION = \"RESERVATION\",\n /** Used in TariffElements to describe costs for a reservation that expires (i.e. driver does not start a charging session before expiry_date of the reservation). */\n RESERVATION_EXPIRES = \"RESERVATION_EXPIRES\"\n}\n\n/** The status of an EVSE. */\nexport enum OCPIStatus {\n /** The EVSE/Connector is able to start a new charging session. */\n AVAILABLE = \"AVAILABLE\",\n /** The EVSE/Connector is not accessible because of a physical barrier, i.e. a car. */\n BLOCKED = \"BLOCKED\",\n /** The EVSE/Connector is in use. */\n CHARGING = \"CHARGING\",\n /** The EVSE/Connector is not yet active or it is no longer available (deleted). */\n INOPERATIVE = \"INOPERATIVE\",\n /** The EVSE/Connector is currently out of order. */\n OUTOFORDER = \"OUTOFORDER\",\n /** The EVSE/Connector is planned, will be operating soon. */\n PLANNED = \"PLANNED\",\n /** The EVSE/Connector was discontinued/removed. */\n REMOVED = \"REMOVED\",\n /** The EVSE/Connector is reserved for a particular EV driver and is unavailable for other drivers. */\n RESERVED = \"RESERVED\",\n /** No status information available (also used when offline). */\n UNKNOWN = \"UNKNOWN\"\n}\n\n/** 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. */\nexport type OCPIStatusSchedule = {\n /** Begin of the scheduled period. */\n period_begin?: Maybe<Scalars[\"DateTime\"]>;\n /** End of the scheduled period, if known. */\n period_end?: Maybe<Scalars[\"DateTime\"]>;\n /** Status value during the scheduled period. */\n status?: Maybe<OCPIStatus>;\n};\n\nexport type OCPITariff = {\n /** ISO-3166 alpha-2 country code of the CPO that owns this tariff */\n country_code?: Maybe<Scalars[\"String\"]>;\n /** CPO ID of the CPO that owns this tariff (following the ISO-15118 standard) */\n party_id?: Maybe<Scalars[\"String\"]>;\n /** Uniquely identifies the tariff within the CPO’s platform (and suboperator platforms) */\n id?: Maybe<Scalars[\"String\"]>;\n /** ISO-4217 code of the currency of this tariff. */\n currency?: Maybe<Scalars[\"String\"]>;\n /** 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 */\n type?: Maybe<OCPITariffType>;\n /** List of alternative tariff information texts, in multiple languages */\n tariff_alt_text?: Maybe<Array<Maybe<OCPIDisplayText>>>;\n /** URL to a web page that contains an explanation of the tariff information in human readable form */\n tariff_alt_url?: Maybe<Scalars[\"String\"]>;\n /** 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 */\n min_price?: Maybe<OCPIPrice>;\n /** When this field is set, a charging session with this tariff will NOT cost more than this amount */\n max_price?: Maybe<OCPIPrice>;\n /** List of tariff elements */\n elements?: Maybe<Array<Maybe<OCPITariffElement>>>;\n /** 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 */\n start_date_time?: Maybe<Scalars[\"DateTime\"]>;\n /** 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 */\n end_date_time?: Maybe<Scalars[\"DateTime\"]>;\n /** Details about the energy supplied with this tariff */\n energy_mix?: Maybe<OCPIEnergyMix>;\n /** Timestamp when this tariff was last updated (or created) */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n};\n\nexport enum OCPITariffDimensionType {\n /** Defined in kWh, step_size multiplier: 1 Wh */\n ENERGY = \"ENERGY\",\n /** Flat fee without unit for step_size */\n FLAT = \"FLAT\",\n /** Time not charging: defined in hours, step_size multiplier: 1 second */\n PARKING_TIME = \"PARKING_TIME\",\n /** Time charging: defined in hours, step_size multiplier: 1 second Can also be used in combination with a RESERVATION restriction to describe the price of the reservation time. */\n TIME = \"TIME\"\n}\n\nexport type OCPITariffElement = {\n /** List of price components that describe the pricing of a tariff. */\n price_components?: Maybe<Array<Maybe<OCPIPriceComponent>>>;\n /** Restrictions that describe the applicability of a tariff. */\n restrictions?: Maybe<Array<Maybe<OCPITariffRestrictions>>>;\n};\n\nexport type OCPITariffRestrictions = {\n /** 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] */\n start_time?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n end_time?: Maybe<Scalars[\"String\"]>;\n /** 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]) */\n start_date?: Maybe<Scalars[\"String\"]>;\n /** 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 */\n end_date?: Maybe<Scalars[\"String\"]>;\n /** Minimum consumed energy in kWh, for example 20, valid from this amount of energy being used */\n min_kwh?: Maybe<Scalars[\"Float\"]>;\n /** Maximum consumed energy in kWh, for example 50, valid until this amount of energy being used */\n max_kwh?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n min_current?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n max_current?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n min_power?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n max_power?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n min_duration?: Maybe<Scalars[\"Float\"]>;\n /** 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 */\n max_duration?: Maybe<Scalars[\"Float\"]>;\n /** Which day(s) of the week this tariff element is active. */\n day_of_week?: Maybe<OCPIDayOfWeek>;\n /** 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 */\n reservation?: Maybe<OCPIReservationRestrictionType>;\n};\n\nexport enum OCPITariffType {\n /** Used to describe that a tariff is valid when ad-hoc payment is used at the charge point (for example: Debit or Credit card payment terminal) */\n AD_HOC_PAYMENT = \"AD_HOC_PAYMENT\",\n /** Used to describe that a tariff is valid when charging preference: CHEAP is set for the session */\n PROFILE_CHEAP = \"PROFILE_CHEAP\",\n /** Used to describe that a tariff is valid when charging preference: FAST is set for the session */\n PROFILE_FAST = \"PROFILE_FAST\",\n /** Used to describe that a tariff is valid when charging preference: GREEN is set for the session */\n PROFILE_GREEN = \"PROFILE_GREEN\",\n /** 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 */\n REGULAR = \"REGULAR\"\n}\n\n/** List of charging modes that are supported. */\nexport enum OICPChargingModes {\n MODE_1 = \"mode_1\",\n MODE_2 = \"mode_2\",\n MODE_3 = \"mode_3\",\n MODE_4 = \"mode_4\",\n CHADEMO = \"chademo\"\n}\n\n/** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */\nexport type OICPConnectorCustomProperties = {\n /** Returns whether the connector is able to deliver different power outputs. */\n dynamic_power_level?: Maybe<Scalars[\"Boolean\"]>;\n /** List of charging modes that are supported as specified by IEC 61851-1. */\n charging_modes?: Maybe<Array<OICPChargingModes>>;\n};\n\n/** List of authentication modes that are supported. */\nexport enum OICPEvseAuthenticationMode {\n NFC_RFID_CLASSIC = \"nfc_rfid_classic\",\n NFC_RFID_DESFIRE = \"nfc_rfid_desfire\",\n PNC = \"pnc\",\n REMOTE = \"remote\",\n DIRECT_PAYMENT = \"direct_payment\",\n NO_AUTHENTICATION_REQUIRED = \"no_authentication_required\"\n}\n\n/** Custom EVSE properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\nexport type OICPEvseCustomProperties = {\n /** List of authentication modes that are supported. */\n authentication_modes: Array<OICPEvseAuthenticationMode>;\n /** Returns a value if the EVSE has a limited capacity (e.g. built-in battery). Values are in kWh. */\n max_capacity?: Maybe<Scalars[\"Int\"]>;\n /** List of payment options that are supported. */\n payment_options: Array<OICPPaymentOptions>;\n /** List of value added services that are supported. */\n value_added_services: Array<OICPValueAddedServices>;\n /** List of additional info by locale. */\n additional_info?: Maybe<Array<OICPEvseCustomPropertiesAdditionalInfo>>;\n /** When the value is set to false this station does not support remote start and stop by Hubject. */\n is_hubject_compatible: Scalars[\"Boolean\"];\n /** Name of the charging point manufacturer. */\n hardware_manufacturer?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type OICPEvseCustomPropertiesAdditionalInfo = {\n /** The language in which the additional info text is provided. */\n lang?: Maybe<Scalars[\"String\"]>;\n /** Additional info text value. */\n value?: Maybe<Scalars[\"String\"]>;\n};\n\n/** List of payment options that are supported. */\nexport enum OICPPaymentOptions {\n NO_PAYMENT = \"no_payment\",\n DIRECT = \"direct\",\n CONTRACT = \"contract\"\n}\n\n/** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\nexport type OICPStationCustomProperties = {\n /** Returns whether the station is a parking facility. */\n parking_facility?: Maybe<Scalars[\"Boolean\"]>;\n /** Returns an identifier for the precise parking spot. Eg. 36 or 12-1. */\n parking_spot?: Maybe<Scalars[\"String\"]>;\n /** Returns information on how the charging station provides metering law data. */\n calibration_law_data_availability: Scalars[\"String\"];\n /** Identification of the corresponding clearing house in the event that roaming between different clearing houses must be processed in the future. */\n clearinghouse_id?: Maybe<Scalars[\"String\"]>;\n};\n\n/** List of value added services that are supported. */\nexport enum OICPValueAddedServices {\n RESERVATION = \"reservation\",\n DYNAMIC_PRICING = \"dynamic_pricing\",\n PARKING_SENSORS = \"parking_sensors\",\n MAXIMUM_POWER_CHARGING = \"maximum_power_charging\",\n PREDICTIVE_CHARGE_POINT_USAGE = \"predictive_charge_point_usage\",\n CHARGING_PLANS = \"charging_plans\",\n ROOF_PROVIDED = \"roof_provided\",\n NONE = \"none\"\n}\n\nexport type Odometer = {\n /** Value of the vehicle's odometer. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's odometer. */\n type: DistanceUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type OdometerInput = {\n /** Value of the vehicle's odometer. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's odometer. */\n type: DistanceUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Operator data which extends OCPI BusinessDetails. */\nexport type Operator = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of an operator provided by the operator data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** Name of an operator. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Link to an operator’s website. */\n website?: Maybe<Scalars[\"String\"]>;\n /** Image link to an operator’s logo. */\n logo?: Maybe<OCPIImage>;\n /**\n * ISO-3166 alpha-2 country code an operator is active in.\n * @deprecated In favor of `countries`.\n */\n country?: Maybe<Scalars[\"String\"]>;\n /** ISO-3166 alpha-2 country codes an operator is active in. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n /** Contact information. */\n contact?: Maybe<Contact>;\n /**\n * Ranking level on which the operator is placed or null in case the operator is not on any ranking level. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.\n * @deprecated In favor of `ranking_levels`.\n */\n ranking?: Maybe<Scalars[\"Int\"]>;\n /**\n * Flag which indicates if the operator is in the excluded list. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.\n * @deprecated In favor of `excluded_countries`.\n */\n excluded?: Maybe<Scalars[\"Boolean\"]>;\n /** Ranking configuration for the operator. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n ranking_levels?: Maybe<OperatorRankingLevels>;\n /** List of countries where the operator is excluded. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n excluded_countries?: Maybe<Array<CountryCodeAlpha2>>;\n /** List of countries where the operator is avoided. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n avoided_countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\n/** Criteria to filter operators in the operator list query. */\nexport type OperatorListFilter = {\n /** ISO-3166 alpha-2 country codes an operator is active in. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n /** List of ranking level(s) to be retrieved. Valid values are 1 to 10. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request. */\n ranking?: Maybe<Array<Scalars[\"Int\"]>>;\n /** Only retrieve operators that are in the excluded list. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request. */\n excluded?: Maybe<Scalars[\"Boolean\"]>;\n /** List of ranking level(s) to be retrieved. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n ranking_levels?: Maybe<OperatorRankingLevelsFilter>;\n /** List of countries where the operator is excluded. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\n excluded_countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\n/** Query parameters to filter operators in the operator list query. */\nexport type OperatorListQuery = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of an operator provided by an operator data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** Exact name. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Exact country code. */\n country?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum OperatorPreferenceType {\n /** Operators that have been set as preferred or required. */\n RANKED = \"ranked\",\n /** Operators that have not been set as neither preferred or required or avoided nor excluded. */\n UNRANKED = \"unranked\",\n /** Operators that have been set to be avoided. */\n AVOIDED = \"avoided\",\n /** Operators that have been set to be excluded. */\n EXCLUDED = \"excluded\"\n}\n\n/** Operator ranking level. */\nexport enum OperatorRankingLevel {\n LOW = \"low\",\n MEDIUM = \"medium\",\n HIGH = \"high\"\n}\n\n/** Ranking configuration for the operator. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request. */\nexport type OperatorRankingLevels = {\n /** Low level for operators ranking. */\n low?: Maybe<Array<CountryCodeAlpha2>>;\n /** Medium level for operators ranking. */\n medium?: Maybe<Array<CountryCodeAlpha2>>;\n /** High level for operators ranking. */\n high?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\n/** Filter operators by ranking levels. */\nexport type OperatorRankingLevelsFilter = {\n /** Low level for operators ranking. */\n low?: Maybe<Array<CountryCodeAlpha2>>;\n /** Medium level for operators ranking. */\n medium?: Maybe<Array<CountryCodeAlpha2>>;\n /** High level for operators ranking. */\n high?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\nexport type OutsideTempInput = {\n /** Value of the outside temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the outside temperature. */\n type: TemperatureUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type OutsideTemperature = {\n /** Value of the temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the outside temperature. */\n type: TemperatureUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type OutsideTemperatureInput = {\n /** Value of the outside temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the outside temperature. */\n type: TemperatureUnit;\n /** Source of inputted data. */\n source?: Maybe<TelemetryInputSource>;\n};\n\n/** Information about the list page. */\nexport type PageInfo = {\n /** Flag that indicates if it has a next page. */\n has_next_page: Scalars[\"Boolean\"];\n /** Flag that indicates if it has a previous page. */\n has_previous_page: Scalars[\"Boolean\"];\n /** Cursor of the first connection of the page. If the page is empty, this is null. */\n start_cursor?: Maybe<Scalars[\"String\"]>;\n /** Cursor of the last connection of the page. If the page is empty, this is null. */\n end_cursor?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum ParkingCost {\n /** Parking is free. */\n FREE = \"free\",\n /** Parking includes a fee. */\n PAID = \"paid\"\n}\n\nexport type PathSegment = {\n /** Elevation (altitude) in meters. */\n elevation?: Maybe<Scalars[\"Int\"]>;\n /** Average speed, in km/h, for this route path segment. */\n averageSpeed?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of a route path segment. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh per km, of a route path segment. */\n consumptionPerKm?: Maybe<Scalars[\"Float\"]>;\n /** Distance, in meters, of a route path segment. */\n distance?: Maybe<Scalars[\"Float\"]>;\n /** Duration, in seconds, of a route path segment. */\n duration?: Maybe<Scalars[\"Float\"]>;\n /** State of charge, in kWh, of a route path segment. */\n stateOfCharge?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** A GeoJSON Point. */\nexport type Point = {\n /** Point type. */\n type: PointType;\n /** The coordinates array with longitude as first value and latitude as second one. */\n coordinates: Array<Scalars[\"Float\"]>;\n};\n\n/** A GeoJSON Point input. */\nexport type PointInput = {\n /** Point type. */\n type: PointType;\n /** Coordinates [longitude, latitude]. */\n coordinates: Array<Scalars[\"Float\"]>;\n};\n\n/** GeoJSON Point type. */\nexport enum PointType {\n POINT = \"Point\"\n}\n\n/** Polygon properties. */\nexport type PolygonProperties = {\n /** Index of the feature inside the list. */\n index?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Number of decimals for a polyline. */\nexport enum PolylineInputDecimals {\n FIVE = \"five\",\n SIX = \"six\"\n}\n\nexport type PowerInput = {\n /** Value of the positive or negative power. When negative the vehicle is charging. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the power. */\n type: PowerUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum PowerSupported {\n /** Power is supported. */\n AVAILABLE = \"available\",\n /** Power is not supported. */\n NOT_AVAILABLE = \"not_available\",\n /** Power is announced, but not yet supported. */\n ANNOUNCED = \"announced\"\n}\n\nexport enum PowerUnit {\n /** Return the power in kilowatts. */\n KILOWATT = \"kilowatt\",\n /** Return the power in horsepower. */\n HORSEPOWER = \"horsepower\"\n}\n\nexport enum PressureUnit {\n /** Return the pressure in bar. */\n BAR = \"bar\",\n /** Return the pressure in pounds per square inch. */\n POUNDS_PER_SQUARE_INCH = \"pounds_per_square_inch\"\n}\n\nexport type Pricing = {\n /** Unique ID of a price. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Price details. */\n price_list?: Maybe<Array<Maybe<PricingList>>>;\n};\n\nexport type PricingList = {\n /** (MSP) Mobility Service Provider. */\n partner?: Maybe<Scalars[\"String\"]>;\n /** Product details. */\n product?: Maybe<PricingListProduct>;\n /** Price product elements. */\n elements?: Maybe<Array<Maybe<PricingListElement>>>;\n};\n\nexport type PricingListElement = {\n /** Price element type. */\n type?: Maybe<PricingListElementType>;\n /** Price of the element type without VAT. */\n price_excl_vat?: Maybe<Scalars[\"Float\"]>;\n /** VAT percentage to apply. */\n vat?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport enum PricingListElementType {\n /** Price per kWh. */\n ENERGY = \"ENERGY\",\n /** Starting price, fixed fee per charge session. */\n FLAT = \"FLAT\",\n /** Fixed price per hour. */\n TIME = \"TIME\",\n /** Parking price per hour. */\n PARKING_TIME = \"PARKING_TIME\"\n}\n\nexport type PricingListProduct = {\n /** Name of the payment card or subscription. If name is 'Adhoc price' the price is the CPO price. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Description of the product. */\n description?: Maybe<Scalars[\"String\"]>;\n /** Subscription type. */\n subscription_type?: Maybe<Scalars[\"String\"]>;\n /** Subscription fee without VAT. */\n subscription_fee_excl_vat?: Maybe<Scalars[\"Float\"]>;\n /** Currency. */\n currency?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type Query = {\n /** Get a full list of amenities around a station. */\n amenityList?: Maybe<Array<Maybe<Amenity>>>;\n /** [BETA] Get a connected vehicles by id */\n connectedVehicle?: Maybe<ConnectedVehicle>;\n /** [BETA] Get the connected vehicles for the current user */\n connectedVehicleList?: Maybe<Array<Maybe<ConnectedVehicle>>>;\n /** [BETA] Retrieve live vehicle data by connected vehicle id */\n connectedVehicleData?: Maybe<VehicleData>;\n /** Get an isoline by ID. */\n isoline?: Maybe<Isoline>;\n /** [BETA] Get a navigation session by ID */\n navigation?: Maybe<Navigation>;\n /** Get a full list of operators. */\n operatorList?: Maybe<Array<Maybe<Operator>>>;\n /** Get information about an operator by its ID. */\n operator?: Maybe<Operator>;\n /** Get all reviews of a station by the station ID. */\n reviewList?: Maybe<Array<Review>>;\n /**\n * Get all reviews of stations that were added by an authenticated user.\n * The `x-token` header is mandatory in order to authorize the user who wants to retrieve all the reviews added by him/her.\n * This is a premium feature, contact Chargetrip for more information.\n */\n userReviewList?: Maybe<Array<Review>>;\n /**\n * Get emissions for a route.\n * @deprecated In favor of `getRouteEmissions`.\n */\n routeEmissions: RouteEmissions;\n /**\n * Get a route by ID.\n * @deprecated In favor of `getRoute`.\n */\n route?: Maybe<Route>;\n /**\n * Get a route path segment by ID.\n * @deprecated In favor of `RouteDetails.path_plot`.\n */\n routePath?: Maybe<RoutePath>;\n /** Get emissions for a route. */\n getRouteEmissions: RouteDetailsEmissions;\n /** Get a route by ID. */\n getRoute: RouteResponse;\n /** [BETA] Search for stations with amenities within a specific time window and distance of a previously calculated route. */\n getRouteStationsWithAmenities: RouteStationsWithAmenitiesConnection;\n /** [ALPHA] Get a e-truck route by ID. */\n getTruckRoute: TruckRouteResponse;\n /** Get information about a station by its ID. */\n station?: Maybe<Station>;\n /** Get a full list of stations. */\n stationList?: Maybe<Array<Maybe<Station>>>;\n /** Search for stations around a GeoJSON point with a specific distance in meters. */\n stationAround?: Maybe<Array<Maybe<Station>>>;\n /** Get information about a tariff by the tariff ID. */\n tariff?: Maybe<OCPITariff>;\n /** Get the full list of tariffs. */\n tariffList?: Maybe<Array<Maybe<OCPITariff>>>;\n /** Get information about a vehicle by its ID. */\n vehicle?: Maybe<Vehicle>;\n /** Vehicle premium data provides even more information about your vehicle: tire pressure, prices, drivetrain data, and more. Please contact us for access to premium data. */\n vehiclePremium?: Maybe<VehiclePremium>;\n /** Get a full list of vehicles. */\n vehicleList?: Maybe<Array<Maybe<VehicleList>>>;\n /** [BETA] Get a full list of vehicle makes. */\n vehicleMakes?: Maybe<VehicleMakesConnection>;\n /** [BETA] Get a full list of vehicle make models. */\n vehicleModels?: Maybe<VehicleModelsConnection>;\n};\n\nexport type QueryamenityListArgs = {\n stationId: Scalars[\"ID\"];\n filter?: Maybe<AmenityListFilter>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryconnectedVehicleArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryconnectedVehicleListArgs = {\n filter?: Maybe<ConnectedVehicleListFilter>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryconnectedVehicleDataArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryisolineArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerynavigationArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryoperatorListArgs = {\n query?: Maybe<OperatorListQuery>;\n search?: Maybe<Scalars[\"String\"]>;\n filter?: Maybe<OperatorListFilter>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryoperatorArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryreviewListArgs = {\n stationId: Scalars[\"ID\"];\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryuserReviewListArgs = {\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryrouteEmissionsArgs = {\n route_id: Scalars[\"ID\"];\n route_alternative_id?: Maybe<Scalars[\"ID\"]>;\n};\n\nexport type QueryrouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QueryroutePathArgs = {\n id: Scalars[\"ID\"];\n location: PointInput;\n alternativeId?: Maybe<Scalars[\"ID\"]>;\n};\n\nexport type QuerygetRouteEmissionsArgs = {\n route_id: Scalars[\"ID\"];\n route_details_id: Scalars[\"ID\"];\n};\n\nexport type QuerygetRouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerygetRouteStationsWithAmenitiesArgs = {\n route_id: Scalars[\"ID\"];\n route_details_id: Scalars[\"ID\"];\n time_window: RouteTimeWindow;\n amenity_types: Array<AmenityType>;\n filter?: Maybe<RouteStationsWithAmenityFilter>;\n first?: Maybe<Scalars[\"Int\"]>;\n after?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type QuerygetTruckRouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerystationArgs = {\n id?: Maybe<Scalars[\"ID\"]>;\n evse_id?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type QuerystationListArgs = {\n query?: Maybe<StationListQuery>;\n filter?: Maybe<StationListFilter>;\n search?: Maybe<Scalars[\"String\"]>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QuerystationAroundArgs = {\n query?: Maybe<StationAroundQuery>;\n filter?: Maybe<StationAroundFilter>;\n search?: Maybe<Scalars[\"String\"]>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QuerytariffArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type QuerytariffListArgs = {\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryvehicleArgs = {\n id: Scalars[\"ID\"];\n country?: Maybe<CountryCodeAlpha2>;\n};\n\nexport type QueryvehiclePremiumArgs = {\n id: Scalars[\"ID\"];\n country?: Maybe<CountryCodeAlpha2>;\n};\n\nexport type QueryvehicleListArgs = {\n search?: Maybe<Scalars[\"String\"]>;\n filter?: Maybe<VehicleListFilter>;\n country?: Maybe<CountryCodeAlpha2>;\n size?: Maybe<Scalars[\"Int\"]>;\n page?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type QueryvehicleMakesArgs = {\n country?: Maybe<CountryCodeAlpha2>;\n filter?: Maybe<VehicleMakesFilter>;\n first?: Maybe<Scalars[\"Int\"]>;\n after?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type QueryvehicleModelsArgs = {\n filter?: Maybe<VehicleModelsFilter>;\n country?: Maybe<CountryCodeAlpha2>;\n first?: Maybe<Scalars[\"Int\"]>;\n after?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RemoveConnectedVehicleInput = {\n /** Id from the connected vehicle */\n id: Scalars[\"ID\"];\n};\n\n/** EV specific data for a route request. */\nexport type RequestEv = {\n /** Internal ID of a Vehicle. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** EV battery specific data. */\n battery?: Maybe<RequestEvBattery>;\n /** Supported plugs for an EV. */\n plugs?: Maybe<Array<Maybe<RequestEvPlug>>>;\n /** Supported adapters of plugs for an EV. */\n adapters?: Maybe<Array<Maybe<RequestEvPlug>>>;\n /** Minimum desired power of chargers. */\n minPower?: Maybe<Scalars[\"Int\"]>;\n /** Climate is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heatPump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<RequestEvCabin>;\n /** Cargo weight, in kg. */\n cargo?: Maybe<Scalars[\"Float\"]>;\n /**\n * Number of passengers on board.\n * @deprecated In favor of `occupants`.\n */\n numberOfPassengers?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Consumption specific to an EV or inputted by a request. */\n consumption?: Maybe<RequestEvConsumption>;\n};\n\nexport type RequestEvBattery = {\n /** Usable capacity of the battery used to compute the route. If this in not filled in, value as the vehicle battery.usable_kwh. */\n capacity?: Maybe<RequestEvBatteryValue>;\n /** Usable capacity of a battery, in kWh. This value is computed from the provided capacity value. */\n capacityKwh?: Maybe<Scalars[\"Float\"]>;\n /** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and it will be equal to the battery.usable_kwh. */\n stateOfCharge?: Maybe<RequestEvBatteryValue>;\n /** Current amount of energy in a battery, in kWh. This value is computed from the provided state of charge. */\n stateOfChargeKwh?: Maybe<Scalars[\"Float\"]>;\n /** Desired final amount of energy in a battery. If this is not filled in, it will be set to 20% of the vehicle battery.usable_kwh. */\n finalStateOfCharge?: Maybe<RequestEvBatteryValue>;\n /** Desired final amount of energy in a battery, in kWh. This value is computed from the provided final state of charge. */\n finalStateOfChargeKwh?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RequestEvBatteryInput = {\n /** Usable capacity of a battery used to compute a route. We recommend you stay between 50% and 150%. If this in not filled in, we assume it is the same value as the vehicle battery.usable_kwh. */\n capacity?: Maybe<RequestEvBatteryInputValue>;\n /** Current amount of energy in a battery. If this is not filled in, we assume the battery is full and we fill it in with vehicle battery.usable_kwh. */\n stateOfCharge?: Maybe<RequestEvBatteryInputValue>;\n /** Desired final amount of energy in a battery. The value should be between 0 and 80% of the vehicle battery.usable_kwh If this is not filled in, we assume it is 20% of the vehicle battery.usable_kwh. */\n finalStateOfCharge?: Maybe<RequestEvBatteryInputValue>;\n};\n\nexport type RequestEvBatteryInputValue = {\n /** Value of a desired final amount of energy in a battery. */\n value: Scalars[\"Float\"];\n /** Type of a desired final amount of energy in a battery. */\n type: BatteryInputType;\n};\n\nexport type RequestEvBatteryValue = {\n /** Value of the desired final amount of energy in a battery. */\n value: Scalars[\"Float\"];\n /** Type of the desired final amount of energy in a battery. */\n type: BatteryInputType;\n};\n\n/** Vehicle cabin configuration. */\nexport type RequestEvCabin = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n isPreconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desiredTemperature?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Vehicle cabin configuration. */\nexport type RequestEvCabindesiredTemperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\n/** Vehicle cabin configuration. */\nexport type RequestEvCabinInput = {\n /** Flag which indicate if the vehicle cabin was preconditioned for the desired temperature. */\n isPreconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desiredTemperature?: Maybe<TemperatureInput>;\n};\n\nexport type RequestEvConsumption = {\n /** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc */\n auxiliary?: Maybe<Scalars[\"Float\"]>;\n /**\n * Consumption, in kWh, of the auxiliaries.\n * @deprecated In favor of `auxiliary`\n */\n aux?: Maybe<CarConsumption>;\n /**\n * Consumption, in kWh, of the battery management system.\n * @deprecated In favor of `auxiliary`\n */\n bms?: Maybe<CarConsumption>;\n /**\n * Consumption, in kWh, of the vehicle in idle mode.\n * @deprecated In favor of `auxiliary`\n */\n idle?: Maybe<CarConsumption>;\n};\n\nexport type RequestEvConsumptionInput = {\n /** Amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc. */\n auxiliary?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of the auxiliaries. */\n aux?: Maybe<CarConsumptionInput>;\n /** Consumption, in kWh, of the battery management system. */\n bms?: Maybe<CarConsumptionInput>;\n /** Consumption, in kWh, of the vehicle in idle mode. */\n idle?: Maybe<CarConsumptionInput>;\n};\n\nexport type RequestEvInput = {\n /** Internal ID of a Vehicle. */\n id: Scalars[\"ID\"];\n /** The EV battery specific data. */\n battery?: Maybe<RequestEvBatteryInput>;\n /** Supported plugs of an EV. */\n plugs?: Maybe<Array<Maybe<RequestEvPlugInput>>>;\n /** Supported adapters of plugs of an EV. */\n adapters?: Maybe<Array<Maybe<RequestEvPlugInput>>>;\n /** Minimum desired power of chargers. */\n minPower?: Maybe<Scalars[\"Int\"]>;\n /** Flag which indicates if the climate is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heatPump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration. */\n cabin?: Maybe<RequestEvCabinInput>;\n /** Number of passengers on board. */\n numberOfPassengers?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Cargo weight, in kg. */\n cargo?: Maybe<Scalars[\"Int\"]>;\n /** Consumption specific to the EV or inputted by the request. */\n consumption?: Maybe<RequestEvConsumptionInput>;\n /** Consumption, in kWh, of the auxiliaries. */\n auxConsumption?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of the battery management system. */\n bmsConsumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RequestEvPlug = {\n /** Type of the plug. */\n standard?: Maybe<ConnectorType>;\n /** Maximum charging speed for a plug. */\n chargingPower?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RequestEvPlugInput = {\n /** Type of a plug. */\n standard: ConnectorType;\n /** Maximum charging speed for this plug. */\n chargingPower: Scalars[\"Float\"];\n};\n\nexport type RequestInput = {\n /** EV specific data for a route request. */\n ev: RequestEvInput;\n /** Route request data. */\n routeRequest: RequestRouteInput;\n /** Telemetry data used to overwrite routing parameters. */\n telemetry?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport type RequestRoute = {\n /**\n * Requested amenities near the stations, within a 1 kilometer radius.\n * @deprecated In favor of `amenity_preferences`.\n */\n amenities?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Amenity preferences for a route. */\n amenity_preferences?: Maybe<RouteAmenityPreferences>;\n /**\n * Requested operators.\n * @deprecated In favor of `operators`.\n */\n operatorIds?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /**\n * Preferred operators are required. In case there are no preferred operators the route cannot be calculated.\n * @deprecated In favor of `operators`.\n */\n operatorRequired?: Maybe<Scalars[\"Boolean\"]>;\n /**\n * Encourage the route to use preferred operators. In case there are no preferred operators the route can still be calculated.\n * @deprecated In favor of `operators`.\n */\n operatorPrefer?: Maybe<Scalars[\"Boolean\"]>;\n /** Operator prioritization for a route. */\n operators?: Maybe<RouteOperators>;\n /** Season. */\n season?: Maybe<RouteSeason>;\n /** Percentage for the minimum limit of the battery capacity before a recharge. The value should be between 0 and 60. When omitted, the project configuration is used. */\n safeRiskMargin?: Maybe<Scalars[\"Int\"]>;\n /** Origin of a route. */\n origin?: Maybe<FeaturePoint>;\n /** Destination of a route. */\n destination?: Maybe<FeaturePoint>;\n /** Locations where a route will stop. */\n via?: Maybe<Array<Maybe<FeaturePoint>>>;\n /** Radius in meters for alternative stations along a route (min 500 - max 5000). */\n stationsAlongRouteRadius?: Maybe<Scalars[\"Int\"]>;\n /**\n * Flag indicating wether the turn-by-turn navigation instructions should be prepared. Disclaimer: The functionality is under active development and the final API is a subject to change. Not ready for production.\n * @deprecated All routes will have turn-by-turn instructions prepared. Boolean will be ignored.\n */\n instructions?: Maybe<Scalars[\"Boolean\"]>;\n /** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */\n chargeMode?: Maybe<ChargeMode>;\n};\n\nexport type RequestRouteInput = {\n /** A list of desired amenities near the stations, with a 1 kilometer radius. */\n amenities?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Amenity preferences for a route. */\n amenity_preferences?: Maybe<AmenityPreferencesInput>;\n /** A list of requested operators. */\n operatorIds?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n /** Flag which indicates if the operators are required. */\n operatorRequired?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag which indicates if the preferred operators should be loaded. */\n operatorPrefer?: Maybe<Scalars[\"Boolean\"]>;\n /** Operator prioritization for a route. */\n operators?: Maybe<RouteOperatorsInput>;\n /** Optional flag to specify the season. */\n season?: Maybe<RouteSeason>;\n /** Percentage for a minimum limit of a battery capacity before a recharge. The value should be between 0 and 60. When omitted, the project configuration is used. */\n safeRiskMargin?: Maybe<Scalars[\"Int\"]>;\n /** Mode that indicates if we optimize the charging time or always charge to the maximum capacity. */\n chargeMode?: Maybe<ChargeMode>;\n /** Origin of a route. */\n origin: FeaturePointInput;\n /** Destination of a route. */\n destination: FeaturePointInput;\n /** An optional list of locations where we should stop. */\n via?: Maybe<Array<Maybe<FeaturePointInput>>>;\n /** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */\n stationsAlongRouteRadius?: Maybe<Scalars[\"Int\"]>;\n /** Flag to enable turn-by-turn instructions. */\n instructions?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RequestUser = {\n /** ID of the user. */\n id?: Maybe<Scalars[\"ID\"]>;\n};\n\n/** Review model. */\nexport type Review = {\n /** ID of a review. */\n id: Scalars[\"ID\"];\n /** Station for which a review was provided. */\n station?: Maybe<Station>;\n /** User who added a review. If a review was added by an anonymous user, this will be null. */\n user?: Maybe<ReviewUser>;\n /** Rating of a review. */\n rating?: Maybe<Scalars[\"Int\"]>;\n /** Message of a review. */\n message?: Maybe<Scalars[\"String\"]>;\n /** Locale of a message. */\n locale?: Maybe<Scalars[\"String\"]>;\n /** Vehicle that was provided/selected by a user. */\n ev?: Maybe<Vehicle>;\n /** Plug type that was provided/selected by a user. */\n plugType?: Maybe<ConnectorType>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Boolean tags for a station review. */\n tags?: Maybe<ReviewTags>;\n /** Date and time when a review was created. */\n createdAt?: Maybe<Scalars[\"DateTime\"]>;\n /** Date and time when a review was updated. */\n updatedAt?: Maybe<Scalars[\"DateTime\"]>;\n};\n\n/** Form input to add a new review. */\nexport type ReviewAdd = {\n /** Station ID for which a review is provided. */\n stationId: Scalars[\"String\"];\n /** Rating of a review. */\n rating: Scalars[\"Int\"];\n /** Review message. */\n message?: Maybe<Scalars[\"String\"]>;\n /** Locale of a message. */\n locale?: Maybe<Scalars[\"String\"]>;\n /** ID of the vehicle that was provided/selected by a user. */\n ev?: Maybe<Scalars[\"String\"]>;\n /** Plug type that was provided/selected by a user. */\n plugType?: Maybe<ConnectorType>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Boolean tags for a station review. */\n tags?: Maybe<ReviewTagsInput>;\n};\n\n/** Form input for edit an existing review. */\nexport type ReviewEdit = {\n /** Rating of a review. */\n rating: Scalars[\"Int\"];\n /** Review message. */\n message?: Maybe<Scalars[\"String\"]>;\n /** Locale of a message. */\n locale?: Maybe<Scalars[\"String\"]>;\n /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** Boolean tags for a station review. */\n tags?: Maybe<ReviewTagsInput>;\n};\n\n/** Statistical information for reviews of a station. */\nexport type ReviewStats = {\n /** Average of all reviews. */\n rating?: Maybe<Scalars[\"Float\"]>;\n /** 'Total number of reviews. */\n count?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Boolean tags for the station review. */\nexport type ReviewTags = {\n /** Flag which indicates if the station was working when the review was added. */\n working?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag which indicates if the user recommended the station when the review was added. */\n recommended?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Boolean tags for a station review. */\nexport type ReviewTagsInput = {\n /** Flag which indicates if a station was working when the review was added. */\n working?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag which indicates if a user recommended a station when the review was added. */\n recommended?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Special format for the user of a review. */\nexport type ReviewUser = {\n /** User full name. If a review was added by an anonymous user, this will be null. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type Route = {\n /** Recommended route. */\n route?: Maybe<RouteAlternative>;\n /** Available alternatives. */\n alternatives?: Maybe<Array<Maybe<RouteAlternative>>>;\n /** EV specific data for a route request. */\n ev?: Maybe<RequestEv>;\n /** Route telemetry data. */\n telemetry?: Maybe<Scalars[\"JSON\"]>;\n /** @deprecated You will receive null values. */\n user?: Maybe<RequestUser>;\n /** Route request data. */\n routeRequest?: Maybe<RequestRoute>;\n /** Application who requested a route. */\n app?: Maybe<RouteApp>;\n /** Route status. */\n status?: Maybe<RouteStatus>;\n};\n\nexport type RouteAlternative = {\n /** ID of a route alternative. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Type of alternative route. */\n type?: Maybe<RouteAlternativeType>;\n /** Number of charging stops required for this route. */\n charges?: Maybe<Scalars[\"Int\"]>;\n /** Number of available charges along a route. */\n chargesAvailable?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupied charges along a route. */\n chargesOccupied?: Maybe<Scalars[\"Int\"]>;\n /** Number of unknown charges along a route. */\n chargesUnknown?: Maybe<Scalars[\"Int\"]>;\n /** Number of out of order charges along a route. */\n chargesOutOfOrder?: Maybe<Scalars[\"Int\"]>;\n /** Total distance of a route in meters. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Total duration of a route, including charge time, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Total energy used for a route in kWh. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Total time required to charge for an entire route, in seconds. */\n chargeTime?: Maybe<Scalars[\"Float\"]>;\n /**\n * Amenity ranking for an alternative.\n * @deprecated Will be removed.\n */\n amenityRanking?: Maybe<Scalars[\"Int\"]>;\n /** Display value that indicates the range, in meters, available at the beginning of the trip. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. */\n rangeStart?: Maybe<Scalars[\"Int\"]>;\n /** Total energy in a battery at the beginning of a trip, in kWh. */\n rangeStartKwh?: Maybe<Scalars[\"Float\"]>;\n /** Total energy in a battery at the beginning of a trip, in percentage. */\n rangeStartPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Display value that indicates the range, in meters, available at the end of the trip. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. Please note: In case of a non BEV where the range end is negative, the value will be 0. */\n rangeEnd?: Maybe<Scalars[\"Int\"]>;\n /** Remaining range, energy in kWh, at the end of a trip. In the case of a non BEV where the range end is negative, the value will be 0. */\n rangeEndKwh?: Maybe<Scalars[\"Float\"]>;\n /** Remaining range, energy in percentage, at the end of a trip. */\n rangeEndPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Text information about a route direction. */\n via?: Maybe<Scalars[\"String\"]>;\n /** Polyline containing encoded coordinates. */\n polyline?: Maybe<Scalars[\"String\"]>;\n /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */\n pathPlot?: Maybe<Array<Maybe<PathSegment>>>;\n /**\n * Elevation values. Each elevationPlot has a hundred points, independent of the length of a route.\n * @deprecated In favor of `pathPlot`.\n */\n elevationPlot?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Total number of meters which are going up on a route. */\n elevationUp?: Maybe<Scalars[\"Float\"]>;\n /** Total number of meters which are going down on a route. */\n elevationDown?: Maybe<Scalars[\"Float\"]>;\n /** Highest value from the elevation array. */\n elevationMax?: Maybe<Scalars[\"Float\"]>;\n /** Money and CO2 saving information. */\n saving?: Maybe<RouteAlternativeSaving>;\n /** Legs of the route. */\n legs?: Maybe<Array<Maybe<RouteLeg>>>;\n /** List of raw turn-by-turn navigation instructions. */\n instructions?: Maybe<Array<Maybe<RouteInstruction>>>;\n /** Alternative stations along a route within specified radius in meters. Only if it was provided at newRoute mutation. */\n stationsAlongRoute?: Maybe<Array<Maybe<RouteStationsAlong>>>;\n /** Tags of a route alternative. Values: road, highway, toll, ferry, etc. */\n tags?: Maybe<Array<Maybe<RouteTagType>>>;\n};\n\nexport type RouteAlternativepolylineArgs = {\n decimals?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteAlternativeSaving = {\n /** Total amount of CO2, in grams, which would be used with a gasoline vehicle. */\n co2?: Maybe<Scalars[\"String\"]>;\n /** Money saved by a user driving this route with the electric vehicle. */\n money?: Maybe<Scalars[\"String\"]>;\n /** Currency. */\n currency?: Maybe<Scalars[\"String\"]>;\n /** Average gas price with which the calculation was made. */\n averageGasPrice?: Maybe<Scalars[\"String\"]>;\n /** Average energy price with which the calculation was made. */\n averageEnergyPrice?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Types of an alternative route. */\nexport enum RouteAlternativeType {\n /** Fastest route between origin and destination. */\n FASTEST = \"fastest\",\n /** Best matching route based on operator and amenities preferences. */\n BESTMATCHING = \"bestMatching\",\n /** An alternative to the fastest route. */\n ALTERNATIVE = \"alternative\"\n}\n\nexport type RouteAmenityFilter = {\n /** Maximum distance from the station to the amenity. The value must be between 0 and 1 000 meters. If not specified, defaults to 250 meters. */\n maximum_distance_from_station?: Maybe<DistanceInput>;\n};\n\n/** Amenity preferences for a route. */\nexport type RouteAmenityPreferences = {\n /** Desired amenities near all charge-stops along a route, with a 1 kilometer radius. */\n all_charge_stops?: Maybe<Array<AmenityType>>;\n /** Scheduled charge stops, with a specified amenity and timeline. */\n scheduled_charge_stops?: Maybe<Array<RouteScheduledChargeStop>>;\n};\n\nexport type RouteApp = {\n /** ID of the app who requested a route. */\n id?: Maybe<Scalars[\"ID\"]>;\n};\n\n/** Types of route features that can be avoided in routing. */\nexport enum RouteAvoid {\n TOLL_ROAD = \"toll_road\",\n FERRY = \"ferry\"\n}\n\nexport type RouteDestinationFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<Point>;\n /** Additional feature properties. */\n properties?: Maybe<RouteDestinationProperties>;\n};\n\nexport type RouteDestinationFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<PointInput>;\n /** Additional feature properties. */\n properties?: Maybe<RouteDestinationPropertiesInput>;\n};\n\nexport type RouteDestinationProperties = {\n /** Data about the destination location. */\n location?: Maybe<RoutePropertiesLocation>;\n /** Data about the destination station. */\n station?: Maybe<RoutePropertiesStation>;\n};\n\nexport type RouteDestinationPropertiesInput = {\n /** Data about the destination location. */\n location?: Maybe<RoutePropertiesLocationInput>;\n /** Specifies a charging station at the destination. If an existing station is provided, it is treated as a regular location stop and no charging will be scheduled at this location. Any configured operator preferences are ignored for this stop. */\n station?: Maybe<RoutePropertiesStationInput>;\n};\n\nexport type RouteDetails = {\n /** ID of a route computation. */\n id: Scalars[\"ID\"];\n /** Total distance of a route. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route. */\n durations: RouteDetailsDurations;\n /** Total energy used for a route in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the start of a trip. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a trip. Note: The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */\n path_plot: Array<RouteDetailsPathSegment>;\n /** Details about elevation on a route. */\n elevation: RouteDetailsElevation;\n /** Money saving information. */\n savings?: Maybe<RouteDetailsSavings>;\n /** Legs of a route. */\n legs: Array<RouteDetailsLeg>;\n /**\n * Alternative stations along a route within a specified radius.\n *\n * Includes stations from preferred/required/avoided operators but excludes stations from excluded operators.\n * This list is only populated if `alternative_station_radius` was specified in the `createRoute` mutation.\n */\n alternative_stations: Array<RouteDetailsAlternativeStation>;\n /** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Number of charging stops required for this route. */\n charges: Scalars[\"Int\"];\n /** [BETA] Warnings that certain conditions specified in a route mutation are not respected. */\n warnings?: Maybe<Array<RouteWarning>>;\n /** [BETA] Traffic conditions along the route. Only returns data if `traffic_aware` is set to true in the `createRoute` mutation. */\n traffic?: Maybe<RouteDetailsTraffic>;\n};\n\nexport type RouteDetailsdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type RouteDetailsrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type RouteDetailspolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type RouteDetailsAlternativeStation = {\n /** ID of a station. */\n id: Scalars[\"ID\"];\n /** GeoJSON location of a station. */\n location: Point;\n /** Speed of a station. A station along a route can be either fast or turbo. */\n speed: StationSpeedType;\n /** Status of a station. */\n status: ChargerStatus;\n /** The value indicates the operator's ranking based on the station's location, in accordance with the list of countries from the configuration or request. */\n operator_ranking?: Maybe<OperatorRankingLevel>;\n /** ID of the station's operator. */\n operator_id?: Maybe<Scalars[\"ID\"]>;\n};\n\nexport type RouteDetailsDurations = {\n /** Total duration, in seconds. */\n total: Scalars[\"Int\"];\n /** Total charging duration, in seconds. */\n charging: Scalars[\"Int\"];\n /** Total driving duration, in seconds. Takes into account traffic congestion when `traffic_aware` is set to true in the `createRoute` mutation. */\n driving: Scalars[\"Int\"];\n /** Total duration stopped at a location via or at a station via, excluding charging time and charging penalty, in seconds. */\n stopover: Scalars[\"Int\"];\n /** Total ferry duration, in seconds. */\n ferry: Scalars[\"Int\"];\n};\n\nexport type RouteDetailsElevation = {\n /** Total value driving uphill on a route. */\n up: Scalars[\"Float\"];\n /** Total value driving downhill on a route. */\n down: Scalars[\"Float\"];\n /** Maximum elevation on a route. */\n maximum: Scalars[\"Float\"];\n /** Minimum elevation on a route. */\n minimum: Scalars[\"Float\"];\n};\n\nexport type RouteDetailsElevationupArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsElevationdownArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsElevationmaximumArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsElevationminimumArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsEmissions = {\n /** ID of the route for which we retrieve the emissions profile. */\n route_id: Scalars[\"ID\"];\n route_alternative_id: Scalars[\"ID\"];\n /** Emissions profile for the vehicle used in route. */\n route_vehicle: RouteVehicleEmissions;\n internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;\n /** Estimated GHG emissions saved by a user driving this route with the electric vehicle in grams of CO2e. */\n co2e_saved: Scalars[\"Float\"];\n};\n\nexport type RouteDetailsEmissionsinternal_combustion_vehicleArgs = {\n fuel_type?: Maybe<RouteOperationalFuelType>;\n};\n\nexport type RouteDetailsEmissionsco2e_savedArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLeg = {\n /** Distance from the start to the end of a leg. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route leg. */\n durations: RouteDetailsDurations;\n /** Total energy used in a leg in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Origin point location. */\n origin: RouteDetailsLegFeaturePoint;\n /** Destination point location. */\n destination: RouteDetailsLegFeaturePoint;\n /** Range at the start of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Range after charging on the leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_after_charge?: Maybe<Scalars[\"Float\"]>;\n /** Type of a leg. */\n type: RouteDetailsLegType;\n /** Information about the station at the destination of a leg. */\n station?: Maybe<RouteDetailsLegStation>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Maneuvers of a leg - used to generate turn-by-turn instructions. */\n maneuvers: Array<RouteDetailsManeuver>;\n /** Road sections of a leg - divided by means of transportation. */\n sections: Array<RouteDetailsLegSection>;\n /** [BETA] Warnings that certain conditions specified in a route mutation are not respected. */\n warnings?: Maybe<Array<RouteDetailsLegWarning>>;\n /** [BETA] Traffic conditions along the leg. Only returns data if `traffic_aware` is set to true in the `createRoute` mutation. */\n traffic?: Maybe<RouteDetailsLegTraffic>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegrange_after_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type RouteDetailsLegpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type RouteDetailsLegFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties?: Maybe<RouteDetailsLegFeatureProperties>;\n};\n\nexport type RouteDetailsLegFeatureProperties = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n /** ID of the station. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Temperature at the location. */\n temperature?: Maybe<Scalars[\"Int\"]>;\n /** Air pressure at the location. */\n air_pressure?: Maybe<Scalars[\"Float\"]>;\n /** Solar irradiance at the location. */\n solar_irradiance?: Maybe<Scalars[\"Float\"]>;\n /**\n * Duration, in seconds, of time spent at this location.\n * @deprecated In favor of `legs.durations`.\n */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Value of the combined weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteDetailsLegFeaturePropertiestemperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type RouteDetailsLegFeaturePropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegFeaturePropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegManeuverPoints = {\n /** Number of polyline points which are included in this instruction. */\n size: Scalars[\"Int\"];\n /** Interval of points included in this instruction, represented as an array with two values: the first is the index of the polyline where the interval starts, and the second is where it ends. */\n interval: Array<Scalars[\"Int\"]>;\n};\n\n/** Type of a maneuver indicating the main action. */\nexport enum RouteDetailsLegManeuverType {\n UNKNOWN = \"UNKNOWN\",\n U_TURN_UNKNOWN = \"U_TURN_UNKNOWN\",\n U_TURN_LEFT = \"U_TURN_LEFT\",\n KEEP_LEFT = \"KEEP_LEFT\",\n LEAVE_ROUNDABOUT = \"LEAVE_ROUNDABOUT\",\n TURN_SHARP_LEFT = \"TURN_SHARP_LEFT\",\n TURN_LEFT = \"TURN_LEFT\",\n TURN_SLIGHT_LEFT = \"TURN_SLIGHT_LEFT\",\n CONTINUE_ON_STREET = \"CONTINUE_ON_STREET\",\n TURN_SLIGHT_RIGHT = \"TURN_SLIGHT_RIGHT\",\n TURN_RIGHT = \"TURN_RIGHT\",\n TURN_SHARP_RIGHT = \"TURN_SHARP_RIGHT\",\n FINISH = \"FINISH\",\n REACHED_VIA = \"REACHED_VIA\",\n REACHED_CHARGING_STATION = \"REACHED_CHARGING_STATION\",\n USE_ROUNDABOUT = \"USE_ROUNDABOUT\",\n KEEP_RIGHT = \"KEEP_RIGHT\",\n U_TURN_RIGHT = \"U_TURN_RIGHT\",\n PT_START_TRIP = \"PT_START_TRIP\",\n PT_TRANSFER = \"PT_TRANSFER\",\n PT_END_TRIP = \"PT_END_TRIP\",\n IGNORE = \"IGNORE\"\n}\n\nexport type RouteDetailsLegSection = {\n /** Section type. */\n type: RouteDetailsLegSectionType;\n /** Origin point. */\n origin: RouteDetailsLegSectionFeaturePoint;\n /** Destination point. */\n destination: RouteDetailsLegSectionFeaturePoint;\n /** Aggregation of tags over the current section. */\n tags: Array<RouteDetailsTag>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Distance from the start to the end of a section. */\n distance: Scalars[\"Float\"];\n /** Total duration of a section, in seconds. The value will be 0 for walking sections. */\n duration: Scalars[\"Float\"];\n /** Total energy used in a section in kilowatt-hours. The value will be 0 for walking sections. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** [BETA] Information regarding traffic conditions along the leg's section. Available for routes created with traffic_aware set to true. */\n traffic?: Maybe<RouteDetailsLegSectionTraffic>;\n};\n\nexport type RouteDetailsLegSectionpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type RouteDetailsLegSectiondistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsLegSectionFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties: RouteDetailsLegSectionFeaturePointProperties;\n};\n\nexport type RouteDetailsLegSectionFeaturePointProperties = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Value of the combined weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteDetailsLegSectionFeaturePointPropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegSectionFeaturePointPropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteDetailsLegSectionTraffic = {\n /** [BETA] Traffic congestion intervals mapped to the polyline indices of the leg's section. */\n congestions: Array<TrafficCongestionInterval>;\n};\n\n/** Type of a route details leg section. */\nexport enum RouteDetailsLegSectionType {\n DRIVING = \"driving\",\n FERRY = \"ferry\",\n WALKING = \"walking\"\n}\n\nexport type RouteDetailsLegStation = {\n /** ID of a station. */\n station_id: Scalars[\"ID\"];\n /** ID of the EVSE that was selected in a route. */\n evse_id?: Maybe<Scalars[\"ID\"]>;\n /** ID of the connector that was selected in a route. */\n connector_id: Scalars[\"ID\"];\n};\n\nexport type RouteDetailsLegTraffic = {\n /** [BETA] Traffic congestion intervals mapped to the polyline indices of the leg. */\n congestions: Array<TrafficCongestionInterval>;\n};\n\n/** Type of a leg. */\nexport enum RouteDetailsLegType {\n /** This leg ends at a charging station and the vehicle must recharge. */\n STATION = \"station\",\n /** This leg ends at a via charging station and the vehicle must recharge. */\n STATION_VIA = \"station_via\",\n /** This leg ends at the destination which is a charging station, and is the last leg of the route. */\n STATION_FINAL = \"station_final\",\n /** This leg ends at a scheduled charging station and the vehicle must recharge. */\n STATION_AMENITY = \"station_amenity\",\n /** This leg ends at a via location. */\n VIA = \"via\",\n /** This leg ends at the destination, and is the last leg of the route. */\n FINAL = \"final\"\n}\n\nexport type RouteDetailsLegWarning = {\n /** The code of the warning. */\n code: RouteDetailsLegWarningCode;\n};\n\n/** Types of warnings that can be encountered in a route leg. */\nexport enum RouteDetailsLegWarningCode {\n /** The via location cannot be reached by vehicle. */\n VIA_NOT_VEHICLE_ACCESSIBLE = \"via_not_vehicle_accessible\",\n /** The leg could not use stations from the preferred operator(s). */\n OPERATORS_PREFERRED_NOT_AVAILABLE = \"operators_preferred_not_available\",\n /** Vehicle's load may exceed the maximum supported weight of the vehicle. */\n MAXIMUM_WEIGHT_EXCEEDED = \"maximum_weight_exceeded\",\n /** The leg includes sections requested to be avoided. */\n SEGMENT_UNAVOIDABLE = \"segment_unavoidable\",\n /** The charging station used in the leg has limited opening hours. */\n STATION_LIMITED_OPEN_HOURS = \"station_limited_open_hours\",\n /** The leg's charging station has unknown open hours. */\n STATION_UNKNOWN_OPEN_HOURS = \"station_unknown_open_hours\",\n /** The leg's charging station is closed at the estimated time of arrival. */\n STATION_CLOSED = \"station_closed\",\n /** The leg's charging station is closing within 45 minutes of the estimated time of arrival. */\n STATION_CLOSING_SOON = \"station_closing_soon\",\n /** The specified stop duration at the via charging station is insufficient to start a charging session. */\n VIA_INSUFFICIENT_CHARGING_TIME = \"via_insufficient_charging_time\",\n /** The selected via station does not have compatible connectors that meet the minimum power threshold. The route still includes this charging stop, but charging will be slower than requested. */\n VIA_STATION_BELOW_MINIMUM_POWER = \"via_station_below_minimum_power\",\n /** The charging station at the destination does not have any connectors compatible with the selected vehicle. */\n DESTINATION_CHARGER_INCOMPATIBLE = \"destination_charger_incompatible\",\n /** The charging station at the destination is restricted to heavy-duty trucks. */\n DESTINATION_STATION_TRUCK_ONLY = \"destination_station_truck_only\",\n /** Expected arrival state of charge for the leg is below the safety risk margin. */\n RISK_MARGIN_SOC_NOT_POSSIBLE = \"risk_margin_soc_not_possible\",\n /** Requested final state of charge value is below the specified safe risk margin. Safe risk margin is used instead. */\n FINAL_SOC_BELOW_RISK_MARGIN = \"final_soc_below_risk_margin\"\n}\n\nexport type RouteDetailsManeuver = {\n /** Type of instruction. */\n type: RouteDetailsLegManeuverType;\n /** Location of the maneuver. */\n location: RouteDetailsLegSectionFeaturePoint;\n /** Name of the street associated with the instruction. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Distance, in meters, of a route instruction. */\n distance: Scalars[\"Float\"];\n /** Duration, in seconds, of a route instruction. */\n duration: Scalars[\"Int\"];\n /** Information about the points on a polyline. */\n points: RouteDetailsLegManeuverPoints;\n /** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise this value is null. */\n exit_number?: Maybe<Scalars[\"Int\"]>;\n /** Curvature angle between the roundabout and the exit of the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise this value is `null`. */\n turn_angle?: Maybe<Scalars[\"Float\"]>;\n /** Aggregation of tags over the current maneuver. */\n tags: Array<RouteDetailsTag>;\n};\n\nexport type RouteDetailsManeuverdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsPathSegment = {\n /** Elevation value of a route path segment. */\n elevation: Scalars[\"Float\"];\n /** Average speed of a route path segment. This value is determined using legal maximum speed and, if provided, the user defined maximum speed. */\n average_speed: Scalars[\"Float\"];\n /** Consumption, in kilowatt hours, of a route path segment. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Distance of a route path segment. */\n distance: Scalars[\"Float\"];\n /** Duration, in seconds, of a route path segment. */\n duration: Scalars[\"Float\"];\n /** State of charge, in kilowatt hours, of a route path segment. For HEVs and PHEVs this field will return null. */\n state_of_charge?: Maybe<Scalars[\"Float\"]>;\n /**\n * Maximum vehicle speed of a route path segment.\n * @deprecated Will be removed.\n */\n maximum_speed: Scalars[\"Float\"];\n};\n\nexport type RouteDetailsPathSegmentelevationArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsPathSegmentaverage_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport type RouteDetailsPathSegmentdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteDetailsPathSegmentstate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type RouteDetailsPathSegmentmaximum_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavings = {\n /** Money saved by a user driving this route with an electric vehicle. */\n money?: Maybe<Scalars[\"Float\"]>;\n /** Average gas price with which the calculation was made. */\n average_gas_price: Scalars[\"Float\"];\n /** Average energy price with which the calculation was made. */\n average_energy_price: Scalars[\"Float\"];\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavingsmoneyArgs = {\n currency?: Maybe<Currency>;\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavingsaverage_gas_priceArgs = {\n currency?: Maybe<Currency>;\n};\n\n/** Money saving information. */\nexport type RouteDetailsSavingsaverage_energy_priceArgs = {\n currency?: Maybe<Currency>;\n};\n\n/** Tags of a route. */\nexport enum RouteDetailsTag {\n ROAD = \"road\",\n HIGHWAY = \"highway\",\n TOLL = \"toll\",\n FERRY = \"ferry\",\n WALKING = \"walking\",\n CROSSBORDER = \"crossborder\"\n}\n\nexport type RouteDetailsTraffic = {\n /** [BETA] Additional driving duration, in seconds, caused by traffic congestion compared to free-flow conditions. This value is already included in route total and driving durations. */\n delay: Scalars[\"Int\"];\n /** [BETA] Traffic congestion intervals mapped to the polyline indices of the leg. */\n congestions: Array<Maybe<TrafficCongestionInterval>>;\n};\n\nexport type RouteDrivingPreferences = {\n /** [BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'. */\n speed_factor?: Maybe<Scalars[\"Float\"]>;\n /** [BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'. */\n maximum_speed?: Maybe<MaximumSpeed>;\n /** [BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'. */\n style?: Maybe<RouteDrivingStyle>;\n};\n\nexport type RouteDrivingPreferencesInput = {\n /** [BETA] Factor to adjust the route's calculated average speed. Accepts values between 0.80 and 1.20. 1.0 is neutral. Values below 1.0 reduce speed (e.g. 0.95 is -5%), values above increase it. If provided in combination with style, this overrides the speed factor implied by the selected 'style'. */\n speed_factor?: Maybe<Scalars[\"Float\"]>;\n /** [BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead. If provided in combination with 'style, this overrides the maximum speed implied by the selected 'style'. */\n maximum_speed?: Maybe<MaximumSpeedInput>;\n /** [BETA] Defines a driving style. If provided in combination with 'maximum_speed' or 'speed_factor', those values override the values defined by the selected 'style'. */\n style?: Maybe<RouteDrivingStyle>;\n};\n\nexport enum RouteDrivingStyle {\n /** Lower average driving speed and lower energy consumption. Applies a speed limit of 110 km/h to all segments where a higher legal limit is allowed and reduces by 5% the route's average driving speed. */\n ECO = \"eco\",\n /** Higher average driving speed and higher energy consumption. Applies no speed limit and increases by 5% the route's average driving speed. */\n SPORT = \"sport\"\n}\n\nexport type RouteEmbeddedEmissions = {\n /** Total embedded emissions. */\n total: Scalars[\"Float\"];\n /** Manufacturing emissions. */\n manufacturing: RouteEmbeddedManufacturingEmissions;\n /** Total distribution emissions. */\n distribution: Scalars[\"Float\"];\n /** Distribution sea segment emissions. */\n maritime: RouteEmbeddedMaritimeEmissions;\n /** Distribution land segment emissions. */\n land: RouteEmbeddedLandEmissions;\n};\n\nexport type RouteEmbeddedEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedEmissionsdistributionArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedLandEmissions = {\n /** Total embedded land segment emissions. */\n total: Scalars[\"Float\"];\n /** Distribution land segment emissions from fuel consumption. */\n fuel: Scalars[\"Float\"];\n /** Distribution land segment lifecycle emissions. */\n lifecycle: Scalars[\"Float\"];\n};\n\nexport type RouteEmbeddedLandEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedLandEmissionsfuelArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedLandEmissionslifecycleArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedManufacturingEmissions = {\n /** Total embedded manufacturing emissions. */\n total: Scalars[\"Float\"];\n /** Vehicle body manufacturing emissions. */\n body: Scalars[\"Float\"];\n /** Lithium ion battery manufacturing emissions. */\n battery?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteEmbeddedManufacturingEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedManufacturingEmissionsbodyArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedManufacturingEmissionsbatteryArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissions = {\n /** Total embedded maritime emissions. */\n total: Scalars[\"Float\"];\n /** Fuel related maritime segment emissions. */\n fuel: Scalars[\"Float\"];\n /** Port facility related maritime segment emissions. */\n port: Scalars[\"Float\"];\n /** Idling related maritime segment emissions. */\n idle: Scalars[\"Float\"];\n /** Distributed lifecycle related maritime segment emissions. */\n lifecycle: Scalars[\"Float\"];\n};\n\nexport type RouteEmbeddedMaritimeEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionsfuelArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionsportArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionsidleArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmbeddedMaritimeEmissionslifecycleArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEmissions = {\n /** ID of the route for which we retrieve the emissions profile. */\n route_id: Scalars[\"ID\"];\n /** ID of the route alternative for which we retrieve the emissions profile. */\n route_alternative_id: Scalars[\"ID\"];\n /** Emissions profile for the vehicle used in route. */\n route_vehicle: RouteVehicleEmissions;\n /** Emissions profile for an equivalent internal combustion engine vehicle. */\n internal_combustion_vehicle: RouteInternalCombustionVehicleEmissions;\n};\n\nexport type RouteEmissionsinternal_combustion_vehicleArgs = {\n fuel_type?: Maybe<RouteOperationalFuelType>;\n};\n\nexport type RouteEndOfLifeEmissions = {\n /** Total end of life emissions. */\n total: Scalars[\"Float\"];\n /** Fluid related end of life emissions. */\n fluids: FluidEndOfLifeEmissions;\n /** Battery related end of life emissions. */\n battery: Scalars[\"Float\"];\n /** Tire related end of life emissions. */\n tires: Scalars[\"Float\"];\n /** Body end of life emissions. */\n body: Scalars[\"Float\"];\n /** Transport end of life emissions. */\n transport: Scalars[\"Float\"];\n};\n\nexport type RouteEndOfLifeEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionsbatteryArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionstiresArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionsbodyArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteEndOfLifeEmissionstransportArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInstruction = {\n /** Information about the points on the polyline. */\n points?: Maybe<RouteInstructionPoints>;\n /** Sign of the instruction. See `RouteInstructionSign`. */\n sign?: Maybe<RouteInstructionSign>;\n /** Name of the street on which the instruction is. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Distance, in meters, of the current route instruction. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Duration, in seconds, of the current route instruction. */\n time?: Maybe<Scalars[\"Int\"]>;\n /** Exit number on a roundabout. This field exists only on sign `USE_ROUNDABOUT` (6), otherwise is null. */\n exit_number?: Maybe<Scalars[\"Int\"]>;\n /** Curvature angle between the roundabout and street you exit the roundabout. This field exists only on sign USE_ROUNDABOUT (6), otherwise is null. */\n turn_angle?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteInstructionPoints = {\n /** Number of polyline points which are included in this instruction. */\n size?: Maybe<Scalars[\"Int\"]>;\n /** The interval of points that are included in this instruction, an array with 2 values, where the first value is the index of the polyline where the interval starts. The second value is where it ends. */\n interval?: Maybe<Array<Maybe<Scalars[\"Int\"]>>>;\n};\n\n/** Sign belonging to the instruction indicating the main maneuver. */\nexport enum RouteInstructionSign {\n UNKNOWN = \"UNKNOWN\",\n U_TURN_UNKNOWN = \"U_TURN_UNKNOWN\",\n U_TURN_LEFT = \"U_TURN_LEFT\",\n KEEP_LEFT = \"KEEP_LEFT\",\n LEAVE_ROUNDABOUT = \"LEAVE_ROUNDABOUT\",\n TURN_SHARP_LEFT = \"TURN_SHARP_LEFT\",\n TURN_LEFT = \"TURN_LEFT\",\n TURN_SLIGHT_LEFT = \"TURN_SLIGHT_LEFT\",\n CONTINUE_ON_STREET = \"CONTINUE_ON_STREET\",\n TURN_SLIGHT_RIGHT = \"TURN_SLIGHT_RIGHT\",\n TURN_RIGHT = \"TURN_RIGHT\",\n TURN_SHARP_RIGHT = \"TURN_SHARP_RIGHT\",\n FINISH = \"FINISH\",\n REACHED_VIA = \"REACHED_VIA\",\n REACHED_CHARGING_STATION = \"REACHED_CHARGING_STATION\",\n USE_ROUNDABOUT = \"USE_ROUNDABOUT\",\n KEEP_RIGHT = \"KEEP_RIGHT\",\n U_TURN_RIGHT = \"U_TURN_RIGHT\",\n PT_START_TRIP = \"PT_START_TRIP\",\n PT_TRANSFER = \"PT_TRANSFER\",\n PT_END_TRIP = \"PT_END_TRIP\",\n IGNORE = \"IGNORE\"\n}\n\nexport type RouteInternalCombustionVehicleEmissions = {\n /** Total co2e emissions. */\n total: Scalars[\"Float\"];\n /** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions. */\n operational: RouteInternalCombustionVehicleOperationalEmissions;\n /** End of life emissions. */\n end_of_life: RouteEndOfLifeEmissions;\n /** Emissions info for the legs in the same order as in the route. */\n legs: Array<RouteInternalCombustionVehicleLegEmissions>;\n};\n\nexport type RouteInternalCombustionVehicleEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleLegEmissions = {\n /** Total co2e emissions. */\n total: Scalars[\"Float\"];\n /** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions. */\n operational: RouteInternalCombustionVehicleOperationalEmissions;\n /** End of life emissions. */\n end_of_life: RouteEndOfLifeEmissions;\n};\n\nexport type RouteInternalCombustionVehicleLegEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleLegEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteInternalCombustionVehicleOperationalEmissions = {\n /** Total operational emissions. */\n total: Scalars[\"Float\"];\n /** Fuel emissions. */\n fuel: RouteOperationalFuelEmissions;\n /** Road infrastructure emissions. */\n infrastructure: RouteOperationalInfrastructureEmissions;\n /** Maintenance emissions. */\n maintenance: RouteOperationalMaintenanceEmissions;\n};\n\nexport type RouteInternalCombustionVehicleOperationalEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLeg = {\n /** ID of a leg. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Distance from the start to the end of a leg, in meters. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Total drive time from the start to the end of a leg, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Total energy used in a leg in kWh. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Display value that indicates the range, in meters, available at the beginning of the leg. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. */\n rangeStart?: Maybe<Scalars[\"Int\"]>;\n /** Total energy in a battery at the beginning of a leg, in kWh. */\n rangeStartKwh?: Maybe<Scalars[\"Float\"]>;\n /** Total energy in a battery at the beginning of a trip, in percentage. */\n rangeStartPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Display value that indicates the range, in meters, available at the end of the leg. This range is calculated using the Chargetrip range, the conditions at the time of planning the route, weather scenario (current or seasonal) and the route input. Please note: In case of a non BEV where the range end is negative, the value will be 0. */\n rangeEnd?: Maybe<Scalars[\"Int\"]>;\n /** Total energy left in a battery at the end of a leg, in kWh. In the case of a non BEV where the range end is negative, the value will be 0. */\n rangeEndKwh?: Maybe<Scalars[\"Float\"]>;\n /** Remaining range, energy in percentage, at the end of a trip. */\n rangeEndPercentage?: Maybe<Scalars[\"Int\"]>;\n /** Origin point location. */\n origin?: Maybe<FeaturePoint>;\n /** Destination point location. */\n destination?: Maybe<FeaturePoint>;\n /** Type of a leg. */\n type?: Maybe<LegType>;\n /** Name of a destination. This is the station name in case a user should charge or the name of the location in case this was provided. */\n name?: Maybe<Scalars[\"String\"]>;\n /** ID of a station. */\n stationId?: Maybe<Scalars[\"String\"]>;\n /** ID of an operator. */\n operatorId?: Maybe<Scalars[\"String\"]>;\n /** Name of an operator. */\n operatorName?: Maybe<Scalars[\"String\"]>;\n /** Ranking of an operator. */\n operatorRanking?: Maybe<Scalars[\"Int\"]>;\n /** Total time required to charge a battery until 80%, in seconds. */\n chargeTime?: Maybe<Scalars[\"Int\"]>;\n /** Recommended EVSE where to charge. */\n evse?: Maybe<EVSE>;\n /** Recommended connector for charging. */\n connector?: Maybe<Connector>;\n /** Number of compatible plugs available at a charge station. */\n plugsAvailable?: Maybe<Scalars[\"Int\"]>;\n /** Number of compatible plugs occupied at a charge station. */\n plugsOccupied?: Maybe<Scalars[\"Int\"]>;\n /** Number of compatible plugs unknown at a charge station. */\n plugsUnknown?: Maybe<Scalars[\"Int\"]>;\n /** Number of compatible plugs out of order at a charge station. */\n plugsOutOfOrder?: Maybe<Scalars[\"Int\"]>;\n /** Total number of compatible plugs at a charge station. */\n plugsCount?: Maybe<Scalars[\"Int\"]>;\n /** Polyline containing encoded coordinates. */\n polyline?: Maybe<Scalars[\"String\"]>;\n /** Steps of a leg. */\n steps?: Maybe<Array<Maybe<RouteStep>>>;\n /** Tags of a leg. Values: road, highway, toll, ferry. */\n tags?: Maybe<Array<Maybe<RouteTagType>>>;\n /** Cargo weight in a vehicle for the duration of a leg, in kg. */\n cargo?: Maybe<Scalars[\"Float\"]>;\n /** Number of occupants in a vehicle for the duration of a leg. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteLegpolylineArgs = {\n decimals?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteLegMeta = {\n /** Warnings that certain conditions specified in a route mutation are not respected. */\n warnings: Array<RouteMetaWarning>;\n};\n\nexport type RouteLegOperationalElectricityEmissions = {\n /** Total electricity emissions. */\n total: Scalars[\"Float\"];\n /** Base emissions without efficiency losses. */\n base_value: Scalars[\"Float\"];\n /** Emissions for electricity lost in the battery. */\n battery_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost in transmission. */\n transmission_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost during charging. */\n chargepoint_losses: Scalars[\"Float\"];\n /** Electricity efficiency information. */\n efficiency: RouteOperationalElectricityEmissionsEfficiency;\n /** Electricity intensity information. */\n intensity: RouteLegOperationalElectricityEmissionsIntensity;\n};\n\nexport type RouteLegOperationalElectricityEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionsbase_valueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionsbattery_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionstransmission_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteLegOperationalElectricityEmissionschargepoint_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for a leg */\nexport type RouteLegOperationalElectricityEmissionsIntensity = {\n /** Total average electricity emissions intensity in unit CO2e/kWh. */\n total: Scalars[\"Float\"];\n /** Base regional electricity emissions intensity for the leg. */\n base_regional_value: EmissionsFactor;\n /** Base regional electricity intensity used for the ISO 14083:2023 emissions estimation. */\n base_iso_14083_2023_regional_value: EmissionsFactor;\n /** Electricity mix for the leg. */\n energy_sources: RouteOperationalElectricityEnergySources;\n /** Model used to estimate the electricity mix. */\n energy_source_model: RouteOperationalElectricityEnergySourceModel;\n /** Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh. */\n infrastructure: Scalars[\"Float\"];\n /** Season for which the leg was calculated. */\n season: RouteOperationalElectricitySeason;\n /** Climate for which the leg was calculated. */\n climate: RouteOperationalElectricityClimate;\n /** Estimated electricity demand at the time and place the electricity for this leg was obtained as a fraction of the annual average demand. */\n average_demand: Scalars[\"Float\"];\n /** Fraction of regional power generation that is not affected by demand (is assumed to always be on). */\n base_load_fraction: Scalars[\"Float\"];\n};\n\n/** Electricity emission intensity for a leg */\nexport type RouteLegOperationalElectricityEmissionsIntensitytotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for a leg */\nexport type RouteLegOperationalElectricityEmissionsIntensityinfrastructureArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteMeta = {\n /** Warnings that certain conditions specified in a route mutation are not respected. */\n warnings: Array<RouteMetaWarning>;\n};\n\nexport type RouteMetaWarning = {\n /** Static identifier, can be used for production purposes such as i18n. */\n code: Scalars[\"String\"];\n /** Human readable explanation of the warning, for development purposes. */\n message: Scalars[\"String\"];\n /** Optional JSON object containing data explaining the warning, for development purposes. */\n data?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport type RouteMetadata = {\n /** Refers to the x-app-id specified in the headers. */\n app_id: Scalars[\"ID\"];\n /** Date when a route was created by a createRoute mutation. */\n created_at: Scalars[\"DateTime\"];\n /** Last updated date of a route. */\n updated_at: Scalars[\"DateTime\"];\n /** Length of time required to successfully calculate a route, in milliseconds. */\n computation_time?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Köppen climate classification. */\nexport enum RouteOperationalElectricityClimate {\n /** Tropical rain forest climate. */\n AF = \"Af\",\n /** Tropical monsoon climate. */\n AM = \"Am\",\n /** Tropical savanna climate, dry summer. */\n AW = \"Aw\",\n /** Tropical savanna climate, dry winter. */\n AS = \"As\",\n /** Hot desert climate. */\n BWH = \"BWh\",\n /** Cold desert climate. */\n BWK = \"BWk\",\n /** Hot semi-arid climate. */\n BSH = \"BSh\",\n /** Cold semi-arid climate. */\n BSK = \"BSk\",\n /** Monsoon-influenced humid subtropical climate. */\n CWA = \"Cwa\",\n /** Subtropical highland climate. */\n CWB = \"Cwb\",\n /** Cold subtropical highland climate. */\n CWC = \"Cwc\",\n /** Humid subtropical climate. */\n CFA = \"Cfa\",\n /** Temperate oceanic climate. */\n CFB = \"Cfb\",\n /** Sub polar oceanic climate. */\n CFC = \"Cfc\",\n /** Hot-summer Mediterranean climate. */\n CSA = \"Csa\",\n /** Warm-summer Mediterranean climate. */\n CSB = \"Csb\",\n /** Cold-summer Mediterranean climate. */\n CSC = \"Csc\",\n /** Monsoon-influenced hot-summer humid continental climate. */\n DWA = \"Dwa\",\n /** Monsoon-influenced warm-summer humid continental climate. */\n DWB = \"Dwb\",\n /** Monsoon-influenced subarctic climate. */\n DWC = \"Dwc\",\n /** Monsoon-influenced extremely cold subarctic climate. */\n DWD = \"Dwd\",\n /** Hot-summer humid continental climate. */\n DFA = \"Dfa\",\n /** Warm-summer humid continental climate. */\n DFB = \"Dfb\",\n /** Subarctic climate. */\n DFC = \"Dfc\",\n /** Extremely cold subarctic climate. */\n DFD = \"Dfd\",\n /** Mediterranean-influenced hot-summer humid continental climate. */\n DSA = \"Dsa\",\n /** Mediterranean-influenced warm-summer humid continental climate. */\n DSB = \"Dsb\",\n /** Mediterranean-influenced subarctic climate. */\n DSC = \"Dsc\",\n /** Mediterranean-influenced extremely cold subarctic climate. */\n DSD = \"Dsd\",\n /** Tundra climate. */\n ET = \"ET\",\n /** Ice cap climate. */\n EF = \"EF\"\n}\n\nexport type RouteOperationalElectricityEmissions = {\n /** Total electricity emissions. */\n total: Scalars[\"Float\"];\n /** Base emissions without efficiency losses. */\n base_value: Scalars[\"Float\"];\n /** Emissions for electricity lost in the battery. */\n battery_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost in transmission. */\n transmission_losses: Scalars[\"Float\"];\n /** Emissions for electricity lost during charging. */\n chargepoint_losses: Scalars[\"Float\"];\n /** Electricity efficiency information. */\n efficiency: RouteOperationalElectricityEmissionsEfficiency;\n /** Electricity intensity information. */\n intensity: RouteOperationalElectricityEmissionsIntensity;\n};\n\nexport type RouteOperationalElectricityEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsbase_valueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsbattery_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionstransmission_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionschargepoint_lossesArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsEfficiency = {\n /** Average total electricity efficiency. */\n total: Scalars[\"Float\"];\n /** Average efficiency of the battery. */\n battery: Scalars[\"Float\"];\n /** Average estimated transmission efficiency using the base transmission efficiency adjusting for temperature. */\n transmission: Scalars[\"Float\"];\n /** Average base regional grid transmission efficiency. */\n base_transmission: Scalars[\"Float\"];\n /** Average transmission efficiency change due to temperature. */\n transmission_temperature_modifier: Scalars[\"Float\"];\n /** Average efficiency of the chargepoint. */\n chargepoint: Scalars[\"Float\"];\n /** Average evse (electric vehicle supply equipment) efficiency of the chargepoint. */\n evse: Scalars[\"Float\"];\n /** Average circuit breaker efficiency of the chargepoint. */\n breaker: Scalars[\"Float\"];\n /** Average power electronics unit efficiency of the chargepoint. */\n power_electronics_unit: Scalars[\"Float\"];\n /** Average transformer efficiency of the chargepoint. */\n transformer: Scalars[\"Float\"];\n /** Change in chargepoint efficiency due to temperature. */\n chargepoint_temperature_modifier: Scalars[\"Float\"];\n /** Average charging current in amperes. */\n average_charging_current: Scalars[\"Float\"];\n /** Average charging voltage in volts. */\n average_charging_voltage: Scalars[\"Float\"];\n /** Average outside temperature. */\n average_temperature: Scalars[\"Float\"];\n /** Average regional temperature. */\n average_regional_temperature: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalElectricityEmissionsEfficiencyaverage_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type RouteOperationalElectricityEmissionsEfficiencyaverage_regional_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensity = {\n /** Total average electricity emissions intensity in unit CO2e/kWh. */\n total: Scalars[\"Float\"];\n /** Average base regional electricity emissions intensity in unit CO2e/kWh. */\n average_base_regional_value: Scalars[\"Float\"];\n /** Total electricity intensity used for iso 14083:2023 scope emissions estimate in unit CO2e/kWh. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Average electricity mix for the route. */\n energy_sources: RouteOperationalElectricityEnergySources;\n /** Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh. */\n infrastructure: Scalars[\"Float\"];\n /** Average electricity demand at the time of route charges as a fraction of the annual average demand. */\n average_demand: Scalars[\"Float\"];\n /** Fraction of regional power generation that is not affected by demand (is assumed to always be on). */\n base_load_fraction: Scalars[\"Float\"];\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensitytotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensityaverage_base_regional_valueArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensityiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Electricity emission intensity for the route */\nexport type RouteOperationalElectricityEmissionsIntensityinfrastructureArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Energy source models. */\nexport enum RouteOperationalElectricityEnergySourceModel {\n /** The current energy mix of the charging station provided by the CPO was used. */\n OCPI_STATION_ENERGY_MIX = \"ocpi_station_energy_mix\",\n /** Historical average energy mix for the month. */\n GRID_MONTHLY_AVERAGE = \"grid_monthly_average\",\n /** Historical average energy mix for the month and hour. */\n GRID_HOURLY_AVERAGE = \"grid_hourly_average\",\n /** Estimate using historical average electricity demand for the month. */\n GRID_DEMAND_BASED_MONTHLY_AVERAGE = \"grid_demand_based_monthly_average\",\n /** Estimate using historical average electricity demand for the month and hour. */\n GRID_DEMAND_BASED_HOURLY_AVERAGE = \"grid_demand_based_hourly_average\",\n /** Estimate using the seasonal average electricity demand for the climate. */\n CLIMATE_DEMAND_BASED_SEASONAL_AVERAGE = \"climate_demand_based_seasonal_average\",\n /** Estimate using the seasonal average electricity demand for the hour and climate. */\n CLIMATE_DEMAND_BASED_HOURLY_AVERAGE = \"climate_demand_based_hourly_average\",\n /** Regional default energy mix. */\n DEFAULT = \"default\"\n}\n\nexport type RouteOperationalElectricityEnergySources = {\n /** Electricity produced by coal power plants. */\n coal: ElectricityGenerationMethod;\n /** Electricity produced by natural gas power plants. */\n gas: ElectricityGenerationMethod;\n /** Electricity produced by hydroelectric power. */\n hydro: ElectricityGenerationMethod;\n /** Electricity produced by solar power. */\n solar: ElectricityGenerationMethod;\n /** Electricity produced by wind power. */\n wind: ElectricityGenerationMethod;\n /** Electricity produced by oil and other miscellaneous fossil fuel power plants. */\n oil: ElectricityGenerationMethod;\n /** Electricity produced by nuclear power plants. */\n nuclear: ElectricityGenerationMethod;\n /** Electricity produced by biofuel/biomass. */\n biofuel: ElectricityGenerationMethod;\n /** Electricity produced by geothermal power plants. */\n geothermal: ElectricityGenerationMethod;\n /** Electricity produced by other means. */\n other: ElectricityGenerationMethod;\n};\n\n/** Yearly seasons. */\nexport enum RouteOperationalElectricitySeason {\n /** Winter season. */\n WINTER = \"winter\",\n /** Spring season. */\n SPRING = \"spring\",\n /** Summer season. */\n SUMMER = \"summer\",\n /** Fall season. */\n FALL = \"fall\"\n}\n\nexport type RouteOperationalFuelEmissions = {\n /** Total fuel emissions for the route. */\n total: Scalars[\"Float\"];\n /** Direct (tank to wheels) fuel emissions for the route. */\n direct: Scalars[\"Float\"];\n /** Indirect (well to tank) fuel emissions for the route. */\n indirect: Scalars[\"Float\"];\n /** Total fuel consumption for the route. */\n consumption: Scalars[\"Float\"];\n /** Estimated internal combustion vehicle weight. */\n vehicle_weight: Scalars[\"Float\"];\n /** Estimated internal combustion vehicle engine torque. */\n engine_torque: Scalars[\"Float\"];\n /** Average powertrain efficiency. */\n powertrain_efficiency: Scalars[\"Float\"];\n /** Average base powertrain efficiency. */\n base_powertrain_efficiency: Scalars[\"Float\"];\n /** Speed related change in powertrain efficiency from the base. */\n powertrain_efficiency_speed_modifier: Scalars[\"Float\"];\n /** Average speed of the vehicle. */\n average_speed: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalFuelEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsdirectArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsindirectArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsconsumptionArgs = {\n unit?: Maybe<FuelUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsvehicle_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsengine_torqueArgs = {\n unit?: Maybe<TorqueUnit>;\n};\n\nexport type RouteOperationalFuelEmissionsaverage_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\n/** Fuel types. */\nexport enum RouteOperationalFuelType {\n /** Gasoline fuel. */\n GASOLINE = \"gasoline\",\n /** Diesel fuel. */\n DIESEL = \"diesel\"\n}\n\nexport type RouteOperationalInfrastructureEmissions = {\n /** Total road infrastructure emissions. */\n total: Scalars[\"Float\"];\n /** Embedded (construction, decommissioning, etc) road infrastructure emissions. */\n embedded: Scalars[\"Float\"];\n /** Induced road infrastructure maintenance emissions. */\n maintenance: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalInfrastructureEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalInfrastructureEmissionsembeddedArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalInfrastructureEmissionsmaintenanceArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalMaintenanceEmissions = {\n /** Total maintenance emissions. */\n total: RouteOperationalMaintenanceEmissionsField;\n /** Fluid related maintenance emissions. */\n fluids: FluidMaintenanceEmissions;\n /** Battery related maintenance emissions. */\n battery: RouteOperationalMaintenanceEmissionsField;\n /** Tire related maintenance emissions. */\n tires: RouteOperationalMaintenanceEmissionsField;\n /** Miscellaneous component maintenance emissions. */\n components: RouteOperationalMaintenanceEmissionsField;\n /** Accident repair related maintenance emissions. */\n repair: RouteOperationalMaintenanceEmissionsField;\n};\n\nexport type RouteOperationalMaintenanceEmissionsField = {\n /** Total emissions. */\n total: Scalars[\"Float\"];\n /** Emissions from replacement production and transport. */\n production: Scalars[\"Float\"];\n /** Emissions from disposal. */\n disposal: Scalars[\"Float\"];\n};\n\nexport type RouteOperationalMaintenanceEmissionsFieldtotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalMaintenanceEmissionsFieldproductionArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperationalMaintenanceEmissionsFielddisposalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteOperatorPreferences = {\n /** Ranking of an operator with multiple levels, each level having its own penalty value. */\n ranking?: Maybe<RouteOperatorPreferencesRanking>;\n /** Operators that should be excluded for a route calculation. */\n exclude?: Maybe<Array<RouteOperatorsValue>>;\n /** Operators that should be avoided, but not excluded, for a route calculation. */\n avoid?: Maybe<Array<RouteOperatorsValue>>;\n};\n\n/** Prioritized operators for a route calculation. */\nexport type RouteOperatorPreferencesInput = {\n /** Operators to be preferred in route calculation. If not specified, no operator ranking is applied (including project-configured ranking). */\n ranking?: Maybe<RouteOperatorPreferencesRankingInput>;\n /** Operators to be excluded from route calculation. If specified, overrides project-configured operator exclusions. If not specified, applies project-configured operator exclusions. */\n exclude?: Maybe<Array<RouteOperatorsValueInput>>;\n /** Operators that should be avoided, but not excluded, for a route calculation. */\n avoid?: Maybe<Array<RouteOperatorsValueInput>>;\n};\n\nexport type RouteOperatorPreferencesRanking = {\n /** Flag indicating if an operator should be preferred or required. */\n type: RouteOperatorsType;\n /** Ranking levels for operator ranking. */\n levels?: Maybe<RouteOperatorPreferencesRankingLevels>;\n};\n\nexport type RouteOperatorPreferencesRankingInput = {\n /** Determines how operator preferences are applied to stations during route calculation. If no ranking is provided through 'levels' or project settings, no operator preference is applied. */\n type: RouteOperatorsType;\n /** Priority levels for operator ranking. If not specified, applies the specified enforcement type to the project-configured operator ranking. */\n levels?: Maybe<RouteOperatorPreferencesRankingLevelsInput>;\n};\n\nexport type RouteOperatorPreferencesRankingLevels = {\n /** Least significant level for operators ranking. */\n low?: Maybe<Array<RouteOperatorsValue>>;\n /** Medium level for operators ranking. */\n medium?: Maybe<Array<RouteOperatorsValue>>;\n /** Most significant level for operator ranking. */\n high?: Maybe<Array<RouteOperatorsValue>>;\n};\n\nexport type RouteOperatorPreferencesRankingLevelsInput = {\n /** Least significant level for operator ranking. */\n low?: Maybe<Array<RouteOperatorsValueInput>>;\n /** Medium level for operator ranking. */\n medium?: Maybe<Array<RouteOperatorsValueInput>>;\n /** Most significant level for operator ranking. */\n high?: Maybe<Array<RouteOperatorsValueInput>>;\n};\n\n/** Prioritized operators for a route calculation. */\nexport type RouteOperators = {\n /** Flag indicating if the operators ranking should be preferred or required. */\n type?: Maybe<RouteOperatorsType>;\n /** Ranking of an operator with multiple levels, each level having it's own penalty value. */\n ranking?: Maybe<RouteOperatorsRanking>;\n /** Operator IDs which should be excluded from a route. */\n exclude?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Prioritized operators for a route calculation. */\nexport type RouteOperatorsInput = {\n /** Flag indicating if the operators ranking should be preferred or required. */\n type?: Maybe<RouteOperatorsType>;\n /** Ranking of an operator with multiple levels, each level having it's own penalty value. */\n ranking?: Maybe<RouteOperatorsRankingInput>;\n /** Operator IDs which should be excluded from a route. */\n exclude?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Ranking configuration for prioritized operators. */\nexport type RouteOperatorsRanking = {\n /** Level 1 (most significant) for operator ranking. */\n level1?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 2 for operator ranking. */\n level2?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 3 for operator ranking. */\n level3?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 4 for operator ranking. */\n level4?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 5 for operator ranking. */\n level5?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 6 for operator ranking. */\n level6?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 7 for operator ranking. */\n level7?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 8 for operator ranking. */\n level8?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 9 for operator ranking. */\n level9?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 10 (least significant) for operator ranking. */\n level10?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Ranking configuration for prioritized operators. */\nexport type RouteOperatorsRankingInput = {\n /** Level 1 (most significant) for operator ranking. */\n level1?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 2 for operator ranking. */\n level2?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 3 for operator ranking. */\n level3?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 4 for operator ranking. */\n level4?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 5 for operator ranking. */\n level5?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 6 for operator ranking. */\n level6?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 7 for operator ranking. */\n level7?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 8 for operator ranking. */\n level8?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 9 for operator ranking. */\n level9?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n /** Level 10 (least significant) for operator ranking. */\n level10?: Maybe<Array<Maybe<Scalars[\"ID\"]>>>;\n};\n\n/** Type of operator prioritization for a route. */\nexport enum RouteOperatorsType {\n /** Operators ranking will not be taken into account if no type is given. */\n NONE = \"none\",\n /** Operators given in the operators ranking will be preferred when calculating routes. */\n PREFERRED = \"preferred\",\n /** Operators given in the operators ranking will be required when calculating routes, all other operators will be ignored. */\n REQUIRED = \"required\"\n}\n\nexport type RouteOperatorsValue = {\n /** ID of an operator. */\n id: Scalars[\"ID\"];\n /** List of countries in which the operator should be preferred/excluded. When omitted the operator will be preferred/excluded in every country. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\nexport type RouteOperatorsValueInput = {\n /** ID of an operator. */\n id: Scalars[\"ID\"];\n /** List of countries in which the operator should be preferred/excluded/avoided. When omitted the operator will be preferred/excluded in every country. */\n countries?: Maybe<Array<CountryCodeAlpha2>>;\n};\n\nexport type RouteOriginFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteOriginProperties>;\n};\n\nexport type RouteOriginFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteOriginPropertiesInput>;\n};\n\nexport type RouteOriginProperties = {\n /** Data about the origin location. */\n location?: Maybe<RoutePropertiesLocation>;\n /** Vehicle data at the origin location. */\n vehicle?: Maybe<RoutePropertiesVehicle>;\n};\n\nexport type RouteOriginPropertiesInput = {\n /** Data about the origin location. */\n location?: Maybe<RoutePropertiesLocationInput>;\n /** Vehicle data at the origin location. */\n vehicle?: Maybe<RoutePropertiesVehicleInput>;\n};\n\nexport type RoutePath = {\n /** GeoJSON location of a route path segment. */\n location?: Maybe<Point>;\n /** Elevation (altitude) in meters. */\n elevation?: Maybe<Scalars[\"Int\"]>;\n /** Average speed, in km/h, for this route path segment. */\n averageSpeed?: Maybe<Scalars[\"Float\"]>;\n /** Recommended speed, in km/h for this route path segment to optimise the consumption. */\n recommendedSpeed?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh, of a route path segment. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Consumption, in kWh per km, of a route path segment. */\n consumptionPerKm?: Maybe<Scalars[\"Float\"]>;\n /** Distance, in meters, of a route path segment. */\n distance?: Maybe<Scalars[\"Float\"]>;\n /** Duration, in seconds, of a route path segment. */\n duration?: Maybe<Scalars[\"Float\"]>;\n /** State of charge, in kWh, of a route path segment. */\n stateOfCharge?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RoutePropertiesLocation = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RoutePropertiesLocationInput = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RoutePropertiesStation = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RoutePropertiesStationInput = {\n /** ID of the station. When provided and valid, the coordinates of this station will be used. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. When provided and valid, the coordinates of this station will be used. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Duration to stay at the station, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RoutePropertiesVehicle = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight: TotalOccupantWeight;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeight>;\n};\n\nexport type RoutePropertiesVehicleInput = {\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Combined weight of the occupants. This can only be used in combination with occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n};\n\nexport type RoutePropertiesViaLocation = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RoutePropertiesViaLocationInput = {\n /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */\n name?: Maybe<Scalars[\"String\"]>;\n /** Duration to stay at this point, in seconds. */\n stop_duration?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteResponse = {\n /** ID of a route calculation. */\n id: Scalars[\"ID\"];\n /** Status of a route. */\n status: RouteStatus;\n /** Recommended route. */\n recommended?: Maybe<RouteDetails>;\n /** [BETA] Alternative routes. */\n alternatives?: Maybe<Array<RouteDetails>>;\n /** Meta data for a route. */\n meta: RouteMetadata;\n /** Route request. */\n request_input: CreateRoute;\n};\n\n/** Scheduled charge stop along a route. */\nexport type RouteScheduledChargeStop = {\n /** List of amenity types. */\n types?: Maybe<Array<Maybe<AmenityType>>>;\n /** Duration at the amenity, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Maximum allowed offset from the stop_after value in seconds. Default is 1800. */\n offset?: Maybe<Scalars[\"Int\"]>;\n /** Desired drive time before a scheduled stop after leaving the previous stop, in seconds. */\n stop_after?: Maybe<Scalars[\"Int\"]>;\n /** Maximum distance from a station to an amenity, in meters. */\n max_distance_from_station?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** The season of the route. */\nexport enum RouteSeason {\n /** We suppose it is summer and we have the best weather conditions. */\n SUMMER = \"summer\",\n /** We suppose it is winter and we have the worst weather conditions. */\n WINTER = \"winter\",\n /** We fetch the current weather conditions. */\n CURRENT = \"current\"\n}\n\nexport type RouteStationFilter = {\n /** Filters stations within this distance from the route path. The value must be between 0 and 10 000 meters. If not specified, defaults to 1 000 meters. */\n maximum_distance_from_path?: Maybe<DistanceInput>;\n /** Filters stations by operator preference types. This filter depends exclusively on the preferences used for the route calculation. If not specified, stations from all preference types (ranked, unranked, avoided, excluded) are returned. */\n operator_preference?: Maybe<Array<OperatorPreferenceType>>;\n};\n\nexport type RouteStationOperator = {\n /** Unique operator ID. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Operator's preference status specifically for this route calculation. */\n preference_type: OperatorPreferenceType;\n};\n\nexport type RouteStationPreferences = {\n /** Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. */\n prefer_highway_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RouteStationPreferencesInput = {\n /** Prioritises charging stations located directly on the highway, avoiding exiting highways to charge. It's considered alongside final SOC and operator preferences, and may reduce their influence if they conflict. This logic may require additional client-specific tuning. Please contact Chargetrip if the behavior seems suboptimal. */\n prefer_highway_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RouteStationWithAmenities = {\n /** ID of the station. */\n id: Scalars[\"ID\"];\n /** ID of the station provided by the station data source. */\n external_id?: Maybe<Scalars[\"ID\"]>;\n /** GeoJSON location of the station. */\n location: Point;\n /** Information about the station's operator. */\n operator: RouteStationOperator;\n /** Distance of the station to the closest point in the original route. */\n distance_from_path: Scalars[\"Float\"];\n /** List of up to 5 amenities matching the specified amenity type. Sorted by ascending distance from the station. */\n matching_amenities: Array<Amenity>;\n};\n\nexport type RouteStationWithAmenitiesdistance_from_pathArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type RouteStationsAlong = {\n /** The ID of station. */\n id?: Maybe<Scalars[\"String\"]>;\n /** Geojson location of a station. */\n location?: Maybe<Point>;\n /** Speed of a station. A station along a route can be either fast or turbo. */\n speed?: Maybe<StationSpeedType>;\n /** Status of a station. */\n status?: Maybe<ChargerStatus>;\n /** The station uses a preferred operator. */\n preferredOperator?: Maybe<Scalars[\"Boolean\"]>;\n /** Distance in meters between station and route path. */\n distance?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type RouteStationsWithAmenitiesConnection = {\n /** Total number of stations with amenities of the specified type. */\n total_count: Scalars[\"Int\"];\n /** Information about the current page. */\n page_info: PageInfo;\n /** List of stations with amenities of the specified type. */\n nodes: Array<RouteStationWithAmenities>;\n};\n\nexport type RouteStationsWithAmenityFilter = {\n /** Station filters. */\n station?: Maybe<RouteStationFilter>;\n /** Amenity filters. */\n amenity?: Maybe<RouteAmenityFilter>;\n};\n\n/** The status of a route. The status can be pending, processing, done, not_found or error. */\nexport enum RouteStatus {\n /** Route is queued and pending processing. Temporary status. */\n PENDING = \"pending\",\n /** We are computing the route for your request. Temporary status. */\n PROCESSING = \"processing\",\n /** We finished computing the route, with a result. Final status. */\n DONE = \"done\",\n /** We finished computing the route, without any result. Final status. */\n NOT_FOUND = \"not_found\",\n /** An error occurred while computing the route. Final status. */\n ERROR = \"error\"\n}\n\nexport type RouteStep = {\n /** ID of a step. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Type of a step. */\n type?: Maybe<StepType>;\n /** Polyline containing encoded coordinates. */\n polyline?: Maybe<Scalars[\"String\"]>;\n /** Distance from the start to the end of a step, in meters. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Total drive time from the start to the end of a step, in seconds. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Total energy used in a step in kWh. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteSteppolylineArgs = {\n decimals?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Tags of a route. */\nexport enum RouteTagType {\n ROAD = \"road\",\n HIGHWAY = \"highway\",\n TOLL = \"toll\",\n FERRY = \"ferry\",\n WALKING = \"walking\",\n CROSSBORDER = \"crossborder\"\n}\n\n/** Specifies a temporal window to search for stations with matching amenity types. Defined by a center from the journey origin and a surrounding time margin. */\nexport type RouteTimeWindow = {\n /** Center point of the search, expressed as the travel time, in seconds, from the journey's origin. */\n center: Scalars[\"Int\"];\n /** Duration in seconds to extend the search on either side of the 'center'. Maximum allowed value is 2700 (45 minutes). If not specified, defaults to 900 seconds (15 minutes). */\n margin?: Maybe<Scalars[\"Int\"]>;\n};\n\n/** Types of route features that can be avoided in truck routing. */\nexport enum RouteTruckAvoid {\n TOLL_ROAD = \"toll_road\",\n FERRY = \"ferry\"\n}\n\nexport type RouteTruckOriginFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Additional location and vehicle properties can be specified. */\n properties?: Maybe<RouteTruckOriginProperties>;\n};\n\nexport type RouteTruckOriginFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: PointInput;\n /** Additional location and vehicle properties can be specified. */\n properties?: Maybe<RouteTruckOriginPropertiesInput>;\n};\n\nexport type RouteTruckOriginProperties = {\n /** Data about the origin location. */\n location?: Maybe<RouteTruckPropertiesLocation>;\n /** Vehicle configuration at this point. Properties defined here are persistent and will be applied to all subsequent via points in the route unless explicitly overridden at a specific point. If not specified, assumes one occupant, with 80kg of mass and no trailers added */\n vehicle?: Maybe<RouteTruckPropertiesVehicle>;\n};\n\nexport type RouteTruckOriginPropertiesInput = {\n /** Data about the origin location. */\n location?: Maybe<RouteTruckPropertiesLocationInput>;\n /** Vehicle configuration at this point. Properties defined here are persistent and will be applied to all subsequent via points in the route unless explicitly overridden at a specific point. If not specified, assumes one occupant, with 80kg of mass and no trailers added */\n vehicle?: Maybe<RouteTruckPropertiesVehicleInput>;\n};\n\nexport type RouteTruckPropertiesLocation = {\n /** Name override for the choosen location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RouteTruckPropertiesLocationInput = {\n /** Name override for the choosen location. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type RouteTruckPropertiesVehicle = {\n /** Number of occupants in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Combined weight of the all occupants. Defaults to 80kg if not specified. */\n total_occupant_weight?: Maybe<TotalOccupantWeight>;\n /** Total weight of all cargo in the vehicle, including the cargo in any attached trailers. */\n total_cargo_weight?: Maybe<TotalCargoWeight>;\n /** The number of axles of the main vehicle (e.g., rigid truck or tractor unit) in contact with the road. Excludes semi-trailer axles, those should be provided in trailer object. If not specified, it assumes main vehicle's all axles (liftable and rigid) are in use. */\n axles_in_use?: Maybe<Scalars[\"Int\"]>;\n /** Configuration and dimensions for attached trailers. Required when the choosen vehicle is tractor unit. If not specified, no trailer configuration is set . */\n trailer?: Maybe<RouteTruckVehicleTrailer>;\n};\n\nexport type RouteTruckPropertiesVehicleInput = {\n /** Number of occupants in the vehicle. Defaults to 1 if not specified. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Combined weight of the all occupants. Defaults to 80kg if not specified. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Total weight of all cargo in the vehicle, including the cargo in any attached trailers. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n /** The number of axles of the main vehicle (e.g., rigid truck or tractor unit) in contact with the road. Excludes semi-trailer axles, those should be provided in trailer object. If not specified, it assumes main vehicle's all axles (liftable and rigid) are in use. */\n axles_in_use?: Maybe<Scalars[\"Int\"]>;\n /** Configuration and dimensions for attached trailers. Required when the choosen vehicle is tractor unit. If not specified, no trailer configuration is set . */\n trailer?: Maybe<RouteTruckVehicleTrailerInput>;\n};\n\nexport type RouteTruckVehicle = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery: RouteVehicleBattery;\n /** Charging configuration. */\n charging: RouteVehicleCharging;\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption: AuxiliaryConsumption;\n /** Flag indicating if climate control is on. */\n climate: Scalars[\"Boolean\"];\n /** Vehicle Heat Pump configuration. */\n heat_pump: HeatPumpMode;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin: RouteVehicleCabin;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure: TirePressure;\n};\n\nexport type RouteTruckVehicleInput = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery?: Maybe<RouteVehicleBatteryInput>;\n /** Charging configuration. */\n charging?: Maybe<RouteVehicleChargingInput>;\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;\n /** Flag indicating if climate control is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin?: Maybe<RouteVehicleCabinInput>;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure?: Maybe<TirePressureInput>;\n};\n\nexport type RouteTruckVehicleTrailer = {\n /** Number of trailers. */\n count: Scalars[\"Int\"];\n /** Number of axles of all attached trailers in contact with the road. This value does not include the main vehicle/tractor unit axles. Will be combined with the main vehicle's known number of axles. */\n axles_in_use: Scalars[\"Int\"];\n /** Total unladen (empty) weight of all attached trailers. Will be combined with the main vehicle's known unladen weight. */\n unladen_weight: Scalars[\"Float\"];\n /** Total physical dimensions of the vehicle combination of the main vehicle and trailers. */\n combined_vehicle_dimensions: TruckTrailerCombinedDimensions;\n};\n\nexport type RouteTruckVehicleTrailerunladen_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type RouteTruckVehicleTrailerInput = {\n /** Number of trailers. */\n count: Scalars[\"Int\"];\n /** Number of axles of all attached trailers in contact with the road. This value does not include the main vehicle/tractor unit axles. Will be combined with the main vehicle's known number of axles. */\n axles_in_use: Scalars[\"Int\"];\n /** Total unladen (empty) weight of all attached trailers. Will be combined with the main vehicle's known unladen weight. */\n unladen_weight: WeightInput;\n /** Total physical dimensions of the vehicle combination of the main vehicle and trailers. */\n combined_vehicle_dimensions: TruckTrailerCombinedDimensionsInput;\n};\n\nexport type RouteTruckViaFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<Point>;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteTruckViaProperties>;\n};\n\nexport type RouteTruckViaFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<PointInput>;\n /** Optional object where additional properties can be specified. */\n properties?: Maybe<RouteTruckViaPropertiesInput>;\n};\n\nexport type RouteTruckViaProperties = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocation>;\n /** Vehicle configuration at this point. Properties defined here override previous settings and persist for all subsequent segments of the route until changed again. If not specified, the vehicle state from the previous point remains in effect. */\n vehicle?: Maybe<RouteTruckPropertiesVehicle>;\n /** Station data of the via point. */\n station?: Maybe<RoutePropertiesStation>;\n};\n\nexport type RouteTruckViaPropertiesInput = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocationInput>;\n /** Vehicle configuration at this point. Properties defined here override previous settings and persist for all subsequent segments of the route until changed again. If not specified, the vehicle state from the previous point remains in effect. */\n vehicle?: Maybe<RouteTruckPropertiesVehicleInput>;\n /** Station data of the via point. */\n station?: Maybe<RoutePropertiesStationInput>;\n};\n\nexport type RouteVehicle = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery: RouteVehicleBattery;\n /** Charging configuration. */\n charging: RouteVehicleCharging;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure: TirePressure;\n /** Value of the vehicle's odometer. */\n odometer?: Maybe<Odometer>;\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption: AuxiliaryConsumption;\n /** Flag indicating if climate control is on. */\n climate: Scalars[\"Boolean\"];\n /** Vehicle Heat Pump configuration. */\n heat_pump: HeatPumpMode;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin: RouteVehicleCabin;\n /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Value of the outside temperature. */\n outside_temperature?: Maybe<OutsideTemperature>;\n /** Flag indicating if a vehicle is in park, neutral, or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Value of the vehicle's speed. */\n vehicle_speed?: Maybe<VehicleSpeed>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteVehicleBattery = {\n /** Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default. */\n capacity: StateOfCharge;\n /** Current amount of energy in a battery. If not provided, battery is assumed to be fully charged. */\n state_of_charge: StateOfCharge;\n /** Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default. */\n final_state_of_charge: StateOfCharge;\n /** Temperature of the battery. */\n temperature?: Maybe<Temperature>;\n /** Battery current in ampere. */\n current?: Maybe<Scalars[\"Float\"]>;\n /** Battery voltage in volts. */\n voltage?: Maybe<Scalars[\"Float\"]>;\n /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Flag indicating if the vehicle is charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** EV battery specific configuration for a create route mutation. */\nexport type RouteVehicleBatteryInput = {\n /** Usable capacity of a battery used to compute a route. The value must be between 50% and 150% of a vehicle's baseline battery capacity. If not provided, the vehicle's full usable capacity by default. */\n capacity?: Maybe<StateOfChargeInput>;\n /** Current amount of energy in a battery. If not provided, battery is assumed to be fully charged. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Desired final amount of energy in a battery at the end of a trip. The value must be between 0 and 80% of the vehicle's battery capacity. If not provided, or if the specified value is below the safe risk margin, the safe risk margin is used by default. */\n final_state_of_charge?: Maybe<StateOfChargeInput>;\n /** Battery temperature. */\n temperature?: Maybe<TemperatureInput>;\n /** Battery current in ampere. */\n current?: Maybe<Scalars[\"Float\"]>;\n /** Battery voltage in volts. */\n voltage?: Maybe<Scalars[\"Float\"]>;\n /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Flag indicating if the vehicle is charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type RouteVehicleCabin = {\n /** Flag indicating if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned: Scalars[\"Boolean\"];\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature: Temperature;\n};\n\nexport type RouteVehicleCabinInput = {\n /** Flag indicating if the vehicle cabin was preconditioned for the desired temperature. */\n is_preconditioned?: Maybe<Scalars[\"Boolean\"]>;\n /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */\n desired_temperature?: Maybe<TemperatureInput>;\n};\n\nexport type RouteVehicleCharging = {\n /** Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge. */\n mode: ChargeMode;\n /** Minimum desired power of chargers, in kWh. */\n minimum_power: Scalars[\"Float\"];\n /** Minimum remaining state of charge at charging stops, expressed as a percentage. The value must be between 0 and 60. If not provided, the project configuration value is used. */\n risk_margin: Scalars[\"Int\"];\n /** Supported connectors. If not specified, it defaults to the vehicle's connectors. */\n connectors: Array<RouteVehicleChargingConnector>;\n /** Supported adapters. If not specified, adapters will not be considered. */\n adapters: Array<RouteVehicleChargingConnector>;\n /** Maximum state of charge (%) the vehicle can reach at any charging stop. If not specified defaults to 80%. */\n maximum_state_of_charge: Scalars[\"Int\"];\n};\n\nexport type RouteVehicleChargingConnector = {\n /** Type of the plug. */\n standard: ConnectorType;\n /** Maximum charging speed for this plug. */\n maximum_charge_speed: ChargeSpeed;\n};\n\nexport type RouteVehicleChargingConnectorInput = {\n /** Plug type. */\n standard: ConnectorType;\n /** Maximum charging speed for this plug. */\n maximum_charge_speed: ChargeSpeedInput;\n};\n\nexport type RouteVehicleChargingInput = {\n /** Mode that indicates if the charging time is optimized or if always charged to the maximum state of charge. */\n mode?: Maybe<ChargeMode>;\n /** Minimum desired power of chargers, in kWh. */\n minimum_power?: Maybe<Scalars[\"Float\"]>;\n /** Minimum remaining state of charge at charging stops, expressed as a percentage. The value must be between 0 and 60. If not provided, the project configuration value is used. */\n risk_margin?: Maybe<Scalars[\"Int\"]>;\n /** Supported connectors. If not specified, it defaults to the vehicle's connectors. */\n connectors?: Maybe<Array<RouteVehicleChargingConnectorInput>>;\n /** Supported adapters. If not specified, adapters will not be considered. */\n adapters?: Maybe<Array<RouteVehicleChargingConnectorInput>>;\n /** Maximum state of charge (%) the vehicle can reach at any charging stop. The value must be between 80 and 100. */\n maximum_state_of_charge?: Scalars[\"Int\"];\n};\n\nexport type RouteVehicleEmissions = {\n /** Total co2e emissions. */\n total: Scalars[\"Float\"];\n /** Total co2e emissions from vehicle operational processes calculated using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions. */\n operational: RouteVehicleOperationalEmissions;\n /** End of life emissions. */\n end_of_life: RouteEndOfLifeEmissions;\n /** Emissions info for the legs in the same order as in the route. */\n legs: Array<RouteVehicleLegEmissions>;\n};\n\nexport type RouteVehicleEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\n/** Vehicle specific input for a create route mutation. */\nexport type RouteVehicleInput = {\n /** ID of the vehicle. */\n id: Scalars[\"ID\"];\n /** EV battery specific configuration. */\n battery?: Maybe<RouteVehicleBatteryInput>;\n /** Charging configuration. */\n charging?: Maybe<RouteVehicleChargingInput>;\n /** Tire pressures of all wheels, ordered from front right to front left, then rear left to rear right. */\n tire_pressure?: Maybe<TirePressureInput>;\n /** Odometer (mileage) reading. */\n odometer?: Maybe<OdometerInput>;\n /** Average auxiliary power consumption. */\n auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;\n /** Flag indicating if climate control is on. */\n climate?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle Heat Pump configuration. */\n heat_pump?: Maybe<HeatPumpMode>;\n /** Vehicle cabin configuration used for the route calculation. Applied only if vehicle.climate is set to true. */\n cabin?: Maybe<RouteVehicleCabinInput>;\n /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Outside temperature. */\n outside_temperature?: Maybe<OutsideTemperatureInput>;\n /** Flag indicating if a vehicle is in park, neutral, or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle speed. */\n vehicle_speed?: Maybe<VehicleSpeedInput>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type RouteVehicleLegEmissions = {\n /** Total co2e emissions for the leg. */\n total: Scalars[\"Float\"];\n /** Total leg co2e emissions from vehicle operational processes using the methodology in section 5.2.2 of ISO 14083:2023 and default emissions intensities in Annex K of the same document. */\n iso_14083_2023: Scalars[\"Float\"];\n /** Embedded emissions, for example emissions produced during manufacturing, transportation, and delivery. */\n embedded: RouteEmbeddedEmissions;\n /** Operational emissions for the leg. */\n operational: RouteVehicleLegOperationalEmissions;\n /** End of life emissions for the leg. */\n end_of_life: RouteEndOfLifeEmissions;\n};\n\nexport type RouteVehicleLegEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleLegEmissionsiso_14083_2023Args = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleLegOperationalEmissions = {\n /** Total operational emissions for the leg. */\n total: Scalars[\"Float\"];\n /** Electricity emissions data for the leg. */\n electricity: RouteLegOperationalElectricityEmissions;\n /** Total road infrastructure emissions for the leg. */\n infrastructure: RouteOperationalInfrastructureEmissions;\n /** Total maintenance emissions for the leg. */\n maintenance: RouteOperationalMaintenanceEmissions;\n};\n\nexport type RouteVehicleLegOperationalEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteVehicleOperationalEmissions = {\n /** Total operational emissions. */\n total: Scalars[\"Float\"];\n /** Electricity emissions. */\n electricity: RouteOperationalElectricityEmissions;\n /** Road infrastructure emissions. */\n infrastructure: RouteOperationalInfrastructureEmissions;\n /** Maintenance emissions. */\n maintenance: RouteOperationalMaintenanceEmissions;\n};\n\nexport type RouteVehicleOperationalEmissionstotalArgs = {\n unit?: Maybe<EmissionUnit>;\n};\n\nexport type RouteViaFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<Point>;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<RouteViaProperties>;\n};\n\nexport type RouteViaFeaturePointInput = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry?: Maybe<PointInput>;\n /** Additional feature properties for via. If a `station.id` or `station.external_id` are provided, it will be treated as a charging stop. If omitted or `location.name` is provided, the stop is treated as a non-charging stop location. */\n properties?: Maybe<RouteViaPropertiesInput>;\n};\n\nexport type RouteViaProperties = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocation>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<RoutePropertiesVehicle>;\n /** Station data of the via point. */\n station?: Maybe<RoutePropertiesStation>;\n};\n\nexport type RouteViaPropertiesInput = {\n /** Location data of the via point. */\n location?: Maybe<RoutePropertiesViaLocationInput>;\n /** Vehicle data of the via point. */\n vehicle?: Maybe<RoutePropertiesVehicleInput>;\n /** Specifies a charging station at the via. If a known station is provided, it will be used as charging stop. Any configured operator preferences are ignored for this stop. */\n station?: Maybe<RoutePropertiesStationInput>;\n};\n\nexport type RouteWarning = {\n /** The code of the warning. */\n code: RouteWarningCode;\n};\n\n/** Types of warnings that can be encountered in a route. */\nexport enum RouteWarningCode {\n /** Selected vehicle model is unavailable on one or more regions along the route. */\n EV_UNAVAILABLE_IN_REGION = \"ev_unavailable_in_region\",\n /** Route excludes charging stations as a hybrid vehicle does not require external charging. */\n HEV_NO_CHARGING_STATIONS = \"hev_no_charging_stations\",\n /** Route is calculated using only the battery range of the extended-range vehicle. */\n EREV_BATTERY_ONLY_RANGE = \"erev_battery_only_range\",\n /** Origin location cannot be reached by vehicle and requires a walking section to reach the point. */\n ORIGIN_NOT_VEHICLE_ACCESSIBLE = \"origin_not_vehicle_accessible\",\n /** Destination location cannot be reached by vehicle and requires a walking section to reach the point. */\n DESTINATION_NOT_VEHICLE_ACCESSIBLE = \"destination_not_vehicle_accessible\",\n /** Requested final state of charge cannot be achieved. */\n FINAL_SOC_NOT_POSSIBLE = \"final_soc_not_possible\",\n /** Set maximum speed is too low (below 50 km/h) and may result in an inefficient route. */\n LOW_SPEED = \"low_speed\",\n /** Operator preferences were ignored because they have not been configured for this project nor provided in the route create request. */\n OPERATOR_PREFERENCES_NOT_FOUND = \"operator_preferences_not_found\",\n /** Traffic data for this route is not available. */\n TRAFFIC_DATA_NOT_AVAILABLE = \"traffic_data_not_available\",\n /** Not possible to fetch weather data for a departure time further than 4 days in the future. Current weather used as alternative. */\n WEATHER_FORECAST_NOT_AVAILABLE = \"weather_forecast_not_available\",\n /** Not possible to fetch weather data for a departure time longer than 2 years ago. Current weather used as an alternative. */\n WEATHER_HISTORY_NOT_AVAILABLE = \"weather_history_not_available\",\n /** One or more preferred, excluded, or avoided operators have no active stations available and were ignored. */\n OPERATORS_IGNORED = \"operators_ignored\"\n}\n\nexport type RouteWeather = {\n /** Weather configuration applied to the route. */\n type: WeatherType;\n /** [BETA] Custom weather conditions applied to the route. Only present when 'type' is set to 'CUSTOM'. */\n custom?: Maybe<RouteWeatherCustomConditions>;\n};\n\nexport type RouteWeatherCustomConditions = {\n /** Average ambient temperature estimated along the route. */\n temperature: Temperature;\n /** Atmospheric pressure along the route. */\n air_pressure: AirPressure;\n /** Solar irradiance along the route. */\n solar_irradiance: SolarIrradiance;\n};\n\nexport type RouteWeatherCustomConditionsInput = {\n /** Average ambient temperature estimated along the route. */\n temperature: TemperatureInput;\n /** Atmospheric pressure along the route. */\n air_pressure: AirPressureInput;\n /** Solar irradiance along the route. */\n solar_irradiance: SolarIrradianceInput;\n};\n\nexport type RouteWeatherInput = {\n /** Weather configuration applied to the route. */\n type?: Maybe<WeatherType>;\n /** [BETA] Custom weather conditions to apply to the route. Required only when 'type' is 'CUSTOM'. Must be omitted for other weather types. */\n custom?: Maybe<RouteWeatherCustomConditionsInput>;\n};\n\n/** Scheduled charge stop along a route. */\nexport type ScheduledChargeStopInput = {\n /** List of amenity types. */\n types: Array<AmenityType>;\n /** Duration at the amenity, in seconds. The value should be between 900 and 86400. */\n duration: Scalars[\"Int\"];\n /** Maximum allowed offset from the stop_after value in seconds. */\n offset?: Maybe<Scalars[\"Int\"]>;\n /** Desired drive time for a scheduled stop after leaving the origin point, in seconds. */\n stop_after: Scalars[\"Int\"];\n /** Maximum distance from a station to an amenity, in meters. The value should be between 0 and 1000. */\n max_distance_from_station?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type SolarIrradiance = {\n /** Value of the solar irradiance. */\n value: Scalars[\"Float\"];\n /** Solar irradiance unit. */\n type: SolarIrradianceUnit;\n};\n\nexport type SolarIrradianceInput = {\n /** Value of the solar irradiance. */\n value: Scalars[\"Float\"];\n /** Solar irradiance unit. */\n type: SolarIrradianceUnit;\n};\n\nexport enum SolarIrradianceUnit {\n WATTS_PER_SQUARE_METER = \"watts_per_square_meter\"\n}\n\nexport enum SortDirection {\n ASCENDING = \"ascending\",\n DESCENDING = \"descending\"\n}\n\nexport enum SpeedUnit {\n /** Return the speed in kilometers per hour. */\n KILOMETERS_PER_HOUR = \"kilometers_per_hour\",\n /** Return the speed in miles per hour. */\n MILES_PER_HOUR = \"miles_per_hour\"\n}\n\nexport type StateOfCharge = {\n /** Value of the state of charge of the vehicle. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's state of charge. */\n type: StateOfChargeUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type StateOfChargeInput = {\n /** Value of the vehicle's state of charge. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's state of charge. */\n type: StateOfChargeUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum StateOfChargeUnit {\n /** Return the state of charge in kilometers. */\n KILOMETER = \"kilometer\",\n /** Return the state of charge in miles. */\n MILE = \"mile\",\n /** Return the state of charge in kilowatt hours. */\n KILOWATT_HOUR = \"kilowatt_hour\",\n /** Return the state of charge as a percentage. */\n PERCENTAGE = \"percentage\"\n}\n\n/** Station data which extends OCPI Location. */\nexport type Station = {\n /** Unique ID of a station. */\n id: Scalars[\"ID\"];\n /** ISO-3166 alpha-2 country code of a station. */\n country_code?: Maybe<Scalars[\"String\"]>;\n /** CPO ID of a CPO that 'owns' this station (following the ISO-15118 standard). */\n party_id?: Maybe<Scalars[\"String\"]>;\n /**\n * Defines if a location may be published on a website or app etc.\n * When this is set to false, only tokens identified in the field: publish_allowed_to are allowed to show this location.\n * When the same location has EVSEs that may be published and may not be published, two 'locations' should be created.\n */\n publish?: Maybe<Scalars[\"Boolean\"]>;\n /** Name of a charging station. */\n name?: Maybe<Scalars[\"String\"]>;\n /** Street/block name and house number if available. */\n address?: Maybe<Scalars[\"String\"]>;\n /** City or town */\n city?: Maybe<Scalars[\"String\"]>;\n /** 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. */\n postal_code?: Maybe<Scalars[\"String\"]>;\n /** State or province of a location, only to be used when relevant. */\n state?: Maybe<Scalars[\"String\"]>;\n /** ISO 3166-1 alpha-3 code for the country of this station. */\n country?: Maybe<Scalars[\"String\"]>;\n /** Coordinates of a location. */\n coordinates?: Maybe<OCPIGeoLocation>;\n /** Geographical location of related points relevant to a user. */\n related_locations?: Maybe<Array<Maybe<OCPIAdditionalGeoLocation>>>;\n /** Type of parking at a charge point location. */\n parking_type?: Maybe<OCPIParkingType>;\n /** EVSEs that belong to a station. */\n evses?: Maybe<Array<Maybe<EVSE>>>;\n /** Human-readable directions on how to reach a station. */\n directions?: Maybe<Array<Maybe<OCPIDisplayText>>>;\n /** Information about an operator. */\n operator?: Maybe<Operator>;\n /** Information about a suboperator if applicable. */\n suboperator?: Maybe<Operator>;\n /** Information about an owner if available. */\n owner?: Maybe<Operator>;\n /** Facilities a charging station belongs to. */\n facilities?: Maybe<Array<Maybe<OCPIFacility>>>;\n /** 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). */\n time_zone?: Maybe<Scalars[\"String\"]>;\n /** Times when an EVSEs at a location can be accessed for charging. */\n opening_times?: Maybe<OCPIHours>;\n /** 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. */\n charging_when_closed?: Maybe<Scalars[\"Boolean\"]>;\n /** Links to images related to a location such as photos or logos. */\n images?: Maybe<Array<Maybe<OCPIImage>>>;\n /** Details of the energy supplied at a location. */\n energy_mix?: Maybe<OCPIEnergyMix>;\n /** Timestamp when a location, or one of its EVSEs or Connectors were last updated (or created). */\n last_updated?: Maybe<Scalars[\"DateTime\"]>;\n /** ID provided by a station data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** GeoJSON location of a charging station. */\n location?: Maybe<Point>;\n /** Elevation (altitude) level. */\n elevation?: Maybe<Scalars[\"Int\"]>;\n /** Groups of EVSEs by power and type. */\n chargers?: Maybe<Array<Maybe<Charger>>>;\n /** Amenities located at this location. */\n amenities?: Maybe<Scalars[\"JSON\"]>;\n /** Enriched information about the physical address of a station. */\n physical_address?: Maybe<Address>;\n /** Describes the heavy vehicle properties at the location. */\n heavy_vehicles_properties?: Maybe<StationHeavyVehiclesProperties>;\n /** Describes the heavy vehicle restrictions at the location. */\n heavy_vehicles_restrictions?: Maybe<StationHeavyVehiclesRestrictions>;\n /** Describes the vehicle restrictions at the location. */\n vehicle_restrictions?: Maybe<StationVehicleRestrictions>;\n /** Type of location where the charge point is located. For example, shop. */\n location_category?: Maybe<Scalars[\"String\"]>;\n /** Coordinates for the location's entrances in decimal degrees. If available, there can be more than one entrances to the location. */\n entrance_for_navigation?: Maybe<Array<OCPIAdditionalGeoLocation>>;\n /**\n * Optional object where you can store custom data you need in your application. This extends the current functionalities we offer.\n * @deprecated No longer used.\n */\n properties?: Maybe<Scalars[\"JSON\"]>;\n /** A flag that indicates if a station has real-time information about the availability of its connectors. */\n realtime?: Maybe<Scalars[\"Boolean\"]>;\n /** Connectors grouped by power. */\n power?: Maybe<Scalars[\"JSON\"]>;\n /** Predicted station occupancy. */\n predicted_occupancy?: Maybe<Array<Maybe<StationPredictedOccupancy>>>;\n /** Charging speed for a station. */\n speed?: Maybe<StationSpeedType>;\n /** Global status for a station. */\n status?: Maybe<ChargerStatus>;\n /** 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. */\n custom_properties?: Maybe<StationCustomProperties>;\n /** Review of a station. */\n review?: Maybe<ReviewStats>;\n /** List of eMSP cards accepted at a charging station. */\n roaming?: Maybe<Array<Maybe<StationRoaming>>>;\n /** Phone number for assistance at a charging station. */\n support_phone_number?: Maybe<Scalars[\"String\"]>;\n /** Charging behavior of a station. */\n charging_behaviour?: Maybe<ChargingBehaviour>;\n /** Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values. */\n reliability_score?: Maybe<Scalars[\"Int\"]>;\n /** Indicates the authentication and payment methods. */\n adhoc_authorisation_payment_method?: Maybe<\n Array<StationAdhocAuthorisationPaymentMethod>\n >;\n /** Type of access to the charging station. */\n access_type?: Maybe<AccessType>;\n /** [ALPHA] List of active boosting groups to which the station belongs. */\n boosting_group_ids?: Maybe<Array<Scalars[\"ID\"]>>;\n};\n\nexport enum StationAdhocAuthorisationPaymentMethod {\n /** Authentication by car through Plug and Charge. */\n AUTH_BY_CAR_PLUG_AND_CHARGE = \"AUTH_BY_CAR_PLUG_AND_CHARGE\",\n /** Apple Pay. */\n ONLINE_APPLE_PAY = \"ONLINE_APPLE_PAY\",\n /** Terminal in app. */\n TERMINAL_IN_APP = \"TERMINAL_IN_APP\",\n /** PayPal. */\n ONLINE_PAYPAL = \"ONLINE_PAYPAL\",\n /** Service Provider RFID Card. */\n SERVICE_PROVIDER_RFID_CARD = \"SERVICE_PROVIDER_RFID_CARD\",\n /** Terminal QR Code. */\n TERMINAL_QR_CODE = \"TERMINAL_QR_CODE\",\n /** Terminal Credit Card. */\n TERMINAL_CREDIT_CARD = \"TERMINAL_CREDIT_CARD\",\n /** Terminal Debit Card. */\n TERMINAL_DEBIT_CARD = \"TERMINAL_DEBIT_CARD\",\n /** Terminal SMS. */\n TERMINAL_SMS = \"TERMINAL_SMS\",\n /** Credit Card. */\n ONLINE_CREDIT_CARD = \"ONLINE_CREDIT_CARD\",\n /** Other. */\n OTHER_OTHER = \"OTHER_OTHER\",\n /** Terminal Contactless. */\n TERMINAL_CONTACTLESS = \"TERMINAL_CONTACTLESS\",\n /** Google Pay. */\n ONLINE_GOOGLE_PAY = \"ONLINE_GOOGLE_PAY\",\n /** Bank Payment. */\n ONLINE_BANK_PAYMENT = \"ONLINE_BANK_PAYMENT\",\n /** Authentication by car through Auto Charge. */\n AUTH_BY_CAR_AUTOCHARGE = \"AUTH_BY_CAR_AUTOCHARGE\"\n}\n\n/** Criteria to filter stations in the station around query. */\nexport type StationAroundFilter = {\n /** GeoJSON Point of the center of the around me circle. */\n location?: Maybe<PointInput>;\n /** Distance, in meters, to search around. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Powers in kW. */\n powers?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Amenities available near a station. */\n amenities?: Maybe<Array<Maybe<Amenities>>>;\n /** Station speed. */\n power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;\n /** Station socket or plug standards. */\n connectors?: Maybe<Array<Maybe<ConnectorType>>>;\n /** Flag that allows you to return only available stations. */\n available_only?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag to filter for stations operated by an operator present in the project's ranking list. */\n preferred_operator?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Query parameters to filter stations in the station around query. */\nexport type StationAroundQuery = {\n /** GeoJSON Point of the center of the around me circle. */\n location?: Maybe<PointInput>;\n /** Distance, in meters, to search around. */\n distance?: Maybe<Scalars[\"Int\"]>;\n /** Power in kW. */\n power?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Amenities available near a station. Values: restaurant, bathroom, supermarket, playground, coffee, shopping, museum, hotel, park. */\n amenities?: Maybe<Array<Maybe<Scalars[\"String\"]>>>;\n};\n\nexport type StationCustomProperties = {\n /**\n * Shows how reliable a charging station is (1 to 5; 1 = unreliable, 5 = reliable), taking into account the charging behaviour history and error values.\n * @deprecated In favor of `station.reliability_score`.\n */\n reliability_score?: Maybe<Scalars[\"Int\"]>;\n /** Custom station properties for OICP databases such as the global Hubject database. Station databases that not follow the OICP standard return null values. */\n oicp?: Maybe<OICPStationCustomProperties>;\n};\n\n/** Describes the heavy vehicle properties at the location. */\nexport type StationHeavyVehiclesProperties = {\n /** Indicates whether the location was constructed mainly for the purpose of heavy vehicles like trucks. */\n is_dedicated?: Maybe<Scalars[\"Boolean\"]>;\n /** List of facilities in the location. */\n facilities?: Maybe<Array<HeavyVehiclesFacility>>;\n /** Indicates whether the location is suitable for trucks with trailers. */\n is_trailer_accessible?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location is drive-through. */\n is_drive_through?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location allows charging of heavy vehicles transporting dangerous goods. */\n allows_dangerous_goods?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location is suitable for rigid heavy vehicles. */\n allows_rigid_vehicles?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates whether the location allows overnight charging of heavy vehicles. */\n allows_overnight_parking?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictions = {\n /** Maximum height of the heavy vehicle that is allowed to be parked at the charging station. */\n height?: Maybe<Scalars[\"Float\"]>;\n /** Maximum width of the heavy vehicle that is allowed to be parked at the charging station. */\n width?: Maybe<Scalars[\"Float\"]>;\n /** Maximum length of the heavy vehicle that is allowed to be parked at the charging station. */\n length?: Maybe<Scalars[\"Float\"]>;\n /** Maximum mass of the heavy vehicle that is allowed to be parked at the charging station. */\n mass?: Maybe<Scalars[\"Float\"]>;\n /** Allowed N (EU) types of heavy vehicles. */\n allowed_types_EU?: Maybe<Array<HeavyVehiclesEUType>>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionsheightArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionswidthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionslengthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the heavy vehicle restrictions at the location. */\nexport type StationHeavyVehiclesRestrictionsmassArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\n/** Criteria to filter stations in the station list query. */\nexport type StationListFilter = {\n /** Powers in kW. */\n powers?: Maybe<Array<Maybe<Scalars[\"Float\"]>>>;\n /** Amenities available near a station. */\n amenities?: Maybe<Array<Maybe<Amenities>>>;\n /** Station speed. */\n power_groups?: Maybe<Array<Maybe<StationSpeedType>>>;\n /** Station socket or plug standards. */\n connectors?: Maybe<Array<Maybe<ConnectorType>>>;\n /** Flag that allows you to return only available stations. */\n available_only?: Maybe<Scalars[\"Boolean\"]>;\n /** Flag to filter for stations operated by an operator present in the project's ranking list. */\n preferred_operator?: Maybe<Scalars[\"Boolean\"]>;\n};\n\n/** Query parameters to filter stations in the station list query. */\nexport type StationListQuery = {\n /** ID of the station. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station provided by the station data source. */\n external_id?: Maybe<Scalars[\"String\"]>;\n /** Exact name. */\n name?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Station availability for each weekday and hour. */\nexport type StationPredictedAvailability = {\n /** Number of weekday from 1 (monday) to 7 (sunday). */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** The prediction for each hour 0-23 from 1 to 5 (1 - very busy ... 5 very quiet (free)). */\n prediction?: Maybe<Array<Maybe<Scalars[\"Int\"]>>>;\n};\n\n/** Station occupancy for each weekday and hour. */\nexport type StationPredictedOccupancy = {\n /** Number of weekday from 1 (monday) to 7 (sunday). */\n weekday?: Maybe<Scalars[\"Int\"]>;\n /** Occupancy on a scale from 1 to 10, where 1 means free for charging and 10 means fully occupied. */\n occupancy?: Maybe<Scalars[\"Int\"]>;\n /** Start of the period of the occupancy prediction (string of 'hh-mmZ' format). */\n period_begin?: Maybe<Scalars[\"String\"]>;\n /** End of the period of the occupancy prediction (string of 'hh-mmZ' format). */\n period_end?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type StationRoaming = {\n /** Unique id for a provider. It is created by Eco-Movement, and it is stable. */\n partner_id?: Maybe<Scalars[\"String\"]>;\n /**\n * Unique E-Mobility Account Identifier (eMA ID) for a provider.\n * It is created by Eco-Movement by combining the country code where the charging station is located, and the party id of the provider.\n * For example, NL-ECO. Note: A provider can have multiple eMA IDs.\n * For example, if a company named 'Example Company A' acquired 'Example Company B' and owns the charging stations of Example Company B,\n * then this attribute maps Example Company B's eMA IDs to Example Company A's eMA IDs. For example, ['NL-EXA', 'NL-EXB'].\n */\n ema_id?: Maybe<Array<Scalars[\"String\"]>>;\n /** Name of the EMSP provider. */\n emsp?: Maybe<Scalars[\"String\"]>;\n /** Name of the card accepted at a charging station. */\n card?: Maybe<Scalars[\"String\"]>;\n /** Link to native Android app for card accepted at a charging station. */\n android_app_link?: Maybe<Scalars[\"String\"]>;\n /** Link to native iOS app for card accepted at a charging station. */\n ios_app_link?: Maybe<Scalars[\"String\"]>;\n};\n\n/** The station speed type. */\nexport enum StationSpeedType {\n /** Slow charging (below 43 kW). */\n SLOW = \"slow\",\n /** Fast charging stations (above 43 kW and below 150 kW). */\n FAST = \"fast\",\n /** Ultra fast charging stations (above 150 kW). */\n TURBO = \"turbo\"\n}\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictions = {\n /** Maximum weight for a vehicle that is allowed at the location. */\n mass?: Maybe<Scalars[\"Float\"]>;\n /** Maximum width for a vehicle that is allowed at the location. */\n width?: Maybe<Scalars[\"Float\"]>;\n /** Maximum height for a vehicle that is allowed at the location. */\n height?: Maybe<Scalars[\"Float\"]>;\n /** Maximum length for a vehicle that is allowed at the location. */\n length?: Maybe<Scalars[\"Float\"]>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionsmassArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionswidthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionsheightArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Describes the vehicle restrictions at the location. */\nexport type StationVehicleRestrictionslengthArgs = {\n unit?: Maybe<DimensionUnit>;\n};\n\n/** Types of a route step. */\nexport enum StepType {\n /** This step is a road. */\n ROAD = \"road\",\n /** This step is a highway. */\n HIGHWAY = \"highway\",\n /** This step is a toll road. */\n TOLL = \"toll\",\n /** This step is a ferry. */\n FERRY = \"ferry\",\n /** This step is reachable by walking. */\n WALKING = \"walking\",\n /** This step is a crossborder. */\n CROSSBORDER = \"crossborder\"\n}\n\nexport type Subscription = {\n /**\n * Subscribe to a specific route to receive system event updates.\n * @deprecated In favor of `route`.\n */\n routeUpdatedById?: Maybe<Route>;\n /** Subscribe to a specific route to receive system event updates. */\n route: RouteResponse;\n /** [ALPHA] Subscribe to e-truck route to receive system event updates. */\n truckRoute: TruckRouteResponse;\n /** [BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates. */\n navigation?: Maybe<NavigationSubscription>;\n /** [BETA] Subscribe to a connected vehicle. */\n connectedVehicle?: Maybe<ConnectedVehicle>;\n /** Subscribe to an isoline in order to receive updates. */\n isoline?: Maybe<Isoline>;\n};\n\nexport type SubscriptionrouteUpdatedByIdArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionrouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptiontruckRouteArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionnavigationArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionconnectedVehicleArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type SubscriptionisolineArgs = {\n id: Scalars[\"ID\"];\n};\n\nexport type Telemetry = {\n /** Value of the auxiliary power consumption of the vehicle. */\n auxiliary_consumption?: Maybe<Scalars[\"Float\"]>;\n /** Battery current in ampere. */\n battery_current?: Maybe<Scalars[\"Float\"]>;\n /** Value of the temperature of the battery. */\n battery_temperature?: Maybe<Scalars[\"Float\"]>;\n /** Battery voltage in volts. */\n battery_voltage?: Maybe<Scalars[\"Float\"]>;\n /** Is the vehicle currently charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n /** Value of the rate of charge of the battery. */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Value of the amount of battery charged. */\n charge_total?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current elevation. */\n elevation?: Maybe<Scalars[\"Float\"]>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n /** RPM of the motor. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants present in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Value of the vehicle's odometer. */\n odometer?: Maybe<Scalars[\"Float\"]>;\n /** Value of the outside temperature. */\n outside_temperature?: Maybe<Scalars[\"Float\"]>;\n /** Vehicle is in park, neutral or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Value of the positive or negative power. When negative the vehicle is charging. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Value of the state of charge of the vehicle. */\n state_of_charge?: Maybe<Scalars[\"Float\"]>;\n /** Values for the average tire pressures of all wheels, starting from the front side right to left and to the rear. */\n tire_pressure?: Maybe<Array<Scalars[\"Float\"]>>;\n /** Value of the vehicle speed. */\n vehicle_speed?: Maybe<Scalars[\"Float\"]>;\n /** Custom input fields can be added based on telemetry architecture. */\n custom?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport type Telemetryauxiliary_consumptionArgs = {\n unit?: Maybe<AuxiliaryConsumptionUnit>;\n};\n\nexport type Telemetrybattery_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type Telemetrycharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type Telemetrycharge_totalArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type Telemetrytotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type Telemetrytotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TelemetryelevationArgs = {\n unit?: Maybe<ElevationUnit>;\n};\n\nexport type TelemetryodometerArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type Telemetryoutside_temperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type TelemetrypowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type Telemetrystate_of_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type Telemetrytire_pressureArgs = {\n unit?: Maybe<PressureUnit>;\n};\n\nexport type Telemetryvehicle_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport type TelemetryInput = {\n /** Average auxiliary power consumption. */\n auxiliary_consumption?: Maybe<AuxiliaryConsumptionInput>;\n /** Battery current in ampere. */\n battery_current?: Maybe<Scalars[\"Float\"]>;\n /** Battery temperature. */\n battery_temperature?: Maybe<BatteryTemperatureInput>;\n /** Battery voltage in volts. */\n battery_voltage?: Maybe<Scalars[\"Float\"]>;\n /** Is the vehicle currently charging. */\n is_charging?: Maybe<Scalars[\"Boolean\"]>;\n /** Rate of charge. */\n charge_speed?: Maybe<ChargeSpeedInput>;\n /** Amount charged. */\n charge_total?: Maybe<ChargeTotalInput>;\n /** Cumulated weight of the occupants. */\n total_occupant_weight?: Maybe<TotalOccupantWeightInput>;\n /** Weight of the cargo. */\n total_cargo_weight?: Maybe<TotalCargoWeightInput>;\n /** Current elevation. */\n elevation?: Maybe<ElevationInput>;\n /** Current heading in degrees. */\n heading?: Maybe<Scalars[\"Float\"]>;\n /** RPM of the motor. */\n motor_rpm?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants in the vehicle. */\n occupants?: Maybe<Scalars[\"Int\"]>;\n /** Mileage or odometer reading. */\n odometer?: Maybe<OdometerInput>;\n /** Outside temperature. */\n outside_temperature?: Maybe<OutsideTempInput>;\n /** Vehicle is in park, neutral or turned off. */\n is_parked?: Maybe<Scalars[\"Boolean\"]>;\n /** Vehicle power. */\n power?: Maybe<PowerInput>;\n /** Battery state of charge. */\n state_of_charge?: Maybe<StateOfChargeInput>;\n /** Average tire pressures of all wheels, starting from the front side right to left and to the rear. */\n tire_pressure?: Maybe<TirePressureInput>;\n /** Vehicle speed. */\n vehicle_speed?: Maybe<VehicleSpeedInput>;\n /** Custom input fields can be added based on telemetry architecture. */\n custom?: Maybe<Scalars[\"JSON\"]>;\n};\n\nexport enum TelemetryInputSource {\n /** Manually inputted value. */\n MANUAL = \"manual\",\n /** Value from the vehicle's telemetry. */\n TELEMETRY = \"telemetry\",\n /** Default value. */\n DEFAULT = \"default\"\n}\n\nexport type Temperature = {\n /** Value of the temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the temperature. */\n type: TemperatureUnit;\n};\n\nexport type TemperatureInput = {\n /** Value of the temperature. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the temperature. */\n type: TemperatureUnit;\n};\n\nexport enum TemperatureUnit {\n /** Return the temperature in Celsius. */\n CELSIUS = \"Celsius\",\n /** Return the temperature in Fahrenheit. */\n FAHRENHEIT = \"Fahrenheit\"\n}\n\nexport type TirePressure = {\n /** Values for the tire pressure, ordered from front right to front left, then rear left to rear right. */\n value: Array<Scalars[\"Float\"]>;\n /** Preferred unit for the tire pressure. */\n type: PressureUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type TirePressureInput = {\n /** Values for the tire pressure, ordered from front right to front left, then rear left to rear right. */\n value: Array<Scalars[\"Float\"]>;\n /** Preferred unit for the tire pressure. */\n type: PressureUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport enum TorqueUnit {\n /** Return the torque in newton meters. */\n NEWTON_METER = \"newton_meter\",\n /** Return the torque in foot pounds. */\n FOOT_POUND = \"foot_pound\"\n}\n\nexport type TotalCargoWeight = {\n /** Value of the current weight of the cargo. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the cargo. */\n type: WeightUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type TotalCargoWeightInput = {\n /** Value of the current weight of the cargo. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the cargo. */\n type: WeightUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type TotalOccupantWeight = {\n /** Value of the combined weight of the occupants. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the occupants. */\n type: WeightUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type TotalOccupantWeightInput = {\n /** Value of the combined weight of the occupants. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the current weight of the occupants. */\n type: WeightUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type TrafficCongestionInterval = {\n /** Starting index of this interval in the polyline. */\n start_index: Scalars[\"Int\"];\n /** Ending index of this interval in the polyline. */\n end_index: Scalars[\"Int\"];\n /** Congestion level for this specific interval. */\n level: CongestionLevel;\n};\n\nexport type TruckRouteDetails = {\n /** ID of a route computation. */\n id: Scalars[\"ID\"];\n /** Total distance of a route. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route. */\n durations: RouteDetailsDurations;\n /** Total energy used for a route in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the start of a trip. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a trip. Note: The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */\n path_plot: Array<RouteDetailsPathSegment>;\n /** Details about elevation on a route. */\n elevation: RouteDetailsElevation;\n /** Money saving information. */\n savings?: Maybe<RouteDetailsSavings>;\n /** Legs of a route. */\n legs: Array<TruckRouteDetailsLeg>;\n /** Alternative stations along a route within a specified radius. Will only return stations if alternative_station_radius was specified in the createRoute mutation. */\n alternative_stations: Array<RouteDetailsAlternativeStation>;\n /** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Number of charging stops required for this route. */\n charges: Scalars[\"Int\"];\n};\n\nexport type TruckRouteDetailsdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type TruckRouteDetailsrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type TruckRouteDetailsrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\nexport type TruckRouteDetailspolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLeg = {\n /** Distance from the start to the end of a leg. */\n distance: Scalars[\"Float\"];\n /** Aggregation of all durations of a route leg. */\n durations: RouteDetailsDurations;\n /** Total energy used in a leg in kilowatt hours. For HEVs and PHEVs this field will return null. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n /** Origin point location. */\n origin: TruckRouteDetailsLegFeaturePoint;\n /** Destination point location. */\n destination: TruckRouteDetailsLegFeaturePoint;\n /** Range at the start of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_origin?: Maybe<Scalars[\"Float\"]>;\n /** Range available at the end of a leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_at_destination?: Maybe<Scalars[\"Float\"]>;\n /** Range after charging on the leg. The ranges in kilometers and miles are estimates, calculated based on the Chargetrip range, current route conditions, weather scenario (current or seasonal), and the route input at the time of planning. For HEVs and PHEVs this field will return null. */\n range_after_charge?: Maybe<Scalars[\"Float\"]>;\n /** Type of a leg. */\n type: RouteDetailsLegType;\n /** Information about the station at the destination of a leg. */\n station?: Maybe<RouteDetailsLegStation>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */\n tags: Array<RouteDetailsTag>;\n /** Maneuvers of a leg - used to generate turn-by-turn instructions. */\n maneuvers: Array<RouteDetailsManeuver>;\n /** Road sections of a leg - divided by means of transportation. */\n sections: Array<TruckRouteDetailsLegSection>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegdistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegrange_at_originArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegrange_at_destinationArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegrange_after_chargeArgs = {\n unit?: Maybe<StateOfChargeUnit>;\n};\n\n/** Leg of a route detail. */\nexport type TruckRouteDetailsLegpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type TruckRouteDetailsLegFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties?: Maybe<TruckRouteDetailsLegFeatureProperties>;\n};\n\nexport type TruckRouteDetailsLegFeatureProperties = {\n /** Name of the location. */\n name?: Maybe<Scalars[\"String\"]>;\n /** ID of the station. */\n station_id?: Maybe<Scalars[\"ID\"]>;\n /** External ID of the station. */\n external_station_id?: Maybe<Scalars[\"ID\"]>;\n /** Temperature at the location. */\n temperature?: Maybe<Scalars[\"Int\"]>;\n /** Air pressure at the location. */\n air_pressure?: Maybe<Scalars[\"Float\"]>;\n /** Solar irradiance at the location. */\n solar_irradiance?: Maybe<Scalars[\"Float\"]>;\n /** Duration, in seconds, of time spent at this location. */\n duration?: Maybe<Scalars[\"Int\"]>;\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Value of the combined weight of the occupants. */\n total_occupant_weight: Scalars[\"Float\"];\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Number of trailers. */\n trailer_count: Scalars[\"Int\"];\n};\n\nexport type TruckRouteDetailsLegFeaturePropertiestemperatureArgs = {\n unit?: Maybe<TemperatureUnit>;\n};\n\nexport type TruckRouteDetailsLegFeaturePropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteDetailsLegFeaturePropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteDetailsLegSection = {\n /** Section type. */\n type: RouteDetailsLegSectionType;\n /** Origin point. */\n origin: TruckRouteDetailsLegSectionFeaturePoint;\n /** Destination point. */\n destination: TruckRouteDetailsLegSectionFeaturePoint;\n /** Aggregation of tags over the current section. */\n tags: Array<RouteDetailsTag>;\n /** Polyline containing encoded coordinates. */\n polyline: Scalars[\"String\"];\n /** Distance from the start to the end of a section. */\n distance: Scalars[\"Float\"];\n /** Total duration of a section, in seconds. The value will be 0 for walking sections. */\n duration: Scalars[\"Float\"];\n /** Total energy used in a section in kilowatt-hours. The value will be 0 for walking sections. */\n consumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type TruckRouteDetailsLegSectionpolylineArgs = {\n decimals?: Maybe<PolylineInputDecimals>;\n};\n\nexport type TruckRouteDetailsLegSectiondistanceArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePoint = {\n /** ID of the feature. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Feature type. */\n type: FeatureType;\n /** Geometry of the feature. */\n geometry: Point;\n /** Properties of the feature. */\n properties: TruckRouteDetailsLegSectionFeaturePointProperties;\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePointProperties = {\n /** Number of occupants present in the vehicle. */\n occupants: Scalars[\"Int\"];\n /** Value of the combined weight of the occupants. */\n total_occupant_weight?: Maybe<Scalars[\"Float\"]>;\n /** Value of the current weight of the cargo. */\n total_cargo_weight?: Maybe<Scalars[\"Float\"]>;\n /** Number of trailers. */\n trailer_count: Scalars[\"Int\"];\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePointPropertiestotal_occupant_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteDetailsLegSectionFeaturePointPropertiestotal_cargo_weightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type TruckRouteResponse = {\n /** ID of a route calculation. */\n id: Scalars[\"ID\"];\n /** Status of a route. */\n status: RouteStatus;\n /** Recommended route. */\n recommended?: Maybe<TruckRouteDetails>;\n /** Meta data for a route. */\n meta: RouteMetadata;\n /** Route request. */\n request_input: CreateTruckRoute;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensions = {\n /** Maximum height of the combination trailer and main vehicle combination (ground to highest vehicle point). */\n height: Scalars[\"Float\"];\n /** Maximum width of the trailers and main vehicle combination. */\n width: Scalars[\"Float\"];\n /** Total length of the trailers and main vehicle combination (bumper to bumper). */\n length: Scalars[\"Float\"];\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionsheightArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionswidthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionslengthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\n/** Physical dimensions of the vehicle and trailers combination. */\nexport type TruckTrailerCombinedDimensionsInput = {\n /** Maximum height of the combination trailer and main vehicle combination (ground to highest vehicle point). */\n height: DimensionsInput;\n /** Maximum width of the trailers and main vehicle combination. */\n width: DimensionsInput;\n /** Total length of the trailers and main vehicle combination (bumper to bumper). */\n length: DimensionsInput;\n};\n\nexport enum TurningCircleUnit {\n /** Return the turning circle in meters. */\n METER = \"meter\",\n /** Return the turning circle in feet. */\n FOOT = \"foot\"\n}\n\nexport type UpdateConnectedVehicleInput = {\n /** Id from the connected vehicle */\n id: Scalars[\"ID\"];\n /** New label for a connected vehicle */\n label?: Maybe<Scalars[\"PlainString\"]>;\n};\n\n/** Output of a vehicle query. */\nexport type Vehicle = {\n /** Vehicles unique ID. */\n id: Scalars[\"ID\"];\n /** Naming of the vehicle. */\n naming: VehicleNaming;\n /** Drivetrain of the vehicle. */\n drivetrain: VehicleDrivetrain;\n /** Available connectors for the vehicle. Please note that for HEVs this will always be an empty array. */\n connectors: Array<VehicleConnector>;\n /** Adapters for the connectors of the vehicle. Please note that for HEVs this will always be an empty array. */\n adapters: Array<VehicleConnector>;\n /** Battery of the vehicle. */\n battery: VehicleBattery;\n /** Body of the vehicle. */\n body: VehicleBody;\n /** Availability of the vehicle. */\n availability: VehicleAvailability;\n /** Performance of the vehicle. */\n performance?: Maybe<VehiclePerformance>;\n /** Range of the vehicle. */\n range: VehicleRange;\n /** Media of the vehicle. */\n media: VehicleMedia;\n /** Routing of the vehicle. */\n routing: VehicleRouting;\n /** Information about vehicle connectivity. */\n connect: Connect;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region: Array<VehicleRegion>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose: VehiclePurpose;\n /** Type of vehicle. */\n type: VehicleType;\n /** Details about Heat Pump. */\n heat_pump?: Maybe<VehicleHeatPump>;\n};\n\nexport type VehicleAvailability = {\n /** Availability of the vehicle. */\n status: VehicleAvailabilityStatus;\n};\n\n/** Availability status of a vehicle. */\nexport enum VehicleAvailabilityStatus {\n /** Vehicle no longer for sale in any market / region. */\n NO_LONGER_AVAILABLE = \"no_longer_available\",\n /** Vehicle currently for sale in at least one market / region. */\n AVAILABLE = \"available\",\n /** Vehicle expected in market from Date_From (estimated), pre-order open. */\n RELEASE_DATE_ANNOUNCED_PREORDERABLE = \"release_date_announced_preorderable\",\n /** Vehicle expected in market from Date_From (estimated), pre-order unknown or not open. */\n RELEASE_DATE_ANNOUNCED = \"release_date_announced\",\n /** Concept vehicle, nearing production and/or confirmed, pre-order open. */\n CONCEPT_VEHICLE_PREORDERABLE = \"concept_vehicle_preorderable\",\n /** Concept vehicle, nearing production and/or confirmed, pre-order unknown or not open. */\n CONCEPT_VEHICLE = \"concept_vehicle\",\n /** Concept vehicle, not close to production and/or unconfirmed, pre-order open. */\n CONCEPT_VEHICLE_RELEASE_DATE_TBA_PREORDERABLE = \"concept_vehicle_release_date_tba_preorderable\",\n /** Concept vehicle, not close to production and/or unconfirmed, pre-order unknown. */\n CONCEPT_VEHICLE_RELEASE_DATE_TBA = \"concept_vehicle_release_date_tba\",\n /** Status uncertain, introduction date and/or pricing unclear. */\n UNCERTAIN = \"uncertain\"\n}\n\nexport type VehicleBattery = {\n /** Full battery capacity in kWh. */\n full_kwh: Scalars[\"Float\"];\n /** Usable battery capacity in kWh. */\n usable_kwh: Scalars[\"Float\"];\n /** Type of battery. */\n type?: Maybe<VehicleBatteryType>;\n};\n\n/** Battery field estimated. */\nexport enum VehicleBatteryFieldEstimations {\n /** Both of the battery kWh fields are estimations. */\n B = \"B\",\n /** full_kwh field is estimated. */\n F = \"F\",\n /** None of the battery kWh fields are estimations. */\n N = \"N\",\n /** usable_kwh field is estimated. */\n U = \"U\"\n}\n\nexport enum VehicleBatteryType {\n /** Lithium-Ion Battery. */\n LITHIUM_ION = \"lithium_ion\"\n}\n\nexport type VehicleBody = {\n /** Width with folded mirrors. */\n width: Scalars[\"Float\"];\n /** Height (average height for adjustable suspensions). */\n height: Scalars[\"Float\"];\n /** Weight (unladen). */\n weight: VehicleBodyWeight;\n /** Number of seats. */\n seats: Scalars[\"Int\"];\n};\n\nexport type VehicleBodywidthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehicleBodyheightArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehicleBodyWeight = {\n /** Minimum weight. */\n minimum?: Maybe<Scalars[\"Float\"]>;\n /** Nominal weight. */\n nominal?: Maybe<Scalars[\"Float\"]>;\n /** Maximal weight. */\n maximal?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehicleBodyWeightminimumArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehicleBodyWeightnominalArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehicleBodyWeightmaximalArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnector = {\n /** Connector type, known as connector standard in OCPI. */\n standard: ConnectorType;\n /** Usable electric power. */\n power: Scalars[\"Float\"];\n /** Maximum electric power. */\n max_electric_power: Scalars[\"Float\"];\n /** Time it takes to charge from 10 to 80% with a fast charger, shown in minutes. */\n time: Scalars[\"Int\"];\n /**\n * Charging speed.\n * @deprecated In favor of `charge_speed`.\n */\n speed: Scalars[\"Float\"];\n /** Charging speed. */\n charge_speed: Scalars[\"Float\"];\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectorpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectormax_electric_powerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectorspeedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\n/** Vehicle plug model. */\nexport type VehicleConnectorcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\n/** The consumption of the vehicle. */\nexport type VehicleConsumptionInput = {\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<Scalars[\"Float\"]>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehicleData = {\n /** Battery data */\n battery?: Maybe<ConnectBattery>;\n /** Charge data */\n charge?: Maybe<ConnectCharge>;\n /** Location data */\n location?: Maybe<ConnectLocation>;\n /** Odometer data */\n odometer?: Maybe<ConnectOdometer>;\n};\n\nexport enum VehicleDataProvider {\n /** Internal data provider. */\n CHARGETRIP = \"chargetrip\",\n /** EV database data provider. */\n EVDATABASE = \"evdatabase\"\n}\n\nexport type VehicleDrivetrain = {\n /** Type of drivetrain. */\n type: VehicleDrivetrainType;\n};\n\n/** Drivetrain. */\nexport enum VehicleDrivetrainType {\n /** Battery Electric Vehicle. */\n BEV = \"BEV\",\n /** Extended Range Electric Vehicle. */\n EREV = \"EREV\",\n /** Hybrid Electric Vehicle. */\n HEV = \"HEV\",\n /** Plug-in Hybrid Electric Vehicle. */\n PHEV = \"PHEV\"\n}\n\n/** Fuel type. */\nexport enum VehicleFuel {\n /** ICE engine available. Uses diesel. */\n D = \"D\",\n /** Electricity only. Full electric vehicle. */\n E = \"E\",\n /** ICE engine available. Uses gasoline. */\n P = \"P\"\n}\n\nexport type VehicleHeatPump = {\n /** Indicates if a heat pump is available for a specific vehicle. */\n is_available?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates if a heat pump is standard equipment for a specific vehicle. */\n is_standard_equipment?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehicleImage = {\n /** Image id. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Image type. */\n type: VehicleImageType;\n /** Full path URL of a large image. */\n url: Scalars[\"String\"];\n /** Height of a large image in pixels. */\n height: Scalars[\"Int\"];\n /** Width of a large image in pixels. */\n width: Scalars[\"Int\"];\n /** Full path URL of a thumbnail image. */\n thumbnail_url: Scalars[\"String\"];\n /** Height of a thumbnail image in pixels. */\n thumbnail_height: Scalars[\"Int\"];\n /** Width of a thumbnail image in pixels. */\n thumbnail_width: Scalars[\"Int\"];\n};\n\n/** Available types of images which can be found for a vehicle. Each type has specific image sizes. */\nexport enum VehicleImageType {\n /** Images provided by a Vehicle Datasource. */\n PROVIDER = \"provider\",\n /** Full-sized image at 1536x864 px. */\n IMAGE = \"image\",\n /** Thumbnail of a full-sized image at 131x72 px. */\n IMAGE_THUMBNAIL = \"image_thumbnail\",\n /** Premium image. */\n IMAGE_PREMIUM = \"image_premium\",\n /** Thumbnail of a premium image. */\n PREMIUM_IMAGE_THUMBNAIL = \"premium_image_thumbnail\",\n /** Full-sized brand (make) logo at 768x432 px. */\n BRAND = \"brand\",\n /** Thumbnail of a full-sized brand (make) logo at 56x24 px. */\n BRAND_THUMBNAIL = \"brand_thumbnail\",\n /** Placeholder image at 1536x864 px. */\n PLACEHOLDER = \"placeholder\"\n}\n\n/** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system. */\nexport enum VehicleImageTypeUploadable {\n /** Freemium vehicle image. */\n IMAGE = \"image\",\n /** Premium vehicle image. */\n IMAGE_PREMIUM = \"image_premium\"\n}\n\n/** The output element of the vehicleList query. */\nexport type VehicleList = {\n /** Vehicles unique ID. */\n id: Scalars[\"ID\"];\n /** Naming of the vehicle. */\n naming: VehicleListNaming;\n /** Drivetrain of the vehicle. */\n drivetrain: VehicleDrivetrain;\n /** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */\n connectors: Array<VehicleConnector>;\n /** Adapters available for the vehicle. Please note that for HEVs this will always be an empty array. */\n adapters: Array<VehicleConnector>;\n /** Battery of the vehicle. */\n battery: VehicleListBattery;\n /** Body of the vehicle. */\n body: VehicleListBody;\n /** Availability of the vehicle. */\n availability: VehicleListAvailability;\n /** Range of the vehicle. */\n range: VehicleListRange;\n /** Media of the vehicle. */\n media: VehicleListMedia;\n /** Routing of the vehicle. */\n routing: VehicleListRouting;\n /** Information about vehicle connectivity. */\n connect: Connect;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region: Array<VehicleRegion>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose: VehiclePurpose;\n /** Type of vehicle. */\n type: VehicleType;\n};\n\nexport type VehicleListAvailability = {\n /** Availability of the vehicle. */\n status: VehicleAvailabilityStatus;\n};\n\nexport type VehicleListBattery = {\n /** Full battery capacity in kWh. */\n full_kwh: Scalars[\"Float\"];\n /** Usable battery capacity in kWh. */\n usable_kwh: Scalars[\"Float\"];\n /** Type of battery. */\n type?: Maybe<VehicleBatteryType>;\n};\n\nexport type VehicleListBody = {\n /** Number of seats in a vehicle. */\n seats: Scalars[\"Int\"];\n};\n\nexport type VehicleListFilter = {\n /** Availability of a vehicle. */\n availability?: Maybe<Array<VehicleAvailabilityStatus>>;\n /** Drivetrain type of a vehicle. */\n drivetrain?: Maybe<Array<VehicleDrivetrainType>>;\n /** Information about vehicle connectivity. */\n connect?: Maybe<ConnectFilter>;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region?: Maybe<Array<VehicleRegion>>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose?: Maybe<Array<VehiclePurpose>>;\n /** Type of vehicle. */\n type?: Maybe<Array<VehicleType>>;\n /** ID of the vehicle make. */\n make?: Maybe<Scalars[\"String\"]>;\n /** [BETA] Model of vehicle. */\n model?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehicleListMedia = {\n /** Featured image of the vehicle from a 45-degree angle. */\n image: VehicleImage;\n /**\n * Latest make logo of the vehicle.\n * @deprecated In favor of `make`.\n */\n brand: VehicleImage;\n /** Latest make logo of the vehicle. */\n make: VehicleImage;\n /** Latest video of the vehicle. */\n video?: Maybe<VehicleVideo>;\n};\n\nexport type VehicleListNaming = {\n /** Vehicle manufacturer name. */\n make: Scalars[\"String\"];\n /** Vehicle model name. */\n model: Scalars[\"String\"];\n /** Version, edition or submodel of the vehicle. */\n version?: Maybe<Scalars[\"String\"]>;\n /** Another submodel level of the vehicle. */\n edition?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */\n chargetrip_version: Scalars[\"String\"];\n};\n\nexport type VehicleListRange = {\n /**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n chargetrip_range: ChargetripRange;\n};\n\nexport type VehicleListRouting = {\n /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */\n fast_charging_support: Scalars[\"Boolean\"];\n};\n\n/** Vehicle make data. */\nexport type VehicleMake = {\n /** ID of the vehicle make. */\n id: Scalars[\"ID\"];\n /** Vehicle make name. */\n name: Scalars[\"String\"];\n /** Vehicle make image. */\n image: VehicleImage;\n /** Number of public and private unique models manufactured by the make. */\n model_count: Scalars[\"Int\"];\n};\n\n/** Vehicle makes response object. */\nexport type VehicleMakesConnection = {\n /** Total number of unique vehicle makes. */\n total_count: Scalars[\"Int\"];\n /** Information about the current page. */\n page_info: PageInfo;\n /** List of vehicle makes. */\n nodes: Array<VehicleMake>;\n};\n\n/** Filter vehicle make list result. */\nexport type VehicleMakesFilter = {\n /** Regions in which the Make has vehicles. */\n region?: Maybe<Array<VehicleRegion>>;\n /** Type of vehicle which the Make has vehicles. */\n type?: Maybe<Array<VehicleType>>;\n};\n\nexport type VehicleMedia = {\n /** Featured image of the vehicle from a 45-degree angle. */\n image: VehicleImage;\n /**\n * Latest make logo.\n * @deprecated In favor of `make`.\n */\n brand: VehicleImage;\n /** Latest make logo. */\n make: VehicleImage;\n /** All images of the vehicle. */\n image_list: Array<VehicleImage>;\n /** Latest video. */\n video?: Maybe<VehicleVideo>;\n /** All videos of the vehicle. */\n video_list?: Maybe<Array<VehicleVideo>>;\n};\n\n/** Mode (state) of the current production. */\nexport enum VehicleMode {\n /** Old vehicle that is no longer manufactured. */\n INDEX_ONLY = \"index_only\",\n /** Vehicle is in production and has been released. */\n PRODUCTION = \"production\",\n /** Future releases of a vehicle, a concept of the vehicle, specs may change over time. */\n CONCEPT = \"concept\"\n}\n\n/** Vehicle model data. */\nexport type VehicleModel = {\n /** Vehicle model name. */\n name: Scalars[\"String\"];\n /** Number of public and private vehicles associated to this model. */\n vehicle_count: Scalars[\"Int\"];\n};\n\n/** Vehicle models response object. */\nexport type VehicleModelsConnection = {\n /** Total number of unique vehicle models. */\n total_count: Scalars[\"Int\"];\n /** Information about the current page. */\n page_info: PageInfo;\n /** List of vehicle models. */\n nodes: Array<VehicleModel>;\n};\n\n/** Filter vehicle model list result. */\nexport type VehicleModelsFilter = {\n /** Vehicle make. */\n make: Scalars[\"ID\"];\n};\n\nexport type VehicleNaming = {\n /** Vehicle manufacturer name. */\n make: Scalars[\"String\"];\n /** Vehicle model name. */\n model: Scalars[\"String\"];\n /** Version, edition or submodel of the vehicle. */\n version?: Maybe<Scalars[\"String\"]>;\n /** Another submodel level of the vehicle. */\n edition?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide an version name, or uses the same version name across all trims or consecutive years. */\n chargetrip_version: Scalars[\"String\"];\n};\n\nexport type VehiclePerformance = {\n /** Acceleration. */\n acceleration?: Maybe<Scalars[\"Float\"]>;\n /** Top speed of the vehicle. */\n top_speed?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePerformanceaccelerationArgs = {\n unit?: Maybe<AccelerationUnit>;\n};\n\nexport type VehiclePerformancetop_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport enum VehiclePlugAndChargeSupport {\n /** Plug and charge is available. */\n AVAILABLE = \"available\",\n /** Plug and charge is announced, but not yet available. */\n ANNOUNCED = \"announced\",\n /** Plug and charge is available in a limited context. */\n LIMITED = \"limited\",\n /** Plug and charge is not available. */\n NOT_AVAILABLE = \"not_available\"\n}\n\n/** The output element of the vehiclePremium query. */\nexport type VehiclePremium = {\n /** Vehicles unique ID. */\n id: Scalars[\"ID\"];\n /** Internal ID of the successor vehicle trim. */\n succesor_id?: Maybe<Scalars[\"String\"]>;\n /** Naming of the vehicle. */\n naming: VehiclePremiumNaming;\n /** Connectors available for the vehicle. Please note that for HEVs this will always be an empty array. */\n connectors: Array<VehicleConnector>;\n /** Charge details. */\n charge: VehiclePremiumCharge;\n /** Fast charge details. */\n fast_charge: VehiclePremiumFastCharge;\n /** Adapters of connectors available for a connectors of the vehicle. Please note that for HEVs this will always be an empty array. */\n adapters: Array<VehicleConnector>;\n /** Battery of the vehicle. */\n battery: VehiclePremiumBattery;\n /** Body of the vehicle. */\n body: VehiclePremiumBody;\n /** Availability of the vehicle. */\n availability: VehiclePremiumAvailability;\n /** Starting price in the currency defined in the field argument. If not defined, it will return the starting price in the currency returned in the currency field. */\n pricing: VehiclePremiumPriceValueWithGrant;\n /** Drivetrain of the vehicle. */\n drivetrain: VehiclePremiumDrivetrain;\n /** Performance of the vehicle. */\n performance?: Maybe<VehiclePremiumPerformance>;\n /** Range of the vehicle. */\n range: VehiclePremiumRange;\n /** Efficiency of the vehicle. */\n efficiency: VehiclePremiumEfficiency;\n /** Safety of the vehicle. */\n safety?: Maybe<VehiclePremiumSafety>;\n /** Media of the vehicle. */\n media: VehiclePremiumMedia;\n /** Routing of the vehicle. */\n routing: VehiclePremiumRouting;\n /** Information about vehicle connectivity. */\n connect: Connect;\n /** Regions in which the vehicle is available. Based on the continent code (CC) standard. */\n region: Array<VehicleRegion>;\n /** Vehicle intended use. Can be passenger, cargo, or utility. */\n purpose: VehiclePurpose;\n /** Type of vehicle. */\n type: VehicleType;\n /** Details about Heat Pump. */\n heat_pump?: Maybe<VehicleHeatPump>;\n};\n\nexport type VehiclePremiumAvailability = {\n /** Availability of the vehicle. */\n status: VehicleAvailabilityStatus;\n /** Date of introduction, mm-yyyy. */\n date_from?: Maybe<Scalars[\"String\"]>;\n /** Indicates if date from field is estimated. */\n date_from_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Date last available, mm-yyyy. */\n date_to?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumBattery = {\n /** Usable battery capacity in kWh. */\n usable_kwh: Scalars[\"Float\"];\n /** Full battery capacity in kWh. */\n full_kwh: Scalars[\"Float\"];\n /** Indicates which battery fields are estimated. */\n estimated_fields?: Maybe<VehicleBatteryFieldEstimations>;\n /** Battery thermal management system (active/passive, air/liquid). */\n thermal_management_system?: Maybe<Scalars[\"String\"]>;\n /** Duration of battery warranty in years. */\n warranty_period?: Maybe<Scalars[\"Float\"]>;\n /** Mileage of battery warranty in kilometers. */\n warranty_mileage?: Maybe<Scalars[\"Float\"]>;\n /** Chemistry of the battery. */\n chemistry?: Maybe<Scalars[\"String\"]>;\n /** Manufacturer of the battery. */\n manufacturer?: Maybe<Scalars[\"String\"]>;\n /** Number of battery modules. */\n modules?: Maybe<Scalars[\"Float\"]>;\n /** Number of cells in the battery pack, can include configuration (s = serial, p = parallel). */\n cells?: Maybe<Scalars[\"String\"]>;\n /** Weight of the battery pack. */\n weight?: Maybe<Scalars[\"Float\"]>;\n /** Nominal voltage of battery. */\n nominal_voltage?: Maybe<Scalars[\"Float\"]>;\n /** Type of battery. */\n type?: Maybe<VehicleBatteryType>;\n};\n\nexport type VehiclePremiumBatteryweightArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBody = {\n /** Length. */\n length?: Maybe<Scalars[\"Float\"]>;\n /** Width with folded mirrors. */\n width: Scalars[\"Float\"];\n /** Width of vehicle including mirrors. */\n full_width?: Maybe<Scalars[\"Float\"]>;\n /** Height (average height for adjustable suspensions). */\n height: Scalars[\"Float\"];\n /** Indicates if length/width/height fields are estimations. */\n size_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Wheelbase. */\n wheelbase?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if wheelbase field is estimated. */\n wheelbase_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Ground clearance of a vehicle as specified by the OEM. */\n ground_clearance?: Maybe<Scalars[\"Float\"]>;\n /** Weight (unladen EU). */\n weight: VehicleBodyWeight;\n /** Maximum allowed vehicle weight with payload. */\n weight_gvwr?: Maybe<VehicleBodyWeight>;\n /** Maximum allowed vehicle and trailer weight with payload. */\n weight_gtw?: Maybe<VehicleBodyWeight>;\n /** Allowed payload weight. */\n weight_payload?: Maybe<VehicleBodyWeight>;\n /** Indicates if weight field is estimated. */\n weight_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum payload allowed for the vehicle. */\n weight_max_payload?: Maybe<Scalars[\"Float\"]>;\n /** Standard luggage capacity. */\n boot_capacity?: Maybe<Scalars[\"Float\"]>;\n /** Storage capacity of front trunk/under the hood (frunk). */\n boot_front_capacity?: Maybe<Scalars[\"Float\"]>;\n /** Maximum luggage capacity. */\n boot_capacity_max?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if a tow hitch/towbar can be fitted according to vehicle homologation. */\n tow_hitch_compatible?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum unbraked towing weight. */\n tow_weight_unbraked?: Maybe<Scalars[\"Float\"]>;\n /** Maximum braked towing weight. */\n tow_weight_braked?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if tow weight fields are estimations. */\n tow_weight_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum vertical load / noseweight on tow hitch according to vehicle homologation. */\n tow_weight_vertical_load?: Maybe<Scalars[\"Float\"]>;\n /** Maximum load on roof of the vehicle. */\n roof_load_max?: Maybe<Scalars[\"Float\"]>;\n /** Body type, listed in local naming convention where applicable. */\n body_type?: Maybe<Scalars[\"String\"]>;\n /** Segment, listed in local naming convention where applicable. */\n segment?: Maybe<Scalars[\"String\"]>;\n /** Number of seats. */\n seats: Scalars[\"Int\"];\n /** Indicates whether a vehicle has roof rails as a standard. */\n has_roofrails?: Maybe<Scalars[\"Boolean\"]>;\n /** Turning circle of the vehicle kerb-to-kerb. */\n turning_circle?: Maybe<Scalars[\"Float\"]>;\n /** Name of the vehicle platform used for vehicle (often abbreviated to indicate group platforms). */\n vehicle_platform?: Maybe<Scalars[\"String\"]>;\n /** Indicates if the vehicle platform used for vehicle is a dedicated battery electric vehicle platform. */\n vehicle_platform_is_dedicated?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumBodylengthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodywidthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyfull_widthArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyheightArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodywheelbaseArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyground_clearanceArgs = {\n unit?: Maybe<MeasurementUnit>;\n};\n\nexport type VehiclePremiumBodyweight_max_payloadArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodyboot_capacityArgs = {\n unit?: Maybe<VolumeUnit>;\n};\n\nexport type VehiclePremiumBodyboot_front_capacityArgs = {\n unit?: Maybe<VolumeUnit>;\n};\n\nexport type VehiclePremiumBodyboot_capacity_maxArgs = {\n unit?: Maybe<VolumeUnit>;\n};\n\nexport type VehiclePremiumBodytow_weight_unbrakedArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodytow_weight_brakedArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodytow_weight_vertical_loadArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodyroof_load_maxArgs = {\n unit?: Maybe<WeightUnit>;\n};\n\nexport type VehiclePremiumBodyturning_circleArgs = {\n unit?: Maybe<TurningCircleUnit>;\n};\n\nexport type VehiclePremiumCharge = {\n /** Information about the main connector. */\n plug?: Maybe<VehiclePremiumChargePlug>;\n /** Information about vehicles secondary onboard charger. */\n second_plug?: Maybe<VehiclePremiumChargeSecondPlug>;\n /** Information about the vehicle standard onboard charger. */\n standard?: Maybe<VehiclePremiumChargeStandardOBC>;\n /** Optional upgrade for the standard onboard charger when available. */\n option?: Maybe<VehiclePremiumChargeOptionOBC>;\n /** Alternative upgrade for the standard onboard charger when available. */\n alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;\n /** Vehicle-to-everything charge support. */\n vehicle_to_everything?: Maybe<VehicleToEverything>;\n};\n\nexport type VehiclePremiumChargeAlternativeOBC = {\n /** Maximum power OBC can accept to charge a battery (alternative OBC). */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases the OBC accepts to achieve maximum power (alternative OBC). */\n phases?: Maybe<Scalars[\"Int\"]>;\n /** Maximum current the OBC accepts per phase to achieve maximum power (alternative OBC). */\n phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (alternative OBC). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (alternative OBC). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Charging details for the alternative OBC at several charging points. */\n table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;\n};\n\nexport type VehiclePremiumChargeAlternativeOBCpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumChargeOBCTable = {\n /** Voltage between phase and neutral for this EVSE (phase voltage). */\n evse_phase_voltage?: Maybe<Scalars[\"Int\"]>;\n /** Current per phase for this EVSE (phase current). */\n evse_phase_amperage?: Maybe<Scalars[\"Int\"]>;\n /** Number of phases for this EVSE. */\n evse_phases?: Maybe<Scalars[\"Int\"]>;\n /** Voltage between phase and neutral used by standard OBC (phase voltage). */\n charge_phase_voltage?: Maybe<Scalars[\"Int\"]>;\n /** Current per phase used by standard OBC (phase current). */\n charge_phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases used by standard OBC. */\n charge_phases?: Maybe<Scalars[\"Int\"]>;\n /** Power used by standard OBC (before OBC losses). */\n charge_power?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (standard OBC with this EVSE). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (standard OBC with this EVSE). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumChargeOBCTablecharge_powerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeOBCTablecharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumChargeOptionOBC = {\n /** Maximum power OBC can accept to charge a battery (standard OBC). */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */\n phases?: Maybe<Scalars[\"Int\"]>;\n /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */\n phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (standard OBC). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (standard OBC). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Charging details for the standard OBC at several charging points. */\n table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;\n};\n\nexport type VehiclePremiumChargeOptionOBCpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeOptionOBCcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumChargePlug = {\n /** Type of charge port on vehicle. */\n value?: Maybe<ConnectorType>;\n /** Indicates if value is an estimate. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Location of charge port. */\n location?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumChargePower = {\n /** Maximum value. */\n max?: Maybe<Scalars[\"Float\"]>;\n /** Average value. */\n average?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumChargePowermaxArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargePoweraverageArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeSecondPlug = {\n /** Location of charge port. */\n location?: Maybe<Scalars[\"String\"]>;\n /** Indicates if second charge port is optional. */\n is_optional?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumChargeStandardOBC = {\n /** Maximum power OBC can accept to charge a battery (standard OBC). */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Number of phases the OBC accepts to achieve maximum power (standard OBC). */\n phases?: Maybe<Scalars[\"Int\"]>;\n /** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC). */\n phase_amperage?: Maybe<Scalars[\"Float\"]>;\n /** Minutes needed to charge from 0% to 100% (standard OBC). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed when charging at maximum power (standard OBC). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if Charge_Standard fields are estimated. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Charging details for the standard OBC at several charging points. */\n table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;\n};\n\nexport type VehiclePremiumChargeStandardOBCpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumChargeStandardOBCcharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumDrivetrain = {\n /** Type of drivetrain. */\n type: VehicleDrivetrainType;\n /** Fuel type. */\n fuel?: Maybe<VehicleFuel>;\n /** Propulsion type. */\n propulsion?: Maybe<VehiclePropulsion>;\n /** Indicates if propulsion field is estimated. */\n propulsion_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum (combined) power output. */\n power?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if power field is estimated. */\n power_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Maximum (combine) power output. */\n power_hp?: Maybe<Scalars[\"Float\"]>;\n /** Maximum (combine) torque output. */\n torque?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if torque field is estimated. */\n torque_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumDrivetrainpowerArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumDrivetrainpower_hpArgs = {\n unit?: Maybe<PowerUnit>;\n};\n\nexport type VehiclePremiumDrivetraintorqueArgs = {\n unit?: Maybe<TorqueUnit>;\n};\n\nexport type VehiclePremiumEfficiency = {\n /** Rated efficiency in WLTP combined cycle. */\n wltp?: Maybe<VehiclePremiumEfficiencyWLTP>;\n /** Rated efficiency in WLTP combined cycle (TEH / least efficient trim). */\n wltp_teh?: Maybe<VehiclePremiumEfficiencyWLTPTEH>;\n /** Rated efficiency in NEDC combined cycle. */\n nedc?: Maybe<VehiclePremiumEfficiencyNEDC>;\n /** Vehicle efficiency based on provider range. */\n provider?: Maybe<VehiclePremiumEfficiencyProvider>;\n};\n\nexport type VehiclePremiumEfficiencyNEDC = {\n /** Rated efficiency in NEDC combined cycle. */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Rated efficiency in NEDC combined cycle presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in NEDC combined cycle (based on value). */\n vehicle?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in NEDC combined cycle presented in gas equivalent. */\n vehicle_fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated CO2 emissions in NEDC combined cycle in battery-only mode (NULL if not NEDC rated). */\n co2?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCvalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCvehicleArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCvehicle_fuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyNEDCco2Args = {\n unit?: Maybe<EmissionRateUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProvider = {\n /** Vehicle efficiency based on RealRange (usable battery/range). */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Vehicle efficiency based on RealRange presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Worst conditions are based on -10°C and use of heating. */\n worst?: Maybe<VehiclePremiumEfficiencyProviderValue>;\n /** Best conditions are based on 23°C and no use of A/C. */\n best?: Maybe<VehiclePremiumEfficiencyProviderValue>;\n};\n\nexport type VehiclePremiumEfficiencyProvidervalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValue = {\n /** Estimated value on highway or express roads. */\n highway?: Maybe<Scalars[\"Float\"]>;\n /** Estimated value on city roads. */\n city?: Maybe<Scalars[\"Float\"]>;\n /** Estimated combined value. */\n combined?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValuehighwayArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValuecityArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumEfficiencyProviderValuecombinedArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTP = {\n /** Rated efficiency in WLTP combined cycle. */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Rated efficiency in WLTP combined cycle presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP combined cycle (based on value). */\n vehicle?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP combined cycle presented in gas equivalent. */\n vehicle_fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated CO2 emissions in WLTP combined cycle in battery-only mode (NULL if not WLTP rated). */\n co2?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPvalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPvehicleArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPvehicle_fuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPco2Args = {\n unit?: Maybe<EmissionRateUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEH = {\n /** Rated efficiency in WLTP TEH combined cycle (TEH/least efficient trim). */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Rated efficiency in WLTP TEH combined cycle presented in gas equivalent. */\n fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP TEH combined cycle (based on value). */\n vehicle?: Maybe<Scalars[\"Float\"]>;\n /** Rated vehicle efficiency in WLTP TEH combined cycle presented in gas equivalent. */\n vehicle_fuel_equivalent?: Maybe<Scalars[\"Float\"]>;\n /** Rated CO2 emissions in WLTP TEH combined cycle in battery-only mode (NULL if not WLTP TEH rated). */\n co2?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHvalueArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHfuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHvehicleArgs = {\n unit?: Maybe<ConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHvehicle_fuel_equivalentArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumEfficiencyWLTPTEHco2Args = {\n unit?: Maybe<EmissionRateUnit>;\n};\n\nexport type VehiclePremiumFastCharge = {\n /** Details about the connector. */\n plug?: Maybe<VehiclePremiumChargePlug>;\n /** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger). */\n power?: Maybe<VehiclePremiumChargePower>;\n /** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger). */\n charge_time?: Maybe<Scalars[\"Float\"]>;\n /** Charging speed during fast charging from 10% to 80% (optimal conditions, fastest charger). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if fast charge is optional in some markets/regions. */\n is_optional?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates what fields are estimated. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Charging details for fast charging. */\n table?: Maybe<Array<Maybe<VehiclePremiumFastChargeTable>>>;\n /** Indicates if autocharge is available. */\n has_autocharge?: Maybe<Scalars[\"Boolean\"]>;\n /** Status of Plug & Charge (PnC ISO15118) support for vehicle. */\n iso_15118_pnc_support?: Maybe<VehiclePlugAndChargeSupport>;\n /** Status of Plug & Charge (PnC ISO15118) -2 protocol support for vehicle. */\n iso_15118_pnc_support_2?: Maybe<VehiclePlugAndChargeSupport>;\n /** Status of Plug & Charge (PnC ISO15118) -20 protocol support for vehicle. */\n iso_15118_pnc_support_20?: Maybe<VehiclePlugAndChargeSupport>;\n /** Indicates if the fastcharge data is based on a real-world test by Fastned. */\n is_fastned_tested?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumFastChargecharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumFastChargeTable = {\n /** Charging details for fast charging (format: ChargerConnector-ChargerPower-AC/DC). */\n format?: Maybe<Scalars[\"String\"]>;\n /** Fast charge power. */\n power?: Maybe<VehiclePremiumChargePower>;\n /** Minutes needed to charge from 10% to 80% (optimal conditions). */\n charge_time?: Maybe<Scalars[\"Int\"]>;\n /** Charging speed during fast charging from 10% to 80% (optimal conditions). */\n charge_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if maximum power during fast charging is limited by the vehicle. */\n is_limited?: Maybe<Scalars[\"Boolean\"]>;\n /** Indicates if average power during fast charging is limited by the vehicle. */\n average_is_limited?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumFastChargeTablecharge_speedArgs = {\n unit?: Maybe<ChargeSpeedUnit>;\n};\n\nexport type VehiclePremiumMedia = {\n /** URL for more details. */\n provider_details_url?: Maybe<Scalars[\"String\"]>;\n /** Featured image of the vehicle from a 45-degree angle. */\n image: VehicleImage;\n /**\n * Latest make logo.\n * @deprecated In favor of `make`.\n */\n brand: VehicleImage;\n /** Latest make logo. */\n make: VehicleImage;\n /** All images of the vehicle. */\n image_list: Array<VehicleImage>;\n /** Latest video. */\n video?: Maybe<VehicleVideo>;\n /** All videos of the vehicle. */\n video_list?: Maybe<Array<VehicleVideo>>;\n /** URL of the OEM page for this vehicle. */\n oem_details_url?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumNaming = {\n /** Vehicle manufacturer name. */\n make: Scalars[\"String\"];\n /** Vehicle model name. */\n model: Scalars[\"String\"];\n /** Version, edition or submodel of the vehicle. */\n version?: Maybe<Scalars[\"String\"]>;\n /** Another submodel level of the vehicle. */\n edition?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model version. Added by Chargetrip as an alternative for when a vehicle manufacturer does not provide a version name, or uses the same version name across all trims or consecutive years. */\n chargetrip_version: Scalars[\"String\"];\n /** Vehicle model length version. */\n length_version?: Maybe<Scalars[\"String\"]>;\n /** Vehicle model height version. */\n height_version?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehiclePremiumPerformance = {\n /** Acceleration 0-100 km/h. */\n acceleration?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if acceleration field is estimated. */\n acceleration_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Top speed of the vehicle. */\n top_speed?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if top_speed field is estimated. */\n top_speed_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n};\n\nexport type VehiclePremiumPerformanceaccelerationArgs = {\n unit?: Maybe<AccelerationUnit>;\n};\n\nexport type VehiclePremiumPerformancetop_speedArgs = {\n unit?: Maybe<SpeedUnit>;\n};\n\nexport type VehiclePremiumPrice = {\n /** Starting price for German market. */\n DE?: Maybe<VehiclePremiumPriceValueWithGrant>;\n /** Starting price for Dutch market. */\n NL?: Maybe<VehiclePremiumPriceValueWithGrant>;\n /** Starting price for British market. */\n GB?: Maybe<VehiclePremiumPriceValueWithGrant>;\n};\n\nexport type VehiclePremiumPriceValueWithGrant = {\n /** Starting price for local market expressed in the currency in the field currency. */\n value?: Maybe<Scalars[\"Float\"]>;\n /** Currency in which the value without optional field conversion is expressed. */\n currency?: Maybe<CurrencyUnit>;\n /** Indicates if the starting price is based on an estimate. */\n is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Grant that is applied to the starting price. */\n grant_applied?: Maybe<Scalars[\"Int\"]>;\n /** Total delivery fees (be aware that this field does not include grant). */\n price_delivery?: Maybe<Scalars[\"Int\"]>;\n /** First registration fee (be aware that this field does not include grant). */\n price_first_registration_fee?: Maybe<Scalars[\"Int\"]>;\n};\n\nexport type VehiclePremiumPriceValueWithGrantvalueArgs = {\n unit?: Maybe<CurrencyUnit>;\n};\n\nexport type VehiclePremiumRange = {\n /** Rated range in WLTP combined cycle (NULL if not WLTP rated). */\n wltp?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if WLTP range is estimated (NULL if not WLTP rated). */\n wltp_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Rated range in WLTP (TEH/least efficient trim) combined cycle (NULL if not WLTP rated). */\n wltp_teh?: Maybe<Scalars[\"Float\"]>;\n /** Rated range in NEDC combined cycle (NULL if not NEDC rated). */\n nedc?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if NEDC range is estimated (NULL if not NEDC rated). */\n nedc_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Index range. */\n provider?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if index range is estimated. */\n provider_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Worst conditions are based on -10°C and use of heating. */\n worst: VehiclePremiumRangeValue;\n /** Best conditions are based on 23°C and no use of A/C. */\n best: VehiclePremiumRangeValue;\n /**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n chargetrip_range: ChargetripRange;\n};\n\nexport type VehiclePremiumRangewltpArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangewltp_tehArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangenedcArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeproviderArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeValue = {\n /** Estimated value on highway or express roads. */\n highway: Scalars[\"Float\"];\n /** Estimated value on city roads. */\n city: Scalars[\"Float\"];\n /** Estimated combined value. */\n combined: Scalars[\"Float\"];\n};\n\nexport type VehiclePremiumRangeValuehighwayArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeValuecityArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRangeValuecombinedArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehiclePremiumRouting = {\n /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */\n fast_charging_support: Scalars[\"Boolean\"];\n /** Drag coefficient. */\n drag_coefficient: Scalars[\"Float\"];\n /** Tire pressure recommended by manufacturer. */\n tire_pressure: Scalars[\"Float\"];\n /** Extra consumption model. */\n consumption?: Maybe<VehiclePremiumRoutingConsumption>;\n /** Amount of gasoline that an equivalent gasoline vehicle would consume. */\n fuel_consumption?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumRoutingtire_pressureArgs = {\n unit?: Maybe<PressureUnit>;\n};\n\nexport type VehiclePremiumRoutingfuel_consumptionArgs = {\n unit?: Maybe<FuelConsumptionUnit>;\n};\n\nexport type VehiclePremiumRoutingConsumption = {\n /** The amount of energy, in kWh, used by the auxiliary systems of the vehicle in an hour, like media box, etc */\n auxiliary?: Maybe<Scalars[\"Float\"]>;\n};\n\nexport type VehiclePremiumRoutingConsumptionauxiliaryArgs = {\n unit?: Maybe<AuxiliaryConsumptionUnit>;\n};\n\nexport type VehiclePremiumSafety = {\n /** Number of seats equipped with ISOFIX. */\n isofix_seats?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP results. */\n euro_ncap?: Maybe<VehiclePremiumSafetyEuroNcap>;\n};\n\nexport type VehiclePremiumSafetyEuroNcap = {\n /** EuroNCAP rating (out of 5 stars). */\n rating?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP year of rating. */\n year?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of adult protection (out of 100%). */\n adult?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of child protection (out of 100%). */\n child?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of vulnerable road users (out of 100%). */\n vru?: Maybe<Scalars[\"Int\"]>;\n /** EuroNCAP rating of safety assists (out of 100%). */\n sa?: Maybe<Scalars[\"Int\"]>;\n /** Link to the EuroNCAP test report. */\n url?: Maybe<Scalars[\"String\"]>;\n};\n\n/** Propulsion. */\nexport enum VehiclePropulsion {\n /** All-wheel drive vehicle. */\n AWD = \"AWD\",\n /** Front-wheel drive vehicle. */\n FRONT = \"Front\",\n /** Rear-wheel drive vehicle. */\n REAR = \"Rear\"\n}\n\n/** Status of a vehicle provider. */\nexport enum VehicleProviderStatus {\n /** Is imported from any of the data providers. */\n NEW = \"new\",\n /** Has been attached to core vehicle. */\n ATTACHED = \"attached\",\n /** Has been detached from a core vehicle. */\n DETACHED = \"detached\",\n /** Has been archived by database maintainer. */\n ARCHIVED = \"archived\"\n}\n\nexport enum VehiclePurpose {\n /** Vehicle intended for the transportation of passengers. */\n PASSENGER = \"passenger\",\n /** Vehicle intended for the transportation of cargo. */\n CARGO = \"cargo\",\n /** Vehicle intended for the transportation of everything except cargo or passengers. Eg: ambulances, agricultural vehicles, etcetera. */\n UTILITY = \"utility\"\n}\n\nexport type VehicleRange = {\n /** Index range. */\n provider?: Maybe<Scalars[\"Float\"]>;\n /** Indicates if index range is estimated. */\n provider_is_estimated?: Maybe<Scalars[\"Boolean\"]>;\n /** Worst conditions are based on -10°C and use of heating. */\n worst: VehicleRangeValue;\n /** Best conditions are based on 23°C and no use of A/C. */\n best: VehicleRangeValue;\n /**\n * Chargetrip's custom real-world range provides a carefully calculated display range for all-electric vehicle models.\n * Chargetrip range is based on the theoretical distance driven using only the electric engine.\n * Vehicles that do not have a full electric drivetrain type (all except Battery Electric Vehicles / BEV) therefore return relatively small ranges.\n * More information on the CT range can be found at https://chargetrip.com/blog/what-is-ct-real-range\n */\n chargetrip_range: ChargetripRange;\n};\n\nexport type VehicleRangeproviderArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehicleRangeValue = {\n /** Estimated value on the highway or express roads. */\n highway: Scalars[\"Float\"];\n /** Estimated value on the cities road. */\n city: Scalars[\"Float\"];\n /** Estimated combined value. */\n combined: Scalars[\"Float\"];\n};\n\nexport type VehicleRangeValuehighwayArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehicleRangeValuecityArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport type VehicleRangeValuecombinedArgs = {\n unit?: Maybe<DistanceUnit>;\n};\n\nexport enum VehicleRegion {\n /** Africa. */\n AF = \"AF\",\n /** Asia. */\n AS = \"AS\",\n /** Europe. */\n EU = \"EU\",\n /** North America. */\n NA = \"NA\",\n /** Oceania. */\n OC = \"OC\",\n /** South America. */\n SA = \"SA\"\n}\n\nexport type VehicleRouting = {\n /** Vehicles that support fast charging have a minimum charging speed of 43 kWh. */\n fast_charging_support: Scalars[\"Boolean\"];\n};\n\nexport type VehicleSpeed = {\n /** Value of the vehicle speed. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's speed. */\n type: SpeedUnit;\n /** Source of inputted data. */\n source: TelemetryInputSource;\n};\n\nexport type VehicleSpeedInput = {\n /** Value of the vehicle's speed. */\n value: Scalars[\"Float\"];\n /** Preferred unit for the vehicle's speed. */\n type: SpeedUnit;\n /** Source of inputted data, defaults to 'manual'. */\n source?: Maybe<TelemetryInputSource>;\n};\n\nexport type VehicleToEverything = {\n /** Information about Vehicle-to-Load. */\n vehicle_to_load?: Maybe<VehicleToEverythingLoad>;\n /** Information about Vehicle-to-Home. */\n vehicle_to_home?: Maybe<VehicleToEverythingHomeGrid>;\n /** Information about Vehicle-to-Grid. */\n vehicle_to_grid?: Maybe<VehicleToEverythingHomeGrid>;\n};\n\nexport type VehicleToEverythingHomeGrid = {\n /** Vehicle-to-Home/Grid AC power information. */\n ac?: Maybe<VehicleToEverythingPower>;\n /** Vehicle-to-Home/Grid DC power information */\n dc?: Maybe<VehicleToEverythingPower>;\n};\n\nexport type VehicleToEverythingLoad = {\n /** Vehicle-to-Load power information. */\n ac?: Maybe<VehicleToEverythingPower>;\n /** Details on interior ports available for V2L. */\n interior_ports?: Maybe<Scalars[\"String\"]>;\n /** Details on exterior ports available for V2L. */\n exterior_ports?: Maybe<Scalars[\"String\"]>;\n};\n\nexport type VehicleToEverythingPower = {\n /** Indicates if this charging is supported. */\n is_supported?: Maybe<PowerSupported>;\n /** Maximum power output, in kilowatts. */\n maximum_power?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum VehicleType {\n /** 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. */\n MOTORCYCLE = \"motorcycle\",\n /** A motor vehicle with three or four wheels that is not a Motorcycle, Pickup, Van, Truck, or Utility vehicle and either has a top speed of less than 60kph or an unladen weight of less than 400kg. */\n MICROCAR = \"microcar\",\n /** A motor vehicle that does not have an enclosed cab, is not a microcar or utility vehicle, is capable of carrying eight or fewer people, and that has less than one third of its internal volume dedicated to cargo, living, or sleeping space in its default configuration. */\n CAR = \"car\",\n /** A motor vehicle that has an enclosed cab, is not a utility vehicle, and has a fixed, non-articulated, open-top back cargo bed that is enclosed on at least three sides. */\n PICKUP = \"pickup\",\n /**\n * A motor vehicle that does not have an enclosed cab, is not a utility vehicle, that fulfills exactly one of the following conditions:\n * 1) It is capable of carrying more than eight but less than twenty people.\n * 2) At least one third of its internal volume is dedicated to cargo space in its default configuration.\n * 3) It is the passenger variant of a vehicle that meets criterion 2.\n */\n VAN = \"van\",\n /** A motor vehicle that does not have an enclosed cab, is not a Utility vehicle, and is capable of carrying 20 or more people in its default configuration. */\n BUS = \"bus\",\n /** A motor vehicle that has an enclosed cab and is not a Pickup or Utility vehicle. */\n TRUCK = \"truck\",\n /**\n * A motor vehicle that fulfills at least one of the following conditions:\n * 1) It does not have wheels.\n * 2) It has some mode of locomotion other than wheels in its default configuration such as treads, skis, or floats.\n * 3) It is capable of air or water travel in its default configuration.\n * 4) It was manufactured primarily for some purpose other than transporting cargo or passengers.\n * 5) It does not conform to any of the criteria for the other vehicle categories.\n */\n UTILITY = \"utility\"\n}\n\nexport type VehicleVideo = {\n /** Video id. */\n id?: Maybe<Scalars[\"ID\"]>;\n /** Full path URL of a video. */\n url?: Maybe<Scalars[\"String\"]>;\n};\n\nexport enum VolumeUnit {\n /** Return the volume in liters. */\n LITER = \"liter\",\n /** Return the volume in cubic meters. */\n CUBIC_METER = \"cubic_meter\",\n /** Return the volume in cubic feet. */\n CUBIC_FOOT = \"cubic_foot\"\n}\n\n/** Type of weather conditions used in the route calculation. */\nexport enum WeatherType {\n /** Fixed seasonal preset representing typical summer weather conditions. Can't be used in combination with weather.custom. */\n SUMMER = \"summer\",\n /** Fixed seasonal preset representing typical winter weather conditions. Can't be used in combination with weather.custom. */\n WINTER = \"winter\",\n /** A dynamic preset that uses real weather data based on the route's departure time. Can't be used in combination with weather.custom. */\n ACTUAL = \"actual\",\n /** Must be used in combination with weather.custom object. */\n CUSTOM = \"custom\"\n}\n\nexport type WeightInput = {\n /** Preferred unit for the weight */\n type: WeightUnit;\n /** Value of weight */\n value: Scalars[\"Float\"];\n};\n\nexport enum WeightUnit {\n /** Return the weight in kilograms. */\n KILOGRAM = \"kilogram\",\n /** Return the weight in pounds. */\n POUND = \"pound\"\n}\n"],"mappings":"AAQA;AA0BA,WAAYA,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAOZ,WAAYC,UAAZ;AAMA;;WANYA,U;EAAAA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AA+CZ,WAAYC,wBAAZ;AAWA;;WAXYA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AAmCZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAyBZ;AACA,WAAYC,SAAZ;AAeA;;WAfYA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAyHZ;AACA,WAAYC,WAAZ;AAeA;;WAfYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAgBZ,WAAYC,kCAAZ;;WAAYA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;GAAAA,kC,KAAAA,kC;;AAyCZ;AACA,WAAYC,wBAAZ;AAKA;;WALYA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AAMZ,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAgBZ,WAAYC,uBAAZ;AAIA;;WAJYA,uB;EAAAA,uB;GAAAA,uB,KAAAA,uB;;AAoBZ;AACA,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAyBZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAkCZ,WAAYC,aAAZ;AAWA;;WAXYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAuEZ,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAeZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AA0EZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAIZ,WAAYC,YAAZ;;WAAYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAiCZ,WAAYC,sBAAZ;AAWA;;WAXYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AA2GZ;AACA,WAAYC,kCAAZ;;WAAYA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;GAAAA,kC,KAAAA,kC;;AA8EZ;AACA,WAAYC,qCAAZ;AAWA;;WAXYA,qC;EAAAA,qC;EAAAA,qC;EAAAA,qC;EAAAA,qC;GAAAA,qC,KAAAA,qC;;AAYZ,WAAYC,yBAAZ;;WAAYA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;GAAAA,yB,KAAAA,yB;;AAiCZ;AACA,WAAYC,0CAAZ;AASA;;WATYA,0C;EAAAA,0C;EAAAA,0C;EAAAA,0C;GAAAA,0C,KAAAA,0C;;AAUZ,WAAYC,yCAAZ;AAOA;;WAPYA,yC;EAAAA,yC;EAAAA,yC;GAAAA,yC,KAAAA,yC;;AAQZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAqFZ,WAAYC,eAAZ;AAeA;;WAfYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AA+BZ;AACA,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAmYZ;AACA,WAAYC,QAAZ;AAsLA;;WAtLYA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;AAuLZ,WAAYC,YAAZ;AA4IA;;WA5IYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AA6IZ,WAAYC,SAAZ;;WAAYA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAUZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAyBZ,WAAYC,YAAZ;AAWA;;WAXYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAsEZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAOZ,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAOZ,WAAYC,YAAZ;;WAAYA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAoBZ;AACA,WAAYC,mBAAZ;AAMA;;WANYA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAsFZ;AACA,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AA0DZ,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAOZ,WAAYC,QAAZ;AAOA;;WAPYA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;AAaZ;AACA,WAAYC,YAAZ;AASA;;WATYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAUZ,WAAYC,mBAAZ;AAWA;;WAXYA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAYZ,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAmDZ,WAAYC,2BAAZ;;WAAYA,2B;EAAAA,2B;EAAAA,2B;GAAAA,2B,KAAAA,2B;;AA4CZ;AACA,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AA+DZ;AACA,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAyCZ;AACA,WAAYC,OAAZ;AAeA;;WAfYA,O;EAAAA,O;EAAAA,O;EAAAA,O;EAAAA,O;EAAAA,O;EAAAA,O;GAAAA,O,KAAAA,O;;AAuBZ;AACA,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AAkBZ,WAAYC,eAAZ;AAOA;;WAPYA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAiBZ;AACA,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAmJZ,WAAYC,sBAAZ;;WAAYA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAOZ,WAAYC,oBAAZ;AAWA;;WAXYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AAgQZ;AACA,WAAYC,gBAAZ;AAOA;;WAPYA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AA4DZ;AACA,WAAYC,uBAAZ;;WAAYA,uB;EAAAA,uB;EAAAA,uB;EAAAA,uB;GAAAA,uB,KAAAA,uB;;AA2DZ;AACA,WAAYC,cAAZ;AA6BA;;WA7BYA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AA8BZ,WAAYC,mBAAZ;AAOA;;WAPYA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAQZ,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAqFZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAsCZ;AACA,WAAYC,wBAAZ;AAmBA;;WAnBYA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AA2BZ;AACA,WAAYC,+BAAZ;AAOA;;WAPYA,+B;EAAAA,+B;EAAAA,+B;GAAAA,+B,KAAAA,+B;;AAeZ,WAAYC,YAAZ;AA2CA;;WA3CYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AA8EZ;AACA,WAAYC,iBAAZ;AAiBA;;WAjBYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAkBZ,WAAYC,sBAAZ;AAaA;;WAbYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAcZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAeZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAyCZ,WAAYC,8BAAZ;AAOA;;WAPYA,8B;EAAAA,8B;EAAAA,8B;GAAAA,8B,KAAAA,8B;;AAQZ,WAAYC,UAAZ;AAqBA;;WArBYA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AA8DZ,WAAYC,uBAAZ;;WAAYA,uB;EAAAA,uB;EAAAA,uB;EAAAA,uB;EAAAA,uB;GAAAA,uB,KAAAA,uB;;AAiDZ,WAAYC,cAAZ;AAaA;;WAbYA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AAcZ,WAAYC,iBAAZ;AAQA;;WARYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAgBZ;AACA,WAAYC,0BAAZ;AASA;;WATYA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAkCZ;AACA,WAAYC,kBAAZ;AAMA;;WANYA,kB;EAAAA,kB;EAAAA,kB;EAAAA,kB;GAAAA,kB,KAAAA,kB;;AAkBZ;AACA,WAAYC,sBAAZ;;WAAYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AA8FZ,WAAYC,sBAAZ;AAWA;;WAXYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAYZ,WAAYC,oBAAZ;AAMA;;WANYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AAiEZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAwCZ;AACA,WAAYC,SAAZ;AAIA;;WAJYA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAUZ;AACA,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAcZ,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AASZ,WAAYC,SAAZ;;WAAYA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAOZ,WAAYC,YAAZ;;WAAYA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAgCZ,WAAYC,sBAAZ;;WAAYA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;EAAAA,sB;GAAAA,sB,KAAAA,sB;;AAisBZ;AACA,WAAYC,oBAAZ;;WAAYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AA2BZ;AACA,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAgSZ;AACA,WAAYC,2BAAZ;;WAAYA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;GAAAA,2B,KAAAA,2B;;AAuFZ;AACA,WAAYC,0BAAZ;;WAAYA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAoBZ;AACA,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAoBZ;AACA,WAAYC,0BAAZ;;WAAYA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAyHZ;AACA,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAkCZ,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAiLZ;AACA,WAAYC,oBAAZ;;WAAYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AA8PZ;AACA,WAAYC,kCAAZ;;WAAYA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;EAAAA,kC;GAAAA,kC,KAAAA,kC;;AAqLZ;AACA,WAAYC,4CAAZ;;WAAYA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;EAAAA,4C;GAAAA,4C,KAAAA,4C;;AA0CZ;AACA,WAAYC,iCAAZ;;WAAYA,iC;EAAAA,iC;EAAAA,iC;EAAAA,iC;EAAAA,iC;GAAAA,iC,KAAAA,iC;;AA8DZ;AACA,WAAYC,wBAAZ;;WAAYA,wB;EAAAA,wB;EAAAA,wB;GAAAA,wB,KAAAA,wB;;AAuLZ;AACA,WAAYC,kBAAZ;;WAAYA,kB;EAAAA,kB;EAAAA,kB;EAAAA,kB;GAAAA,kB,KAAAA,kB;;AAyKZ;AACA,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAmFZ;AACA,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAgCZ;AACA,WAAYC,YAAZ;AASA;;WATYA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;EAAAA,Y;GAAAA,Y,KAAAA,Y;;AAiBZ;AACA,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AA4cZ;AACA,WAAYC,gBAAZ;;WAAYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAuFZ,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAIZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAKZ,WAAYC,SAAZ;;WAAYA,S;EAAAA,S;EAAAA,S;GAAAA,S,KAAAA,S;;AAyBZ,WAAYC,iBAAZ;AAWA;;WAXYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AA8HZ,WAAYC,sCAAZ;AAiCA;;WAjCYA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;EAAAA,sC;GAAAA,sC,KAAAA,sC;;AAkMZ;AACA,WAAYC,gBAAZ;AASA;;WATYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAyCZ;AACA,WAAYC,QAAZ;;WAAYA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;EAAAA,Q;GAAAA,Q,KAAAA,Q;;AAuMZ,WAAYC,oBAAZ;;WAAYA,oB;EAAAA,oB;EAAAA,oB;EAAAA,oB;GAAAA,oB,KAAAA,oB;;AAuBZ,WAAYC,eAAZ;;WAAYA,e;EAAAA,e;EAAAA,e;GAAAA,e,KAAAA,e;;AAyBZ,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAqTZ,WAAYC,iBAAZ;;WAAYA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAyDZ;AACA,WAAYC,yBAAZ;;WAAYA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;EAAAA,yB;GAAAA,yB,KAAAA,yB;;AA8BZ;AACA,WAAYC,8BAAZ;;WAAYA,8B;EAAAA,8B;EAAAA,8B;EAAAA,8B;EAAAA,8B;GAAAA,8B,KAAAA,8B;;AAWZ,WAAYC,kBAAZ;;WAAYA,kB;EAAAA,kB;GAAAA,kB,KAAAA,kB;;AAuGZ,WAAYC,mBAAZ;;WAAYA,mB;EAAAA,mB;EAAAA,mB;GAAAA,mB,KAAAA,mB;;AAYZ;AACA,WAAYC,qBAAZ;AAWA;;WAXYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAYZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAmCZ;AACA,WAAYC,gBAAZ;AAmBA;;WAnBYA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;EAAAA,gB;GAAAA,gB,KAAAA,gB;;AAoBZ,WAAYC,0BAAZ;AAOA;;WAPYA,0B;EAAAA,0B;EAAAA,0B;GAAAA,0B,KAAAA,0B;;AAyKZ;AACA,WAAYC,WAAZ;AASA;;WATYA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AA6DZ,WAAYC,2BAAZ;AAWA;;WAXYA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;EAAAA,2B;GAAAA,2B,KAAAA,2B;;AA4yBZ;AACA,WAAYC,iBAAZ;AASA;;WATYA,iB;EAAAA,iB;EAAAA,iB;EAAAA,iB;GAAAA,iB,KAAAA,iB;;AAUZ,WAAYC,qBAAZ;;WAAYA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;EAAAA,qB;GAAAA,qB,KAAAA,qB;;AAWZ,WAAYC,cAAZ;;WAAYA,c;EAAAA,c;EAAAA,c;EAAAA,c;GAAAA,c,KAAAA,c;;AAoDZ,WAAYC,aAAZ;;WAAYA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;EAAAA,a;GAAAA,a,KAAAA,a;;AAsEZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAsCZ,WAAYC,UAAZ;AASA;;WATYA,U;EAAAA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U;;AAUZ,WAAYC,WAAZ;;WAAYA,W;EAAAA,W;EAAAA,W;EAAAA,W;EAAAA,W;GAAAA,W,KAAAA,W;;AAkBZ,WAAYC,UAAZ;;WAAYA,U;EAAAA,U;EAAAA,U;GAAAA,U,KAAAA,U"}