@chargetrip/types 1.40.0 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +8 -0
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +8 -0
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +107 -13
- package/graphql.schema.json +476 -19
- package/package.json +1 -1
- package/src/graphql.ts +116 -13
package/graphql.schema.json
CHANGED
|
@@ -10738,6 +10738,35 @@
|
|
|
10738
10738
|
"enumValues": null,
|
|
10739
10739
|
"possibleTypes": null
|
|
10740
10740
|
},
|
|
10741
|
+
{
|
|
10742
|
+
"kind": "ENUM",
|
|
10743
|
+
"name": "HeatPumpMode",
|
|
10744
|
+
"description": null,
|
|
10745
|
+
"fields": null,
|
|
10746
|
+
"inputFields": null,
|
|
10747
|
+
"interfaces": null,
|
|
10748
|
+
"enumValues": [
|
|
10749
|
+
{
|
|
10750
|
+
"name": "default",
|
|
10751
|
+
"description": "Default to the vehicle configuration.",
|
|
10752
|
+
"isDeprecated": false,
|
|
10753
|
+
"deprecationReason": null
|
|
10754
|
+
},
|
|
10755
|
+
{
|
|
10756
|
+
"name": "installed",
|
|
10757
|
+
"description": "Vehicle has it installed.",
|
|
10758
|
+
"isDeprecated": false,
|
|
10759
|
+
"deprecationReason": null
|
|
10760
|
+
},
|
|
10761
|
+
{
|
|
10762
|
+
"name": "none",
|
|
10763
|
+
"description": "Vehicle doesn't have it installed.",
|
|
10764
|
+
"isDeprecated": false,
|
|
10765
|
+
"deprecationReason": null
|
|
10766
|
+
}
|
|
10767
|
+
],
|
|
10768
|
+
"possibleTypes": null
|
|
10769
|
+
},
|
|
10741
10770
|
{
|
|
10742
10771
|
"kind": "ENUM",
|
|
10743
10772
|
"name": "HeavyVehiclesEUType",
|
|
@@ -10918,6 +10947,89 @@
|
|
|
10918
10947
|
"enumValues": null,
|
|
10919
10948
|
"possibleTypes": null
|
|
10920
10949
|
},
|
|
10950
|
+
{
|
|
10951
|
+
"kind": "OBJECT",
|
|
10952
|
+
"name": "IsolineCabin",
|
|
10953
|
+
"description": null,
|
|
10954
|
+
"fields": [
|
|
10955
|
+
{
|
|
10956
|
+
"name": "is_preconditioned",
|
|
10957
|
+
"description": "Flag which indicate if the vehicle cabin was preconditioned for the desired temperature.",
|
|
10958
|
+
"args": [],
|
|
10959
|
+
"type": {
|
|
10960
|
+
"kind": "SCALAR",
|
|
10961
|
+
"name": "Boolean",
|
|
10962
|
+
"ofType": null
|
|
10963
|
+
},
|
|
10964
|
+
"isDeprecated": false,
|
|
10965
|
+
"deprecationReason": null
|
|
10966
|
+
},
|
|
10967
|
+
{
|
|
10968
|
+
"name": "desired_temperature",
|
|
10969
|
+
"description": "Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit.",
|
|
10970
|
+
"args": [
|
|
10971
|
+
{
|
|
10972
|
+
"name": "unit",
|
|
10973
|
+
"description": "Type of temperature, defaults to 'Celsius'.",
|
|
10974
|
+
"type": {
|
|
10975
|
+
"kind": "ENUM",
|
|
10976
|
+
"name": "TemperatureUnit",
|
|
10977
|
+
"ofType": null
|
|
10978
|
+
},
|
|
10979
|
+
"defaultValue": "Celsius",
|
|
10980
|
+
"isDeprecated": false,
|
|
10981
|
+
"deprecationReason": null
|
|
10982
|
+
}
|
|
10983
|
+
],
|
|
10984
|
+
"type": {
|
|
10985
|
+
"kind": "SCALAR",
|
|
10986
|
+
"name": "Float",
|
|
10987
|
+
"ofType": null
|
|
10988
|
+
},
|
|
10989
|
+
"isDeprecated": false,
|
|
10990
|
+
"deprecationReason": null
|
|
10991
|
+
}
|
|
10992
|
+
],
|
|
10993
|
+
"inputFields": null,
|
|
10994
|
+
"interfaces": [],
|
|
10995
|
+
"enumValues": null,
|
|
10996
|
+
"possibleTypes": null
|
|
10997
|
+
},
|
|
10998
|
+
{
|
|
10999
|
+
"kind": "INPUT_OBJECT",
|
|
11000
|
+
"name": "IsolineCabinInput",
|
|
11001
|
+
"description": "Information about the cabin of the vehicle.",
|
|
11002
|
+
"fields": null,
|
|
11003
|
+
"inputFields": [
|
|
11004
|
+
{
|
|
11005
|
+
"name": "is_preconditioned",
|
|
11006
|
+
"description": "Flag which indicate if the vehicle cabin was preconditioned for the desired temperature.",
|
|
11007
|
+
"type": {
|
|
11008
|
+
"kind": "SCALAR",
|
|
11009
|
+
"name": "Boolean",
|
|
11010
|
+
"ofType": null
|
|
11011
|
+
},
|
|
11012
|
+
"defaultValue": "false",
|
|
11013
|
+
"isDeprecated": false,
|
|
11014
|
+
"deprecationReason": null
|
|
11015
|
+
},
|
|
11016
|
+
{
|
|
11017
|
+
"name": "desired_temperature",
|
|
11018
|
+
"description": "Desired temperature inside the cabin. Default is 20 degrees Celsius or 68 degrees Fahrenheit.",
|
|
11019
|
+
"type": {
|
|
11020
|
+
"kind": "INPUT_OBJECT",
|
|
11021
|
+
"name": "TemperatureInput",
|
|
11022
|
+
"ofType": null
|
|
11023
|
+
},
|
|
11024
|
+
"defaultValue": null,
|
|
11025
|
+
"isDeprecated": false,
|
|
11026
|
+
"deprecationReason": null
|
|
11027
|
+
}
|
|
11028
|
+
],
|
|
11029
|
+
"interfaces": null,
|
|
11030
|
+
"enumValues": null,
|
|
11031
|
+
"possibleTypes": null
|
|
11032
|
+
},
|
|
10921
11033
|
{
|
|
10922
11034
|
"kind": "ENUM",
|
|
10923
11035
|
"name": "IsolineFerryConnectionsType",
|
|
@@ -11051,6 +11163,30 @@
|
|
|
11051
11163
|
"isDeprecated": false,
|
|
11052
11164
|
"deprecationReason": null
|
|
11053
11165
|
},
|
|
11166
|
+
{
|
|
11167
|
+
"name": "heat_pump",
|
|
11168
|
+
"description": "Vehicle Heat Pump configuration.",
|
|
11169
|
+
"type": {
|
|
11170
|
+
"kind": "ENUM",
|
|
11171
|
+
"name": "HeatPumpMode",
|
|
11172
|
+
"ofType": null
|
|
11173
|
+
},
|
|
11174
|
+
"defaultValue": "default",
|
|
11175
|
+
"isDeprecated": false,
|
|
11176
|
+
"deprecationReason": null
|
|
11177
|
+
},
|
|
11178
|
+
{
|
|
11179
|
+
"name": "cabin",
|
|
11180
|
+
"description": "Vehicle cabin configuration.",
|
|
11181
|
+
"type": {
|
|
11182
|
+
"kind": "INPUT_OBJECT",
|
|
11183
|
+
"name": "IsolineCabinInput",
|
|
11184
|
+
"ofType": null
|
|
11185
|
+
},
|
|
11186
|
+
"defaultValue": null,
|
|
11187
|
+
"isDeprecated": false,
|
|
11188
|
+
"deprecationReason": null
|
|
11189
|
+
},
|
|
11054
11190
|
{
|
|
11055
11191
|
"name": "season",
|
|
11056
11192
|
"description": "Season to be taken into account when generating the isoline.",
|
|
@@ -11274,6 +11410,30 @@
|
|
|
11274
11410
|
"isDeprecated": false,
|
|
11275
11411
|
"deprecationReason": null
|
|
11276
11412
|
},
|
|
11413
|
+
{
|
|
11414
|
+
"name": "heat_pump",
|
|
11415
|
+
"description": "Vehicle Heat Pump configuration.",
|
|
11416
|
+
"args": [],
|
|
11417
|
+
"type": {
|
|
11418
|
+
"kind": "ENUM",
|
|
11419
|
+
"name": "HeatPumpMode",
|
|
11420
|
+
"ofType": null
|
|
11421
|
+
},
|
|
11422
|
+
"isDeprecated": false,
|
|
11423
|
+
"deprecationReason": null
|
|
11424
|
+
},
|
|
11425
|
+
{
|
|
11426
|
+
"name": "cabin",
|
|
11427
|
+
"description": "Vehicle cabin configuration.",
|
|
11428
|
+
"args": [],
|
|
11429
|
+
"type": {
|
|
11430
|
+
"kind": "OBJECT",
|
|
11431
|
+
"name": "IsolineCabin",
|
|
11432
|
+
"ofType": null
|
|
11433
|
+
},
|
|
11434
|
+
"isDeprecated": false,
|
|
11435
|
+
"deprecationReason": null
|
|
11436
|
+
},
|
|
11277
11437
|
{
|
|
11278
11438
|
"name": "season",
|
|
11279
11439
|
"description": "Season taken into account when isoline was generated.",
|
|
@@ -17779,6 +17939,30 @@
|
|
|
17779
17939
|
"isDeprecated": false,
|
|
17780
17940
|
"deprecationReason": null
|
|
17781
17941
|
},
|
|
17942
|
+
{
|
|
17943
|
+
"name": "heatPump",
|
|
17944
|
+
"description": "Vehicle Heat Pump configuration.",
|
|
17945
|
+
"args": [],
|
|
17946
|
+
"type": {
|
|
17947
|
+
"kind": "ENUM",
|
|
17948
|
+
"name": "HeatPumpMode",
|
|
17949
|
+
"ofType": null
|
|
17950
|
+
},
|
|
17951
|
+
"isDeprecated": false,
|
|
17952
|
+
"deprecationReason": null
|
|
17953
|
+
},
|
|
17954
|
+
{
|
|
17955
|
+
"name": "cabin",
|
|
17956
|
+
"description": "Vehicle cabin configuration.",
|
|
17957
|
+
"args": [],
|
|
17958
|
+
"type": {
|
|
17959
|
+
"kind": "OBJECT",
|
|
17960
|
+
"name": "RequestEvCabin",
|
|
17961
|
+
"ofType": null
|
|
17962
|
+
},
|
|
17963
|
+
"isDeprecated": false,
|
|
17964
|
+
"deprecationReason": null
|
|
17965
|
+
},
|
|
17782
17966
|
{
|
|
17783
17967
|
"name": "cargo",
|
|
17784
17968
|
"description": "Cargo weight, in kg.",
|
|
@@ -18049,11 +18233,106 @@
|
|
|
18049
18233
|
"enumValues": null,
|
|
18050
18234
|
"possibleTypes": null
|
|
18051
18235
|
},
|
|
18236
|
+
{
|
|
18237
|
+
"kind": "OBJECT",
|
|
18238
|
+
"name": "RequestEvCabin",
|
|
18239
|
+
"description": "Vehicle cabin configuration.",
|
|
18240
|
+
"fields": [
|
|
18241
|
+
{
|
|
18242
|
+
"name": "isPreconditioned",
|
|
18243
|
+
"description": "Flag which indicate if the vehicle cabin was preconditioned for the desired temperature.",
|
|
18244
|
+
"args": [],
|
|
18245
|
+
"type": {
|
|
18246
|
+
"kind": "SCALAR",
|
|
18247
|
+
"name": "Boolean",
|
|
18248
|
+
"ofType": null
|
|
18249
|
+
},
|
|
18250
|
+
"isDeprecated": false,
|
|
18251
|
+
"deprecationReason": null
|
|
18252
|
+
},
|
|
18253
|
+
{
|
|
18254
|
+
"name": "desiredTemperature",
|
|
18255
|
+
"description": "Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit.",
|
|
18256
|
+
"args": [
|
|
18257
|
+
{
|
|
18258
|
+
"name": "unit",
|
|
18259
|
+
"description": "Type of temperature, defaults to 'Celsius'.",
|
|
18260
|
+
"type": {
|
|
18261
|
+
"kind": "ENUM",
|
|
18262
|
+
"name": "TemperatureUnit",
|
|
18263
|
+
"ofType": null
|
|
18264
|
+
},
|
|
18265
|
+
"defaultValue": "Celsius",
|
|
18266
|
+
"isDeprecated": false,
|
|
18267
|
+
"deprecationReason": null
|
|
18268
|
+
}
|
|
18269
|
+
],
|
|
18270
|
+
"type": {
|
|
18271
|
+
"kind": "SCALAR",
|
|
18272
|
+
"name": "Float",
|
|
18273
|
+
"ofType": null
|
|
18274
|
+
},
|
|
18275
|
+
"isDeprecated": false,
|
|
18276
|
+
"deprecationReason": null
|
|
18277
|
+
}
|
|
18278
|
+
],
|
|
18279
|
+
"inputFields": null,
|
|
18280
|
+
"interfaces": [],
|
|
18281
|
+
"enumValues": null,
|
|
18282
|
+
"possibleTypes": null
|
|
18283
|
+
},
|
|
18284
|
+
{
|
|
18285
|
+
"kind": "INPUT_OBJECT",
|
|
18286
|
+
"name": "RequestEvCabinInput",
|
|
18287
|
+
"description": "Vehicle cabin configuration.",
|
|
18288
|
+
"fields": null,
|
|
18289
|
+
"inputFields": [
|
|
18290
|
+
{
|
|
18291
|
+
"name": "isPreconditioned",
|
|
18292
|
+
"description": "Flag which indicate if the vehicle cabin was preconditioned for the desired temperature.",
|
|
18293
|
+
"type": {
|
|
18294
|
+
"kind": "SCALAR",
|
|
18295
|
+
"name": "Boolean",
|
|
18296
|
+
"ofType": null
|
|
18297
|
+
},
|
|
18298
|
+
"defaultValue": "false",
|
|
18299
|
+
"isDeprecated": false,
|
|
18300
|
+
"deprecationReason": null
|
|
18301
|
+
},
|
|
18302
|
+
{
|
|
18303
|
+
"name": "desiredTemperature",
|
|
18304
|
+
"description": "Desired cabin temperature. Default is 20 degrees Celsius or 68 degrees Fahrenheit.",
|
|
18305
|
+
"type": {
|
|
18306
|
+
"kind": "INPUT_OBJECT",
|
|
18307
|
+
"name": "TemperatureInput",
|
|
18308
|
+
"ofType": null
|
|
18309
|
+
},
|
|
18310
|
+
"defaultValue": null,
|
|
18311
|
+
"isDeprecated": false,
|
|
18312
|
+
"deprecationReason": null
|
|
18313
|
+
}
|
|
18314
|
+
],
|
|
18315
|
+
"interfaces": null,
|
|
18316
|
+
"enumValues": null,
|
|
18317
|
+
"possibleTypes": null
|
|
18318
|
+
},
|
|
18052
18319
|
{
|
|
18053
18320
|
"kind": "OBJECT",
|
|
18054
18321
|
"name": "RequestEvConsumption",
|
|
18055
18322
|
"description": null,
|
|
18056
18323
|
"fields": [
|
|
18324
|
+
{
|
|
18325
|
+
"name": "auxiliary",
|
|
18326
|
+
"description": "The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc",
|
|
18327
|
+
"args": [],
|
|
18328
|
+
"type": {
|
|
18329
|
+
"kind": "SCALAR",
|
|
18330
|
+
"name": "Float",
|
|
18331
|
+
"ofType": null
|
|
18332
|
+
},
|
|
18333
|
+
"isDeprecated": false,
|
|
18334
|
+
"deprecationReason": null
|
|
18335
|
+
},
|
|
18057
18336
|
{
|
|
18058
18337
|
"name": "aux",
|
|
18059
18338
|
"description": "Consumption, in kWh, of the auxiliaries.",
|
|
@@ -18063,8 +18342,8 @@
|
|
|
18063
18342
|
"name": "CarConsumption",
|
|
18064
18343
|
"ofType": null
|
|
18065
18344
|
},
|
|
18066
|
-
"isDeprecated":
|
|
18067
|
-
"deprecationReason":
|
|
18345
|
+
"isDeprecated": true,
|
|
18346
|
+
"deprecationReason": "In favor of auxiliary"
|
|
18068
18347
|
},
|
|
18069
18348
|
{
|
|
18070
18349
|
"name": "bms",
|
|
@@ -18075,8 +18354,8 @@
|
|
|
18075
18354
|
"name": "CarConsumption",
|
|
18076
18355
|
"ofType": null
|
|
18077
18356
|
},
|
|
18078
|
-
"isDeprecated":
|
|
18079
|
-
"deprecationReason":
|
|
18357
|
+
"isDeprecated": true,
|
|
18358
|
+
"deprecationReason": "In favor of auxiliary"
|
|
18080
18359
|
},
|
|
18081
18360
|
{
|
|
18082
18361
|
"name": "idle",
|
|
@@ -18087,8 +18366,8 @@
|
|
|
18087
18366
|
"name": "CarConsumption",
|
|
18088
18367
|
"ofType": null
|
|
18089
18368
|
},
|
|
18090
|
-
"isDeprecated":
|
|
18091
|
-
"deprecationReason":
|
|
18369
|
+
"isDeprecated": true,
|
|
18370
|
+
"deprecationReason": "In favor of auxiliary"
|
|
18092
18371
|
}
|
|
18093
18372
|
],
|
|
18094
18373
|
"inputFields": null,
|
|
@@ -18102,9 +18381,21 @@
|
|
|
18102
18381
|
"description": null,
|
|
18103
18382
|
"fields": null,
|
|
18104
18383
|
"inputFields": [
|
|
18384
|
+
{
|
|
18385
|
+
"name": "auxiliary",
|
|
18386
|
+
"description": "The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc.",
|
|
18387
|
+
"type": {
|
|
18388
|
+
"kind": "SCALAR",
|
|
18389
|
+
"name": "Float",
|
|
18390
|
+
"ofType": null
|
|
18391
|
+
},
|
|
18392
|
+
"defaultValue": null,
|
|
18393
|
+
"isDeprecated": false,
|
|
18394
|
+
"deprecationReason": null
|
|
18395
|
+
},
|
|
18105
18396
|
{
|
|
18106
18397
|
"name": "aux",
|
|
18107
|
-
"description": "
|
|
18398
|
+
"description": "Deprecated in favor of auxiliary.",
|
|
18108
18399
|
"type": {
|
|
18109
18400
|
"kind": "INPUT_OBJECT",
|
|
18110
18401
|
"name": "CarConsumptionInput",
|
|
@@ -18116,7 +18407,7 @@
|
|
|
18116
18407
|
},
|
|
18117
18408
|
{
|
|
18118
18409
|
"name": "bms",
|
|
18119
|
-
"description": "
|
|
18410
|
+
"description": "Deprecated in favor of auxiliary.",
|
|
18120
18411
|
"type": {
|
|
18121
18412
|
"kind": "INPUT_OBJECT",
|
|
18122
18413
|
"name": "CarConsumptionInput",
|
|
@@ -18128,7 +18419,7 @@
|
|
|
18128
18419
|
},
|
|
18129
18420
|
{
|
|
18130
18421
|
"name": "idle",
|
|
18131
|
-
"description": "
|
|
18422
|
+
"description": "Deprecated in favor of auxiliary.",
|
|
18132
18423
|
"type": {
|
|
18133
18424
|
"kind": "INPUT_OBJECT",
|
|
18134
18425
|
"name": "CarConsumptionInput",
|
|
@@ -18233,6 +18524,30 @@
|
|
|
18233
18524
|
"isDeprecated": false,
|
|
18234
18525
|
"deprecationReason": null
|
|
18235
18526
|
},
|
|
18527
|
+
{
|
|
18528
|
+
"name": "heatPump",
|
|
18529
|
+
"description": "Vehicle Heat Pump configuration.",
|
|
18530
|
+
"type": {
|
|
18531
|
+
"kind": "ENUM",
|
|
18532
|
+
"name": "HeatPumpMode",
|
|
18533
|
+
"ofType": null
|
|
18534
|
+
},
|
|
18535
|
+
"defaultValue": "default",
|
|
18536
|
+
"isDeprecated": false,
|
|
18537
|
+
"deprecationReason": null
|
|
18538
|
+
},
|
|
18539
|
+
{
|
|
18540
|
+
"name": "cabin",
|
|
18541
|
+
"description": "Vehicle cabin configuration.",
|
|
18542
|
+
"type": {
|
|
18543
|
+
"kind": "INPUT_OBJECT",
|
|
18544
|
+
"name": "RequestEvCabinInput",
|
|
18545
|
+
"ofType": null
|
|
18546
|
+
},
|
|
18547
|
+
"defaultValue": null,
|
|
18548
|
+
"isDeprecated": false,
|
|
18549
|
+
"deprecationReason": null
|
|
18550
|
+
},
|
|
18236
18551
|
{
|
|
18237
18552
|
"name": "occupants",
|
|
18238
18553
|
"description": "Number of occupants.",
|
|
@@ -19619,7 +19934,7 @@
|
|
|
19619
19934
|
},
|
|
19620
19935
|
{
|
|
19621
19936
|
"name": "rangeStart",
|
|
19622
|
-
"description": "
|
|
19937
|
+
"description": "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.",
|
|
19623
19938
|
"args": [],
|
|
19624
19939
|
"type": {
|
|
19625
19940
|
"kind": "SCALAR",
|
|
@@ -19655,7 +19970,7 @@
|
|
|
19655
19970
|
},
|
|
19656
19971
|
{
|
|
19657
19972
|
"name": "rangeEnd",
|
|
19658
|
-
"description": "
|
|
19973
|
+
"description": "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.",
|
|
19659
19974
|
"args": [],
|
|
19660
19975
|
"type": {
|
|
19661
19976
|
"kind": "SCALAR",
|
|
@@ -21576,7 +21891,7 @@
|
|
|
21576
21891
|
},
|
|
21577
21892
|
{
|
|
21578
21893
|
"name": "rangeStart",
|
|
21579
|
-
"description": "
|
|
21894
|
+
"description": "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.",
|
|
21580
21895
|
"args": [],
|
|
21581
21896
|
"type": {
|
|
21582
21897
|
"kind": "SCALAR",
|
|
@@ -21612,7 +21927,7 @@
|
|
|
21612
21927
|
},
|
|
21613
21928
|
{
|
|
21614
21929
|
"name": "rangeEnd",
|
|
21615
|
-
"description": "
|
|
21930
|
+
"description": "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.",
|
|
21616
21931
|
"args": [],
|
|
21617
21932
|
"type": {
|
|
21618
21933
|
"kind": "SCALAR",
|
|
@@ -28099,6 +28414,92 @@
|
|
|
28099
28414
|
],
|
|
28100
28415
|
"possibleTypes": null
|
|
28101
28416
|
},
|
|
28417
|
+
{
|
|
28418
|
+
"kind": "OBJECT",
|
|
28419
|
+
"name": "Temperature",
|
|
28420
|
+
"description": null,
|
|
28421
|
+
"fields": [
|
|
28422
|
+
{
|
|
28423
|
+
"name": "value",
|
|
28424
|
+
"description": "Value of the temperature.",
|
|
28425
|
+
"args": [],
|
|
28426
|
+
"type": {
|
|
28427
|
+
"kind": "NON_NULL",
|
|
28428
|
+
"name": null,
|
|
28429
|
+
"ofType": {
|
|
28430
|
+
"kind": "SCALAR",
|
|
28431
|
+
"name": "Float",
|
|
28432
|
+
"ofType": null
|
|
28433
|
+
}
|
|
28434
|
+
},
|
|
28435
|
+
"isDeprecated": false,
|
|
28436
|
+
"deprecationReason": null
|
|
28437
|
+
},
|
|
28438
|
+
{
|
|
28439
|
+
"name": "type",
|
|
28440
|
+
"description": "Type of temperature.",
|
|
28441
|
+
"args": [],
|
|
28442
|
+
"type": {
|
|
28443
|
+
"kind": "NON_NULL",
|
|
28444
|
+
"name": null,
|
|
28445
|
+
"ofType": {
|
|
28446
|
+
"kind": "ENUM",
|
|
28447
|
+
"name": "TemperatureUnit",
|
|
28448
|
+
"ofType": null
|
|
28449
|
+
}
|
|
28450
|
+
},
|
|
28451
|
+
"isDeprecated": false,
|
|
28452
|
+
"deprecationReason": null
|
|
28453
|
+
}
|
|
28454
|
+
],
|
|
28455
|
+
"inputFields": null,
|
|
28456
|
+
"interfaces": [],
|
|
28457
|
+
"enumValues": null,
|
|
28458
|
+
"possibleTypes": null
|
|
28459
|
+
},
|
|
28460
|
+
{
|
|
28461
|
+
"kind": "INPUT_OBJECT",
|
|
28462
|
+
"name": "TemperatureInput",
|
|
28463
|
+
"description": null,
|
|
28464
|
+
"fields": null,
|
|
28465
|
+
"inputFields": [
|
|
28466
|
+
{
|
|
28467
|
+
"name": "value",
|
|
28468
|
+
"description": "Value of the temperature.",
|
|
28469
|
+
"type": {
|
|
28470
|
+
"kind": "NON_NULL",
|
|
28471
|
+
"name": null,
|
|
28472
|
+
"ofType": {
|
|
28473
|
+
"kind": "SCALAR",
|
|
28474
|
+
"name": "Float",
|
|
28475
|
+
"ofType": null
|
|
28476
|
+
}
|
|
28477
|
+
},
|
|
28478
|
+
"defaultValue": null,
|
|
28479
|
+
"isDeprecated": false,
|
|
28480
|
+
"deprecationReason": null
|
|
28481
|
+
},
|
|
28482
|
+
{
|
|
28483
|
+
"name": "type",
|
|
28484
|
+
"description": "Type of temperature.",
|
|
28485
|
+
"type": {
|
|
28486
|
+
"kind": "NON_NULL",
|
|
28487
|
+
"name": null,
|
|
28488
|
+
"ofType": {
|
|
28489
|
+
"kind": "ENUM",
|
|
28490
|
+
"name": "TemperatureUnit",
|
|
28491
|
+
"ofType": null
|
|
28492
|
+
}
|
|
28493
|
+
},
|
|
28494
|
+
"defaultValue": null,
|
|
28495
|
+
"isDeprecated": false,
|
|
28496
|
+
"deprecationReason": null
|
|
28497
|
+
}
|
|
28498
|
+
],
|
|
28499
|
+
"interfaces": null,
|
|
28500
|
+
"enumValues": null,
|
|
28501
|
+
"possibleTypes": null
|
|
28502
|
+
},
|
|
28102
28503
|
{
|
|
28103
28504
|
"kind": "ENUM",
|
|
28104
28505
|
"name": "TemperatureUnit",
|
|
@@ -34492,6 +34893,18 @@
|
|
|
34492
34893
|
"name": "VehiclePremiumRoutingConsumption",
|
|
34493
34894
|
"description": null,
|
|
34494
34895
|
"fields": [
|
|
34896
|
+
{
|
|
34897
|
+
"name": "auxiliary",
|
|
34898
|
+
"description": "The amount of energy, in kWh, used by the auxiliary systems of the vehicle in a hour, like media box, etc",
|
|
34899
|
+
"args": [],
|
|
34900
|
+
"type": {
|
|
34901
|
+
"kind": "SCALAR",
|
|
34902
|
+
"name": "Float",
|
|
34903
|
+
"ofType": null
|
|
34904
|
+
},
|
|
34905
|
+
"isDeprecated": false,
|
|
34906
|
+
"deprecationReason": null
|
|
34907
|
+
},
|
|
34495
34908
|
{
|
|
34496
34909
|
"name": "aux",
|
|
34497
34910
|
"description": "Consumption, in kWh, of the auxiliaries.",
|
|
@@ -34501,8 +34914,8 @@
|
|
|
34501
34914
|
"name": "VehiclePremiumRoutingConsumptionValue",
|
|
34502
34915
|
"ofType": null
|
|
34503
34916
|
},
|
|
34504
|
-
"isDeprecated":
|
|
34505
|
-
"deprecationReason":
|
|
34917
|
+
"isDeprecated": true,
|
|
34918
|
+
"deprecationReason": "In favor of auxiliary"
|
|
34506
34919
|
},
|
|
34507
34920
|
{
|
|
34508
34921
|
"name": "bms",
|
|
@@ -34513,8 +34926,8 @@
|
|
|
34513
34926
|
"name": "VehiclePremiumRoutingConsumptionValue",
|
|
34514
34927
|
"ofType": null
|
|
34515
34928
|
},
|
|
34516
|
-
"isDeprecated":
|
|
34517
|
-
"deprecationReason":
|
|
34929
|
+
"isDeprecated": true,
|
|
34930
|
+
"deprecationReason": "In favor of auxiliary"
|
|
34518
34931
|
},
|
|
34519
34932
|
{
|
|
34520
34933
|
"name": "idle",
|
|
@@ -34525,8 +34938,8 @@
|
|
|
34525
34938
|
"name": "VehiclePremiumRoutingConsumptionValue",
|
|
34526
34939
|
"ofType": null
|
|
34527
34940
|
},
|
|
34528
|
-
"isDeprecated":
|
|
34529
|
-
"deprecationReason":
|
|
34941
|
+
"isDeprecated": true,
|
|
34942
|
+
"deprecationReason": "In favor of auxiliary"
|
|
34530
34943
|
}
|
|
34531
34944
|
],
|
|
34532
34945
|
"inputFields": null,
|
|
@@ -36451,6 +36864,50 @@
|
|
|
36451
36864
|
}
|
|
36452
36865
|
]
|
|
36453
36866
|
},
|
|
36867
|
+
{
|
|
36868
|
+
"name": "subFieldUnitConvert",
|
|
36869
|
+
"description": null,
|
|
36870
|
+
"isRepeatable": false,
|
|
36871
|
+
"locations": ["FIELD_DEFINITION"],
|
|
36872
|
+
"args": [
|
|
36873
|
+
{
|
|
36874
|
+
"name": "subField",
|
|
36875
|
+
"description": null,
|
|
36876
|
+
"type": {
|
|
36877
|
+
"kind": "SCALAR",
|
|
36878
|
+
"name": "String",
|
|
36879
|
+
"ofType": null
|
|
36880
|
+
},
|
|
36881
|
+
"defaultValue": null,
|
|
36882
|
+
"isDeprecated": false,
|
|
36883
|
+
"deprecationReason": null
|
|
36884
|
+
},
|
|
36885
|
+
{
|
|
36886
|
+
"name": "fromUnit",
|
|
36887
|
+
"description": null,
|
|
36888
|
+
"type": {
|
|
36889
|
+
"kind": "SCALAR",
|
|
36890
|
+
"name": "String",
|
|
36891
|
+
"ofType": null
|
|
36892
|
+
},
|
|
36893
|
+
"defaultValue": null,
|
|
36894
|
+
"isDeprecated": false,
|
|
36895
|
+
"deprecationReason": null
|
|
36896
|
+
},
|
|
36897
|
+
{
|
|
36898
|
+
"name": "unitParameterName",
|
|
36899
|
+
"description": null,
|
|
36900
|
+
"type": {
|
|
36901
|
+
"kind": "SCALAR",
|
|
36902
|
+
"name": "String",
|
|
36903
|
+
"ofType": null
|
|
36904
|
+
},
|
|
36905
|
+
"defaultValue": null,
|
|
36906
|
+
"isDeprecated": false,
|
|
36907
|
+
"deprecationReason": null
|
|
36908
|
+
}
|
|
36909
|
+
]
|
|
36910
|
+
},
|
|
36454
36911
|
{
|
|
36455
36912
|
"name": "unitConvert",
|
|
36456
36913
|
"description": null,
|