@vertigis/viewer-spec 56.32.1 → 56.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3016,7 +3016,25 @@
3016
3016
  },
3017
3017
  {
3018
3018
  "additionalProperties": false,
3019
- "properties": {}
3019
+ "properties": {
3020
+ "activate": {
3021
+ "description": "Whether to activate the component showing the results of the operation. False by default.",
3022
+ "type": "boolean"
3023
+ },
3024
+ "features": {
3025
+ "$ref": "#/definitions/FeaturesLike",
3026
+ "description": "Features to use for the command/operation."
3027
+ },
3028
+ "results": {
3029
+ "$ref": "#/definitions/ModelRef",
3030
+ "description": "The result component to update, referenced by results model or its ID. Web only."
3031
+ },
3032
+ "resultsSetId": {
3033
+ "description": "If specified the results will be updated in the named results set only. Results sets with the prefix 'vgs' are reserved for system use and should not be used unless you are intentionally targeting a well known results set such as the 'vgs-starred' results. Web only.",
3034
+ "type": "string"
3035
+ }
3036
+ },
3037
+ "type": "object"
3020
3038
  }
3021
3039
  ],
3022
3040
  "description": "Arguments for various commands that manipulate the current set of shown results."
@@ -3946,7 +3946,25 @@
3946
3946
  },
3947
3947
  {
3948
3948
  "additionalProperties": false,
3949
- "properties": {}
3949
+ "properties": {
3950
+ "activate": {
3951
+ "description": "Whether to activate the component showing the results of the operation. False by default.",
3952
+ "type": "boolean"
3953
+ },
3954
+ "features": {
3955
+ "$ref": "#/definitions/FeaturesLike",
3956
+ "description": "Features to use for the command/operation."
3957
+ },
3958
+ "results": {
3959
+ "$ref": "#/definitions/ModelRef",
3960
+ "description": "The result component to update, referenced by results model or its ID. Web only."
3961
+ },
3962
+ "resultsSetId": {
3963
+ "description": "If specified the results will be updated in the named results set only. Results sets with the prefix 'vgs' are reserved for system use and should not be used unless you are intentionally targeting a well known results set such as the 'vgs-starred' results. Web only.",
3964
+ "type": "string"
3965
+ }
3966
+ },
3967
+ "type": "object"
3950
3968
  }
3951
3969
  ],
3952
3970
  "description": "Arguments for various commands that manipulate the current set of shown results."
@@ -603,6 +603,9 @@
603
603
  },
604
604
  "type": "object"
605
605
  },
606
+ "@vertigis.arcgis-extensions.support.Action.Action": {
607
+ "$ref": "#/definitions/viewer-spec.Action"
608
+ },
606
609
  "@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties": {
607
610
  "additionalProperties": false,
608
611
  "description": "Properties that can be passed into the constructor for {@link FormatSettings}.",
@@ -1762,7 +1765,74 @@
1762
1765
  "CreateLocationMarkerArgs": {
1763
1766
  "additionalProperties": false,
1764
1767
  "description": "Arguments for the \"location-marker.create\" command.",
1765
- "properties": {}
1768
+ "properties": {
1769
+ "color": {
1770
+ "anyOf": [
1771
+ {
1772
+ "$ref": "#/definitions/esri.Color"
1773
+ },
1774
+ {
1775
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
1776
+ "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. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}."
1777
+ }
1778
+ ],
1779
+ "description": "Indicates the color for the Marker. This property is only used if the symbol is a well-known ID."
1780
+ },
1781
+ "fov": {
1782
+ "description": "Indicates the horizontal field of view in degrees for the marker. Ranges from 0 to 360. This property is currently only supported by the \"dot\" symbol.",
1783
+ "type": "number"
1784
+ },
1785
+ "geometry": {
1786
+ "$ref": "#/definitions/esri.Geometry",
1787
+ "description": "The location of the Marker."
1788
+ },
1789
+ "heading": {
1790
+ "description": "The clockwise rotation of the symbol in the horizontal plane in degrees.",
1791
+ "type": "number"
1792
+ },
1793
+ "id": {
1794
+ "description": "The ID of the Marker.",
1795
+ "type": "string"
1796
+ },
1797
+ "maps": {
1798
+ "$ref": "MapsRef",
1799
+ "description": "The map(s) for the Marker. If maps are undefined, all maps will be targeted."
1800
+ },
1801
+ "onUpdate": {
1802
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.support.Action.Action",
1803
+ "description": "Optional Action to perform when a Marker is updated."
1804
+ },
1805
+ "scale": {
1806
+ "description": "The scale of the Marker, defaults to 1.",
1807
+ "type": "number"
1808
+ },
1809
+ "symbol": {
1810
+ "anyOf": [
1811
+ {
1812
+ "items": {
1813
+ "$ref": "#/definitions/MarkerSymbolConfig"
1814
+ },
1815
+ "type": "array"
1816
+ },
1817
+ {
1818
+ "type": "string"
1819
+ }
1820
+ ],
1821
+ "description": "The symbol used to display the marker. The symbol can be an array of Symbols or one of the following well-known IDs: \"dot\", \"callout\", or \"exclamation\". Defaults to \"dot\"."
1822
+ },
1823
+ "tilt": {
1824
+ "description": "In 3D, the tilt angle of the location marker symbol. Ranges from 0 (straight down) to 180 (straight up) degrees. Defaults to 90 (straight ahead).",
1825
+ "type": "number"
1826
+ },
1827
+ "userDraggable": {
1828
+ "description": "Sets whether the Marker should be user draggable.",
1829
+ "type": "boolean"
1830
+ }
1831
+ },
1832
+ "required": [
1833
+ "geometry"
1834
+ ],
1835
+ "type": "object"
1766
1836
  },
1767
1837
  "CreateMapNoteArgs": {
1768
1838
  "additionalProperties": false,
@@ -4772,6 +4842,29 @@
4772
4842
  ],
4773
4843
  "description": "References to one or more maps."
4774
4844
  },
4845
+ "MarkerSymbolConfig": {
4846
+ "anyOf": [
4847
+ {
4848
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
4849
+ },
4850
+ {
4851
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
4852
+ },
4853
+ {
4854
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
4855
+ },
4856
+ {
4857
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
4858
+ },
4859
+ {
4860
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
4861
+ },
4862
+ {
4863
+ "$ref": "#/definitions/esri.TextSymbol"
4864
+ }
4865
+ ],
4866
+ "description": "Symbols that can be used for location markers."
4867
+ },
4775
4868
  "MarkupArgs": {
4776
4869
  "additionalProperties": false,
4777
4870
  "description": "Base arguments for markup commands and operations.",
@@ -6403,6 +6496,10 @@
6403
6496
  "$ref": "MapsLike",
6404
6497
  "description": "Map(s) to use for the command/operation."
6405
6498
  },
6499
+ "symbol": {
6500
+ "$ref": "#/definitions/SymbolLike",
6501
+ "description": "The symbol to use for the command/operation."
6502
+ },
6406
6503
  "symbols": {
6407
6504
  "anyOf": [
6408
6505
  {
@@ -6641,7 +6738,25 @@
6641
6738
  },
6642
6739
  {
6643
6740
  "additionalProperties": false,
6644
- "properties": {}
6741
+ "properties": {
6742
+ "activate": {
6743
+ "description": "Whether to activate the component showing the results of the operation. False by default.",
6744
+ "type": "boolean"
6745
+ },
6746
+ "features": {
6747
+ "$ref": "#/definitions/FeaturesLike",
6748
+ "description": "Features to use for the command/operation."
6749
+ },
6750
+ "results": {
6751
+ "$ref": "#/definitions/ModelRef",
6752
+ "description": "The result component to update, referenced by results model or its ID. Web only."
6753
+ },
6754
+ "resultsSetId": {
6755
+ "description": "If specified the results will be updated in the named results set only. Results sets with the prefix 'vgs' are reserved for system use and should not be used unless you are intentionally targeting a well known results set such as the 'vgs-starred' results. Web only.",
6756
+ "type": "string"
6757
+ }
6758
+ },
6759
+ "type": "object"
6645
6760
  }
6646
6761
  ],
6647
6762
  "description": "Arguments for various commands that manipulate the current set of shown results."
@@ -7654,7 +7769,74 @@
7654
7769
  "UpdateLocationMarkerArgs": {
7655
7770
  "additionalProperties": false,
7656
7771
  "description": "Arguments for the \"location-marker.update\" command.",
7657
- "properties": {}
7772
+ "properties": {
7773
+ "color": {
7774
+ "anyOf": [
7775
+ {
7776
+ "$ref": "#/definitions/esri.Color"
7777
+ },
7778
+ {
7779
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
7780
+ "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. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}."
7781
+ }
7782
+ ],
7783
+ "description": "Indicates the color for the Marker. This property is only used if the symbol is a well-known ID."
7784
+ },
7785
+ "fov": {
7786
+ "description": "Indicates the horizontal field of view in degrees for the marker. Ranges from 0 to 360. This property is currently only supported by the \"dot\" symbol.",
7787
+ "type": "number"
7788
+ },
7789
+ "geometry": {
7790
+ "$ref": "#/definitions/esri.Geometry",
7791
+ "description": "The location of the Marker."
7792
+ },
7793
+ "heading": {
7794
+ "description": "The clockwise rotation of the symbol in the horizontal plane in degrees.",
7795
+ "type": "number"
7796
+ },
7797
+ "id": {
7798
+ "description": "The ID of the Marker.",
7799
+ "type": "string"
7800
+ },
7801
+ "maps": {
7802
+ "$ref": "MapsRef",
7803
+ "description": "The map(s) for the Marker. If maps are undefined, all maps will be targeted."
7804
+ },
7805
+ "onUpdate": {
7806
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.support.Action.Action",
7807
+ "description": "Optional Action to perform when a Marker is updated."
7808
+ },
7809
+ "scale": {
7810
+ "description": "The scale of the Marker, defaults to 1.",
7811
+ "type": "number"
7812
+ },
7813
+ "symbol": {
7814
+ "anyOf": [
7815
+ {
7816
+ "items": {
7817
+ "$ref": "#/definitions/MarkerSymbolConfig"
7818
+ },
7819
+ "type": "array"
7820
+ },
7821
+ {
7822
+ "type": "string"
7823
+ }
7824
+ ],
7825
+ "description": "The symbol used to display the marker. The symbol can be an array of Symbols or one of the following well-known IDs: \"dot\", \"callout\", or \"exclamation\". Defaults to \"dot\"."
7826
+ },
7827
+ "tilt": {
7828
+ "description": "In 3D, the tilt angle of the location marker symbol. Ranges from 0 (straight down) to 180 (straight up) degrees. Defaults to 90 (straight ahead).",
7829
+ "type": "number"
7830
+ },
7831
+ "userDraggable": {
7832
+ "description": "Sets whether the Marker should be user draggable.",
7833
+ "type": "boolean"
7834
+ }
7835
+ },
7836
+ "required": [
7837
+ "id"
7838
+ ],
7839
+ "type": "object"
7658
7840
  },
7659
7841
  "UpdateResultsFeaturesArgs": {
7660
7842
  "additionalProperties": false,
@@ -8662,6 +8844,10 @@
8662
8844
  "graphics": {
8663
8845
  "$ref": "#/definitions/GraphicsLike",
8664
8846
  "description": "Graphics to use for the command/operation."
8847
+ },
8848
+ "symbol": {
8849
+ "$ref": "#/definitions/SymbolLike",
8850
+ "description": "The symbol to use for the command/operation."
8665
8851
  }
8666
8852
  },
8667
8853
  "type": "object"
@@ -18583,11 +18769,37 @@
18583
18769
  "anyOf": [
18584
18770
  {
18585
18771
  "additionalProperties": false,
18586
- "properties": {}
18772
+ "properties": {
18773
+ "features": {
18774
+ "$ref": "#/definitions/FeaturesLike",
18775
+ "description": "Features to use for the command/operation."
18776
+ },
18777
+ "maps": {
18778
+ "$ref": "MapsLike",
18779
+ "description": "Map(s) to use for the command/operation."
18780
+ }
18781
+ },
18782
+ "required": [
18783
+ "maps"
18784
+ ],
18785
+ "type": "object"
18587
18786
  },
18588
18787
  {
18589
18788
  "additionalProperties": false,
18590
- "properties": {}
18789
+ "properties": {
18790
+ "geometry": {
18791
+ "$ref": "#/definitions/GeometryLike",
18792
+ "description": "The geometry to use for the command/operation."
18793
+ },
18794
+ "maps": {
18795
+ "$ref": "MapsLike",
18796
+ "description": "Map(s) to use for the command/operation."
18797
+ }
18798
+ },
18799
+ "required": [
18800
+ "maps"
18801
+ ],
18802
+ "type": "object"
18591
18803
  }
18592
18804
  ]
18593
18805
  },
@@ -20889,6 +21101,20 @@
20889
21101
  "results.contains"
20890
21102
  ]
20891
21103
  },
21104
+ "results.contains:input": {
21105
+ "additionalProperties": false,
21106
+ "properties": {
21107
+ "features": {
21108
+ "$ref": "#/definitions/FeaturesLike",
21109
+ "description": "Features to use for the command/operation."
21110
+ },
21111
+ "resultsSetId": {
21112
+ "description": "If specified the results will be updated in the named results set only. Results sets with the prefix 'vgs' are reserved for system use and should not be used unless you are intentionally targeting a well known results set such as the 'vgs-starred' results. Web only.",
21113
+ "type": "string"
21114
+ }
21115
+ },
21116
+ "type": "object"
21117
+ },
20892
21118
  "results.contains:output": {
20893
21119
  "items": {
20894
21120
  "type": "boolean"
@@ -26154,6 +26380,22 @@
26154
26380
  ],
26155
26381
  "type": "object"
26156
26382
  },
26383
+ {
26384
+ "additionalProperties": false,
26385
+ "properties": {
26386
+ "arguments": {
26387
+ "$ref": "#/definitions/results.contains:input"
26388
+ },
26389
+ "name": {
26390
+ "$ref": "#/definitions/results.contains"
26391
+ }
26392
+ },
26393
+ "required": [
26394
+ "name",
26395
+ "arguments"
26396
+ ],
26397
+ "type": "object"
26398
+ },
26157
26399
  {
26158
26400
  "additionalProperties": false,
26159
26401
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "56.32.1",
3
+ "version": "56.33.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "56.32.1";
4
+ export declare const version = "56.33.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "56.32.1";
4
+ export const version = "56.33.0";