@chargetrip/types 1.46.2 → 1.47.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 +64 -34
- package/graphql.schema.json +425 -772
- package/package.json +1 -1
- package/src/graphql.ts +70 -37
package/graphql.schema.json
CHANGED
|
@@ -5592,6 +5592,38 @@
|
|
|
5592
5592
|
},
|
|
5593
5593
|
"isDeprecated": false,
|
|
5594
5594
|
"deprecationReason": null
|
|
5595
|
+
},
|
|
5596
|
+
{
|
|
5597
|
+
"name": "avoid",
|
|
5598
|
+
"description": "[BETA] List of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable.",
|
|
5599
|
+
"args": [],
|
|
5600
|
+
"type": {
|
|
5601
|
+
"kind": "LIST",
|
|
5602
|
+
"name": null,
|
|
5603
|
+
"ofType": {
|
|
5604
|
+
"kind": "NON_NULL",
|
|
5605
|
+
"name": null,
|
|
5606
|
+
"ofType": {
|
|
5607
|
+
"kind": "ENUM",
|
|
5608
|
+
"name": "RouteAvoid",
|
|
5609
|
+
"ofType": null
|
|
5610
|
+
}
|
|
5611
|
+
}
|
|
5612
|
+
},
|
|
5613
|
+
"isDeprecated": false,
|
|
5614
|
+
"deprecationReason": null
|
|
5615
|
+
},
|
|
5616
|
+
{
|
|
5617
|
+
"name": "maximum_speed",
|
|
5618
|
+
"description": "[BETA] User-defined maximum speed used for this route, if provided.",
|
|
5619
|
+
"args": [],
|
|
5620
|
+
"type": {
|
|
5621
|
+
"kind": "OBJECT",
|
|
5622
|
+
"name": "MaximumSpeed",
|
|
5623
|
+
"ofType": null
|
|
5624
|
+
},
|
|
5625
|
+
"isDeprecated": false,
|
|
5626
|
+
"deprecationReason": null
|
|
5595
5627
|
}
|
|
5596
5628
|
],
|
|
5597
5629
|
"inputFields": null,
|
|
@@ -5720,6 +5752,38 @@
|
|
|
5720
5752
|
"defaultValue": null,
|
|
5721
5753
|
"isDeprecated": false,
|
|
5722
5754
|
"deprecationReason": null
|
|
5755
|
+
},
|
|
5756
|
+
{
|
|
5757
|
+
"name": "avoid",
|
|
5758
|
+
"description": "[BETA] Optional list of route features to avoid in a route. This is a best-effort preference; depending on the available routes, some features may not be fully avoidable.",
|
|
5759
|
+
"type": {
|
|
5760
|
+
"kind": "LIST",
|
|
5761
|
+
"name": null,
|
|
5762
|
+
"ofType": {
|
|
5763
|
+
"kind": "NON_NULL",
|
|
5764
|
+
"name": null,
|
|
5765
|
+
"ofType": {
|
|
5766
|
+
"kind": "ENUM",
|
|
5767
|
+
"name": "RouteAvoid",
|
|
5768
|
+
"ofType": null
|
|
5769
|
+
}
|
|
5770
|
+
}
|
|
5771
|
+
},
|
|
5772
|
+
"defaultValue": null,
|
|
5773
|
+
"isDeprecated": false,
|
|
5774
|
+
"deprecationReason": null
|
|
5775
|
+
},
|
|
5776
|
+
{
|
|
5777
|
+
"name": "maximum_speed",
|
|
5778
|
+
"description": "[BETA] Maximum speed to consider when generating the route. In the segments where legal speed is lower than this value, the legal speed will be used instead.",
|
|
5779
|
+
"type": {
|
|
5780
|
+
"kind": "INPUT_OBJECT",
|
|
5781
|
+
"name": "MaximumSpeedInput",
|
|
5782
|
+
"ofType": null
|
|
5783
|
+
},
|
|
5784
|
+
"defaultValue": null,
|
|
5785
|
+
"isDeprecated": false,
|
|
5786
|
+
"deprecationReason": null
|
|
5723
5787
|
}
|
|
5724
5788
|
],
|
|
5725
5789
|
"interfaces": null,
|
|
@@ -10069,6 +10133,92 @@
|
|
|
10069
10133
|
],
|
|
10070
10134
|
"possibleTypes": null
|
|
10071
10135
|
},
|
|
10136
|
+
{
|
|
10137
|
+
"kind": "OBJECT",
|
|
10138
|
+
"name": "MaximumSpeed",
|
|
10139
|
+
"description": null,
|
|
10140
|
+
"fields": [
|
|
10141
|
+
{
|
|
10142
|
+
"name": "value",
|
|
10143
|
+
"description": "Numeric value of the user-defined maximum speed.",
|
|
10144
|
+
"args": [],
|
|
10145
|
+
"type": {
|
|
10146
|
+
"kind": "NON_NULL",
|
|
10147
|
+
"name": null,
|
|
10148
|
+
"ofType": {
|
|
10149
|
+
"kind": "SCALAR",
|
|
10150
|
+
"name": "Int",
|
|
10151
|
+
"ofType": null
|
|
10152
|
+
}
|
|
10153
|
+
},
|
|
10154
|
+
"isDeprecated": false,
|
|
10155
|
+
"deprecationReason": null
|
|
10156
|
+
},
|
|
10157
|
+
{
|
|
10158
|
+
"name": "type",
|
|
10159
|
+
"description": "Unit in which speed is measured.",
|
|
10160
|
+
"args": [],
|
|
10161
|
+
"type": {
|
|
10162
|
+
"kind": "NON_NULL",
|
|
10163
|
+
"name": null,
|
|
10164
|
+
"ofType": {
|
|
10165
|
+
"kind": "ENUM",
|
|
10166
|
+
"name": "SpeedUnit",
|
|
10167
|
+
"ofType": null
|
|
10168
|
+
}
|
|
10169
|
+
},
|
|
10170
|
+
"isDeprecated": false,
|
|
10171
|
+
"deprecationReason": null
|
|
10172
|
+
}
|
|
10173
|
+
],
|
|
10174
|
+
"inputFields": null,
|
|
10175
|
+
"interfaces": [],
|
|
10176
|
+
"enumValues": null,
|
|
10177
|
+
"possibleTypes": null
|
|
10178
|
+
},
|
|
10179
|
+
{
|
|
10180
|
+
"kind": "INPUT_OBJECT",
|
|
10181
|
+
"name": "MaximumSpeedInput",
|
|
10182
|
+
"description": null,
|
|
10183
|
+
"fields": null,
|
|
10184
|
+
"inputFields": [
|
|
10185
|
+
{
|
|
10186
|
+
"name": "value",
|
|
10187
|
+
"description": "Numeric value of the user-defined maximum speed.",
|
|
10188
|
+
"type": {
|
|
10189
|
+
"kind": "NON_NULL",
|
|
10190
|
+
"name": null,
|
|
10191
|
+
"ofType": {
|
|
10192
|
+
"kind": "SCALAR",
|
|
10193
|
+
"name": "Int",
|
|
10194
|
+
"ofType": null
|
|
10195
|
+
}
|
|
10196
|
+
},
|
|
10197
|
+
"defaultValue": null,
|
|
10198
|
+
"isDeprecated": false,
|
|
10199
|
+
"deprecationReason": null
|
|
10200
|
+
},
|
|
10201
|
+
{
|
|
10202
|
+
"name": "type",
|
|
10203
|
+
"description": "Unit in which speed is measured.",
|
|
10204
|
+
"type": {
|
|
10205
|
+
"kind": "NON_NULL",
|
|
10206
|
+
"name": null,
|
|
10207
|
+
"ofType": {
|
|
10208
|
+
"kind": "ENUM",
|
|
10209
|
+
"name": "SpeedUnit",
|
|
10210
|
+
"ofType": null
|
|
10211
|
+
}
|
|
10212
|
+
},
|
|
10213
|
+
"defaultValue": null,
|
|
10214
|
+
"isDeprecated": false,
|
|
10215
|
+
"deprecationReason": null
|
|
10216
|
+
}
|
|
10217
|
+
],
|
|
10218
|
+
"interfaces": null,
|
|
10219
|
+
"enumValues": null,
|
|
10220
|
+
"possibleTypes": null
|
|
10221
|
+
},
|
|
10072
10222
|
{
|
|
10073
10223
|
"kind": "ENUM",
|
|
10074
10224
|
"name": "MeasurementUnit",
|
|
@@ -10496,6 +10646,31 @@
|
|
|
10496
10646
|
"isDeprecated": false,
|
|
10497
10647
|
"deprecationReason": null
|
|
10498
10648
|
},
|
|
10649
|
+
{
|
|
10650
|
+
"name": "newRoute",
|
|
10651
|
+
"description": "Deprecated: In favor of createRoute.",
|
|
10652
|
+
"args": [
|
|
10653
|
+
{
|
|
10654
|
+
"name": "input",
|
|
10655
|
+
"description": null,
|
|
10656
|
+
"type": {
|
|
10657
|
+
"kind": "INPUT_OBJECT",
|
|
10658
|
+
"name": "RequestInput",
|
|
10659
|
+
"ofType": null
|
|
10660
|
+
},
|
|
10661
|
+
"defaultValue": null,
|
|
10662
|
+
"isDeprecated": false,
|
|
10663
|
+
"deprecationReason": null
|
|
10664
|
+
}
|
|
10665
|
+
],
|
|
10666
|
+
"type": {
|
|
10667
|
+
"kind": "SCALAR",
|
|
10668
|
+
"name": "ID",
|
|
10669
|
+
"ofType": null
|
|
10670
|
+
},
|
|
10671
|
+
"isDeprecated": false,
|
|
10672
|
+
"deprecationReason": null
|
|
10673
|
+
},
|
|
10499
10674
|
{
|
|
10500
10675
|
"name": "createRoute",
|
|
10501
10676
|
"description": "Create a new route from the route input and its ID.",
|
|
@@ -10528,31 +10703,6 @@
|
|
|
10528
10703
|
},
|
|
10529
10704
|
"isDeprecated": false,
|
|
10530
10705
|
"deprecationReason": null
|
|
10531
|
-
},
|
|
10532
|
-
{
|
|
10533
|
-
"name": "newRoute",
|
|
10534
|
-
"description": "Deprecated: In favor of createRoute.",
|
|
10535
|
-
"args": [
|
|
10536
|
-
{
|
|
10537
|
-
"name": "input",
|
|
10538
|
-
"description": null,
|
|
10539
|
-
"type": {
|
|
10540
|
-
"kind": "INPUT_OBJECT",
|
|
10541
|
-
"name": "RequestInput",
|
|
10542
|
-
"ofType": null
|
|
10543
|
-
},
|
|
10544
|
-
"defaultValue": null,
|
|
10545
|
-
"isDeprecated": false,
|
|
10546
|
-
"deprecationReason": null
|
|
10547
|
-
}
|
|
10548
|
-
],
|
|
10549
|
-
"type": {
|
|
10550
|
-
"kind": "SCALAR",
|
|
10551
|
-
"name": "ID",
|
|
10552
|
-
"ofType": null
|
|
10553
|
-
},
|
|
10554
|
-
"isDeprecated": false,
|
|
10555
|
-
"deprecationReason": null
|
|
10556
10706
|
}
|
|
10557
10707
|
],
|
|
10558
10708
|
"inputFields": null,
|
|
@@ -15696,6 +15846,51 @@
|
|
|
15696
15846
|
"isDeprecated": false,
|
|
15697
15847
|
"deprecationReason": null
|
|
15698
15848
|
},
|
|
15849
|
+
{
|
|
15850
|
+
"name": "routeEmissions",
|
|
15851
|
+
"description": "Deprecated: In favor of getRouteEmissions.",
|
|
15852
|
+
"args": [
|
|
15853
|
+
{
|
|
15854
|
+
"name": "route_id",
|
|
15855
|
+
"description": "ID of the route for which we retrieve the emissions profile.",
|
|
15856
|
+
"type": {
|
|
15857
|
+
"kind": "NON_NULL",
|
|
15858
|
+
"name": null,
|
|
15859
|
+
"ofType": {
|
|
15860
|
+
"kind": "SCALAR",
|
|
15861
|
+
"name": "ID",
|
|
15862
|
+
"ofType": null
|
|
15863
|
+
}
|
|
15864
|
+
},
|
|
15865
|
+
"defaultValue": null,
|
|
15866
|
+
"isDeprecated": false,
|
|
15867
|
+
"deprecationReason": null
|
|
15868
|
+
},
|
|
15869
|
+
{
|
|
15870
|
+
"name": "route_alternative_id",
|
|
15871
|
+
"description": "ID of the route alternative for which we retrieve the emissions profile. If not provided, we will retrieve the recommended alternative.",
|
|
15872
|
+
"type": {
|
|
15873
|
+
"kind": "SCALAR",
|
|
15874
|
+
"name": "ID",
|
|
15875
|
+
"ofType": null
|
|
15876
|
+
},
|
|
15877
|
+
"defaultValue": null,
|
|
15878
|
+
"isDeprecated": false,
|
|
15879
|
+
"deprecationReason": null
|
|
15880
|
+
}
|
|
15881
|
+
],
|
|
15882
|
+
"type": {
|
|
15883
|
+
"kind": "NON_NULL",
|
|
15884
|
+
"name": null,
|
|
15885
|
+
"ofType": {
|
|
15886
|
+
"kind": "OBJECT",
|
|
15887
|
+
"name": "RouteEmissions",
|
|
15888
|
+
"ofType": null
|
|
15889
|
+
}
|
|
15890
|
+
},
|
|
15891
|
+
"isDeprecated": false,
|
|
15892
|
+
"deprecationReason": null
|
|
15893
|
+
},
|
|
15699
15894
|
{
|
|
15700
15895
|
"name": "route",
|
|
15701
15896
|
"description": "Deprecated: In favor of getRoute.",
|
|
@@ -15725,6 +15920,63 @@
|
|
|
15725
15920
|
"isDeprecated": false,
|
|
15726
15921
|
"deprecationReason": null
|
|
15727
15922
|
},
|
|
15923
|
+
{
|
|
15924
|
+
"name": "routePath",
|
|
15925
|
+
"description": "Deprecated: In favor of RouteDetails.path_plot.",
|
|
15926
|
+
"args": [
|
|
15927
|
+
{
|
|
15928
|
+
"name": "id",
|
|
15929
|
+
"description": "ID of a route that you require for a route path segment",
|
|
15930
|
+
"type": {
|
|
15931
|
+
"kind": "NON_NULL",
|
|
15932
|
+
"name": null,
|
|
15933
|
+
"ofType": {
|
|
15934
|
+
"kind": "SCALAR",
|
|
15935
|
+
"name": "ID",
|
|
15936
|
+
"ofType": null
|
|
15937
|
+
}
|
|
15938
|
+
},
|
|
15939
|
+
"defaultValue": null,
|
|
15940
|
+
"isDeprecated": false,
|
|
15941
|
+
"deprecationReason": null
|
|
15942
|
+
},
|
|
15943
|
+
{
|
|
15944
|
+
"name": "location",
|
|
15945
|
+
"description": "The GeoJSON Point of a route path segment",
|
|
15946
|
+
"type": {
|
|
15947
|
+
"kind": "NON_NULL",
|
|
15948
|
+
"name": null,
|
|
15949
|
+
"ofType": {
|
|
15950
|
+
"kind": "INPUT_OBJECT",
|
|
15951
|
+
"name": "PointInput",
|
|
15952
|
+
"ofType": null
|
|
15953
|
+
}
|
|
15954
|
+
},
|
|
15955
|
+
"defaultValue": null,
|
|
15956
|
+
"isDeprecated": false,
|
|
15957
|
+
"deprecationReason": null
|
|
15958
|
+
},
|
|
15959
|
+
{
|
|
15960
|
+
"name": "alternativeId",
|
|
15961
|
+
"description": "Optional alternative ID. By default we will retrieve the fastest route",
|
|
15962
|
+
"type": {
|
|
15963
|
+
"kind": "SCALAR",
|
|
15964
|
+
"name": "ID",
|
|
15965
|
+
"ofType": null
|
|
15966
|
+
},
|
|
15967
|
+
"defaultValue": null,
|
|
15968
|
+
"isDeprecated": false,
|
|
15969
|
+
"deprecationReason": null
|
|
15970
|
+
}
|
|
15971
|
+
],
|
|
15972
|
+
"type": {
|
|
15973
|
+
"kind": "OBJECT",
|
|
15974
|
+
"name": "RoutePath",
|
|
15975
|
+
"ofType": null
|
|
15976
|
+
},
|
|
15977
|
+
"isDeprecated": false,
|
|
15978
|
+
"deprecationReason": null
|
|
15979
|
+
},
|
|
15728
15980
|
{
|
|
15729
15981
|
"name": "getRoute",
|
|
15730
15982
|
"description": "Get a route by ID.",
|
|
@@ -15807,108 +16059,6 @@
|
|
|
15807
16059
|
"isDeprecated": false,
|
|
15808
16060
|
"deprecationReason": null
|
|
15809
16061
|
},
|
|
15810
|
-
{
|
|
15811
|
-
"name": "routeEmissions",
|
|
15812
|
-
"description": "Deprecated: In favor of getRouteEmissions.",
|
|
15813
|
-
"args": [
|
|
15814
|
-
{
|
|
15815
|
-
"name": "route_id",
|
|
15816
|
-
"description": "ID of the route for which we retrieve the emissions profile.",
|
|
15817
|
-
"type": {
|
|
15818
|
-
"kind": "NON_NULL",
|
|
15819
|
-
"name": null,
|
|
15820
|
-
"ofType": {
|
|
15821
|
-
"kind": "SCALAR",
|
|
15822
|
-
"name": "ID",
|
|
15823
|
-
"ofType": null
|
|
15824
|
-
}
|
|
15825
|
-
},
|
|
15826
|
-
"defaultValue": null,
|
|
15827
|
-
"isDeprecated": false,
|
|
15828
|
-
"deprecationReason": null
|
|
15829
|
-
},
|
|
15830
|
-
{
|
|
15831
|
-
"name": "route_alternative_id",
|
|
15832
|
-
"description": "ID of the route alternative for which we retrieve the emissions profile. If not provided, we will retrieve the recommended alternative.",
|
|
15833
|
-
"type": {
|
|
15834
|
-
"kind": "SCALAR",
|
|
15835
|
-
"name": "ID",
|
|
15836
|
-
"ofType": null
|
|
15837
|
-
},
|
|
15838
|
-
"defaultValue": null,
|
|
15839
|
-
"isDeprecated": false,
|
|
15840
|
-
"deprecationReason": null
|
|
15841
|
-
}
|
|
15842
|
-
],
|
|
15843
|
-
"type": {
|
|
15844
|
-
"kind": "NON_NULL",
|
|
15845
|
-
"name": null,
|
|
15846
|
-
"ofType": {
|
|
15847
|
-
"kind": "OBJECT",
|
|
15848
|
-
"name": "RouteEmissions",
|
|
15849
|
-
"ofType": null
|
|
15850
|
-
}
|
|
15851
|
-
},
|
|
15852
|
-
"isDeprecated": false,
|
|
15853
|
-
"deprecationReason": null
|
|
15854
|
-
},
|
|
15855
|
-
{
|
|
15856
|
-
"name": "routePath",
|
|
15857
|
-
"description": "Deprecated: In favor of RouteDetails.path_plot.",
|
|
15858
|
-
"args": [
|
|
15859
|
-
{
|
|
15860
|
-
"name": "id",
|
|
15861
|
-
"description": "ID of a route that you require for a route path segment",
|
|
15862
|
-
"type": {
|
|
15863
|
-
"kind": "NON_NULL",
|
|
15864
|
-
"name": null,
|
|
15865
|
-
"ofType": {
|
|
15866
|
-
"kind": "SCALAR",
|
|
15867
|
-
"name": "ID",
|
|
15868
|
-
"ofType": null
|
|
15869
|
-
}
|
|
15870
|
-
},
|
|
15871
|
-
"defaultValue": null,
|
|
15872
|
-
"isDeprecated": false,
|
|
15873
|
-
"deprecationReason": null
|
|
15874
|
-
},
|
|
15875
|
-
{
|
|
15876
|
-
"name": "location",
|
|
15877
|
-
"description": "The GeoJSON Point of a route path segment",
|
|
15878
|
-
"type": {
|
|
15879
|
-
"kind": "NON_NULL",
|
|
15880
|
-
"name": null,
|
|
15881
|
-
"ofType": {
|
|
15882
|
-
"kind": "INPUT_OBJECT",
|
|
15883
|
-
"name": "PointInput",
|
|
15884
|
-
"ofType": null
|
|
15885
|
-
}
|
|
15886
|
-
},
|
|
15887
|
-
"defaultValue": null,
|
|
15888
|
-
"isDeprecated": false,
|
|
15889
|
-
"deprecationReason": null
|
|
15890
|
-
},
|
|
15891
|
-
{
|
|
15892
|
-
"name": "alternativeId",
|
|
15893
|
-
"description": "Optional alternative ID. By default we will retrieve the fastest route",
|
|
15894
|
-
"type": {
|
|
15895
|
-
"kind": "SCALAR",
|
|
15896
|
-
"name": "ID",
|
|
15897
|
-
"ofType": null
|
|
15898
|
-
},
|
|
15899
|
-
"defaultValue": null,
|
|
15900
|
-
"isDeprecated": false,
|
|
15901
|
-
"deprecationReason": null
|
|
15902
|
-
}
|
|
15903
|
-
],
|
|
15904
|
-
"type": {
|
|
15905
|
-
"kind": "OBJECT",
|
|
15906
|
-
"name": "RoutePath",
|
|
15907
|
-
"ofType": null
|
|
15908
|
-
},
|
|
15909
|
-
"isDeprecated": false,
|
|
15910
|
-
"deprecationReason": null
|
|
15911
|
-
},
|
|
15912
16062
|
{
|
|
15913
16063
|
"name": "station",
|
|
15914
16064
|
"description": "Get information about a station by its ID.",
|
|
@@ -18873,6 +19023,29 @@
|
|
|
18873
19023
|
"enumValues": null,
|
|
18874
19024
|
"possibleTypes": null
|
|
18875
19025
|
},
|
|
19026
|
+
{
|
|
19027
|
+
"kind": "ENUM",
|
|
19028
|
+
"name": "RouteAvoid",
|
|
19029
|
+
"description": "Types of route features that can be avoided in routing.",
|
|
19030
|
+
"fields": null,
|
|
19031
|
+
"inputFields": null,
|
|
19032
|
+
"interfaces": null,
|
|
19033
|
+
"enumValues": [
|
|
19034
|
+
{
|
|
19035
|
+
"name": "toll_road",
|
|
19036
|
+
"description": null,
|
|
19037
|
+
"isDeprecated": false,
|
|
19038
|
+
"deprecationReason": null
|
|
19039
|
+
},
|
|
19040
|
+
{
|
|
19041
|
+
"name": "ferry",
|
|
19042
|
+
"description": null,
|
|
19043
|
+
"isDeprecated": false,
|
|
19044
|
+
"deprecationReason": null
|
|
19045
|
+
}
|
|
19046
|
+
],
|
|
19047
|
+
"possibleTypes": null
|
|
19048
|
+
},
|
|
18876
19049
|
{
|
|
18877
19050
|
"kind": "OBJECT",
|
|
18878
19051
|
"name": "RouteDestinationFeaturePoint",
|
|
@@ -19460,6 +19633,18 @@
|
|
|
19460
19633
|
},
|
|
19461
19634
|
"isDeprecated": false,
|
|
19462
19635
|
"deprecationReason": null
|
|
19636
|
+
},
|
|
19637
|
+
{
|
|
19638
|
+
"name": "operator_id",
|
|
19639
|
+
"description": "ID of the station's operator.",
|
|
19640
|
+
"args": [],
|
|
19641
|
+
"type": {
|
|
19642
|
+
"kind": "SCALAR",
|
|
19643
|
+
"name": "ID",
|
|
19644
|
+
"ofType": null
|
|
19645
|
+
},
|
|
19646
|
+
"isDeprecated": false,
|
|
19647
|
+
"deprecationReason": null
|
|
19463
19648
|
}
|
|
19464
19649
|
],
|
|
19465
19650
|
"inputFields": null,
|
|
@@ -21185,7 +21370,7 @@
|
|
|
21185
21370
|
},
|
|
21186
21371
|
{
|
|
21187
21372
|
"name": "average_speed",
|
|
21188
|
-
"description": "Average speed of a route path segment.",
|
|
21373
|
+
"description": "Average speed of a route path segment. This value is determined using legal maximum speed and, if provided, the user defined maximum speed.",
|
|
21189
21374
|
"args": [
|
|
21190
21375
|
{
|
|
21191
21376
|
"name": "unit",
|
|
@@ -21320,8 +21505,8 @@
|
|
|
21320
21505
|
"ofType": null
|
|
21321
21506
|
}
|
|
21322
21507
|
},
|
|
21323
|
-
"isDeprecated":
|
|
21324
|
-
"deprecationReason":
|
|
21508
|
+
"isDeprecated": true,
|
|
21509
|
+
"deprecationReason": "Will be removed in the future."
|
|
21325
21510
|
}
|
|
21326
21511
|
],
|
|
21327
21512
|
"inputFields": null,
|
|
@@ -23557,15 +23742,15 @@
|
|
|
23557
23742
|
"deprecationReason": null
|
|
23558
23743
|
},
|
|
23559
23744
|
{
|
|
23560
|
-
"name": "
|
|
23561
|
-
"description": "
|
|
23745
|
+
"name": "season",
|
|
23746
|
+
"description": "Season for which the leg was calculated.",
|
|
23562
23747
|
"args": [],
|
|
23563
23748
|
"type": {
|
|
23564
23749
|
"kind": "NON_NULL",
|
|
23565
23750
|
"name": null,
|
|
23566
23751
|
"ofType": {
|
|
23567
|
-
"kind": "
|
|
23568
|
-
"name": "
|
|
23752
|
+
"kind": "ENUM",
|
|
23753
|
+
"name": "RouteOperationalElectricitySeason",
|
|
23569
23754
|
"ofType": null
|
|
23570
23755
|
}
|
|
23571
23756
|
},
|
|
@@ -23573,15 +23758,15 @@
|
|
|
23573
23758
|
"deprecationReason": null
|
|
23574
23759
|
},
|
|
23575
23760
|
{
|
|
23576
|
-
"name": "
|
|
23577
|
-
"description": "
|
|
23761
|
+
"name": "climate",
|
|
23762
|
+
"description": "Climate for which the leg was calculated.",
|
|
23578
23763
|
"args": [],
|
|
23579
23764
|
"type": {
|
|
23580
23765
|
"kind": "NON_NULL",
|
|
23581
23766
|
"name": null,
|
|
23582
23767
|
"ofType": {
|
|
23583
|
-
"kind": "
|
|
23584
|
-
"name": "
|
|
23768
|
+
"kind": "ENUM",
|
|
23769
|
+
"name": "RouteOperationalElectricityClimate",
|
|
23585
23770
|
"ofType": null
|
|
23586
23771
|
}
|
|
23587
23772
|
},
|
|
@@ -23589,15 +23774,15 @@
|
|
|
23589
23774
|
"deprecationReason": null
|
|
23590
23775
|
},
|
|
23591
23776
|
{
|
|
23592
|
-
"name": "
|
|
23593
|
-
"description": "
|
|
23777
|
+
"name": "average_demand",
|
|
23778
|
+
"description": "Estimated electricity demand at the time and place the electricity for this leg was obtained as a fraction of the annual average demand.",
|
|
23594
23779
|
"args": [],
|
|
23595
23780
|
"type": {
|
|
23596
23781
|
"kind": "NON_NULL",
|
|
23597
23782
|
"name": null,
|
|
23598
23783
|
"ofType": {
|
|
23599
|
-
"kind": "
|
|
23600
|
-
"name": "
|
|
23784
|
+
"kind": "SCALAR",
|
|
23785
|
+
"name": "Float",
|
|
23601
23786
|
"ofType": null
|
|
23602
23787
|
}
|
|
23603
23788
|
},
|
|
@@ -23605,15 +23790,15 @@
|
|
|
23605
23790
|
"deprecationReason": null
|
|
23606
23791
|
},
|
|
23607
23792
|
{
|
|
23608
|
-
"name": "
|
|
23609
|
-
"description": "
|
|
23793
|
+
"name": "base_load_fraction",
|
|
23794
|
+
"description": "Fraction of regional power generation that is not affected by demand (is assumed to always be on).",
|
|
23610
23795
|
"args": [],
|
|
23611
23796
|
"type": {
|
|
23612
23797
|
"kind": "NON_NULL",
|
|
23613
23798
|
"name": null,
|
|
23614
23799
|
"ofType": {
|
|
23615
|
-
"kind": "
|
|
23616
|
-
"name": "
|
|
23800
|
+
"kind": "SCALAR",
|
|
23801
|
+
"name": "Float",
|
|
23617
23802
|
"ofType": null
|
|
23618
23803
|
}
|
|
23619
23804
|
},
|
|
@@ -31148,6 +31333,97 @@
|
|
|
31148
31333
|
"name": "Subscription",
|
|
31149
31334
|
"description": null,
|
|
31150
31335
|
"fields": [
|
|
31336
|
+
{
|
|
31337
|
+
"name": "routeUpdatedById",
|
|
31338
|
+
"description": "Deprecated: In favor of route.",
|
|
31339
|
+
"args": [
|
|
31340
|
+
{
|
|
31341
|
+
"name": "id",
|
|
31342
|
+
"description": null,
|
|
31343
|
+
"type": {
|
|
31344
|
+
"kind": "NON_NULL",
|
|
31345
|
+
"name": null,
|
|
31346
|
+
"ofType": {
|
|
31347
|
+
"kind": "SCALAR",
|
|
31348
|
+
"name": "ID",
|
|
31349
|
+
"ofType": null
|
|
31350
|
+
}
|
|
31351
|
+
},
|
|
31352
|
+
"defaultValue": null,
|
|
31353
|
+
"isDeprecated": false,
|
|
31354
|
+
"deprecationReason": null
|
|
31355
|
+
}
|
|
31356
|
+
],
|
|
31357
|
+
"type": {
|
|
31358
|
+
"kind": "OBJECT",
|
|
31359
|
+
"name": "Route",
|
|
31360
|
+
"ofType": null
|
|
31361
|
+
},
|
|
31362
|
+
"isDeprecated": false,
|
|
31363
|
+
"deprecationReason": null
|
|
31364
|
+
},
|
|
31365
|
+
{
|
|
31366
|
+
"name": "route",
|
|
31367
|
+
"description": "Subscribe to a specific route to receive system event updates.",
|
|
31368
|
+
"args": [
|
|
31369
|
+
{
|
|
31370
|
+
"name": "id",
|
|
31371
|
+
"description": "ID of a route.",
|
|
31372
|
+
"type": {
|
|
31373
|
+
"kind": "NON_NULL",
|
|
31374
|
+
"name": null,
|
|
31375
|
+
"ofType": {
|
|
31376
|
+
"kind": "SCALAR",
|
|
31377
|
+
"name": "ID",
|
|
31378
|
+
"ofType": null
|
|
31379
|
+
}
|
|
31380
|
+
},
|
|
31381
|
+
"defaultValue": null,
|
|
31382
|
+
"isDeprecated": false,
|
|
31383
|
+
"deprecationReason": null
|
|
31384
|
+
}
|
|
31385
|
+
],
|
|
31386
|
+
"type": {
|
|
31387
|
+
"kind": "NON_NULL",
|
|
31388
|
+
"name": null,
|
|
31389
|
+
"ofType": {
|
|
31390
|
+
"kind": "OBJECT",
|
|
31391
|
+
"name": "RouteResponse",
|
|
31392
|
+
"ofType": null
|
|
31393
|
+
}
|
|
31394
|
+
},
|
|
31395
|
+
"isDeprecated": false,
|
|
31396
|
+
"deprecationReason": null
|
|
31397
|
+
},
|
|
31398
|
+
{
|
|
31399
|
+
"name": "navigationUpdatedById",
|
|
31400
|
+
"description": "[BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates",
|
|
31401
|
+
"args": [
|
|
31402
|
+
{
|
|
31403
|
+
"name": "id",
|
|
31404
|
+
"description": null,
|
|
31405
|
+
"type": {
|
|
31406
|
+
"kind": "NON_NULL",
|
|
31407
|
+
"name": null,
|
|
31408
|
+
"ofType": {
|
|
31409
|
+
"kind": "SCALAR",
|
|
31410
|
+
"name": "ID",
|
|
31411
|
+
"ofType": null
|
|
31412
|
+
}
|
|
31413
|
+
},
|
|
31414
|
+
"defaultValue": null,
|
|
31415
|
+
"isDeprecated": false,
|
|
31416
|
+
"deprecationReason": null
|
|
31417
|
+
}
|
|
31418
|
+
],
|
|
31419
|
+
"type": {
|
|
31420
|
+
"kind": "OBJECT",
|
|
31421
|
+
"name": "Navigation",
|
|
31422
|
+
"ofType": null
|
|
31423
|
+
},
|
|
31424
|
+
"isDeprecated": false,
|
|
31425
|
+
"deprecationReason": null
|
|
31426
|
+
},
|
|
31151
31427
|
{
|
|
31152
31428
|
"name": "connectedVehicle",
|
|
31153
31429
|
"description": "[BETA] Subscribe to a connected vehicle.",
|
|
@@ -31205,97 +31481,6 @@
|
|
|
31205
31481
|
},
|
|
31206
31482
|
"isDeprecated": false,
|
|
31207
31483
|
"deprecationReason": null
|
|
31208
|
-
},
|
|
31209
|
-
{
|
|
31210
|
-
"name": "navigationUpdatedById",
|
|
31211
|
-
"description": "[BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates",
|
|
31212
|
-
"args": [
|
|
31213
|
-
{
|
|
31214
|
-
"name": "id",
|
|
31215
|
-
"description": null,
|
|
31216
|
-
"type": {
|
|
31217
|
-
"kind": "NON_NULL",
|
|
31218
|
-
"name": null,
|
|
31219
|
-
"ofType": {
|
|
31220
|
-
"kind": "SCALAR",
|
|
31221
|
-
"name": "ID",
|
|
31222
|
-
"ofType": null
|
|
31223
|
-
}
|
|
31224
|
-
},
|
|
31225
|
-
"defaultValue": null,
|
|
31226
|
-
"isDeprecated": false,
|
|
31227
|
-
"deprecationReason": null
|
|
31228
|
-
}
|
|
31229
|
-
],
|
|
31230
|
-
"type": {
|
|
31231
|
-
"kind": "OBJECT",
|
|
31232
|
-
"name": "Navigation",
|
|
31233
|
-
"ofType": null
|
|
31234
|
-
},
|
|
31235
|
-
"isDeprecated": false,
|
|
31236
|
-
"deprecationReason": null
|
|
31237
|
-
},
|
|
31238
|
-
{
|
|
31239
|
-
"name": "routeUpdatedById",
|
|
31240
|
-
"description": "Deprecated: In favor of route.",
|
|
31241
|
-
"args": [
|
|
31242
|
-
{
|
|
31243
|
-
"name": "id",
|
|
31244
|
-
"description": null,
|
|
31245
|
-
"type": {
|
|
31246
|
-
"kind": "NON_NULL",
|
|
31247
|
-
"name": null,
|
|
31248
|
-
"ofType": {
|
|
31249
|
-
"kind": "SCALAR",
|
|
31250
|
-
"name": "ID",
|
|
31251
|
-
"ofType": null
|
|
31252
|
-
}
|
|
31253
|
-
},
|
|
31254
|
-
"defaultValue": null,
|
|
31255
|
-
"isDeprecated": false,
|
|
31256
|
-
"deprecationReason": null
|
|
31257
|
-
}
|
|
31258
|
-
],
|
|
31259
|
-
"type": {
|
|
31260
|
-
"kind": "OBJECT",
|
|
31261
|
-
"name": "Route",
|
|
31262
|
-
"ofType": null
|
|
31263
|
-
},
|
|
31264
|
-
"isDeprecated": false,
|
|
31265
|
-
"deprecationReason": null
|
|
31266
|
-
},
|
|
31267
|
-
{
|
|
31268
|
-
"name": "route",
|
|
31269
|
-
"description": "Subscribe to a specific route to receive system event updates.",
|
|
31270
|
-
"args": [
|
|
31271
|
-
{
|
|
31272
|
-
"name": "id",
|
|
31273
|
-
"description": "ID of a route.",
|
|
31274
|
-
"type": {
|
|
31275
|
-
"kind": "NON_NULL",
|
|
31276
|
-
"name": null,
|
|
31277
|
-
"ofType": {
|
|
31278
|
-
"kind": "SCALAR",
|
|
31279
|
-
"name": "ID",
|
|
31280
|
-
"ofType": null
|
|
31281
|
-
}
|
|
31282
|
-
},
|
|
31283
|
-
"defaultValue": null,
|
|
31284
|
-
"isDeprecated": false,
|
|
31285
|
-
"deprecationReason": null
|
|
31286
|
-
}
|
|
31287
|
-
],
|
|
31288
|
-
"type": {
|
|
31289
|
-
"kind": "NON_NULL",
|
|
31290
|
-
"name": null,
|
|
31291
|
-
"ofType": {
|
|
31292
|
-
"kind": "OBJECT",
|
|
31293
|
-
"name": "RouteResponse",
|
|
31294
|
-
"ofType": null
|
|
31295
|
-
}
|
|
31296
|
-
},
|
|
31297
|
-
"isDeprecated": false,
|
|
31298
|
-
"deprecationReason": null
|
|
31299
31484
|
}
|
|
31300
31485
|
],
|
|
31301
31486
|
"inputFields": null,
|
|
@@ -40835,544 +41020,12 @@
|
|
|
40835
41020
|
],
|
|
40836
41021
|
"directives": [
|
|
40837
41022
|
{
|
|
40838
|
-
"name": "
|
|
40839
|
-
"description": "
|
|
40840
|
-
"isRepeatable": false,
|
|
40841
|
-
"locations": ["FIELD_DEFINITION"],
|
|
40842
|
-
"args": [
|
|
40843
|
-
{
|
|
40844
|
-
"name": "unitParameterName",
|
|
40845
|
-
"description": null,
|
|
40846
|
-
"type": {
|
|
40847
|
-
"kind": "SCALAR",
|
|
40848
|
-
"name": "PlainString",
|
|
40849
|
-
"ofType": null
|
|
40850
|
-
},
|
|
40851
|
-
"defaultValue": null,
|
|
40852
|
-
"isDeprecated": false,
|
|
40853
|
-
"deprecationReason": null
|
|
40854
|
-
}
|
|
40855
|
-
]
|
|
40856
|
-
},
|
|
40857
|
-
{
|
|
40858
|
-
"name": "defaultValue",
|
|
40859
|
-
"description": null,
|
|
40860
|
-
"isRepeatable": false,
|
|
40861
|
-
"locations": ["FIELD_DEFINITION"],
|
|
40862
|
-
"args": [
|
|
40863
|
-
{
|
|
40864
|
-
"name": "type",
|
|
40865
|
-
"description": null,
|
|
40866
|
-
"type": {
|
|
40867
|
-
"kind": "SCALAR",
|
|
40868
|
-
"name": "PlainString",
|
|
40869
|
-
"ofType": null
|
|
40870
|
-
},
|
|
40871
|
-
"defaultValue": null,
|
|
40872
|
-
"isDeprecated": false,
|
|
40873
|
-
"deprecationReason": null
|
|
40874
|
-
},
|
|
40875
|
-
{
|
|
40876
|
-
"name": "defaultValue",
|
|
40877
|
-
"description": null,
|
|
40878
|
-
"type": {
|
|
40879
|
-
"kind": "LIST",
|
|
40880
|
-
"name": null,
|
|
40881
|
-
"ofType": {
|
|
40882
|
-
"kind": "SCALAR",
|
|
40883
|
-
"name": "PlainString",
|
|
40884
|
-
"ofType": null
|
|
40885
|
-
}
|
|
40886
|
-
},
|
|
40887
|
-
"defaultValue": null,
|
|
40888
|
-
"isDeprecated": false,
|
|
40889
|
-
"deprecationReason": null
|
|
40890
|
-
},
|
|
40891
|
-
{
|
|
40892
|
-
"name": "description",
|
|
40893
|
-
"description": null,
|
|
40894
|
-
"type": {
|
|
40895
|
-
"kind": "SCALAR",
|
|
40896
|
-
"name": "PlainString",
|
|
40897
|
-
"ofType": null
|
|
40898
|
-
},
|
|
40899
|
-
"defaultValue": null,
|
|
40900
|
-
"isDeprecated": false,
|
|
40901
|
-
"deprecationReason": null
|
|
40902
|
-
}
|
|
40903
|
-
]
|
|
40904
|
-
},
|
|
40905
|
-
{
|
|
40906
|
-
"name": "emissionUnitArgument",
|
|
40907
|
-
"description": null,
|
|
40908
|
-
"isRepeatable": false,
|
|
40909
|
-
"locations": ["FIELD_DEFINITION"],
|
|
40910
|
-
"args": [
|
|
40911
|
-
{
|
|
40912
|
-
"name": "type",
|
|
40913
|
-
"description": null,
|
|
40914
|
-
"type": {
|
|
40915
|
-
"kind": "SCALAR",
|
|
40916
|
-
"name": "PlainString",
|
|
40917
|
-
"ofType": null
|
|
40918
|
-
},
|
|
40919
|
-
"defaultValue": null,
|
|
40920
|
-
"isDeprecated": false,
|
|
40921
|
-
"deprecationReason": null
|
|
40922
|
-
},
|
|
40923
|
-
{
|
|
40924
|
-
"name": "defaultValue",
|
|
40925
|
-
"description": null,
|
|
40926
|
-
"type": {
|
|
40927
|
-
"kind": "SCALAR",
|
|
40928
|
-
"name": "PlainString",
|
|
40929
|
-
"ofType": null
|
|
40930
|
-
},
|
|
40931
|
-
"defaultValue": null,
|
|
40932
|
-
"isDeprecated": false,
|
|
40933
|
-
"deprecationReason": null
|
|
40934
|
-
},
|
|
40935
|
-
{
|
|
40936
|
-
"name": "description",
|
|
40937
|
-
"description": null,
|
|
40938
|
-
"type": {
|
|
40939
|
-
"kind": "SCALAR",
|
|
40940
|
-
"name": "PlainString",
|
|
40941
|
-
"ofType": null
|
|
40942
|
-
},
|
|
40943
|
-
"defaultValue": null,
|
|
40944
|
-
"isDeprecated": false,
|
|
40945
|
-
"deprecationReason": null
|
|
40946
|
-
}
|
|
40947
|
-
]
|
|
40948
|
-
},
|
|
40949
|
-
{
|
|
40950
|
-
"name": "fuelUnitArgument",
|
|
40951
|
-
"description": null,
|
|
40952
|
-
"isRepeatable": false,
|
|
40953
|
-
"locations": ["FIELD_DEFINITION"],
|
|
40954
|
-
"args": [
|
|
40955
|
-
{
|
|
40956
|
-
"name": "type",
|
|
40957
|
-
"description": null,
|
|
40958
|
-
"type": {
|
|
40959
|
-
"kind": "SCALAR",
|
|
40960
|
-
"name": "PlainString",
|
|
40961
|
-
"ofType": null
|
|
40962
|
-
},
|
|
40963
|
-
"defaultValue": null,
|
|
40964
|
-
"isDeprecated": false,
|
|
40965
|
-
"deprecationReason": null
|
|
40966
|
-
},
|
|
40967
|
-
{
|
|
40968
|
-
"name": "defaultValue",
|
|
40969
|
-
"description": null,
|
|
40970
|
-
"type": {
|
|
40971
|
-
"kind": "SCALAR",
|
|
40972
|
-
"name": "PlainString",
|
|
40973
|
-
"ofType": null
|
|
40974
|
-
},
|
|
40975
|
-
"defaultValue": null,
|
|
40976
|
-
"isDeprecated": false,
|
|
40977
|
-
"deprecationReason": null
|
|
40978
|
-
},
|
|
40979
|
-
{
|
|
40980
|
-
"name": "description",
|
|
40981
|
-
"description": null,
|
|
40982
|
-
"type": {
|
|
40983
|
-
"kind": "SCALAR",
|
|
40984
|
-
"name": "PlainString",
|
|
40985
|
-
"ofType": null
|
|
40986
|
-
},
|
|
40987
|
-
"defaultValue": null,
|
|
40988
|
-
"isDeprecated": false,
|
|
40989
|
-
"deprecationReason": null
|
|
40990
|
-
}
|
|
40991
|
-
]
|
|
40992
|
-
},
|
|
40993
|
-
{
|
|
40994
|
-
"name": "ocpi",
|
|
40995
|
-
"description": "Indicates that a property is OCPI-compliant.",
|
|
41023
|
+
"name": "oneOf",
|
|
41024
|
+
"description": "Indicates exactly one field must be supplied and this field must not be `null`.",
|
|
40996
41025
|
"isRepeatable": false,
|
|
40997
|
-
"locations": ["
|
|
41026
|
+
"locations": ["INPUT_OBJECT"],
|
|
40998
41027
|
"args": []
|
|
40999
41028
|
},
|
|
41000
|
-
{
|
|
41001
|
-
"name": "sanitizeHtml",
|
|
41002
|
-
"description": null,
|
|
41003
|
-
"isRepeatable": false,
|
|
41004
|
-
"locations": ["FIELD_DEFINITION", "INPUT_FIELD_DEFINITION"],
|
|
41005
|
-
"args": [
|
|
41006
|
-
{
|
|
41007
|
-
"name": "allowedTags",
|
|
41008
|
-
"description": null,
|
|
41009
|
-
"type": {
|
|
41010
|
-
"kind": "LIST",
|
|
41011
|
-
"name": null,
|
|
41012
|
-
"ofType": {
|
|
41013
|
-
"kind": "SCALAR",
|
|
41014
|
-
"name": "String",
|
|
41015
|
-
"ofType": null
|
|
41016
|
-
}
|
|
41017
|
-
},
|
|
41018
|
-
"defaultValue": null,
|
|
41019
|
-
"isDeprecated": false,
|
|
41020
|
-
"deprecationReason": null
|
|
41021
|
-
},
|
|
41022
|
-
{
|
|
41023
|
-
"name": "allowedIframeHostnames",
|
|
41024
|
-
"description": null,
|
|
41025
|
-
"type": {
|
|
41026
|
-
"kind": "LIST",
|
|
41027
|
-
"name": null,
|
|
41028
|
-
"ofType": {
|
|
41029
|
-
"kind": "SCALAR",
|
|
41030
|
-
"name": "String",
|
|
41031
|
-
"ofType": null
|
|
41032
|
-
}
|
|
41033
|
-
},
|
|
41034
|
-
"defaultValue": null,
|
|
41035
|
-
"isDeprecated": false,
|
|
41036
|
-
"deprecationReason": null
|
|
41037
|
-
},
|
|
41038
|
-
{
|
|
41039
|
-
"name": "selfClosing",
|
|
41040
|
-
"description": null,
|
|
41041
|
-
"type": {
|
|
41042
|
-
"kind": "LIST",
|
|
41043
|
-
"name": null,
|
|
41044
|
-
"ofType": {
|
|
41045
|
-
"kind": "SCALAR",
|
|
41046
|
-
"name": "String",
|
|
41047
|
-
"ofType": null
|
|
41048
|
-
}
|
|
41049
|
-
},
|
|
41050
|
-
"defaultValue": null,
|
|
41051
|
-
"isDeprecated": false,
|
|
41052
|
-
"deprecationReason": null
|
|
41053
|
-
},
|
|
41054
|
-
{
|
|
41055
|
-
"name": "allowedSchemes",
|
|
41056
|
-
"description": null,
|
|
41057
|
-
"type": {
|
|
41058
|
-
"kind": "LIST",
|
|
41059
|
-
"name": null,
|
|
41060
|
-
"ofType": {
|
|
41061
|
-
"kind": "SCALAR",
|
|
41062
|
-
"name": "String",
|
|
41063
|
-
"ofType": null
|
|
41064
|
-
}
|
|
41065
|
-
},
|
|
41066
|
-
"defaultValue": null,
|
|
41067
|
-
"isDeprecated": false,
|
|
41068
|
-
"deprecationReason": null
|
|
41069
|
-
},
|
|
41070
|
-
{
|
|
41071
|
-
"name": "allowedSchemesAppliedToAttributes",
|
|
41072
|
-
"description": null,
|
|
41073
|
-
"type": {
|
|
41074
|
-
"kind": "LIST",
|
|
41075
|
-
"name": null,
|
|
41076
|
-
"ofType": {
|
|
41077
|
-
"kind": "SCALAR",
|
|
41078
|
-
"name": "String",
|
|
41079
|
-
"ofType": null
|
|
41080
|
-
}
|
|
41081
|
-
},
|
|
41082
|
-
"defaultValue": null,
|
|
41083
|
-
"isDeprecated": false,
|
|
41084
|
-
"deprecationReason": null
|
|
41085
|
-
}
|
|
41086
|
-
]
|
|
41087
|
-
},
|
|
41088
|
-
{
|
|
41089
|
-
"name": "stateOfChargeConvert",
|
|
41090
|
-
"description": "Converting the value of a state of charge input to a single unit.",
|
|
41091
|
-
"isRepeatable": false,
|
|
41092
|
-
"locations": ["FIELD_DEFINITION"],
|
|
41093
|
-
"args": [
|
|
41094
|
-
{
|
|
41095
|
-
"name": "unitParameterName",
|
|
41096
|
-
"description": null,
|
|
41097
|
-
"type": {
|
|
41098
|
-
"kind": "SCALAR",
|
|
41099
|
-
"name": "PlainString",
|
|
41100
|
-
"ofType": null
|
|
41101
|
-
},
|
|
41102
|
-
"defaultValue": null,
|
|
41103
|
-
"isDeprecated": false,
|
|
41104
|
-
"deprecationReason": null
|
|
41105
|
-
}
|
|
41106
|
-
]
|
|
41107
|
-
},
|
|
41108
|
-
{
|
|
41109
|
-
"name": "subFieldUnitConvert",
|
|
41110
|
-
"description": "Converts the value of a member with nested fields to another unit type.",
|
|
41111
|
-
"isRepeatable": false,
|
|
41112
|
-
"locations": ["FIELD_DEFINITION"],
|
|
41113
|
-
"args": [
|
|
41114
|
-
{
|
|
41115
|
-
"name": "fromUnit",
|
|
41116
|
-
"description": null,
|
|
41117
|
-
"type": {
|
|
41118
|
-
"kind": "SCALAR",
|
|
41119
|
-
"name": "PlainString",
|
|
41120
|
-
"ofType": null
|
|
41121
|
-
},
|
|
41122
|
-
"defaultValue": null,
|
|
41123
|
-
"isDeprecated": false,
|
|
41124
|
-
"deprecationReason": null
|
|
41125
|
-
},
|
|
41126
|
-
{
|
|
41127
|
-
"name": "subField",
|
|
41128
|
-
"description": null,
|
|
41129
|
-
"type": {
|
|
41130
|
-
"kind": "SCALAR",
|
|
41131
|
-
"name": "PlainString",
|
|
41132
|
-
"ofType": null
|
|
41133
|
-
},
|
|
41134
|
-
"defaultValue": null,
|
|
41135
|
-
"isDeprecated": false,
|
|
41136
|
-
"deprecationReason": null
|
|
41137
|
-
},
|
|
41138
|
-
{
|
|
41139
|
-
"name": "unitParameterName",
|
|
41140
|
-
"description": null,
|
|
41141
|
-
"type": {
|
|
41142
|
-
"kind": "SCALAR",
|
|
41143
|
-
"name": "PlainString",
|
|
41144
|
-
"ofType": null
|
|
41145
|
-
},
|
|
41146
|
-
"defaultValue": null,
|
|
41147
|
-
"isDeprecated": false,
|
|
41148
|
-
"deprecationReason": null
|
|
41149
|
-
},
|
|
41150
|
-
{
|
|
41151
|
-
"name": "round",
|
|
41152
|
-
"description": null,
|
|
41153
|
-
"type": {
|
|
41154
|
-
"kind": "SCALAR",
|
|
41155
|
-
"name": "Boolean",
|
|
41156
|
-
"ofType": null
|
|
41157
|
-
},
|
|
41158
|
-
"defaultValue": "false",
|
|
41159
|
-
"isDeprecated": false,
|
|
41160
|
-
"deprecationReason": null
|
|
41161
|
-
}
|
|
41162
|
-
]
|
|
41163
|
-
},
|
|
41164
|
-
{
|
|
41165
|
-
"name": "torqueUnitArgument",
|
|
41166
|
-
"description": null,
|
|
41167
|
-
"isRepeatable": false,
|
|
41168
|
-
"locations": ["FIELD_DEFINITION"],
|
|
41169
|
-
"args": [
|
|
41170
|
-
{
|
|
41171
|
-
"name": "type",
|
|
41172
|
-
"description": null,
|
|
41173
|
-
"type": {
|
|
41174
|
-
"kind": "SCALAR",
|
|
41175
|
-
"name": "PlainString",
|
|
41176
|
-
"ofType": null
|
|
41177
|
-
},
|
|
41178
|
-
"defaultValue": null,
|
|
41179
|
-
"isDeprecated": false,
|
|
41180
|
-
"deprecationReason": null
|
|
41181
|
-
},
|
|
41182
|
-
{
|
|
41183
|
-
"name": "defaultValue",
|
|
41184
|
-
"description": null,
|
|
41185
|
-
"type": {
|
|
41186
|
-
"kind": "SCALAR",
|
|
41187
|
-
"name": "PlainString",
|
|
41188
|
-
"ofType": null
|
|
41189
|
-
},
|
|
41190
|
-
"defaultValue": null,
|
|
41191
|
-
"isDeprecated": false,
|
|
41192
|
-
"deprecationReason": null
|
|
41193
|
-
},
|
|
41194
|
-
{
|
|
41195
|
-
"name": "description",
|
|
41196
|
-
"description": null,
|
|
41197
|
-
"type": {
|
|
41198
|
-
"kind": "SCALAR",
|
|
41199
|
-
"name": "PlainString",
|
|
41200
|
-
"ofType": null
|
|
41201
|
-
},
|
|
41202
|
-
"defaultValue": null,
|
|
41203
|
-
"isDeprecated": false,
|
|
41204
|
-
"deprecationReason": null
|
|
41205
|
-
}
|
|
41206
|
-
]
|
|
41207
|
-
},
|
|
41208
|
-
{
|
|
41209
|
-
"name": "unitArgument",
|
|
41210
|
-
"description": null,
|
|
41211
|
-
"isRepeatable": false,
|
|
41212
|
-
"locations": ["FIELD_DEFINITION"],
|
|
41213
|
-
"args": [
|
|
41214
|
-
{
|
|
41215
|
-
"name": "type",
|
|
41216
|
-
"description": null,
|
|
41217
|
-
"type": {
|
|
41218
|
-
"kind": "SCALAR",
|
|
41219
|
-
"name": "PlainString",
|
|
41220
|
-
"ofType": null
|
|
41221
|
-
},
|
|
41222
|
-
"defaultValue": null,
|
|
41223
|
-
"isDeprecated": false,
|
|
41224
|
-
"deprecationReason": null
|
|
41225
|
-
},
|
|
41226
|
-
{
|
|
41227
|
-
"name": "defaultValue",
|
|
41228
|
-
"description": null,
|
|
41229
|
-
"type": {
|
|
41230
|
-
"kind": "SCALAR",
|
|
41231
|
-
"name": "PlainString",
|
|
41232
|
-
"ofType": null
|
|
41233
|
-
},
|
|
41234
|
-
"defaultValue": null,
|
|
41235
|
-
"isDeprecated": false,
|
|
41236
|
-
"deprecationReason": null
|
|
41237
|
-
},
|
|
41238
|
-
{
|
|
41239
|
-
"name": "description",
|
|
41240
|
-
"description": null,
|
|
41241
|
-
"type": {
|
|
41242
|
-
"kind": "SCALAR",
|
|
41243
|
-
"name": "PlainString",
|
|
41244
|
-
"ofType": null
|
|
41245
|
-
},
|
|
41246
|
-
"defaultValue": null,
|
|
41247
|
-
"isDeprecated": false,
|
|
41248
|
-
"deprecationReason": null
|
|
41249
|
-
}
|
|
41250
|
-
]
|
|
41251
|
-
},
|
|
41252
|
-
{
|
|
41253
|
-
"name": "unitConvert",
|
|
41254
|
-
"description": "Converts the value of a field to another unit type.",
|
|
41255
|
-
"isRepeatable": false,
|
|
41256
|
-
"locations": ["FIELD_DEFINITION"],
|
|
41257
|
-
"args": [
|
|
41258
|
-
{
|
|
41259
|
-
"name": "fromUnit",
|
|
41260
|
-
"description": null,
|
|
41261
|
-
"type": {
|
|
41262
|
-
"kind": "SCALAR",
|
|
41263
|
-
"name": "PlainString",
|
|
41264
|
-
"ofType": null
|
|
41265
|
-
},
|
|
41266
|
-
"defaultValue": null,
|
|
41267
|
-
"isDeprecated": false,
|
|
41268
|
-
"deprecationReason": null
|
|
41269
|
-
},
|
|
41270
|
-
{
|
|
41271
|
-
"name": "unitParameterName",
|
|
41272
|
-
"description": null,
|
|
41273
|
-
"type": {
|
|
41274
|
-
"kind": "SCALAR",
|
|
41275
|
-
"name": "PlainString",
|
|
41276
|
-
"ofType": null
|
|
41277
|
-
},
|
|
41278
|
-
"defaultValue": null,
|
|
41279
|
-
"isDeprecated": false,
|
|
41280
|
-
"deprecationReason": null
|
|
41281
|
-
},
|
|
41282
|
-
{
|
|
41283
|
-
"name": "round",
|
|
41284
|
-
"description": null,
|
|
41285
|
-
"type": {
|
|
41286
|
-
"kind": "SCALAR",
|
|
41287
|
-
"name": "Boolean",
|
|
41288
|
-
"ofType": null
|
|
41289
|
-
},
|
|
41290
|
-
"defaultValue": "false",
|
|
41291
|
-
"isDeprecated": false,
|
|
41292
|
-
"deprecationReason": null
|
|
41293
|
-
}
|
|
41294
|
-
]
|
|
41295
|
-
},
|
|
41296
|
-
{
|
|
41297
|
-
"name": "validateIntInterval",
|
|
41298
|
-
"description": "Validate if the value is a valid integer between min and max.",
|
|
41299
|
-
"isRepeatable": false,
|
|
41300
|
-
"locations": ["INPUT_FIELD_DEFINITION"],
|
|
41301
|
-
"args": [
|
|
41302
|
-
{
|
|
41303
|
-
"name": "min",
|
|
41304
|
-
"description": null,
|
|
41305
|
-
"type": {
|
|
41306
|
-
"kind": "SCALAR",
|
|
41307
|
-
"name": "Int",
|
|
41308
|
-
"ofType": null
|
|
41309
|
-
},
|
|
41310
|
-
"defaultValue": null,
|
|
41311
|
-
"isDeprecated": false,
|
|
41312
|
-
"deprecationReason": null
|
|
41313
|
-
},
|
|
41314
|
-
{
|
|
41315
|
-
"name": "max",
|
|
41316
|
-
"description": null,
|
|
41317
|
-
"type": {
|
|
41318
|
-
"kind": "SCALAR",
|
|
41319
|
-
"name": "Int",
|
|
41320
|
-
"ofType": null
|
|
41321
|
-
},
|
|
41322
|
-
"defaultValue": null,
|
|
41323
|
-
"isDeprecated": false,
|
|
41324
|
-
"deprecationReason": null
|
|
41325
|
-
},
|
|
41326
|
-
{
|
|
41327
|
-
"name": "minErrorCode",
|
|
41328
|
-
"description": null,
|
|
41329
|
-
"type": {
|
|
41330
|
-
"kind": "SCALAR",
|
|
41331
|
-
"name": "String",
|
|
41332
|
-
"ofType": null
|
|
41333
|
-
},
|
|
41334
|
-
"defaultValue": null,
|
|
41335
|
-
"isDeprecated": false,
|
|
41336
|
-
"deprecationReason": null
|
|
41337
|
-
},
|
|
41338
|
-
{
|
|
41339
|
-
"name": "minErrorMessage",
|
|
41340
|
-
"description": null,
|
|
41341
|
-
"type": {
|
|
41342
|
-
"kind": "SCALAR",
|
|
41343
|
-
"name": "String",
|
|
41344
|
-
"ofType": null
|
|
41345
|
-
},
|
|
41346
|
-
"defaultValue": null,
|
|
41347
|
-
"isDeprecated": false,
|
|
41348
|
-
"deprecationReason": null
|
|
41349
|
-
},
|
|
41350
|
-
{
|
|
41351
|
-
"name": "maxErrorCode",
|
|
41352
|
-
"description": null,
|
|
41353
|
-
"type": {
|
|
41354
|
-
"kind": "SCALAR",
|
|
41355
|
-
"name": "String",
|
|
41356
|
-
"ofType": null
|
|
41357
|
-
},
|
|
41358
|
-
"defaultValue": null,
|
|
41359
|
-
"isDeprecated": false,
|
|
41360
|
-
"deprecationReason": null
|
|
41361
|
-
},
|
|
41362
|
-
{
|
|
41363
|
-
"name": "maxErrorMessage",
|
|
41364
|
-
"description": null,
|
|
41365
|
-
"type": {
|
|
41366
|
-
"kind": "SCALAR",
|
|
41367
|
-
"name": "String",
|
|
41368
|
-
"ofType": null
|
|
41369
|
-
},
|
|
41370
|
-
"defaultValue": null,
|
|
41371
|
-
"isDeprecated": false,
|
|
41372
|
-
"deprecationReason": null
|
|
41373
|
-
}
|
|
41374
|
-
]
|
|
41375
|
-
},
|
|
41376
41029
|
{
|
|
41377
41030
|
"name": "include",
|
|
41378
41031
|
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
|