@vertigis/viewer-spec 60.9.1 → 61.1.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 (39) hide show
  1. package/app-config/schema/common-app-config.schema.json +1 -1
  2. package/app-config/schema/mobile-app-config.schema.json +1 -1
  3. package/app-config/schema/web-app-config.schema.json +1 -1
  4. package/messaging/Event.d.ts +2 -1
  5. package/messaging/registry/geometry.d.ts +2 -3
  6. package/messaging/registry/map.d.ts +1 -1
  7. package/messaging/registry/printing.d.ts +36 -4
  8. package/messaging/registry/printing.js +1 -1
  9. package/messaging/schema/common-action.schema.json +1834 -575
  10. package/messaging/schema/common-event.schema.json +1639 -305
  11. package/messaging/schema/mobile-action.schema.json +1912 -639
  12. package/messaging/schema/mobile-event.schema.json +1680 -381
  13. package/messaging/schema/web-action.schema.json +2292 -1081
  14. package/messaging/schema/web-charts-command-definitions.md +210 -3
  15. package/messaging/schema/web-drawing-command-definitions.md +18 -57
  16. package/messaging/schema/web-drawing-operation-definitions.md +114 -63
  17. package/messaging/schema/web-edit-command-definitions.md +212 -5
  18. package/messaging/schema/web-event.schema.json +1832 -402
  19. package/messaging/schema/web-geocode-operation-definitions.md +1 -1
  20. package/messaging/schema/web-geolocation-operation-definitions.md +1 -1
  21. package/messaging/schema/web-geometry-operation-definitions.md +77 -16
  22. package/messaging/schema/web-kpi-command-definitions.md +210 -3
  23. package/messaging/schema/web-layer-comparison-command-definitions.md +8 -8
  24. package/messaging/schema/web-layers-command-definitions.md +104 -104
  25. package/messaging/schema/web-layers-operation-definitions.md +37 -37
  26. package/messaging/schema/web-location-marker-command-definitions.md +68 -6
  27. package/messaging/schema/web-map-command-definitions.md +234 -27
  28. package/messaging/schema/web-map-operation-definitions.md +1 -1
  29. package/messaging/schema/web-measurement-command-definitions.md +18 -57
  30. package/messaging/schema/web-measurement-operation-definitions.md +17 -38
  31. package/messaging/schema/web-portal-operation-definitions.md +1 -1
  32. package/messaging/schema/web-printing-command-definitions.md +16 -0
  33. package/messaging/schema/web-results-command-definitions.md +280 -4
  34. package/messaging/schema/web-results-operation-definitions.md +289 -13
  35. package/messaging/schema/web-sketching-command-definitions.md +2 -2
  36. package/messaging/schema/web-sketching-operation-definitions.md +24 -24
  37. package/package.json +2 -2
  38. package/version.d.ts +1 -1
  39. package/version.js +1 -1
@@ -1,7 +1,76 @@
1
1
  # command: charts.add-features
2
2
  Description: Adds one or more features to charts. If `chart` is specified, then only the given chart will be updated, otherwise all charts will. Web only.
3
3
 
4
- Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
4
+ Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | T_13 | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties | T_13 )[] | Results | UpdateChartFeaturesArgs )`
5
+
6
+ @vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
7
+ ```json
8
+ {
9
+ "attributes": {
10
+ "anyOf": [
11
+ {},
12
+ {
13
+ "$ref": "Map"
14
+ }
15
+ ],
16
+ "description": "The feature's attributes, keyed by field name."
17
+ },
18
+ "failureMode": {
19
+ "description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
20
+ },
21
+ "geometry": {
22
+ "anyOf": [
23
+ {
24
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
25
+ },
26
+ {
27
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
28
+ },
29
+ {
30
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
31
+ },
32
+ {
33
+ "$ref": "T_6"
34
+ },
35
+ {
36
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
37
+ },
38
+ {
39
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
40
+ },
41
+ {
42
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
43
+ },
44
+ {
45
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
46
+ },
47
+ {
48
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
49
+ },
50
+ {
51
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
52
+ },
53
+ {
54
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
55
+ }
56
+ ],
57
+ "description": "The feature's geometry."
58
+ },
59
+ "id": {
60
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
61
+ "type": "string"
62
+ },
63
+ "schema": {
64
+ "description": "Metadata about the feature, such as fields, domains, geometry type, etc."
65
+ },
66
+ "settings": {
67
+ "description": "Settings for this feature."
68
+ },
69
+ "source": {
70
+ "description": "The source of the feature."
71
+ }
72
+ }
73
+ ```
5
74
 
6
75
  Results properties:
7
76
  ```json
@@ -54,7 +123,76 @@ Model properties:
54
123
  # command: charts.display
55
124
  Description: Updates charts with provided features. Only activated charts that receive features from all required feature sources will get displayed. Web only.
56
125
 
57
- Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
126
+ Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | T_13 | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties | T_13 )[] | Results | UpdateChartFeaturesArgs )`
127
+
128
+ @vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
129
+ ```json
130
+ {
131
+ "attributes": {
132
+ "anyOf": [
133
+ {},
134
+ {
135
+ "$ref": "Map"
136
+ }
137
+ ],
138
+ "description": "The feature's attributes, keyed by field name."
139
+ },
140
+ "failureMode": {
141
+ "description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
142
+ },
143
+ "geometry": {
144
+ "anyOf": [
145
+ {
146
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
147
+ },
148
+ {
149
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
150
+ },
151
+ {
152
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
153
+ },
154
+ {
155
+ "$ref": "T_6"
156
+ },
157
+ {
158
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
159
+ },
160
+ {
161
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
162
+ },
163
+ {
164
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
165
+ },
166
+ {
167
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
168
+ },
169
+ {
170
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
171
+ },
172
+ {
173
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
174
+ },
175
+ {
176
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
177
+ }
178
+ ],
179
+ "description": "The feature's geometry."
180
+ },
181
+ "id": {
182
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
183
+ "type": "string"
184
+ },
185
+ "schema": {
186
+ "description": "Metadata about the feature, such as fields, domains, geometry type, etc."
187
+ },
188
+ "settings": {
189
+ "description": "Settings for this feature."
190
+ },
191
+ "source": {
192
+ "description": "The source of the feature."
193
+ }
194
+ }
195
+ ```
58
196
 
59
197
  Results properties:
60
198
  ```json
@@ -85,7 +223,76 @@ UpdateChartFeaturesArgs properties:
85
223
  # command: charts.remove-features
86
224
  Description: Remove one or more features from active charts. If `chart` is specified, then only the given chart will be updated, otherwise all charts will. Web only.
87
225
 
88
- Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
226
+ Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | T_13 | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties | T_13 )[] | Results | UpdateChartFeaturesArgs )`
227
+
228
+ @vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
229
+ ```json
230
+ {
231
+ "attributes": {
232
+ "anyOf": [
233
+ {},
234
+ {
235
+ "$ref": "Map"
236
+ }
237
+ ],
238
+ "description": "The feature's attributes, keyed by field name."
239
+ },
240
+ "failureMode": {
241
+ "description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
242
+ },
243
+ "geometry": {
244
+ "anyOf": [
245
+ {
246
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
247
+ },
248
+ {
249
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
250
+ },
251
+ {
252
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
253
+ },
254
+ {
255
+ "$ref": "T_6"
256
+ },
257
+ {
258
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
259
+ },
260
+ {
261
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
262
+ },
263
+ {
264
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
265
+ },
266
+ {
267
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
268
+ },
269
+ {
270
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
271
+ },
272
+ {
273
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
274
+ },
275
+ {
276
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
277
+ }
278
+ ],
279
+ "description": "The feature's geometry."
280
+ },
281
+ "id": {
282
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
283
+ "type": "string"
284
+ },
285
+ "schema": {
286
+ "description": "Metadata about the feature, such as fields, domains, geometry type, etc."
287
+ },
288
+ "settings": {
289
+ "description": "Settings for this feature."
290
+ },
291
+ "source": {
292
+ "description": "The source of the feature."
293
+ }
294
+ }
295
+ ```
89
296
 
90
297
  Results properties:
91
298
  ```json
@@ -18,23 +18,12 @@ Description: Sets the value of the default point, line, or polygon symbol. The s
18
18
  }
19
19
  ```
20
20
 
21
- Inputs: `( esri.PictureFillSymbol | esri.PictureMarkerSymbol | esri.SimpleFillSymbol | esri.SimpleLineSymbol | esri.SimpleMarkerSymbol | esri.TextSymbol | esri.CIMSymbol | esri.LineSymbol3D | esri.PointSymbol3D | esri.PolygonSymbol3D | esri.rest-api.SymbolJson.CIMSymbolReferenceJson | esri.rest-api.SymbolJson.PictureFillSymbolJson | esri.rest-api.SymbolJson.PictureMarkerSymbolJson | esri.rest-api.SymbolJson.SimpleFillSymbolJson | esri.rest-api.SymbolJson.SimpleLineSymbolJson | esri.rest-api.SymbolJson.SimpleMarkerSymbolJson | esri.rest-api.SymbolJson.TextSymbolJson | esri.rest-api.SymbolJson.LineSymbol3DJson | esri.rest-api.SymbolJson.PointSymbol3DJson | esri.rest-api.SymbolJson.PolygonSymbol3DJson | HasSymbols )`
21
+ Inputs: `( @arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol | @arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol | @arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol | @arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol | @arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol | @arcgis.core.symbols.TextSymbol.TextSymbol | @arcgis.core.symbols.CIMSymbol.CIMSymbol | @arcgis.core.symbols.LineSymbol3D.LineSymbol3D | @arcgis.core.symbols.PointSymbol3D.PointSymbol3D | @arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D | esri.rest-api.SymbolJson.CIMSymbolReferenceJson | esri.rest-api.SymbolJson.PictureFillSymbolJson | esri.rest-api.SymbolJson.PictureMarkerSymbolJson | esri.rest-api.SymbolJson.SimpleFillSymbolJson | esri.rest-api.SymbolJson.SimpleLineSymbolJson | esri.rest-api.SymbolJson.SimpleMarkerSymbolJson | esri.rest-api.SymbolJson.TextSymbolJson | esri.rest-api.SymbolJson.LineSymbol3DJson | esri.rest-api.SymbolJson.PointSymbol3DJson | esri.rest-api.SymbolJson.PolygonSymbol3DJson | HasSymbols )`
22
22
 
23
23
  esri.rest-api.SymbolJson.CIMSymbolReferenceJson properties:
24
24
  ```json
25
25
  {
26
26
  "symbol": {
27
- "anyOf": [
28
- {
29
- "$ref": "esri.CIMLineSymbol"
30
- },
31
- {
32
- "$ref": "esri.CIMPointSymbol"
33
- },
34
- {
35
- "$ref": "esri.CIMPolygonSymbol"
36
- }
37
- ],
38
27
  "description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
39
28
  },
40
29
  "type": {
@@ -149,11 +138,7 @@ esri.rest-api.SymbolJson.SimpleFillSymbolJson properties:
149
138
  ```json
150
139
  {
151
140
  "color": {
152
- "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.",
153
- "items": {
154
- "type": "number"
155
- },
156
- "type": "array"
141
+ "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."
157
142
  },
158
143
  "outline": {
159
144
  "description": "Sets the outline of the fill symbol."
@@ -185,11 +170,7 @@ esri.rest-api.SymbolJson.SimpleLineSymbolJson properties:
185
170
  ```json
186
171
  {
187
172
  "color": {
188
- "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.",
189
- "items": {
190
- "type": "number"
191
- },
192
- "type": "array"
173
+ "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."
193
174
  },
194
175
  "style": {
195
176
  "description": "The line style.",
@@ -224,11 +205,7 @@ esri.rest-api.SymbolJson.SimpleMarkerSymbolJson properties:
224
205
  "type": "number"
225
206
  },
226
207
  "color": {
227
- "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.",
228
- "items": {
229
- "type": "number"
230
- },
231
- "type": "array"
208
+ "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."
232
209
  },
233
210
  "outline": {
234
211
  "description": "Sets the outline of the marker symbol."
@@ -275,39 +252,23 @@ esri.rest-api.SymbolJson.TextSymbolJson properties:
275
252
  "type": "number"
276
253
  },
277
254
  "backgroundColor": {
278
- "description": "Background color of the text.",
279
- "items": {
280
- "type": "number"
281
- },
282
- "type": "array"
255
+ "description": "Background color of the text."
283
256
  },
284
257
  "borderLineColor": {
285
- "description": "Value indicating the the color of the border line.",
286
- "items": {
287
- "type": "number"
288
- },
289
- "type": "array"
258
+ "description": "Value indicating the the color of the border line."
290
259
  },
291
260
  "borderLineSize": {
292
261
  "description": "Numeric value indicating the the size of the border line in points.",
293
262
  "type": "number"
294
263
  },
295
264
  "color": {
296
- "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.",
297
- "items": {
298
- "type": "number"
299
- },
300
- "type": "array"
265
+ "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."
301
266
  },
302
267
  "font": {
303
268
  "description": "Font used for text symbols."
304
269
  },
305
270
  "haloColor": {
306
- "description": "Color of the halo around the text.",
307
- "items": {
308
- "type": "number"
309
- },
310
- "type": "array"
271
+ "description": "Color of the halo around the text."
311
272
  },
312
273
  "haloSize": {
313
274
  "description": "Numeric value indicating the point size of a halo around the text symbol.",
@@ -465,34 +426,34 @@ HasSymbols properties:
465
426
  "symbols": {
466
427
  "anyOf": [
467
428
  {
468
- "$ref": "#/definitions/esri.PictureFillSymbol"
429
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
469
430
  },
470
431
  {
471
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
432
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
472
433
  },
473
434
  {
474
- "$ref": "#/definitions/esri.SimpleFillSymbol"
435
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
475
436
  },
476
437
  {
477
- "$ref": "#/definitions/esri.SimpleLineSymbol"
438
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
478
439
  },
479
440
  {
480
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
441
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
481
442
  },
482
443
  {
483
- "$ref": "#/definitions/esri.TextSymbol"
444
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
484
445
  },
485
446
  {
486
- "$ref": "#/definitions/esri.CIMSymbol"
447
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
487
448
  },
488
449
  {
489
- "$ref": "#/definitions/esri.LineSymbol3D"
450
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
490
451
  },
491
452
  {
492
- "$ref": "#/definitions/esri.PointSymbol3D"
453
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
493
454
  },
494
455
  {
495
- "$ref": "#/definitions/esri.PolygonSymbol3D"
456
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
496
457
  },
497
458
  {
498
459
  "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"