@vertigis/viewer-spec 61.7.0 → 61.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/messaging/registry/results.d.ts +17 -0
- package/messaging/registry/results.js +1 -1
- package/messaging/schema/common-action.schema.json +2 -136
- package/messaging/schema/common-event.schema.json +0 -7
- package/messaging/schema/mobile-action.schema.json +6 -163
- package/messaging/schema/mobile-event.schema.json +0 -31
- package/messaging/schema/web-action.schema.json +74 -283
- package/messaging/schema/web-charts-command-definitions.md +3 -210
- package/messaging/schema/web-drawing-operation-definitions.md +1 -82
- package/messaging/schema/web-edit-command-definitions.md +5 -214
- package/messaging/schema/web-event.schema.json +2 -43
- package/messaging/schema/web-geocode-operation-definitions.md +1 -1
- package/messaging/schema/web-geometry-operation-definitions.md +1 -73
- package/messaging/schema/web-kpi-command-definitions.md +3 -210
- package/messaging/schema/web-map-command-definitions.md +5 -218
- package/messaging/schema/web-results-command-definitions.md +4 -280
- package/messaging/schema/web-results-operation-definitions.md +29 -284
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -17,76 +17,7 @@ Outputs: `boolean[]`
|
|
|
17
17
|
# operation: results.convert-to-csv
|
|
18
18
|
Description: Converts the provided Feature(s) to a CSV file grouped by feature source. If there are multiple sources the CSV(s) will be bundled in a zip file. Web only.
|
|
19
19
|
|
|
20
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
21
|
-
|
|
22
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
23
|
-
```json
|
|
24
|
-
{
|
|
25
|
-
"attributes": {
|
|
26
|
-
"anyOf": [
|
|
27
|
-
{},
|
|
28
|
-
{
|
|
29
|
-
"$ref": "Map"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"description": "The feature's attributes, keyed by field name."
|
|
33
|
-
},
|
|
34
|
-
"failureMode": {
|
|
35
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
36
|
-
},
|
|
37
|
-
"geometry": {
|
|
38
|
-
"anyOf": [
|
|
39
|
-
{
|
|
40
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"$ref": "T_6"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
71
|
-
}
|
|
72
|
-
],
|
|
73
|
-
"description": "The feature's geometry."
|
|
74
|
-
},
|
|
75
|
-
"id": {
|
|
76
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
77
|
-
"type": "string"
|
|
78
|
-
},
|
|
79
|
-
"schema": {
|
|
80
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
81
|
-
},
|
|
82
|
-
"settings": {
|
|
83
|
-
"description": "Settings for this feature."
|
|
84
|
-
},
|
|
85
|
-
"source": {
|
|
86
|
-
"description": "The source of the feature."
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
```
|
|
20
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | ToCsvConversionArgs )`
|
|
90
21
|
|
|
91
22
|
Results properties:
|
|
92
23
|
```json
|
|
@@ -181,80 +112,41 @@ ToCsvConversionArgs properties:
|
|
|
181
112
|
Outputs: `ConversionResult`
|
|
182
113
|
|
|
183
114
|
---
|
|
184
|
-
# operation: results.convert-to-
|
|
185
|
-
Description:
|
|
115
|
+
# operation: results.convert-to-gpx
|
|
116
|
+
Description: Converts the provided Feature(s) to a CSV file grouped by feature source. If there are multiple sources the CSV(s) will be bundled in a zip file. Web only.
|
|
186
117
|
|
|
187
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
118
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | ToGpxConversionArgs )`
|
|
188
119
|
|
|
189
|
-
|
|
120
|
+
Results properties:
|
|
190
121
|
```json
|
|
191
122
|
{
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
{},
|
|
195
|
-
{
|
|
196
|
-
"$ref": "Map"
|
|
197
|
-
}
|
|
198
|
-
],
|
|
199
|
-
"description": "The feature's attributes, keyed by field name."
|
|
200
|
-
},
|
|
201
|
-
"failureMode": {
|
|
202
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
203
|
-
},
|
|
204
|
-
"geometry": {
|
|
205
|
-
"anyOf": [
|
|
206
|
-
{
|
|
207
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"$ref": "T_6"
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
238
|
-
}
|
|
239
|
-
],
|
|
240
|
-
"description": "The feature's geometry."
|
|
241
|
-
},
|
|
242
|
-
"id": {
|
|
243
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
244
|
-
"type": "string"
|
|
245
|
-
},
|
|
246
|
-
"schema": {
|
|
247
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
248
|
-
},
|
|
249
|
-
"settings": {
|
|
250
|
-
"description": "Settings for this feature."
|
|
123
|
+
"features": {
|
|
124
|
+
"description": "Features to use for the command/operation."
|
|
251
125
|
},
|
|
252
|
-
"
|
|
253
|
-
"description": "
|
|
126
|
+
"maps": {
|
|
127
|
+
"description": "Map(s) to use for the command/operation."
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
ToGpxConversionArgs properties:
|
|
133
|
+
```json
|
|
134
|
+
{
|
|
135
|
+
"features": {
|
|
136
|
+
"description": "The feature(s) to convert.",
|
|
137
|
+
"isRequired": "true"
|
|
254
138
|
}
|
|
255
139
|
}
|
|
256
140
|
```
|
|
257
141
|
|
|
142
|
+
Outputs: `ConversionResult`
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
# operation: results.convert-to-layers
|
|
146
|
+
Description: Creates layer(s) from the specified features. Web only.
|
|
147
|
+
|
|
148
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | LayerConversionArgs )`
|
|
149
|
+
|
|
258
150
|
Results properties:
|
|
259
151
|
```json
|
|
260
152
|
{
|
|
@@ -298,76 +190,7 @@ Outputs: `@arcgis.core.layers.Layer.Layer[]`
|
|
|
298
190
|
# operation: results.convert-to-shapefile
|
|
299
191
|
Description: Converts the provided Feature(s) to a Shapefile grouped by feature source. If there are multiple sources the Shapefile(s) will be bundled in a zip file. Web only.
|
|
300
192
|
|
|
301
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
302
|
-
|
|
303
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
304
|
-
```json
|
|
305
|
-
{
|
|
306
|
-
"attributes": {
|
|
307
|
-
"anyOf": [
|
|
308
|
-
{},
|
|
309
|
-
{
|
|
310
|
-
"$ref": "Map"
|
|
311
|
-
}
|
|
312
|
-
],
|
|
313
|
-
"description": "The feature's attributes, keyed by field name."
|
|
314
|
-
},
|
|
315
|
-
"failureMode": {
|
|
316
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
317
|
-
},
|
|
318
|
-
"geometry": {
|
|
319
|
-
"anyOf": [
|
|
320
|
-
{
|
|
321
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
"$ref": "T_6"
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
352
|
-
}
|
|
353
|
-
],
|
|
354
|
-
"description": "The feature's geometry."
|
|
355
|
-
},
|
|
356
|
-
"id": {
|
|
357
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
358
|
-
"type": "string"
|
|
359
|
-
},
|
|
360
|
-
"schema": {
|
|
361
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
362
|
-
},
|
|
363
|
-
"settings": {
|
|
364
|
-
"description": "Settings for this feature."
|
|
365
|
-
},
|
|
366
|
-
"source": {
|
|
367
|
-
"description": "The source of the feature."
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
```
|
|
193
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | ToShapefileConversionArgs )`
|
|
371
194
|
|
|
372
195
|
Results properties:
|
|
373
196
|
```json
|
|
@@ -439,76 +262,7 @@ Outputs: `ConversionResult`
|
|
|
439
262
|
# operation: results.convert-to-xlsx
|
|
440
263
|
Description: Converts the provided Feature(s) to a XLSX file grouped by feature source. If there are multiple sources the XLSX(s) will be bundled in a zip file. Web only.
|
|
441
264
|
|
|
442
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
443
|
-
|
|
444
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
445
|
-
```json
|
|
446
|
-
{
|
|
447
|
-
"attributes": {
|
|
448
|
-
"anyOf": [
|
|
449
|
-
{},
|
|
450
|
-
{
|
|
451
|
-
"$ref": "Map"
|
|
452
|
-
}
|
|
453
|
-
],
|
|
454
|
-
"description": "The feature's attributes, keyed by field name."
|
|
455
|
-
},
|
|
456
|
-
"failureMode": {
|
|
457
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
458
|
-
},
|
|
459
|
-
"geometry": {
|
|
460
|
-
"anyOf": [
|
|
461
|
-
{
|
|
462
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"$ref": "T_6"
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
490
|
-
},
|
|
491
|
-
{
|
|
492
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
493
|
-
}
|
|
494
|
-
],
|
|
495
|
-
"description": "The feature's geometry."
|
|
496
|
-
},
|
|
497
|
-
"id": {
|
|
498
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
499
|
-
"type": "string"
|
|
500
|
-
},
|
|
501
|
-
"schema": {
|
|
502
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
503
|
-
},
|
|
504
|
-
"settings": {
|
|
505
|
-
"description": "Settings for this feature."
|
|
506
|
-
},
|
|
507
|
-
"source": {
|
|
508
|
-
"description": "The source of the feature."
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
```
|
|
265
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | ToXLSXConversionArgs )`
|
|
512
266
|
|
|
513
267
|
Results properties:
|
|
514
268
|
```json
|
|
@@ -607,9 +361,6 @@ FilterResultsArgs properties:
|
|
|
607
361
|
{
|
|
608
362
|
"$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
|
|
609
363
|
},
|
|
610
|
-
{
|
|
611
|
-
"$ref": "T_13"
|
|
612
|
-
},
|
|
613
364
|
{
|
|
614
365
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
615
366
|
},
|
|
@@ -624,9 +375,6 @@ FilterResultsArgs properties:
|
|
|
624
375
|
"anyOf": [
|
|
625
376
|
{
|
|
626
377
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"$ref": "T_13"
|
|
630
378
|
}
|
|
631
379
|
]
|
|
632
380
|
},
|
|
@@ -1028,9 +776,6 @@ FromGraphicsArgs properties:
|
|
|
1028
776
|
},
|
|
1029
777
|
"sublayer": {
|
|
1030
778
|
"anyOf": [
|
|
1031
|
-
{
|
|
1032
|
-
"$ref": "T_9"
|
|
1033
|
-
},
|
|
1034
779
|
{
|
|
1035
780
|
"type": "number"
|
|
1036
781
|
}
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED