@chargetrip/types 1.46.2 → 1.47.1
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 +14 -0
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +57 -11
- package/dist/node/index.js.map +1 -1
- package/dist/react-native/graphql.js +57 -11
- package/dist/react-native/graphql.js.map +1 -1
- package/dist/ts/graphql.d.ts +334 -71
- package/graphql.schema.json +1738 -715
- package/package.json +1 -1
- package/src/graphql.ts +365 -73
package/graphql.schema.json
CHANGED
|
@@ -328,6 +328,119 @@
|
|
|
328
328
|
],
|
|
329
329
|
"possibleTypes": null
|
|
330
330
|
},
|
|
331
|
+
{
|
|
332
|
+
"kind": "OBJECT",
|
|
333
|
+
"name": "AirPressure",
|
|
334
|
+
"description": null,
|
|
335
|
+
"fields": [
|
|
336
|
+
{
|
|
337
|
+
"name": "value",
|
|
338
|
+
"description": "Value of the atmospheric pressure.",
|
|
339
|
+
"args": [],
|
|
340
|
+
"type": {
|
|
341
|
+
"kind": "NON_NULL",
|
|
342
|
+
"name": null,
|
|
343
|
+
"ofType": {
|
|
344
|
+
"kind": "SCALAR",
|
|
345
|
+
"name": "Float",
|
|
346
|
+
"ofType": null
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"isDeprecated": false,
|
|
350
|
+
"deprecationReason": null
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "type",
|
|
354
|
+
"description": "Atmospheric pressure unit.",
|
|
355
|
+
"args": [],
|
|
356
|
+
"type": {
|
|
357
|
+
"kind": "NON_NULL",
|
|
358
|
+
"name": null,
|
|
359
|
+
"ofType": {
|
|
360
|
+
"kind": "ENUM",
|
|
361
|
+
"name": "AirPressureUnit",
|
|
362
|
+
"ofType": null
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"isDeprecated": false,
|
|
366
|
+
"deprecationReason": null
|
|
367
|
+
}
|
|
368
|
+
],
|
|
369
|
+
"inputFields": null,
|
|
370
|
+
"interfaces": [],
|
|
371
|
+
"enumValues": null,
|
|
372
|
+
"possibleTypes": null
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"kind": "SCALAR",
|
|
376
|
+
"name": "Float",
|
|
377
|
+
"description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
|
|
378
|
+
"fields": null,
|
|
379
|
+
"inputFields": null,
|
|
380
|
+
"interfaces": null,
|
|
381
|
+
"enumValues": null,
|
|
382
|
+
"possibleTypes": null
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"kind": "INPUT_OBJECT",
|
|
386
|
+
"name": "AirPressureInput",
|
|
387
|
+
"description": null,
|
|
388
|
+
"fields": null,
|
|
389
|
+
"inputFields": [
|
|
390
|
+
{
|
|
391
|
+
"name": "value",
|
|
392
|
+
"description": "Value of the atmospheric pressure.",
|
|
393
|
+
"type": {
|
|
394
|
+
"kind": "NON_NULL",
|
|
395
|
+
"name": null,
|
|
396
|
+
"ofType": {
|
|
397
|
+
"kind": "SCALAR",
|
|
398
|
+
"name": "Float",
|
|
399
|
+
"ofType": null
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"defaultValue": null,
|
|
403
|
+
"isDeprecated": false,
|
|
404
|
+
"deprecationReason": null
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "type",
|
|
408
|
+
"description": "Atmospheric pressure unit.",
|
|
409
|
+
"type": {
|
|
410
|
+
"kind": "NON_NULL",
|
|
411
|
+
"name": null,
|
|
412
|
+
"ofType": {
|
|
413
|
+
"kind": "ENUM",
|
|
414
|
+
"name": "AirPressureUnit",
|
|
415
|
+
"ofType": null
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"defaultValue": null,
|
|
419
|
+
"isDeprecated": false,
|
|
420
|
+
"deprecationReason": null
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"interfaces": null,
|
|
424
|
+
"enumValues": null,
|
|
425
|
+
"possibleTypes": null
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"kind": "ENUM",
|
|
429
|
+
"name": "AirPressureUnit",
|
|
430
|
+
"description": null,
|
|
431
|
+
"fields": null,
|
|
432
|
+
"inputFields": null,
|
|
433
|
+
"interfaces": null,
|
|
434
|
+
"enumValues": [
|
|
435
|
+
{
|
|
436
|
+
"name": "millibar",
|
|
437
|
+
"description": null,
|
|
438
|
+
"isDeprecated": false,
|
|
439
|
+
"deprecationReason": null
|
|
440
|
+
}
|
|
441
|
+
],
|
|
442
|
+
"possibleTypes": null
|
|
443
|
+
},
|
|
331
444
|
{
|
|
332
445
|
"kind": "OBJECT",
|
|
333
446
|
"name": "AlternativeStationRadius",
|
|
@@ -387,16 +500,6 @@
|
|
|
387
500
|
"enumValues": null,
|
|
388
501
|
"possibleTypes": null
|
|
389
502
|
},
|
|
390
|
-
{
|
|
391
|
-
"kind": "SCALAR",
|
|
392
|
-
"name": "Float",
|
|
393
|
-
"description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",
|
|
394
|
-
"fields": null,
|
|
395
|
-
"inputFields": null,
|
|
396
|
-
"interfaces": null,
|
|
397
|
-
"enumValues": null,
|
|
398
|
-
"possibleTypes": null
|
|
399
|
-
},
|
|
400
503
|
{
|
|
401
504
|
"kind": "INPUT_OBJECT",
|
|
402
505
|
"name": "AlternativeStationRadiusInput",
|
|
@@ -455,7 +558,7 @@
|
|
|
455
558
|
{
|
|
456
559
|
"kind": "ENUM",
|
|
457
560
|
"name": "Amenities",
|
|
458
|
-
"description": "Amenities available near a station",
|
|
561
|
+
"description": "Amenities available near a station.",
|
|
459
562
|
"fields": null,
|
|
460
563
|
"inputFields": null,
|
|
461
564
|
"interfaces": null,
|
|
@@ -526,35 +629,51 @@
|
|
|
526
629
|
{
|
|
527
630
|
"kind": "OBJECT",
|
|
528
631
|
"name": "Amenity",
|
|
529
|
-
"description": "
|
|
632
|
+
"description": "Amenity data.",
|
|
530
633
|
"fields": [
|
|
531
634
|
{
|
|
532
635
|
"name": "id",
|
|
533
|
-
"description": "Unique amenity ID",
|
|
636
|
+
"description": "Unique amenity ID.",
|
|
534
637
|
"args": [],
|
|
535
638
|
"type": {
|
|
536
639
|
"kind": "SCALAR",
|
|
537
640
|
"name": "ID",
|
|
538
641
|
"ofType": null
|
|
539
642
|
},
|
|
540
|
-
"isDeprecated":
|
|
541
|
-
"deprecationReason":
|
|
643
|
+
"isDeprecated": true,
|
|
644
|
+
"deprecationReason": "Will be removed in the future."
|
|
542
645
|
},
|
|
543
646
|
{
|
|
544
647
|
"name": "externalId",
|
|
545
|
-
"description": "ID provided by an amenity data source as the row ID",
|
|
648
|
+
"description": "ID provided by an amenity data source as the row ID.",
|
|
546
649
|
"args": [],
|
|
547
650
|
"type": {
|
|
548
651
|
"kind": "SCALAR",
|
|
549
652
|
"name": "String",
|
|
550
653
|
"ofType": null
|
|
551
654
|
},
|
|
655
|
+
"isDeprecated": true,
|
|
656
|
+
"deprecationReason": "In favor of external_id."
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "external_id",
|
|
660
|
+
"description": "ID provided by an amenity data source as the row ID.",
|
|
661
|
+
"args": [],
|
|
662
|
+
"type": {
|
|
663
|
+
"kind": "NON_NULL",
|
|
664
|
+
"name": null,
|
|
665
|
+
"ofType": {
|
|
666
|
+
"kind": "SCALAR",
|
|
667
|
+
"name": "String",
|
|
668
|
+
"ofType": null
|
|
669
|
+
}
|
|
670
|
+
},
|
|
552
671
|
"isDeprecated": false,
|
|
553
672
|
"deprecationReason": null
|
|
554
673
|
},
|
|
555
674
|
{
|
|
556
675
|
"name": "name",
|
|
557
|
-
"description": "Name of
|
|
676
|
+
"description": "Name of the amenity.",
|
|
558
677
|
"args": [],
|
|
559
678
|
"type": {
|
|
560
679
|
"kind": "SCALAR",
|
|
@@ -566,19 +685,23 @@
|
|
|
566
685
|
},
|
|
567
686
|
{
|
|
568
687
|
"name": "location",
|
|
569
|
-
"description": "Geo location coordinates. This is a GeoJSON Point",
|
|
688
|
+
"description": "Geo location coordinates. This is a GeoJSON Point.",
|
|
570
689
|
"args": [],
|
|
571
690
|
"type": {
|
|
572
|
-
"kind": "
|
|
573
|
-
"name":
|
|
574
|
-
"ofType":
|
|
691
|
+
"kind": "NON_NULL",
|
|
692
|
+
"name": null,
|
|
693
|
+
"ofType": {
|
|
694
|
+
"kind": "OBJECT",
|
|
695
|
+
"name": "Point",
|
|
696
|
+
"ofType": null
|
|
697
|
+
}
|
|
575
698
|
},
|
|
576
699
|
"isDeprecated": false,
|
|
577
700
|
"deprecationReason": null
|
|
578
701
|
},
|
|
579
702
|
{
|
|
580
703
|
"name": "address",
|
|
581
|
-
"description": "
|
|
704
|
+
"description": "Address of the amenity.",
|
|
582
705
|
"args": [],
|
|
583
706
|
"type": {
|
|
584
707
|
"kind": "OBJECT",
|
|
@@ -590,14 +713,59 @@
|
|
|
590
713
|
},
|
|
591
714
|
{
|
|
592
715
|
"name": "type",
|
|
593
|
-
"description": "Type of amenity. An amenity can belong to multiple categories",
|
|
716
|
+
"description": "Type of amenity. An amenity can belong to multiple categories.",
|
|
594
717
|
"args": [],
|
|
595
718
|
"type": {
|
|
596
|
-
"kind": "
|
|
719
|
+
"kind": "NON_NULL",
|
|
720
|
+
"name": null,
|
|
721
|
+
"ofType": {
|
|
722
|
+
"kind": "LIST",
|
|
723
|
+
"name": null,
|
|
724
|
+
"ofType": {
|
|
725
|
+
"kind": "SCALAR",
|
|
726
|
+
"name": "String",
|
|
727
|
+
"ofType": null
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"isDeprecated": false,
|
|
732
|
+
"deprecationReason": null
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"name": "distance",
|
|
736
|
+
"description": "Computed distance between station and amenity.",
|
|
737
|
+
"args": [],
|
|
738
|
+
"type": {
|
|
739
|
+
"kind": "SCALAR",
|
|
740
|
+
"name": "Int",
|
|
741
|
+
"ofType": null
|
|
742
|
+
},
|
|
743
|
+
"isDeprecated": true,
|
|
744
|
+
"deprecationReason": "In favor of station_distance."
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "station_distance",
|
|
748
|
+
"description": "Computed distance between station and amenity.",
|
|
749
|
+
"args": [
|
|
750
|
+
{
|
|
751
|
+
"name": "unit",
|
|
752
|
+
"description": "Distance unit.",
|
|
753
|
+
"type": {
|
|
754
|
+
"kind": "ENUM",
|
|
755
|
+
"name": "DistanceUnit",
|
|
756
|
+
"ofType": null
|
|
757
|
+
},
|
|
758
|
+
"defaultValue": "meter",
|
|
759
|
+
"isDeprecated": false,
|
|
760
|
+
"deprecationReason": null
|
|
761
|
+
}
|
|
762
|
+
],
|
|
763
|
+
"type": {
|
|
764
|
+
"kind": "NON_NULL",
|
|
597
765
|
"name": null,
|
|
598
766
|
"ofType": {
|
|
599
767
|
"kind": "SCALAR",
|
|
600
|
-
"name": "
|
|
768
|
+
"name": "Float",
|
|
601
769
|
"ofType": null
|
|
602
770
|
}
|
|
603
771
|
},
|
|
@@ -605,36 +773,72 @@
|
|
|
605
773
|
"deprecationReason": null
|
|
606
774
|
},
|
|
607
775
|
{
|
|
608
|
-
"name": "
|
|
609
|
-
"description": "
|
|
776
|
+
"name": "foursquareUrl",
|
|
777
|
+
"description": "Full path URL to amenity foursquare page.",
|
|
610
778
|
"args": [],
|
|
611
779
|
"type": {
|
|
612
780
|
"kind": "SCALAR",
|
|
613
|
-
"name": "
|
|
781
|
+
"name": "String",
|
|
782
|
+
"ofType": null
|
|
783
|
+
},
|
|
784
|
+
"isDeprecated": true,
|
|
785
|
+
"deprecationReason": "Will be removed in the future."
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"name": "opening_hours",
|
|
789
|
+
"description": "Opening hours of the amenity.",
|
|
790
|
+
"args": [],
|
|
791
|
+
"type": {
|
|
792
|
+
"kind": "OBJECT",
|
|
793
|
+
"name": "AmenityOpeningHours",
|
|
614
794
|
"ofType": null
|
|
615
795
|
},
|
|
616
796
|
"isDeprecated": false,
|
|
617
797
|
"deprecationReason": null
|
|
618
798
|
},
|
|
619
799
|
{
|
|
620
|
-
"name": "
|
|
621
|
-
"description": "
|
|
800
|
+
"name": "pets_allowed",
|
|
801
|
+
"description": "Indicates whether pets are allowed. This does not apply to assistance dogs, which may have legal access.",
|
|
622
802
|
"args": [],
|
|
623
803
|
"type": {
|
|
624
804
|
"kind": "SCALAR",
|
|
625
|
-
"name": "
|
|
805
|
+
"name": "Boolean",
|
|
626
806
|
"ofType": null
|
|
627
807
|
},
|
|
628
808
|
"isDeprecated": false,
|
|
629
809
|
"deprecationReason": null
|
|
630
810
|
},
|
|
631
811
|
{
|
|
632
|
-
"name": "
|
|
633
|
-
"description": "
|
|
812
|
+
"name": "accessibility",
|
|
813
|
+
"description": "Accessibility options at the amenity.",
|
|
814
|
+
"args": [],
|
|
815
|
+
"type": {
|
|
816
|
+
"kind": "OBJECT",
|
|
817
|
+
"name": "AmenityAccessibility",
|
|
818
|
+
"ofType": null
|
|
819
|
+
},
|
|
820
|
+
"isDeprecated": false,
|
|
821
|
+
"deprecationReason": null
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"name": "contact",
|
|
825
|
+
"description": "Contact information for the amenity.",
|
|
826
|
+
"args": [],
|
|
827
|
+
"type": {
|
|
828
|
+
"kind": "OBJECT",
|
|
829
|
+
"name": "AmenityContact",
|
|
830
|
+
"ofType": null
|
|
831
|
+
},
|
|
832
|
+
"isDeprecated": false,
|
|
833
|
+
"deprecationReason": null
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"name": "rating",
|
|
837
|
+
"description": "Rating of an amenity, the value will be between 0.0 and 10.0. If no rating has been given, the value will be set to null.",
|
|
634
838
|
"args": [],
|
|
635
839
|
"type": {
|
|
636
840
|
"kind": "SCALAR",
|
|
637
|
-
"name": "
|
|
841
|
+
"name": "Float",
|
|
638
842
|
"ofType": null
|
|
639
843
|
},
|
|
640
844
|
"isDeprecated": false,
|
|
@@ -642,25 +846,41 @@
|
|
|
642
846
|
},
|
|
643
847
|
{
|
|
644
848
|
"name": "createdAt",
|
|
645
|
-
"description": "Date and time when an amenity was created",
|
|
849
|
+
"description": "Date and time when an amenity was created.",
|
|
646
850
|
"args": [],
|
|
647
851
|
"type": {
|
|
648
852
|
"kind": "SCALAR",
|
|
649
853
|
"name": "String",
|
|
650
854
|
"ofType": null
|
|
651
855
|
},
|
|
652
|
-
"isDeprecated":
|
|
653
|
-
"deprecationReason":
|
|
856
|
+
"isDeprecated": true,
|
|
857
|
+
"deprecationReason": "Will be removed in the future."
|
|
654
858
|
},
|
|
655
859
|
{
|
|
656
860
|
"name": "updatedAt",
|
|
657
|
-
"description": "Date and time when an amenity was last updated",
|
|
861
|
+
"description": "Date and time when an amenity was last updated.",
|
|
658
862
|
"args": [],
|
|
659
863
|
"type": {
|
|
660
864
|
"kind": "SCALAR",
|
|
661
865
|
"name": "String",
|
|
662
866
|
"ofType": null
|
|
663
867
|
},
|
|
868
|
+
"isDeprecated": true,
|
|
869
|
+
"deprecationReason": "In favor of last_updated."
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"name": "last_updated",
|
|
873
|
+
"description": "Date and time when an amenity was last updated.",
|
|
874
|
+
"args": [],
|
|
875
|
+
"type": {
|
|
876
|
+
"kind": "NON_NULL",
|
|
877
|
+
"name": null,
|
|
878
|
+
"ofType": {
|
|
879
|
+
"kind": "SCALAR",
|
|
880
|
+
"name": "DateTime",
|
|
881
|
+
"ofType": null
|
|
882
|
+
}
|
|
883
|
+
},
|
|
664
884
|
"isDeprecated": false,
|
|
665
885
|
"deprecationReason": null
|
|
666
886
|
}
|
|
@@ -690,6 +910,144 @@
|
|
|
690
910
|
"enumValues": null,
|
|
691
911
|
"possibleTypes": null
|
|
692
912
|
},
|
|
913
|
+
{
|
|
914
|
+
"kind": "SCALAR",
|
|
915
|
+
"name": "Boolean",
|
|
916
|
+
"description": "The `Boolean` scalar type represents `true` or `false`.",
|
|
917
|
+
"fields": null,
|
|
918
|
+
"inputFields": null,
|
|
919
|
+
"interfaces": null,
|
|
920
|
+
"enumValues": null,
|
|
921
|
+
"possibleTypes": null
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"kind": "OBJECT",
|
|
925
|
+
"name": "AmenityAccessibility",
|
|
926
|
+
"description": "Accessibility options at the amenity.",
|
|
927
|
+
"fields": [
|
|
928
|
+
{
|
|
929
|
+
"name": "wheelchair",
|
|
930
|
+
"description": "Type of wheelchair accessibility at the amenity.",
|
|
931
|
+
"args": [],
|
|
932
|
+
"type": {
|
|
933
|
+
"kind": "ENUM",
|
|
934
|
+
"name": "AmenityWheelchairAccessibilityType",
|
|
935
|
+
"ofType": null
|
|
936
|
+
},
|
|
937
|
+
"isDeprecated": false,
|
|
938
|
+
"deprecationReason": null
|
|
939
|
+
}
|
|
940
|
+
],
|
|
941
|
+
"inputFields": null,
|
|
942
|
+
"interfaces": [],
|
|
943
|
+
"enumValues": null,
|
|
944
|
+
"possibleTypes": null
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"kind": "OBJECT",
|
|
948
|
+
"name": "AmenityContact",
|
|
949
|
+
"description": "Contact information for the amenity.",
|
|
950
|
+
"fields": [
|
|
951
|
+
{
|
|
952
|
+
"name": "phone",
|
|
953
|
+
"description": "Phone number to contact the amenity.",
|
|
954
|
+
"args": [],
|
|
955
|
+
"type": {
|
|
956
|
+
"kind": "SCALAR",
|
|
957
|
+
"name": "String",
|
|
958
|
+
"ofType": null
|
|
959
|
+
},
|
|
960
|
+
"isDeprecated": false,
|
|
961
|
+
"deprecationReason": null
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"name": "website",
|
|
965
|
+
"description": "Website of the amenity.",
|
|
966
|
+
"args": [],
|
|
967
|
+
"type": {
|
|
968
|
+
"kind": "SCALAR",
|
|
969
|
+
"name": "String",
|
|
970
|
+
"ofType": null
|
|
971
|
+
},
|
|
972
|
+
"isDeprecated": false,
|
|
973
|
+
"deprecationReason": null
|
|
974
|
+
}
|
|
975
|
+
],
|
|
976
|
+
"inputFields": null,
|
|
977
|
+
"interfaces": [],
|
|
978
|
+
"enumValues": null,
|
|
979
|
+
"possibleTypes": null
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"kind": "INPUT_OBJECT",
|
|
983
|
+
"name": "AmenityListFilter",
|
|
984
|
+
"description": "Filter that can be applied to retrieve the amenity list.",
|
|
985
|
+
"fields": null,
|
|
986
|
+
"inputFields": [
|
|
987
|
+
{
|
|
988
|
+
"name": "type",
|
|
989
|
+
"description": "Type of amenity. An amenity can belong to multiple categories.",
|
|
990
|
+
"type": {
|
|
991
|
+
"kind": "LIST",
|
|
992
|
+
"name": null,
|
|
993
|
+
"ofType": {
|
|
994
|
+
"kind": "NON_NULL",
|
|
995
|
+
"name": null,
|
|
996
|
+
"ofType": {
|
|
997
|
+
"kind": "ENUM",
|
|
998
|
+
"name": "Amenities",
|
|
999
|
+
"ofType": null
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"defaultValue": null,
|
|
1004
|
+
"isDeprecated": false,
|
|
1005
|
+
"deprecationReason": null
|
|
1006
|
+
}
|
|
1007
|
+
],
|
|
1008
|
+
"interfaces": null,
|
|
1009
|
+
"enumValues": null,
|
|
1010
|
+
"possibleTypes": null
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"kind": "OBJECT",
|
|
1014
|
+
"name": "AmenityOpeningHours",
|
|
1015
|
+
"description": "Opening and access hours of the location.",
|
|
1016
|
+
"fields": [
|
|
1017
|
+
{
|
|
1018
|
+
"name": "twentyfourseven",
|
|
1019
|
+
"description": "True to represent 24 hours a day and 7 days a week.",
|
|
1020
|
+
"args": [],
|
|
1021
|
+
"type": {
|
|
1022
|
+
"kind": "SCALAR",
|
|
1023
|
+
"name": "Boolean",
|
|
1024
|
+
"ofType": null
|
|
1025
|
+
},
|
|
1026
|
+
"isDeprecated": false,
|
|
1027
|
+
"deprecationReason": null
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
"name": "regular_hours",
|
|
1031
|
+
"description": "Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object.",
|
|
1032
|
+
"args": [],
|
|
1033
|
+
"type": {
|
|
1034
|
+
"kind": "LIST",
|
|
1035
|
+
"name": null,
|
|
1036
|
+
"ofType": {
|
|
1037
|
+
"kind": "OBJECT",
|
|
1038
|
+
"name": "AmenityRegularHours",
|
|
1039
|
+
"ofType": null
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"isDeprecated": false,
|
|
1043
|
+
"deprecationReason": null
|
|
1044
|
+
}
|
|
1045
|
+
],
|
|
1046
|
+
"inputFields": null,
|
|
1047
|
+
"interfaces": [],
|
|
1048
|
+
"enumValues": null,
|
|
1049
|
+
"possibleTypes": null
|
|
1050
|
+
},
|
|
693
1051
|
{
|
|
694
1052
|
"kind": "INPUT_OBJECT",
|
|
695
1053
|
"name": "AmenityPreferencesInput",
|
|
@@ -741,6 +1099,53 @@
|
|
|
741
1099
|
"enumValues": null,
|
|
742
1100
|
"possibleTypes": null
|
|
743
1101
|
},
|
|
1102
|
+
{
|
|
1103
|
+
"kind": "OBJECT",
|
|
1104
|
+
"name": "AmenityRegularHours",
|
|
1105
|
+
"description": "Regular hours, weekday-based. Only to be used if twentyfourseven=false, then this field needs to contain at least one RegularHours object.",
|
|
1106
|
+
"fields": [
|
|
1107
|
+
{
|
|
1108
|
+
"name": "weekday",
|
|
1109
|
+
"description": "Number of days in the week, from Monday (1) till Sunday (7).",
|
|
1110
|
+
"args": [],
|
|
1111
|
+
"type": {
|
|
1112
|
+
"kind": "SCALAR",
|
|
1113
|
+
"name": "Int",
|
|
1114
|
+
"ofType": null
|
|
1115
|
+
},
|
|
1116
|
+
"isDeprecated": false,
|
|
1117
|
+
"deprecationReason": null
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"name": "period_begin",
|
|
1121
|
+
"description": "Beginning of the regular period, in local time, given in hours and minutes. Must be in 24h format with leading zeros. Example: \"18:15\". Hour/Minute separator: \":\" Regex: ([0-1][0-9]|2[1-3]):[0-5][0-9].",
|
|
1122
|
+
"args": [],
|
|
1123
|
+
"type": {
|
|
1124
|
+
"kind": "SCALAR",
|
|
1125
|
+
"name": "String",
|
|
1126
|
+
"ofType": null
|
|
1127
|
+
},
|
|
1128
|
+
"isDeprecated": false,
|
|
1129
|
+
"deprecationReason": null
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"name": "period_end",
|
|
1133
|
+
"description": "End of the regular period, in local time, syntax as for period_begin. Must be later than period_begin.",
|
|
1134
|
+
"args": [],
|
|
1135
|
+
"type": {
|
|
1136
|
+
"kind": "SCALAR",
|
|
1137
|
+
"name": "String",
|
|
1138
|
+
"ofType": null
|
|
1139
|
+
},
|
|
1140
|
+
"isDeprecated": false,
|
|
1141
|
+
"deprecationReason": null
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"inputFields": null,
|
|
1145
|
+
"interfaces": [],
|
|
1146
|
+
"enumValues": null,
|
|
1147
|
+
"possibleTypes": null
|
|
1148
|
+
},
|
|
744
1149
|
{
|
|
745
1150
|
"kind": "ENUM",
|
|
746
1151
|
"name": "AmenityType",
|
|
@@ -812,6 +1217,41 @@
|
|
|
812
1217
|
],
|
|
813
1218
|
"possibleTypes": null
|
|
814
1219
|
},
|
|
1220
|
+
{
|
|
1221
|
+
"kind": "ENUM",
|
|
1222
|
+
"name": "AmenityWheelchairAccessibilityType",
|
|
1223
|
+
"description": "Type of wheelchair accessibility at the amenity.",
|
|
1224
|
+
"fields": null,
|
|
1225
|
+
"inputFields": null,
|
|
1226
|
+
"interfaces": null,
|
|
1227
|
+
"enumValues": [
|
|
1228
|
+
{
|
|
1229
|
+
"name": "yes",
|
|
1230
|
+
"description": "Wheelchairs have full unrestricted access.",
|
|
1231
|
+
"isDeprecated": false,
|
|
1232
|
+
"deprecationReason": null
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"name": "limited",
|
|
1236
|
+
"description": "Wheelchairs have partial access (e.g some areas can be accessed and others not, areas requiring assistance by someone pushing up a steep gradient).",
|
|
1237
|
+
"isDeprecated": false,
|
|
1238
|
+
"deprecationReason": null
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"name": "no",
|
|
1242
|
+
"description": "Wheelchairs have no unrestricted access (e.g. stair only access).",
|
|
1243
|
+
"isDeprecated": false,
|
|
1244
|
+
"deprecationReason": null
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"name": "designated",
|
|
1248
|
+
"description": "The amenity is designated or purpose-built for wheelchairs (e.g. bathroom designed for wheelchair access only).",
|
|
1249
|
+
"isDeprecated": false,
|
|
1250
|
+
"deprecationReason": null
|
|
1251
|
+
}
|
|
1252
|
+
],
|
|
1253
|
+
"possibleTypes": null
|
|
1254
|
+
},
|
|
815
1255
|
{
|
|
816
1256
|
"kind": "INPUT_OBJECT",
|
|
817
1257
|
"name": "AuthorizeConnectedVehicleInput",
|
|
@@ -1326,7 +1766,7 @@
|
|
|
1326
1766
|
{
|
|
1327
1767
|
"kind": "ENUM",
|
|
1328
1768
|
"name": "ChargeSpeedUnit",
|
|
1329
|
-
"description":
|
|
1769
|
+
"description": null,
|
|
1330
1770
|
"fields": null,
|
|
1331
1771
|
"inputFields": null,
|
|
1332
1772
|
"interfaces": null,
|
|
@@ -1493,7 +1933,7 @@
|
|
|
1493
1933
|
{
|
|
1494
1934
|
"kind": "ENUM",
|
|
1495
1935
|
"name": "ChargerStatus",
|
|
1496
|
-
"description":
|
|
1936
|
+
"description": null,
|
|
1497
1937
|
"fields": null,
|
|
1498
1938
|
"inputFields": null,
|
|
1499
1939
|
"interfaces": null,
|
|
@@ -1924,16 +2364,6 @@
|
|
|
1924
2364
|
"enumValues": null,
|
|
1925
2365
|
"possibleTypes": null
|
|
1926
2366
|
},
|
|
1927
|
-
{
|
|
1928
|
-
"kind": "SCALAR",
|
|
1929
|
-
"name": "Boolean",
|
|
1930
|
-
"description": "The `Boolean` scalar type represents `true` or `false`.",
|
|
1931
|
-
"fields": null,
|
|
1932
|
-
"inputFields": null,
|
|
1933
|
-
"interfaces": null,
|
|
1934
|
-
"enumValues": null,
|
|
1935
|
-
"possibleTypes": null
|
|
1936
|
-
},
|
|
1937
2367
|
{
|
|
1938
2368
|
"kind": "INPUT_OBJECT",
|
|
1939
2369
|
"name": "ConnectFilter",
|
|
@@ -3829,6 +4259,12 @@
|
|
|
3829
4259
|
"inputFields": null,
|
|
3830
4260
|
"interfaces": null,
|
|
3831
4261
|
"enumValues": [
|
|
4262
|
+
{
|
|
4263
|
+
"name": "AA",
|
|
4264
|
+
"description": null,
|
|
4265
|
+
"isDeprecated": false,
|
|
4266
|
+
"deprecationReason": null
|
|
4267
|
+
},
|
|
3832
4268
|
{
|
|
3833
4269
|
"name": "AD",
|
|
3834
4270
|
"description": null,
|
|
@@ -5554,16 +5990,12 @@
|
|
|
5554
5990
|
"description": "Season of a route.",
|
|
5555
5991
|
"args": [],
|
|
5556
5992
|
"type": {
|
|
5557
|
-
"kind": "
|
|
5558
|
-
"name":
|
|
5559
|
-
"ofType":
|
|
5560
|
-
"kind": "ENUM",
|
|
5561
|
-
"name": "RouteSeason",
|
|
5562
|
-
"ofType": null
|
|
5563
|
-
}
|
|
5993
|
+
"kind": "ENUM",
|
|
5994
|
+
"name": "RouteSeason",
|
|
5995
|
+
"ofType": null
|
|
5564
5996
|
},
|
|
5565
|
-
"isDeprecated":
|
|
5566
|
-
"deprecationReason":
|
|
5997
|
+
"isDeprecated": true,
|
|
5998
|
+
"deprecationReason": "In favor of weather."
|
|
5567
5999
|
},
|
|
5568
6000
|
{
|
|
5569
6001
|
"name": "alternative_station_radius",
|
|
@@ -5592,6 +6024,50 @@
|
|
|
5592
6024
|
},
|
|
5593
6025
|
"isDeprecated": false,
|
|
5594
6026
|
"deprecationReason": null
|
|
6027
|
+
},
|
|
6028
|
+
{
|
|
6029
|
+
"name": "avoid",
|
|
6030
|
+
"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.",
|
|
6031
|
+
"args": [],
|
|
6032
|
+
"type": {
|
|
6033
|
+
"kind": "LIST",
|
|
6034
|
+
"name": null,
|
|
6035
|
+
"ofType": {
|
|
6036
|
+
"kind": "NON_NULL",
|
|
6037
|
+
"name": null,
|
|
6038
|
+
"ofType": {
|
|
6039
|
+
"kind": "ENUM",
|
|
6040
|
+
"name": "RouteAvoid",
|
|
6041
|
+
"ofType": null
|
|
6042
|
+
}
|
|
6043
|
+
}
|
|
6044
|
+
},
|
|
6045
|
+
"isDeprecated": false,
|
|
6046
|
+
"deprecationReason": null
|
|
6047
|
+
},
|
|
6048
|
+
{
|
|
6049
|
+
"name": "maximum_speed",
|
|
6050
|
+
"description": "[BETA] User-defined maximum speed used for this route, if provided.",
|
|
6051
|
+
"args": [],
|
|
6052
|
+
"type": {
|
|
6053
|
+
"kind": "OBJECT",
|
|
6054
|
+
"name": "MaximumSpeed",
|
|
6055
|
+
"ofType": null
|
|
6056
|
+
},
|
|
6057
|
+
"isDeprecated": false,
|
|
6058
|
+
"deprecationReason": null
|
|
6059
|
+
},
|
|
6060
|
+
{
|
|
6061
|
+
"name": "weather",
|
|
6062
|
+
"description": "Weather configuration for the route. Defined by a preset or custom weather conditions.",
|
|
6063
|
+
"args": [],
|
|
6064
|
+
"type": {
|
|
6065
|
+
"kind": "OBJECT",
|
|
6066
|
+
"name": "RouteWeather",
|
|
6067
|
+
"ofType": null
|
|
6068
|
+
},
|
|
6069
|
+
"isDeprecated": false,
|
|
6070
|
+
"deprecationReason": null
|
|
5595
6071
|
}
|
|
5596
6072
|
],
|
|
5597
6073
|
"inputFields": null,
|
|
@@ -5693,7 +6169,7 @@
|
|
|
5693
6169
|
"name": "RouteSeason",
|
|
5694
6170
|
"ofType": null
|
|
5695
6171
|
},
|
|
5696
|
-
"defaultValue":
|
|
6172
|
+
"defaultValue": null,
|
|
5697
6173
|
"isDeprecated": false,
|
|
5698
6174
|
"deprecationReason": null
|
|
5699
6175
|
},
|
|
@@ -5720,6 +6196,50 @@
|
|
|
5720
6196
|
"defaultValue": null,
|
|
5721
6197
|
"isDeprecated": false,
|
|
5722
6198
|
"deprecationReason": null
|
|
6199
|
+
},
|
|
6200
|
+
{
|
|
6201
|
+
"name": "avoid",
|
|
6202
|
+
"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.",
|
|
6203
|
+
"type": {
|
|
6204
|
+
"kind": "LIST",
|
|
6205
|
+
"name": null,
|
|
6206
|
+
"ofType": {
|
|
6207
|
+
"kind": "NON_NULL",
|
|
6208
|
+
"name": null,
|
|
6209
|
+
"ofType": {
|
|
6210
|
+
"kind": "ENUM",
|
|
6211
|
+
"name": "RouteAvoid",
|
|
6212
|
+
"ofType": null
|
|
6213
|
+
}
|
|
6214
|
+
}
|
|
6215
|
+
},
|
|
6216
|
+
"defaultValue": null,
|
|
6217
|
+
"isDeprecated": false,
|
|
6218
|
+
"deprecationReason": null
|
|
6219
|
+
},
|
|
6220
|
+
{
|
|
6221
|
+
"name": "maximum_speed",
|
|
6222
|
+
"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.",
|
|
6223
|
+
"type": {
|
|
6224
|
+
"kind": "INPUT_OBJECT",
|
|
6225
|
+
"name": "MaximumSpeedInput",
|
|
6226
|
+
"ofType": null
|
|
6227
|
+
},
|
|
6228
|
+
"defaultValue": null,
|
|
6229
|
+
"isDeprecated": false,
|
|
6230
|
+
"deprecationReason": null
|
|
6231
|
+
},
|
|
6232
|
+
{
|
|
6233
|
+
"name": "weather",
|
|
6234
|
+
"description": "Weather configuration for the route. Defined by a preset or custom weather conditions.",
|
|
6235
|
+
"type": {
|
|
6236
|
+
"kind": "INPUT_OBJECT",
|
|
6237
|
+
"name": "RouteWeatherInput",
|
|
6238
|
+
"ofType": null
|
|
6239
|
+
},
|
|
6240
|
+
"defaultValue": null,
|
|
6241
|
+
"isDeprecated": false,
|
|
6242
|
+
"deprecationReason": null
|
|
5723
6243
|
}
|
|
5724
6244
|
],
|
|
5725
6245
|
"interfaces": null,
|
|
@@ -7727,7 +8247,7 @@
|
|
|
7727
8247
|
{
|
|
7728
8248
|
"kind": "ENUM",
|
|
7729
8249
|
"name": "DistanceUnit",
|
|
7730
|
-
"description":
|
|
8250
|
+
"description": null,
|
|
7731
8251
|
"fields": null,
|
|
7732
8252
|
"inputFields": null,
|
|
7733
8253
|
"interfaces": null,
|
|
@@ -10069,6 +10589,92 @@
|
|
|
10069
10589
|
],
|
|
10070
10590
|
"possibleTypes": null
|
|
10071
10591
|
},
|
|
10592
|
+
{
|
|
10593
|
+
"kind": "OBJECT",
|
|
10594
|
+
"name": "MaximumSpeed",
|
|
10595
|
+
"description": null,
|
|
10596
|
+
"fields": [
|
|
10597
|
+
{
|
|
10598
|
+
"name": "value",
|
|
10599
|
+
"description": "Numeric value of the user-defined maximum speed.",
|
|
10600
|
+
"args": [],
|
|
10601
|
+
"type": {
|
|
10602
|
+
"kind": "NON_NULL",
|
|
10603
|
+
"name": null,
|
|
10604
|
+
"ofType": {
|
|
10605
|
+
"kind": "SCALAR",
|
|
10606
|
+
"name": "Int",
|
|
10607
|
+
"ofType": null
|
|
10608
|
+
}
|
|
10609
|
+
},
|
|
10610
|
+
"isDeprecated": false,
|
|
10611
|
+
"deprecationReason": null
|
|
10612
|
+
},
|
|
10613
|
+
{
|
|
10614
|
+
"name": "type",
|
|
10615
|
+
"description": "Unit in which speed is measured.",
|
|
10616
|
+
"args": [],
|
|
10617
|
+
"type": {
|
|
10618
|
+
"kind": "NON_NULL",
|
|
10619
|
+
"name": null,
|
|
10620
|
+
"ofType": {
|
|
10621
|
+
"kind": "ENUM",
|
|
10622
|
+
"name": "SpeedUnit",
|
|
10623
|
+
"ofType": null
|
|
10624
|
+
}
|
|
10625
|
+
},
|
|
10626
|
+
"isDeprecated": false,
|
|
10627
|
+
"deprecationReason": null
|
|
10628
|
+
}
|
|
10629
|
+
],
|
|
10630
|
+
"inputFields": null,
|
|
10631
|
+
"interfaces": [],
|
|
10632
|
+
"enumValues": null,
|
|
10633
|
+
"possibleTypes": null
|
|
10634
|
+
},
|
|
10635
|
+
{
|
|
10636
|
+
"kind": "INPUT_OBJECT",
|
|
10637
|
+
"name": "MaximumSpeedInput",
|
|
10638
|
+
"description": null,
|
|
10639
|
+
"fields": null,
|
|
10640
|
+
"inputFields": [
|
|
10641
|
+
{
|
|
10642
|
+
"name": "value",
|
|
10643
|
+
"description": "Numeric value of the user-defined maximum speed.",
|
|
10644
|
+
"type": {
|
|
10645
|
+
"kind": "NON_NULL",
|
|
10646
|
+
"name": null,
|
|
10647
|
+
"ofType": {
|
|
10648
|
+
"kind": "SCALAR",
|
|
10649
|
+
"name": "Int",
|
|
10650
|
+
"ofType": null
|
|
10651
|
+
}
|
|
10652
|
+
},
|
|
10653
|
+
"defaultValue": null,
|
|
10654
|
+
"isDeprecated": false,
|
|
10655
|
+
"deprecationReason": null
|
|
10656
|
+
},
|
|
10657
|
+
{
|
|
10658
|
+
"name": "type",
|
|
10659
|
+
"description": "Unit in which speed is measured.",
|
|
10660
|
+
"type": {
|
|
10661
|
+
"kind": "NON_NULL",
|
|
10662
|
+
"name": null,
|
|
10663
|
+
"ofType": {
|
|
10664
|
+
"kind": "ENUM",
|
|
10665
|
+
"name": "SpeedUnit",
|
|
10666
|
+
"ofType": null
|
|
10667
|
+
}
|
|
10668
|
+
},
|
|
10669
|
+
"defaultValue": null,
|
|
10670
|
+
"isDeprecated": false,
|
|
10671
|
+
"deprecationReason": null
|
|
10672
|
+
}
|
|
10673
|
+
],
|
|
10674
|
+
"interfaces": null,
|
|
10675
|
+
"enumValues": null,
|
|
10676
|
+
"possibleTypes": null
|
|
10677
|
+
},
|
|
10072
10678
|
{
|
|
10073
10679
|
"kind": "ENUM",
|
|
10074
10680
|
"name": "MeasurementUnit",
|
|
@@ -10496,6 +11102,31 @@
|
|
|
10496
11102
|
"isDeprecated": false,
|
|
10497
11103
|
"deprecationReason": null
|
|
10498
11104
|
},
|
|
11105
|
+
{
|
|
11106
|
+
"name": "newRoute",
|
|
11107
|
+
"description": "Deprecated: In favor of createRoute.",
|
|
11108
|
+
"args": [
|
|
11109
|
+
{
|
|
11110
|
+
"name": "input",
|
|
11111
|
+
"description": null,
|
|
11112
|
+
"type": {
|
|
11113
|
+
"kind": "INPUT_OBJECT",
|
|
11114
|
+
"name": "RequestInput",
|
|
11115
|
+
"ofType": null
|
|
11116
|
+
},
|
|
11117
|
+
"defaultValue": null,
|
|
11118
|
+
"isDeprecated": false,
|
|
11119
|
+
"deprecationReason": null
|
|
11120
|
+
}
|
|
11121
|
+
],
|
|
11122
|
+
"type": {
|
|
11123
|
+
"kind": "SCALAR",
|
|
11124
|
+
"name": "ID",
|
|
11125
|
+
"ofType": null
|
|
11126
|
+
},
|
|
11127
|
+
"isDeprecated": true,
|
|
11128
|
+
"deprecationReason": "In favor of `createRoute`."
|
|
11129
|
+
},
|
|
10499
11130
|
{
|
|
10500
11131
|
"name": "createRoute",
|
|
10501
11132
|
"description": "Create a new route from the route input and its ID.",
|
|
@@ -10528,31 +11159,6 @@
|
|
|
10528
11159
|
},
|
|
10529
11160
|
"isDeprecated": false,
|
|
10530
11161
|
"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
11162
|
}
|
|
10557
11163
|
],
|
|
10558
11164
|
"inputFields": null,
|
|
@@ -14165,6 +14771,38 @@
|
|
|
14165
14771
|
"isDeprecated": false,
|
|
14166
14772
|
"deprecationReason": null
|
|
14167
14773
|
},
|
|
14774
|
+
{
|
|
14775
|
+
"name": "ranking",
|
|
14776
|
+
"description": "List of ranking level(s) to be retrieved. Valid values are 1 to 10. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.",
|
|
14777
|
+
"type": {
|
|
14778
|
+
"kind": "LIST",
|
|
14779
|
+
"name": null,
|
|
14780
|
+
"ofType": {
|
|
14781
|
+
"kind": "NON_NULL",
|
|
14782
|
+
"name": null,
|
|
14783
|
+
"ofType": {
|
|
14784
|
+
"kind": "SCALAR",
|
|
14785
|
+
"name": "Int",
|
|
14786
|
+
"ofType": null
|
|
14787
|
+
}
|
|
14788
|
+
}
|
|
14789
|
+
},
|
|
14790
|
+
"defaultValue": null,
|
|
14791
|
+
"isDeprecated": false,
|
|
14792
|
+
"deprecationReason": null
|
|
14793
|
+
},
|
|
14794
|
+
{
|
|
14795
|
+
"name": "excluded",
|
|
14796
|
+
"description": "Only retrieve operators that are in the excluded list. Default operator preference applied to routes created through newRoute mutation if no operator preference is specified in the request.",
|
|
14797
|
+
"type": {
|
|
14798
|
+
"kind": "SCALAR",
|
|
14799
|
+
"name": "Boolean",
|
|
14800
|
+
"ofType": null
|
|
14801
|
+
},
|
|
14802
|
+
"defaultValue": null,
|
|
14803
|
+
"isDeprecated": false,
|
|
14804
|
+
"deprecationReason": null
|
|
14805
|
+
},
|
|
14168
14806
|
{
|
|
14169
14807
|
"name": "ranking_levels",
|
|
14170
14808
|
"description": "List of ranking level(s) to be retrieved. An operator can be ranked on different levels in different countries. Default operator preference applied to routes created through createRoute mutation if no operator preference is specified in the request.",
|
|
@@ -15014,7 +15652,7 @@
|
|
|
15014
15652
|
{
|
|
15015
15653
|
"kind": "ENUM",
|
|
15016
15654
|
"name": "PressureUnit",
|
|
15017
|
-
"description":
|
|
15655
|
+
"description": null,
|
|
15018
15656
|
"fields": null,
|
|
15019
15657
|
"inputFields": null,
|
|
15020
15658
|
"interfaces": null,
|
|
@@ -15284,11 +15922,11 @@
|
|
|
15284
15922
|
"fields": [
|
|
15285
15923
|
{
|
|
15286
15924
|
"name": "amenityList",
|
|
15287
|
-
"description": "Get a full list of amenities around a station",
|
|
15925
|
+
"description": "Get a full list of amenities around a station.",
|
|
15288
15926
|
"args": [
|
|
15289
15927
|
{
|
|
15290
15928
|
"name": "stationId",
|
|
15291
|
-
"description": "
|
|
15929
|
+
"description": "ID of the station.",
|
|
15292
15930
|
"type": {
|
|
15293
15931
|
"kind": "NON_NULL",
|
|
15294
15932
|
"name": null,
|
|
@@ -15301,6 +15939,42 @@
|
|
|
15301
15939
|
"defaultValue": null,
|
|
15302
15940
|
"isDeprecated": false,
|
|
15303
15941
|
"deprecationReason": null
|
|
15942
|
+
},
|
|
15943
|
+
{
|
|
15944
|
+
"name": "filter",
|
|
15945
|
+
"description": "Criteria to filter amenities.",
|
|
15946
|
+
"type": {
|
|
15947
|
+
"kind": "INPUT_OBJECT",
|
|
15948
|
+
"name": "AmenityListFilter",
|
|
15949
|
+
"ofType": null
|
|
15950
|
+
},
|
|
15951
|
+
"defaultValue": null,
|
|
15952
|
+
"isDeprecated": false,
|
|
15953
|
+
"deprecationReason": null
|
|
15954
|
+
},
|
|
15955
|
+
{
|
|
15956
|
+
"name": "size",
|
|
15957
|
+
"description": "Number of elements (count) to return.",
|
|
15958
|
+
"type": {
|
|
15959
|
+
"kind": "SCALAR",
|
|
15960
|
+
"name": "Int",
|
|
15961
|
+
"ofType": null
|
|
15962
|
+
},
|
|
15963
|
+
"defaultValue": "10",
|
|
15964
|
+
"isDeprecated": false,
|
|
15965
|
+
"deprecationReason": null
|
|
15966
|
+
},
|
|
15967
|
+
{
|
|
15968
|
+
"name": "page",
|
|
15969
|
+
"description": "Page number to return.",
|
|
15970
|
+
"type": {
|
|
15971
|
+
"kind": "SCALAR",
|
|
15972
|
+
"name": "Int",
|
|
15973
|
+
"ofType": null
|
|
15974
|
+
},
|
|
15975
|
+
"defaultValue": "0",
|
|
15976
|
+
"isDeprecated": false,
|
|
15977
|
+
"deprecationReason": null
|
|
15304
15978
|
}
|
|
15305
15979
|
],
|
|
15306
15980
|
"type": {
|
|
@@ -15696,6 +16370,51 @@
|
|
|
15696
16370
|
"isDeprecated": false,
|
|
15697
16371
|
"deprecationReason": null
|
|
15698
16372
|
},
|
|
16373
|
+
{
|
|
16374
|
+
"name": "routeEmissions",
|
|
16375
|
+
"description": "Deprecated: In favor of getRouteEmissions.",
|
|
16376
|
+
"args": [
|
|
16377
|
+
{
|
|
16378
|
+
"name": "route_id",
|
|
16379
|
+
"description": "ID of the route for which we retrieve the emissions profile.",
|
|
16380
|
+
"type": {
|
|
16381
|
+
"kind": "NON_NULL",
|
|
16382
|
+
"name": null,
|
|
16383
|
+
"ofType": {
|
|
16384
|
+
"kind": "SCALAR",
|
|
16385
|
+
"name": "ID",
|
|
16386
|
+
"ofType": null
|
|
16387
|
+
}
|
|
16388
|
+
},
|
|
16389
|
+
"defaultValue": null,
|
|
16390
|
+
"isDeprecated": false,
|
|
16391
|
+
"deprecationReason": null
|
|
16392
|
+
},
|
|
16393
|
+
{
|
|
16394
|
+
"name": "route_alternative_id",
|
|
16395
|
+
"description": "ID of the route alternative for which we retrieve the emissions profile. If not provided, we will retrieve the recommended alternative.",
|
|
16396
|
+
"type": {
|
|
16397
|
+
"kind": "SCALAR",
|
|
16398
|
+
"name": "ID",
|
|
16399
|
+
"ofType": null
|
|
16400
|
+
},
|
|
16401
|
+
"defaultValue": null,
|
|
16402
|
+
"isDeprecated": false,
|
|
16403
|
+
"deprecationReason": null
|
|
16404
|
+
}
|
|
16405
|
+
],
|
|
16406
|
+
"type": {
|
|
16407
|
+
"kind": "NON_NULL",
|
|
16408
|
+
"name": null,
|
|
16409
|
+
"ofType": {
|
|
16410
|
+
"kind": "OBJECT",
|
|
16411
|
+
"name": "RouteEmissions",
|
|
16412
|
+
"ofType": null
|
|
16413
|
+
}
|
|
16414
|
+
},
|
|
16415
|
+
"isDeprecated": true,
|
|
16416
|
+
"deprecationReason": "In favor of `getRouteEmissions`."
|
|
16417
|
+
},
|
|
15699
16418
|
{
|
|
15700
16419
|
"name": "route",
|
|
15701
16420
|
"description": "Deprecated: In favor of getRoute.",
|
|
@@ -15722,16 +16441,16 @@
|
|
|
15722
16441
|
"name": "Route",
|
|
15723
16442
|
"ofType": null
|
|
15724
16443
|
},
|
|
15725
|
-
"isDeprecated":
|
|
15726
|
-
"deprecationReason":
|
|
16444
|
+
"isDeprecated": true,
|
|
16445
|
+
"deprecationReason": "In favor of `getRoute`."
|
|
15727
16446
|
},
|
|
15728
16447
|
{
|
|
15729
|
-
"name": "
|
|
15730
|
-
"description": "
|
|
16448
|
+
"name": "routePath",
|
|
16449
|
+
"description": "Deprecated: In favor of RouteDetails.path_plot.",
|
|
15731
16450
|
"args": [
|
|
15732
16451
|
{
|
|
15733
16452
|
"name": "id",
|
|
15734
|
-
"description": "ID of a route
|
|
16453
|
+
"description": "ID of a route that you require for a route path segment",
|
|
15735
16454
|
"type": {
|
|
15736
16455
|
"kind": "NON_NULL",
|
|
15737
16456
|
"name": null,
|
|
@@ -15744,19 +16463,43 @@
|
|
|
15744
16463
|
"defaultValue": null,
|
|
15745
16464
|
"isDeprecated": false,
|
|
15746
16465
|
"deprecationReason": null
|
|
16466
|
+
},
|
|
16467
|
+
{
|
|
16468
|
+
"name": "location",
|
|
16469
|
+
"description": "The GeoJSON Point of a route path segment",
|
|
16470
|
+
"type": {
|
|
16471
|
+
"kind": "NON_NULL",
|
|
16472
|
+
"name": null,
|
|
16473
|
+
"ofType": {
|
|
16474
|
+
"kind": "INPUT_OBJECT",
|
|
16475
|
+
"name": "PointInput",
|
|
16476
|
+
"ofType": null
|
|
16477
|
+
}
|
|
16478
|
+
},
|
|
16479
|
+
"defaultValue": null,
|
|
16480
|
+
"isDeprecated": false,
|
|
16481
|
+
"deprecationReason": null
|
|
16482
|
+
},
|
|
16483
|
+
{
|
|
16484
|
+
"name": "alternativeId",
|
|
16485
|
+
"description": "Optional alternative ID. By default we will retrieve the fastest route",
|
|
16486
|
+
"type": {
|
|
16487
|
+
"kind": "SCALAR",
|
|
16488
|
+
"name": "ID",
|
|
16489
|
+
"ofType": null
|
|
16490
|
+
},
|
|
16491
|
+
"defaultValue": null,
|
|
16492
|
+
"isDeprecated": false,
|
|
16493
|
+
"deprecationReason": null
|
|
15747
16494
|
}
|
|
15748
16495
|
],
|
|
15749
16496
|
"type": {
|
|
15750
|
-
"kind": "
|
|
15751
|
-
"name":
|
|
15752
|
-
"ofType":
|
|
15753
|
-
"kind": "OBJECT",
|
|
15754
|
-
"name": "RouteResponse",
|
|
15755
|
-
"ofType": null
|
|
15756
|
-
}
|
|
16497
|
+
"kind": "OBJECT",
|
|
16498
|
+
"name": "RoutePath",
|
|
16499
|
+
"ofType": null
|
|
15757
16500
|
},
|
|
15758
|
-
"isDeprecated":
|
|
15759
|
-
"deprecationReason":
|
|
16501
|
+
"isDeprecated": true,
|
|
16502
|
+
"deprecationReason": "In favor of `RouteDetails.path_plot`."
|
|
15760
16503
|
},
|
|
15761
16504
|
{
|
|
15762
16505
|
"name": "getRouteEmissions",
|
|
@@ -15808,12 +16551,12 @@
|
|
|
15808
16551
|
"deprecationReason": null
|
|
15809
16552
|
},
|
|
15810
16553
|
{
|
|
15811
|
-
"name": "
|
|
15812
|
-
"description": "
|
|
16554
|
+
"name": "getRoute",
|
|
16555
|
+
"description": "Get a route by ID.",
|
|
15813
16556
|
"args": [
|
|
15814
16557
|
{
|
|
15815
|
-
"name": "
|
|
15816
|
-
"description": "ID of
|
|
16558
|
+
"name": "id",
|
|
16559
|
+
"description": "ID of a route.",
|
|
15817
16560
|
"type": {
|
|
15818
16561
|
"kind": "NON_NULL",
|
|
15819
16562
|
"name": null,
|
|
@@ -15826,18 +16569,6 @@
|
|
|
15826
16569
|
"defaultValue": null,
|
|
15827
16570
|
"isDeprecated": false,
|
|
15828
16571
|
"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
16572
|
}
|
|
15842
16573
|
],
|
|
15843
16574
|
"type": {
|
|
@@ -15845,70 +16576,13 @@
|
|
|
15845
16576
|
"name": null,
|
|
15846
16577
|
"ofType": {
|
|
15847
16578
|
"kind": "OBJECT",
|
|
15848
|
-
"name": "
|
|
16579
|
+
"name": "RouteResponse",
|
|
15849
16580
|
"ofType": null
|
|
15850
16581
|
}
|
|
15851
16582
|
},
|
|
15852
16583
|
"isDeprecated": false,
|
|
15853
16584
|
"deprecationReason": null
|
|
15854
16585
|
},
|
|
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
16586
|
{
|
|
15913
16587
|
"name": "station",
|
|
15914
16588
|
"description": "Get information about a station by its ID.",
|
|
@@ -16328,6 +17002,80 @@
|
|
|
16328
17002
|
},
|
|
16329
17003
|
"isDeprecated": false,
|
|
16330
17004
|
"deprecationReason": null
|
|
17005
|
+
},
|
|
17006
|
+
{
|
|
17007
|
+
"name": "vehicleMakes",
|
|
17008
|
+
"description": "[BETA] Get a full list of vehicle makes.",
|
|
17009
|
+
"args": [
|
|
17010
|
+
{
|
|
17011
|
+
"name": "country",
|
|
17012
|
+
"description": "ISO-3166 alpha-2 country code to apply localization on vehicle data if available.",
|
|
17013
|
+
"type": {
|
|
17014
|
+
"kind": "ENUM",
|
|
17015
|
+
"name": "CountryCodeAlpha2",
|
|
17016
|
+
"ofType": null
|
|
17017
|
+
},
|
|
17018
|
+
"defaultValue": null,
|
|
17019
|
+
"isDeprecated": false,
|
|
17020
|
+
"deprecationReason": null
|
|
17021
|
+
}
|
|
17022
|
+
],
|
|
17023
|
+
"type": {
|
|
17024
|
+
"kind": "NON_NULL",
|
|
17025
|
+
"name": null,
|
|
17026
|
+
"ofType": {
|
|
17027
|
+
"kind": "OBJECT",
|
|
17028
|
+
"name": "VehicleMakesResponse",
|
|
17029
|
+
"ofType": null
|
|
17030
|
+
}
|
|
17031
|
+
},
|
|
17032
|
+
"isDeprecated": false,
|
|
17033
|
+
"deprecationReason": null
|
|
17034
|
+
},
|
|
17035
|
+
{
|
|
17036
|
+
"name": "vehicleModels",
|
|
17037
|
+
"description": "[BETA] Get a full list of vehicle make models.",
|
|
17038
|
+
"args": [
|
|
17039
|
+
{
|
|
17040
|
+
"name": "filter",
|
|
17041
|
+
"description": "Filter vehicle models result.",
|
|
17042
|
+
"type": {
|
|
17043
|
+
"kind": "NON_NULL",
|
|
17044
|
+
"name": null,
|
|
17045
|
+
"ofType": {
|
|
17046
|
+
"kind": "INPUT_OBJECT",
|
|
17047
|
+
"name": "VehicleModelsFilter",
|
|
17048
|
+
"ofType": null
|
|
17049
|
+
}
|
|
17050
|
+
},
|
|
17051
|
+
"defaultValue": null,
|
|
17052
|
+
"isDeprecated": false,
|
|
17053
|
+
"deprecationReason": null
|
|
17054
|
+
},
|
|
17055
|
+
{
|
|
17056
|
+
"name": "country",
|
|
17057
|
+
"description": "ISO-3166 alpha-2 country code to apply localization on vehicle data if available.",
|
|
17058
|
+
"type": {
|
|
17059
|
+
"kind": "ENUM",
|
|
17060
|
+
"name": "CountryCodeAlpha2",
|
|
17061
|
+
"ofType": null
|
|
17062
|
+
},
|
|
17063
|
+
"defaultValue": null,
|
|
17064
|
+
"isDeprecated": false,
|
|
17065
|
+
"deprecationReason": null
|
|
17066
|
+
}
|
|
17067
|
+
],
|
|
17068
|
+
"type": {
|
|
17069
|
+
"kind": "NON_NULL",
|
|
17070
|
+
"name": null,
|
|
17071
|
+
"ofType": {
|
|
17072
|
+
"kind": "OBJECT",
|
|
17073
|
+
"name": "VehicleModelsResponse",
|
|
17074
|
+
"ofType": null
|
|
17075
|
+
}
|
|
17076
|
+
},
|
|
17077
|
+
"isDeprecated": false,
|
|
17078
|
+
"deprecationReason": null
|
|
16331
17079
|
}
|
|
16332
17080
|
],
|
|
16333
17081
|
"inputFields": null,
|
|
@@ -17056,6 +17804,18 @@
|
|
|
17056
17804
|
"isDeprecated": false,
|
|
17057
17805
|
"deprecationReason": null
|
|
17058
17806
|
},
|
|
17807
|
+
{
|
|
17808
|
+
"name": "numberOfPassengers",
|
|
17809
|
+
"description": "Number of passengers on board.",
|
|
17810
|
+
"type": {
|
|
17811
|
+
"kind": "SCALAR",
|
|
17812
|
+
"name": "Int",
|
|
17813
|
+
"ofType": null
|
|
17814
|
+
},
|
|
17815
|
+
"defaultValue": null,
|
|
17816
|
+
"isDeprecated": false,
|
|
17817
|
+
"deprecationReason": null
|
|
17818
|
+
},
|
|
17059
17819
|
{
|
|
17060
17820
|
"name": "occupants",
|
|
17061
17821
|
"description": "Number of occupants.",
|
|
@@ -17094,7 +17854,7 @@
|
|
|
17094
17854
|
},
|
|
17095
17855
|
{
|
|
17096
17856
|
"name": "auxConsumption",
|
|
17097
|
-
"description": "
|
|
17857
|
+
"description": "In favor of `consumption`.",
|
|
17098
17858
|
"type": {
|
|
17099
17859
|
"kind": "SCALAR",
|
|
17100
17860
|
"name": "Float",
|
|
@@ -17106,7 +17866,7 @@
|
|
|
17106
17866
|
},
|
|
17107
17867
|
{
|
|
17108
17868
|
"name": "bmsConsumption",
|
|
17109
|
-
"description": "
|
|
17869
|
+
"description": "In favor of `consumption`.",
|
|
17110
17870
|
"type": {
|
|
17111
17871
|
"kind": "SCALAR",
|
|
17112
17872
|
"name": "Float",
|
|
@@ -17424,8 +18184,8 @@
|
|
|
17424
18184
|
"name": "Boolean",
|
|
17425
18185
|
"ofType": null
|
|
17426
18186
|
},
|
|
17427
|
-
"isDeprecated":
|
|
17428
|
-
"deprecationReason":
|
|
18187
|
+
"isDeprecated": true,
|
|
18188
|
+
"deprecationReason": "Deprecated: all routes will have turn-by-turn instructions prepared. Boolean will be ignored."
|
|
17429
18189
|
},
|
|
17430
18190
|
{
|
|
17431
18191
|
"name": "chargeMode",
|
|
@@ -18873,6 +19633,29 @@
|
|
|
18873
19633
|
"enumValues": null,
|
|
18874
19634
|
"possibleTypes": null
|
|
18875
19635
|
},
|
|
19636
|
+
{
|
|
19637
|
+
"kind": "ENUM",
|
|
19638
|
+
"name": "RouteAvoid",
|
|
19639
|
+
"description": "Types of route features that can be avoided in routing.",
|
|
19640
|
+
"fields": null,
|
|
19641
|
+
"inputFields": null,
|
|
19642
|
+
"interfaces": null,
|
|
19643
|
+
"enumValues": [
|
|
19644
|
+
{
|
|
19645
|
+
"name": "toll_road",
|
|
19646
|
+
"description": null,
|
|
19647
|
+
"isDeprecated": false,
|
|
19648
|
+
"deprecationReason": null
|
|
19649
|
+
},
|
|
19650
|
+
{
|
|
19651
|
+
"name": "ferry",
|
|
19652
|
+
"description": null,
|
|
19653
|
+
"isDeprecated": false,
|
|
19654
|
+
"deprecationReason": null
|
|
19655
|
+
}
|
|
19656
|
+
],
|
|
19657
|
+
"possibleTypes": null
|
|
19658
|
+
},
|
|
18876
19659
|
{
|
|
18877
19660
|
"kind": "OBJECT",
|
|
18878
19661
|
"name": "RouteDestinationFeaturePoint",
|
|
@@ -19460,6 +20243,18 @@
|
|
|
19460
20243
|
},
|
|
19461
20244
|
"isDeprecated": false,
|
|
19462
20245
|
"deprecationReason": null
|
|
20246
|
+
},
|
|
20247
|
+
{
|
|
20248
|
+
"name": "operator_id",
|
|
20249
|
+
"description": "ID of the station's operator.",
|
|
20250
|
+
"args": [],
|
|
20251
|
+
"type": {
|
|
20252
|
+
"kind": "SCALAR",
|
|
20253
|
+
"name": "ID",
|
|
20254
|
+
"ofType": null
|
|
20255
|
+
},
|
|
20256
|
+
"isDeprecated": false,
|
|
20257
|
+
"deprecationReason": null
|
|
19463
20258
|
}
|
|
19464
20259
|
],
|
|
19465
20260
|
"inputFields": null,
|
|
@@ -19989,7 +20784,7 @@
|
|
|
19989
20784
|
},
|
|
19990
20785
|
{
|
|
19991
20786
|
"name": "station",
|
|
19992
|
-
"description": "Information about the station at the destination of a leg.
|
|
20787
|
+
"description": "Information about the station at the destination of a leg.",
|
|
19993
20788
|
"args": [],
|
|
19994
20789
|
"type": {
|
|
19995
20790
|
"kind": "OBJECT",
|
|
@@ -21185,7 +21980,7 @@
|
|
|
21185
21980
|
},
|
|
21186
21981
|
{
|
|
21187
21982
|
"name": "average_speed",
|
|
21188
|
-
"description": "Average speed of a route path segment.",
|
|
21983
|
+
"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
21984
|
"args": [
|
|
21190
21985
|
{
|
|
21191
21986
|
"name": "unit",
|
|
@@ -21320,8 +22115,8 @@
|
|
|
21320
22115
|
"ofType": null
|
|
21321
22116
|
}
|
|
21322
22117
|
},
|
|
21323
|
-
"isDeprecated":
|
|
21324
|
-
"deprecationReason":
|
|
22118
|
+
"isDeprecated": true,
|
|
22119
|
+
"deprecationReason": "Will be removed in the future."
|
|
21325
22120
|
}
|
|
21326
22121
|
],
|
|
21327
22122
|
"inputFields": null,
|
|
@@ -23527,6 +24322,22 @@
|
|
|
23527
24322
|
"isDeprecated": false,
|
|
23528
24323
|
"deprecationReason": null
|
|
23529
24324
|
},
|
|
24325
|
+
{
|
|
24326
|
+
"name": "energy_source_model",
|
|
24327
|
+
"description": "Model used to estimate the electricity mix.",
|
|
24328
|
+
"args": [],
|
|
24329
|
+
"type": {
|
|
24330
|
+
"kind": "NON_NULL",
|
|
24331
|
+
"name": null,
|
|
24332
|
+
"ofType": {
|
|
24333
|
+
"kind": "ENUM",
|
|
24334
|
+
"name": "RouteOperationalElectricityEnergySourceModel",
|
|
24335
|
+
"ofType": null
|
|
24336
|
+
}
|
|
24337
|
+
},
|
|
24338
|
+
"isDeprecated": false,
|
|
24339
|
+
"deprecationReason": null
|
|
24340
|
+
},
|
|
23530
24341
|
{
|
|
23531
24342
|
"name": "infrastructure",
|
|
23532
24343
|
"description": "Average emissions intensity of processing and transport of primary energy, power generation infrastructure, etc. in unit CO2e/kWh.",
|
|
@@ -23557,15 +24368,15 @@
|
|
|
23557
24368
|
"deprecationReason": null
|
|
23558
24369
|
},
|
|
23559
24370
|
{
|
|
23560
|
-
"name": "
|
|
23561
|
-
"description": "
|
|
24371
|
+
"name": "season",
|
|
24372
|
+
"description": "Season for which the leg was calculated.",
|
|
23562
24373
|
"args": [],
|
|
23563
24374
|
"type": {
|
|
23564
24375
|
"kind": "NON_NULL",
|
|
23565
24376
|
"name": null,
|
|
23566
24377
|
"ofType": {
|
|
23567
|
-
"kind": "
|
|
23568
|
-
"name": "
|
|
24378
|
+
"kind": "ENUM",
|
|
24379
|
+
"name": "RouteOperationalElectricitySeason",
|
|
23569
24380
|
"ofType": null
|
|
23570
24381
|
}
|
|
23571
24382
|
},
|
|
@@ -23573,15 +24384,15 @@
|
|
|
23573
24384
|
"deprecationReason": null
|
|
23574
24385
|
},
|
|
23575
24386
|
{
|
|
23576
|
-
"name": "
|
|
23577
|
-
"description": "
|
|
24387
|
+
"name": "climate",
|
|
24388
|
+
"description": "Climate for which the leg was calculated.",
|
|
23578
24389
|
"args": [],
|
|
23579
24390
|
"type": {
|
|
23580
24391
|
"kind": "NON_NULL",
|
|
23581
24392
|
"name": null,
|
|
23582
24393
|
"ofType": {
|
|
23583
|
-
"kind": "
|
|
23584
|
-
"name": "
|
|
24394
|
+
"kind": "ENUM",
|
|
24395
|
+
"name": "RouteOperationalElectricityClimate",
|
|
23585
24396
|
"ofType": null
|
|
23586
24397
|
}
|
|
23587
24398
|
},
|
|
@@ -23589,15 +24400,15 @@
|
|
|
23589
24400
|
"deprecationReason": null
|
|
23590
24401
|
},
|
|
23591
24402
|
{
|
|
23592
|
-
"name": "
|
|
23593
|
-
"description": "
|
|
24403
|
+
"name": "average_demand",
|
|
24404
|
+
"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
24405
|
"args": [],
|
|
23595
24406
|
"type": {
|
|
23596
24407
|
"kind": "NON_NULL",
|
|
23597
24408
|
"name": null,
|
|
23598
24409
|
"ofType": {
|
|
23599
|
-
"kind": "
|
|
23600
|
-
"name": "
|
|
24410
|
+
"kind": "SCALAR",
|
|
24411
|
+
"name": "Float",
|
|
23601
24412
|
"ofType": null
|
|
23602
24413
|
}
|
|
23603
24414
|
},
|
|
@@ -23605,15 +24416,15 @@
|
|
|
23605
24416
|
"deprecationReason": null
|
|
23606
24417
|
},
|
|
23607
24418
|
{
|
|
23608
|
-
"name": "
|
|
23609
|
-
"description": "
|
|
24419
|
+
"name": "base_load_fraction",
|
|
24420
|
+
"description": "Fraction of regional power generation that is not affected by demand (is assumed to always be on).",
|
|
23610
24421
|
"args": [],
|
|
23611
24422
|
"type": {
|
|
23612
24423
|
"kind": "NON_NULL",
|
|
23613
24424
|
"name": null,
|
|
23614
24425
|
"ofType": {
|
|
23615
|
-
"kind": "
|
|
23616
|
-
"name": "
|
|
24426
|
+
"kind": "SCALAR",
|
|
24427
|
+
"name": "Float",
|
|
23617
24428
|
"ofType": null
|
|
23618
24429
|
}
|
|
23619
24430
|
},
|
|
@@ -24624,6 +25435,59 @@
|
|
|
24624
25435
|
"enumValues": null,
|
|
24625
25436
|
"possibleTypes": null
|
|
24626
25437
|
},
|
|
25438
|
+
{
|
|
25439
|
+
"kind": "ENUM",
|
|
25440
|
+
"name": "RouteOperationalElectricityEnergySourceModel",
|
|
25441
|
+
"description": "Energy source models.",
|
|
25442
|
+
"fields": null,
|
|
25443
|
+
"inputFields": null,
|
|
25444
|
+
"interfaces": null,
|
|
25445
|
+
"enumValues": [
|
|
25446
|
+
{
|
|
25447
|
+
"name": "grid_monthly_average",
|
|
25448
|
+
"description": "Historical average energy mix for the month.",
|
|
25449
|
+
"isDeprecated": false,
|
|
25450
|
+
"deprecationReason": null
|
|
25451
|
+
},
|
|
25452
|
+
{
|
|
25453
|
+
"name": "grid_hourly_average",
|
|
25454
|
+
"description": "Historical average energy mix for the month and hour.",
|
|
25455
|
+
"isDeprecated": false,
|
|
25456
|
+
"deprecationReason": null
|
|
25457
|
+
},
|
|
25458
|
+
{
|
|
25459
|
+
"name": "grid_demand_based_monthly_average",
|
|
25460
|
+
"description": "Estimate using historical average electricity demand for the month.",
|
|
25461
|
+
"isDeprecated": false,
|
|
25462
|
+
"deprecationReason": null
|
|
25463
|
+
},
|
|
25464
|
+
{
|
|
25465
|
+
"name": "grid_demand_based_hourly_average",
|
|
25466
|
+
"description": "Estimate using historical average electricity demand for the month and hour.",
|
|
25467
|
+
"isDeprecated": false,
|
|
25468
|
+
"deprecationReason": null
|
|
25469
|
+
},
|
|
25470
|
+
{
|
|
25471
|
+
"name": "climate_demand_based_seasonal_average",
|
|
25472
|
+
"description": "Estimate using the seasonal average electricity demand for the climate.",
|
|
25473
|
+
"isDeprecated": false,
|
|
25474
|
+
"deprecationReason": null
|
|
25475
|
+
},
|
|
25476
|
+
{
|
|
25477
|
+
"name": "climate_demand_based_hourly_average",
|
|
25478
|
+
"description": "Estimate using the seasonal average electricity demand for the hour and climate.",
|
|
25479
|
+
"isDeprecated": false,
|
|
25480
|
+
"deprecationReason": null
|
|
25481
|
+
},
|
|
25482
|
+
{
|
|
25483
|
+
"name": "default",
|
|
25484
|
+
"description": "Regional default energy mix.",
|
|
25485
|
+
"isDeprecated": false,
|
|
25486
|
+
"deprecationReason": null
|
|
25487
|
+
}
|
|
25488
|
+
],
|
|
25489
|
+
"possibleTypes": null
|
|
25490
|
+
},
|
|
24627
25491
|
{
|
|
24628
25492
|
"kind": "OBJECT",
|
|
24629
25493
|
"name": "RouteOperationalElectricityEnergySources",
|
|
@@ -27594,7 +28458,7 @@
|
|
|
27594
28458
|
},
|
|
27595
28459
|
{
|
|
27596
28460
|
"name": "state_of_charge",
|
|
27597
|
-
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.
|
|
28461
|
+
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.",
|
|
27598
28462
|
"args": [],
|
|
27599
28463
|
"type": {
|
|
27600
28464
|
"kind": "NON_NULL",
|
|
@@ -27710,7 +28574,7 @@
|
|
|
27710
28574
|
},
|
|
27711
28575
|
{
|
|
27712
28576
|
"name": "state_of_charge",
|
|
27713
|
-
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.
|
|
28577
|
+
"description": "Current amount of energy in a battery. If not provided, it is assumed the battery is fully charged and equal to the vehicle battery.capacity.",
|
|
27714
28578
|
"type": {
|
|
27715
28579
|
"kind": "INPUT_OBJECT",
|
|
27716
28580
|
"name": "StateOfChargeInput",
|
|
@@ -29000,6 +29864,198 @@
|
|
|
29000
29864
|
"enumValues": null,
|
|
29001
29865
|
"possibleTypes": null
|
|
29002
29866
|
},
|
|
29867
|
+
{
|
|
29868
|
+
"kind": "OBJECT",
|
|
29869
|
+
"name": "RouteWeather",
|
|
29870
|
+
"description": null,
|
|
29871
|
+
"fields": [
|
|
29872
|
+
{
|
|
29873
|
+
"name": "type",
|
|
29874
|
+
"description": "Weather configuration applied to the route.",
|
|
29875
|
+
"args": [],
|
|
29876
|
+
"type": {
|
|
29877
|
+
"kind": "NON_NULL",
|
|
29878
|
+
"name": null,
|
|
29879
|
+
"ofType": {
|
|
29880
|
+
"kind": "ENUM",
|
|
29881
|
+
"name": "WeatherType",
|
|
29882
|
+
"ofType": null
|
|
29883
|
+
}
|
|
29884
|
+
},
|
|
29885
|
+
"isDeprecated": false,
|
|
29886
|
+
"deprecationReason": null
|
|
29887
|
+
},
|
|
29888
|
+
{
|
|
29889
|
+
"name": "custom",
|
|
29890
|
+
"description": "[BETA] Custom weather conditions applied to the route. Only present when 'type' is set to 'CUSTOM'.",
|
|
29891
|
+
"args": [],
|
|
29892
|
+
"type": {
|
|
29893
|
+
"kind": "OBJECT",
|
|
29894
|
+
"name": "RouteWeatherCustomConditions",
|
|
29895
|
+
"ofType": null
|
|
29896
|
+
},
|
|
29897
|
+
"isDeprecated": false,
|
|
29898
|
+
"deprecationReason": null
|
|
29899
|
+
}
|
|
29900
|
+
],
|
|
29901
|
+
"inputFields": null,
|
|
29902
|
+
"interfaces": [],
|
|
29903
|
+
"enumValues": null,
|
|
29904
|
+
"possibleTypes": null
|
|
29905
|
+
},
|
|
29906
|
+
{
|
|
29907
|
+
"kind": "OBJECT",
|
|
29908
|
+
"name": "RouteWeatherCustomConditions",
|
|
29909
|
+
"description": null,
|
|
29910
|
+
"fields": [
|
|
29911
|
+
{
|
|
29912
|
+
"name": "temperature",
|
|
29913
|
+
"description": "Average ambient temperature estimated along the route.",
|
|
29914
|
+
"args": [],
|
|
29915
|
+
"type": {
|
|
29916
|
+
"kind": "NON_NULL",
|
|
29917
|
+
"name": null,
|
|
29918
|
+
"ofType": {
|
|
29919
|
+
"kind": "OBJECT",
|
|
29920
|
+
"name": "Temperature",
|
|
29921
|
+
"ofType": null
|
|
29922
|
+
}
|
|
29923
|
+
},
|
|
29924
|
+
"isDeprecated": false,
|
|
29925
|
+
"deprecationReason": null
|
|
29926
|
+
},
|
|
29927
|
+
{
|
|
29928
|
+
"name": "air_pressure",
|
|
29929
|
+
"description": "Atmospheric pressure along the route.",
|
|
29930
|
+
"args": [],
|
|
29931
|
+
"type": {
|
|
29932
|
+
"kind": "NON_NULL",
|
|
29933
|
+
"name": null,
|
|
29934
|
+
"ofType": {
|
|
29935
|
+
"kind": "OBJECT",
|
|
29936
|
+
"name": "AirPressure",
|
|
29937
|
+
"ofType": null
|
|
29938
|
+
}
|
|
29939
|
+
},
|
|
29940
|
+
"isDeprecated": false,
|
|
29941
|
+
"deprecationReason": null
|
|
29942
|
+
},
|
|
29943
|
+
{
|
|
29944
|
+
"name": "solar_irradiance",
|
|
29945
|
+
"description": "Solar irradiance along the route.",
|
|
29946
|
+
"args": [],
|
|
29947
|
+
"type": {
|
|
29948
|
+
"kind": "NON_NULL",
|
|
29949
|
+
"name": null,
|
|
29950
|
+
"ofType": {
|
|
29951
|
+
"kind": "OBJECT",
|
|
29952
|
+
"name": "SolarIrradiance",
|
|
29953
|
+
"ofType": null
|
|
29954
|
+
}
|
|
29955
|
+
},
|
|
29956
|
+
"isDeprecated": false,
|
|
29957
|
+
"deprecationReason": null
|
|
29958
|
+
}
|
|
29959
|
+
],
|
|
29960
|
+
"inputFields": null,
|
|
29961
|
+
"interfaces": [],
|
|
29962
|
+
"enumValues": null,
|
|
29963
|
+
"possibleTypes": null
|
|
29964
|
+
},
|
|
29965
|
+
{
|
|
29966
|
+
"kind": "INPUT_OBJECT",
|
|
29967
|
+
"name": "RouteWeatherCustomConditionsInput",
|
|
29968
|
+
"description": null,
|
|
29969
|
+
"fields": null,
|
|
29970
|
+
"inputFields": [
|
|
29971
|
+
{
|
|
29972
|
+
"name": "temperature",
|
|
29973
|
+
"description": "Average ambient temperature estimated along the route.",
|
|
29974
|
+
"type": {
|
|
29975
|
+
"kind": "NON_NULL",
|
|
29976
|
+
"name": null,
|
|
29977
|
+
"ofType": {
|
|
29978
|
+
"kind": "INPUT_OBJECT",
|
|
29979
|
+
"name": "TemperatureInput",
|
|
29980
|
+
"ofType": null
|
|
29981
|
+
}
|
|
29982
|
+
},
|
|
29983
|
+
"defaultValue": null,
|
|
29984
|
+
"isDeprecated": false,
|
|
29985
|
+
"deprecationReason": null
|
|
29986
|
+
},
|
|
29987
|
+
{
|
|
29988
|
+
"name": "air_pressure",
|
|
29989
|
+
"description": "Atmospheric pressure along the route.",
|
|
29990
|
+
"type": {
|
|
29991
|
+
"kind": "NON_NULL",
|
|
29992
|
+
"name": null,
|
|
29993
|
+
"ofType": {
|
|
29994
|
+
"kind": "INPUT_OBJECT",
|
|
29995
|
+
"name": "AirPressureInput",
|
|
29996
|
+
"ofType": null
|
|
29997
|
+
}
|
|
29998
|
+
},
|
|
29999
|
+
"defaultValue": null,
|
|
30000
|
+
"isDeprecated": false,
|
|
30001
|
+
"deprecationReason": null
|
|
30002
|
+
},
|
|
30003
|
+
{
|
|
30004
|
+
"name": "solar_irradiance",
|
|
30005
|
+
"description": "Solar irradiance along the route.",
|
|
30006
|
+
"type": {
|
|
30007
|
+
"kind": "NON_NULL",
|
|
30008
|
+
"name": null,
|
|
30009
|
+
"ofType": {
|
|
30010
|
+
"kind": "INPUT_OBJECT",
|
|
30011
|
+
"name": "SolarIrradianceInput",
|
|
30012
|
+
"ofType": null
|
|
30013
|
+
}
|
|
30014
|
+
},
|
|
30015
|
+
"defaultValue": null,
|
|
30016
|
+
"isDeprecated": false,
|
|
30017
|
+
"deprecationReason": null
|
|
30018
|
+
}
|
|
30019
|
+
],
|
|
30020
|
+
"interfaces": null,
|
|
30021
|
+
"enumValues": null,
|
|
30022
|
+
"possibleTypes": null
|
|
30023
|
+
},
|
|
30024
|
+
{
|
|
30025
|
+
"kind": "INPUT_OBJECT",
|
|
30026
|
+
"name": "RouteWeatherInput",
|
|
30027
|
+
"description": null,
|
|
30028
|
+
"fields": null,
|
|
30029
|
+
"inputFields": [
|
|
30030
|
+
{
|
|
30031
|
+
"name": "type",
|
|
30032
|
+
"description": "Weather configuration applied to the route.",
|
|
30033
|
+
"type": {
|
|
30034
|
+
"kind": "ENUM",
|
|
30035
|
+
"name": "WeatherType",
|
|
30036
|
+
"ofType": null
|
|
30037
|
+
},
|
|
30038
|
+
"defaultValue": "actual",
|
|
30039
|
+
"isDeprecated": false,
|
|
30040
|
+
"deprecationReason": null
|
|
30041
|
+
},
|
|
30042
|
+
{
|
|
30043
|
+
"name": "custom",
|
|
30044
|
+
"description": "[BETA] Custom weather conditions to apply to the route. Required only when 'type' is 'CUSTOM'. Must be omitted for other weather types.",
|
|
30045
|
+
"type": {
|
|
30046
|
+
"kind": "INPUT_OBJECT",
|
|
30047
|
+
"name": "RouteWeatherCustomConditionsInput",
|
|
30048
|
+
"ofType": null
|
|
30049
|
+
},
|
|
30050
|
+
"defaultValue": null,
|
|
30051
|
+
"isDeprecated": false,
|
|
30052
|
+
"deprecationReason": null
|
|
30053
|
+
}
|
|
30054
|
+
],
|
|
30055
|
+
"interfaces": null,
|
|
30056
|
+
"enumValues": null,
|
|
30057
|
+
"possibleTypes": null
|
|
30058
|
+
},
|
|
29003
30059
|
{
|
|
29004
30060
|
"kind": "INPUT_OBJECT",
|
|
29005
30061
|
"name": "ScheduledChargeStopInput",
|
|
@@ -29091,6 +30147,109 @@
|
|
|
29091
30147
|
"enumValues": null,
|
|
29092
30148
|
"possibleTypes": null
|
|
29093
30149
|
},
|
|
30150
|
+
{
|
|
30151
|
+
"kind": "OBJECT",
|
|
30152
|
+
"name": "SolarIrradiance",
|
|
30153
|
+
"description": null,
|
|
30154
|
+
"fields": [
|
|
30155
|
+
{
|
|
30156
|
+
"name": "value",
|
|
30157
|
+
"description": "Value of the solar irradiance.",
|
|
30158
|
+
"args": [],
|
|
30159
|
+
"type": {
|
|
30160
|
+
"kind": "NON_NULL",
|
|
30161
|
+
"name": null,
|
|
30162
|
+
"ofType": {
|
|
30163
|
+
"kind": "SCALAR",
|
|
30164
|
+
"name": "Float",
|
|
30165
|
+
"ofType": null
|
|
30166
|
+
}
|
|
30167
|
+
},
|
|
30168
|
+
"isDeprecated": false,
|
|
30169
|
+
"deprecationReason": null
|
|
30170
|
+
},
|
|
30171
|
+
{
|
|
30172
|
+
"name": "type",
|
|
30173
|
+
"description": "Solar irradiance unit.",
|
|
30174
|
+
"args": [],
|
|
30175
|
+
"type": {
|
|
30176
|
+
"kind": "NON_NULL",
|
|
30177
|
+
"name": null,
|
|
30178
|
+
"ofType": {
|
|
30179
|
+
"kind": "ENUM",
|
|
30180
|
+
"name": "SolarIrradianceUnit",
|
|
30181
|
+
"ofType": null
|
|
30182
|
+
}
|
|
30183
|
+
},
|
|
30184
|
+
"isDeprecated": false,
|
|
30185
|
+
"deprecationReason": null
|
|
30186
|
+
}
|
|
30187
|
+
],
|
|
30188
|
+
"inputFields": null,
|
|
30189
|
+
"interfaces": [],
|
|
30190
|
+
"enumValues": null,
|
|
30191
|
+
"possibleTypes": null
|
|
30192
|
+
},
|
|
30193
|
+
{
|
|
30194
|
+
"kind": "INPUT_OBJECT",
|
|
30195
|
+
"name": "SolarIrradianceInput",
|
|
30196
|
+
"description": null,
|
|
30197
|
+
"fields": null,
|
|
30198
|
+
"inputFields": [
|
|
30199
|
+
{
|
|
30200
|
+
"name": "value",
|
|
30201
|
+
"description": "Value of the solar irradiance.",
|
|
30202
|
+
"type": {
|
|
30203
|
+
"kind": "NON_NULL",
|
|
30204
|
+
"name": null,
|
|
30205
|
+
"ofType": {
|
|
30206
|
+
"kind": "SCALAR",
|
|
30207
|
+
"name": "Float",
|
|
30208
|
+
"ofType": null
|
|
30209
|
+
}
|
|
30210
|
+
},
|
|
30211
|
+
"defaultValue": null,
|
|
30212
|
+
"isDeprecated": false,
|
|
30213
|
+
"deprecationReason": null
|
|
30214
|
+
},
|
|
30215
|
+
{
|
|
30216
|
+
"name": "type",
|
|
30217
|
+
"description": "Solar irradiance unit.",
|
|
30218
|
+
"type": {
|
|
30219
|
+
"kind": "NON_NULL",
|
|
30220
|
+
"name": null,
|
|
30221
|
+
"ofType": {
|
|
30222
|
+
"kind": "ENUM",
|
|
30223
|
+
"name": "SolarIrradianceUnit",
|
|
30224
|
+
"ofType": null
|
|
30225
|
+
}
|
|
30226
|
+
},
|
|
30227
|
+
"defaultValue": null,
|
|
30228
|
+
"isDeprecated": false,
|
|
30229
|
+
"deprecationReason": null
|
|
30230
|
+
}
|
|
30231
|
+
],
|
|
30232
|
+
"interfaces": null,
|
|
30233
|
+
"enumValues": null,
|
|
30234
|
+
"possibleTypes": null
|
|
30235
|
+
},
|
|
30236
|
+
{
|
|
30237
|
+
"kind": "ENUM",
|
|
30238
|
+
"name": "SolarIrradianceUnit",
|
|
30239
|
+
"description": null,
|
|
30240
|
+
"fields": null,
|
|
30241
|
+
"inputFields": null,
|
|
30242
|
+
"interfaces": null,
|
|
30243
|
+
"enumValues": [
|
|
30244
|
+
{
|
|
30245
|
+
"name": "watts_per_square_meter",
|
|
30246
|
+
"description": null,
|
|
30247
|
+
"isDeprecated": false,
|
|
30248
|
+
"deprecationReason": null
|
|
30249
|
+
}
|
|
30250
|
+
],
|
|
30251
|
+
"possibleTypes": null
|
|
30252
|
+
},
|
|
29094
30253
|
{
|
|
29095
30254
|
"kind": "ENUM",
|
|
29096
30255
|
"name": "SortDirection",
|
|
@@ -29117,7 +30276,7 @@
|
|
|
29117
30276
|
{
|
|
29118
30277
|
"kind": "ENUM",
|
|
29119
30278
|
"name": "SpeedUnit",
|
|
29120
|
-
"description":
|
|
30279
|
+
"description": null,
|
|
29121
30280
|
"fields": null,
|
|
29122
30281
|
"inputFields": null,
|
|
29123
30282
|
"interfaces": null,
|
|
@@ -29254,7 +30413,7 @@
|
|
|
29254
30413
|
{
|
|
29255
30414
|
"kind": "ENUM",
|
|
29256
30415
|
"name": "StateOfChargeUnit",
|
|
29257
|
-
"description":
|
|
30416
|
+
"description": null,
|
|
29258
30417
|
"fields": null,
|
|
29259
30418
|
"inputFields": null,
|
|
29260
30419
|
"interfaces": null,
|
|
@@ -30367,7 +31526,7 @@
|
|
|
30367
31526
|
"ofType": null
|
|
30368
31527
|
},
|
|
30369
31528
|
"isDeprecated": true,
|
|
30370
|
-
"deprecationReason": "In favor of station.
|
|
31529
|
+
"deprecationReason": "In favor of station.access_type."
|
|
30371
31530
|
},
|
|
30372
31531
|
{
|
|
30373
31532
|
"name": "oicp",
|
|
@@ -31148,93 +32307,6 @@
|
|
|
31148
32307
|
"name": "Subscription",
|
|
31149
32308
|
"description": null,
|
|
31150
32309
|
"fields": [
|
|
31151
|
-
{
|
|
31152
|
-
"name": "connectedVehicle",
|
|
31153
|
-
"description": "[BETA] Subscribe to a connected vehicle.",
|
|
31154
|
-
"args": [
|
|
31155
|
-
{
|
|
31156
|
-
"name": "id",
|
|
31157
|
-
"description": null,
|
|
31158
|
-
"type": {
|
|
31159
|
-
"kind": "NON_NULL",
|
|
31160
|
-
"name": null,
|
|
31161
|
-
"ofType": {
|
|
31162
|
-
"kind": "SCALAR",
|
|
31163
|
-
"name": "ID",
|
|
31164
|
-
"ofType": null
|
|
31165
|
-
}
|
|
31166
|
-
},
|
|
31167
|
-
"defaultValue": null,
|
|
31168
|
-
"isDeprecated": false,
|
|
31169
|
-
"deprecationReason": null
|
|
31170
|
-
}
|
|
31171
|
-
],
|
|
31172
|
-
"type": {
|
|
31173
|
-
"kind": "OBJECT",
|
|
31174
|
-
"name": "ConnectedVehicle",
|
|
31175
|
-
"ofType": null
|
|
31176
|
-
},
|
|
31177
|
-
"isDeprecated": false,
|
|
31178
|
-
"deprecationReason": null
|
|
31179
|
-
},
|
|
31180
|
-
{
|
|
31181
|
-
"name": "isoline",
|
|
31182
|
-
"description": "Subscribe to an isoline in order to receive updates.",
|
|
31183
|
-
"args": [
|
|
31184
|
-
{
|
|
31185
|
-
"name": "id",
|
|
31186
|
-
"description": null,
|
|
31187
|
-
"type": {
|
|
31188
|
-
"kind": "NON_NULL",
|
|
31189
|
-
"name": null,
|
|
31190
|
-
"ofType": {
|
|
31191
|
-
"kind": "SCALAR",
|
|
31192
|
-
"name": "ID",
|
|
31193
|
-
"ofType": null
|
|
31194
|
-
}
|
|
31195
|
-
},
|
|
31196
|
-
"defaultValue": null,
|
|
31197
|
-
"isDeprecated": false,
|
|
31198
|
-
"deprecationReason": null
|
|
31199
|
-
}
|
|
31200
|
-
],
|
|
31201
|
-
"type": {
|
|
31202
|
-
"kind": "OBJECT",
|
|
31203
|
-
"name": "Isoline",
|
|
31204
|
-
"ofType": null
|
|
31205
|
-
},
|
|
31206
|
-
"isDeprecated": false,
|
|
31207
|
-
"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
32310
|
{
|
|
31239
32311
|
"name": "routeUpdatedById",
|
|
31240
32312
|
"description": "Deprecated: In favor of route.",
|
|
@@ -31296,6 +32368,93 @@
|
|
|
31296
32368
|
},
|
|
31297
32369
|
"isDeprecated": false,
|
|
31298
32370
|
"deprecationReason": null
|
|
32371
|
+
},
|
|
32372
|
+
{
|
|
32373
|
+
"name": "navigationUpdatedById",
|
|
32374
|
+
"description": "[BETA] Subscribe to navigation session system event updates. We strongly recommend using this at all times to not miss any updates",
|
|
32375
|
+
"args": [
|
|
32376
|
+
{
|
|
32377
|
+
"name": "id",
|
|
32378
|
+
"description": null,
|
|
32379
|
+
"type": {
|
|
32380
|
+
"kind": "NON_NULL",
|
|
32381
|
+
"name": null,
|
|
32382
|
+
"ofType": {
|
|
32383
|
+
"kind": "SCALAR",
|
|
32384
|
+
"name": "ID",
|
|
32385
|
+
"ofType": null
|
|
32386
|
+
}
|
|
32387
|
+
},
|
|
32388
|
+
"defaultValue": null,
|
|
32389
|
+
"isDeprecated": false,
|
|
32390
|
+
"deprecationReason": null
|
|
32391
|
+
}
|
|
32392
|
+
],
|
|
32393
|
+
"type": {
|
|
32394
|
+
"kind": "OBJECT",
|
|
32395
|
+
"name": "Navigation",
|
|
32396
|
+
"ofType": null
|
|
32397
|
+
},
|
|
32398
|
+
"isDeprecated": false,
|
|
32399
|
+
"deprecationReason": null
|
|
32400
|
+
},
|
|
32401
|
+
{
|
|
32402
|
+
"name": "connectedVehicle",
|
|
32403
|
+
"description": "[BETA] Subscribe to a connected vehicle.",
|
|
32404
|
+
"args": [
|
|
32405
|
+
{
|
|
32406
|
+
"name": "id",
|
|
32407
|
+
"description": null,
|
|
32408
|
+
"type": {
|
|
32409
|
+
"kind": "NON_NULL",
|
|
32410
|
+
"name": null,
|
|
32411
|
+
"ofType": {
|
|
32412
|
+
"kind": "SCALAR",
|
|
32413
|
+
"name": "ID",
|
|
32414
|
+
"ofType": null
|
|
32415
|
+
}
|
|
32416
|
+
},
|
|
32417
|
+
"defaultValue": null,
|
|
32418
|
+
"isDeprecated": false,
|
|
32419
|
+
"deprecationReason": null
|
|
32420
|
+
}
|
|
32421
|
+
],
|
|
32422
|
+
"type": {
|
|
32423
|
+
"kind": "OBJECT",
|
|
32424
|
+
"name": "ConnectedVehicle",
|
|
32425
|
+
"ofType": null
|
|
32426
|
+
},
|
|
32427
|
+
"isDeprecated": false,
|
|
32428
|
+
"deprecationReason": null
|
|
32429
|
+
},
|
|
32430
|
+
{
|
|
32431
|
+
"name": "isoline",
|
|
32432
|
+
"description": "Subscribe to an isoline in order to receive updates.",
|
|
32433
|
+
"args": [
|
|
32434
|
+
{
|
|
32435
|
+
"name": "id",
|
|
32436
|
+
"description": null,
|
|
32437
|
+
"type": {
|
|
32438
|
+
"kind": "NON_NULL",
|
|
32439
|
+
"name": null,
|
|
32440
|
+
"ofType": {
|
|
32441
|
+
"kind": "SCALAR",
|
|
32442
|
+
"name": "ID",
|
|
32443
|
+
"ofType": null
|
|
32444
|
+
}
|
|
32445
|
+
},
|
|
32446
|
+
"defaultValue": null,
|
|
32447
|
+
"isDeprecated": false,
|
|
32448
|
+
"deprecationReason": null
|
|
32449
|
+
}
|
|
32450
|
+
],
|
|
32451
|
+
"type": {
|
|
32452
|
+
"kind": "OBJECT",
|
|
32453
|
+
"name": "Isoline",
|
|
32454
|
+
"ofType": null
|
|
32455
|
+
},
|
|
32456
|
+
"isDeprecated": false,
|
|
32457
|
+
"deprecationReason": null
|
|
31299
32458
|
}
|
|
31300
32459
|
],
|
|
31301
32460
|
"inputFields": null,
|
|
@@ -32033,7 +33192,7 @@
|
|
|
32033
33192
|
{
|
|
32034
33193
|
"kind": "ENUM",
|
|
32035
33194
|
"name": "TelemetryInputSource",
|
|
32036
|
-
"description":
|
|
33195
|
+
"description": null,
|
|
32037
33196
|
"fields": null,
|
|
32038
33197
|
"inputFields": null,
|
|
32039
33198
|
"interfaces": null,
|
|
@@ -32148,7 +33307,7 @@
|
|
|
32148
33307
|
{
|
|
32149
33308
|
"kind": "ENUM",
|
|
32150
33309
|
"name": "TemperatureUnit",
|
|
32151
|
-
"description":
|
|
33310
|
+
"description": null,
|
|
32152
33311
|
"fields": null,
|
|
32153
33312
|
"inputFields": null,
|
|
32154
33313
|
"interfaces": null,
|
|
@@ -34426,6 +35585,30 @@
|
|
|
34426
35585
|
"defaultValue": null,
|
|
34427
35586
|
"isDeprecated": false,
|
|
34428
35587
|
"deprecationReason": null
|
|
35588
|
+
},
|
|
35589
|
+
{
|
|
35590
|
+
"name": "make",
|
|
35591
|
+
"description": "[BETA] Make of vehicle.",
|
|
35592
|
+
"type": {
|
|
35593
|
+
"kind": "SCALAR",
|
|
35594
|
+
"name": "String",
|
|
35595
|
+
"ofType": null
|
|
35596
|
+
},
|
|
35597
|
+
"defaultValue": null,
|
|
35598
|
+
"isDeprecated": false,
|
|
35599
|
+
"deprecationReason": null
|
|
35600
|
+
},
|
|
35601
|
+
{
|
|
35602
|
+
"name": "model",
|
|
35603
|
+
"description": "[BETA] Model of vehicle.",
|
|
35604
|
+
"type": {
|
|
35605
|
+
"kind": "SCALAR",
|
|
35606
|
+
"name": "String",
|
|
35607
|
+
"ofType": null
|
|
35608
|
+
},
|
|
35609
|
+
"defaultValue": null,
|
|
35610
|
+
"isDeprecated": false,
|
|
35611
|
+
"deprecationReason": null
|
|
34429
35612
|
}
|
|
34430
35613
|
],
|
|
34431
35614
|
"interfaces": null,
|
|
@@ -34640,6 +35823,84 @@
|
|
|
34640
35823
|
"enumValues": null,
|
|
34641
35824
|
"possibleTypes": null
|
|
34642
35825
|
},
|
|
35826
|
+
{
|
|
35827
|
+
"kind": "OBJECT",
|
|
35828
|
+
"name": "VehicleMake",
|
|
35829
|
+
"description": "Vehicle make data.",
|
|
35830
|
+
"fields": [
|
|
35831
|
+
{
|
|
35832
|
+
"name": "name",
|
|
35833
|
+
"description": "Vehicle make name.",
|
|
35834
|
+
"args": [],
|
|
35835
|
+
"type": {
|
|
35836
|
+
"kind": "NON_NULL",
|
|
35837
|
+
"name": null,
|
|
35838
|
+
"ofType": {
|
|
35839
|
+
"kind": "SCALAR",
|
|
35840
|
+
"name": "String",
|
|
35841
|
+
"ofType": null
|
|
35842
|
+
}
|
|
35843
|
+
},
|
|
35844
|
+
"isDeprecated": false,
|
|
35845
|
+
"deprecationReason": null
|
|
35846
|
+
},
|
|
35847
|
+
{
|
|
35848
|
+
"name": "image",
|
|
35849
|
+
"description": "Vehicle make image.",
|
|
35850
|
+
"args": [],
|
|
35851
|
+
"type": {
|
|
35852
|
+
"kind": "NON_NULL",
|
|
35853
|
+
"name": null,
|
|
35854
|
+
"ofType": {
|
|
35855
|
+
"kind": "OBJECT",
|
|
35856
|
+
"name": "VehicleImage",
|
|
35857
|
+
"ofType": null
|
|
35858
|
+
}
|
|
35859
|
+
},
|
|
35860
|
+
"isDeprecated": false,
|
|
35861
|
+
"deprecationReason": null
|
|
35862
|
+
}
|
|
35863
|
+
],
|
|
35864
|
+
"inputFields": null,
|
|
35865
|
+
"interfaces": [],
|
|
35866
|
+
"enumValues": null,
|
|
35867
|
+
"possibleTypes": null
|
|
35868
|
+
},
|
|
35869
|
+
{
|
|
35870
|
+
"kind": "OBJECT",
|
|
35871
|
+
"name": "VehicleMakesResponse",
|
|
35872
|
+
"description": "Vehicle makes response object.",
|
|
35873
|
+
"fields": [
|
|
35874
|
+
{
|
|
35875
|
+
"name": "items",
|
|
35876
|
+
"description": "Elements of the vehicle make list.",
|
|
35877
|
+
"args": [],
|
|
35878
|
+
"type": {
|
|
35879
|
+
"kind": "NON_NULL",
|
|
35880
|
+
"name": null,
|
|
35881
|
+
"ofType": {
|
|
35882
|
+
"kind": "LIST",
|
|
35883
|
+
"name": null,
|
|
35884
|
+
"ofType": {
|
|
35885
|
+
"kind": "NON_NULL",
|
|
35886
|
+
"name": null,
|
|
35887
|
+
"ofType": {
|
|
35888
|
+
"kind": "OBJECT",
|
|
35889
|
+
"name": "VehicleMake",
|
|
35890
|
+
"ofType": null
|
|
35891
|
+
}
|
|
35892
|
+
}
|
|
35893
|
+
}
|
|
35894
|
+
},
|
|
35895
|
+
"isDeprecated": false,
|
|
35896
|
+
"deprecationReason": null
|
|
35897
|
+
}
|
|
35898
|
+
],
|
|
35899
|
+
"inputFields": null,
|
|
35900
|
+
"interfaces": [],
|
|
35901
|
+
"enumValues": null,
|
|
35902
|
+
"possibleTypes": null
|
|
35903
|
+
},
|
|
34643
35904
|
{
|
|
34644
35905
|
"kind": "OBJECT",
|
|
34645
35906
|
"name": "VehicleMedia",
|
|
@@ -34784,6 +36045,95 @@
|
|
|
34784
36045
|
],
|
|
34785
36046
|
"possibleTypes": null
|
|
34786
36047
|
},
|
|
36048
|
+
{
|
|
36049
|
+
"kind": "OBJECT",
|
|
36050
|
+
"name": "VehicleModel",
|
|
36051
|
+
"description": "Vehicle model data.",
|
|
36052
|
+
"fields": [
|
|
36053
|
+
{
|
|
36054
|
+
"name": "name",
|
|
36055
|
+
"description": "Vehicle model name.",
|
|
36056
|
+
"args": [],
|
|
36057
|
+
"type": {
|
|
36058
|
+
"kind": "NON_NULL",
|
|
36059
|
+
"name": null,
|
|
36060
|
+
"ofType": {
|
|
36061
|
+
"kind": "SCALAR",
|
|
36062
|
+
"name": "String",
|
|
36063
|
+
"ofType": null
|
|
36064
|
+
}
|
|
36065
|
+
},
|
|
36066
|
+
"isDeprecated": false,
|
|
36067
|
+
"deprecationReason": null
|
|
36068
|
+
}
|
|
36069
|
+
],
|
|
36070
|
+
"inputFields": null,
|
|
36071
|
+
"interfaces": [],
|
|
36072
|
+
"enumValues": null,
|
|
36073
|
+
"possibleTypes": null
|
|
36074
|
+
},
|
|
36075
|
+
{
|
|
36076
|
+
"kind": "INPUT_OBJECT",
|
|
36077
|
+
"name": "VehicleModelsFilter",
|
|
36078
|
+
"description": "Filter vehicle model list result.",
|
|
36079
|
+
"fields": null,
|
|
36080
|
+
"inputFields": [
|
|
36081
|
+
{
|
|
36082
|
+
"name": "make",
|
|
36083
|
+
"description": "Vehicle make.",
|
|
36084
|
+
"type": {
|
|
36085
|
+
"kind": "NON_NULL",
|
|
36086
|
+
"name": null,
|
|
36087
|
+
"ofType": {
|
|
36088
|
+
"kind": "SCALAR",
|
|
36089
|
+
"name": "String",
|
|
36090
|
+
"ofType": null
|
|
36091
|
+
}
|
|
36092
|
+
},
|
|
36093
|
+
"defaultValue": null,
|
|
36094
|
+
"isDeprecated": false,
|
|
36095
|
+
"deprecationReason": null
|
|
36096
|
+
}
|
|
36097
|
+
],
|
|
36098
|
+
"interfaces": null,
|
|
36099
|
+
"enumValues": null,
|
|
36100
|
+
"possibleTypes": null
|
|
36101
|
+
},
|
|
36102
|
+
{
|
|
36103
|
+
"kind": "OBJECT",
|
|
36104
|
+
"name": "VehicleModelsResponse",
|
|
36105
|
+
"description": "Vehicle models response object.",
|
|
36106
|
+
"fields": [
|
|
36107
|
+
{
|
|
36108
|
+
"name": "items",
|
|
36109
|
+
"description": "Elements of the vehicle model list.",
|
|
36110
|
+
"args": [],
|
|
36111
|
+
"type": {
|
|
36112
|
+
"kind": "NON_NULL",
|
|
36113
|
+
"name": null,
|
|
36114
|
+
"ofType": {
|
|
36115
|
+
"kind": "LIST",
|
|
36116
|
+
"name": null,
|
|
36117
|
+
"ofType": {
|
|
36118
|
+
"kind": "NON_NULL",
|
|
36119
|
+
"name": null,
|
|
36120
|
+
"ofType": {
|
|
36121
|
+
"kind": "OBJECT",
|
|
36122
|
+
"name": "VehicleModel",
|
|
36123
|
+
"ofType": null
|
|
36124
|
+
}
|
|
36125
|
+
}
|
|
36126
|
+
}
|
|
36127
|
+
},
|
|
36128
|
+
"isDeprecated": false,
|
|
36129
|
+
"deprecationReason": null
|
|
36130
|
+
}
|
|
36131
|
+
],
|
|
36132
|
+
"inputFields": null,
|
|
36133
|
+
"interfaces": [],
|
|
36134
|
+
"enumValues": null,
|
|
36135
|
+
"possibleTypes": null
|
|
36136
|
+
},
|
|
34787
36137
|
{
|
|
34788
36138
|
"kind": "OBJECT",
|
|
34789
36139
|
"name": "VehicleNaming",
|
|
@@ -39915,10 +41265,45 @@
|
|
|
39915
41265
|
],
|
|
39916
41266
|
"possibleTypes": null
|
|
39917
41267
|
},
|
|
41268
|
+
{
|
|
41269
|
+
"kind": "ENUM",
|
|
41270
|
+
"name": "WeatherType",
|
|
41271
|
+
"description": "Type of weather conditions used in the route calculation.",
|
|
41272
|
+
"fields": null,
|
|
41273
|
+
"inputFields": null,
|
|
41274
|
+
"interfaces": null,
|
|
41275
|
+
"enumValues": [
|
|
41276
|
+
{
|
|
41277
|
+
"name": "summer",
|
|
41278
|
+
"description": "Fixed seasonal preset representing typical summer weather conditions. Can't be used in combination with weather.custom.",
|
|
41279
|
+
"isDeprecated": false,
|
|
41280
|
+
"deprecationReason": null
|
|
41281
|
+
},
|
|
41282
|
+
{
|
|
41283
|
+
"name": "winter",
|
|
41284
|
+
"description": "Fixed seasonal preset representing typical winter weather conditions. Can't be used in combination with weather.custom.",
|
|
41285
|
+
"isDeprecated": false,
|
|
41286
|
+
"deprecationReason": null
|
|
41287
|
+
},
|
|
41288
|
+
{
|
|
41289
|
+
"name": "actual",
|
|
41290
|
+
"description": "A dynamic preset that uses real weather data based on the route's departure time. Can't be used in combination with weather.custom.",
|
|
41291
|
+
"isDeprecated": false,
|
|
41292
|
+
"deprecationReason": null
|
|
41293
|
+
},
|
|
41294
|
+
{
|
|
41295
|
+
"name": "custom",
|
|
41296
|
+
"description": "Must be used in combination with weather.custom object.",
|
|
41297
|
+
"isDeprecated": false,
|
|
41298
|
+
"deprecationReason": null
|
|
41299
|
+
}
|
|
41300
|
+
],
|
|
41301
|
+
"possibleTypes": null
|
|
41302
|
+
},
|
|
39918
41303
|
{
|
|
39919
41304
|
"kind": "ENUM",
|
|
39920
41305
|
"name": "WeightUnit",
|
|
39921
|
-
"description":
|
|
41306
|
+
"description": null,
|
|
39922
41307
|
"fields": null,
|
|
39923
41308
|
"inputFields": null,
|
|
39924
41309
|
"interfaces": null,
|
|
@@ -40835,33 +42220,17 @@
|
|
|
40835
42220
|
],
|
|
40836
42221
|
"directives": [
|
|
40837
42222
|
{
|
|
40838
|
-
"name": "
|
|
40839
|
-
"description": "Converting the value of a charge speed input to a single unit.",
|
|
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",
|
|
42223
|
+
"name": "chargetripDeprecated",
|
|
40859
42224
|
"description": null,
|
|
40860
42225
|
"isRepeatable": false,
|
|
40861
|
-
"locations": [
|
|
42226
|
+
"locations": [
|
|
42227
|
+
"FIELD_DEFINITION",
|
|
42228
|
+
"INPUT_FIELD_DEFINITION",
|
|
42229
|
+
"ENUM_VALUE"
|
|
42230
|
+
],
|
|
40862
42231
|
"args": [
|
|
40863
42232
|
{
|
|
40864
|
-
"name": "
|
|
42233
|
+
"name": "reason",
|
|
40865
42234
|
"description": null,
|
|
40866
42235
|
"type": {
|
|
40867
42236
|
"kind": "SCALAR",
|
|
@@ -40873,43 +42242,7 @@
|
|
|
40873
42242
|
"deprecationReason": null
|
|
40874
42243
|
},
|
|
40875
42244
|
{
|
|
40876
|
-
"name": "
|
|
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",
|
|
42245
|
+
"name": "serviceName",
|
|
40913
42246
|
"description": null,
|
|
40914
42247
|
"type": {
|
|
40915
42248
|
"kind": "SCALAR",
|
|
@@ -40921,7 +42254,7 @@
|
|
|
40921
42254
|
"deprecationReason": null
|
|
40922
42255
|
},
|
|
40923
42256
|
{
|
|
40924
|
-
"name": "
|
|
42257
|
+
"name": "removeAfter",
|
|
40925
42258
|
"description": null,
|
|
40926
42259
|
"type": {
|
|
40927
42260
|
"kind": "SCALAR",
|
|
@@ -40933,7 +42266,7 @@
|
|
|
40933
42266
|
"deprecationReason": null
|
|
40934
42267
|
},
|
|
40935
42268
|
{
|
|
40936
|
-
"name": "
|
|
42269
|
+
"name": "replacedBy",
|
|
40937
42270
|
"description": null,
|
|
40938
42271
|
"type": {
|
|
40939
42272
|
"kind": "SCALAR",
|
|
@@ -40947,42 +42280,29 @@
|
|
|
40947
42280
|
]
|
|
40948
42281
|
},
|
|
40949
42282
|
{
|
|
40950
|
-
"name": "
|
|
42283
|
+
"name": "cost",
|
|
40951
42284
|
"description": null,
|
|
40952
42285
|
"isRepeatable": false,
|
|
40953
|
-
"locations": [
|
|
42286
|
+
"locations": [
|
|
42287
|
+
"ARGUMENT_DEFINITION",
|
|
42288
|
+
"ENUM",
|
|
42289
|
+
"FIELD_DEFINITION",
|
|
42290
|
+
"INPUT_FIELD_DEFINITION",
|
|
42291
|
+
"OBJECT",
|
|
42292
|
+
"SCALAR"
|
|
42293
|
+
],
|
|
40954
42294
|
"args": [
|
|
40955
42295
|
{
|
|
40956
|
-
"name": "
|
|
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",
|
|
42296
|
+
"name": "weight",
|
|
40981
42297
|
"description": null,
|
|
40982
42298
|
"type": {
|
|
40983
|
-
"kind": "
|
|
40984
|
-
"name":
|
|
40985
|
-
"ofType":
|
|
42299
|
+
"kind": "NON_NULL",
|
|
42300
|
+
"name": null,
|
|
42301
|
+
"ofType": {
|
|
42302
|
+
"kind": "SCALAR",
|
|
42303
|
+
"name": "Int",
|
|
42304
|
+
"ofType": null
|
|
42305
|
+
}
|
|
40986
42306
|
},
|
|
40987
42307
|
"defaultValue": null,
|
|
40988
42308
|
"isDeprecated": false,
|
|
@@ -40991,76 +42311,37 @@
|
|
|
40991
42311
|
]
|
|
40992
42312
|
},
|
|
40993
42313
|
{
|
|
40994
|
-
"name": "
|
|
40995
|
-
"description": "Indicates that a property is OCPI-compliant.",
|
|
40996
|
-
"isRepeatable": false,
|
|
40997
|
-
"locations": ["FIELD_DEFINITION"],
|
|
40998
|
-
"args": []
|
|
40999
|
-
},
|
|
41000
|
-
{
|
|
41001
|
-
"name": "sanitizeHtml",
|
|
42314
|
+
"name": "listSize",
|
|
41002
42315
|
"description": null,
|
|
41003
42316
|
"isRepeatable": false,
|
|
41004
|
-
"locations": ["FIELD_DEFINITION"
|
|
42317
|
+
"locations": ["FIELD_DEFINITION"],
|
|
41005
42318
|
"args": [
|
|
41006
42319
|
{
|
|
41007
|
-
"name": "
|
|
42320
|
+
"name": "assumedSize",
|
|
41008
42321
|
"description": null,
|
|
41009
42322
|
"type": {
|
|
41010
|
-
"kind": "
|
|
41011
|
-
"name":
|
|
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
|
-
}
|
|
42323
|
+
"kind": "SCALAR",
|
|
42324
|
+
"name": "Int",
|
|
42325
|
+
"ofType": null
|
|
41049
42326
|
},
|
|
41050
42327
|
"defaultValue": null,
|
|
41051
42328
|
"isDeprecated": false,
|
|
41052
42329
|
"deprecationReason": null
|
|
41053
42330
|
},
|
|
41054
42331
|
{
|
|
41055
|
-
"name": "
|
|
42332
|
+
"name": "slicingArguments",
|
|
41056
42333
|
"description": null,
|
|
41057
42334
|
"type": {
|
|
41058
42335
|
"kind": "LIST",
|
|
41059
42336
|
"name": null,
|
|
41060
42337
|
"ofType": {
|
|
41061
|
-
"kind": "
|
|
41062
|
-
"name":
|
|
41063
|
-
"ofType":
|
|
42338
|
+
"kind": "NON_NULL",
|
|
42339
|
+
"name": null,
|
|
42340
|
+
"ofType": {
|
|
42341
|
+
"kind": "SCALAR",
|
|
42342
|
+
"name": "String",
|
|
42343
|
+
"ofType": null
|
|
42344
|
+
}
|
|
41064
42345
|
}
|
|
41065
42346
|
},
|
|
41066
42347
|
"defaultValue": null,
|
|
@@ -41068,310 +42349,52 @@
|
|
|
41068
42349
|
"deprecationReason": null
|
|
41069
42350
|
},
|
|
41070
42351
|
{
|
|
41071
|
-
"name": "
|
|
42352
|
+
"name": "sizedFields",
|
|
41072
42353
|
"description": null,
|
|
41073
42354
|
"type": {
|
|
41074
42355
|
"kind": "LIST",
|
|
41075
42356
|
"name": null,
|
|
41076
42357
|
"ofType": {
|
|
41077
|
-
"kind": "
|
|
41078
|
-
"name":
|
|
41079
|
-
"ofType":
|
|
42358
|
+
"kind": "NON_NULL",
|
|
42359
|
+
"name": null,
|
|
42360
|
+
"ofType": {
|
|
42361
|
+
"kind": "SCALAR",
|
|
42362
|
+
"name": "String",
|
|
42363
|
+
"ofType": null
|
|
42364
|
+
}
|
|
41080
42365
|
}
|
|
41081
42366
|
},
|
|
41082
42367
|
"defaultValue": null,
|
|
41083
42368
|
"isDeprecated": false,
|
|
41084
42369
|
"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
42370
|
},
|
|
41126
42371
|
{
|
|
41127
|
-
"name": "
|
|
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",
|
|
42372
|
+
"name": "requireOneSlicingArgument",
|
|
41152
42373
|
"description": null,
|
|
41153
42374
|
"type": {
|
|
41154
42375
|
"kind": "SCALAR",
|
|
41155
42376
|
"name": "Boolean",
|
|
41156
42377
|
"ofType": null
|
|
41157
42378
|
},
|
|
41158
|
-
"defaultValue": "
|
|
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,
|
|
42379
|
+
"defaultValue": "true",
|
|
41203
42380
|
"isDeprecated": false,
|
|
41204
42381
|
"deprecationReason": null
|
|
41205
42382
|
}
|
|
41206
42383
|
]
|
|
41207
42384
|
},
|
|
41208
42385
|
{
|
|
41209
|
-
"name": "
|
|
42386
|
+
"name": "ocpi",
|
|
41210
42387
|
"description": null,
|
|
41211
42388
|
"isRepeatable": false,
|
|
41212
42389
|
"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
|
-
]
|
|
42390
|
+
"args": []
|
|
41295
42391
|
},
|
|
41296
42392
|
{
|
|
41297
|
-
"name": "
|
|
41298
|
-
"description": "
|
|
42393
|
+
"name": "oneOf",
|
|
42394
|
+
"description": "Indicates exactly one field must be supplied and this field must not be `null`.",
|
|
41299
42395
|
"isRepeatable": false,
|
|
41300
|
-
"locations": ["
|
|
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
|
-
]
|
|
42396
|
+
"locations": ["INPUT_OBJECT"],
|
|
42397
|
+
"args": []
|
|
41375
42398
|
},
|
|
41376
42399
|
{
|
|
41377
42400
|
"name": "include",
|