@chargetrip/types 1.35.0 → 1.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +5 -4
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +5 -4
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +102 -65
- package/graphql.schema.json +436 -172
- package/package.json +4 -1
- package/src/graphql.ts +106 -65
package/dist/ts/graphql.d.ts
CHANGED
|
@@ -17,8 +17,12 @@ export declare type Scalars = {
|
|
|
17
17
|
Boolean: boolean;
|
|
18
18
|
Int: number;
|
|
19
19
|
Float: number;
|
|
20
|
+
/** Returns 'OK' */
|
|
21
|
+
Acknowledgement: any;
|
|
20
22
|
/** The date and time scalar */
|
|
21
23
|
DateTime: string;
|
|
24
|
+
/** Email address scalar, email regex with HTML sanitization */
|
|
25
|
+
Email: any;
|
|
22
26
|
/** Any JSON object */
|
|
23
27
|
JSON: {
|
|
24
28
|
[key: string]: number | string | boolean | null | Scalars["JSON"];
|
|
@@ -30,8 +34,6 @@ export declare type Scalars = {
|
|
|
30
34
|
PlainString: any;
|
|
31
35
|
/** The File Upload scalar */
|
|
32
36
|
Upload: any;
|
|
33
|
-
/** Returns null */
|
|
34
|
-
Void: any;
|
|
35
37
|
};
|
|
36
38
|
export declare enum AccelerationUnit {
|
|
37
39
|
/** Return the acceleration in seconds to 100 kilometers per hour */
|
|
@@ -469,7 +471,9 @@ export declare enum CarImageType {
|
|
|
469
471
|
/** Full-sized brand (maker) logo at 768x432 px */
|
|
470
472
|
BRAND = "brand",
|
|
471
473
|
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
472
|
-
BRAND_THUMBNAIL = "brand_thumbnail"
|
|
474
|
+
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
475
|
+
/** Placeholder image at 1536x864 px */
|
|
476
|
+
PLACEHOLDER = "placeholder"
|
|
473
477
|
}
|
|
474
478
|
/** When uploading images to a car, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
475
479
|
export declare enum CarImageTypeUploadable {
|
|
@@ -1340,7 +1344,7 @@ export declare type ChargeTotalInput = {
|
|
|
1340
1344
|
/** Value of the temperature of the battery */
|
|
1341
1345
|
value: Scalars["Float"];
|
|
1342
1346
|
/** Type of total charge amount */
|
|
1343
|
-
type:
|
|
1347
|
+
type: StateOfChargeUnit;
|
|
1344
1348
|
/** Source of inputted data, defaults to 'manual' */
|
|
1345
1349
|
source?: Maybe<TelemetryInputSource>;
|
|
1346
1350
|
};
|
|
@@ -1647,22 +1651,18 @@ export declare enum ConnectorType {
|
|
|
1647
1651
|
NEMA_14_50 = "NEMA_14_50"
|
|
1648
1652
|
}
|
|
1649
1653
|
export declare enum ConsumptionUnit {
|
|
1650
|
-
/** Return the consumption in kilometers */
|
|
1651
|
-
KILOMETER = "kilometer",
|
|
1652
|
-
/** Return the consumption in kilowatt hours */
|
|
1653
|
-
KILOWATT_HOUR = "kilowatt_hour",
|
|
1654
1654
|
/** Return the consumption in kilowatt hours per 100 kilometers */
|
|
1655
1655
|
KILOWATT_HOURS_PER_100_KILOMETERS = "kilowatt_hours_per_100_kilometers",
|
|
1656
|
-
/** Return the consumption in kilowatt hours per 100 miles */
|
|
1657
|
-
KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
|
|
1658
1656
|
/** Return the consumption in watt hours per kilometer */
|
|
1659
1657
|
WATT_HOURS_PER_KILOMETER = "watt_hours_per_kilometer",
|
|
1658
|
+
/** Return the consumption in kilometers per kilowatt hour */
|
|
1659
|
+
KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour",
|
|
1660
|
+
/** Return the consumption in kilowatt hours per 100 miles */
|
|
1661
|
+
KILOWATT_HOURS_PER_100_MILES = "kilowatt_hours_per_100_miles",
|
|
1660
1662
|
/** Return the consumption in watt hours per mile */
|
|
1661
1663
|
WATT_HOURS_PER_MILE = "watt_hours_per_mile",
|
|
1662
1664
|
/** Return the consumption in miles per kilowatt hour */
|
|
1663
|
-
MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour"
|
|
1664
|
-
/** Return the consumption in kilometers per kilowatt hour */
|
|
1665
|
-
KILOMETERS_PER_KILOWATT_HOUR = "kilometers_per_kilowatt_hour"
|
|
1665
|
+
MILES_PER_KILOWATT_HOUR = "miles_per_kilowatt_hour"
|
|
1666
1666
|
}
|
|
1667
1667
|
/** The complete contact information */
|
|
1668
1668
|
export declare type Contact = {
|
|
@@ -1955,7 +1955,9 @@ export declare enum CurrencyUnit {
|
|
|
1955
1955
|
/** Return the currency in EUR */
|
|
1956
1956
|
EUR = "EUR",
|
|
1957
1957
|
/** Return the currency in USD */
|
|
1958
|
-
USD = "USD"
|
|
1958
|
+
USD = "USD",
|
|
1959
|
+
/** Return the currency in GBP */
|
|
1960
|
+
GBP = "GBP"
|
|
1959
1961
|
}
|
|
1960
1962
|
export declare enum DistanceUnit {
|
|
1961
1963
|
/** Return the distance in meters */
|
|
@@ -2249,11 +2251,11 @@ export declare type Mutation = {
|
|
|
2249
2251
|
/** [BETA] Start a new navigation session on top of an existing route */
|
|
2250
2252
|
startNavigation?: Maybe<Scalars["ID"]>;
|
|
2251
2253
|
/** [BETA] Update the navigation session */
|
|
2252
|
-
updateNavigation?: Maybe<Scalars["
|
|
2254
|
+
updateNavigation?: Maybe<Scalars["Acknowledgement"]>;
|
|
2253
2255
|
/** [BETA] Recalculate the current navigation route */
|
|
2254
|
-
recalculateNavigation?: Maybe<Scalars["
|
|
2256
|
+
recalculateNavigation?: Maybe<Scalars["Acknowledgement"]>;
|
|
2255
2257
|
/** [BETA] End a navigation session */
|
|
2256
|
-
finishNavigation?: Maybe<Scalars["
|
|
2258
|
+
finishNavigation?: Maybe<Scalars["Acknowledgement"]>;
|
|
2257
2259
|
/**
|
|
2258
2260
|
* Add a new review.
|
|
2259
2261
|
* 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
|
|
@@ -2311,27 +2313,25 @@ export declare type Navigation = {
|
|
|
2311
2313
|
/** ID of the navigation session */
|
|
2312
2314
|
id: Scalars["ID"];
|
|
2313
2315
|
/** The current route used for navigation */
|
|
2314
|
-
route_id
|
|
2316
|
+
route_id: Scalars["ID"];
|
|
2315
2317
|
/** The current route alternative used for navigation */
|
|
2316
|
-
route_alternative_id
|
|
2318
|
+
route_alternative_id: Scalars["ID"];
|
|
2317
2319
|
/** The state of a navigation session. The status can be driving, charging, finished, or error */
|
|
2318
|
-
state
|
|
2320
|
+
state: NavigationState;
|
|
2319
2321
|
/** State of charge at the last known location */
|
|
2320
|
-
state_of_charge
|
|
2322
|
+
state_of_charge: Scalars["Float"];
|
|
2321
2323
|
/** Last known location */
|
|
2322
|
-
last_known_location
|
|
2324
|
+
last_known_location: Point;
|
|
2323
2325
|
/** Next charging station */
|
|
2324
2326
|
next_station?: Maybe<NavigationStation>;
|
|
2325
2327
|
/** A set of alternative charging stations to next station */
|
|
2326
|
-
alternative_stations
|
|
2328
|
+
alternative_stations: Array<NavigationStation>;
|
|
2327
2329
|
/** Navigation instructions */
|
|
2328
2330
|
instructions?: Maybe<Scalars["JSON"]>;
|
|
2329
2331
|
};
|
|
2330
2332
|
/** The navigation session data */
|
|
2331
|
-
export declare type
|
|
2332
|
-
|
|
2333
|
-
language?: Maybe<MappingLanguage>;
|
|
2334
|
-
precision?: Maybe<Scalars["Int"]>;
|
|
2333
|
+
export declare type Navigationstate_of_chargeArgs = {
|
|
2334
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2335
2335
|
};
|
|
2336
2336
|
/** Input for the navigation recalculate */
|
|
2337
2337
|
export declare type NavigationFinishInput = {
|
|
@@ -2340,16 +2340,24 @@ export declare type NavigationFinishInput = {
|
|
|
2340
2340
|
/** Current coordinates */
|
|
2341
2341
|
current_location: PointInput;
|
|
2342
2342
|
};
|
|
2343
|
+
export declare type NavigationInstructionsInput = {
|
|
2344
|
+
/** Turn by turn instructions format for a route */
|
|
2345
|
+
instructions_format: InstructionsFormat;
|
|
2346
|
+
/** Preferred navigation instructions language. Default: en */
|
|
2347
|
+
language?: Maybe<MappingLanguage>;
|
|
2348
|
+
/** Number of decimals used for the Google Polyline encoding Algorithm. Allowed values are 5 or 6, the default is 5 */
|
|
2349
|
+
precision?: Maybe<Scalars["Int"]>;
|
|
2350
|
+
};
|
|
2343
2351
|
/** Input for the navigation recalculate */
|
|
2344
2352
|
export declare type NavigationRecalculateInput = {
|
|
2345
2353
|
/** ID of the navigation session */
|
|
2346
2354
|
id: Scalars["ID"];
|
|
2347
2355
|
/** State of charge at origin */
|
|
2348
|
-
state_of_charge?: Maybe<
|
|
2356
|
+
state_of_charge?: Maybe<StateOfChargeInput>;
|
|
2349
2357
|
/** Origin location of a new route */
|
|
2350
2358
|
current_location: PointInput;
|
|
2351
2359
|
/** Via points of a new route. If this field is not sent, the original via points will be used */
|
|
2352
|
-
via?: Maybe<Array<
|
|
2360
|
+
via?: Maybe<Array<FeaturePointInput>>;
|
|
2353
2361
|
/** Telemetry data input */
|
|
2354
2362
|
telemetry?: Maybe<TelemetryInput>;
|
|
2355
2363
|
};
|
|
@@ -2361,6 +2369,8 @@ export declare type NavigationStartInput = {
|
|
|
2361
2369
|
route_alternative_id?: Maybe<Scalars["ID"]>;
|
|
2362
2370
|
/** Current coordinates */
|
|
2363
2371
|
current_location: PointInput;
|
|
2372
|
+
/** Instruction input format */
|
|
2373
|
+
instructions: NavigationInstructionsInput;
|
|
2364
2374
|
};
|
|
2365
2375
|
/** State of navigation session */
|
|
2366
2376
|
export declare enum NavigationState {
|
|
@@ -2376,17 +2386,21 @@ export declare enum NavigationState {
|
|
|
2376
2386
|
/** Navigation session station type */
|
|
2377
2387
|
export declare type NavigationStation = {
|
|
2378
2388
|
/** The ID as string of the charging station */
|
|
2379
|
-
station_id
|
|
2389
|
+
station_id: Scalars["ID"];
|
|
2380
2390
|
/** GPS location of the charging station */
|
|
2381
|
-
station_location
|
|
2391
|
+
station_location: Point;
|
|
2382
2392
|
/** An array with all GPS locations of via points until the next charging station */
|
|
2383
|
-
via
|
|
2384
|
-
/** Estimated state of charge,
|
|
2385
|
-
estimated_state_of_charge
|
|
2393
|
+
via: Array<Point>;
|
|
2394
|
+
/** Estimated state of charge, at arrival on the next charging station */
|
|
2395
|
+
estimated_state_of_charge: Scalars["Float"];
|
|
2386
2396
|
/** Estimated consumption, in kWh, from last the known location until the next charging station */
|
|
2387
|
-
estimated_consumption
|
|
2397
|
+
estimated_consumption: Scalars["Float"];
|
|
2388
2398
|
/** Estimated duration, in seconds, from the last known location until the next charging station */
|
|
2389
|
-
estimated_duration
|
|
2399
|
+
estimated_duration: Scalars["Int"];
|
|
2400
|
+
};
|
|
2401
|
+
/** Navigation session station type */
|
|
2402
|
+
export declare type NavigationStationestimated_state_of_chargeArgs = {
|
|
2403
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
2390
2404
|
};
|
|
2391
2405
|
/** Input for the navigation update */
|
|
2392
2406
|
export declare type NavigationUpdateInput = {
|
|
@@ -2401,12 +2415,12 @@ export declare type NavigationUpdateInput = {
|
|
|
2401
2415
|
export declare type NavigationUpdateLocationPropertiesInput = {
|
|
2402
2416
|
/** Current route leg index corresponding to a location */
|
|
2403
2417
|
route_leg: Scalars["Int"];
|
|
2404
|
-
/** Speed at a location
|
|
2405
|
-
speed?: Maybe<
|
|
2418
|
+
/** Speed at a location */
|
|
2419
|
+
speed?: Maybe<VehicleSpeedInput>;
|
|
2406
2420
|
/** UNIX timestamp at location, in seconds */
|
|
2407
2421
|
timestamp: Scalars["Int"];
|
|
2408
|
-
/**
|
|
2409
|
-
|
|
2422
|
+
/** Elevation information */
|
|
2423
|
+
elevation?: Maybe<ElevationInput>;
|
|
2410
2424
|
};
|
|
2411
2425
|
/** Input for the navigation update locations */
|
|
2412
2426
|
export declare type NavigationUpdateLocationsInput = {
|
|
@@ -2599,7 +2613,7 @@ export declare type OCPIEnvironmentalImpact = {
|
|
|
2599
2613
|
/** The environmental impact category of this value. */
|
|
2600
2614
|
category?: Maybe<OCPIEnvironmentalImpactCategory>;
|
|
2601
2615
|
/** Amount of this portion in g/kWh. */
|
|
2602
|
-
amount?: Maybe<Scalars["
|
|
2616
|
+
amount?: Maybe<Scalars["Float"]>;
|
|
2603
2617
|
};
|
|
2604
2618
|
/** Categories of environmental impact values. */
|
|
2605
2619
|
export declare enum OCPIEnvironmentalImpactCategory {
|
|
@@ -4059,18 +4073,18 @@ export declare type StateOfChargeInput = {
|
|
|
4059
4073
|
/** Value of the state of charge of the vehicle */
|
|
4060
4074
|
value: Scalars["Float"];
|
|
4061
4075
|
/** Type of the state of charge of the vehicle */
|
|
4062
|
-
type:
|
|
4076
|
+
type: StateOfChargeUnit;
|
|
4063
4077
|
/** Source of inputted data, defaults to 'manual' */
|
|
4064
4078
|
source?: Maybe<TelemetryInputSource>;
|
|
4065
4079
|
};
|
|
4066
4080
|
export declare enum StateOfChargeUnit {
|
|
4067
4081
|
/** Return the state of charge in kilometers */
|
|
4068
4082
|
KILOMETER = "kilometer",
|
|
4069
|
-
/** Return the
|
|
4083
|
+
/** Return the state of charge in miles */
|
|
4070
4084
|
MILE = "mile",
|
|
4071
|
-
/** Return the
|
|
4085
|
+
/** Return the state of charge in kilowatt hours */
|
|
4072
4086
|
KILOWATT_HOUR = "kilowatt_hour",
|
|
4073
|
-
/** Return the
|
|
4087
|
+
/** Return the state of charge as a percentage */
|
|
4074
4088
|
PERCENTAGE = "percentage"
|
|
4075
4089
|
}
|
|
4076
4090
|
/** Station data which extends OCPI Location */
|
|
@@ -4379,7 +4393,7 @@ export declare type Telemetrycharge_speedArgs = {
|
|
|
4379
4393
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
4380
4394
|
};
|
|
4381
4395
|
export declare type Telemetrycharge_totalArgs = {
|
|
4382
|
-
unit?: Maybe<
|
|
4396
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4383
4397
|
};
|
|
4384
4398
|
export declare type Telemetrytotal_occupant_weightArgs = {
|
|
4385
4399
|
unit?: Maybe<WeightUnit>;
|
|
@@ -4400,7 +4414,7 @@ export declare type TelemetrypowerArgs = {
|
|
|
4400
4414
|
unit?: Maybe<PowerUnit>;
|
|
4401
4415
|
};
|
|
4402
4416
|
export declare type Telemetrystate_of_chargeArgs = {
|
|
4403
|
-
unit?: Maybe<
|
|
4417
|
+
unit?: Maybe<StateOfChargeUnit>;
|
|
4404
4418
|
};
|
|
4405
4419
|
export declare type Telemetrytire_pressureArgs = {
|
|
4406
4420
|
unit?: Maybe<PressureUnit>;
|
|
@@ -4599,7 +4613,7 @@ export declare type VehicleBodyWeight = {
|
|
|
4599
4613
|
/** Minimum weight, default in kg */
|
|
4600
4614
|
minimum?: Maybe<Scalars["Float"]>;
|
|
4601
4615
|
/** Nominal weight, default in kg */
|
|
4602
|
-
nominal
|
|
4616
|
+
nominal?: Maybe<Scalars["Float"]>;
|
|
4603
4617
|
/** Maximal weight, default in kg */
|
|
4604
4618
|
maximal?: Maybe<Scalars["Float"]>;
|
|
4605
4619
|
};
|
|
@@ -4705,7 +4719,9 @@ export declare enum VehicleImageType {
|
|
|
4705
4719
|
/** Full-sized brand (maker) logo at 768x432 px */
|
|
4706
4720
|
BRAND = "brand",
|
|
4707
4721
|
/** Thumbnail of a full-sized brand logo at 56x24 px */
|
|
4708
|
-
BRAND_THUMBNAIL = "brand_thumbnail"
|
|
4722
|
+
BRAND_THUMBNAIL = "brand_thumbnail",
|
|
4723
|
+
/** Placeholder image at 1536x864 px */
|
|
4724
|
+
PLACEHOLDER = "placeholder"
|
|
4709
4725
|
}
|
|
4710
4726
|
/** When uploading images to a vehicle, you can select one of this types. The rest of the types are automatically generated by the system */
|
|
4711
4727
|
export declare enum VehicleImageTypeUploadable {
|
|
@@ -4755,9 +4771,9 @@ export declare type VehicleListBody = {
|
|
|
4755
4771
|
};
|
|
4756
4772
|
export declare type VehicleListFilter = {
|
|
4757
4773
|
/** Availability of a vehicle */
|
|
4758
|
-
availability?: Maybe<Array<
|
|
4774
|
+
availability?: Maybe<Array<VehicleAvailabilityStatus>>;
|
|
4759
4775
|
/** Drivetrain type of a vehicle */
|
|
4760
|
-
drivetrain?: Maybe<VehicleDrivetrainType
|
|
4776
|
+
drivetrain?: Maybe<Array<VehicleDrivetrainType>>;
|
|
4761
4777
|
/** Information about vehicle connectivity */
|
|
4762
4778
|
connect?: Maybe<ConnectFilter>;
|
|
4763
4779
|
};
|
|
@@ -4966,7 +4982,7 @@ export declare type VehiclePremiumBody = {
|
|
|
4966
4982
|
/** Segment, listed in local naming convention where applicable */
|
|
4967
4983
|
segment?: Maybe<Scalars["String"]>;
|
|
4968
4984
|
/** Number of seats */
|
|
4969
|
-
seats
|
|
4985
|
+
seats: Scalars["Int"];
|
|
4970
4986
|
/** Indicates whether a vehicle has roof rails as a standard */
|
|
4971
4987
|
has_roofrails?: Maybe<Scalars["Boolean"]>;
|
|
4972
4988
|
/** Turning circle of the vehicle kerb-to-kerb, default in meters */
|
|
@@ -5020,21 +5036,32 @@ export declare type VehiclePremiumBodyturning_circleArgs = {
|
|
|
5020
5036
|
};
|
|
5021
5037
|
export declare type VehiclePremiumCharge = {
|
|
5022
5038
|
/** Information about the main connector */
|
|
5023
|
-
plug?: Maybe<
|
|
5039
|
+
plug?: Maybe<VehiclePremiumChargePlug>;
|
|
5024
5040
|
/** Information about vehicles secondary onboard charger */
|
|
5025
|
-
second_plug?: Maybe<
|
|
5041
|
+
second_plug?: Maybe<VehiclePremiumChargeSecondPlug>;
|
|
5026
5042
|
/** Information about the vehicle standard onboard charger */
|
|
5027
5043
|
standard?: Maybe<VehiclePremiumChargeStandardOBC>;
|
|
5028
5044
|
/** Optional upgrade for the standard onboard charger when available */
|
|
5029
5045
|
option?: Maybe<VehiclePremiumChargeOptionOBC>;
|
|
5046
|
+
/** Alternative upgrade for the standard onboard charger when available */
|
|
5047
|
+
alternative?: Maybe<VehiclePremiumChargeAlternativeOBC>;
|
|
5030
5048
|
};
|
|
5031
|
-
export declare type
|
|
5032
|
-
/**
|
|
5033
|
-
|
|
5034
|
-
/**
|
|
5035
|
-
|
|
5036
|
-
/**
|
|
5037
|
-
|
|
5049
|
+
export declare type VehiclePremiumChargeAlternativeOBC = {
|
|
5050
|
+
/** Maximum power OBC can accept to charge a battery (standard OBC) */
|
|
5051
|
+
power?: Maybe<Scalars["Float"]>;
|
|
5052
|
+
/** Number of phases the OBC accepts to achieve maximum power (standard OBC) */
|
|
5053
|
+
phases?: Maybe<Scalars["Int"]>;
|
|
5054
|
+
/** Maximum current the OBC accepts per phase to achieve maximum power (standard OBC) */
|
|
5055
|
+
phase_amperage?: Maybe<Scalars["Float"]>;
|
|
5056
|
+
/** Minutes needed to charge from 0% to 100% (standard OBC) */
|
|
5057
|
+
charge_time?: Maybe<Scalars["Int"]>;
|
|
5058
|
+
/** Charging speed when charging at maximum power (standard OBC), default in kmph */
|
|
5059
|
+
charge_speed?: Maybe<Scalars["Float"]>;
|
|
5060
|
+
/** Charging details for the standard OBC at several charging points */
|
|
5061
|
+
table?: Maybe<Array<Maybe<VehiclePremiumChargeOBCTable>>>;
|
|
5062
|
+
};
|
|
5063
|
+
export declare type VehiclePremiumChargeAlternativeOBCcharge_speedArgs = {
|
|
5064
|
+
unit?: Maybe<ChargeSpeedUnit>;
|
|
5038
5065
|
};
|
|
5039
5066
|
export declare type VehiclePremiumChargeOBCTable = {
|
|
5040
5067
|
/** Voltage between phase and neutral for this EVSE (phase voltage) */
|
|
@@ -5076,13 +5103,21 @@ export declare type VehiclePremiumChargeOptionOBC = {
|
|
|
5076
5103
|
export declare type VehiclePremiumChargeOptionOBCcharge_speedArgs = {
|
|
5077
5104
|
unit?: Maybe<ChargeSpeedUnit>;
|
|
5078
5105
|
};
|
|
5106
|
+
export declare type VehiclePremiumChargePlug = {
|
|
5107
|
+
/** Type of charge port on vehicle */
|
|
5108
|
+
value?: Maybe<ConnectorType>;
|
|
5109
|
+
/** Indicates if value is an estimate */
|
|
5110
|
+
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5111
|
+
/** Location of charge port */
|
|
5112
|
+
location?: Maybe<Scalars["String"]>;
|
|
5113
|
+
};
|
|
5079
5114
|
export declare type VehiclePremiumChargePower = {
|
|
5080
5115
|
/** Maximum value */
|
|
5081
5116
|
max?: Maybe<Scalars["Float"]>;
|
|
5082
5117
|
/** Average value */
|
|
5083
5118
|
average?: Maybe<Scalars["Float"]>;
|
|
5084
5119
|
};
|
|
5085
|
-
export declare type
|
|
5120
|
+
export declare type VehiclePremiumChargeSecondPlug = {
|
|
5086
5121
|
/** Location of charge port */
|
|
5087
5122
|
location?: Maybe<Scalars["String"]>;
|
|
5088
5123
|
/** Indicates if second charge port is optional */
|
|
@@ -5261,8 +5296,8 @@ export declare type VehiclePremiumEfficiencyWLTPTEHco2Args = {
|
|
|
5261
5296
|
unit?: Maybe<EmissionRateUnit>;
|
|
5262
5297
|
};
|
|
5263
5298
|
export declare type VehiclePremiumFastCharge = {
|
|
5264
|
-
/**
|
|
5265
|
-
|
|
5299
|
+
/** Details about the connector */
|
|
5300
|
+
plug?: Maybe<VehiclePremiumChargePlug>;
|
|
5266
5301
|
/** Power during fast charging from 10% to 80% SoC (optimal conditions, fastest charger) */
|
|
5267
5302
|
power?: Maybe<VehiclePremiumChargePower>;
|
|
5268
5303
|
/** Minutes needed to charge from 10% to 80%, with average charging power (optimal conditions, fastest charger) */
|
|
@@ -5353,8 +5388,10 @@ export declare type VehiclePremiumPrice = {
|
|
|
5353
5388
|
GB?: Maybe<VehiclePremiumPriceValueWithGrant>;
|
|
5354
5389
|
};
|
|
5355
5390
|
export declare type VehiclePremiumPriceValueWithGrant = {
|
|
5356
|
-
/** Starting price for local market
|
|
5391
|
+
/** Starting price for local market expressed in the currency in the field currency */
|
|
5357
5392
|
value?: Maybe<Scalars["Float"]>;
|
|
5393
|
+
/** Currency in which the value without optional field conversion is expressed */
|
|
5394
|
+
currency?: Maybe<CurrencyUnit>;
|
|
5358
5395
|
/** Indicates if price value is based on estimates */
|
|
5359
5396
|
is_estimated?: Maybe<Scalars["Boolean"]>;
|
|
5360
5397
|
/** Grant is applied to value */
|