@vertigis/viewer-spec 47.3.0 → 47.5.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/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/FeatureInfoModelProperties.d.ts +15 -0
- package/messaging/common.d.ts +1 -1
- package/messaging/registry/edit.d.ts +87 -23
- package/messaging/registry/edit.js +1 -1
- package/messaging/registry/results.d.ts +10 -6
- package/messaging/registry/ui.d.ts +0 -2
- package/messaging/schema/common-action.schema.json +169 -30
- package/messaging/schema/common-event.schema.json +50 -6
- package/messaging/schema/mobile-action.schema.json +160 -30
- package/messaging/schema/mobile-event.schema.json +50 -6
- package/messaging/schema/web-action.schema.json +264 -34
- package/messaging/schema/web-event.schema.json +598 -14
- package/package.json +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1084,6 +1084,9 @@
|
|
|
1084
1084
|
},
|
|
1085
1085
|
"symbol": {
|
|
1086
1086
|
"anyOf": [
|
|
1087
|
+
{
|
|
1088
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
1089
|
+
},
|
|
1087
1090
|
{
|
|
1088
1091
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
1089
1092
|
},
|
|
@@ -1193,7 +1196,7 @@
|
|
|
1193
1196
|
},
|
|
1194
1197
|
"CreateFeatureArgs": {
|
|
1195
1198
|
"additionalProperties": false,
|
|
1196
|
-
"description": "Arguments for the \"edit.create-feature\" operation.
|
|
1199
|
+
"description": "Arguments for the \"edit.create-feature\" operation. A valid feature layer is required. The geometry is required for non-tabular features. Web only.",
|
|
1197
1200
|
"properties": {
|
|
1198
1201
|
"featureAttributes": {
|
|
1199
1202
|
"description": "A collection of attributes to apply to the new feature."
|
|
@@ -1229,6 +1232,10 @@
|
|
|
1229
1232
|
"templateName": {
|
|
1230
1233
|
"description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
|
|
1231
1234
|
"type": "string"
|
|
1235
|
+
},
|
|
1236
|
+
"typeId": {
|
|
1237
|
+
"description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
|
|
1238
|
+
"type": "string"
|
|
1232
1239
|
}
|
|
1233
1240
|
},
|
|
1234
1241
|
"type": "object"
|
|
@@ -1371,13 +1378,6 @@
|
|
|
1371
1378
|
"additionalProperties": false,
|
|
1372
1379
|
"description": "Arguments for the \"edit.display-add-features\" command. Web only.",
|
|
1373
1380
|
"properties": {
|
|
1374
|
-
"attributes": {
|
|
1375
|
-
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1376
|
-
},
|
|
1377
|
-
"editAttachments": {
|
|
1378
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
1379
|
-
"type": "boolean"
|
|
1380
|
-
},
|
|
1381
1381
|
"editAttributes": {
|
|
1382
1382
|
"description": "Whether to allow editing of feature attributes.",
|
|
1383
1383
|
"type": "boolean"
|
|
@@ -1393,14 +1393,14 @@
|
|
|
1393
1393
|
"featureAttributes": {
|
|
1394
1394
|
"description": "A collection of attributes to apply to the new feature."
|
|
1395
1395
|
},
|
|
1396
|
+
"formUITarget": {
|
|
1397
|
+
"$ref": "#/definitions/HasUITarget",
|
|
1398
|
+
"description": "Arguments for the display of the attribute editing form."
|
|
1399
|
+
},
|
|
1396
1400
|
"geometry": {
|
|
1397
1401
|
"$ref": "#/definitions/GeometryLike",
|
|
1398
1402
|
"description": "The geometry to use for the command/operation."
|
|
1399
1403
|
},
|
|
1400
|
-
"icon": {
|
|
1401
|
-
"description": "Optional icon that may be used by the transient UI container.",
|
|
1402
|
-
"type": "string"
|
|
1403
|
-
},
|
|
1404
1404
|
"layers": {
|
|
1405
1405
|
"$ref": "#/definitions/LayersLike",
|
|
1406
1406
|
"description": "Layer(s) to use for the command/operation."
|
|
@@ -1417,10 +1417,6 @@
|
|
|
1417
1417
|
],
|
|
1418
1418
|
"type": "string"
|
|
1419
1419
|
},
|
|
1420
|
-
"parent": {
|
|
1421
|
-
"description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes.",
|
|
1422
|
-
"type": "string"
|
|
1423
|
-
},
|
|
1424
1420
|
"showNotifications": {
|
|
1425
1421
|
"description": "Whether to show UI notifications.",
|
|
1426
1422
|
"type": "boolean"
|
|
@@ -1432,6 +1428,14 @@
|
|
|
1432
1428
|
"templateName": {
|
|
1433
1429
|
"description": "The template to use as a starting point for this feature. Requires a layer. The default or first template will be used if not set.",
|
|
1434
1430
|
"type": "string"
|
|
1431
|
+
},
|
|
1432
|
+
"templateUITarget": {
|
|
1433
|
+
"$ref": "#/definitions/HasUITarget",
|
|
1434
|
+
"description": "Arguments for the display of the template picker."
|
|
1435
|
+
},
|
|
1436
|
+
"typeId": {
|
|
1437
|
+
"description": "A type id to use as a starting point for this feature. This may return one or more templates and requires a layer with types defined.",
|
|
1438
|
+
"type": "string"
|
|
1435
1439
|
}
|
|
1436
1440
|
},
|
|
1437
1441
|
"type": "object"
|
|
@@ -1478,8 +1482,11 @@
|
|
|
1478
1482
|
"additionalProperties": false,
|
|
1479
1483
|
"description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
|
|
1480
1484
|
"properties": {
|
|
1485
|
+
"attributes": {
|
|
1486
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1487
|
+
},
|
|
1481
1488
|
"editAttachments": {
|
|
1482
|
-
"description": "Whether to allow editing of feature attachments.",
|
|
1489
|
+
"description": "Whether to allow editing of feature attachments. Web only.",
|
|
1483
1490
|
"type": "boolean"
|
|
1484
1491
|
},
|
|
1485
1492
|
"editAttributes": {
|
|
@@ -1505,10 +1512,18 @@
|
|
|
1505
1512
|
"$ref": "#/definitions/GeometryLike",
|
|
1506
1513
|
"description": "The geometry to use for the command/operation."
|
|
1507
1514
|
},
|
|
1515
|
+
"icon": {
|
|
1516
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
1517
|
+
"type": "string"
|
|
1518
|
+
},
|
|
1508
1519
|
"maps": {
|
|
1509
1520
|
"$ref": "MapsLike",
|
|
1510
1521
|
"description": "Map(s) to use for the command/operation."
|
|
1511
1522
|
},
|
|
1523
|
+
"parent": {
|
|
1524
|
+
"description": "The layout ID or ItemRef to target for the command/operation. This component will be the parent of the temporary UI that will be removed after the command/operation completes.",
|
|
1525
|
+
"type": "string"
|
|
1526
|
+
},
|
|
1512
1527
|
"showNotifications": {
|
|
1513
1528
|
"description": "Whether to show UI notifications.",
|
|
1514
1529
|
"type": "boolean"
|
|
@@ -4278,7 +4293,7 @@
|
|
|
4278
4293
|
"description": "The result component to update, referenced by results model or its ID."
|
|
4279
4294
|
},
|
|
4280
4295
|
"selector": {
|
|
4281
|
-
"description": "Sets the
|
|
4296
|
+
"description": "Sets the selector, using CSS selector syntax, which queries for results components in the app layout XML, such as the Results List or Results Table components. The selector is used to determine which components will be activated when displaying results using `results.display`.",
|
|
4282
4297
|
"type": "string"
|
|
4283
4298
|
}
|
|
4284
4299
|
},
|
|
@@ -5104,6 +5119,27 @@
|
|
|
5104
5119
|
],
|
|
5105
5120
|
"type": "object"
|
|
5106
5121
|
},
|
|
5122
|
+
"UpdateSessionArgs": {
|
|
5123
|
+
"additionalProperties": false,
|
|
5124
|
+
"description": "Used to update an in-progress interactive feature editing session with new attributes, attachments or geometry. Web only.",
|
|
5125
|
+
"properties": {
|
|
5126
|
+
"attachments": {
|
|
5127
|
+
"description": "A collection of attachments that apply or are to be applied to the currently edited feature.",
|
|
5128
|
+
"items": {
|
|
5129
|
+
"$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
|
|
5130
|
+
},
|
|
5131
|
+
"type": "array"
|
|
5132
|
+
},
|
|
5133
|
+
"attributes": {
|
|
5134
|
+
"description": "A collection of attributes that apply or are to be applied to the currently edited feature."
|
|
5135
|
+
},
|
|
5136
|
+
"geometry": {
|
|
5137
|
+
"$ref": "#/definitions/GeometryLike",
|
|
5138
|
+
"description": "The geometry to use for the command/operation."
|
|
5139
|
+
}
|
|
5140
|
+
},
|
|
5141
|
+
"type": "object"
|
|
5142
|
+
},
|
|
5107
5143
|
"Vector2D": {
|
|
5108
5144
|
"additionalProperties": false,
|
|
5109
5145
|
"description": "A representation of a 2D vector or point.",
|
|
@@ -5883,29 +5919,66 @@
|
|
|
5883
5919
|
]
|
|
5884
5920
|
},
|
|
5885
5921
|
"edit.add-feature": {
|
|
5886
|
-
"description": "Adds a feature to a particular layer. `
|
|
5922
|
+
"description": "Adds a feature to a particular layer. `Features` and `EditCommandArgs` are not supported on Mobile.",
|
|
5887
5923
|
"enum": [
|
|
5888
5924
|
"edit.add-feature"
|
|
5889
5925
|
]
|
|
5890
5926
|
},
|
|
5891
5927
|
"edit.add-feature:input": {
|
|
5892
5928
|
"anyOf": [
|
|
5929
|
+
{
|
|
5930
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
5931
|
+
},
|
|
5893
5932
|
{
|
|
5894
5933
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5895
5934
|
},
|
|
5896
5935
|
{
|
|
5897
|
-
"$ref": "
|
|
5936
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
5937
|
+
},
|
|
5938
|
+
{
|
|
5939
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5898
5940
|
},
|
|
5899
5941
|
{
|
|
5900
5942
|
"items": {
|
|
5901
|
-
"
|
|
5943
|
+
"anyOf": [
|
|
5944
|
+
{
|
|
5945
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5946
|
+
},
|
|
5947
|
+
{
|
|
5948
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
5949
|
+
}
|
|
5950
|
+
]
|
|
5902
5951
|
},
|
|
5903
5952
|
"type": "array"
|
|
5953
|
+
},
|
|
5954
|
+
{
|
|
5955
|
+
"$ref": "#/definitions/Results"
|
|
5956
|
+
},
|
|
5957
|
+
{
|
|
5958
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5904
5959
|
}
|
|
5905
5960
|
]
|
|
5906
5961
|
},
|
|
5962
|
+
"edit.cancel": {
|
|
5963
|
+
"description": "Cancels active editing sessions and discards any changes. If a feature is supplied only the sessions using that feature will be cancelled.",
|
|
5964
|
+
"enum": [
|
|
5965
|
+
"edit.cancel"
|
|
5966
|
+
]
|
|
5967
|
+
},
|
|
5968
|
+
"edit.cancel:input": {
|
|
5969
|
+
"$ref": "#/definitions/Features"
|
|
5970
|
+
},
|
|
5971
|
+
"edit.complete": {
|
|
5972
|
+
"description": "Completes active editing sessions and submits any changes made to the attributes, attachments or geometry to the feature source. If a feature is supplied, only sessions using that feature will close.",
|
|
5973
|
+
"enum": [
|
|
5974
|
+
"edit.complete"
|
|
5975
|
+
]
|
|
5976
|
+
},
|
|
5977
|
+
"edit.complete:input": {
|
|
5978
|
+
"$ref": "#/definitions/Features"
|
|
5979
|
+
},
|
|
5907
5980
|
"edit.create-feature": {
|
|
5908
|
-
"description": "Creates a new
|
|
5981
|
+
"description": "Creates a new feature for the supplied feature source from the supplied configuration. This operation does not add the feature to the source, but returns the feature for further processing.",
|
|
5909
5982
|
"enum": [
|
|
5910
5983
|
"edit.create-feature"
|
|
5911
5984
|
]
|
|
@@ -5933,22 +6006,41 @@
|
|
|
5933
6006
|
},
|
|
5934
6007
|
"edit.delete-features:input": {
|
|
5935
6008
|
"anyOf": [
|
|
6009
|
+
{
|
|
6010
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6011
|
+
},
|
|
5936
6012
|
{
|
|
5937
6013
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5938
6014
|
},
|
|
5939
6015
|
{
|
|
5940
|
-
"$ref": "
|
|
6016
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
6017
|
+
},
|
|
6018
|
+
{
|
|
6019
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5941
6020
|
},
|
|
5942
6021
|
{
|
|
5943
6022
|
"items": {
|
|
5944
|
-
"
|
|
6023
|
+
"anyOf": [
|
|
6024
|
+
{
|
|
6025
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6026
|
+
},
|
|
6027
|
+
{
|
|
6028
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6029
|
+
}
|
|
6030
|
+
]
|
|
5945
6031
|
},
|
|
5946
6032
|
"type": "array"
|
|
6033
|
+
},
|
|
6034
|
+
{
|
|
6035
|
+
"$ref": "#/definitions/Results"
|
|
6036
|
+
},
|
|
6037
|
+
{
|
|
6038
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5947
6039
|
}
|
|
5948
6040
|
]
|
|
5949
6041
|
},
|
|
5950
6042
|
"edit.display-add-feature": {
|
|
5951
|
-
"description": "
|
|
6043
|
+
"description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
5952
6044
|
"enum": [
|
|
5953
6045
|
"edit.display-add-feature"
|
|
5954
6046
|
]
|
|
@@ -5964,7 +6056,7 @@
|
|
|
5964
6056
|
]
|
|
5965
6057
|
},
|
|
5966
6058
|
"edit.display-update-feature": {
|
|
5967
|
-
"description": "
|
|
6059
|
+
"description": "Begin an interactive feature editing session with an existing feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
5968
6060
|
"enum": [
|
|
5969
6061
|
"edit.display-update-feature"
|
|
5970
6062
|
]
|
|
@@ -5980,32 +6072,60 @@
|
|
|
5980
6072
|
]
|
|
5981
6073
|
},
|
|
5982
6074
|
"edit.update-feature": {
|
|
5983
|
-
"description": "Updates a feature. `
|
|
6075
|
+
"description": "Updates a layer feature or features. Edits to the geometry and attributes of the supplied features will be committed to their respective feature sources. `Features` and `EditCommandArgs` are not supported on Mobile.",
|
|
5984
6076
|
"enum": [
|
|
5985
6077
|
"edit.update-feature"
|
|
5986
6078
|
]
|
|
5987
6079
|
},
|
|
5988
6080
|
"edit.update-feature:input": {
|
|
5989
6081
|
"anyOf": [
|
|
6082
|
+
{
|
|
6083
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
|
|
6084
|
+
},
|
|
5990
6085
|
{
|
|
5991
6086
|
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5992
6087
|
},
|
|
5993
6088
|
{
|
|
5994
|
-
"$ref": "
|
|
6089
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
|
|
5995
6093
|
},
|
|
5996
6094
|
{
|
|
5997
6095
|
"items": {
|
|
5998
|
-
"
|
|
6096
|
+
"anyOf": [
|
|
6097
|
+
{
|
|
6098
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
6099
|
+
},
|
|
6100
|
+
{
|
|
6101
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
|
|
6102
|
+
}
|
|
6103
|
+
]
|
|
5999
6104
|
},
|
|
6000
6105
|
"type": "array"
|
|
6106
|
+
},
|
|
6107
|
+
{
|
|
6108
|
+
"$ref": "#/definitions/Results"
|
|
6109
|
+
},
|
|
6110
|
+
{
|
|
6111
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
6001
6112
|
}
|
|
6002
6113
|
]
|
|
6003
6114
|
},
|
|
6115
|
+
"edit.update-session": {
|
|
6116
|
+
"description": "Updates an in-progress interactive feature editing session with new attributes, attachments, or geometry. These will be immediately applied to the current session, if one is active.",
|
|
6117
|
+
"enum": [
|
|
6118
|
+
"edit.update-session"
|
|
6119
|
+
]
|
|
6120
|
+
},
|
|
6121
|
+
"edit.update-session:input": {
|
|
6122
|
+
"$ref": "#/definitions/UpdateSessionArgs"
|
|
6123
|
+
},
|
|
6004
6124
|
"esri.Extent": {
|
|
6005
6125
|
"$ref": "esri/geometry/Extent"
|
|
6006
6126
|
},
|
|
6007
6127
|
"esri.FeatureSet": {
|
|
6008
|
-
"$ref": "esri/
|
|
6128
|
+
"$ref": "esri/rest/support/FeatureSet"
|
|
6009
6129
|
},
|
|
6010
6130
|
"esri.FeatureType": {
|
|
6011
6131
|
"$ref": "esri/layers/support/FeatureType"
|
|
@@ -6370,6 +6490,23 @@
|
|
|
6370
6490
|
},
|
|
6371
6491
|
"type": "object"
|
|
6372
6492
|
},
|
|
6493
|
+
"esri.rest-api.CIMSymbol.CIMSymbol": {
|
|
6494
|
+
"additionalProperties": false,
|
|
6495
|
+
"description": "Represents a symbol reference that contains a CIM symbol. In addition to type listed below, a symbol reference will contain additional properties. More details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/master/docs/v2/Overview-Symbols.md.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/polygonSymbol3D/}.",
|
|
6496
|
+
"properties": {
|
|
6497
|
+
"type": {
|
|
6498
|
+
"description": "Specifies the type of symbol used.",
|
|
6499
|
+
"enum": [
|
|
6500
|
+
"CIMSymbolReference"
|
|
6501
|
+
],
|
|
6502
|
+
"type": "string"
|
|
6503
|
+
}
|
|
6504
|
+
},
|
|
6505
|
+
"required": [
|
|
6506
|
+
"type"
|
|
6507
|
+
],
|
|
6508
|
+
"type": "object"
|
|
6509
|
+
},
|
|
6373
6510
|
"esri.rest-api.CSVLayer.CSVLayer": {
|
|
6374
6511
|
"additionalProperties": false,
|
|
6375
6512
|
"description": "The CSV layer type references a CSV or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The CSV layer will maintain a reference to the CSV resource.{@linkhttps://developers.arcgis.com/web-map-specification/objects/csvLayer/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/csvLayer/}.",
|
|
@@ -6570,6 +6707,9 @@
|
|
|
6570
6707
|
},
|
|
6571
6708
|
"symbol": {
|
|
6572
6709
|
"anyOf": [
|
|
6710
|
+
{
|
|
6711
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6712
|
+
},
|
|
6573
6713
|
{
|
|
6574
6714
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6575
6715
|
},
|
|
@@ -6652,6 +6792,9 @@
|
|
|
6652
6792
|
},
|
|
6653
6793
|
"defaultSymbol": {
|
|
6654
6794
|
"anyOf": [
|
|
6795
|
+
{
|
|
6796
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
6797
|
+
},
|
|
6655
6798
|
{
|
|
6656
6799
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
6657
6800
|
},
|
|
@@ -7355,8 +7498,15 @@
|
|
|
7355
7498
|
"$ref": "#/definitions/esri.rest-api.Geometry.Geometry",
|
|
7356
7499
|
"description": "The feature geometry."
|
|
7357
7500
|
},
|
|
7501
|
+
"popupInfo": {
|
|
7502
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo",
|
|
7503
|
+
"description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
|
|
7504
|
+
},
|
|
7358
7505
|
"symbol": {
|
|
7359
7506
|
"anyOf": [
|
|
7507
|
+
{
|
|
7508
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
7509
|
+
},
|
|
7360
7510
|
{
|
|
7361
7511
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
7362
7512
|
},
|
|
@@ -8648,7 +8798,9 @@
|
|
|
8648
8798
|
"properties": {
|
|
8649
8799
|
"bandIds": {
|
|
8650
8800
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
8651
|
-
"items": {
|
|
8801
|
+
"items": {
|
|
8802
|
+
"type": "number"
|
|
8803
|
+
},
|
|
8652
8804
|
"type": "array"
|
|
8653
8805
|
},
|
|
8654
8806
|
"blendMode": {
|
|
@@ -9733,7 +9885,7 @@
|
|
|
9733
9885
|
"type": "string"
|
|
9734
9886
|
},
|
|
9735
9887
|
"orderBy": {
|
|
9736
|
-
"description": "Determines the display order of features on the map
|
|
9888
|
+
"description": "Determines the display order of features on the map.",
|
|
9737
9889
|
"items": {
|
|
9738
9890
|
"$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
|
|
9739
9891
|
},
|
|
@@ -9899,7 +10051,7 @@
|
|
|
9899
10051
|
"type": "string"
|
|
9900
10052
|
},
|
|
9901
10053
|
"valueExpression": {
|
|
9902
|
-
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
10054
|
+
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. (Currently undocumented by ESRI's Webmap Spec). [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
9903
10055
|
"type": "string"
|
|
9904
10056
|
}
|
|
9905
10057
|
},
|
|
@@ -12136,6 +12288,9 @@
|
|
|
12136
12288
|
},
|
|
12137
12289
|
"symbol": {
|
|
12138
12290
|
"anyOf": [
|
|
12291
|
+
{
|
|
12292
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
12293
|
+
},
|
|
12139
12294
|
{
|
|
12140
12295
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
12141
12296
|
},
|
|
@@ -12450,6 +12605,9 @@
|
|
|
12450
12605
|
},
|
|
12451
12606
|
"esri.rest-api.Symbol.Symbol": {
|
|
12452
12607
|
"anyOf": [
|
|
12608
|
+
{
|
|
12609
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
12610
|
+
},
|
|
12453
12611
|
{
|
|
12454
12612
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
12455
12613
|
},
|
|
@@ -13173,6 +13331,9 @@
|
|
|
13173
13331
|
},
|
|
13174
13332
|
"symbol": {
|
|
13175
13333
|
"anyOf": [
|
|
13334
|
+
{
|
|
13335
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
13336
|
+
},
|
|
13176
13337
|
{
|
|
13177
13338
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
13178
13339
|
},
|
|
@@ -13241,6 +13402,9 @@
|
|
|
13241
13402
|
},
|
|
13242
13403
|
"defaultSymbol": {
|
|
13243
13404
|
"anyOf": [
|
|
13405
|
+
{
|
|
13406
|
+
"$ref": "#/definitions/esri.rest-api.CIMSymbol.CIMSymbol"
|
|
13407
|
+
},
|
|
13244
13408
|
{
|
|
13245
13409
|
"$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol"
|
|
13246
13410
|
},
|
|
@@ -16625,7 +16789,7 @@
|
|
|
16625
16789
|
"$ref": "#/definitions/ShowResultsArgs"
|
|
16626
16790
|
},
|
|
16627
16791
|
"results.set-display-components": {
|
|
16628
|
-
"description": "Sets the
|
|
16792
|
+
"description": "Sets the selector, using CSS selector syntax, which queries for results components in the app layout XML, such as the Results List or Results Table components. The selector is used to determine which components will be activated when displaying results using `results.display`. All other components that do not match the selector are deactivated after running this command.",
|
|
16629
16793
|
"enum": [
|
|
16630
16794
|
"results.set-display-components"
|
|
16631
16795
|
]
|
|
@@ -17216,6 +17380,12 @@
|
|
|
17216
17380
|
"ui.get-visual-state:output": {
|
|
17217
17381
|
"type": "string"
|
|
17218
17382
|
},
|
|
17383
|
+
"ui.hide-notification": {
|
|
17384
|
+
"description": "Hides a notification previously shown to the user.",
|
|
17385
|
+
"enum": [
|
|
17386
|
+
"ui.hide-notification"
|
|
17387
|
+
]
|
|
17388
|
+
},
|
|
17219
17389
|
"ui.narrate": {
|
|
17220
17390
|
"description": "Forces assistive technology (screen readers) to narrate a translatable message to the end user.",
|
|
17221
17391
|
"enum": [
|
|
@@ -17543,6 +17713,38 @@
|
|
|
17543
17713
|
],
|
|
17544
17714
|
"type": "object"
|
|
17545
17715
|
},
|
|
17716
|
+
{
|
|
17717
|
+
"additionalProperties": false,
|
|
17718
|
+
"properties": {
|
|
17719
|
+
"arguments": {
|
|
17720
|
+
"$ref": "#/definitions/edit.cancel:input"
|
|
17721
|
+
},
|
|
17722
|
+
"name": {
|
|
17723
|
+
"$ref": "#/definitions/edit.cancel"
|
|
17724
|
+
}
|
|
17725
|
+
},
|
|
17726
|
+
"required": [
|
|
17727
|
+
"name",
|
|
17728
|
+
"arguments"
|
|
17729
|
+
],
|
|
17730
|
+
"type": "object"
|
|
17731
|
+
},
|
|
17732
|
+
{
|
|
17733
|
+
"additionalProperties": false,
|
|
17734
|
+
"properties": {
|
|
17735
|
+
"arguments": {
|
|
17736
|
+
"$ref": "#/definitions/edit.complete:input"
|
|
17737
|
+
},
|
|
17738
|
+
"name": {
|
|
17739
|
+
"$ref": "#/definitions/edit.complete"
|
|
17740
|
+
}
|
|
17741
|
+
},
|
|
17742
|
+
"required": [
|
|
17743
|
+
"name",
|
|
17744
|
+
"arguments"
|
|
17745
|
+
],
|
|
17746
|
+
"type": "object"
|
|
17747
|
+
},
|
|
17546
17748
|
{
|
|
17547
17749
|
"additionalProperties": false,
|
|
17548
17750
|
"properties": {
|
|
@@ -17623,6 +17825,22 @@
|
|
|
17623
17825
|
],
|
|
17624
17826
|
"type": "object"
|
|
17625
17827
|
},
|
|
17828
|
+
{
|
|
17829
|
+
"additionalProperties": false,
|
|
17830
|
+
"properties": {
|
|
17831
|
+
"arguments": {
|
|
17832
|
+
"$ref": "#/definitions/edit.update-session:input"
|
|
17833
|
+
},
|
|
17834
|
+
"name": {
|
|
17835
|
+
"$ref": "#/definitions/edit.update-session"
|
|
17836
|
+
}
|
|
17837
|
+
},
|
|
17838
|
+
"required": [
|
|
17839
|
+
"name",
|
|
17840
|
+
"arguments"
|
|
17841
|
+
],
|
|
17842
|
+
"type": "object"
|
|
17843
|
+
},
|
|
17626
17844
|
{
|
|
17627
17845
|
"additionalProperties": false,
|
|
17628
17846
|
"properties": {
|
|
@@ -19396,6 +19614,12 @@
|
|
|
19396
19614
|
{
|
|
19397
19615
|
"$ref": "#/definitions/edit.add-feature"
|
|
19398
19616
|
},
|
|
19617
|
+
{
|
|
19618
|
+
"$ref": "#/definitions/edit.cancel"
|
|
19619
|
+
},
|
|
19620
|
+
{
|
|
19621
|
+
"$ref": "#/definitions/edit.complete"
|
|
19622
|
+
},
|
|
19399
19623
|
{
|
|
19400
19624
|
"$ref": "#/definitions/edit.delete-attachment"
|
|
19401
19625
|
},
|
|
@@ -19411,6 +19635,9 @@
|
|
|
19411
19635
|
{
|
|
19412
19636
|
"$ref": "#/definitions/edit.update-feature"
|
|
19413
19637
|
},
|
|
19638
|
+
{
|
|
19639
|
+
"$ref": "#/definitions/edit.update-session"
|
|
19640
|
+
},
|
|
19414
19641
|
{
|
|
19415
19642
|
"$ref": "#/definitions/geocode.batch-geocode"
|
|
19416
19643
|
},
|
|
@@ -19735,6 +19962,9 @@
|
|
|
19735
19962
|
{
|
|
19736
19963
|
"$ref": "#/definitions/ui.focus"
|
|
19737
19964
|
},
|
|
19965
|
+
{
|
|
19966
|
+
"$ref": "#/definitions/ui.hide-notification"
|
|
19967
|
+
},
|
|
19738
19968
|
{
|
|
19739
19969
|
"$ref": "#/definitions/ui.narrate"
|
|
19740
19970
|
},
|