@vertigis/viewer-spec 49.8.0 → 50.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/README.md +1 -1
  2. package/analytics/MobileAction.d.ts +54 -0
  3. package/analytics/MobileAction.js +1 -0
  4. package/app-config/mobile/BasemapModelProperties.d.ts +1 -1
  5. package/app-config/mobile/VertigisMobileModelProperties.d.ts +2 -2
  6. package/app-config/schema/common-app-config.schema.json +1 -1
  7. package/app-config/schema/mobile-app-config.schema.json +1 -1
  8. package/app-config/schema/web-app-config.schema.json +1 -1
  9. package/app-config/web/ResultsModelProperties.d.ts +1 -1
  10. package/app-config/web/VertigisWebModelProperties.d.ts +2 -3
  11. package/docs/presentation.md +30 -23
  12. package/messaging/DotNetTypes.d.ts +4 -0
  13. package/messaging/DotNetTypes.js +1 -0
  14. package/messaging/common.d.ts +53 -2
  15. package/messaging/common.js +1 -1
  16. package/messaging/mobile.d.ts +1 -8
  17. package/messaging/registry/Events.d.ts +6 -0
  18. package/messaging/registry/Events.js +1 -1
  19. package/messaging/registry/app.d.ts +32 -32
  20. package/messaging/registry/app.js +1 -1
  21. package/messaging/registry/auth.d.ts +44 -11
  22. package/messaging/registry/auth.js +1 -1
  23. package/messaging/registry/basemap.d.ts +19 -1
  24. package/messaging/registry/basemap.js +1 -1
  25. package/messaging/registry/bookmark.d.ts +41 -0
  26. package/messaging/registry/bookmark.js +1 -0
  27. package/messaging/registry/device.d.ts +12 -0
  28. package/messaging/registry/device.js +1 -1
  29. package/messaging/registry/file.d.ts +10 -0
  30. package/messaging/registry/file.js +1 -1
  31. package/messaging/registry/geolocation.d.ts +163 -7
  32. package/messaging/registry/geolocation.js +1 -1
  33. package/messaging/registry/geometry-toolbar.d.ts +5 -5
  34. package/messaging/registry/highlights.d.ts +6 -7
  35. package/messaging/registry/map.d.ts +85 -14
  36. package/messaging/registry/map.js +1 -1
  37. package/messaging/registry/measurement.d.ts +36 -4
  38. package/messaging/registry/measurement.js +1 -1
  39. package/messaging/registry/offline.d.ts +6 -0
  40. package/messaging/registry/offline.js +1 -1
  41. package/messaging/registry/panel.d.ts +8 -1
  42. package/messaging/registry/panel.js +1 -1
  43. package/messaging/registry/photos.js +1 -1
  44. package/messaging/registry/results.d.ts +40 -0
  45. package/messaging/registry/results.js +1 -1
  46. package/messaging/registry/search.d.ts +31 -7
  47. package/messaging/registry/search.js +1 -1
  48. package/messaging/registry/settings.d.ts +40 -0
  49. package/messaging/registry/settings.js +1 -0
  50. package/messaging/registry/shortcut.d.ts +40 -0
  51. package/messaging/registry/shortcut.js +1 -0
  52. package/messaging/registry/sketching.d.ts +4 -4
  53. package/messaging/registry/system.d.ts +21 -0
  54. package/messaging/registry/system.js +1 -1
  55. package/messaging/registry/tasks.d.ts +26 -16
  56. package/messaging/registry/tasks.js +1 -1
  57. package/messaging/registry/ui.d.ts +4 -4
  58. package/messaging/registry/workflow.d.ts +6 -9
  59. package/messaging/schema/common-action.schema.json +578 -38
  60. package/messaging/schema/common-event.schema.json +728 -11
  61. package/messaging/schema/mobile-action.schema.json +626 -79
  62. package/messaging/schema/mobile-event.schema.json +1740 -237
  63. package/messaging/schema/web-action.schema.json +611 -62
  64. package/messaging/schema/web-event.schema.json +665 -20
  65. package/package.json +4 -4
  66. package/version.d.ts +1 -1
  67. package/version.js +1 -1
@@ -60,6 +60,9 @@
60
60
  },
61
61
  "geometry": {
62
62
  "anyOf": [
63
+ {
64
+ "$ref": "#/definitions/esri.Geometry"
65
+ },
63
66
  {
64
67
  "$ref": "#/definitions/esri.rest-api.Point.Point"
65
68
  },
@@ -74,9 +77,6 @@
74
77
  },
75
78
  {
76
79
  "$ref": "#/definitions/esri.rest-api.Extent.Extent"
77
- },
78
- {
79
- "$ref": "#/definitions/esri.Geometry"
80
80
  }
81
81
  ],
82
82
  "description": "The feature's geometry."
@@ -355,17 +355,45 @@
355
355
  },
356
356
  "type": "object"
357
357
  },
358
+ "AddShortcutArgs": {
359
+ "additionalProperties": false,
360
+ "description": "The arguments for the \"shortcut.added\" event.",
361
+ "properties": {
362
+ "key": {
363
+ "$ref": "ConsoleKeyInfo",
364
+ "description": "The key combination this shortcut uses."
365
+ },
366
+ "operation": {
367
+ "$ref": "Message",
368
+ "description": "The command or operation assigned to the corresponding shortcut."
369
+ },
370
+ "requiresMapFocus": {
371
+ "description": "Indicates whether the map must be focused for the message to be executed.",
372
+ "type": "boolean"
373
+ }
374
+ },
375
+ "required": [
376
+ "key",
377
+ "operation",
378
+ "requiresMapFocus"
379
+ ],
380
+ "type": "object"
381
+ },
382
+ "ArcGISPortalIdentity": {
383
+ "additionalProperties": false,
384
+ "type": "object"
385
+ },
358
386
  "AttachmentEventArgs": {
359
387
  "additionalProperties": false,
360
- "description": "Arguments for various attachment events.",
388
+ "description": "Event args for attachement events.",
361
389
  "properties": {
362
390
  "attachment": {
363
391
  "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment",
364
- "description": "The attachment that was added/updated/deleted."
392
+ "description": "The attachment this event relates to."
365
393
  },
366
394
  "feature": {
367
395
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature",
368
- "description": "The feature that had an attachment added/updated/deleted."
396
+ "description": "The feature to which the attachment belongs."
369
397
  }
370
398
  },
371
399
  "required": [
@@ -384,6 +412,25 @@
384
412
  ],
385
413
  "type": "string"
386
414
  },
415
+ "BookmarkEventArgs": {
416
+ "additionalProperties": false,
417
+ "description": "Arguments for the bookmark events.",
418
+ "properties": {
419
+ "isEditable": {
420
+ "description": "Indicates whether the bookmark is editable.",
421
+ "type": "boolean"
422
+ },
423
+ "name": {
424
+ "description": "The name of the bookmark.",
425
+ "type": "string"
426
+ }
427
+ },
428
+ "required": [
429
+ "isEditable",
430
+ "name"
431
+ ],
432
+ "type": "object"
433
+ },
387
434
  "DeviceOrientationChangedEventArgs": {
388
435
  "additionalProperties": false,
389
436
  "description": "Arguments for the \"device.orientation-changed\" event.",
@@ -394,6 +441,58 @@
394
441
  "description": "Arguments for the \"display.overlap-element-translate-started\" event.",
395
442
  "type": "object"
396
443
  },
444
+ "Error": {
445
+ "additionalProperties": false,
446
+ "properties": {
447
+ "message": {
448
+ "type": "string"
449
+ },
450
+ "name": {
451
+ "type": "string"
452
+ },
453
+ "stack": {
454
+ "type": "string"
455
+ }
456
+ },
457
+ "required": [
458
+ "message",
459
+ "name"
460
+ ],
461
+ "type": "object"
462
+ },
463
+ "ExportMapImageArgs": {
464
+ "additionalProperties": false,
465
+ "description": "Arguments for the \"map.export-image\" operation.",
466
+ "properties": {
467
+ "fileName": {
468
+ "description": "The name of the file to export to.",
469
+ "type": "string"
470
+ },
471
+ "keepFile": {
472
+ "description": "If true, then the file will be stored permanently in a user accessible directory. If false, a temporary file will be created.",
473
+ "type": "boolean"
474
+ },
475
+ "maps": {
476
+ "$ref": "MapsLike",
477
+ "description": "The map to export. If more than one map is specified, the first will be used. If no maps are specified, a default will be used."
478
+ }
479
+ },
480
+ "type": "object"
481
+ },
482
+ "FeatureDetailsEvent": {
483
+ "additionalProperties": false,
484
+ "description": "Event args for feature detail events.",
485
+ "properties": {
486
+ "feature": {
487
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature",
488
+ "description": "The feature."
489
+ }
490
+ },
491
+ "required": [
492
+ "feature"
493
+ ],
494
+ "type": "object"
495
+ },
397
496
  "Features": {
398
497
  "anyOf": [
399
498
  {
@@ -457,9 +556,24 @@
457
556
  ],
458
557
  "description": "Represents one or more features."
459
558
  },
559
+ "FixQuality": {
560
+ "description": "The quality of the GNSS fix.",
561
+ "enum": [
562
+ "DgpsFix",
563
+ "Estimated",
564
+ "FloatRtk",
565
+ "GpsFix",
566
+ "Invalid",
567
+ "ManualInput",
568
+ "PpsFix",
569
+ "Rtk",
570
+ "Simulation"
571
+ ],
572
+ "type": "string"
573
+ },
460
574
  "GenericAppsListedArgs": {
461
575
  "additionalProperties": false,
462
- "description": "Arguments for the app.generic.apps-listed event. Only available in the Geocortex Mobile Viewer.",
576
+ "description": "Arguments for the app.generic.apps-listed event. Only available in VertiGIS Studio Mobile.",
463
577
  "properties": {
464
578
  "devApps": {
465
579
  "description": "The number of dev apps available.",
@@ -508,8 +622,27 @@
508
622
  "GeolocateMetadataChangedEventArgs": {
509
623
  "additionalProperties": false,
510
624
  "description": "Arguments for the \"geolocation.metadata-changed\" event.",
625
+ "properties": {
626
+ "nmeaProperties": {
627
+ "$ref": "#/definitions/NmeaProperties",
628
+ "description": "The GNSS postion metadata."
629
+ }
630
+ },
631
+ "required": [
632
+ "nmeaProperties"
633
+ ],
511
634
  "type": "object"
512
635
  },
636
+ "GeolocateState": {
637
+ "description": "The geolocation state / mode.",
638
+ "enum": [
639
+ "Disabled",
640
+ "Enabled",
641
+ "Recentering",
642
+ "RecenteringAndReorienting"
643
+ ],
644
+ "type": "string"
645
+ },
513
646
  "GeolocationEvent": {
514
647
  "additionalProperties": false,
515
648
  "description": "Arguments for geolocation events such as \"geolocation.position-acquired\" and \"geolocation.position-lost\".",
@@ -524,12 +657,39 @@
524
657
  "GeolocationStatusChangedEventArgs": {
525
658
  "additionalProperties": false,
526
659
  "description": "Arguments for the \"geolocation.status-changed\" event.",
660
+ "properties": {
661
+ "isEnabled": {
662
+ "description": "Indicates whether the geolocation is now enabled.",
663
+ "type": "boolean"
664
+ }
665
+ },
666
+ "required": [
667
+ "isEnabled"
668
+ ],
669
+ "type": "object"
670
+ },
671
+ "GnssDeviceAntennaHeightEventArgs": {
672
+ "additionalProperties": false,
673
+ "description": "Event args for the geolocation.gnss-antenna-height-changed event.",
674
+ "properties": {
675
+ "height": {
676
+ "description": "The antenna height.",
677
+ "type": "number"
678
+ }
679
+ },
680
+ "required": [
681
+ "height"
682
+ ],
527
683
  "type": "object"
528
684
  },
529
685
  "GnssDeviceConnectionInfo": {
530
686
  "additionalProperties": false,
531
687
  "description": "A geolocation source.",
532
688
  "properties": {
689
+ "deviceFullName": {
690
+ "description": "Full name of the GNSS device.",
691
+ "type": "string"
692
+ },
533
693
  "deviceName": {
534
694
  "description": "Name of the GNSS device.",
535
695
  "type": "string"
@@ -544,12 +704,32 @@
544
704
  }
545
705
  },
546
706
  "required": [
707
+ "deviceFullName",
547
708
  "deviceName",
548
709
  "deviceType",
549
710
  "settings"
550
711
  ],
551
712
  "type": "object"
552
713
  },
714
+ "GnssDeviceTransformationOverrideEventArgs": {
715
+ "additionalProperties": false,
716
+ "description": "Event args for the geolocation.gnss-transformation-changed event.",
717
+ "properties": {
718
+ "name": {
719
+ "description": "The data transformation name.",
720
+ "type": "string"
721
+ },
722
+ "wkid": {
723
+ "description": "The WKID of the transformation.",
724
+ "type": "number"
725
+ }
726
+ },
727
+ "required": [
728
+ "name",
729
+ "wkid"
730
+ ],
731
+ "type": "object"
732
+ },
553
733
  "GnssDeviceType": {
554
734
  "enum": [
555
735
  "bluetooth",
@@ -559,6 +739,60 @@
559
739
  ],
560
740
  "type": "string"
561
741
  },
742
+ "GnssFixMode": {
743
+ "additionalProperties": false,
744
+ "description": "The GNSS fix mode.",
745
+ "properties": {
746
+ "displayText": {
747
+ "description": "The display text.",
748
+ "type": "string"
749
+ },
750
+ "mode": {
751
+ "$ref": "#/definitions/GpgsaFixMode",
752
+ "description": "The GPGSA fix mode."
753
+ }
754
+ },
755
+ "required": [
756
+ "displayText",
757
+ "mode"
758
+ ],
759
+ "type": "object"
760
+ },
761
+ "GnssLockStateEventArgs": {
762
+ "additionalProperties": false,
763
+ "description": "Event args for the geolocation.gnss-lock-status-changed event.",
764
+ "properties": {
765
+ "lockStatus": {
766
+ "$ref": "#/definitions/GnssLockStatus",
767
+ "description": "The lock status."
768
+ }
769
+ },
770
+ "required": [
771
+ "lockStatus"
772
+ ],
773
+ "type": "object"
774
+ },
775
+ "GnssLockStatus": {
776
+ "description": "GNSS lock status.",
777
+ "enum": [
778
+ 0,
779
+ 1,
780
+ 16,
781
+ 2,
782
+ 32,
783
+ 4
784
+ ],
785
+ "type": "number"
786
+ },
787
+ "GpgsaFixMode": {
788
+ "description": "Global Positioning Global navigation satellite System Agency fix mode.",
789
+ "enum": [
790
+ "Fix2D",
791
+ "Fix3D",
792
+ "NotAvailable"
793
+ ],
794
+ "type": "string"
795
+ },
562
796
  "HasMaps": {
563
797
  "additionalProperties": false,
564
798
  "description": "Defines an object that has a `maps` property.",
@@ -598,27 +832,131 @@
598
832
  ],
599
833
  "type": "object"
600
834
  },
835
+ "LocationDisplayModeChangedEventArgs": {
836
+ "additionalProperties": false,
837
+ "description": "Arguments for the \"geolocation.display-mode-changed\" event.",
838
+ "properties": {
839
+ "locationDisplayMode": {
840
+ "$ref": "#/definitions/GeolocateState",
841
+ "description": "The location display mode."
842
+ }
843
+ },
844
+ "required": [
845
+ "locationDisplayMode"
846
+ ],
847
+ "type": "object"
848
+ },
601
849
  "MapEvent": {
602
850
  "additionalProperties": false,
603
851
  "description": "Arguments for the various map events.",
604
852
  "properties": {
853
+ "mapExtension": {
854
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
855
+ "description": "The map extension for which the event was generated."
856
+ },
857
+ "maps": {
858
+ "$ref": "MapsLike",
859
+ "description": "The map from which the event was generated."
860
+ }
861
+ },
862
+ "required": [
863
+ "mapExtension"
864
+ ],
865
+ "type": "object"
866
+ },
867
+ "MapInitializedEvent": {
868
+ "additionalProperties": false,
869
+ "description": "Event args for the map.initialized event.",
870
+ "properties": {
871
+ "loadTime": {
872
+ "$ref": "#/definitions/TimeSpan",
873
+ "description": "The amount of time that the map took to load. Mobile only."
874
+ },
875
+ "mapExtension": {
876
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
877
+ "description": "The map extension for which the event was generated."
878
+ },
879
+ "maps": {
880
+ "$ref": "MapsLike",
881
+ "description": "The map from which the event was generated."
882
+ }
883
+ },
884
+ "required": [
885
+ "loadTime",
886
+ "mapExtension"
887
+ ],
888
+ "type": "object"
889
+ },
890
+ "MapSwitchedEvent": {
891
+ "additionalProperties": false,
892
+ "description": "Event args for the map.switched event.",
893
+ "properties": {
894
+ "mapExtension": {
895
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
896
+ "description": "The map extension for which the event was generated."
897
+ },
605
898
  "maps": {
606
899
  "$ref": "MapsLike",
607
900
  "description": "The map from which the event was generated."
901
+ },
902
+ "oldMap": {
903
+ "$ref": "#/definitions/esri.Map",
904
+ "description": "The previous map."
608
905
  }
609
906
  },
907
+ "required": [
908
+ "mapExtension",
909
+ "oldMap"
910
+ ],
610
911
  "type": "object"
611
912
  },
612
- "MapExtensionArgs": {
913
+ "MapsFeatureResultArgs": {
613
914
  "additionalProperties": false,
614
- "description": "One or more map extensions.",
915
+ "description": "Event args for any events that contain results that were obtained for from a map operation.",
615
916
  "properties": {
917
+ "duration": {
918
+ "$ref": "#/definitions/TimeSpan",
919
+ "description": "The amount of time that it took to perform the operation."
920
+ },
921
+ "error": {
922
+ "$ref": "#/definitions/Error",
923
+ "description": "The error associated with these results if there is one."
924
+ },
925
+ "features": {
926
+ "$ref": "#/definitions/FeaturesLike",
927
+ "description": "Features to use for the command/operation."
928
+ },
929
+ "geometry": {
930
+ "$ref": "#/definitions/esri.Geometry",
931
+ "description": "The geometry associated with the event. This may be an alteration of the original geometry (eg. Buffered)."
932
+ },
616
933
  "maps": {
617
- "$ref": "MapsLike"
934
+ "$ref": "MapsLike",
935
+ "description": "Map(s) to use for the command/operation."
936
+ },
937
+ "originalGeometry": {
938
+ "$ref": "#/definitions/esri.Geometry",
939
+ "description": "The original geometry associated with the event. The original geometry pertains to the original input geometry that was passed into the operation before the event was generated."
940
+ },
941
+ "sourceOperation": {
942
+ "$ref": "#/definitions/SourceOperation",
943
+ "description": "The type of operation that created these results."
944
+ },
945
+ "sources": {
946
+ "description": "The feature sources that were used to produce the result.",
947
+ "items": {
948
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
949
+ },
950
+ "type": "array"
618
951
  }
619
952
  },
620
953
  "required": [
621
- "maps"
954
+ "duration",
955
+ "error",
956
+ "geometry",
957
+ "originalGeometry",
958
+ "sourceOperation",
959
+ "sources"
622
960
  ],
623
961
  "type": "object"
624
962
  },
@@ -636,43 +974,158 @@
636
974
  ],
637
975
  "description": "One or map extensions."
638
976
  },
639
- "OperationalLayer": {
640
- "anyOf": [
641
- {
642
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayer.BuildingSceneLayer"
977
+ "MarkupAddedEvent": {
978
+ "additionalProperties": false,
979
+ "description": "Event args for the map.markup-added event.",
980
+ "properties": {
981
+ "mapExtension": {
982
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
983
+ "description": "The map extension for which the event was generated."
643
984
  },
644
- {
645
- "$ref": "#/definitions/esri.rest-api.CSVLayer.CSVLayer"
985
+ "maps": {
986
+ "$ref": "MapsLike",
987
+ "description": "The map from which the event was generated."
646
988
  },
647
- {
648
- "$ref": "#/definitions/esri.rest-api.ElevationLayer.ElevationLayer"
989
+ "markupType": {
990
+ "$ref": "#/definitions/MarkupType",
991
+ "description": "The markup type of the added markup."
992
+ }
993
+ },
994
+ "required": [
995
+ "mapExtension",
996
+ "markupType"
997
+ ],
998
+ "type": "object"
999
+ },
1000
+ "MarkupType": {
1001
+ "description": "The type of markup.",
1002
+ "enum": [
1003
+ "Composite",
1004
+ "Multi",
1005
+ "PictureFill",
1006
+ "PictureMarker",
1007
+ "Polygon",
1008
+ "Polyline",
1009
+ "Text",
1010
+ "Unknown"
1011
+ ],
1012
+ "type": "string"
1013
+ },
1014
+ "NmeaProperties": {
1015
+ "additionalProperties": false,
1016
+ "properties": {
1017
+ "altitude": {
1018
+ "type": "number"
649
1019
  },
650
- {
651
- "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
1020
+ "correctionAge": {
1021
+ "$ref": "#/definitions/TimeSpan"
652
1022
  },
653
- {
654
- "$ref": "#/definitions/esri.rest-api.GeoRSSLayer.GeoRSSLayer"
1023
+ "course": {
1024
+ "type": "number"
655
1025
  },
656
- {
657
- "$ref": "#/definitions/esri.rest-api.GroupLayer.GroupLayer"
1026
+ "estimatedHorizontalAccuracy": {
1027
+ "type": "number"
658
1028
  },
659
- {
660
- "$ref": "#/definitions/esri.rest-api.ImageServiceLayer.ImageServiceLayer"
1029
+ "estimatedVerticalAccuracy": {
1030
+ "type": "number"
661
1031
  },
662
- {
663
- "$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayer.ImageServiceVectorLayer"
1032
+ "fixMethod": {
1033
+ "type": "string"
664
1034
  },
665
- {
666
- "$ref": "#/definitions/esri.rest-api.IntegratedMeshLayer.IntegratedMeshLayer"
1035
+ "fixMode": {
1036
+ "$ref": "#/definitions/GnssFixMode"
667
1037
  },
668
- {
669
- "$ref": "#/definitions/esri.rest-api.KMLLayer.KMLLayer"
1038
+ "fixQuality": {
1039
+ "$ref": "#/definitions/FixQuality"
670
1040
  },
671
- {
672
- "$ref": "#/definitions/esri.rest-api.MapServiceLayer.MapServiceLayer"
1041
+ "fixTimeUtc": {
1042
+ "$ref": "Date"
673
1043
  },
674
- {
675
- "$ref": "#/definitions/esri.rest-api.PointCloudLayer.PointCloudLayer"
1044
+ "heightOfGeoid": {
1045
+ "type": "number"
1046
+ },
1047
+ "horizontalDilutionOfPrecision": {
1048
+ "type": "number"
1049
+ },
1050
+ "latitude": {
1051
+ "type": "number"
1052
+ },
1053
+ "longitude": {
1054
+ "type": "number"
1055
+ },
1056
+ "magneticVariation": {
1057
+ "type": "number"
1058
+ },
1059
+ "positionDilutionOfPrecision": {
1060
+ "type": "number"
1061
+ },
1062
+ "preciseHorizontalAccuracy": {
1063
+ "type": "number"
1064
+ },
1065
+ "preciseVerticalAccuracy": {
1066
+ "type": "number"
1067
+ },
1068
+ "satelliteIds": {
1069
+ "items": {
1070
+ "type": "number"
1071
+ },
1072
+ "type": "array"
1073
+ },
1074
+ "satellitesInUse": {
1075
+ "type": "number"
1076
+ },
1077
+ "satellitesInView": {
1078
+ "type": "number"
1079
+ },
1080
+ "speed": {
1081
+ "type": "number"
1082
+ },
1083
+ "stationId": {
1084
+ "type": "number"
1085
+ },
1086
+ "verticalDilutionOfPrecision": {
1087
+ "type": "number"
1088
+ }
1089
+ },
1090
+ "type": "object"
1091
+ },
1092
+ "OperationalLayer": {
1093
+ "anyOf": [
1094
+ {
1095
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayer.BuildingSceneLayer"
1096
+ },
1097
+ {
1098
+ "$ref": "#/definitions/esri.rest-api.CSVLayer.CSVLayer"
1099
+ },
1100
+ {
1101
+ "$ref": "#/definitions/esri.rest-api.ElevationLayer.ElevationLayer"
1102
+ },
1103
+ {
1104
+ "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
1105
+ },
1106
+ {
1107
+ "$ref": "#/definitions/esri.rest-api.GeoRSSLayer.GeoRSSLayer"
1108
+ },
1109
+ {
1110
+ "$ref": "#/definitions/esri.rest-api.GroupLayer.GroupLayer"
1111
+ },
1112
+ {
1113
+ "$ref": "#/definitions/esri.rest-api.ImageServiceLayer.ImageServiceLayer"
1114
+ },
1115
+ {
1116
+ "$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayer.ImageServiceVectorLayer"
1117
+ },
1118
+ {
1119
+ "$ref": "#/definitions/esri.rest-api.IntegratedMeshLayer.IntegratedMeshLayer"
1120
+ },
1121
+ {
1122
+ "$ref": "#/definitions/esri.rest-api.KMLLayer.KMLLayer"
1123
+ },
1124
+ {
1125
+ "$ref": "#/definitions/esri.rest-api.MapServiceLayer.MapServiceLayer"
1126
+ },
1127
+ {
1128
+ "$ref": "#/definitions/esri.rest-api.PointCloudLayer.PointCloudLayer"
676
1129
  },
677
1130
  {
678
1131
  "$ref": "#/definitions/esri.rest-api.SceneLayer.SceneLayer"
@@ -680,6 +1133,9 @@
680
1133
  {
681
1134
  "$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
682
1135
  },
1136
+ {
1137
+ "$ref": "#/definitions/esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer"
1138
+ },
683
1139
  {
684
1140
  "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayer.TiledImageServiceLayer"
685
1141
  },
@@ -698,6 +1154,14 @@
698
1154
  ],
699
1155
  "description": "An operational layer in a web map/scene."
700
1156
  },
1157
+ "PortalType": {
1158
+ "description": "The type of Portal.",
1159
+ "enum": [
1160
+ "AGOL",
1161
+ "ArcGISEnterprise"
1162
+ ],
1163
+ "type": "string"
1164
+ },
701
1165
  "PrintErrorEventArgs": {
702
1166
  "additionalProperties": false,
703
1167
  "description": "Arguments for the printing.print-error event.",
@@ -808,9 +1272,13 @@
808
1272
  "description": "Arguments for search operations.",
809
1273
  "properties": {
810
1274
  "disableSearchAreaExpansion": {
811
- "description": "By default the search area will be expanded to try and return the specified maxResults. Set to true to disable this behavior. Not supported in Geocortex Mobile Viewer.",
1275
+ "description": "By default the search area will be expanded to try and return the specified maxResults. Set to true to disable this behavior. Not supported in VertiGIS Studio Mobile.",
812
1276
  "type": "boolean"
813
1277
  },
1278
+ "mapViewpoint": {
1279
+ "$ref": "#/definitions/esri.Viewpoint",
1280
+ "description": "The map Viewpoint at the time of the search. Mobile only."
1281
+ },
814
1282
  "maps": {
815
1283
  "$ref": "MapsLike",
816
1284
  "description": "The map(s) to search. Can be used instead of or in addition to \"sources\"."
@@ -825,11 +1293,11 @@
825
1293
  },
826
1294
  "near": {
827
1295
  "$ref": "#/definitions/esri.Point",
828
- "description": "If specified, this will influence the score of spatial features based on their proximity to this point. Most commonly this would be the user's current location, but can be any point of interest. This option requires searchArea to also be specified. Not supported in Geocortex Mobile Viewer."
1296
+ "description": "If specified, this will influence the score of spatial features based on their proximity to this point. Most commonly this would be the user's current location, but can be any point of interest. This option requires searchArea to also be specified. Not supported in VertiGIS Studio Mobile."
829
1297
  },
830
1298
  "outSpatialReference": {
831
1299
  "$ref": "#/definitions/esri.SpatialReference",
832
- "description": "The spatial reference for the returned geometry. Not supported in Geocortex Mobile Viewer."
1300
+ "description": "The spatial reference for the returned geometry. Not supported in VertiGIS Studio Mobile."
833
1301
  },
834
1302
  "searchArea": {
835
1303
  "$ref": "#/definitions/esri.Geometry",
@@ -844,7 +1312,7 @@
844
1312
  "type": "string"
845
1313
  },
846
1314
  "sources": {
847
- "description": "The feature sources to search. Can be used instead of or in addition to \"maps\". Not supported in Geocortex Mobile Viewer (use \"maps\").",
1315
+ "description": "The feature sources to search. Can be used instead of or in addition to \"maps\". Not supported in VertiGIS Studio Mobile (use \"maps\").",
848
1316
  "items": {
849
1317
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
850
1318
  },
@@ -852,24 +1320,128 @@
852
1320
  }
853
1321
  },
854
1322
  "required": [
1323
+ "mapViewpoint",
855
1324
  "searchText"
856
1325
  ],
857
1326
  "type": "object"
858
1327
  },
1328
+ "SearchCompletedArgs": {
1329
+ "additionalProperties": false,
1330
+ "description": "Arguments for the search.completed event.",
1331
+ "properties": {
1332
+ "duration": {
1333
+ "$ref": "#/definitions/TimeSpan",
1334
+ "description": "The amount of time that it took to perform the operation."
1335
+ },
1336
+ "error": {
1337
+ "$ref": "#/definitions/Error",
1338
+ "description": "The error associated with these results if there is one."
1339
+ },
1340
+ "features": {
1341
+ "$ref": "#/definitions/FeaturesLike",
1342
+ "description": "Features to use for the command/operation."
1343
+ },
1344
+ "geometry": {
1345
+ "$ref": "#/definitions/esri.Geometry",
1346
+ "description": "The geometry associated with the event. This may be an alteration of the original geometry (eg. Buffered)."
1347
+ },
1348
+ "mapViewpoint": {
1349
+ "$ref": "#/definitions/esri.Viewpoint",
1350
+ "description": "The map viewpoint at the time of the search."
1351
+ },
1352
+ "maps": {
1353
+ "$ref": "MapsLike",
1354
+ "description": "Map(s) to use for the command/operation."
1355
+ },
1356
+ "maxResults": {
1357
+ "description": "The maximum number of search results that could be returned.",
1358
+ "type": "number"
1359
+ },
1360
+ "originalGeometry": {
1361
+ "$ref": "#/definitions/esri.Geometry",
1362
+ "description": "The original geometry associated with the event. The original geometry pertains to the original input geometry that was passed into the operation before the event was generated."
1363
+ },
1364
+ "searchText": {
1365
+ "description": "The text used in the search.",
1366
+ "type": "string"
1367
+ },
1368
+ "sourceOperation": {
1369
+ "$ref": "#/definitions/SourceOperation",
1370
+ "description": "The type of operation that created these results."
1371
+ },
1372
+ "sources": {
1373
+ "description": "The feature sources that were used to produce the result.",
1374
+ "items": {
1375
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
1376
+ },
1377
+ "type": "array"
1378
+ }
1379
+ },
1380
+ "required": [
1381
+ "duration",
1382
+ "error",
1383
+ "geometry",
1384
+ "mapViewpoint",
1385
+ "maxResults",
1386
+ "originalGeometry",
1387
+ "searchText",
1388
+ "sourceOperation",
1389
+ "sources"
1390
+ ],
1391
+ "type": "object"
1392
+ },
1393
+ "ShortcutArgs": {
1394
+ "additionalProperties": false,
1395
+ "description": "The arguments for keyboard shortcut events.",
1396
+ "properties": {
1397
+ "key": {
1398
+ "$ref": "ConsoleKeyInfo",
1399
+ "description": "The key combination this shortcut uses."
1400
+ }
1401
+ },
1402
+ "required": [
1403
+ "key"
1404
+ ],
1405
+ "type": "object"
1406
+ },
1407
+ "SignInCompletedEventArgs": {
1408
+ "additionalProperties": false,
1409
+ "description": "Arguments for the auth.sign-in-completed and auth.portal-sign-in-completed events. Only available in VertiGIS Studio Mobile.",
1410
+ "properties": {
1411
+ "credential": {
1412
+ "$ref": "esriRuntimeSdk.Credential",
1413
+ "description": "The credential resulting from the sign in."
1414
+ },
1415
+ "identity": {
1416
+ "$ref": "#/definitions/ArcGISPortalIdentity",
1417
+ "description": "The identity that was obtained from the sign in."
1418
+ }
1419
+ },
1420
+ "required": [
1421
+ "credential",
1422
+ "identity"
1423
+ ],
1424
+ "type": "object"
1425
+ },
859
1426
  "SignInEventArgs": {
860
1427
  "additionalProperties": false,
861
- "description": "Arguments for the auth.sign-in events. Only available in the Geocortex Mobile Viewer.",
1428
+ "description": "Arguments for the auth.sign-in events. Only available in VertiGIS Studio Mobile.",
862
1429
  "properties": {
863
1430
  "authenticationType": {
864
1431
  "$ref": "#/definitions/AuthenticationType",
865
- "description": "The authentication method used for the sign in process. Not available in Geocortex Web Viewer."
1432
+ "description": "The authentication method used for the sign in process. Not available in VertiGIS Studio Web."
1433
+ },
1434
+ "portalType": {
1435
+ "$ref": "#/definitions/PortalType",
1436
+ "description": "The type of Portal: AGOL or Enterprise."
866
1437
  },
867
1438
  "requestInfo": {
868
- "description": "Information about the resource that is required to sign in. Not available in Geocortex Web Viewer. Will be an instance of esri.security.CredentialRequestInfo for the Geocortex Mobile Viewer."
1439
+ "description": "Information about the resource that is required to sign in. Not available in VertiGIS Studio Web. Will be an instance of esri.security.CredentialRequestInfo for VertiGIS Studio Mobile."
869
1440
  }
870
1441
  },
871
1442
  "required": [
872
1443
  "authenticationType",
1444
+ "portalType",
873
1445
  "requestInfo"
874
1446
  ],
875
1447
  "type": "object"
@@ -880,36 +1452,112 @@
880
1452
  "properties": {
881
1453
  "authenticationType": {
882
1454
  "$ref": "#/definitions/AuthenticationType",
883
- "description": "The authentication method used for the sign in process. Not available in Geocortex Web Viewer."
1455
+ "description": "The authentication method used for the sign in process. Not available in VertiGIS Studio Web."
884
1456
  },
885
1457
  "exception": {
886
- "description": "The exception that occurred during the sign in. Not available in Geocortex Web Viewer."
1458
+ "description": "The exception that occurred during the sign in. Not available in VertiGIS Studio Web."
1459
+ },
1460
+ "portalType": {
1461
+ "$ref": "#/definitions/PortalType",
1462
+ "description": "The type of Portal: AGOL or Enterprise."
887
1463
  },
888
1464
  "requestInfo": {
889
- "description": "Information about the resource that is required to sign in. Not available in Geocortex Web Viewer. Will be an instance of esri.security.CredentialRequestInfo for the Geocortex Mobile Viewer."
1465
+ "description": "Information about the resource that is required to sign in. Not available in VertiGIS Studio Web. Will be an instance of esri.security.CredentialRequestInfo for VertiGIS Studio Mobile."
890
1466
  }
891
1467
  },
892
1468
  "required": [
893
1469
  "authenticationType",
894
1470
  "exception",
1471
+ "portalType",
895
1472
  "requestInfo"
896
1473
  ],
897
1474
  "type": "object"
898
1475
  },
1476
+ "SourceOperation": {
1477
+ "description": "Describes the source of results.",
1478
+ "enum": [
1479
+ "Add",
1480
+ "Geocode",
1481
+ "Identify",
1482
+ "Search",
1483
+ "Unknown",
1484
+ "Workflow"
1485
+ ],
1486
+ "type": "string"
1487
+ },
899
1488
  "SpecificAppArgs": {
900
1489
  "additionalProperties": false,
901
- "description": "Arguments for the app started events. Only available in the Geocortex Mobile Viewer.",
1490
+ "description": "Arguments for the app started events. Only available in VertiGIS Studio Mobile.",
902
1491
  "properties": {
1492
+ "loadTime": {
1493
+ "$ref": "#/definitions/TimeSpan",
1494
+ "description": "The amount of time that the app took to load."
1495
+ },
903
1496
  "uniqueKey": {
904
1497
  "description": "A unique identifier for the app.",
905
1498
  "type": "string"
906
1499
  }
907
1500
  },
908
1501
  "required": [
1502
+ "loadTime",
909
1503
  "uniqueKey"
910
1504
  ],
911
1505
  "type": "object"
912
1506
  },
1507
+ "TimeSpan": {
1508
+ "additionalProperties": false,
1509
+ "type": "object"
1510
+ },
1511
+ "WorkflowErrorEventArgs": {
1512
+ "additionalProperties": false,
1513
+ "description": "Arguments for the \"workflow.workflow-error\" event.",
1514
+ "properties": {
1515
+ "errorMessage": {
1516
+ "description": "The human readable error message.",
1517
+ "type": "string"
1518
+ },
1519
+ "exception": {
1520
+ "$ref": "#/definitions/Error",
1521
+ "description": "The Error object containing detailed information about the error."
1522
+ },
1523
+ "workflow": {
1524
+ "$ref": "WorkflowModel",
1525
+ "description": "The workflow pertaining to the event."
1526
+ }
1527
+ },
1528
+ "required": [
1529
+ "workflow"
1530
+ ],
1531
+ "type": "object"
1532
+ },
1533
+ "WorkflowFinishedEventArgs": {
1534
+ "additionalProperties": false,
1535
+ "description": "Arguments for the \"workflow.workflow-finished\" event.",
1536
+ "properties": {
1537
+ "workflow": {
1538
+ "$ref": "WorkflowModel",
1539
+ "description": "The workflow pertaining to the event."
1540
+ }
1541
+ },
1542
+ "required": [
1543
+ "workflow"
1544
+ ],
1545
+ "type": "object"
1546
+ },
1547
+ "WorkflowStartingEventArgs": {
1548
+ "additionalProperties": false,
1549
+ "description": "Arguments for the \"workflow.workflow-starting\" event.",
1550
+ "properties": {
1551
+ "workflow": {
1552
+ "$ref": "WorkflowModel",
1553
+ "description": "The workflow pertaining to the event."
1554
+ }
1555
+ },
1556
+ "required": [
1557
+ "workflow"
1558
+ ],
1559
+ "type": "object"
1560
+ },
913
1561
  "app-config.unloading": {
914
1562
  "description": "Raised when the app config is about to be unloaded (in order to switch to a different app config).",
915
1563
  "enum": [
@@ -928,15 +1576,6 @@
928
1576
  "app.backgrounded"
929
1577
  ]
930
1578
  },
931
- "app.custom-started": {
932
- "description": "Raised when a custom app is started.",
933
- "enum": [
934
- "app.custom-started"
935
- ]
936
- },
937
- "app.custom-started:input": {
938
- "$ref": "#/definitions/SpecificAppArgs"
939
- },
940
1579
  "app.custom.started": {
941
1580
  "description": "Raised when a custom app is started.",
942
1581
  "enum": [
@@ -955,14 +1594,8 @@
955
1594
  "app.favorited:input": {
956
1595
  "$ref": "GcxAppInfo"
957
1596
  },
958
- "app.generic-app-started": {
959
- "description": "Raised when a generic app is started.",
960
- "enum": [
961
- "app.generic-app-started"
962
- ]
963
- },
964
1597
  "app.generic.apps-listed": {
965
- "description": "Raised when apps are listed within the generic app.",
1598
+ "description": "Raised when apps are listed within VertiGIS Studio Go.",
966
1599
  "enum": [
967
1600
  "app.generic.apps-listed"
968
1601
  ]
@@ -970,6 +1603,24 @@
970
1603
  "app.generic.apps-listed:input": {
971
1604
  "$ref": "#/definitions/GenericAppsListedArgs"
972
1605
  },
1606
+ "app.generic.specific-app-started": {
1607
+ "description": "Raised when a specific app is started within VertiGIS Studio Go.",
1608
+ "enum": [
1609
+ "app.generic.specific-app-started"
1610
+ ]
1611
+ },
1612
+ "app.generic.specific-app-started:input": {
1613
+ "$ref": "#/definitions/SpecificAppArgs"
1614
+ },
1615
+ "app.generic.specific-app-starting": {
1616
+ "description": "Raised before a specific app starts within VertiGIS Studio Go.",
1617
+ "enum": [
1618
+ "app.generic.specific-app-starting"
1619
+ ]
1620
+ },
1621
+ "app.generic.specific-app-starting:input": {
1622
+ "$ref": "#/definitions/SpecificAppArgs"
1623
+ },
973
1624
  "app.generic.started": {
974
1625
  "description": "Raised when a generic app is started.",
975
1626
  "enum": [
@@ -977,7 +1628,7 @@
977
1628
  ]
978
1629
  },
979
1630
  "app.going-to-app-selector": {
980
- "description": "Raised when returning to the app selector screen from a specific app in Go.",
1631
+ "description": "Raised when returning to the app selector screen from a specific app in VertiGIS Studio Go.",
981
1632
  "enum": [
982
1633
  "app.going-to-app-selector"
983
1634
  ]
@@ -1003,15 +1654,6 @@
1003
1654
  "app.refreshing"
1004
1655
  ]
1005
1656
  },
1006
- "app.specific-app-started": {
1007
- "description": "Raised when a specific app is started within the generic app.",
1008
- "enum": [
1009
- "app.specific-app-started"
1010
- ]
1011
- },
1012
- "app.specific-app-started:input": {
1013
- "$ref": "#/definitions/SpecificAppArgs"
1014
- },
1015
1657
  "app.unfavorited": {
1016
1658
  "description": "Raised when an app is unfavorited.",
1017
1659
  "enum": [
@@ -1021,6 +1663,15 @@
1021
1663
  "app.unfavorited:input": {
1022
1664
  "$ref": "GcxAppInfo"
1023
1665
  },
1666
+ "auth.portal-sign-in-completed": {
1667
+ "description": "Raised when the user has signed into a Portal (AGOL or Portal for ArcGIS).",
1668
+ "enum": [
1669
+ "auth.portal-sign-in-completed"
1670
+ ]
1671
+ },
1672
+ "auth.portal-sign-in-completed:input": {
1673
+ "$ref": "#/definitions/SignInCompletedEventArgs"
1674
+ },
1024
1675
  "auth.sign-in-cancelled": {
1025
1676
  "description": "Raised when the user cancels a sign-in challenge.",
1026
1677
  "enum": [
@@ -1031,13 +1682,20 @@
1031
1682
  "$ref": "#/definitions/SignInEventArgs"
1032
1683
  },
1033
1684
  "auth.sign-in-completed": {
1034
- "description": "Raised when successfully signed in.",
1685
+ "description": "Raised when successfully signed in. Principal event type used in Web, SignInCompletedEventArgs used in Mobile.",
1035
1686
  "enum": [
1036
1687
  "auth.sign-in-completed"
1037
1688
  ]
1038
1689
  },
1039
1690
  "auth.sign-in-completed:input": {
1040
- "$ref": "Principal"
1691
+ "anyOf": [
1692
+ {
1693
+ "$ref": "Principal"
1694
+ },
1695
+ {
1696
+ "$ref": "#/definitions/SignInCompletedEventArgs"
1697
+ }
1698
+ ]
1041
1699
  },
1042
1700
  "auth.sign-in-failed": {
1043
1701
  "description": "Raised when a sign-in attempt fails.",
@@ -1084,7 +1742,7 @@
1084
1742
  ]
1085
1743
  },
1086
1744
  "auth.token-refreshed": {
1087
- "description": "Raised when the user's token is refreshed. Will be the new token in the Geocortex Web Viewer, and a TokenCredential object in the Geocortex Mobile Viewer.",
1745
+ "description": "Raised when the user's token is refreshed. Will be the new token in the VertiGIS Studio Web, and a TokenCredential object in VertiGIS Studio Mobile.",
1088
1746
  "enum": [
1089
1747
  "auth.token-refreshed"
1090
1748
  ]
@@ -1092,6 +1750,54 @@
1092
1750
  "auth.token-refreshed:input": {
1093
1751
  "type": "string"
1094
1752
  },
1753
+ "bookmarks.added": {
1754
+ "description": "Raised when a bookmark is added.",
1755
+ "enum": [
1756
+ "bookmarks.added"
1757
+ ]
1758
+ },
1759
+ "bookmarks.added:input": {
1760
+ "$ref": "#/definitions/BookmarkEventArgs"
1761
+ },
1762
+ "bookmarks.deleted": {
1763
+ "description": "Raised when a bookmark is deleted.",
1764
+ "enum": [
1765
+ "bookmarks.deleted"
1766
+ ]
1767
+ },
1768
+ "bookmarks.deleted:input": {
1769
+ "$ref": "#/definitions/BookmarkEventArgs"
1770
+ },
1771
+ "bookmarks.updated": {
1772
+ "description": "Raised when a bookmark is updated.",
1773
+ "enum": [
1774
+ "bookmarks.updated"
1775
+ ]
1776
+ },
1777
+ "bookmarks.updated:input": {
1778
+ "$ref": "#/definitions/BookmarkEventArgs"
1779
+ },
1780
+ "bookmarks.viewed": {
1781
+ "description": "Raised when a bookmark is viewed.",
1782
+ "enum": [
1783
+ "bookmarks.viewed"
1784
+ ]
1785
+ },
1786
+ "bookmarks.viewed:input": {
1787
+ "$ref": "#/definitions/BookmarkEventArgs"
1788
+ },
1789
+ "device.keyboard-hidden": {
1790
+ "description": "Raised when a virtual keyboard is hidden.",
1791
+ "enum": [
1792
+ "device.keyboard-hidden"
1793
+ ]
1794
+ },
1795
+ "device.keyboard-shown": {
1796
+ "description": "Raised when a virtual keyboard is shown.",
1797
+ "enum": [
1798
+ "device.keyboard-shown"
1799
+ ]
1800
+ },
1095
1801
  "device.orientation-changed": {
1096
1802
  "description": "Raised when the device's orientation changes.",
1097
1803
  "enum": [
@@ -1173,6 +1879,9 @@
1173
1879
  "esri.Geometry": {
1174
1880
  "$ref": "esri/geometry/Geometry"
1175
1881
  },
1882
+ "esri.Map": {
1883
+ "$ref": "esri/Map"
1884
+ },
1176
1885
  "esri.Point": {
1177
1886
  "$ref": "esri/geometry/Point"
1178
1887
  },
@@ -1182,6 +1891,9 @@
1182
1891
  "esri.SpatialReference": {
1183
1892
  "$ref": "esri/geometry/SpatialReference"
1184
1893
  },
1894
+ "esri.Viewpoint": {
1895
+ "$ref": "esri/Viewpoint"
1896
+ },
1185
1897
  "esri.rest-api.BuildingSceneLayer.AuthoringInfoFilterBlock": {
1186
1898
  "additionalProperties": false,
1187
1899
  "description": "The filter authoring info object contains metadata about the authoring process for creating a filter block object. This allows the authoring client to save specific, overridable settings. The next time it is accessed via an authoring client, their selections are remembered. Non-authoring clients can ignore it.",
@@ -1226,6 +1938,10 @@
1226
1938
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
1227
1939
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
1228
1940
  },
1941
+ "effect": {
1942
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
1943
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
1944
+ },
1229
1945
  "filters": {
1230
1946
  "description": "A list of filters available for this layer. Overrides filters defined on the service.",
1231
1947
  "items": {
@@ -1512,6 +2228,10 @@
1512
2228
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
1513
2229
  "type": "boolean"
1514
2230
  },
2231
+ "effect": {
2232
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
2233
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
2234
+ },
1515
2235
  "id": {
1516
2236
  "description": "A unique identifying string for the layer.",
1517
2237
  "type": "string"
@@ -2144,9 +2864,339 @@
2144
2864
  "type": "array"
2145
2865
  },
2146
2866
  "type": {
2147
- "description": "A string value indicating the type. This value is dataLayer.",
2867
+ "description": "A string value indicating the type. This value is dataLayer.",
2868
+ "enum": [
2869
+ "dataLayer"
2870
+ ],
2871
+ "type": "string"
2872
+ }
2873
+ },
2874
+ "required": [
2875
+ "type"
2876
+ ],
2877
+ "type": "object"
2878
+ },
2879
+ "esri.rest-api.DynamicMapLayer.DynamicMapLayer": {
2880
+ "additionalProperties": false,
2881
+ "description": "A dynamic map layer refers to a layer in the current map service. More information on this can be found in the ArcGIS REST API help.{@linkhttps://developers.arcgis.com/web-map-specification/objects/dynamicMapLayer_source/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/dynamicMapLayer_source/}.",
2882
+ "properties": {
2883
+ "gdbVersion": {
2884
+ "description": "If applicable, specify this to use an alternate geodatabase version.",
2885
+ "type": "string"
2886
+ },
2887
+ "mapLayerId": {
2888
+ "description": "The current map layer's ID.",
2889
+ "type": "number"
2890
+ },
2891
+ "type": {
2892
+ "description": "A string value indicating the type. This value is mapLayer.",
2893
+ "enum": [
2894
+ "mapLayer"
2895
+ ],
2896
+ "type": "string"
2897
+ }
2898
+ },
2899
+ "required": [
2900
+ "type"
2901
+ ],
2902
+ "type": "object"
2903
+ },
2904
+ "esri.rest-api.Edges.Edges": {
2905
+ "anyOf": [
2906
+ {
2907
+ "$ref": "#/definitions/esri.rest-api.Edges.SketchEdges"
2908
+ },
2909
+ {
2910
+ "$ref": "#/definitions/esri.rest-api.Edges.SolidEdges"
2911
+ }
2912
+ ],
2913
+ "description": "Edges describe additional styles applied to visually important edges of 3D objects."
2914
+ },
2915
+ "esri.rest-api.Edges.SketchEdges": {
2916
+ "additionalProperties": false,
2917
+ "description": "The sketch edge rendering configuration of a symbol layer. Edges of type sketch are rendered with a hand-drawn look in mind.",
2918
+ "properties": {
2919
+ "color": {
2920
+ "description": "Color is represented as a three or four-element array.",
2921
+ "items": {
2922
+ "type": "number"
2923
+ },
2924
+ "type": "array"
2925
+ },
2926
+ "extensionLength": {
2927
+ "description": "A size in points by which to extend edges beyond their original end points.",
2928
+ "type": "number"
2929
+ },
2930
+ "size": {
2931
+ "description": "Edge size in points, positive only.",
2932
+ "type": "number"
2933
+ },
2934
+ "transparency": {
2935
+ "description": "The value has to lie between 100 (full transparency) and 0 (full opacity).",
2936
+ "type": "number"
2937
+ },
2938
+ "type": {
2939
+ "description": "The type of edge visualization. Value of this property must be sketch.",
2940
+ "enum": [
2941
+ "sketch"
2942
+ ],
2943
+ "type": "string"
2944
+ }
2945
+ },
2946
+ "required": [
2947
+ "type"
2948
+ ],
2949
+ "type": "object"
2950
+ },
2951
+ "esri.rest-api.Edges.SolidEdges": {
2952
+ "additionalProperties": false,
2953
+ "description": "The solid edge rendering configuration of a symbol layer. Edges of type solid are rendered in a single color, unaffected by scene lighting.",
2954
+ "properties": {
2955
+ "color": {
2956
+ "description": "Color is represented as a three or four-element array.",
2957
+ "items": {
2958
+ "type": "number"
2959
+ },
2960
+ "type": "array"
2961
+ },
2962
+ "extensionLength": {
2963
+ "description": "A size in points by which to extend edges beyond their original end points.",
2964
+ "type": "number"
2965
+ },
2966
+ "size": {
2967
+ "description": "Edge size in points, positive only.",
2968
+ "type": "number"
2969
+ },
2970
+ "transparency": {
2971
+ "description": "The value has to lie between 100 (full transparency) and 0 (full opacity).",
2972
+ "type": "number"
2973
+ },
2974
+ "type": {
2975
+ "description": "The type of edge visualization. Value of this property must be solid.",
2976
+ "enum": [
2977
+ "solid"
2978
+ ],
2979
+ "type": "string"
2980
+ }
2981
+ },
2982
+ "required": [
2983
+ "type"
2984
+ ],
2985
+ "type": "object"
2986
+ },
2987
+ "esri.rest-api.Effect.BloomEffectFunction": {
2988
+ "additionalProperties": false,
2989
+ "description": "An Effect Function for the bloom effect.",
2990
+ "properties": {
2991
+ "radius": {
2992
+ "description": "Determines the radius of the blur. Negative values are not allowed. Leaves the pixels inside the radius untouched.",
2993
+ "type": "number"
2994
+ },
2995
+ "strength": {
2996
+ "description": "The intensity of the bloom effect. The higher the value, the brighter the glow. Negative values are not allowed.",
2997
+ "type": "number"
2998
+ },
2999
+ "threshold": {
3000
+ "description": "The minimum color luminosity for a pixel to bloom, where at 0 all pixels bloom and 1 only the pixels with 100% luminosity colors bloom.",
3001
+ "type": "number"
3002
+ },
3003
+ "type": {
3004
+ "description": "Effect type.",
3005
+ "enum": [
3006
+ "bloom"
3007
+ ],
3008
+ "type": "string"
3009
+ }
3010
+ },
3011
+ "required": [
3012
+ "type"
3013
+ ],
3014
+ "type": "object"
3015
+ },
3016
+ "esri.rest-api.Effect.BlurEffectFunction": {
3017
+ "additionalProperties": false,
3018
+ "description": "An Effect Function for the blur effect.",
3019
+ "properties": {
3020
+ "radius": {
3021
+ "description": "The radius of the blur in points. It defines the value of the standard deviation to the Gaussian function. Negative values are not allowed.",
3022
+ "type": "number"
3023
+ },
3024
+ "type": {
3025
+ "description": "Effect type.",
3026
+ "enum": [
3027
+ "blur"
3028
+ ],
3029
+ "type": "string"
3030
+ }
3031
+ },
3032
+ "required": [
3033
+ "type"
3034
+ ],
3035
+ "type": "object"
3036
+ },
3037
+ "esri.rest-api.Effect.BrightnessEffectFunction": {
3038
+ "additionalProperties": false,
3039
+ "description": "An Effect Function for the brightness effect.",
3040
+ "properties": {
3041
+ "amount": {
3042
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
3043
+ "type": "number"
3044
+ },
3045
+ "type": {
3046
+ "description": "Effect type.",
3047
+ "enum": [
3048
+ "brightness"
3049
+ ],
3050
+ "type": "string"
3051
+ }
3052
+ },
3053
+ "required": [
3054
+ "type"
3055
+ ],
3056
+ "type": "object"
3057
+ },
3058
+ "esri.rest-api.Effect.ContrastEffectFunction": {
3059
+ "additionalProperties": false,
3060
+ "description": "An Effect Function for the contrast effect.",
3061
+ "properties": {
3062
+ "amount": {
3063
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
3064
+ "type": "number"
3065
+ },
3066
+ "type": {
3067
+ "description": "Effect type.",
3068
+ "enum": [
3069
+ "contrast"
3070
+ ],
3071
+ "type": "string"
3072
+ }
3073
+ },
3074
+ "required": [
3075
+ "type"
3076
+ ],
3077
+ "type": "object"
3078
+ },
3079
+ "esri.rest-api.Effect.DropShadowEffectFunction": {
3080
+ "additionalProperties": false,
3081
+ "description": "An Effect Function for the drop-shadow effect.",
3082
+ "properties": {
3083
+ "blurRadius": {
3084
+ "description": "The radius of the blur in points. It defines the value of the standard deviation to the Gaussian function.",
3085
+ "type": "number"
3086
+ },
3087
+ "color": {
3088
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255.",
3089
+ "items": {
3090
+ "type": "number"
3091
+ },
3092
+ "type": "array"
3093
+ },
3094
+ "type": {
3095
+ "description": "Effect type.",
3096
+ "enum": [
3097
+ "drop-shadow"
3098
+ ],
3099
+ "type": "string"
3100
+ },
3101
+ "xoffset": {
3102
+ "description": "The distance of the shadow on the x-axis in points.",
3103
+ "type": "number"
3104
+ },
3105
+ "yoffset": {
3106
+ "description": "The distance of the shadow on the y-axis in points.",
3107
+ "type": "number"
3108
+ }
3109
+ },
3110
+ "required": [
3111
+ "type"
3112
+ ],
3113
+ "type": "object"
3114
+ },
3115
+ "esri.rest-api.Effect.Effect": {
3116
+ "anyOf": [
3117
+ {
3118
+ "items": {
3119
+ "$ref": "#/definitions/esri.rest-api.Effect.ScaleDependentEffect"
3120
+ },
3121
+ "type": "array"
3122
+ },
3123
+ {
3124
+ "items": {
3125
+ "anyOf": [
3126
+ {
3127
+ "$ref": "#/definitions/esri.rest-api.Effect.HueRotateEffectFunction"
3128
+ },
3129
+ {
3130
+ "$ref": "#/definitions/esri.rest-api.Effect.BlurEffectFunction"
3131
+ },
3132
+ {
3133
+ "$ref": "#/definitions/esri.rest-api.Effect.DropShadowEffectFunction"
3134
+ },
3135
+ {
3136
+ "$ref": "#/definitions/esri.rest-api.Effect.BloomEffectFunction"
3137
+ },
3138
+ {
3139
+ "$ref": "#/definitions/esri.rest-api.Effect.BrightnessEffectFunction"
3140
+ },
3141
+ {
3142
+ "$ref": "#/definitions/esri.rest-api.Effect.ContrastEffectFunction"
3143
+ },
3144
+ {
3145
+ "$ref": "#/definitions/esri.rest-api.Effect.GrayscaleEffectFunction"
3146
+ },
3147
+ {
3148
+ "$ref": "#/definitions/esri.rest-api.Effect.InvertEffectFunction"
3149
+ },
3150
+ {
3151
+ "$ref": "#/definitions/esri.rest-api.Effect.OpacityEffectFunction"
3152
+ },
3153
+ {
3154
+ "$ref": "#/definitions/esri.rest-api.Effect.SaturateEffectFunction"
3155
+ },
3156
+ {
3157
+ "$ref": "#/definitions/esri.rest-api.Effect.SepiaEffectFunction"
3158
+ }
3159
+ ],
3160
+ "description": "Effect functions that can be combined to build a layer effect."
3161
+ },
3162
+ "type": "array"
3163
+ }
3164
+ ],
3165
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
3166
+ },
3167
+ "esri.rest-api.Effect.GrayscaleEffectFunction": {
3168
+ "additionalProperties": false,
3169
+ "description": "An Effect Function for the grayscale effect.",
3170
+ "properties": {
3171
+ "amount": {
3172
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
3173
+ "type": "number"
3174
+ },
3175
+ "type": {
3176
+ "description": "Effect type.",
3177
+ "enum": [
3178
+ "grayscale"
3179
+ ],
3180
+ "type": "string"
3181
+ }
3182
+ },
3183
+ "required": [
3184
+ "type"
3185
+ ],
3186
+ "type": "object"
3187
+ },
3188
+ "esri.rest-api.Effect.HueRotateEffectFunction": {
3189
+ "additionalProperties": false,
3190
+ "description": "An Effect Function for the hue-rotate effect.",
3191
+ "properties": {
3192
+ "angle": {
3193
+ "description": "The relative change in hue as an angle in degree. A value of 0 leaves the input unchanged. A positive hue rotation increases the hue value, while a negative one decreases the hue value.",
3194
+ "type": "number"
3195
+ },
3196
+ "type": {
3197
+ "description": "Effect type.",
2148
3198
  "enum": [
2149
- "dataLayer"
3199
+ "hue-rotate"
2150
3200
  ],
2151
3201
  "type": "string"
2152
3202
  }
@@ -2156,22 +3206,18 @@
2156
3206
  ],
2157
3207
  "type": "object"
2158
3208
  },
2159
- "esri.rest-api.DynamicMapLayer.DynamicMapLayer": {
3209
+ "esri.rest-api.Effect.InvertEffectFunction": {
2160
3210
  "additionalProperties": false,
2161
- "description": "A dynamic map layer refers to a layer in the current map service. More information on this can be found in the ArcGIS REST API help.{@linkhttps://developers.arcgis.com/web-map-specification/objects/dynamicMapLayer_source/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/dynamicMapLayer_source/}.",
3211
+ "description": "An Effect Function for the invert effect.",
2162
3212
  "properties": {
2163
- "gdbVersion": {
2164
- "description": "If applicable, specify this to use an alternate geodatabase version.",
2165
- "type": "string"
2166
- },
2167
- "mapLayerId": {
2168
- "description": "The current map layer's ID.",
3213
+ "amount": {
3214
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2169
3215
  "type": "number"
2170
3216
  },
2171
3217
  "type": {
2172
- "description": "A string value indicating the type. This value is mapLayer.",
3218
+ "description": "Effect type.",
2173
3219
  "enum": [
2174
- "mapLayer"
3220
+ "invert"
2175
3221
  ],
2176
3222
  "type": "string"
2177
3223
  }
@@ -2181,44 +3227,39 @@
2181
3227
  ],
2182
3228
  "type": "object"
2183
3229
  },
2184
- "esri.rest-api.Edges.Edges": {
2185
- "anyOf": [
2186
- {
2187
- "$ref": "#/definitions/esri.rest-api.Edges.SketchEdges"
3230
+ "esri.rest-api.Effect.OpacityEffectFunction": {
3231
+ "additionalProperties": false,
3232
+ "description": "An Effect Function for the opacity effect.",
3233
+ "properties": {
3234
+ "amount": {
3235
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
3236
+ "type": "number"
2188
3237
  },
2189
- {
2190
- "$ref": "#/definitions/esri.rest-api.Edges.SolidEdges"
3238
+ "type": {
3239
+ "description": "Effect type.",
3240
+ "enum": [
3241
+ "opacity"
3242
+ ],
3243
+ "type": "string"
2191
3244
  }
3245
+ },
3246
+ "required": [
3247
+ "type"
2192
3248
  ],
2193
- "description": "Edges describe additional styles applied to visually important edges of 3D objects."
3249
+ "type": "object"
2194
3250
  },
2195
- "esri.rest-api.Edges.SketchEdges": {
3251
+ "esri.rest-api.Effect.SaturateEffectFunction": {
2196
3252
  "additionalProperties": false,
2197
- "description": "The sketch edge rendering configuration of a symbol layer. Edges of type sketch are rendered with a hand-drawn look in mind.",
3253
+ "description": "An Effect Function for the saturate effect.",
2198
3254
  "properties": {
2199
- "color": {
2200
- "description": "Color is represented as a three or four-element array.",
2201
- "items": {
2202
- "type": "number"
2203
- },
2204
- "type": "array"
2205
- },
2206
- "extensionLength": {
2207
- "description": "A size in points by which to extend edges beyond their original end points.",
2208
- "type": "number"
2209
- },
2210
- "size": {
2211
- "description": "Edge size in points, positive only.",
2212
- "type": "number"
2213
- },
2214
- "transparency": {
2215
- "description": "The value has to lie between 100 (full transparency) and 0 (full opacity).",
3255
+ "amount": {
3256
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2216
3257
  "type": "number"
2217
3258
  },
2218
3259
  "type": {
2219
- "description": "The type of edge visualization. Value of this property must be sketch.",
3260
+ "description": "Effect type.",
2220
3261
  "enum": [
2221
- "sketch"
3262
+ "saturate"
2222
3263
  ],
2223
3264
  "type": "string"
2224
3265
  }
@@ -2228,33 +3269,75 @@
2228
3269
  ],
2229
3270
  "type": "object"
2230
3271
  },
2231
- "esri.rest-api.Edges.SolidEdges": {
3272
+ "esri.rest-api.Effect.ScaleDependentEffect": {
2232
3273
  "additionalProperties": false,
2233
- "description": "The solid edge rendering configuration of a symbol layer. Edges of type solid are rendered in a single color, unaffected by scene lighting.",
3274
+ "description": "An object describing the effect to apply at a scale stop.",
2234
3275
  "properties": {
2235
- "color": {
2236
- "description": "Color is represented as a three or four-element array.",
3276
+ "scale": {
3277
+ "description": "The scale of the view for the effect to take place.",
3278
+ "type": "number"
3279
+ },
3280
+ "value": {
3281
+ "description": "The effect to be applied at the corresponding scale.",
2237
3282
  "items": {
2238
- "type": "number"
3283
+ "anyOf": [
3284
+ {
3285
+ "$ref": "#/definitions/esri.rest-api.Effect.HueRotateEffectFunction"
3286
+ },
3287
+ {
3288
+ "$ref": "#/definitions/esri.rest-api.Effect.BlurEffectFunction"
3289
+ },
3290
+ {
3291
+ "$ref": "#/definitions/esri.rest-api.Effect.DropShadowEffectFunction"
3292
+ },
3293
+ {
3294
+ "$ref": "#/definitions/esri.rest-api.Effect.BloomEffectFunction"
3295
+ },
3296
+ {
3297
+ "$ref": "#/definitions/esri.rest-api.Effect.BrightnessEffectFunction"
3298
+ },
3299
+ {
3300
+ "$ref": "#/definitions/esri.rest-api.Effect.ContrastEffectFunction"
3301
+ },
3302
+ {
3303
+ "$ref": "#/definitions/esri.rest-api.Effect.GrayscaleEffectFunction"
3304
+ },
3305
+ {
3306
+ "$ref": "#/definitions/esri.rest-api.Effect.InvertEffectFunction"
3307
+ },
3308
+ {
3309
+ "$ref": "#/definitions/esri.rest-api.Effect.OpacityEffectFunction"
3310
+ },
3311
+ {
3312
+ "$ref": "#/definitions/esri.rest-api.Effect.SaturateEffectFunction"
3313
+ },
3314
+ {
3315
+ "$ref": "#/definitions/esri.rest-api.Effect.SepiaEffectFunction"
3316
+ }
3317
+ ],
3318
+ "description": "Effect functions that can be combined to build a layer effect."
2239
3319
  },
2240
3320
  "type": "array"
2241
- },
2242
- "extensionLength": {
2243
- "description": "A size in points by which to extend edges beyond their original end points.",
2244
- "type": "number"
2245
- },
2246
- "size": {
2247
- "description": "Edge size in points, positive only.",
2248
- "type": "number"
2249
- },
2250
- "transparency": {
2251
- "description": "The value has to lie between 100 (full transparency) and 0 (full opacity).",
3321
+ }
3322
+ },
3323
+ "required": [
3324
+ "scale",
3325
+ "value"
3326
+ ],
3327
+ "type": "object"
3328
+ },
3329
+ "esri.rest-api.Effect.SepiaEffectFunction": {
3330
+ "additionalProperties": false,
3331
+ "description": "An Effect Function for the sepia effect.",
3332
+ "properties": {
3333
+ "amount": {
3334
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2252
3335
  "type": "number"
2253
3336
  },
2254
3337
  "type": {
2255
- "description": "The type of edge visualization. Value of this property must be solid.",
3338
+ "description": "Effect type.",
2256
3339
  "enum": [
2257
- "solid"
3340
+ "sepia"
2258
3341
  ],
2259
3342
  "type": "string"
2260
3343
  }
@@ -2323,6 +3406,10 @@
2323
3406
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
2324
3407
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
2325
3408
  },
3409
+ "effect": {
3410
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
3411
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
3412
+ },
2326
3413
  "id": {
2327
3414
  "description": "A unique identifying string for the layer.",
2328
3415
  "type": "string"
@@ -2569,6 +3656,10 @@
2569
3656
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
2570
3657
  "type": "boolean"
2571
3658
  },
3659
+ "effect": {
3660
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
3661
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
3662
+ },
2572
3663
  "featureCollection": {
2573
3664
  "$ref": "#/definitions/esri.rest-api.FeatureCollection.FeatureCollection",
2574
3665
  "description": "A featureCollection object defining a layer of features whose geometry and attributes will be stored directly within the web map. This is only used when no url property is supplied."
@@ -3438,6 +4529,10 @@
3438
4529
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
3439
4530
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
3440
4531
  },
4532
+ "effect": {
4533
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
4534
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4535
+ },
3441
4536
  "id": {
3442
4537
  "description": "A unique identifying string for the layer.",
3443
4538
  "type": "string"
@@ -3545,6 +4640,10 @@
3545
4640
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
3546
4641
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
3547
4642
  },
4643
+ "effect": {
4644
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
4645
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4646
+ },
3548
4647
  "id": {
3549
4648
  "description": "A unique identifying string for the layer.",
3550
4649
  "type": "string"
@@ -3789,6 +4888,10 @@
3789
4888
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
3790
4889
  "description": "Stores interactive filters."
3791
4890
  },
4891
+ "effect": {
4892
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
4893
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4894
+ },
3792
4895
  "format": {
3793
4896
  "description": "The output image type.",
3794
4897
  "enum": [
@@ -3939,6 +5042,10 @@
3939
5042
  "description": "Boolean property indicating whether to ignore popups defined by the service item.",
3940
5043
  "type": "boolean"
3941
5044
  },
5045
+ "effect": {
5046
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
5047
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
5048
+ },
3942
5049
  "id": {
3943
5050
  "description": "A unique identifying string for the layer.",
3944
5051
  "type": "string"
@@ -4053,6 +5160,10 @@
4053
5160
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
4054
5161
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
4055
5162
  },
5163
+ "effect": {
5164
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
5165
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
5166
+ },
4056
5167
  "id": {
4057
5168
  "description": "A unique identifying string for the layer.",
4058
5169
  "type": "string"
@@ -4195,6 +5306,10 @@
4195
5306
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
4196
5307
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
4197
5308
  },
5309
+ "effect": {
5310
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
5311
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
5312
+ },
4198
5313
  "id": {
4199
5314
  "description": "A unique identifying string for the layer.",
4200
5315
  "type": "string"
@@ -4926,6 +6041,10 @@
4926
6041
  "customParameters": {
4927
6042
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
4928
6043
  },
6044
+ "effect": {
6045
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
6046
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
6047
+ },
4929
6048
  "id": {
4930
6049
  "description": "A unique identifying string for the layer.",
4931
6050
  "type": "string"
@@ -5575,6 +6694,10 @@
5575
6694
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
5576
6695
  "type": "boolean"
5577
6696
  },
6697
+ "effect": {
6698
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
6699
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
6700
+ },
5578
6701
  "id": {
5579
6702
  "description": "A unique identifying string for the layer.",
5580
6703
  "type": "string"
@@ -6706,6 +7829,10 @@
6706
7829
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
6707
7830
  "type": "boolean"
6708
7831
  },
7832
+ "effect": {
7833
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
7834
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
7835
+ },
6709
7836
  "id": {
6710
7837
  "description": "A unique identifying string for the layer.",
6711
7838
  "type": "string"
@@ -7075,37 +8202,185 @@
7075
8202
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
7076
8203
  "type": "boolean"
7077
8204
  },
8205
+ "effect": {
8206
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
8207
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
8208
+ },
7078
8209
  "featureCollection": {
7079
8210
  "$ref": "#/definitions/esri.rest-api.FeatureCollection.FeatureCollection",
7080
8211
  "description": "A featureCollection object defining a layer of features whose geometry and attributes will be stored directly within the web map. This is only used when no url property is supplied."
7081
8212
  },
7082
- "featureCollectionType": {
7083
- "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureCollectionType",
7084
- "description": "Indicates the type of features in the feature collection. If featureCollectionType is missing, it means the feature collection is a regular single-layer or multi-layer feature collection."
8213
+ "featureCollectionType": {
8214
+ "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureCollectionType",
8215
+ "description": "Indicates the type of features in the feature collection. If featureCollectionType is missing, it means the feature collection is a regular single-layer or multi-layer feature collection."
8216
+ },
8217
+ "formInfo": {
8218
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormInfo",
8219
+ "description": "A formInfo object defining the content of the form when you are editing a feature."
8220
+ },
8221
+ "id": {
8222
+ "description": "A unique identifying string for the layer.",
8223
+ "type": "string"
8224
+ },
8225
+ "itemId": {
8226
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
8227
+ "type": "string"
8228
+ },
8229
+ "layerDefinition": {
8230
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
8231
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
8232
+ },
8233
+ "layerType": {
8234
+ "description": "The type of layer.",
8235
+ "enum": [
8236
+ "ArcGISStreamLayer"
8237
+ ],
8238
+ "type": "string"
8239
+ },
8240
+ "listMode": {
8241
+ "$ref": "esri.ListMode",
8242
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linkListMode}."
8243
+ },
8244
+ "maxScale": {
8245
+ "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
8246
+ "type": "number"
8247
+ },
8248
+ "minScale": {
8249
+ "description": "A number representing the minimum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400.",
8250
+ "type": "number"
8251
+ },
8252
+ "mode": {
8253
+ "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
8254
+ "description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkFeatureLayerMode}."
8255
+ },
8256
+ "opacity": {
8257
+ "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
8258
+ "type": "number"
8259
+ },
8260
+ "popupInfo": {
8261
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
8262
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
8263
+ },
8264
+ "refreshInterval": {
8265
+ "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
8266
+ "type": "number"
8267
+ },
8268
+ "screenSizePerspective": {
8269
+ "description": "Apply perspective scaling to screen-size symbols.",
8270
+ "type": "boolean"
8271
+ },
8272
+ "showLabels": {
8273
+ "description": "Indicates whether to display labels for this layer. If true, labels will appear as defined in the labelingInfo property.",
8274
+ "type": "boolean"
8275
+ },
8276
+ "showLegend": {
8277
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
8278
+ "type": "boolean"
8279
+ },
8280
+ "subtypeCode": {
8281
+ "description": "The feature subtype code identifying the layer. Used with SubtypeGroupLayers.",
8282
+ "type": [
8283
+ "string",
8284
+ "number"
8285
+ ]
8286
+ },
8287
+ "title": {
8288
+ "description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
8289
+ "type": "string"
8290
+ },
8291
+ "type": {
8292
+ "description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type. See{@linkOperationalLayerType}and{@linkBaseMapLayerType}.",
8293
+ "enum": [
8294
+ "BingMapsAerial",
8295
+ "BingMapsHybrid",
8296
+ "BingMapsRoad",
8297
+ "CSV",
8298
+ "KML",
8299
+ "OpenStreetMap",
8300
+ "WMS",
8301
+ "WebTiledLayer"
8302
+ ],
8303
+ "type": "string"
8304
+ },
8305
+ "url": {
8306
+ "description": "The URL to the layer.If the layer is not from a web service but rather a feature collection, than the url property is omitted.",
8307
+ "type": "string"
8308
+ },
8309
+ "visibility": {
8310
+ "description": "Determines whether the layer is initially visible in the web map.",
8311
+ "type": "boolean"
8312
+ }
8313
+ },
8314
+ "required": [
8315
+ "layerType"
8316
+ ],
8317
+ "type": "object"
8318
+ },
8319
+ "esri.rest-api.StyleSymbolReference.StyleSymbolReference": {
8320
+ "additionalProperties": false,
8321
+ "description": "The StyleSymbolReference is used to reference a symbol from a portal styleItem.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/styleSymbolReference/}.",
8322
+ "properties": {
8323
+ "name": {
8324
+ "description": "Identifies a symbol in the style by name.",
8325
+ "type": "string"
8326
+ },
8327
+ "styleName": {
8328
+ "description": "A registered web style name.",
8329
+ "type": "string"
8330
+ },
8331
+ "styleUrl": {
8332
+ "description": "URL that points to the web style definition.",
8333
+ "type": "string"
8334
+ },
8335
+ "type": {
8336
+ "enum": [
8337
+ "styleSymbolReference"
8338
+ ],
8339
+ "type": "string"
8340
+ }
8341
+ },
8342
+ "required": [
8343
+ "type"
8344
+ ],
8345
+ "type": "object"
8346
+ },
8347
+ "esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer": {
8348
+ "additionalProperties": false,
8349
+ "description": "SubtypeGroupLayer provides the ability to organize several sublayers into one common layer. Suppose there are several FeatureLayers that all represent water features in different dimensions. For example, wells (points), streams (lines), and lakes (polygons). The SubtypeGroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/subtypeGroupLayer/}.",
8350
+ "properties": {
8351
+ "blendMode": {
8352
+ "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
8353
+ "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer."
8354
+ },
8355
+ "customParameters": {
8356
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
7085
8357
  },
7086
- "formInfo": {
7087
- "$ref": "#/definitions/esri.rest-api.FormInfo.FormInfo",
7088
- "description": "A formInfo object defining the content of the form when you are editing a feature."
8358
+ "effect": {
8359
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
8360
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
7089
8361
  },
7090
8362
  "id": {
7091
8363
  "description": "A unique identifying string for the layer.",
7092
8364
  "type": "string"
7093
8365
  },
7094
- "itemId": {
7095
- "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
7096
- "type": "string"
7097
- },
7098
8366
  "layerDefinition": {
7099
8367
  "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
7100
8368
  "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
7101
8369
  },
7102
8370
  "layerType": {
7103
- "description": "The type of layer.",
8371
+ "description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
7104
8372
  "enum": [
7105
- "ArcGISStreamLayer"
8373
+ "ArcGISSubtypeGroupLayer"
7106
8374
  ],
7107
8375
  "type": "string"
7108
8376
  },
8377
+ "layers": {
8378
+ "description": "An array of feature layers, each describing the properties for a subtype in the feature service layer.",
8379
+ "items": {
8380
+ "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
8381
+ },
8382
+ "type": "array"
8383
+ },
7109
8384
  "listMode": {
7110
8385
  "$ref": "esri.ListMode",
7111
8386
  "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linkListMode}."
@@ -7118,41 +8393,18 @@
7118
8393
  "description": "A number representing the minimum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400.",
7119
8394
  "type": "number"
7120
8395
  },
7121
- "mode": {
7122
- "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayerMode",
7123
- "description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2. - 0: Snapshot mode. Immediately retrieves all features when the map is loaded. - 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps. - 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing. See{@linkFeatureLayerMode}."
7124
- },
7125
8396
  "opacity": {
7126
8397
  "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
7127
8398
  "type": "number"
7128
8399
  },
7129
- "popupInfo": {
7130
- "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
7131
- "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
7132
- },
7133
8400
  "refreshInterval": {
7134
8401
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
7135
8402
  "type": "number"
7136
8403
  },
7137
- "screenSizePerspective": {
7138
- "description": "Apply perspective scaling to screen-size symbols.",
7139
- "type": "boolean"
7140
- },
7141
- "showLabels": {
7142
- "description": "Indicates whether to display labels for this layer. If true, labels will appear as defined in the labelingInfo property.",
7143
- "type": "boolean"
7144
- },
7145
8404
  "showLegend": {
7146
8405
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
7147
8406
  "type": "boolean"
7148
8407
  },
7149
- "subtypeCode": {
7150
- "description": "The feature subtype code identifying the layer. Used with SubtypeGroupLayers.",
7151
- "type": [
7152
- "string",
7153
- "number"
7154
- ]
7155
- },
7156
8408
  "title": {
7157
8409
  "description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
7158
8410
  "type": "string"
@@ -7172,7 +8424,7 @@
7172
8424
  "type": "string"
7173
8425
  },
7174
8426
  "url": {
7175
- "description": "The URL to the layer.If the layer is not from a web service but rather a feature collection, than the url property is omitted.",
8427
+ "description": "The URL to the layer. If the layer is not from a web service but rather a feature collection, then the url property is omitted.",
7176
8428
  "type": "string"
7177
8429
  },
7178
8430
  "visibility": {
@@ -7185,34 +8437,6 @@
7185
8437
  ],
7186
8438
  "type": "object"
7187
8439
  },
7188
- "esri.rest-api.StyleSymbolReference.StyleSymbolReference": {
7189
- "additionalProperties": false,
7190
- "description": "The StyleSymbolReference is used to reference a symbol from a portal styleItem.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/styleSymbolReference/}.",
7191
- "properties": {
7192
- "name": {
7193
- "description": "Identifies a symbol in the style by name.",
7194
- "type": "string"
7195
- },
7196
- "styleName": {
7197
- "description": "A registered web style name.",
7198
- "type": "string"
7199
- },
7200
- "styleUrl": {
7201
- "description": "URL that points to the web style definition.",
7202
- "type": "string"
7203
- },
7204
- "type": {
7205
- "enum": [
7206
- "styleSymbolReference"
7207
- ],
7208
- "type": "string"
7209
- }
7210
- },
7211
- "required": [
7212
- "type"
7213
- ],
7214
- "type": "object"
7215
- },
7216
8440
  "esri.rest-api.Symbol.Color": {
7217
8441
  "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.{@linkhttps://developers.arcgis.com/web-map-specification/objects/color/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/color/}.",
7218
8442
  "items": {
@@ -7715,6 +8939,10 @@
7715
8939
  "customParameters": {
7716
8940
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
7717
8941
  },
8942
+ "effect": {
8943
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
8944
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
8945
+ },
7718
8946
  "id": {
7719
8947
  "description": "A unique identifying string for the layer.",
7720
8948
  "type": "string"
@@ -7809,6 +9037,10 @@
7809
9037
  },
7810
9038
  "type": "array"
7811
9039
  },
9040
+ "effect": {
9041
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
9042
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
9043
+ },
7812
9044
  "exclusionAreas": {
7813
9045
  "$ref": "__type",
7814
9046
  "description": "Exclusion areas define extent areas where no data will be fetched for a layer. NOTE: Applicable if used as a baseMapLayer. An array of exclusionArea objects defining the layer exclusions.{@linkhttps://developers.arcgis.com/web-map-specification/objects/exclusionArea/}."
@@ -8303,6 +9535,10 @@
8303
9535
  "customParameters": {
8304
9536
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
8305
9537
  },
9538
+ "effect": {
9539
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
9540
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
9541
+ },
8306
9542
  "id": {
8307
9543
  "description": "A unique identifying string for the layer.",
8308
9544
  "type": "string"
@@ -8775,6 +10011,10 @@
8775
10011
  "customParameters": {
8776
10012
  "description": "A sequence of custom parameters to all WMS requests. These parameters are applied to GetCapabilities, GetMap, and GetFeatureInfo requests. If used with the customLayerParameters property, customParameters will not take precedence."
8777
10013
  },
10014
+ "effect": {
10015
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
10016
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
10017
+ },
8778
10018
  "extent": {
8779
10019
  "description": "The rectangular map extent that should be requested from the service.",
8780
10020
  "items": {
@@ -8977,6 +10217,10 @@
8977
10217
  "description": "Attribution to the Web Tile Layer provider. It is displayed in the attribution on the web map. Input required by the user when the layer is added to the web map.",
8978
10218
  "type": "string"
8979
10219
  },
10220
+ "effect": {
10221
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
10222
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
10223
+ },
8980
10224
  "fullExtent": {
8981
10225
  "$ref": "#/definitions/esri.rest-api.Extent.Extent",
8982
10226
  "description": "An extent object representing the full extent envelope for the layer."
@@ -9108,24 +10352,6 @@
9108
10352
  ],
9109
10353
  "type": "string"
9110
10354
  },
9111
- "geolocation.-gnss-device-detection-started": {
9112
- "description": "Raised when detection of connected GNSS receivers begins.",
9113
- "enum": [
9114
- "geolocation.-gnss-device-detection-started"
9115
- ]
9116
- },
9117
- "geolocation.-gnss-device-detection-started:input": {
9118
- "items": {
9119
- "$ref": "#/definitions/GnssDeviceConnectionInfo"
9120
- },
9121
- "type": "array"
9122
- },
9123
- "geolocation.-gnss-device-detection-stopped": {
9124
- "description": "Raised when detection of connected GNSS receivers ends.",
9125
- "enum": [
9126
- "geolocation.-gnss-device-detection-stopped"
9127
- ]
9128
- },
9129
10355
  "geolocation.accuracy-changed": {
9130
10356
  "description": "Raised when geolocation is activated and the accuracy of geolocation changes.",
9131
10357
  "enum": [
@@ -9135,6 +10361,15 @@
9135
10361
  "geolocation.accuracy-changed:input": {
9136
10362
  "$ref": "#/definitions/GeolocateAccuracyChangedEventArgs"
9137
10363
  },
10364
+ "geolocation.antenna-height-changed": {
10365
+ "description": "Raised when the GNSS antenna height is changed.",
10366
+ "enum": [
10367
+ "geolocation.antenna-height-changed"
10368
+ ]
10369
+ },
10370
+ "geolocation.antenna-height-changed:input": {
10371
+ "$ref": "#/definitions/GnssDeviceAntennaHeightEventArgs"
10372
+ },
9138
10373
  "geolocation.auto-recenter-and-reorient-started": {
9139
10374
  "description": "Raised when the user changes the geolocation mode to recenter-and-reorient (updates map orientation to match device direction).",
9140
10375
  "enum": [
@@ -9142,7 +10377,7 @@
9142
10377
  ]
9143
10378
  },
9144
10379
  "geolocation.auto-recenter-and-reorient-started:input": {
9145
- "$ref": "MapExtensionArgs"
10380
+ "$ref": "#/definitions/HasMaps"
9146
10381
  },
9147
10382
  "geolocation.auto-recenter-and-reorient-stopped": {
9148
10383
  "description": "Raised when the user changes the geolocation mode to not recenter-and-reorient.",
@@ -9151,7 +10386,7 @@
9151
10386
  ]
9152
10387
  },
9153
10388
  "geolocation.auto-recenter-and-reorient-stopped:input": {
9154
- "$ref": "MapExtensionArgs"
10389
+ "$ref": "#/definitions/HasMaps"
9155
10390
  },
9156
10391
  "geolocation.auto-recenter-started": {
9157
10392
  "description": "Raised when geolocation enters auto recenter mode. For Geocortex Web Viewer, the event will have no parameter (all maps are always affected).",
@@ -9185,6 +10420,36 @@
9185
10420
  }
9186
10421
  ]
9187
10422
  },
10423
+ "geolocation.gnss-device-detection-started": {
10424
+ "description": "Raised when detection of connected GNSS receivers begins.",
10425
+ "enum": [
10426
+ "geolocation.gnss-device-detection-started"
10427
+ ]
10428
+ },
10429
+ "geolocation.gnss-device-detection-stopped": {
10430
+ "description": "Raised when detection of connected GNSS receivers ends.",
10431
+ "enum": [
10432
+ "geolocation.gnss-device-detection-stopped"
10433
+ ]
10434
+ },
10435
+ "geolocation.gnss-lock-status-changed": {
10436
+ "description": "Raised when the lock status of an active GNSS device changes.",
10437
+ "enum": [
10438
+ "geolocation.gnss-lock-status-changed"
10439
+ ]
10440
+ },
10441
+ "geolocation.gnss-lock-status-changed:input": {
10442
+ "$ref": "#/definitions/GnssLockStateEventArgs"
10443
+ },
10444
+ "geolocation.location-display-mode-changed": {
10445
+ "description": "Raised when the location display mode is changed.",
10446
+ "enum": [
10447
+ "geolocation.location-display-mode-changed"
10448
+ ]
10449
+ },
10450
+ "geolocation.location-display-mode-changed:input": {
10451
+ "$ref": "#/definitions/LocationDisplayModeChangedEventArgs"
10452
+ },
9188
10453
  "geolocation.metadata-changed": {
9189
10454
  "description": "Raised when a GNSS receiver is active and metadata about the device or location change.",
9190
10455
  "enum": [
@@ -9239,6 +10504,15 @@
9239
10504
  "geolocation.status-changed:input": {
9240
10505
  "$ref": "#/definitions/GeolocationStatusChangedEventArgs"
9241
10506
  },
10507
+ "geolocation.transformation-changed": {
10508
+ "description": "Raised when the GNSS transformation is changed.",
10509
+ "enum": [
10510
+ "geolocation.transformation-changed"
10511
+ ]
10512
+ },
10513
+ "geolocation.transformation-changed:input": {
10514
+ "$ref": "#/definitions/GnssDeviceTransformationOverrideEventArgs"
10515
+ },
9242
10516
  "input.keyboard-shortcut-pressed": {
9243
10517
  "description": "Raised when the user presses a keyboard shortcut.",
9244
10518
  "enum": [
@@ -9293,14 +10567,30 @@
9293
10567
  "layout.unloaded"
9294
10568
  ]
9295
10569
  },
10570
+ "map.image-exported": {
10571
+ "description": "Raised when a map export operation has completed.",
10572
+ "enum": [
10573
+ "map.image-exported"
10574
+ ]
10575
+ },
10576
+ "map.image-exported:input": {
10577
+ "$ref": "#/definitions/ExportMapImageArgs"
10578
+ },
9296
10579
  "map.initialized": {
9297
- "description": "Raised when a map has completed initialization.",
10580
+ "description": "Raised when a map has completed initialization. MapEvent used in Web, MapInitializedEvent used in Mobile.",
9298
10581
  "enum": [
9299
10582
  "map.initialized"
9300
10583
  ]
9301
10584
  },
9302
10585
  "map.initialized:input": {
9303
- "$ref": "MapEvent"
10586
+ "anyOf": [
10587
+ {
10588
+ "$ref": "MapEvent"
10589
+ },
10590
+ {
10591
+ "$ref": "MapInitializedEvent"
10592
+ }
10593
+ ]
9304
10594
  },
9305
10595
  "map.initializing": {
9306
10596
  "description": "Raised when a map is about to begin loading during startup. The map can be swapped with a different map at this point if you want to circumvent the map load process. For example in an app that supported offline, an offline map could be swapped in here.",
@@ -9311,6 +10601,24 @@
9311
10601
  "map.initializing:input": {
9312
10602
  "$ref": "MapEvent"
9313
10603
  },
10604
+ "map.markup-added": {
10605
+ "description": "Raised when markup is added to the map.",
10606
+ "enum": [
10607
+ "map.markup-added"
10608
+ ]
10609
+ },
10610
+ "map.markup-added:input": {
10611
+ "$ref": "#/definitions/MarkupAddedEvent"
10612
+ },
10613
+ "map.markup-cleared": {
10614
+ "description": "Raised when markup is cleared from the map.",
10615
+ "enum": [
10616
+ "map.markup-cleared"
10617
+ ]
10618
+ },
10619
+ "map.markup-cleared:input": {
10620
+ "$ref": "MapEvent"
10621
+ },
9314
10622
  "map.navigation-completed": {
9315
10623
  "description": "Raised when the a map navigation (eg. Pan or zoom) is complete.",
9316
10624
  "enum": [
@@ -9356,6 +10664,15 @@
9356
10664
  "map.rotating:input": {
9357
10665
  "$ref": "MapEvent"
9358
10666
  },
10667
+ "map.switched": {
10668
+ "description": "Raised when a map is replaced with a different map.",
10669
+ "enum": [
10670
+ "map.switched"
10671
+ ]
10672
+ },
10673
+ "map.switched:input": {
10674
+ "$ref": "MapSwitchedEvent"
10675
+ },
9359
10676
  "map.viewpoint-changed": {
9360
10677
  "description": "Raised when the a map extent is changed. This event is raised in extremely high frequency - for example, every few pixels the map is repositioned during a pan.",
9361
10678
  "enum": [
@@ -9464,6 +10781,15 @@
9464
10781
  "offline.custom-area-created:input": {
9465
10782
  "$ref": "CustomOfflineArea"
9466
10783
  },
10784
+ "offline.custom-area-deleted": {
10785
+ "description": "Raised when the definition of a custom map area is deleted.",
10786
+ "enum": [
10787
+ "offline.custom-area-deleted"
10788
+ ]
10789
+ },
10790
+ "offline.custom-area-deleted:input": {
10791
+ "$ref": "CustomOfflineArea"
10792
+ },
9467
10793
  "offline.user-went-online": {
9468
10794
  "description": "Raised when a map is switched to the online map.",
9469
10795
  "enum": [
@@ -9471,7 +10797,7 @@
9471
10797
  ]
9472
10798
  },
9473
10799
  "panel.host-panel-component-changed": {
9474
- "description": "Raised when the component that is currently being displayed by the host panel is changed.",
10800
+ "description": "Raised when the component that is currently being displayed by the host panel is changed. Argument is the id of the component.",
9475
10801
  "enum": [
9476
10802
  "panel.host-panel-component-changed"
9477
10803
  ]
@@ -9479,6 +10805,15 @@
9479
10805
  "panel.host-panel-component-changed:input": {
9480
10806
  "type": "string"
9481
10807
  },
10808
+ "panel.host-panel-component-changing": {
10809
+ "description": "Raised when the component that is currently being displayed by the host panel is about to change. Argument is the id of the component.",
10810
+ "enum": [
10811
+ "panel.host-panel-component-changing"
10812
+ ]
10813
+ },
10814
+ "panel.host-panel-component-changing:input": {
10815
+ "type": "string"
10816
+ },
9482
10817
  "photos.details-hidden": {
9483
10818
  "description": "Raised when photo details are hidden.",
9484
10819
  "enum": [
@@ -9530,6 +10865,24 @@
9530
10865
  "printing.print-started:input": {
9531
10866
  "$ref": "#/definitions/PrintStartedEventArgs"
9532
10867
  },
10868
+ "results.attachment-opened": {
10869
+ "description": "Raised when a feature attachment has been opened.",
10870
+ "enum": [
10871
+ "results.attachment-opened"
10872
+ ]
10873
+ },
10874
+ "results.attachment-opened:input": {
10875
+ "$ref": "#/definitions/AttachmentEventArgs"
10876
+ },
10877
+ "results.details-shown": {
10878
+ "description": "Raised when feature details are being shown.",
10879
+ "enum": [
10880
+ "results.details-shown"
10881
+ ]
10882
+ },
10883
+ "results.details-shown:input": {
10884
+ "$ref": "#/definitions/FeatureDetailsEvent"
10885
+ },
9533
10886
  "results.displayed": {
9534
10887
  "description": "Raised when results are displayed.",
9535
10888
  "enum": [
@@ -9539,12 +10892,27 @@
9539
10892
  "results.displayed:input": {
9540
10893
  "$ref": "#/definitions/Features"
9541
10894
  },
10895
+ "results.related-details-shown": {
10896
+ "description": "Raised when feature details of a related feature are being shown.",
10897
+ "enum": [
10898
+ "results.related-details-shown"
10899
+ ]
10900
+ },
10901
+ "results.related-details-shown:input": {
10902
+ "$ref": "#/definitions/FeatureDetailsEvent"
10903
+ },
9542
10904
  "search.activated": {
9543
10905
  "description": "Raised when a search component is activated.",
9544
10906
  "enum": [
9545
10907
  "search.activated"
9546
10908
  ]
9547
10909
  },
10910
+ "search.cleared": {
10911
+ "description": "Raised when a search has been cleared.",
10912
+ "enum": [
10913
+ "search.cleared"
10914
+ ]
10915
+ },
9548
10916
  "search.completed": {
9549
10917
  "description": "Raised when a search completes.",
9550
10918
  "enum": [
@@ -9552,7 +10920,7 @@
9552
10920
  ]
9553
10921
  },
9554
10922
  "search.completed:input": {
9555
- "$ref": "#/definitions/Features"
10923
+ "$ref": "#/definitions/SearchCompletedArgs"
9556
10924
  },
9557
10925
  "search.deactivated": {
9558
10926
  "description": "Raised when a search component is deactivated.",
@@ -9569,6 +10937,30 @@
9569
10937
  "search.started:input": {
9570
10938
  "$ref": "#/definitions/SearchArgs"
9571
10939
  },
10940
+ "settings.updated": {
10941
+ "description": "Raised when application settings have been updated.",
10942
+ "enum": [
10943
+ "settings.updated"
10944
+ ]
10945
+ },
10946
+ "shortcuts.shortcut-added": {
10947
+ "description": "Raised when a shortcut was added.",
10948
+ "enum": [
10949
+ "shortcuts.shortcut-added"
10950
+ ]
10951
+ },
10952
+ "shortcuts.shortcut-added:input": {
10953
+ "$ref": "#/definitions/AddShortcutArgs"
10954
+ },
10955
+ "shortcuts.shortcut-removed": {
10956
+ "description": "Raised when a shortcut was removed.",
10957
+ "enum": [
10958
+ "shortcuts.shortcut-removed"
10959
+ ]
10960
+ },
10961
+ "shortcuts.shortcut-removed:input": {
10962
+ "$ref": "#/definitions/ShortcutArgs"
10963
+ },
9572
10964
  "tasks.identified": {
9573
10965
  "description": "Raised when an identify task has been executed.",
9574
10966
  "enum": [
@@ -9576,7 +10968,16 @@
9576
10968
  ]
9577
10969
  },
9578
10970
  "tasks.identified:input": {
9579
- "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
10971
+ "$ref": "MapsFeatureResultArgs"
10972
+ },
10973
+ "tasks.reverse-geocoded": {
10974
+ "description": "Raised when a reverse geocode is performed.",
10975
+ "enum": [
10976
+ "tasks.reverse-geocoded"
10977
+ ]
10978
+ },
10979
+ "tasks.reverse-geocoded:input": {
10980
+ "$ref": "MapsFeatureResultArgs"
9580
10981
  },
9581
10982
  "ui.activated": {
9582
10983
  "description": "Raised when a component is activated. The argument is the component ID.",
@@ -9597,11 +10998,14 @@
9597
10998
  "type": "string"
9598
10999
  },
9599
11000
  "ui.theme-changed": {
9600
- "description": "Raised when the app's theme is changed.",
11001
+ "description": "Raised when the app's theme is changed. The argument is the theme id.",
9601
11002
  "enum": [
9602
11003
  "ui.theme-changed"
9603
11004
  ]
9604
11005
  },
11006
+ "ui.theme-changed:input": {
11007
+ "type": "string"
11008
+ },
9605
11009
  "viewer-spec.Event": {
9606
11010
  "anyOf": [
9607
11011
  {
@@ -9613,9 +11017,6 @@
9613
11017
  {
9614
11018
  "$ref": "#/definitions/app.backgrounded"
9615
11019
  },
9616
- {
9617
- "$ref": "#/definitions/app.custom-started"
9618
- },
9619
11020
  {
9620
11021
  "$ref": "#/definitions/app.custom.started"
9621
11022
  },
@@ -9623,10 +11024,13 @@
9623
11024
  "$ref": "#/definitions/app.favorited"
9624
11025
  },
9625
11026
  {
9626
- "$ref": "#/definitions/app.generic-app-started"
11027
+ "$ref": "#/definitions/app.generic.apps-listed"
11028
+ },
11029
+ {
11030
+ "$ref": "#/definitions/app.generic.specific-app-started"
9627
11031
  },
9628
11032
  {
9629
- "$ref": "#/definitions/app.generic.apps-listed"
11033
+ "$ref": "#/definitions/app.generic.specific-app-starting"
9630
11034
  },
9631
11035
  {
9632
11036
  "$ref": "#/definitions/app.generic.started"
@@ -9644,10 +11048,10 @@
9644
11048
  "$ref": "#/definitions/app.refreshing"
9645
11049
  },
9646
11050
  {
9647
- "$ref": "#/definitions/app.specific-app-started"
11051
+ "$ref": "#/definitions/app.unfavorited"
9648
11052
  },
9649
11053
  {
9650
- "$ref": "#/definitions/app.unfavorited"
11054
+ "$ref": "#/definitions/auth.portal-sign-in-completed"
9651
11055
  },
9652
11056
  {
9653
11057
  "$ref": "#/definitions/auth.sign-in-cancelled"
@@ -9670,6 +11074,24 @@
9670
11074
  {
9671
11075
  "$ref": "#/definitions/auth.token-refreshed"
9672
11076
  },
11077
+ {
11078
+ "$ref": "#/definitions/bookmarks.added"
11079
+ },
11080
+ {
11081
+ "$ref": "#/definitions/bookmarks.deleted"
11082
+ },
11083
+ {
11084
+ "$ref": "#/definitions/bookmarks.updated"
11085
+ },
11086
+ {
11087
+ "$ref": "#/definitions/bookmarks.viewed"
11088
+ },
11089
+ {
11090
+ "$ref": "#/definitions/device.keyboard-hidden"
11091
+ },
11092
+ {
11093
+ "$ref": "#/definitions/device.keyboard-shown"
11094
+ },
9673
11095
  {
9674
11096
  "$ref": "#/definitions/device.orientation-changed"
9675
11097
  },
@@ -9695,13 +11117,10 @@
9695
11117
  "$ref": "#/definitions/edit.feature-updated"
9696
11118
  },
9697
11119
  {
9698
- "$ref": "#/definitions/geolocation.-gnss-device-detection-started"
9699
- },
9700
- {
9701
- "$ref": "#/definitions/geolocation.-gnss-device-detection-stopped"
11120
+ "$ref": "#/definitions/geolocation.accuracy-changed"
9702
11121
  },
9703
11122
  {
9704
- "$ref": "#/definitions/geolocation.accuracy-changed"
11123
+ "$ref": "#/definitions/geolocation.antenna-height-changed"
9705
11124
  },
9706
11125
  {
9707
11126
  "$ref": "#/definitions/geolocation.auto-recenter-and-reorient-started"
@@ -9715,6 +11134,18 @@
9715
11134
  {
9716
11135
  "$ref": "#/definitions/geolocation.auto-recenter-stopped"
9717
11136
  },
11137
+ {
11138
+ "$ref": "#/definitions/geolocation.gnss-device-detection-started"
11139
+ },
11140
+ {
11141
+ "$ref": "#/definitions/geolocation.gnss-device-detection-stopped"
11142
+ },
11143
+ {
11144
+ "$ref": "#/definitions/geolocation.gnss-lock-status-changed"
11145
+ },
11146
+ {
11147
+ "$ref": "#/definitions/geolocation.location-display-mode-changed"
11148
+ },
9718
11149
  {
9719
11150
  "$ref": "#/definitions/geolocation.metadata-changed"
9720
11151
  },
@@ -9733,6 +11164,9 @@
9733
11164
  {
9734
11165
  "$ref": "#/definitions/geolocation.status-changed"
9735
11166
  },
11167
+ {
11168
+ "$ref": "#/definitions/geolocation.transformation-changed"
11169
+ },
9736
11170
  {
9737
11171
  "$ref": "#/definitions/input.keyboard-shortcut-pressed"
9738
11172
  },
@@ -9754,12 +11188,21 @@
9754
11188
  {
9755
11189
  "$ref": "#/definitions/layout.unloaded"
9756
11190
  },
11191
+ {
11192
+ "$ref": "#/definitions/map.image-exported"
11193
+ },
9757
11194
  {
9758
11195
  "$ref": "#/definitions/map.initialized"
9759
11196
  },
9760
11197
  {
9761
11198
  "$ref": "#/definitions/map.initializing"
9762
11199
  },
11200
+ {
11201
+ "$ref": "#/definitions/map.markup-added"
11202
+ },
11203
+ {
11204
+ "$ref": "#/definitions/map.markup-cleared"
11205
+ },
9763
11206
  {
9764
11207
  "$ref": "#/definitions/map.navigation-completed"
9765
11208
  },
@@ -9775,6 +11218,9 @@
9775
11218
  {
9776
11219
  "$ref": "#/definitions/map.rotating"
9777
11220
  },
11221
+ {
11222
+ "$ref": "#/definitions/map.switched"
11223
+ },
9778
11224
  {
9779
11225
  "$ref": "#/definitions/map.viewpoint-changed"
9780
11226
  },
@@ -9811,12 +11257,18 @@
9811
11257
  {
9812
11258
  "$ref": "#/definitions/offline.custom-area-created"
9813
11259
  },
11260
+ {
11261
+ "$ref": "#/definitions/offline.custom-area-deleted"
11262
+ },
9814
11263
  {
9815
11264
  "$ref": "#/definitions/offline.user-went-online"
9816
11265
  },
9817
11266
  {
9818
11267
  "$ref": "#/definitions/panel.host-panel-component-changed"
9819
11268
  },
11269
+ {
11270
+ "$ref": "#/definitions/panel.host-panel-component-changing"
11271
+ },
9820
11272
  {
9821
11273
  "$ref": "#/definitions/photos.details-hidden"
9822
11274
  },
@@ -9835,12 +11287,24 @@
9835
11287
  {
9836
11288
  "$ref": "#/definitions/printing.print-started"
9837
11289
  },
11290
+ {
11291
+ "$ref": "#/definitions/results.attachment-opened"
11292
+ },
11293
+ {
11294
+ "$ref": "#/definitions/results.details-shown"
11295
+ },
9838
11296
  {
9839
11297
  "$ref": "#/definitions/results.displayed"
9840
11298
  },
11299
+ {
11300
+ "$ref": "#/definitions/results.related-details-shown"
11301
+ },
9841
11302
  {
9842
11303
  "$ref": "#/definitions/search.activated"
9843
11304
  },
11305
+ {
11306
+ "$ref": "#/definitions/search.cleared"
11307
+ },
9844
11308
  {
9845
11309
  "$ref": "#/definitions/search.completed"
9846
11310
  },
@@ -9850,9 +11314,21 @@
9850
11314
  {
9851
11315
  "$ref": "#/definitions/search.started"
9852
11316
  },
11317
+ {
11318
+ "$ref": "#/definitions/settings.updated"
11319
+ },
11320
+ {
11321
+ "$ref": "#/definitions/shortcuts.shortcut-added"
11322
+ },
11323
+ {
11324
+ "$ref": "#/definitions/shortcuts.shortcut-removed"
11325
+ },
9853
11326
  {
9854
11327
  "$ref": "#/definitions/tasks.identified"
9855
11328
  },
11329
+ {
11330
+ "$ref": "#/definitions/tasks.reverse-geocoded"
11331
+ },
9856
11332
  {
9857
11333
  "$ref": "#/definitions/ui.activated"
9858
11334
  },
@@ -9864,6 +11340,12 @@
9864
11340
  },
9865
11341
  {
9866
11342
  "$ref": "#/definitions/workflow.starting"
11343
+ },
11344
+ {
11345
+ "$ref": "#/definitions/workflow.workflow-error"
11346
+ },
11347
+ {
11348
+ "$ref": "#/definitions/workflow.workflow-finished"
9867
11349
  }
9868
11350
  ]
9869
11351
  },
@@ -9872,6 +11354,27 @@
9872
11354
  "enum": [
9873
11355
  "workflow.starting"
9874
11356
  ]
11357
+ },
11358
+ "workflow.starting:input": {
11359
+ "$ref": "#/definitions/WorkflowStartingEventArgs"
11360
+ },
11361
+ "workflow.workflow-error": {
11362
+ "description": "Raised when an error occurs while running a workflow.",
11363
+ "enum": [
11364
+ "workflow.workflow-error"
11365
+ ]
11366
+ },
11367
+ "workflow.workflow-error:input": {
11368
+ "$ref": "#/definitions/WorkflowErrorEventArgs"
11369
+ },
11370
+ "workflow.workflow-finished": {
11371
+ "description": "Raised when a workflow finishes running.",
11372
+ "enum": [
11373
+ "workflow.workflow-finished"
11374
+ ]
11375
+ },
11376
+ "workflow.workflow-finished:input": {
11377
+ "$ref": "#/definitions/WorkflowFinishedEventArgs"
9875
11378
  }
9876
11379
  }
9877
11380
  }