@chargetrip/types 1.32.2 → 1.33.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 +248 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +17 -6
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +17 -6
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +82 -26
- package/graphql.schema.json +374 -119
- package/package.json +1 -2
- package/src/graphql.ts +88 -29
package/graphql.schema.json
CHANGED
|
@@ -583,7 +583,7 @@
|
|
|
583
583
|
{
|
|
584
584
|
"kind": "ENUM",
|
|
585
585
|
"name": "BatteryInputType",
|
|
586
|
-
"description": "The type of the
|
|
586
|
+
"description": "The type of the battery value",
|
|
587
587
|
"fields": null,
|
|
588
588
|
"inputFields": null,
|
|
589
589
|
"interfaces": null,
|
|
@@ -6430,9 +6430,33 @@
|
|
|
6430
6430
|
"name": "ConnectBattery",
|
|
6431
6431
|
"description": null,
|
|
6432
6432
|
"fields": [
|
|
6433
|
+
{
|
|
6434
|
+
"name": "range",
|
|
6435
|
+
"description": "Estimated range by OEM",
|
|
6436
|
+
"args": [],
|
|
6437
|
+
"type": {
|
|
6438
|
+
"kind": "SCALAR",
|
|
6439
|
+
"name": "Int",
|
|
6440
|
+
"ofType": null
|
|
6441
|
+
},
|
|
6442
|
+
"isDeprecated": false,
|
|
6443
|
+
"deprecationReason": null
|
|
6444
|
+
},
|
|
6433
6445
|
{
|
|
6434
6446
|
"name": "percentage",
|
|
6435
|
-
"description":
|
|
6447
|
+
"description": "Percentage of the battery remaining",
|
|
6448
|
+
"args": [],
|
|
6449
|
+
"type": {
|
|
6450
|
+
"kind": "SCALAR",
|
|
6451
|
+
"name": "Int",
|
|
6452
|
+
"ofType": null
|
|
6453
|
+
},
|
|
6454
|
+
"isDeprecated": false,
|
|
6455
|
+
"deprecationReason": null
|
|
6456
|
+
},
|
|
6457
|
+
{
|
|
6458
|
+
"name": "capacity",
|
|
6459
|
+
"description": "Capacity of the battery, in kwh",
|
|
6436
6460
|
"args": [],
|
|
6437
6461
|
"type": {
|
|
6438
6462
|
"kind": "SCALAR",
|
|
@@ -6444,11 +6468,118 @@
|
|
|
6444
6468
|
},
|
|
6445
6469
|
{
|
|
6446
6470
|
"name": "date",
|
|
6447
|
-
"description":
|
|
6471
|
+
"description": "Date when the battery data was retrieved, as ISO-8601 date",
|
|
6448
6472
|
"args": [],
|
|
6449
6473
|
"type": {
|
|
6450
6474
|
"kind": "SCALAR",
|
|
6451
|
-
"name": "
|
|
6475
|
+
"name": "DateTime",
|
|
6476
|
+
"ofType": null
|
|
6477
|
+
},
|
|
6478
|
+
"isDeprecated": false,
|
|
6479
|
+
"deprecationReason": null
|
|
6480
|
+
}
|
|
6481
|
+
],
|
|
6482
|
+
"inputFields": null,
|
|
6483
|
+
"interfaces": [],
|
|
6484
|
+
"enumValues": null,
|
|
6485
|
+
"possibleTypes": null
|
|
6486
|
+
},
|
|
6487
|
+
{
|
|
6488
|
+
"kind": "OBJECT",
|
|
6489
|
+
"name": "ConnectCharge",
|
|
6490
|
+
"description": null,
|
|
6491
|
+
"fields": [
|
|
6492
|
+
{
|
|
6493
|
+
"name": "is_plugged_in",
|
|
6494
|
+
"description": "Vehicle is plugged in",
|
|
6495
|
+
"args": [],
|
|
6496
|
+
"type": {
|
|
6497
|
+
"kind": "SCALAR",
|
|
6498
|
+
"name": "Boolean",
|
|
6499
|
+
"ofType": null
|
|
6500
|
+
},
|
|
6501
|
+
"isDeprecated": false,
|
|
6502
|
+
"deprecationReason": null
|
|
6503
|
+
},
|
|
6504
|
+
{
|
|
6505
|
+
"name": "is_charging",
|
|
6506
|
+
"description": "Vehicle is charging",
|
|
6507
|
+
"args": [],
|
|
6508
|
+
"type": {
|
|
6509
|
+
"kind": "SCALAR",
|
|
6510
|
+
"name": "Boolean",
|
|
6511
|
+
"ofType": null
|
|
6512
|
+
},
|
|
6513
|
+
"isDeprecated": false,
|
|
6514
|
+
"deprecationReason": null
|
|
6515
|
+
},
|
|
6516
|
+
{
|
|
6517
|
+
"name": "is_fully_charged",
|
|
6518
|
+
"description": "Battery is fully charged",
|
|
6519
|
+
"args": [],
|
|
6520
|
+
"type": {
|
|
6521
|
+
"kind": "SCALAR",
|
|
6522
|
+
"name": "Boolean",
|
|
6523
|
+
"ofType": null
|
|
6524
|
+
},
|
|
6525
|
+
"isDeprecated": false,
|
|
6526
|
+
"deprecationReason": null
|
|
6527
|
+
},
|
|
6528
|
+
{
|
|
6529
|
+
"name": "limit",
|
|
6530
|
+
"description": "Charge limit defined by vehicle owner",
|
|
6531
|
+
"args": [],
|
|
6532
|
+
"type": {
|
|
6533
|
+
"kind": "SCALAR",
|
|
6534
|
+
"name": "Int",
|
|
6535
|
+
"ofType": null
|
|
6536
|
+
},
|
|
6537
|
+
"isDeprecated": false,
|
|
6538
|
+
"deprecationReason": null
|
|
6539
|
+
},
|
|
6540
|
+
{
|
|
6541
|
+
"name": "charge_speed",
|
|
6542
|
+
"description": "Charge speed, in kwh",
|
|
6543
|
+
"args": [],
|
|
6544
|
+
"type": {
|
|
6545
|
+
"kind": "SCALAR",
|
|
6546
|
+
"name": "Float",
|
|
6547
|
+
"ofType": null
|
|
6548
|
+
},
|
|
6549
|
+
"isDeprecated": false,
|
|
6550
|
+
"deprecationReason": null
|
|
6551
|
+
},
|
|
6552
|
+
{
|
|
6553
|
+
"name": "fully_charged_at",
|
|
6554
|
+
"description": "Estimation when charging is completed, as ISO-8601 date",
|
|
6555
|
+
"args": [],
|
|
6556
|
+
"type": {
|
|
6557
|
+
"kind": "SCALAR",
|
|
6558
|
+
"name": "DateTime",
|
|
6559
|
+
"ofType": null
|
|
6560
|
+
},
|
|
6561
|
+
"isDeprecated": false,
|
|
6562
|
+
"deprecationReason": null
|
|
6563
|
+
},
|
|
6564
|
+
{
|
|
6565
|
+
"name": "minutes_till_charged",
|
|
6566
|
+
"description": "Estimated minutes till charged",
|
|
6567
|
+
"args": [],
|
|
6568
|
+
"type": {
|
|
6569
|
+
"kind": "SCALAR",
|
|
6570
|
+
"name": "Int",
|
|
6571
|
+
"ofType": null
|
|
6572
|
+
},
|
|
6573
|
+
"isDeprecated": false,
|
|
6574
|
+
"deprecationReason": null
|
|
6575
|
+
},
|
|
6576
|
+
{
|
|
6577
|
+
"name": "date",
|
|
6578
|
+
"description": "Date when the charge data was retrieved, as ISO-8601 date",
|
|
6579
|
+
"args": [],
|
|
6580
|
+
"type": {
|
|
6581
|
+
"kind": "SCALAR",
|
|
6582
|
+
"name": "DateTime",
|
|
6452
6583
|
"ofType": null
|
|
6453
6584
|
},
|
|
6454
6585
|
"isDeprecated": false,
|
|
@@ -6488,46 +6619,176 @@
|
|
|
6488
6619
|
"possibleTypes": null
|
|
6489
6620
|
},
|
|
6490
6621
|
{
|
|
6491
|
-
"kind": "
|
|
6492
|
-
"name": "
|
|
6493
|
-
"description":
|
|
6494
|
-
"fields":
|
|
6495
|
-
"inputFields": null,
|
|
6496
|
-
"interfaces": null,
|
|
6497
|
-
"enumValues": [
|
|
6622
|
+
"kind": "OBJECT",
|
|
6623
|
+
"name": "ConnectLocation",
|
|
6624
|
+
"description": "Location of the vehicle",
|
|
6625
|
+
"fields": [
|
|
6498
6626
|
{
|
|
6499
|
-
"name": "
|
|
6500
|
-
"description":
|
|
6627
|
+
"name": "type",
|
|
6628
|
+
"description": "Feature type",
|
|
6629
|
+
"args": [],
|
|
6630
|
+
"type": {
|
|
6631
|
+
"kind": "NON_NULL",
|
|
6632
|
+
"name": null,
|
|
6633
|
+
"ofType": {
|
|
6634
|
+
"kind": "ENUM",
|
|
6635
|
+
"name": "FeatureType",
|
|
6636
|
+
"ofType": null
|
|
6637
|
+
}
|
|
6638
|
+
},
|
|
6639
|
+
"isDeprecated": false,
|
|
6640
|
+
"deprecationReason": null
|
|
6641
|
+
},
|
|
6642
|
+
{
|
|
6643
|
+
"name": "geometry",
|
|
6644
|
+
"description": "Geometry of the feature",
|
|
6645
|
+
"args": [],
|
|
6646
|
+
"type": {
|
|
6647
|
+
"kind": "NON_NULL",
|
|
6648
|
+
"name": null,
|
|
6649
|
+
"ofType": {
|
|
6650
|
+
"kind": "OBJECT",
|
|
6651
|
+
"name": "GeometryPoint",
|
|
6652
|
+
"ofType": null
|
|
6653
|
+
}
|
|
6654
|
+
},
|
|
6655
|
+
"isDeprecated": false,
|
|
6656
|
+
"deprecationReason": null
|
|
6657
|
+
},
|
|
6658
|
+
{
|
|
6659
|
+
"name": "properties",
|
|
6660
|
+
"description": "Properties object containing meta data about the feature point",
|
|
6661
|
+
"args": [],
|
|
6662
|
+
"type": {
|
|
6663
|
+
"kind": "OBJECT",
|
|
6664
|
+
"name": "ConnectLocationProperties",
|
|
6665
|
+
"ofType": null
|
|
6666
|
+
},
|
|
6501
6667
|
"isDeprecated": false,
|
|
6502
6668
|
"deprecationReason": null
|
|
6503
6669
|
}
|
|
6504
6670
|
],
|
|
6671
|
+
"inputFields": null,
|
|
6672
|
+
"interfaces": [],
|
|
6673
|
+
"enumValues": null,
|
|
6505
6674
|
"possibleTypes": null
|
|
6506
6675
|
},
|
|
6507
6676
|
{
|
|
6508
6677
|
"kind": "OBJECT",
|
|
6509
|
-
"name": "
|
|
6510
|
-
"description":
|
|
6678
|
+
"name": "ConnectLocationProperties",
|
|
6679
|
+
"description": "Properties of a vehicle location",
|
|
6511
6680
|
"fields": [
|
|
6512
6681
|
{
|
|
6513
|
-
"name": "
|
|
6514
|
-
"description": "
|
|
6682
|
+
"name": "date",
|
|
6683
|
+
"description": "Date when the location was retrieved, as ISO-8601 date",
|
|
6515
6684
|
"args": [],
|
|
6516
6685
|
"type": {
|
|
6517
6686
|
"kind": "NON_NULL",
|
|
6518
6687
|
"name": null,
|
|
6519
6688
|
"ofType": {
|
|
6520
6689
|
"kind": "SCALAR",
|
|
6521
|
-
"name": "
|
|
6690
|
+
"name": "DateTime",
|
|
6522
6691
|
"ofType": null
|
|
6523
6692
|
}
|
|
6524
6693
|
},
|
|
6525
6694
|
"isDeprecated": false,
|
|
6526
6695
|
"deprecationReason": null
|
|
6696
|
+
}
|
|
6697
|
+
],
|
|
6698
|
+
"inputFields": null,
|
|
6699
|
+
"interfaces": [],
|
|
6700
|
+
"enumValues": null,
|
|
6701
|
+
"possibleTypes": null
|
|
6702
|
+
},
|
|
6703
|
+
{
|
|
6704
|
+
"kind": "OBJECT",
|
|
6705
|
+
"name": "ConnectOdometer",
|
|
6706
|
+
"description": null,
|
|
6707
|
+
"fields": [
|
|
6708
|
+
{
|
|
6709
|
+
"name": "distance",
|
|
6710
|
+
"description": "Odometer value, distance driven, default in km",
|
|
6711
|
+
"args": [],
|
|
6712
|
+
"type": {
|
|
6713
|
+
"kind": "SCALAR",
|
|
6714
|
+
"name": "Int",
|
|
6715
|
+
"ofType": null
|
|
6716
|
+
},
|
|
6717
|
+
"isDeprecated": false,
|
|
6718
|
+
"deprecationReason": null
|
|
6527
6719
|
},
|
|
6528
6720
|
{
|
|
6529
|
-
"name": "
|
|
6530
|
-
"description": "
|
|
6721
|
+
"name": "date",
|
|
6722
|
+
"description": "Date when the odometer data was retrieved, as ISO-8601 date",
|
|
6723
|
+
"args": [],
|
|
6724
|
+
"type": {
|
|
6725
|
+
"kind": "SCALAR",
|
|
6726
|
+
"name": "DateTime",
|
|
6727
|
+
"ofType": null
|
|
6728
|
+
},
|
|
6729
|
+
"isDeprecated": false,
|
|
6730
|
+
"deprecationReason": null
|
|
6731
|
+
}
|
|
6732
|
+
],
|
|
6733
|
+
"inputFields": null,
|
|
6734
|
+
"interfaces": [],
|
|
6735
|
+
"enumValues": null,
|
|
6736
|
+
"possibleTypes": null
|
|
6737
|
+
},
|
|
6738
|
+
{
|
|
6739
|
+
"kind": "ENUM",
|
|
6740
|
+
"name": "ConnectProvider",
|
|
6741
|
+
"description": null,
|
|
6742
|
+
"fields": null,
|
|
6743
|
+
"inputFields": null,
|
|
6744
|
+
"interfaces": null,
|
|
6745
|
+
"enumValues": [
|
|
6746
|
+
{
|
|
6747
|
+
"name": "Enode",
|
|
6748
|
+
"description": null,
|
|
6749
|
+
"isDeprecated": false,
|
|
6750
|
+
"deprecationReason": null
|
|
6751
|
+
}
|
|
6752
|
+
],
|
|
6753
|
+
"possibleTypes": null
|
|
6754
|
+
},
|
|
6755
|
+
{
|
|
6756
|
+
"kind": "ENUM",
|
|
6757
|
+
"name": "ConnectScope",
|
|
6758
|
+
"description": null,
|
|
6759
|
+
"fields": null,
|
|
6760
|
+
"inputFields": null,
|
|
6761
|
+
"interfaces": null,
|
|
6762
|
+
"enumValues": [
|
|
6763
|
+
{
|
|
6764
|
+
"name": "location",
|
|
6765
|
+
"description": "Vehicle location, applicable for: Enode",
|
|
6766
|
+
"isDeprecated": false,
|
|
6767
|
+
"deprecationReason": null
|
|
6768
|
+
},
|
|
6769
|
+
{
|
|
6770
|
+
"name": "charge_state",
|
|
6771
|
+
"description": "Charge state, applicable for: Enode",
|
|
6772
|
+
"isDeprecated": false,
|
|
6773
|
+
"deprecationReason": null
|
|
6774
|
+
},
|
|
6775
|
+
{
|
|
6776
|
+
"name": "odometer",
|
|
6777
|
+
"description": "Odometer reading, applicable for: Enode",
|
|
6778
|
+
"isDeprecated": false,
|
|
6779
|
+
"deprecationReason": null
|
|
6780
|
+
}
|
|
6781
|
+
],
|
|
6782
|
+
"possibleTypes": null
|
|
6783
|
+
},
|
|
6784
|
+
{
|
|
6785
|
+
"kind": "OBJECT",
|
|
6786
|
+
"name": "ConnectedVehicle",
|
|
6787
|
+
"description": null,
|
|
6788
|
+
"fields": [
|
|
6789
|
+
{
|
|
6790
|
+
"name": "id",
|
|
6791
|
+
"description": "Unique ID of the connected vehicle",
|
|
6531
6792
|
"args": [],
|
|
6532
6793
|
"type": {
|
|
6533
6794
|
"kind": "NON_NULL",
|
|
@@ -6602,15 +6863,15 @@
|
|
|
6602
6863
|
"deprecationReason": null
|
|
6603
6864
|
},
|
|
6604
6865
|
{
|
|
6605
|
-
"name": "
|
|
6606
|
-
"description": "
|
|
6866
|
+
"name": "scope",
|
|
6867
|
+
"description": "Scope for accessing the vehicle",
|
|
6607
6868
|
"args": [],
|
|
6608
6869
|
"type": {
|
|
6609
6870
|
"kind": "LIST",
|
|
6610
6871
|
"name": null,
|
|
6611
6872
|
"ofType": {
|
|
6612
6873
|
"kind": "ENUM",
|
|
6613
|
-
"name": "
|
|
6874
|
+
"name": "ConnectScope",
|
|
6614
6875
|
"ofType": null
|
|
6615
6876
|
}
|
|
6616
6877
|
},
|
|
@@ -6647,29 +6908,6 @@
|
|
|
6647
6908
|
"enumValues": null,
|
|
6648
6909
|
"possibleTypes": null
|
|
6649
6910
|
},
|
|
6650
|
-
{
|
|
6651
|
-
"kind": "ENUM",
|
|
6652
|
-
"name": "ConnectedVehiclePermission",
|
|
6653
|
-
"description": null,
|
|
6654
|
-
"fields": null,
|
|
6655
|
-
"inputFields": null,
|
|
6656
|
-
"interfaces": null,
|
|
6657
|
-
"enumValues": [
|
|
6658
|
-
{
|
|
6659
|
-
"name": "location",
|
|
6660
|
-
"description": "Permission to retrieve the location of the vehicle",
|
|
6661
|
-
"isDeprecated": false,
|
|
6662
|
-
"deprecationReason": null
|
|
6663
|
-
},
|
|
6664
|
-
{
|
|
6665
|
-
"name": "battery",
|
|
6666
|
-
"description": "Permission to retrieve the state of the battery",
|
|
6667
|
-
"isDeprecated": false,
|
|
6668
|
-
"deprecationReason": null
|
|
6669
|
-
}
|
|
6670
|
-
],
|
|
6671
|
-
"possibleTypes": null
|
|
6672
|
-
},
|
|
6673
6911
|
{
|
|
6674
6912
|
"kind": "ENUM",
|
|
6675
6913
|
"name": "ConnectedVehicleStatus",
|
|
@@ -8853,6 +9091,41 @@
|
|
|
8853
9091
|
"enumValues": null,
|
|
8854
9092
|
"possibleTypes": null
|
|
8855
9093
|
},
|
|
9094
|
+
{
|
|
9095
|
+
"kind": "ENUM",
|
|
9096
|
+
"name": "DistanceUnit",
|
|
9097
|
+
"description": null,
|
|
9098
|
+
"fields": null,
|
|
9099
|
+
"inputFields": null,
|
|
9100
|
+
"interfaces": null,
|
|
9101
|
+
"enumValues": [
|
|
9102
|
+
{
|
|
9103
|
+
"name": "meter",
|
|
9104
|
+
"description": "Return the distance in meters",
|
|
9105
|
+
"isDeprecated": false,
|
|
9106
|
+
"deprecationReason": null
|
|
9107
|
+
},
|
|
9108
|
+
{
|
|
9109
|
+
"name": "foot",
|
|
9110
|
+
"description": "Return the distance in feet",
|
|
9111
|
+
"isDeprecated": false,
|
|
9112
|
+
"deprecationReason": null
|
|
9113
|
+
},
|
|
9114
|
+
{
|
|
9115
|
+
"name": "kilometer",
|
|
9116
|
+
"description": "Return the distance in kilometers",
|
|
9117
|
+
"isDeprecated": false,
|
|
9118
|
+
"deprecationReason": null
|
|
9119
|
+
},
|
|
9120
|
+
{
|
|
9121
|
+
"name": "mile",
|
|
9122
|
+
"description": "Return the distance in miles",
|
|
9123
|
+
"isDeprecated": false,
|
|
9124
|
+
"deprecationReason": null
|
|
9125
|
+
}
|
|
9126
|
+
],
|
|
9127
|
+
"possibleTypes": null
|
|
9128
|
+
},
|
|
8856
9129
|
{
|
|
8857
9130
|
"kind": "OBJECT",
|
|
8858
9131
|
"name": "EVSE",
|
|
@@ -9103,7 +9376,7 @@
|
|
|
9103
9376
|
},
|
|
9104
9377
|
{
|
|
9105
9378
|
"name": "properties",
|
|
9106
|
-
"description": "
|
|
9379
|
+
"description": "Optional object where you can store custom data you need in your application. This extends the current functionalities we offer",
|
|
9107
9380
|
"args": [],
|
|
9108
9381
|
"type": {
|
|
9109
9382
|
"kind": "SCALAR",
|
|
@@ -9822,7 +10095,7 @@
|
|
|
9822
10095
|
},
|
|
9823
10096
|
{
|
|
9824
10097
|
"name": "authorizeConnectedVehicle",
|
|
9825
|
-
"description": "[BETA] Authorize a vehicle
|
|
10098
|
+
"description": "[BETA] Authorize a connected vehicle",
|
|
9826
10099
|
"args": [
|
|
9827
10100
|
{
|
|
9828
10101
|
"name": "input",
|
|
@@ -10869,6 +11142,22 @@
|
|
|
10869
11142
|
"defaultValue": null,
|
|
10870
11143
|
"isDeprecated": false,
|
|
10871
11144
|
"deprecationReason": null
|
|
11145
|
+
},
|
|
11146
|
+
{
|
|
11147
|
+
"name": "scope",
|
|
11148
|
+
"description": "Scope",
|
|
11149
|
+
"type": {
|
|
11150
|
+
"kind": "LIST",
|
|
11151
|
+
"name": null,
|
|
11152
|
+
"ofType": {
|
|
11153
|
+
"kind": "ENUM",
|
|
11154
|
+
"name": "ConnectScope",
|
|
11155
|
+
"ofType": null
|
|
11156
|
+
}
|
|
11157
|
+
},
|
|
11158
|
+
"defaultValue": null,
|
|
11159
|
+
"isDeprecated": false,
|
|
11160
|
+
"deprecationReason": null
|
|
10872
11161
|
}
|
|
10873
11162
|
],
|
|
10874
11163
|
"interfaces": null,
|
|
@@ -15568,6 +15857,18 @@
|
|
|
15568
15857
|
"defaultValue": null,
|
|
15569
15858
|
"isDeprecated": false,
|
|
15570
15859
|
"deprecationReason": null
|
|
15860
|
+
},
|
|
15861
|
+
{
|
|
15862
|
+
"name": "telemetry",
|
|
15863
|
+
"description": "Telemetry data used to overwrite routing parameters",
|
|
15864
|
+
"type": {
|
|
15865
|
+
"kind": "SCALAR",
|
|
15866
|
+
"name": "JSON",
|
|
15867
|
+
"ofType": null
|
|
15868
|
+
},
|
|
15869
|
+
"defaultValue": null,
|
|
15870
|
+
"isDeprecated": false,
|
|
15871
|
+
"deprecationReason": null
|
|
15571
15872
|
}
|
|
15572
15873
|
],
|
|
15573
15874
|
"interfaces": null,
|
|
@@ -16521,6 +16822,18 @@
|
|
|
16521
16822
|
"isDeprecated": false,
|
|
16522
16823
|
"deprecationReason": null
|
|
16523
16824
|
},
|
|
16825
|
+
{
|
|
16826
|
+
"name": "telemetry",
|
|
16827
|
+
"description": "Route telemetry data",
|
|
16828
|
+
"args": [],
|
|
16829
|
+
"type": {
|
|
16830
|
+
"kind": "SCALAR",
|
|
16831
|
+
"name": "JSON",
|
|
16832
|
+
"ofType": null
|
|
16833
|
+
},
|
|
16834
|
+
"isDeprecated": false,
|
|
16835
|
+
"deprecationReason": null
|
|
16836
|
+
},
|
|
16524
16837
|
{
|
|
16525
16838
|
"name": "user",
|
|
16526
16839
|
"description": null,
|
|
@@ -18612,7 +18925,7 @@
|
|
|
18612
18925
|
},
|
|
18613
18926
|
{
|
|
18614
18927
|
"name": "consumption",
|
|
18615
|
-
"description": "Total
|
|
18928
|
+
"description": "Total energy used in a step in kWh",
|
|
18616
18929
|
"args": [],
|
|
18617
18930
|
"type": {
|
|
18618
18931
|
"kind": "SCALAR",
|
|
@@ -20167,7 +20480,7 @@
|
|
|
20167
20480
|
"fields": [
|
|
20168
20481
|
{
|
|
20169
20482
|
"name": "battery",
|
|
20170
|
-
"description":
|
|
20483
|
+
"description": "Battery data",
|
|
20171
20484
|
"args": [],
|
|
20172
20485
|
"type": {
|
|
20173
20486
|
"kind": "OBJECT",
|
|
@@ -20178,67 +20491,36 @@
|
|
|
20178
20491
|
"deprecationReason": null
|
|
20179
20492
|
},
|
|
20180
20493
|
{
|
|
20181
|
-
"name": "
|
|
20182
|
-
"description":
|
|
20494
|
+
"name": "charge",
|
|
20495
|
+
"description": "Charge data",
|
|
20183
20496
|
"args": [],
|
|
20184
20497
|
"type": {
|
|
20185
20498
|
"kind": "OBJECT",
|
|
20186
|
-
"name": "
|
|
20499
|
+
"name": "ConnectCharge",
|
|
20187
20500
|
"ofType": null
|
|
20188
20501
|
},
|
|
20189
20502
|
"isDeprecated": false,
|
|
20190
20503
|
"deprecationReason": null
|
|
20191
|
-
}
|
|
20192
|
-
],
|
|
20193
|
-
"inputFields": null,
|
|
20194
|
-
"interfaces": [],
|
|
20195
|
-
"enumValues": null,
|
|
20196
|
-
"possibleTypes": null
|
|
20197
|
-
},
|
|
20198
|
-
{
|
|
20199
|
-
"kind": "OBJECT",
|
|
20200
|
-
"name": "VehicleLocation",
|
|
20201
|
-
"description": "Location of the vehicle",
|
|
20202
|
-
"fields": [
|
|
20203
|
-
{
|
|
20204
|
-
"name": "type",
|
|
20205
|
-
"description": null,
|
|
20206
|
-
"args": [],
|
|
20207
|
-
"type": {
|
|
20208
|
-
"kind": "NON_NULL",
|
|
20209
|
-
"name": null,
|
|
20210
|
-
"ofType": {
|
|
20211
|
-
"kind": "ENUM",
|
|
20212
|
-
"name": "FeatureType",
|
|
20213
|
-
"ofType": null
|
|
20214
|
-
}
|
|
20215
|
-
},
|
|
20216
|
-
"isDeprecated": false,
|
|
20217
|
-
"deprecationReason": null
|
|
20218
20504
|
},
|
|
20219
20505
|
{
|
|
20220
|
-
"name": "
|
|
20221
|
-
"description":
|
|
20506
|
+
"name": "location",
|
|
20507
|
+
"description": "Location data",
|
|
20222
20508
|
"args": [],
|
|
20223
20509
|
"type": {
|
|
20224
|
-
"kind": "
|
|
20225
|
-
"name":
|
|
20226
|
-
"ofType":
|
|
20227
|
-
"kind": "OBJECT",
|
|
20228
|
-
"name": "GeometryPoint",
|
|
20229
|
-
"ofType": null
|
|
20230
|
-
}
|
|
20510
|
+
"kind": "OBJECT",
|
|
20511
|
+
"name": "ConnectLocation",
|
|
20512
|
+
"ofType": null
|
|
20231
20513
|
},
|
|
20232
20514
|
"isDeprecated": false,
|
|
20233
20515
|
"deprecationReason": null
|
|
20234
20516
|
},
|
|
20235
20517
|
{
|
|
20236
|
-
"name": "
|
|
20237
|
-
"description":
|
|
20518
|
+
"name": "odometer",
|
|
20519
|
+
"description": "Odometer data",
|
|
20238
20520
|
"args": [],
|
|
20239
20521
|
"type": {
|
|
20240
20522
|
"kind": "OBJECT",
|
|
20241
|
-
"name": "
|
|
20523
|
+
"name": "ConnectOdometer",
|
|
20242
20524
|
"ofType": null
|
|
20243
20525
|
},
|
|
20244
20526
|
"isDeprecated": false,
|
|
@@ -20250,33 +20532,6 @@
|
|
|
20250
20532
|
"enumValues": null,
|
|
20251
20533
|
"possibleTypes": null
|
|
20252
20534
|
},
|
|
20253
|
-
{
|
|
20254
|
-
"kind": "OBJECT",
|
|
20255
|
-
"name": "VehicleLocationProperties",
|
|
20256
|
-
"description": "Properties of a vehicle location",
|
|
20257
|
-
"fields": [
|
|
20258
|
-
{
|
|
20259
|
-
"name": "date",
|
|
20260
|
-
"description": null,
|
|
20261
|
-
"args": [],
|
|
20262
|
-
"type": {
|
|
20263
|
-
"kind": "NON_NULL",
|
|
20264
|
-
"name": null,
|
|
20265
|
-
"ofType": {
|
|
20266
|
-
"kind": "SCALAR",
|
|
20267
|
-
"name": "String",
|
|
20268
|
-
"ofType": null
|
|
20269
|
-
}
|
|
20270
|
-
},
|
|
20271
|
-
"isDeprecated": false,
|
|
20272
|
-
"deprecationReason": null
|
|
20273
|
-
}
|
|
20274
|
-
],
|
|
20275
|
-
"inputFields": null,
|
|
20276
|
-
"interfaces": [],
|
|
20277
|
-
"enumValues": null,
|
|
20278
|
-
"possibleTypes": null
|
|
20279
|
-
},
|
|
20280
20535
|
{
|
|
20281
20536
|
"kind": "SCALAR",
|
|
20282
20537
|
"name": "Void",
|