@vertigis/viewer-spec 46.0.0 → 46.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.
- package/messaging/registry/Operations.d.ts +2 -0
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/edit.d.ts +104 -25
- package/messaging/registry/edit.js +1 -1
- package/messaging/schema/common-action.schema.json +390 -0
- package/messaging/schema/common-event.schema.json +36 -0
- package/messaging/schema/mobile-action.schema.json +249 -9
- package/messaging/schema/web-action.schema.json +392 -0
- package/messaging/schema/web-event.schema.json +36 -0
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1154,6 +1154,48 @@
|
|
|
1154
1154
|
],
|
|
1155
1155
|
"type": "object"
|
|
1156
1156
|
},
|
|
1157
|
+
"CreateFeatureArgs": {
|
|
1158
|
+
"additionalProperties": false,
|
|
1159
|
+
"description": "Arguments for the \"edit.create-feature\" operation. Also may be supplied to augment an interactive editing session. A valid feature layer is required. The geometry is required for non-tabular features. Web only.",
|
|
1160
|
+
"properties": {
|
|
1161
|
+
"featureAttributes": {
|
|
1162
|
+
"description": "A collection of attributes to apply to the new feature."
|
|
1163
|
+
},
|
|
1164
|
+
"geometry": {
|
|
1165
|
+
"$ref": "#/definitions/GeometryLike",
|
|
1166
|
+
"description": "The geometry to use for the command/operation."
|
|
1167
|
+
},
|
|
1168
|
+
"layers": {
|
|
1169
|
+
"$ref": "#/definitions/LayersLike",
|
|
1170
|
+
"description": "Layer(s) to use for the command/operation."
|
|
1171
|
+
},
|
|
1172
|
+
"maps": {
|
|
1173
|
+
"$ref": "MapsLike",
|
|
1174
|
+
"description": "Map(s) to use for the command/operation."
|
|
1175
|
+
},
|
|
1176
|
+
"orientation": {
|
|
1177
|
+
"description": "The orientation of the template picker.",
|
|
1178
|
+
"enum": [
|
|
1179
|
+
"horizontal",
|
|
1180
|
+
"vertical"
|
|
1181
|
+
],
|
|
1182
|
+
"type": "string"
|
|
1183
|
+
},
|
|
1184
|
+
"showNotifications": {
|
|
1185
|
+
"description": "Whether to show UI notifications.",
|
|
1186
|
+
"type": "boolean"
|
|
1187
|
+
},
|
|
1188
|
+
"showTitles": {
|
|
1189
|
+
"description": "Whether to show titles on the template picker.",
|
|
1190
|
+
"type": "boolean"
|
|
1191
|
+
},
|
|
1192
|
+
"templateName": {
|
|
1193
|
+
"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.",
|
|
1194
|
+
"type": "string"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"type": "object"
|
|
1198
|
+
},
|
|
1157
1199
|
"CreateGraphicsResult": {
|
|
1158
1200
|
"additionalProperties": false,
|
|
1159
1201
|
"description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
|
|
@@ -1351,6 +1393,75 @@
|
|
|
1351
1393
|
},
|
|
1352
1394
|
"type": "object"
|
|
1353
1395
|
},
|
|
1396
|
+
"DisplayAddFeatureArgs": {
|
|
1397
|
+
"additionalProperties": false,
|
|
1398
|
+
"description": "Arguments for the \"edit.display-add-features\" command. Web only.",
|
|
1399
|
+
"properties": {
|
|
1400
|
+
"attributes": {
|
|
1401
|
+
"description": "Optional layout XML attributes to be used for the transient UI container."
|
|
1402
|
+
},
|
|
1403
|
+
"editAttachments": {
|
|
1404
|
+
"description": "Whether to allow editing of feature attachments.",
|
|
1405
|
+
"type": "boolean"
|
|
1406
|
+
},
|
|
1407
|
+
"editAttributes": {
|
|
1408
|
+
"description": "Whether to allow editing of feature attributes.",
|
|
1409
|
+
"type": "boolean"
|
|
1410
|
+
},
|
|
1411
|
+
"editGeometry": {
|
|
1412
|
+
"description": "Whether to allow editing of feature geometry.",
|
|
1413
|
+
"type": "boolean"
|
|
1414
|
+
},
|
|
1415
|
+
"editGeometryOptions": {
|
|
1416
|
+
"$ref": "#/definitions/EditGeometryOptions",
|
|
1417
|
+
"description": "Options for the geometry editing session."
|
|
1418
|
+
},
|
|
1419
|
+
"featureAttributes": {
|
|
1420
|
+
"description": "A collection of attributes to apply to the new feature."
|
|
1421
|
+
},
|
|
1422
|
+
"geometry": {
|
|
1423
|
+
"$ref": "#/definitions/GeometryLike",
|
|
1424
|
+
"description": "The geometry to use for the command/operation."
|
|
1425
|
+
},
|
|
1426
|
+
"icon": {
|
|
1427
|
+
"description": "Optional icon that may be used by the transient UI container.",
|
|
1428
|
+
"type": "string"
|
|
1429
|
+
},
|
|
1430
|
+
"layers": {
|
|
1431
|
+
"$ref": "#/definitions/LayersLike",
|
|
1432
|
+
"description": "Layer(s) to use for the command/operation."
|
|
1433
|
+
},
|
|
1434
|
+
"maps": {
|
|
1435
|
+
"$ref": "MapsLike",
|
|
1436
|
+
"description": "Map(s) to use for the command/operation."
|
|
1437
|
+
},
|
|
1438
|
+
"orientation": {
|
|
1439
|
+
"description": "The orientation of the template picker.",
|
|
1440
|
+
"enum": [
|
|
1441
|
+
"horizontal",
|
|
1442
|
+
"vertical"
|
|
1443
|
+
],
|
|
1444
|
+
"type": "string"
|
|
1445
|
+
},
|
|
1446
|
+
"parent": {
|
|
1447
|
+
"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.",
|
|
1448
|
+
"type": "string"
|
|
1449
|
+
},
|
|
1450
|
+
"showNotifications": {
|
|
1451
|
+
"description": "Whether to show UI notifications.",
|
|
1452
|
+
"type": "boolean"
|
|
1453
|
+
},
|
|
1454
|
+
"showTitles": {
|
|
1455
|
+
"description": "Whether to show titles on the template picker.",
|
|
1456
|
+
"type": "boolean"
|
|
1457
|
+
},
|
|
1458
|
+
"templateName": {
|
|
1459
|
+
"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.",
|
|
1460
|
+
"type": "string"
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
"type": "object"
|
|
1464
|
+
},
|
|
1354
1465
|
"DisplayNotificationArgs": {
|
|
1355
1466
|
"additionalProperties": false,
|
|
1356
1467
|
"description": "The arguments for the `ui.display-notification` command.",
|
|
@@ -1389,6 +1500,48 @@
|
|
|
1389
1500
|
],
|
|
1390
1501
|
"type": "object"
|
|
1391
1502
|
},
|
|
1503
|
+
"DisplayUpdateFeatureArgs": {
|
|
1504
|
+
"additionalProperties": false,
|
|
1505
|
+
"description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
|
|
1506
|
+
"properties": {
|
|
1507
|
+
"editAttachments": {
|
|
1508
|
+
"description": "Whether to allow editing of feature attachments.",
|
|
1509
|
+
"type": "boolean"
|
|
1510
|
+
},
|
|
1511
|
+
"editAttributes": {
|
|
1512
|
+
"description": "Whether to allow editing of feature attributes.",
|
|
1513
|
+
"type": "boolean"
|
|
1514
|
+
},
|
|
1515
|
+
"editGeometry": {
|
|
1516
|
+
"description": "Whether to allow editing of feature geometry.",
|
|
1517
|
+
"type": "boolean"
|
|
1518
|
+
},
|
|
1519
|
+
"editGeometryOptions": {
|
|
1520
|
+
"$ref": "#/definitions/EditGeometryOptions",
|
|
1521
|
+
"description": "Options for the geometry editing session."
|
|
1522
|
+
},
|
|
1523
|
+
"featureAttributes": {
|
|
1524
|
+
"description": "A collection of attributes to automatically apply to the updated feature."
|
|
1525
|
+
},
|
|
1526
|
+
"features": {
|
|
1527
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
1528
|
+
"description": "Features to use for the command/operation."
|
|
1529
|
+
},
|
|
1530
|
+
"geometry": {
|
|
1531
|
+
"$ref": "#/definitions/GeometryLike",
|
|
1532
|
+
"description": "The geometry to use for the command/operation."
|
|
1533
|
+
},
|
|
1534
|
+
"maps": {
|
|
1535
|
+
"$ref": "MapsLike",
|
|
1536
|
+
"description": "Map(s) to use for the command/operation."
|
|
1537
|
+
},
|
|
1538
|
+
"showNotifications": {
|
|
1539
|
+
"description": "Whether to show UI notifications.",
|
|
1540
|
+
"type": "boolean"
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
"type": "object"
|
|
1544
|
+
},
|
|
1392
1545
|
"DownloadArgs": {
|
|
1393
1546
|
"additionalProperties": false,
|
|
1394
1547
|
"description": "Arguments for the system.download-file operation.",
|
|
@@ -1470,6 +1623,21 @@
|
|
|
1470
1623
|
],
|
|
1471
1624
|
"description": "Symbols supported for drawing."
|
|
1472
1625
|
},
|
|
1626
|
+
"EditCommandArgs": {
|
|
1627
|
+
"additionalProperties": false,
|
|
1628
|
+
"description": "Arguments for the \"edit.add-features\", \"edit.update-features\" and \"edit.delete-features\" commands. Web only.",
|
|
1629
|
+
"properties": {
|
|
1630
|
+
"features": {
|
|
1631
|
+
"$ref": "#/definitions/FeaturesLike",
|
|
1632
|
+
"description": "Features to use for the command/operation."
|
|
1633
|
+
},
|
|
1634
|
+
"showNotifications": {
|
|
1635
|
+
"description": "Whether to show UI notifications.",
|
|
1636
|
+
"type": "boolean"
|
|
1637
|
+
}
|
|
1638
|
+
},
|
|
1639
|
+
"type": "object"
|
|
1640
|
+
},
|
|
1473
1641
|
"EditGeometryArgs": {
|
|
1474
1642
|
"additionalProperties": false,
|
|
1475
1643
|
"description": "Arguments for the \"sketching.edit-geometry\" operation.",
|
|
@@ -5699,6 +5867,116 @@
|
|
|
5699
5867
|
"drawing.set-sync:input": {
|
|
5700
5868
|
"type": "boolean"
|
|
5701
5869
|
},
|
|
5870
|
+
"edit.add-feature": {
|
|
5871
|
+
"description": "Adds a feature to a particular layer. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
5872
|
+
"enum": [
|
|
5873
|
+
"edit.add-feature"
|
|
5874
|
+
]
|
|
5875
|
+
},
|
|
5876
|
+
"edit.add-feature:input": {
|
|
5877
|
+
"anyOf": [
|
|
5878
|
+
{
|
|
5879
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5880
|
+
},
|
|
5881
|
+
{
|
|
5882
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5883
|
+
},
|
|
5884
|
+
{
|
|
5885
|
+
"items": {
|
|
5886
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5887
|
+
},
|
|
5888
|
+
"type": "array"
|
|
5889
|
+
}
|
|
5890
|
+
]
|
|
5891
|
+
},
|
|
5892
|
+
"edit.create-feature": {
|
|
5893
|
+
"description": "Creates a new `Feature` for the supplied layer from the supplied data.",
|
|
5894
|
+
"enum": [
|
|
5895
|
+
"edit.create-feature"
|
|
5896
|
+
]
|
|
5897
|
+
},
|
|
5898
|
+
"edit.create-feature:input": {
|
|
5899
|
+
"$ref": "#/definitions/CreateFeatureArgs"
|
|
5900
|
+
},
|
|
5901
|
+
"edit.create-feature:output": {
|
|
5902
|
+
"$ref": "#/definitions/HasFeatures"
|
|
5903
|
+
},
|
|
5904
|
+
"edit.delete-features": {
|
|
5905
|
+
"description": "Deletes the given feature or features from their feature sources. `EditCommandArgs` is not supported on Mobile.",
|
|
5906
|
+
"enum": [
|
|
5907
|
+
"edit.delete-features"
|
|
5908
|
+
]
|
|
5909
|
+
},
|
|
5910
|
+
"edit.delete-features:input": {
|
|
5911
|
+
"anyOf": [
|
|
5912
|
+
{
|
|
5913
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5914
|
+
},
|
|
5915
|
+
{
|
|
5916
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5917
|
+
},
|
|
5918
|
+
{
|
|
5919
|
+
"items": {
|
|
5920
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5921
|
+
},
|
|
5922
|
+
"type": "array"
|
|
5923
|
+
}
|
|
5924
|
+
]
|
|
5925
|
+
},
|
|
5926
|
+
"edit.display-add-feature": {
|
|
5927
|
+
"description": "Display a form for adding a feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
5928
|
+
"enum": [
|
|
5929
|
+
"edit.display-add-feature"
|
|
5930
|
+
]
|
|
5931
|
+
},
|
|
5932
|
+
"edit.display-add-feature:input": {
|
|
5933
|
+
"anyOf": [
|
|
5934
|
+
{
|
|
5935
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource"
|
|
5936
|
+
},
|
|
5937
|
+
{
|
|
5938
|
+
"$ref": "#/definitions/DisplayAddFeatureArgs"
|
|
5939
|
+
}
|
|
5940
|
+
]
|
|
5941
|
+
},
|
|
5942
|
+
"edit.display-update-feature": {
|
|
5943
|
+
"description": "Display a form for updating a feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
|
|
5944
|
+
"enum": [
|
|
5945
|
+
"edit.display-update-feature"
|
|
5946
|
+
]
|
|
5947
|
+
},
|
|
5948
|
+
"edit.display-update-feature:input": {
|
|
5949
|
+
"anyOf": [
|
|
5950
|
+
{
|
|
5951
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5952
|
+
},
|
|
5953
|
+
{
|
|
5954
|
+
"$ref": "#/definitions/DisplayUpdateFeatureArgs"
|
|
5955
|
+
}
|
|
5956
|
+
]
|
|
5957
|
+
},
|
|
5958
|
+
"edit.update-feature": {
|
|
5959
|
+
"description": "Updates a feature. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
|
|
5960
|
+
"enum": [
|
|
5961
|
+
"edit.update-feature"
|
|
5962
|
+
]
|
|
5963
|
+
},
|
|
5964
|
+
"edit.update-feature:input": {
|
|
5965
|
+
"anyOf": [
|
|
5966
|
+
{
|
|
5967
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5968
|
+
},
|
|
5969
|
+
{
|
|
5970
|
+
"$ref": "#/definitions/EditCommandArgs"
|
|
5971
|
+
},
|
|
5972
|
+
{
|
|
5973
|
+
"items": {
|
|
5974
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
5975
|
+
},
|
|
5976
|
+
"type": "array"
|
|
5977
|
+
}
|
|
5978
|
+
]
|
|
5979
|
+
},
|
|
5702
5980
|
"esri.Color": {
|
|
5703
5981
|
"$ref": "esri/Color"
|
|
5704
5982
|
},
|
|
@@ -17715,6 +17993,86 @@
|
|
|
17715
17993
|
],
|
|
17716
17994
|
"type": "object"
|
|
17717
17995
|
},
|
|
17996
|
+
{
|
|
17997
|
+
"additionalProperties": false,
|
|
17998
|
+
"properties": {
|
|
17999
|
+
"arguments": {
|
|
18000
|
+
"$ref": "#/definitions/edit.add-feature:input"
|
|
18001
|
+
},
|
|
18002
|
+
"name": {
|
|
18003
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
18004
|
+
}
|
|
18005
|
+
},
|
|
18006
|
+
"required": [
|
|
18007
|
+
"name",
|
|
18008
|
+
"arguments"
|
|
18009
|
+
],
|
|
18010
|
+
"type": "object"
|
|
18011
|
+
},
|
|
18012
|
+
{
|
|
18013
|
+
"additionalProperties": false,
|
|
18014
|
+
"properties": {
|
|
18015
|
+
"arguments": {
|
|
18016
|
+
"$ref": "#/definitions/edit.delete-features:input"
|
|
18017
|
+
},
|
|
18018
|
+
"name": {
|
|
18019
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
18020
|
+
}
|
|
18021
|
+
},
|
|
18022
|
+
"required": [
|
|
18023
|
+
"name",
|
|
18024
|
+
"arguments"
|
|
18025
|
+
],
|
|
18026
|
+
"type": "object"
|
|
18027
|
+
},
|
|
18028
|
+
{
|
|
18029
|
+
"additionalProperties": false,
|
|
18030
|
+
"properties": {
|
|
18031
|
+
"arguments": {
|
|
18032
|
+
"$ref": "#/definitions/edit.display-add-feature:input"
|
|
18033
|
+
},
|
|
18034
|
+
"name": {
|
|
18035
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
18036
|
+
}
|
|
18037
|
+
},
|
|
18038
|
+
"required": [
|
|
18039
|
+
"name",
|
|
18040
|
+
"arguments"
|
|
18041
|
+
],
|
|
18042
|
+
"type": "object"
|
|
18043
|
+
},
|
|
18044
|
+
{
|
|
18045
|
+
"additionalProperties": false,
|
|
18046
|
+
"properties": {
|
|
18047
|
+
"arguments": {
|
|
18048
|
+
"$ref": "#/definitions/edit.display-update-feature:input"
|
|
18049
|
+
},
|
|
18050
|
+
"name": {
|
|
18051
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
18052
|
+
}
|
|
18053
|
+
},
|
|
18054
|
+
"required": [
|
|
18055
|
+
"name",
|
|
18056
|
+
"arguments"
|
|
18057
|
+
],
|
|
18058
|
+
"type": "object"
|
|
18059
|
+
},
|
|
18060
|
+
{
|
|
18061
|
+
"additionalProperties": false,
|
|
18062
|
+
"properties": {
|
|
18063
|
+
"arguments": {
|
|
18064
|
+
"$ref": "#/definitions/edit.update-feature:input"
|
|
18065
|
+
},
|
|
18066
|
+
"name": {
|
|
18067
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
18068
|
+
}
|
|
18069
|
+
},
|
|
18070
|
+
"required": [
|
|
18071
|
+
"name",
|
|
18072
|
+
"arguments"
|
|
18073
|
+
],
|
|
18074
|
+
"type": "object"
|
|
18075
|
+
},
|
|
17718
18076
|
{
|
|
17719
18077
|
"additionalProperties": false,
|
|
17720
18078
|
"properties": {
|
|
@@ -19466,6 +19824,21 @@
|
|
|
19466
19824
|
{
|
|
19467
19825
|
"$ref": "#/definitions/drawing.set-sync"
|
|
19468
19826
|
},
|
|
19827
|
+
{
|
|
19828
|
+
"$ref": "#/definitions/edit.add-feature"
|
|
19829
|
+
},
|
|
19830
|
+
{
|
|
19831
|
+
"$ref": "#/definitions/edit.delete-features"
|
|
19832
|
+
},
|
|
19833
|
+
{
|
|
19834
|
+
"$ref": "#/definitions/edit.display-add-feature"
|
|
19835
|
+
},
|
|
19836
|
+
{
|
|
19837
|
+
"$ref": "#/definitions/edit.display-update-feature"
|
|
19838
|
+
},
|
|
19839
|
+
{
|
|
19840
|
+
"$ref": "#/definitions/edit.update-feature"
|
|
19841
|
+
},
|
|
19469
19842
|
{
|
|
19470
19843
|
"$ref": "#/definitions/geocode.batch-geocode"
|
|
19471
19844
|
},
|
|
@@ -19946,6 +20319,22 @@
|
|
|
19946
20319
|
],
|
|
19947
20320
|
"type": "object"
|
|
19948
20321
|
},
|
|
20322
|
+
{
|
|
20323
|
+
"additionalProperties": false,
|
|
20324
|
+
"properties": {
|
|
20325
|
+
"arguments": {
|
|
20326
|
+
"$ref": "#/definitions/edit.create-feature:input"
|
|
20327
|
+
},
|
|
20328
|
+
"name": {
|
|
20329
|
+
"$ref": "#/definitions/edit.create-feature"
|
|
20330
|
+
}
|
|
20331
|
+
},
|
|
20332
|
+
"required": [
|
|
20333
|
+
"name",
|
|
20334
|
+
"arguments"
|
|
20335
|
+
],
|
|
20336
|
+
"type": "object"
|
|
20337
|
+
},
|
|
19949
20338
|
{
|
|
19950
20339
|
"additionalProperties": false,
|
|
19951
20340
|
"properties": {
|
|
@@ -20734,6 +21123,9 @@
|
|
|
20734
21123
|
{
|
|
20735
21124
|
"$ref": "#/definitions/drawing.get-default-symbol3-d"
|
|
20736
21125
|
},
|
|
21126
|
+
{
|
|
21127
|
+
"$ref": "#/definitions/edit.create-feature"
|
|
21128
|
+
},
|
|
20737
21129
|
{
|
|
20738
21130
|
"$ref": "#/definitions/geolocation.get-current-state"
|
|
20739
21131
|
},
|
|
@@ -558,6 +558,33 @@
|
|
|
558
558
|
"auth.token-refreshed:input": {
|
|
559
559
|
"type": "string"
|
|
560
560
|
},
|
|
561
|
+
"edit.feature-added": {
|
|
562
|
+
"description": "Raised when a feature is added.",
|
|
563
|
+
"enum": [
|
|
564
|
+
"edit.feature-added"
|
|
565
|
+
]
|
|
566
|
+
},
|
|
567
|
+
"edit.feature-added:input": {
|
|
568
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
569
|
+
},
|
|
570
|
+
"edit.feature-deleted": {
|
|
571
|
+
"description": "Raised when a feature is deleted.",
|
|
572
|
+
"enum": [
|
|
573
|
+
"edit.feature-deleted"
|
|
574
|
+
]
|
|
575
|
+
},
|
|
576
|
+
"edit.feature-deleted:input": {
|
|
577
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
578
|
+
},
|
|
579
|
+
"edit.feature-updated": {
|
|
580
|
+
"description": "Raised when a feature is updated.",
|
|
581
|
+
"enum": [
|
|
582
|
+
"edit.feature-updated"
|
|
583
|
+
]
|
|
584
|
+
},
|
|
585
|
+
"edit.feature-updated:input": {
|
|
586
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
587
|
+
},
|
|
561
588
|
"esri.Color": {
|
|
562
589
|
"$ref": "esri/Color"
|
|
563
590
|
},
|
|
@@ -9299,6 +9326,15 @@
|
|
|
9299
9326
|
{
|
|
9300
9327
|
"$ref": "#/definitions/auth.token-refreshed"
|
|
9301
9328
|
},
|
|
9329
|
+
{
|
|
9330
|
+
"$ref": "#/definitions/edit.feature-added"
|
|
9331
|
+
},
|
|
9332
|
+
{
|
|
9333
|
+
"$ref": "#/definitions/edit.feature-deleted"
|
|
9334
|
+
},
|
|
9335
|
+
{
|
|
9336
|
+
"$ref": "#/definitions/edit.feature-updated"
|
|
9337
|
+
},
|
|
9302
9338
|
{
|
|
9303
9339
|
"$ref": "#/definitions/geolocation.accuracy-changed"
|
|
9304
9340
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "46.
|
|
3
|
+
"version": "46.1.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "VertiGIS Viewer Specification",
|
|
6
6
|
"type": "module",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@arcgis/core": "4.21.2",
|
|
41
|
-
"@vertigis/arcgis-extensions": "34.2.
|
|
41
|
+
"@vertigis/arcgis-extensions": "34.2.3",
|
|
42
42
|
"@types/glob": "7.1.4",
|
|
43
43
|
"@types/json-stable-stringify": "1.0.33",
|
|
44
44
|
"@types/node": "14.14.41",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED