@vertigis/viewer-spec 45.1.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/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/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/registry/map.d.ts +5 -0
- package/messaging/registry/sketching.d.ts +310 -23
- package/messaging/registry/sketching.js +1 -1
- package/messaging/registry/ui.d.ts +4 -3
- package/messaging/schema/common-action.schema.json +592 -8
- package/messaging/schema/common-event.schema.json +36 -0
- package/messaging/schema/mobile-action.schema.json +547 -17
- package/messaging/schema/web-action.schema.json +875 -26
- package/messaging/schema/web-event.schema.json +36 -0
- package/package.json +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -302,6 +302,33 @@
|
|
|
302
302
|
"auth.token-refreshed:input": {
|
|
303
303
|
"type": "string"
|
|
304
304
|
},
|
|
305
|
+
"edit.feature-added": {
|
|
306
|
+
"description": "Raised when a feature is added.",
|
|
307
|
+
"enum": [
|
|
308
|
+
"edit.feature-added"
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
"edit.feature-added:input": {
|
|
312
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
313
|
+
},
|
|
314
|
+
"edit.feature-deleted": {
|
|
315
|
+
"description": "Raised when a feature is deleted.",
|
|
316
|
+
"enum": [
|
|
317
|
+
"edit.feature-deleted"
|
|
318
|
+
]
|
|
319
|
+
},
|
|
320
|
+
"edit.feature-deleted:input": {
|
|
321
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
322
|
+
},
|
|
323
|
+
"edit.feature-updated": {
|
|
324
|
+
"description": "Raised when a feature is updated.",
|
|
325
|
+
"enum": [
|
|
326
|
+
"edit.feature-updated"
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
"edit.feature-updated:input": {
|
|
330
|
+
"$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
|
|
331
|
+
},
|
|
305
332
|
"esri.Point": {
|
|
306
333
|
"$ref": "esri/geometry/Point"
|
|
307
334
|
},
|
|
@@ -8844,6 +8871,15 @@
|
|
|
8844
8871
|
{
|
|
8845
8872
|
"$ref": "#/definitions/auth.token-refreshed"
|
|
8846
8873
|
},
|
|
8874
|
+
{
|
|
8875
|
+
"$ref": "#/definitions/edit.feature-added"
|
|
8876
|
+
},
|
|
8877
|
+
{
|
|
8878
|
+
"$ref": "#/definitions/edit.feature-deleted"
|
|
8879
|
+
},
|
|
8880
|
+
{
|
|
8881
|
+
"$ref": "#/definitions/edit.feature-updated"
|
|
8882
|
+
},
|
|
8847
8883
|
{
|
|
8848
8884
|
"$ref": "#/definitions/geolocation.accuracy-changed"
|
|
8849
8885
|
},
|