@vertigis/viewer-spec 61.8.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/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 +3 -289
- 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 +5 -359
- 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
|
|
@@ -184,76 +115,7 @@ Outputs: `ConversionResult`
|
|
|
184
115
|
# operation: results.convert-to-gpx
|
|
185
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 |
|
|
188
|
-
|
|
189
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
190
|
-
```json
|
|
191
|
-
{
|
|
192
|
-
"attributes": {
|
|
193
|
-
"anyOf": [
|
|
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."
|
|
251
|
-
},
|
|
252
|
-
"source": {
|
|
253
|
-
"description": "The source of the feature."
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
```
|
|
118
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | ToGpxConversionArgs )`
|
|
257
119
|
|
|
258
120
|
Results properties:
|
|
259
121
|
```json
|
|
@@ -283,76 +145,7 @@ Outputs: `ConversionResult`
|
|
|
283
145
|
# operation: results.convert-to-layers
|
|
284
146
|
Description: Creates layer(s) from the specified features. Web only.
|
|
285
147
|
|
|
286
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
287
|
-
|
|
288
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
289
|
-
```json
|
|
290
|
-
{
|
|
291
|
-
"attributes": {
|
|
292
|
-
"anyOf": [
|
|
293
|
-
{},
|
|
294
|
-
{
|
|
295
|
-
"$ref": "Map"
|
|
296
|
-
}
|
|
297
|
-
],
|
|
298
|
-
"description": "The feature's attributes, keyed by field name."
|
|
299
|
-
},
|
|
300
|
-
"failureMode": {
|
|
301
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
302
|
-
},
|
|
303
|
-
"geometry": {
|
|
304
|
-
"anyOf": [
|
|
305
|
-
{
|
|
306
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
"$ref": "T_6"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
337
|
-
}
|
|
338
|
-
],
|
|
339
|
-
"description": "The feature's geometry."
|
|
340
|
-
},
|
|
341
|
-
"id": {
|
|
342
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
343
|
-
"type": "string"
|
|
344
|
-
},
|
|
345
|
-
"schema": {
|
|
346
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
347
|
-
},
|
|
348
|
-
"settings": {
|
|
349
|
-
"description": "Settings for this feature."
|
|
350
|
-
},
|
|
351
|
-
"source": {
|
|
352
|
-
"description": "The source of the feature."
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
```
|
|
148
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | LayerConversionArgs )`
|
|
356
149
|
|
|
357
150
|
Results properties:
|
|
358
151
|
```json
|
|
@@ -397,76 +190,7 @@ Outputs: `@arcgis.core.layers.Layer.Layer[]`
|
|
|
397
190
|
# operation: results.convert-to-shapefile
|
|
398
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.
|
|
399
192
|
|
|
400
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
401
|
-
|
|
402
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
403
|
-
```json
|
|
404
|
-
{
|
|
405
|
-
"attributes": {
|
|
406
|
-
"anyOf": [
|
|
407
|
-
{},
|
|
408
|
-
{
|
|
409
|
-
"$ref": "Map"
|
|
410
|
-
}
|
|
411
|
-
],
|
|
412
|
-
"description": "The feature's attributes, keyed by field name."
|
|
413
|
-
},
|
|
414
|
-
"failureMode": {
|
|
415
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
416
|
-
},
|
|
417
|
-
"geometry": {
|
|
418
|
-
"anyOf": [
|
|
419
|
-
{
|
|
420
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
"$ref": "T_6"
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
439
|
-
},
|
|
440
|
-
{
|
|
441
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
451
|
-
}
|
|
452
|
-
],
|
|
453
|
-
"description": "The feature's geometry."
|
|
454
|
-
},
|
|
455
|
-
"id": {
|
|
456
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
457
|
-
"type": "string"
|
|
458
|
-
},
|
|
459
|
-
"schema": {
|
|
460
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
461
|
-
},
|
|
462
|
-
"settings": {
|
|
463
|
-
"description": "Settings for this feature."
|
|
464
|
-
},
|
|
465
|
-
"source": {
|
|
466
|
-
"description": "The source of the feature."
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
```
|
|
193
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | ToShapefileConversionArgs )`
|
|
470
194
|
|
|
471
195
|
Results properties:
|
|
472
196
|
```json
|
|
@@ -538,76 +262,7 @@ Outputs: `ConversionResult`
|
|
|
538
262
|
# operation: results.convert-to-xlsx
|
|
539
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.
|
|
540
264
|
|
|
541
|
-
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream |
|
|
542
|
-
|
|
543
|
-
@vertigis.arcgis-extensions.data.Feature.FeatureProperties properties:
|
|
544
|
-
```json
|
|
545
|
-
{
|
|
546
|
-
"attributes": {
|
|
547
|
-
"anyOf": [
|
|
548
|
-
{},
|
|
549
|
-
{
|
|
550
|
-
"$ref": "Map"
|
|
551
|
-
}
|
|
552
|
-
],
|
|
553
|
-
"description": "The feature's attributes, keyed by field name."
|
|
554
|
-
},
|
|
555
|
-
"failureMode": {
|
|
556
|
-
"description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
|
|
557
|
-
},
|
|
558
|
-
"geometry": {
|
|
559
|
-
"anyOf": [
|
|
560
|
-
{
|
|
561
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
|
|
568
|
-
},
|
|
569
|
-
{
|
|
570
|
-
"$ref": "T_6"
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
|
|
583
|
-
},
|
|
584
|
-
{
|
|
585
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
592
|
-
}
|
|
593
|
-
],
|
|
594
|
-
"description": "The feature's geometry."
|
|
595
|
-
},
|
|
596
|
-
"id": {
|
|
597
|
-
"description": "The unique ID to assign to the entity. If not specified, one will be generated.",
|
|
598
|
-
"type": "string"
|
|
599
|
-
},
|
|
600
|
-
"schema": {
|
|
601
|
-
"description": "Metadata about the feature, such as fields, domains, geometry type, etc."
|
|
602
|
-
},
|
|
603
|
-
"settings": {
|
|
604
|
-
"description": "Settings for this feature."
|
|
605
|
-
},
|
|
606
|
-
"source": {
|
|
607
|
-
"description": "The source of the feature."
|
|
608
|
-
}
|
|
609
|
-
}
|
|
610
|
-
```
|
|
265
|
+
Inputs: `( @vertigis.api-docs.Features FeatureSet|FeatureList|FeatureStream | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | ToXLSXConversionArgs )`
|
|
611
266
|
|
|
612
267
|
Results properties:
|
|
613
268
|
```json
|
|
@@ -706,9 +361,6 @@ FilterResultsArgs properties:
|
|
|
706
361
|
{
|
|
707
362
|
"$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
|
|
708
363
|
},
|
|
709
|
-
{
|
|
710
|
-
"$ref": "T_13"
|
|
711
|
-
},
|
|
712
364
|
{
|
|
713
365
|
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
714
366
|
},
|
|
@@ -723,9 +375,6 @@ FilterResultsArgs properties:
|
|
|
723
375
|
"anyOf": [
|
|
724
376
|
{
|
|
725
377
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
"$ref": "T_13"
|
|
729
378
|
}
|
|
730
379
|
]
|
|
731
380
|
},
|
|
@@ -1127,9 +776,6 @@ FromGraphicsArgs properties:
|
|
|
1127
776
|
},
|
|
1128
777
|
"sublayer": {
|
|
1129
778
|
"anyOf": [
|
|
1130
|
-
{
|
|
1131
|
-
"$ref": "T_9"
|
|
1132
|
-
},
|
|
1133
779
|
{
|
|
1134
780
|
"type": "number"
|
|
1135
781
|
}
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED