@chargetrip/types 1.43.0 → 1.45.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.
@@ -100,6 +100,22 @@ export declare enum AdhocAuthorisationMethod {
100
100
  QR_CODE = "QR_CODE",
101
101
  SMS = "SMS"
102
102
  }
103
+ export declare type AlternativeStationRadius = {
104
+ /** Value of the alternative station radius. */
105
+ value: Scalars["Float"];
106
+ /** Type of the alternative station radius. */
107
+ type: DistanceUnit;
108
+ /** Source of inputted data. */
109
+ source: TelemetryInputSource;
110
+ };
111
+ export declare type AlternativeStationRadiusInput = {
112
+ /** Value of the alternative station radius. */
113
+ value: Scalars["Float"];
114
+ /** Type of the alternative station radius. */
115
+ type: DistanceUnit;
116
+ /** Source of inputted data. */
117
+ source?: Maybe<TelemetryInputSource>;
118
+ };
103
119
  /** Amenities available near a station */
104
120
  export declare enum Amenities {
105
121
  PARK = "park",
@@ -189,7 +205,7 @@ export declare type AuxiliaryConsumptionInput = {
189
205
  /** Type of auxiliary power consumption of the vehicle. */
190
206
  type: AuxiliaryConsumptionUnit;
191
207
  /** Source of inputted data, defaults to 'manual'. */
192
- source?: TelemetryInputSource;
208
+ source?: Maybe<TelemetryInputSource>;
193
209
  };
194
210
  /** Auxiliary consumption units. */
195
211
  export declare enum AuxiliaryConsumptionUnit {
@@ -209,7 +225,7 @@ export declare type BatteryTemperatureInput = {
209
225
  /** Type of temperature of the battery. */
210
226
  type: TemperatureUnit;
211
227
  /** Source of inputted data, defaults to 'manual'. */
212
- source?: TelemetryInputSource;
228
+ source?: Maybe<TelemetryInputSource>;
213
229
  };
214
230
  /** Deprecated: In favour of Vehicle. */
215
231
  export declare type Car = {
@@ -1434,7 +1450,7 @@ export declare type ChargeSpeedInput = {
1434
1450
  /** Type of the charge speed of the battery. */
1435
1451
  type: ChargeSpeedUnit;
1436
1452
  /** Source of inputted data, defaults to 'manual'. */
1437
- source?: TelemetryInputSource;
1453
+ source?: Maybe<TelemetryInputSource>;
1438
1454
  };
1439
1455
  /** Charge speed unit. */
1440
1456
  export declare enum ChargeSpeedUnit {
@@ -1683,8 +1699,13 @@ export declare type Connector = {
1683
1699
  properties?: Maybe<Scalars["JSON"]>;
1684
1700
  /** List of valid charging tariffs. */
1685
1701
  tariff?: Maybe<Array<Maybe<OCPITariff>>>;
1686
- /** Charging prices. */
1702
+ /**
1703
+ * Charging prices.
1704
+ * @deprecated In favor of prices.
1705
+ */
1687
1706
  pricing?: Maybe<Pricing>;
1707
+ /** Dynamic charging prices. */
1708
+ prices?: Maybe<Array<ConnectorPrice>>;
1688
1709
  /** 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. */
1689
1710
  custom_properties?: Maybe<ConnectorCustomProperties>;
1690
1711
  };
@@ -1692,12 +1713,180 @@ export declare type Connector = {
1692
1713
  export declare type ConnectorCustomProperties = {
1693
1714
  /**
1694
1715
  * Charging prices.
1695
- * @deprecated In favor of connector.pricing
1716
+ * @deprecated In favor of connector.prices.
1696
1717
  */
1697
1718
  pricing?: Maybe<Pricing>;
1698
1719
  /** Custom connector properties for OICP databases. Station databases that not follow the OICP standard return null values. */
1699
1720
  oicp?: Maybe<OICPConnectorCustomProperties>;
1700
1721
  };
1722
+ /** Connector charging price. */
1723
+ export declare type ConnectorPrice = {
1724
+ /** ID for the price. */
1725
+ external_id: Scalars["String"];
1726
+ /** Owner of the payment product. */
1727
+ partner?: Maybe<Scalars["String"]>;
1728
+ /** ID for the owner of the payment product. */
1729
+ partner_id: Scalars["String"];
1730
+ /** Payment product. */
1731
+ product: ConnectorPriceProduct;
1732
+ /** Price product elements. */
1733
+ elements: Array<ConnectorPriceElement>;
1734
+ /** 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). */
1735
+ last_updated?: Maybe<Scalars["DateTime"]>;
1736
+ };
1737
+ export declare type ConnectorPriceElement = {
1738
+ /** Connector price element components. */
1739
+ components: Array<ConnectorPriceElementComponent>;
1740
+ /** Connector price element restrictions. */
1741
+ restrictions?: Maybe<ConnectorPriceElementRestrictions>;
1742
+ };
1743
+ export declare type ConnectorPriceElementComponent = {
1744
+ /** Type of pricing that is applicable. */
1745
+ type: ConnectorPriceElementComponentType;
1746
+ /** Applicable price excluding VAT. */
1747
+ price_excl_vat: Scalars["Float"];
1748
+ /** Applicable VAT. */
1749
+ vat: Scalars["Float"];
1750
+ /**
1751
+ * Indicates the minimum amount that is billed. A
1752
+ * 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.
1753
+ *
1754
+ * 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.
1755
+ */
1756
+ step_size: Scalars["Int"];
1757
+ };
1758
+ /** Type of pricing that is applicable. */
1759
+ export declare enum ConnectorPriceElementComponentType {
1760
+ /** Price per kWh. */
1761
+ ENERGY = "energy",
1762
+ /** Fixed price per charging session. */
1763
+ FLAT = "flat",
1764
+ /** Parking price per hour. This fee is applicable even if the parked car is not charging. */
1765
+ PARKING_TIME = "parking_time",
1766
+ /** Fixed price per hour. */
1767
+ TIME = "time"
1768
+ }
1769
+ export declare type ConnectorPriceElementRestrictions = {
1770
+ /** Starting time of the day for the prices. */
1771
+ start_time?: Maybe<Scalars["String"]>;
1772
+ /** Ending time of the day for the prices. */
1773
+ end_time?: Maybe<Scalars["String"]>;
1774
+ /** Starting date for the prices. */
1775
+ start_date?: Maybe<Scalars["String"]>;
1776
+ /** Ending date for the prices. */
1777
+ end_date?: Maybe<Scalars["String"]>;
1778
+ /** Minimum energy used, in kWh. */
1779
+ minimum_kwh?: Maybe<Scalars["Float"]>;
1780
+ /** Maximum energy used, in kWh. */
1781
+ maximum_kwh?: Maybe<Scalars["Float"]>;
1782
+ /** Minimum charging speed, in kW. */
1783
+ minimum_power?: Maybe<Scalars["Float"]>;
1784
+ /** Maximum charging speed, in kW. */
1785
+ maximum_power?: Maybe<Scalars["Float"]>;
1786
+ /** 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. */
1787
+ minimum_current?: Maybe<Scalars["Float"]>;
1788
+ /** 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. */
1789
+ maximum_current?: Maybe<Scalars["Float"]>;
1790
+ /** Minimum price based on the amount of kWh that is being delivered. */
1791
+ minimum_price?: Maybe<Scalars["Float"]>;
1792
+ /** Maximum price based on the amount of kWh that is being delivered. */
1793
+ maximum_price?: Maybe<Scalars["Float"]>;
1794
+ /** Battery percentage at which the overstay prices are active. */
1795
+ overstay_battery_percentage?: Maybe<ConnectorPriceRestrictionsOverstayBatteryPercentage>;
1796
+ /** Time after which the overstay prices are active. */
1797
+ overstay_time?: Maybe<ConnectorPriceRestrictionsOverstayTime>;
1798
+ /** Minimum duration, in seconds. */
1799
+ minimum_duration?: Maybe<Scalars["Int"]>;
1800
+ /** Maximum duration, in seconds. */
1801
+ maximum_duration?: Maybe<Scalars["Int"]>;
1802
+ /** Day(s) of the week that the prices are valid. */
1803
+ day_of_week?: Maybe<Array<DayOfWeek>>;
1804
+ /** Contract signed between the eMSP and the customer. */
1805
+ emsp_contract_date?: Maybe<ConnectorPriceRestrictionsEmspContractDate>;
1806
+ /**
1807
+ * When this field is present, the ConnectorPriceElement describes reservation costs.
1808
+ * A reservation starts when the reservation is made, and ends when the driver starts charging on the reserved EVSE/Location,
1809
+ * or when the reservation expires. A reservation can only have: `flat` and `time` ConnectorPriceElementComponentType,
1810
+ * where time is for the duration of the reservation.
1811
+ *
1812
+ * When a price has both, `reservation` and `reservation_expires` ConnectorPriceElement,
1813
+ * where both ConnectorPriceElement have a time ConnectorPriceElementComponent,
1814
+ * then the time based cost of an expired reservation will be calculated based on the `reservation_expires` ConnectorPriceElement.
1815
+ */
1816
+ reservation?: Maybe<ConnectorPriceRestrictionsReservationType>;
1817
+ };
1818
+ /** Payment product. */
1819
+ export declare type ConnectorPriceProduct = {
1820
+ /** Name of the payment product. */
1821
+ name: Scalars["String"];
1822
+ /** Type of the payment product. */
1823
+ type: ConnectorPriceProductType;
1824
+ /** A brief description of the product. */
1825
+ description: Scalars["String"];
1826
+ /** Indicates the type of subscription. */
1827
+ subscription_type: ConnectorPriceProductSubscriptionType;
1828
+ /** Subscription price for a month or year, excluding VAT, if applicable. */
1829
+ subscription_fee_excl_vat: Scalars["Float"];
1830
+ /** Three-digit currency code of the country where the charging station is located. */
1831
+ currency: CurrencyUnit;
1832
+ };
1833
+ /** Type of the payment product. */
1834
+ export declare enum ConnectorPriceProductSubscriptionType {
1835
+ /** The subscription fee is applicable every month. */
1836
+ MONTHLY = "monthly",
1837
+ /** The subscription fee is applicable every year. */
1838
+ YEARLY = "yearly",
1839
+ /** An initial fee is applicable to purchase a RFID card or chip, but there isn't a recurring subscription fee. */
1840
+ ONE_OFF = "one_off",
1841
+ /** The product doesn’t have a subscription option. */
1842
+ NOT_APPLICABLE = "not_applicable"
1843
+ }
1844
+ /** Type of the payment product. */
1845
+ export declare enum ConnectorPriceProductType {
1846
+ AD_HOC = "ad_hoc",
1847
+ MSP = "msp",
1848
+ CPO_SUBSCRIPTION = "cpo_subscription"
1849
+ }
1850
+ export declare type ConnectorPriceRestrictionsEmspContractDate = {
1851
+ /** Name of the contract signed between the eMSP and a customer. */
1852
+ name?: Maybe<Scalars["String"]>;
1853
+ /** Prices are active from this date, which is based on the contract signed between the eMSP and a customer. */
1854
+ from?: Maybe<Scalars["String"]>;
1855
+ /** Prices are active until this date, which is based on the contract signed between the eMSP and a customer. */
1856
+ to?: Maybe<Scalars["String"]>;
1857
+ };
1858
+ export declare type ConnectorPriceRestrictionsOverstayBatteryPercentage = {
1859
+ /** Battery percentage at which the overstay prices are active. */
1860
+ minimum?: Maybe<Scalars["Int"]>;
1861
+ /** Battery percentage at which the overstay prices are inactive. */
1862
+ maximum?: Maybe<Scalars["Int"]>;
1863
+ /** Unit for the time after which the prices are active. */
1864
+ unit?: Maybe<ConnectorPriceRestrictionsOverstayTimeUnit>;
1865
+ };
1866
+ export declare type ConnectorPriceRestrictionsOverstayTime = {
1867
+ /** Time at which the overstay prices are active. */
1868
+ minimum?: Maybe<Scalars["Int"]>;
1869
+ /** Time at which the overstay prices are inactive. */
1870
+ maximum?: Maybe<Scalars["Int"]>;
1871
+ /** Unit for the time after which the prices are active. */
1872
+ unit?: Maybe<ConnectorPriceRestrictionsOverstayTimeUnit>;
1873
+ };
1874
+ /** The unit of time after which the overstay restrictions are applicable. */
1875
+ export declare enum ConnectorPriceRestrictionsOverstayTimeUnit {
1876
+ /** The overstay restrictions are applicable after a certain number of seconds. */
1877
+ SECONDS = "seconds",
1878
+ /** The overstay restrictions are applicable after a certain number of minutes. */
1879
+ MINUTES = "minutes",
1880
+ /** The overstay restrictions are applicable after a certain number of hours. */
1881
+ HOURS = "hours"
1882
+ }
1883
+ /** Describes the cost associated with reserving a charging station. */
1884
+ export declare enum ConnectorPriceRestrictionsReservationType {
1885
+ /** Describes costs for a reservation. */
1886
+ RESERVATION = "reservation",
1887
+ /** Describes costs for a reservation that expires (i.e. driver does not start a charging session before expiry date of the reservation). */
1888
+ RESERVATION_EXPIRES = "reservation_expires"
1889
+ }
1701
1890
  /** The socket or plug standard of the charging point. */
1702
1891
  export declare enum ConnectorType {
1703
1892
  /** The connector type is CHAdeMO, DC. */
@@ -2093,8 +2282,8 @@ export declare type CreateRoute = {
2093
2282
  operators?: Maybe<RouteOperatorPreferences>;
2094
2283
  /** Season of a route. */
2095
2284
  season: RouteSeason;
2096
- /** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
2097
- alternative_station_radius?: Maybe<Scalars["Int"]>;
2285
+ /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */
2286
+ alternative_station_radius?: Maybe<AlternativeStationRadius>;
2098
2287
  /** Departure time of a route. */
2099
2288
  departure_time?: Maybe<Scalars["DateTime"]>;
2100
2289
  };
@@ -2112,13 +2301,193 @@ export declare type CreateRouteInput = {
2112
2301
  operators?: Maybe<RouteOperatorPreferencesInput>;
2113
2302
  /** Optional flag to specify the season. */
2114
2303
  season?: Maybe<RouteSeason>;
2115
- /** Alternative stations along a route within a specified radius in meters (minimum 500, maximum 5000). */
2116
- alternative_station_radius?: Maybe<Scalars["Int"]>;
2117
- /** Current elevation. */
2118
- elevation?: Maybe<ElevationInput>;
2304
+ /** Alternative stations along a route within a specified radius of 500 to 5000 meters, or the equivalent in another unit. */
2305
+ alternative_station_radius?: Maybe<AlternativeStationRadiusInput>;
2119
2306
  /** Route departure time. */
2120
2307
  departure_time?: Maybe<Scalars["DateTime"]>;
2121
2308
  };
2309
+ /** Currency in the ISO 4217 format. */
2310
+ export declare enum Currency {
2311
+ AED = "AED",
2312
+ AFN = "AFN",
2313
+ ALL = "ALL",
2314
+ AMD = "AMD",
2315
+ ANG = "ANG",
2316
+ AOA = "AOA",
2317
+ ARS = "ARS",
2318
+ AUD = "AUD",
2319
+ AWG = "AWG",
2320
+ AZN = "AZN",
2321
+ BAM = "BAM",
2322
+ BBD = "BBD",
2323
+ BDT = "BDT",
2324
+ BGN = "BGN",
2325
+ BHD = "BHD",
2326
+ BIF = "BIF",
2327
+ BMD = "BMD",
2328
+ BND = "BND",
2329
+ BOB = "BOB",
2330
+ BRL = "BRL",
2331
+ BSD = "BSD",
2332
+ BTN = "BTN",
2333
+ BWP = "BWP",
2334
+ BYN = "BYN",
2335
+ BYR = "BYR",
2336
+ BZD = "BZD",
2337
+ CAD = "CAD",
2338
+ CDF = "CDF",
2339
+ CHF = "CHF",
2340
+ CLF = "CLF",
2341
+ CLP = "CLP",
2342
+ CNY = "CNY",
2343
+ COP = "COP",
2344
+ CRC = "CRC",
2345
+ CUC = "CUC",
2346
+ CUP = "CUP",
2347
+ CVE = "CVE",
2348
+ CZK = "CZK",
2349
+ DJF = "DJF",
2350
+ DKK = "DKK",
2351
+ DOP = "DOP",
2352
+ DZD = "DZD",
2353
+ EGP = "EGP",
2354
+ ERN = "ERN",
2355
+ ETB = "ETB",
2356
+ EUR = "EUR",
2357
+ FJD = "FJD",
2358
+ FKP = "FKP",
2359
+ GBP = "GBP",
2360
+ GEL = "GEL",
2361
+ GGP = "GGP",
2362
+ GHS = "GHS",
2363
+ GIP = "GIP",
2364
+ GMD = "GMD",
2365
+ GNF = "GNF",
2366
+ GTQ = "GTQ",
2367
+ GYD = "GYD",
2368
+ HKD = "HKD",
2369
+ HNL = "HNL",
2370
+ HRK = "HRK",
2371
+ HTG = "HTG",
2372
+ HUF = "HUF",
2373
+ IDR = "IDR",
2374
+ ILS = "ILS",
2375
+ IMP = "IMP",
2376
+ INR = "INR",
2377
+ IQD = "IQD",
2378
+ IRR = "IRR",
2379
+ ISK = "ISK",
2380
+ JEP = "JEP",
2381
+ JMD = "JMD",
2382
+ JOD = "JOD",
2383
+ JPY = "JPY",
2384
+ KES = "KES",
2385
+ KGS = "KGS",
2386
+ KHR = "KHR",
2387
+ KMF = "KMF",
2388
+ KPW = "KPW",
2389
+ KRW = "KRW",
2390
+ KWD = "KWD",
2391
+ KYD = "KYD",
2392
+ KZT = "KZT",
2393
+ LAK = "LAK",
2394
+ LBP = "LBP",
2395
+ LKR = "LKR",
2396
+ LRD = "LRD",
2397
+ LSL = "LSL",
2398
+ LTL = "LTL",
2399
+ LVL = "LVL",
2400
+ LYD = "LYD",
2401
+ MAD = "MAD",
2402
+ MDL = "MDL",
2403
+ MGA = "MGA",
2404
+ MKD = "MKD",
2405
+ MMK = "MMK",
2406
+ MNT = "MNT",
2407
+ MOP = "MOP",
2408
+ MRO = "MRO",
2409
+ MUR = "MUR",
2410
+ MVR = "MVR",
2411
+ MWK = "MWK",
2412
+ MXN = "MXN",
2413
+ MYR = "MYR",
2414
+ MZN = "MZN",
2415
+ NAD = "NAD",
2416
+ NGN = "NGN",
2417
+ NIO = "NIO",
2418
+ NOK = "NOK",
2419
+ NPR = "NPR",
2420
+ NZD = "NZD",
2421
+ OMR = "OMR",
2422
+ PAB = "PAB",
2423
+ PEN = "PEN",
2424
+ PGK = "PGK",
2425
+ PHP = "PHP",
2426
+ PKR = "PKR",
2427
+ PLN = "PLN",
2428
+ PYG = "PYG",
2429
+ QAR = "QAR",
2430
+ RON = "RON",
2431
+ RSD = "RSD",
2432
+ RUB = "RUB",
2433
+ RWF = "RWF",
2434
+ SAR = "SAR",
2435
+ SBD = "SBD",
2436
+ SCR = "SCR",
2437
+ SDG = "SDG",
2438
+ SEK = "SEK",
2439
+ SGD = "SGD",
2440
+ SHP = "SHP",
2441
+ SLL = "SLL",
2442
+ SOS = "SOS",
2443
+ SRD = "SRD",
2444
+ STD = "STD",
2445
+ SVC = "SVC",
2446
+ SYP = "SYP",
2447
+ SZL = "SZL",
2448
+ THB = "THB",
2449
+ TJS = "TJS",
2450
+ TMT = "TMT",
2451
+ TND = "TND",
2452
+ TOP = "TOP",
2453
+ TRY = "TRY",
2454
+ TTD = "TTD",
2455
+ TWD = "TWD",
2456
+ TZS = "TZS",
2457
+ UAH = "UAH",
2458
+ UGX = "UGX",
2459
+ USD = "USD",
2460
+ UYU = "UYU",
2461
+ UZS = "UZS",
2462
+ VEF = "VEF",
2463
+ VND = "VND",
2464
+ VUV = "VUV",
2465
+ WST = "WST",
2466
+ XAF = "XAF",
2467
+ XAG = "XAG",
2468
+ XAU = "XAU",
2469
+ XCD = "XCD",
2470
+ XDR = "XDR",
2471
+ XOF = "XOF",
2472
+ XPF = "XPF",
2473
+ YER = "YER",
2474
+ ZAR = "ZAR",
2475
+ ZMK = "ZMK",
2476
+ ZMW = "ZMW",
2477
+ ZWL = "ZWL",
2478
+ XPT = "XPT",
2479
+ XPD = "XPD",
2480
+ BTC = "BTC",
2481
+ ETH = "ETH",
2482
+ BNB = "BNB",
2483
+ XRP = "XRP",
2484
+ SOL = "SOL",
2485
+ DOT = "DOT",
2486
+ AVAX = "AVAX",
2487
+ MATIC = "MATIC",
2488
+ LTC = "LTC",
2489
+ ADA = "ADA"
2490
+ }
2122
2491
  /** Currency according to the ISO 4217 standard. */
2123
2492
  export declare enum CurrencyUnit {
2124
2493
  /** Return the currency in EUR. */
@@ -2259,6 +2628,16 @@ export declare enum CurrencyUnit {
2259
2628
  ZAR = "ZAR",
2260
2629
  ZMW = "ZMW"
2261
2630
  }
2631
+ /** Represents a day of the week. */
2632
+ export declare enum DayOfWeek {
2633
+ MONDAY = "monday",
2634
+ TUESDAY = "tuesday",
2635
+ WEDNESDAY = "wednesday",
2636
+ THURSDAY = "thursday",
2637
+ FRIDAY = "friday",
2638
+ SATURDAY = "saturday",
2639
+ SUNDAY = "sunday"
2640
+ }
2262
2641
  export declare enum DimensionUnit {
2263
2642
  /** Return the dimension in meters. */
2264
2643
  METER = "meter",
@@ -2333,7 +2712,7 @@ export declare type ElevationInput = {
2333
2712
  /** Type of the value of elevation. */
2334
2713
  type: DistanceUnit;
2335
2714
  /** Source of inputted data, defaults to 'manual'. */
2336
- source?: TelemetryInputSource;
2715
+ source?: Maybe<TelemetryInputSource>;
2337
2716
  };
2338
2717
  export declare enum ElevationUnit {
2339
2718
  /** Return the elevation in meters. */
@@ -2442,38 +2821,52 @@ export declare type FeaturePointPolygonPropertiesInput = {
2442
2821
  export declare enum FeatureType {
2443
2822
  FEATURE = "Feature"
2444
2823
  }
2445
- export declare type FluidEmissions = {
2446
- /** Total fluid emissions. */
2824
+ export declare type FluidEndOfLifeEmissions = {
2825
+ /** Total fluid end of life emissions. */
2447
2826
  total: Scalars["Float"];
2448
- /** Wiper fluid maintenance emissions. */
2827
+ /** Wiper fluid end of life emissions. */
2449
2828
  wiper: Scalars["Float"];
2450
- /** Brake fluid maintenance emissions. */
2829
+ /** Brake fluid end of life emissions. */
2451
2830
  brake: Scalars["Float"];
2452
- /** Powertrain coolant fluid maintenance emissions. */
2831
+ /** Powertrain coolant fluid end of life emissions. */
2453
2832
  powertrain_coolant: Scalars["Float"];
2454
- /** Transmission fluid maintenance emissions. */
2833
+ /** Transmission fluid end of life emissions. */
2455
2834
  transmission: Scalars["Float"];
2456
- /** Motor oil maintenance emissions. */
2835
+ /** Motor oil end of life emissions. */
2457
2836
  motor_oil?: Maybe<Scalars["Float"]>;
2458
2837
  };
2459
- export declare type FluidEmissionstotalArgs = {
2838
+ export declare type FluidEndOfLifeEmissionstotalArgs = {
2460
2839
  unit?: Maybe<EmissionUnit>;
2461
2840
  };
2462
- export declare type FluidEmissionswiperArgs = {
2841
+ export declare type FluidEndOfLifeEmissionswiperArgs = {
2463
2842
  unit?: Maybe<EmissionUnit>;
2464
2843
  };
2465
- export declare type FluidEmissionsbrakeArgs = {
2844
+ export declare type FluidEndOfLifeEmissionsbrakeArgs = {
2466
2845
  unit?: Maybe<EmissionUnit>;
2467
2846
  };
2468
- export declare type FluidEmissionspowertrain_coolantArgs = {
2847
+ export declare type FluidEndOfLifeEmissionspowertrain_coolantArgs = {
2469
2848
  unit?: Maybe<EmissionUnit>;
2470
2849
  };
2471
- export declare type FluidEmissionstransmissionArgs = {
2850
+ export declare type FluidEndOfLifeEmissionstransmissionArgs = {
2472
2851
  unit?: Maybe<EmissionUnit>;
2473
2852
  };
2474
- export declare type FluidEmissionsmotor_oilArgs = {
2853
+ export declare type FluidEndOfLifeEmissionsmotor_oilArgs = {
2475
2854
  unit?: Maybe<EmissionUnit>;
2476
2855
  };
2856
+ export declare type FluidMaintenanceEmissions = {
2857
+ /** Total fluid maintenance emissions. */
2858
+ total: RouteOperationalMaintenanceEmissionsField;
2859
+ /** Wiper fluid maintenance emissions. */
2860
+ wiper: RouteOperationalMaintenanceEmissionsField;
2861
+ /** Brake fluid maintenance emissions. */
2862
+ brake: RouteOperationalMaintenanceEmissionsField;
2863
+ /** Powertrain coolant fluid maintenance emissions. */
2864
+ powertrain_coolant: RouteOperationalMaintenanceEmissionsField;
2865
+ /** Transmission fluid maintenance emissions. */
2866
+ transmission: RouteOperationalMaintenanceEmissionsField;
2867
+ /** Motor oil maintenance emissions. */
2868
+ motor_oil?: Maybe<RouteOperationalMaintenanceEmissionsField>;
2869
+ };
2477
2870
  export declare enum FuelConsumptionUnit {
2478
2871
  /** Return the fuel consumption in liters per 100 kilometers. */
2479
2872
  LITERS_PER_100_KILOMETERS = "liters_per_100_kilometers",
@@ -3471,13 +3864,21 @@ export declare enum OICPValueAddedServices {
3471
3864
  ROOF_PROVIDED = "roof_provided",
3472
3865
  NONE = "none"
3473
3866
  }
3867
+ export declare type Odometer = {
3868
+ /** Value of the vehicle's odometer. */
3869
+ value: Scalars["Float"];
3870
+ /** Type of the value of the vehicle's odometer. */
3871
+ type: DistanceUnit;
3872
+ /** Source of inputted data. */
3873
+ source: TelemetryInputSource;
3874
+ };
3474
3875
  export declare type OdometerInput = {
3475
3876
  /** Value of the vehicle's odometer. */
3476
3877
  value: Scalars["Float"];
3477
3878
  /** Type of the value of the vehicle's odometer. */
3478
3879
  type: DistanceUnit;
3479
3880
  /** Source of inputted data, defaults to 'manual'. */
3480
- source?: TelemetryInputSource;
3881
+ source?: Maybe<TelemetryInputSource>;
3481
3882
  };
3482
3883
  /** Operator data which extends OCPI BusinessDetails. */
3483
3884
  export declare type Operator = {
@@ -3525,6 +3926,12 @@ export declare type OperatorListQuery = {
3525
3926
  /** Exact country code. */
3526
3927
  country?: Maybe<Scalars["String"]>;
3527
3928
  };
3929
+ /** Operator ranking level. */
3930
+ export declare enum OperatorRankingLevel {
3931
+ LOW = "low",
3932
+ MEDIUM = "medium",
3933
+ HIGH = "high"
3934
+ }
3528
3935
  export declare type OutsideTempInput = {
3529
3936
  /** Value of the outside temperature. */
3530
3937
  value: Scalars["Float"];
@@ -3533,13 +3940,21 @@ export declare type OutsideTempInput = {
3533
3940
  /** Source of inputted data, defaults to 'manual'. */
3534
3941
  source?: Maybe<TelemetryInputSource>;
3535
3942
  };
3943
+ export declare type OutsideTemperature = {
3944
+ /** Value of the temperature. */
3945
+ value: Scalars["Float"];
3946
+ /** Type of the temperature. */
3947
+ type: TemperatureUnit;
3948
+ /** Source of inputted data. */
3949
+ source: TelemetryInputSource;
3950
+ };
3536
3951
  export declare type OutsideTemperatureInput = {
3537
3952
  /** Value of the outside temperature. */
3538
3953
  value: Scalars["Float"];
3539
3954
  /** Type of the value of the outside temperature. */
3540
3955
  type: TemperatureUnit;
3541
3956
  /** Source of inputted data. */
3542
- source?: TelemetryInputSource;
3957
+ source?: Maybe<TelemetryInputSource>;
3543
3958
  };
3544
3959
  export declare enum ParkingCost {
3545
3960
  /** Parking is free. */
@@ -3715,7 +4130,7 @@ export declare type Query = {
3715
4130
  getRoute: RouteResponse;
3716
4131
  /** [BETA] Get emissions for a route. */
3717
4132
  getRouteEmissions: RouteDetailsEmissions;
3718
- /** [BETA] Emissions profile for route. */
4133
+ /** Emissions profile for route. */
3719
4134
  routeEmissions: RouteEmissions;
3720
4135
  /** Retrieve information about a route path segment */
3721
4136
  routePath?: Maybe<RoutePath>;
@@ -3731,8 +4146,6 @@ export declare type Query = {
3731
4146
  tariff?: Maybe<OCPITariff>;
3732
4147
  /** Get the full list of tariffs. */
3733
4148
  tariffList?: Maybe<Array<Maybe<OCPITariff>>>;
3734
- /** Deprecated: This query will be removed in favor of navigation query and subscription. Mapping can be retrieved via the instructions field. */
3735
- navigationMapping?: Maybe<Scalars["JSON"]>;
3736
4149
  /** Get information about a vehicle by its ID. */
3737
4150
  vehicle?: Maybe<Vehicle>;
3738
4151
  /** 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. */
@@ -3837,12 +4250,6 @@ export declare type QuerytariffListArgs = {
3837
4250
  size?: Maybe<Scalars["Int"]>;
3838
4251
  page?: Maybe<Scalars["Int"]>;
3839
4252
  };
3840
- export declare type QuerynavigationMappingArgs = {
3841
- id: Scalars["ID"];
3842
- provider: MappingProvider;
3843
- precision?: Maybe<Scalars["Int"]>;
3844
- language?: Maybe<MappingLanguage>;
3845
- };
3846
4253
  export declare type QueryvehicleArgs = {
3847
4254
  id: Scalars["ID"];
3848
4255
  country?: Maybe<CountryCodeAlpha2>;
@@ -4220,7 +4627,7 @@ export declare type RouteAlternative = {
4220
4627
  id?: Maybe<Scalars["ID"]>;
4221
4628
  /** Type of alternative route. */
4222
4629
  type?: Maybe<RouteAlternativeType>;
4223
- /** Number of charges along a route. */
4630
+ /** Number of charging stops required for this route. */
4224
4631
  charges?: Maybe<Scalars["Int"]>;
4225
4632
  /** Number of available charges along a route. */
4226
4633
  chargesAvailable?: Maybe<Scalars["Int"]>;
@@ -4319,6 +4726,8 @@ export declare type RouteApp = {
4319
4726
  id?: Maybe<Scalars["ID"]>;
4320
4727
  };
4321
4728
  export declare type RouteDestinationFeaturePoint = {
4729
+ /** ID of the feature. */
4730
+ id?: Maybe<Scalars["ID"]>;
4322
4731
  /** Feature type. */
4323
4732
  type: FeatureType;
4324
4733
  /** Geometry of the feature. */
@@ -4327,6 +4736,8 @@ export declare type RouteDestinationFeaturePoint = {
4327
4736
  properties?: Maybe<RouteDestinationProperties>;
4328
4737
  };
4329
4738
  export declare type RouteDestinationFeaturePointInput = {
4739
+ /** ID of the feature. */
4740
+ id?: Maybe<Scalars["ID"]>;
4330
4741
  /** Feature type. */
4331
4742
  type: FeatureType;
4332
4743
  /** Geometry of the feature. */
@@ -4349,10 +4760,6 @@ export declare type RouteDestinationPropertiesInput = {
4349
4760
  export declare type RouteDetails = {
4350
4761
  /** ID of a route computation. */
4351
4762
  id: Scalars["ID"];
4352
- /** Type of a computed route. */
4353
- type: RouteDetailsType;
4354
- /** Aggregation of the connectors. */
4355
- connectors: RouteDetailsConnectors;
4356
4763
  /** Total distance of a route. */
4357
4764
  distance: Scalars["Float"];
4358
4765
  /** Aggregation of all durations of a route. */
@@ -4363,8 +4770,6 @@ export declare type RouteDetails = {
4363
4770
  range_at_origin: Scalars["Float"];
4364
4771
  /** Range available at the end of a trip. */
4365
4772
  range_at_destination: Scalars["Float"];
4366
- /** Text information about a route direction. */
4367
- via?: Maybe<Scalars["String"]>;
4368
4773
  /** Polyline containing encoded coordinates. */
4369
4774
  polyline?: Maybe<Scalars["String"]>;
4370
4775
  /** Path elevation, distance, duration, consumption and speed values, grouped into 100 segments. */
@@ -4375,10 +4780,11 @@ export declare type RouteDetails = {
4375
4780
  savings?: Maybe<RouteDetailsSavings>;
4376
4781
  /** Legs of a route. */
4377
4782
  legs: Array<RouteDetailsLeg>;
4783
+ /** Alternative stations along a route within specified radius. */
4378
4784
  alternative_stations: Array<RouteDetailsAlternativeStation>;
4379
4785
  /** Aggregation of tags over the current RouteDetails. Tags are available on legs and further subdivided over individual sections and maneuvers. */
4380
4786
  tags: Array<RouteDetailsTag>;
4381
- /** Number of charges along a route. */
4787
+ /** Number of charging stops required for this route. */
4382
4788
  charges: Scalars["Int"];
4383
4789
  };
4384
4790
  export declare type RouteDetailsdistanceArgs = {
@@ -4391,7 +4797,7 @@ export declare type RouteDetailsrange_at_destinationArgs = {
4391
4797
  unit?: Maybe<StateOfChargeUnit>;
4392
4798
  };
4393
4799
  export declare type RouteDetailspolylineArgs = {
4394
- decimals: PolylineInputDecimals;
4800
+ decimals?: Maybe<PolylineInputDecimals>;
4395
4801
  };
4396
4802
  export declare type RouteDetailsAlternativeStation = {
4397
4803
  /** ID of a station. */
@@ -4403,27 +4809,7 @@ export declare type RouteDetailsAlternativeStation = {
4403
4809
  /** Status of a station. */
4404
4810
  status: ChargerStatus;
4405
4811
  /** Ranking of an operator. */
4406
- operator_ranking?: Maybe<Scalars["Int"]>;
4407
- };
4408
- /** Aggregation of the connectors on a route. */
4409
- export declare type RouteDetailsConnectors = {
4410
- /** Aggregation of every connector on a route. */
4411
- all: RouteDetailsConnectorsValues;
4412
- /** Aggregation of every usable connector on a route. */
4413
- usable: RouteDetailsConnectorsValues;
4414
- };
4415
- /** Aggregation of the connectors on a route by status. */
4416
- export declare type RouteDetailsConnectorsValues = {
4417
- /** Total numbers of connectors. */
4418
- total: Scalars["Int"];
4419
- /** Number of connectors with status available. */
4420
- available: Scalars["Int"];
4421
- /** Number of connectors with status occupied. */
4422
- occupied: Scalars["Int"];
4423
- /** Number of connectors with status unknown. */
4424
- unknown: Scalars["Int"];
4425
- /** Number of connectors with status out of order. */
4426
- out_of_order: Scalars["Int"];
4812
+ operator_ranking?: Maybe<OperatorRankingLevel>;
4427
4813
  };
4428
4814
  /** Aggregation of all durations of a route. */
4429
4815
  export declare type RouteDetailsDurations = {
@@ -4496,12 +4882,8 @@ export declare type RouteDetailsLeg = {
4496
4882
  range_after_charge?: Maybe<Scalars["Float"]>;
4497
4883
  /** Type of a leg. */
4498
4884
  type: RouteDetailsLegType;
4499
- /** 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. */
4500
- name?: Maybe<Scalars["String"]>;
4501
4885
  /** Information about the station at the origin of this leg. */
4502
4886
  station?: Maybe<RouteDetailsLegStation>;
4503
- /** Aggregation of the connectors on the leg. */
4504
- connectors: RouteDetailsConnectors;
4505
4887
  /** Polyline containing encoded coordinates. */
4506
4888
  polyline: Scalars["String"];
4507
4889
  /** Aggregation of tags over the current leg. Tags are further subdivided over individual sections and maneuvers. */
@@ -4529,9 +4911,11 @@ export declare type RouteDetailsLegrange_after_chargeArgs = {
4529
4911
  };
4530
4912
  /** Leg of a route detail. */
4531
4913
  export declare type RouteDetailsLegpolylineArgs = {
4532
- decimals: PolylineInputDecimals;
4914
+ decimals?: Maybe<PolylineInputDecimals>;
4533
4915
  };
4534
4916
  export declare type RouteDetailsLegFeaturePoint = {
4917
+ /** ID of the feature. */
4918
+ id?: Maybe<Scalars["ID"]>;
4535
4919
  /** Feature type. */
4536
4920
  type: FeatureType;
4537
4921
  /** Geometry of the feature. */
@@ -4547,7 +4931,7 @@ export declare type RouteDetailsLegFeatureProperties = {
4547
4931
  /** External ID of the station. */
4548
4932
  external_station_id?: Maybe<Scalars["ID"]>;
4549
4933
  /** Temperature at the location. */
4550
- temperature?: Maybe<Scalars["Float"]>;
4934
+ temperature?: Maybe<Scalars["Int"]>;
4551
4935
  /** Air pressure at the location. */
4552
4936
  air_pressure?: Maybe<Scalars["Float"]>;
4553
4937
  /** Solar irradiance at the location. */
@@ -4556,7 +4940,7 @@ export declare type RouteDetailsLegFeatureProperties = {
4556
4940
  duration?: Maybe<Scalars["Int"]>;
4557
4941
  /** Number of occupants present in the vehicle. */
4558
4942
  occupants?: Maybe<Scalars["Int"]>;
4559
- /** Value of the current weight of the occupants. */
4943
+ /** Value of the combined weight of the occupants. */
4560
4944
  total_occupant_weight?: Maybe<Scalars["Float"]>;
4561
4945
  /** Value of the current weight of the cargo. */
4562
4946
  total_cargo_weight?: Maybe<Scalars["Float"]>;
@@ -4614,18 +4998,20 @@ export declare type RouteDetailsLegSection = {
4614
4998
  polyline?: Maybe<Scalars["String"]>;
4615
4999
  /** Distance from the start to the end of a section. */
4616
5000
  distance: Scalars["Float"];
4617
- /** Total drive time from the start to the end of a section, in seconds. */
5001
+ /** Total duration of a section, in seconds. The value will be 0 for walking sections. */
4618
5002
  duration: Scalars["Float"];
4619
- /** Total energy used in a section in kilowatt-hours. */
5003
+ /** Total energy used in a section in kilowatt-hours. The value will be 0 for walking sections. */
4620
5004
  consumption: Scalars["Float"];
4621
5005
  };
4622
5006
  export declare type RouteDetailsLegSectionpolylineArgs = {
4623
- decimals: PolylineInputDecimals;
5007
+ decimals?: Maybe<PolylineInputDecimals>;
4624
5008
  };
4625
5009
  export declare type RouteDetailsLegSectiondistanceArgs = {
4626
5010
  unit?: Maybe<DistanceUnit>;
4627
5011
  };
4628
5012
  export declare type RouteDetailsLegSectionFeaturePoint = {
5013
+ /** ID of the feature. */
5014
+ id?: Maybe<Scalars["ID"]>;
4629
5015
  /** Feature type. */
4630
5016
  type: FeatureType;
4631
5017
  /** Geometry of the feature. */
@@ -4636,7 +5022,7 @@ export declare type RouteDetailsLegSectionFeaturePoint = {
4636
5022
  export declare type RouteDetailsLegSectionFeaturePointProperties = {
4637
5023
  /** Number of occupants present in the vehicle. */
4638
5024
  occupants: Scalars["Int"];
4639
- /** Value of the current weight of the occupants. */
5025
+ /** Value of the combined weight of the occupants. */
4640
5026
  total_occupant_weight?: Maybe<Scalars["Float"]>;
4641
5027
  /** Value of the current weight of the cargo. */
4642
5028
  total_cargo_weight?: Maybe<Scalars["Float"]>;
@@ -4656,18 +5042,10 @@ export declare enum RouteDetailsLegSectionType {
4656
5042
  export declare type RouteDetailsLegStation = {
4657
5043
  /** ID of a station. */
4658
5044
  station_id: Scalars["ID"];
4659
- /** Name of a station. */
4660
- station_name?: Maybe<Scalars["String"]>;
4661
- /** ID of an operator. */
4662
- operator_id: Scalars["ID"];
4663
- /** Name of an operator. */
4664
- operator_name?: Maybe<Scalars["String"]>;
4665
5045
  /** ID of the EVSE that was selected in a route. */
4666
- evse_uid?: Maybe<Scalars["ID"]>;
5046
+ evse_id?: Maybe<Scalars["ID"]>;
4667
5047
  /** ID of the connector that was selected in a route. */
4668
- connector_id?: Maybe<Scalars["ID"]>;
4669
- /** List of amenities present at the station. */
4670
- amenities?: Maybe<Array<AmenityType>>;
5048
+ connector_id: Scalars["ID"];
4671
5049
  };
4672
5050
  /** Type of a leg. */
4673
5051
  export declare enum RouteDetailsLegType {
@@ -4682,7 +5060,7 @@ export declare type RouteDetailsManeuver = {
4682
5060
  /** Type of instruction. */
4683
5061
  type: RouteDetailsLegManeuverType;
4684
5062
  /** Location of the maneuver. */
4685
- location?: Maybe<RouteDetailsLegFeaturePoint>;
5063
+ location?: Maybe<RouteDetailsLegSectionFeaturePoint>;
4686
5064
  /** Name of the street on which an instruction is. */
4687
5065
  name?: Maybe<Scalars["String"]>;
4688
5066
  /** Distance, in meters, of a route instruction. */
@@ -4715,7 +5093,7 @@ export declare type RouteDetailsPathSegment = {
4715
5093
  /** State of charge, in kilowatt hours, of a route path segment. */
4716
5094
  state_of_charge?: Maybe<Scalars["Float"]>;
4717
5095
  /** Maximum vehicle speed of a route path segment. */
4718
- max_speed: Scalars["Float"];
5096
+ maximum_speed: Scalars["Float"];
4719
5097
  };
4720
5098
  export declare type RouteDetailsPathSegmentelevationArgs = {
4721
5099
  unit?: Maybe<DistanceUnit>;
@@ -4729,7 +5107,7 @@ export declare type RouteDetailsPathSegmentdistanceArgs = {
4729
5107
  export declare type RouteDetailsPathSegmentstate_of_chargeArgs = {
4730
5108
  unit?: Maybe<StateOfChargeUnit>;
4731
5109
  };
4732
- export declare type RouteDetailsPathSegmentmax_speedArgs = {
5110
+ export declare type RouteDetailsPathSegmentmaximum_speedArgs = {
4733
5111
  unit?: Maybe<SpeedUnit>;
4734
5112
  };
4735
5113
  /** Money saving information. */
@@ -4737,9 +5115,21 @@ export declare type RouteDetailsSavings = {
4737
5115
  /** Money saved by a user driving this route with an electric vehicle. */
4738
5116
  money?: Maybe<Scalars["Float"]>;
4739
5117
  /** Average gas price with which the calculation was made. */
4740
- average_gas_price?: Maybe<Scalars["Float"]>;
5118
+ average_gas_price: Scalars["Float"];
4741
5119
  /** Average energy price with which the calculation was made. */
4742
- average_energy_price?: Maybe<Scalars["Float"]>;
5120
+ average_energy_price: Scalars["Float"];
5121
+ };
5122
+ /** Money saving information. */
5123
+ export declare type RouteDetailsSavingsmoneyArgs = {
5124
+ currency?: Maybe<Currency>;
5125
+ };
5126
+ /** Money saving information. */
5127
+ export declare type RouteDetailsSavingsaverage_gas_priceArgs = {
5128
+ currency?: Maybe<Currency>;
5129
+ };
5130
+ /** Money saving information. */
5131
+ export declare type RouteDetailsSavingsaverage_energy_priceArgs = {
5132
+ currency?: Maybe<Currency>;
4743
5133
  };
4744
5134
  /** Tags of a route. */
4745
5135
  export declare enum RouteDetailsTag {
@@ -4750,12 +5140,6 @@ export declare enum RouteDetailsTag {
4750
5140
  WALKING = "walking",
4751
5141
  CROSSBORDER = "crossborder"
4752
5142
  }
4753
- /** Types of a route. */
4754
- export declare enum RouteDetailsType {
4755
- FASTEST = "fastest",
4756
- BEST_MATCHING = "best_matching",
4757
- ALTERNATIVE = "alternative"
4758
- }
4759
5143
  export declare type RouteEmbeddedEmissions = {
4760
5144
  /** Total embedded emissions. */
4761
5145
  total: Scalars["Float"];
@@ -4852,7 +5236,7 @@ export declare type RouteEndOfLifeEmissions = {
4852
5236
  /** Total end of life emissions. */
4853
5237
  total: Scalars["Float"];
4854
5238
  /** Fluid related end of life emissions. */
4855
- fluids: FluidEmissions;
5239
+ fluids: FluidEndOfLifeEmissions;
4856
5240
  /** Battery related end of life emissions. */
4857
5241
  battery: Scalars["Float"];
4858
5242
  /** Tire related end of life emissions. */
@@ -5397,36 +5781,36 @@ export declare type RouteOperationalInfrastructureEmissionsmaintenanceArgs = {
5397
5781
  };
5398
5782
  export declare type RouteOperationalMaintenanceEmissions = {
5399
5783
  /** Total maintenance emissions. */
5400
- total: Scalars["Float"];
5784
+ total: RouteOperationalMaintenanceEmissionsField;
5401
5785
  /** Fluid related maintenance emissions. */
5402
- fluids: FluidEmissions;
5786
+ fluids: FluidMaintenanceEmissions;
5403
5787
  /** Battery related maintenance emissions. */
5404
- battery: Scalars["Float"];
5788
+ battery: RouteOperationalMaintenanceEmissionsField;
5405
5789
  /** Tire related maintenance emissions. */
5406
- tires: Scalars["Float"];
5790
+ tires: RouteOperationalMaintenanceEmissionsField;
5407
5791
  /** Miscellaneous component maintenance emissions. */
5408
- components: Scalars["Float"];
5792
+ components: RouteOperationalMaintenanceEmissionsField;
5409
5793
  /** Accident repair related maintenance emissions. */
5410
- repair: Scalars["Float"];
5794
+ repair: RouteOperationalMaintenanceEmissionsField;
5411
5795
  };
5412
- export declare type RouteOperationalMaintenanceEmissionstotalArgs = {
5413
- unit?: Maybe<EmissionUnit>;
5414
- };
5415
- export declare type RouteOperationalMaintenanceEmissionsbatteryArgs = {
5416
- unit?: Maybe<EmissionUnit>;
5796
+ export declare type RouteOperationalMaintenanceEmissionsField = {
5797
+ /** Total emissions. */
5798
+ total: Scalars["Float"];
5799
+ /** Emissions from replacement production and transport. */
5800
+ production: Scalars["Float"];
5801
+ /** Emissions from disposal. */
5802
+ disposal: Scalars["Float"];
5417
5803
  };
5418
- export declare type RouteOperationalMaintenanceEmissionstiresArgs = {
5804
+ export declare type RouteOperationalMaintenanceEmissionsFieldtotalArgs = {
5419
5805
  unit?: Maybe<EmissionUnit>;
5420
5806
  };
5421
- export declare type RouteOperationalMaintenanceEmissionscomponentsArgs = {
5807
+ export declare type RouteOperationalMaintenanceEmissionsFieldproductionArgs = {
5422
5808
  unit?: Maybe<EmissionUnit>;
5423
5809
  };
5424
- export declare type RouteOperationalMaintenanceEmissionsrepairArgs = {
5810
+ export declare type RouteOperationalMaintenanceEmissionsFielddisposalArgs = {
5425
5811
  unit?: Maybe<EmissionUnit>;
5426
5812
  };
5427
5813
  export declare type RouteOperatorPreferences = {
5428
- /** Flag indicating if an operator should be preferred or required. */
5429
- type?: Maybe<RouteOperatorsType>;
5430
5814
  /** Ranking of an operator with multiple levels, each level having its own penalty value. */
5431
5815
  ranking?: Maybe<RouteOperatorPreferencesRanking>;
5432
5816
  /** Route operators that should be excluded. */
@@ -5434,56 +5818,38 @@ export declare type RouteOperatorPreferences = {
5434
5818
  };
5435
5819
  /** Prioritized operators for a route calculation. */
5436
5820
  export declare type RouteOperatorPreferencesInput = {
5437
- /** Flag indicating if the operators ranking should be preferred or required. */
5438
- type: RouteOperatorsType;
5439
5821
  /** Ranking of an operator with multiple levels, each level having its own penalty value. */
5440
5822
  ranking?: Maybe<RouteOperatorPreferencesRankingInput>;
5441
5823
  /** Route operators that should be excluded. */
5442
5824
  exclude?: Maybe<Array<RouteOperatorsValueInput>>;
5443
5825
  };
5444
5826
  export declare type RouteOperatorPreferencesRanking = {
5445
- /** Level one (most significant) for operator ranking. */
5446
- level_one?: Maybe<Array<RouteOperatorsValue>>;
5447
- /** Level two for operator ranking. */
5448
- level_two?: Maybe<Array<RouteOperatorsValue>>;
5449
- /** Level three for operator ranking. */
5450
- level_three?: Maybe<Array<RouteOperatorsValue>>;
5451
- /** Level four for operator ranking. */
5452
- level_four?: Maybe<Array<RouteOperatorsValue>>;
5453
- /** Level five for operator ranking. */
5454
- level_five?: Maybe<Array<RouteOperatorsValue>>;
5455
- /** Level six for operator ranking. */
5456
- level_six?: Maybe<Array<RouteOperatorsValue>>;
5457
- /** Level seven for operator ranking. */
5458
- level_seven?: Maybe<Array<RouteOperatorsValue>>;
5459
- /** Level eight for operator ranking. */
5460
- level_eight?: Maybe<Array<RouteOperatorsValue>>;
5461
- /** Level nine for operator ranking. */
5462
- level_nine?: Maybe<Array<RouteOperatorsValue>>;
5463
- /** Level ten for operator ranking. */
5464
- level_ten?: Maybe<Array<RouteOperatorsValue>>;
5827
+ /** Flag indicating if an operator should be preferred or required. */
5828
+ type: RouteOperatorsType;
5829
+ /** Ranking levels for operator ranking. */
5830
+ levels?: Maybe<RouteOperatorPreferencesRankingLevels>;
5465
5831
  };
5466
5832
  export declare type RouteOperatorPreferencesRankingInput = {
5467
- /** Level one (most significant) for operator ranking. */
5468
- level_one?: Maybe<Array<RouteOperatorsValueInput>>;
5469
- /** Level two for operator ranking. */
5470
- level_two?: Maybe<Array<RouteOperatorsValueInput>>;
5471
- /** Level three for operator ranking. */
5472
- level_three?: Maybe<Array<RouteOperatorsValueInput>>;
5473
- /** Level four for operator ranking. */
5474
- level_four?: Maybe<Array<RouteOperatorsValueInput>>;
5475
- /** Level five for operator ranking. */
5476
- level_five?: Maybe<Array<RouteOperatorsValueInput>>;
5477
- /** Level six for operator ranking. */
5478
- level_six?: Maybe<Array<RouteOperatorsValueInput>>;
5479
- /** Level seven for operator ranking. */
5480
- level_seven?: Maybe<Array<RouteOperatorsValueInput>>;
5481
- /** Level eight for operator ranking. */
5482
- level_eight?: Maybe<Array<RouteOperatorsValueInput>>;
5483
- /** Level nine for operator ranking. */
5484
- level_nine?: Maybe<Array<RouteOperatorsValueInput>>;
5485
- /** Level ten (least significant) for operator ranking. */
5486
- level_ten?: Maybe<Array<RouteOperatorsValueInput>>;
5833
+ /** Flag indicating if the operators ranking should be preferred or required. */
5834
+ type: RouteOperatorsType;
5835
+ /** Ranking levels for operator ranking. */
5836
+ levels?: Maybe<RouteOperatorPreferencesRankingLevelsInput>;
5837
+ };
5838
+ export declare type RouteOperatorPreferencesRankingLevels = {
5839
+ /** Least significant level for operators ranking. */
5840
+ low?: Maybe<Array<RouteOperatorsValue>>;
5841
+ /** Medium level for operators ranking. */
5842
+ medium?: Maybe<Array<RouteOperatorsValue>>;
5843
+ /** Most significant level for operator ranking. */
5844
+ high?: Maybe<Array<RouteOperatorsValue>>;
5845
+ };
5846
+ export declare type RouteOperatorPreferencesRankingLevelsInput = {
5847
+ /** Least significant level for operator ranking. */
5848
+ low?: Maybe<Array<RouteOperatorsValueInput>>;
5849
+ /** Medium level for operator ranking. */
5850
+ medium?: Maybe<Array<RouteOperatorsValueInput>>;
5851
+ /** Most significant level three for operator ranking. */
5852
+ high?: Maybe<Array<RouteOperatorsValueInput>>;
5487
5853
  };
5488
5854
  /** Prioritized operators for a route calculation. */
5489
5855
  export declare type RouteOperators = {
@@ -5561,16 +5927,18 @@ export declare enum RouteOperatorsType {
5561
5927
  export declare type RouteOperatorsValue = {
5562
5928
  /** ID of an operator. */
5563
5929
  id: Scalars["ID"];
5564
- /** List of country codes. */
5930
+ /** List of countries in which the operator should be preferred/excluded. When omitted the operator will be preferred/excluded in every country. */
5565
5931
  countries?: Maybe<Array<CountryCodeAlpha2>>;
5566
5932
  };
5567
5933
  export declare type RouteOperatorsValueInput = {
5568
5934
  /** ID of an operator. */
5569
5935
  id: Scalars["ID"];
5570
- /** List of countries in which the operator should be excluded. When not specified the operator will be excluded in every country. */
5571
- countries: Array<CountryCodeAlpha2>;
5936
+ /** List of countries in which the operator should be preferred/excluded. When omitted the operator will be preferred/excluded in every country. */
5937
+ countries?: Maybe<Array<CountryCodeAlpha2>>;
5572
5938
  };
5573
5939
  export declare type RouteOriginFeaturePoint = {
5940
+ /** ID of the feature. */
5941
+ id?: Maybe<Scalars["ID"]>;
5574
5942
  /** Feature type. */
5575
5943
  type: FeatureType;
5576
5944
  /** Geometry of the feature. */
@@ -5579,6 +5947,8 @@ export declare type RouteOriginFeaturePoint = {
5579
5947
  properties?: Maybe<RouteOriginProperties>;
5580
5948
  };
5581
5949
  export declare type RouteOriginFeaturePointInput = {
5950
+ /** ID of the feature. */
5951
+ id?: Maybe<Scalars["ID"]>;
5582
5952
  /** Feature type. */
5583
5953
  type: FeatureType;
5584
5954
  /** Geometry of the feature. */
@@ -5597,8 +5967,6 @@ export declare type RouteOriginPropertiesInput = {
5597
5967
  location?: Maybe<RoutePropertiesLocationInput>;
5598
5968
  /** Vehicle data at the origin location. */
5599
5969
  vehicle?: Maybe<RoutePropertiesVehicleInput>;
5600
- /** Station data at the origin location. */
5601
- station?: Maybe<RoutePropertiesStationInput>;
5602
5970
  };
5603
5971
  export declare type RoutePath = {
5604
5972
  /** GeoJSON location of a route path segment. */
@@ -5623,22 +5991,10 @@ export declare type RoutePath = {
5623
5991
  export declare type RoutePropertiesLocation = {
5624
5992
  /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
5625
5993
  name?: Maybe<Scalars["String"]>;
5626
- /** Duration to stay at this point. */
5627
- stop_duration?: Maybe<Scalars["Int"]>;
5628
- /** Temperature. */
5629
- temperature?: Maybe<Scalars["Float"]>;
5630
- /** Air pressure. */
5631
- air_pressure?: Maybe<Scalars["Float"]>;
5632
- /** Solar irradiance. */
5633
- solar_irradiance?: Maybe<Scalars["Float"]>;
5634
- /** Country. */
5635
- country?: Maybe<Array<CountryCodeAlpha2>>;
5636
5994
  };
5637
5995
  export declare type RoutePropertiesLocationInput = {
5638
5996
  /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
5639
5997
  name?: Maybe<Scalars["String"]>;
5640
- /** Duration to stay at this point. */
5641
- stop_duration?: Maybe<Scalars["Int"]>;
5642
5998
  };
5643
5999
  export declare type RoutePropertiesStation = {
5644
6000
  /** ID of the station. When provided and valid, the coordinates of this station will be used. */
@@ -5655,7 +6011,7 @@ export declare type RoutePropertiesStationInput = {
5655
6011
  export declare type RoutePropertiesVehicle = {
5656
6012
  /** Number of occupants present in the vehicle. */
5657
6013
  occupants?: Maybe<Scalars["Int"]>;
5658
- /** Combined weight of the occupants. */
6014
+ /** Combined weight of the occupants. This can only be used in combination with occupants. */
5659
6015
  total_occupant_weight?: Maybe<TotalOccupantWeight>;
5660
6016
  /** Weight of the cargo. */
5661
6017
  total_cargo_weight?: Maybe<TotalCargoWeight>;
@@ -5663,11 +6019,23 @@ export declare type RoutePropertiesVehicle = {
5663
6019
  export declare type RoutePropertiesVehicleInput = {
5664
6020
  /** Number of occupants present in the vehicle. */
5665
6021
  occupants?: Maybe<Scalars["Int"]>;
5666
- /** Combined weight of the occupants. */
6022
+ /** Combined weight of the occupants. This can only be used in combination with occupants. */
5667
6023
  total_occupant_weight?: Maybe<TotalOccupantWeightInput>;
5668
6024
  /** Weight of the cargo. */
5669
6025
  total_cargo_weight?: Maybe<TotalCargoWeightInput>;
5670
6026
  };
6027
+ export declare type RoutePropertiesViaLocation = {
6028
+ /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
6029
+ name?: Maybe<Scalars["String"]>;
6030
+ /** Duration to stay at this point, in seconds. */
6031
+ stop_duration?: Maybe<Scalars["Int"]>;
6032
+ };
6033
+ export declare type RoutePropertiesViaLocationInput = {
6034
+ /** Name that should overwrite the name that is automatically assigned to this location (for example: address or station name). */
6035
+ name?: Maybe<Scalars["String"]>;
6036
+ /** Duration to stay at this point, in seconds. */
6037
+ stop_duration?: Maybe<Scalars["Int"]>;
6038
+ };
5671
6039
  export declare type RouteResponse = {
5672
6040
  /** ID of a route calculation. */
5673
6041
  id: Scalars["ID"];
@@ -5679,8 +6047,6 @@ export declare type RouteResponse = {
5679
6047
  meta: RouteMetadata;
5680
6048
  /** Route request. */
5681
6049
  request_input: CreateRoute;
5682
- /** Region of a route calculation. */
5683
- region: Scalars["String"];
5684
6050
  };
5685
6051
  /** Scheduled charge stop along a route. */
5686
6052
  export declare type RouteScheduledChargeStop = {
@@ -5767,7 +6133,7 @@ export declare type RouteVehicle = {
5767
6133
  /** Average tire pressures of all wheels, starting from the front side (right to left) and then to the rear. */
5768
6134
  tire_pressure?: Maybe<TirePressure>;
5769
6135
  /** Value of the vehicle's odometer. */
5770
- odometer?: Maybe<Scalars["Float"]>;
6136
+ odometer?: Maybe<Odometer>;
5771
6137
  /** Value of the auxiliary power consumption of the vehicle. */
5772
6138
  auxiliary_consumption?: Maybe<AuxiliaryConsumption>;
5773
6139
  /** Flag which indicates if climate control is on. */
@@ -5779,8 +6145,8 @@ export declare type RouteVehicle = {
5779
6145
  /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */
5780
6146
  motor_rpm?: Maybe<Scalars["Int"]>;
5781
6147
  /** Value of the outside temperature. */
5782
- outside_temperature?: Maybe<Temperature>;
5783
- /** Vehicle is in park, neutral or turned off. */
6148
+ outside_temperature?: Maybe<OutsideTemperature>;
6149
+ /** Flag which indicates if vehicle is in park, neutral or turned off. */
5784
6150
  is_parked?: Maybe<Scalars["Boolean"]>;
5785
6151
  /** Value of the vehicle's speed. */
5786
6152
  vehicle_speed?: Maybe<VehicleSpeed>;
@@ -5792,7 +6158,7 @@ export declare type RouteVehicleBattery = {
5792
6158
  capacity: StateOfCharge;
5793
6159
  /** State of charge. */
5794
6160
  state_of_charge: StateOfCharge;
5795
- /** Minimum final battery state of charge. */
6161
+ /** Minimum final battery state of charge. The value should be between 0 and 60% of the battery capacity. */
5796
6162
  final_state_of_charge: StateOfCharge;
5797
6163
  /** Temperature of the battery. */
5798
6164
  temperature?: Maybe<Temperature>;
@@ -5800,9 +6166,9 @@ export declare type RouteVehicleBattery = {
5800
6166
  current?: Maybe<Scalars["Float"]>;
5801
6167
  /** Battery voltage in volts. */
5802
6168
  voltage?: Maybe<Scalars["Float"]>;
5803
- /** Value of the positive or negative power. When negative, the vehicle is charging. */
6169
+ /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */
5804
6170
  power?: Maybe<Scalars["Float"]>;
5805
- /** Indicates if the vehicle is charging. */
6171
+ /** Flag which indicates if the vehicle is charging. */
5806
6172
  is_charging?: Maybe<Scalars["Boolean"]>;
5807
6173
  };
5808
6174
  /** EV battery specific configuration for a create route mutation. */
@@ -5811,17 +6177,17 @@ export declare type RouteVehicleBatteryInput = {
5811
6177
  capacity?: Maybe<StateOfChargeInput>;
5812
6178
  /** Battery state of charge. */
5813
6179
  state_of_charge?: Maybe<StateOfChargeInput>;
5814
- /** Minimum battery state of charge. */
6180
+ /** Minimum final battery state of charge. The value should be between 0 and 60% of the battery capacity. */
5815
6181
  final_state_of_charge?: Maybe<StateOfChargeInput>;
5816
6182
  /** Battery temperature. */
5817
- temperature?: Maybe<BatteryTemperatureInput>;
6183
+ temperature?: Maybe<TemperatureInput>;
5818
6184
  /** Battery current in ampere. */
5819
6185
  current?: Maybe<Scalars["Float"]>;
5820
6186
  /** Battery voltage in volts. */
5821
6187
  voltage?: Maybe<Scalars["Float"]>;
5822
- /** Vehicle power. */
6188
+ /** Value of the positive or negative power, in kWh. When negative, the vehicle is charging. */
5823
6189
  power?: Maybe<Scalars["Float"]>;
5824
- /** Vehicle is currently charging. */
6190
+ /** Flag which indicates if the vehicle is charging. */
5825
6191
  is_charging?: Maybe<Scalars["Boolean"]>;
5826
6192
  };
5827
6193
  export declare type RouteVehicleCabin = {
@@ -5832,15 +6198,15 @@ export declare type RouteVehicleCabin = {
5832
6198
  };
5833
6199
  export declare type RouteVehicleCabinInput = {
5834
6200
  /** Flag which indicates if the vehicle cabin was preconditioned for the desired temperature. */
5835
- is_preconditioned?: Scalars["Boolean"];
6201
+ is_preconditioned?: Maybe<Scalars["Boolean"]>;
5836
6202
  /** Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit. */
5837
- desired_temperature: TemperatureInput;
6203
+ desired_temperature?: Maybe<TemperatureInput>;
5838
6204
  };
5839
6205
  export declare type RouteVehicleCharging = {
5840
6206
  /** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
5841
6207
  mode: ChargeMode;
5842
- /** Minimum desired power of chargers. */
5843
- minimum_power: Scalars["Int"];
6208
+ /** Minimum desired power of chargers, in kWh. */
6209
+ minimum_power: Scalars["Float"];
5844
6210
  /** Percentage for the minimum limit of the battery's capacity before a recharge. The value should be between 0 and 60. Defaults to 10. */
5845
6211
  risk_margin: Scalars["Int"];
5846
6212
  /** Supported connectors. */
@@ -5852,18 +6218,18 @@ export declare type RouteVehicleChargingConnector = {
5852
6218
  /** Type of the plug. */
5853
6219
  standard: ConnectorType;
5854
6220
  /** Maximum charging speed for the plug. */
5855
- max_charge_speed: ChargeSpeed;
6221
+ maximum_charge_speed: ChargeSpeed;
5856
6222
  };
5857
6223
  export declare type RouteVehicleChargingConnectorInput = {
5858
6224
  /** Plug type. */
5859
6225
  standard: ConnectorType;
5860
6226
  /** Maximum charging speed for this plug. */
5861
- max_charge_speed: ChargeSpeedInput;
6227
+ maximum_charge_speed: ChargeSpeedInput;
5862
6228
  };
5863
6229
  export declare type RouteVehicleChargingInput = {
5864
6230
  /** Mode that indicates if the charging time is optimized or if always charged to the maximum capacity. */
5865
6231
  mode?: Maybe<ChargeMode>;
5866
- /** Minimum desired power of chargers. */
6232
+ /** Minimum desired power of chargers, in kWh. */
5867
6233
  minimum_power?: Maybe<Scalars["Float"]>;
5868
6234
  /** Percentage representing the minimum value of the state of charge at a next charge stop. The value should be between 0 and 60. */
5869
6235
  risk_margin?: Maybe<Scalars["Int"]>;
@@ -5912,9 +6278,11 @@ export declare type RouteVehicleInput = {
5912
6278
  heat_pump?: Maybe<HeatPumpMode>;
5913
6279
  /** Vehicle cabin configuration for creating the route. */
5914
6280
  cabin?: Maybe<RouteVehicleCabinInput>;
6281
+ /** Revolutions per minute of the motor, a measure of the rotational speed of the motor's rotor component. */
6282
+ motor_rpm?: Maybe<Scalars["Int"]>;
5915
6283
  /** Outside temperature. */
5916
6284
  outside_temperature?: Maybe<OutsideTemperatureInput>;
5917
- /** Vehicle is in park, neutral or turned off. */
6285
+ /** Flag which indicates if vehicle is in park, neutral or turned off. */
5918
6286
  is_parked?: Maybe<Scalars["Boolean"]>;
5919
6287
  /** Vehicle speed. */
5920
6288
  vehicle_speed?: Maybe<VehicleSpeedInput>;
@@ -5966,6 +6334,8 @@ export declare type RouteVehicleOperationalEmissionstotalArgs = {
5966
6334
  unit?: Maybe<EmissionUnit>;
5967
6335
  };
5968
6336
  export declare type RouteViaFeaturePoint = {
6337
+ /** ID of the feature. */
6338
+ id?: Maybe<Scalars["ID"]>;
5969
6339
  /** Feature type. */
5970
6340
  type: FeatureType;
5971
6341
  /** Geometry of the feature. */
@@ -5974,6 +6344,8 @@ export declare type RouteViaFeaturePoint = {
5974
6344
  properties?: Maybe<RouteViaProperties>;
5975
6345
  };
5976
6346
  export declare type RouteViaFeaturePointInput = {
6347
+ /** ID of the feature. */
6348
+ id?: Maybe<Scalars["ID"]>;
5977
6349
  /** Feature type. */
5978
6350
  type: FeatureType;
5979
6351
  /** Geometry of the feature. */
@@ -5983,19 +6355,19 @@ export declare type RouteViaFeaturePointInput = {
5983
6355
  };
5984
6356
  export declare type RouteViaProperties = {
5985
6357
  /** Location data of the via point. */
5986
- location: RoutePropertiesLocation;
6358
+ location?: Maybe<RoutePropertiesViaLocation>;
5987
6359
  /** Vehicle data of the via point. */
5988
- vehicle: RoutePropertiesVehicle;
6360
+ vehicle?: Maybe<RoutePropertiesVehicle>;
5989
6361
  /** Station data of the via point. */
5990
- station: RoutePropertiesStation;
6362
+ station?: Maybe<RoutePropertiesStation>;
5991
6363
  };
5992
6364
  export declare type RouteViaPropertiesInput = {
5993
6365
  /** Location data of the via point. */
5994
- location: RoutePropertiesLocationInput;
6366
+ location?: Maybe<RoutePropertiesViaLocationInput>;
5995
6367
  /** Vehicle data of the via point. */
5996
- vehicle: RoutePropertiesVehicleInput;
6368
+ vehicle?: Maybe<RoutePropertiesVehicleInput>;
5997
6369
  /** Station data of the via point. */
5998
- station: RoutePropertiesStationInput;
6370
+ station?: Maybe<RoutePropertiesStationInput>;
5999
6371
  };
6000
6372
  /** Scheduled charge stop along a route. */
6001
6373
  export declare type ScheduledChargeStopInput = {
@@ -6042,7 +6414,7 @@ export declare type StateOfChargeInput = {
6042
6414
  /** Type of the state of charge of the vehicle. */
6043
6415
  type: StateOfChargeUnit;
6044
6416
  /** Source of inputted data, defaults to 'manual'. */
6045
- source?: TelemetryInputSource;
6417
+ source?: Maybe<TelemetryInputSource>;
6046
6418
  };
6047
6419
  /** State of charge unit. */
6048
6420
  export declare enum StateOfChargeUnit {
@@ -6133,7 +6505,10 @@ export declare type Station = {
6133
6505
  location_category?: Maybe<Scalars["String"]>;
6134
6506
  /** Coordinates for the location's entrances in decimal degrees. If available, there can be more than one entrances to the location. */
6135
6507
  entrance_for_navigation?: Maybe<Array<OCPIAdditionalGeoLocation>>;
6136
- /** Optional object where you can store custom data you need in your application. This extends the current functionalities we offer. */
6508
+ /**
6509
+ * Optional object where you can store custom data you need in your application. This extends the current functionalities we offer.
6510
+ * @deprecated No longer used.
6511
+ */
6137
6512
  properties?: Maybe<Scalars["JSON"]>;
6138
6513
  /** A flag that indicates if a station has real-time information about the availability of its connectors. */
6139
6514
  realtime?: Maybe<Scalars["Boolean"]>;
@@ -6604,23 +6979,21 @@ export declare enum TelemetryInputSource {
6604
6979
  /** Manually inputted value. */
6605
6980
  MANUAL = "manual",
6606
6981
  /** Value from the vehicle's telemetry. */
6607
- TELEMETRY = "telemetry"
6982
+ TELEMETRY = "telemetry",
6983
+ /** Default value. */
6984
+ DEFAULT = "default"
6608
6985
  }
6609
6986
  export declare type Temperature = {
6610
6987
  /** Value of the temperature. */
6611
6988
  value: Scalars["Float"];
6612
6989
  /** Type of temperature. */
6613
6990
  type: TemperatureUnit;
6614
- /** Source of inputted data. */
6615
- source: TelemetryInputSource;
6616
6991
  };
6617
6992
  export declare type TemperatureInput = {
6618
6993
  /** Value of the temperature. */
6619
6994
  value: Scalars["Float"];
6620
6995
  /** Type of temperature. */
6621
6996
  type: TemperatureUnit;
6622
- /** Source of inputted data. */
6623
- source?: TelemetryInputSource;
6624
6997
  };
6625
6998
  /** Temperature unit. */
6626
6999
  export declare enum TemperatureUnit {
@@ -6643,7 +7016,7 @@ export declare type TirePressureInput = {
6643
7016
  /** Type of the value of pressure. */
6644
7017
  type: PressureUnit;
6645
7018
  /** Source of inputted data, defaults to 'manual'. */
6646
- source?: TelemetryInputSource;
7019
+ source?: Maybe<TelemetryInputSource>;
6647
7020
  };
6648
7021
  export declare enum TorqueUnit {
6649
7022
  /** Return the torque in newton meters. */
@@ -6665,10 +7038,10 @@ export declare type TotalCargoWeightInput = {
6665
7038
  /** Type of the current weight of the cargo. */
6666
7039
  type: WeightUnit;
6667
7040
  /** Source of inputted data, defaults to 'manual'. */
6668
- source?: TelemetryInputSource;
7041
+ source?: Maybe<TelemetryInputSource>;
6669
7042
  };
6670
7043
  export declare type TotalOccupantWeight = {
6671
- /** Value of the current weight of the occupants. */
7044
+ /** Value of the combined weight of the occupants. */
6672
7045
  value: Scalars["Float"];
6673
7046
  /** Type of the current weight of the occupants. */
6674
7047
  type: WeightUnit;
@@ -6676,12 +7049,12 @@ export declare type TotalOccupantWeight = {
6676
7049
  source: TelemetryInputSource;
6677
7050
  };
6678
7051
  export declare type TotalOccupantWeightInput = {
6679
- /** Value of the current weight of the occupants. */
7052
+ /** Value of the combined weight of the occupants. */
6680
7053
  value: Scalars["Float"];
6681
7054
  /** Type of the current weight of the occupants. */
6682
7055
  type: WeightUnit;
6683
7056
  /** Source of inputted data, defaults to 'manual'. */
6684
- source?: TelemetryInputSource;
7057
+ source?: Maybe<TelemetryInputSource>;
6685
7058
  };
6686
7059
  export declare enum TurningCircleUnit {
6687
7060
  /** Return the turning circle in meters. */
@@ -7947,19 +8320,8 @@ export declare type VehicleSpeedInput = {
7947
8320
  /** Type of the vehicle speed. */
7948
8321
  type: SpeedUnit;
7949
8322
  /** Source of inputted data, defaults to 'manual'. */
7950
- source?: TelemetryInputSource;
8323
+ source?: Maybe<TelemetryInputSource>;
7951
8324
  };
7952
- /** Status of a vehicle. */
7953
- export declare enum VehicleStatus {
7954
- /** Is being reviewed by a human operator. */
7955
- DRAFT = "draft",
7956
- /** Is public and can be used by a customer. */
7957
- PUBLIC = "public",
7958
- /** Is private and can be used by a human operator. */
7959
- PRIVATE = "private",
7960
- /** Is archived and can not be used. */
7961
- ARCHIVED = "archived"
7962
- }
7963
8325
  export declare type VehicleToEverything = {
7964
8326
  /** Information about Vehicle-to-Load. */
7965
8327
  vehicle_to_load?: Maybe<VehicleToEverythingLoad>;