@vertigis/viewer-spec 47.3.0 → 47.4.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.
@@ -10,6 +10,11 @@ export interface FeatureInfoModelProperties extends CommonFeatureDetailsModelPro
10
10
  * collection.
11
11
  */
12
12
  onFeatureAdd?: Action;
13
+ /**
14
+ * A command or set of commands to execute when an interactive feature
15
+ * editing session begins.
16
+ */
17
+ onFeatureEdit?: Action;
13
18
  /**
14
19
  * A command or set of commands to execute when a feature is removed from
15
20
  * the collection.
@@ -19,4 +24,14 @@ export interface FeatureInfoModelProperties extends CommonFeatureDetailsModelPro
19
24
  * A command or set of commands to execute when a related record is clicked.
20
25
  */
21
26
  onRelatedRecordClick?: Action;
27
+ /**
28
+ * If true, the feature details instance will show a button that runs the
29
+ * action that places the feature in edit mode.
30
+ */
31
+ showEditButton?: boolean;
32
+ /**
33
+ * If true, the feature details instance will show a button that deletes the
34
+ * feature permanently.
35
+ */
36
+ showDeleteButton?: boolean;
22
37
  }
@@ -85,7 +85,7 @@ export interface AttachmentEventArgs {
85
85
  attachment: Attachment;
86
86
  }
87
87
  /**
88
- * Options for editing operations that display a UI.
88
+ * Options for interactive feature editing sessions.
89
89
  */
90
90
  export interface EditUIOptions {
91
91
  /**
@@ -114,18 +114,29 @@ export interface EditOptions {
114
114
  * Whether to allow editing of feature attributes.
115
115
  */
116
116
  editAttributes?: boolean;
117
- /**
118
- * Whether to allow editing of feature attachments.
119
- */
120
- editAttachments?: boolean;
121
117
  /**
122
118
  * Options for the geometry editing session.
123
119
  */
124
120
  editGeometryOptions?: EditGeometryOptions;
125
121
  }
126
122
  /**
127
- * Arguments for the "edit.create-feature" operation. Also may be supplied to
128
- * augment an interactive editing session. A valid feature layer is required.
123
+ * Used to update an in-progress interactive feature editing session with new
124
+ * attributes, attachments or geometry. Web only.
125
+ */
126
+ export interface UpdateSessionArgs extends HasGeometry {
127
+ /**
128
+ * A collection of attributes that apply or are to be applied to the
129
+ * currently edited feature.
130
+ */
131
+ attributes?: Record<string, string | number>;
132
+ /**
133
+ * A collection of attachments that apply or are to be applied to the
134
+ * currently edited feature.
135
+ */
136
+ attachments?: Attachment[];
137
+ }
138
+ /**
139
+ * Arguments for the "edit.create-feature" operation. A valid feature layer is required.
129
140
  * The geometry is required for non-tabular features. Web only.
130
141
  */
131
142
  export interface CreateFeatureArgs extends HasGeometry, HasLayers, HasMaps, EditUIOptions {
@@ -138,20 +149,37 @@ export interface CreateFeatureArgs extends HasGeometry, HasLayers, HasMaps, Edit
138
149
  * layer. The default or first template will be used if not set.
139
150
  */
140
151
  templateName?: string;
152
+ /**
153
+ * A type id to use as a starting point for this feature. This may return
154
+ * one or more templates and requires a layer with types defined.
155
+ */
156
+ typeId?: string;
141
157
  }
142
158
  /**
143
159
  * Arguments for the "edit.display-add-features" command. Web only.
144
160
  */
145
- export interface DisplayAddFeatureArgs extends CreateFeatureArgs, HasMaps, HasUITarget, EditOptions, EditUIOptions {
161
+ export interface DisplayAddFeatureArgs extends CreateFeatureArgs, HasMaps, EditOptions, EditUIOptions {
162
+ /**
163
+ * Arguments for the display of the attribute editing form.
164
+ */
165
+ formUITarget?: HasUITarget;
166
+ /**
167
+ * Arguments for the display of the template picker.
168
+ */
169
+ templateUITarget?: HasUITarget;
146
170
  }
147
171
  /**
148
172
  * Arguments for the "edit.display-update-features" operation. Web only.
149
173
  */
150
- export interface DisplayUpdateFeatureArgs extends EditCommandArgs, HasGeometry, HasMaps, EditOptions {
174
+ export interface DisplayUpdateFeatureArgs extends EditCommandArgs, HasGeometry, HasMaps, HasUITarget, EditOptions {
151
175
  /**
152
176
  * A collection of attributes to automatically apply to the updated feature.
153
177
  */
154
178
  featureAttributes?: Record<string, unknown>;
179
+ /**
180
+ * Whether to allow editing of feature attachments. Web only.
181
+ */
182
+ editAttachments?: boolean;
155
183
  }
156
184
  /**
157
185
  * Arguments for the "edit.add-features", "edit.update-features" and
@@ -176,34 +204,60 @@ export declare class EditCommands extends CommandRegistry {
176
204
  */
177
205
  get deleteAttachment(): Command<DeleteAttachmentArgs>;
178
206
  /**
179
- * Adds a feature to a particular layer. `Feature[]` and
207
+ * Adds a feature to a particular layer. `Features` and
180
208
  * `EditCommandArgs` are not supported on Mobile.
181
209
  */
182
- get addFeature(): Command<Feature | Feature[] | EditCommandArgs>;
210
+ get addFeature(): Command<Feature | Features | EditCommandArgs>;
211
+ /**
212
+ * Cancels active editing sessions and discards any changes. If a feature is
213
+ * supplied only the sessions using that feature will be cancelled.
214
+ *
215
+ * @webOnly
216
+ */
217
+ get cancel(): Command<Features>;
218
+ /**
219
+ * Completes active editing sessions and submits any changes made to the
220
+ * attributes, attachments or geometry to the feature source. If a feature
221
+ * is supplied, only sessions using that feature will close.
222
+ *
223
+ * @webOnly
224
+ */
225
+ get complete(): Command<Features>;
183
226
  /**
184
227
  * Deletes the given feature or features from their feature sources.
185
228
  * `EditCommandArgs` is not supported on Mobile.
186
229
  */
187
- get deleteFeatures(): Command<Feature | Feature[] | EditCommandArgs>;
230
+ get deleteFeatures(): Command<Features | EditCommandArgs>;
188
231
  /**
189
- * Display a form for adding a feature. `DisplayAddFeatureArgs` is not
190
- * supported on Mobile.
232
+ * Begin an interactive feature editing session with a new feature.
233
+ * `DisplayAddFeatureArgs` is not supported on Mobile.
191
234
  */
192
235
  get displayAddFeature(): Command<FeatureSource | DisplayAddFeatureArgs>;
193
236
  /**
194
- * Display a form for updating a feature. `DisplayUpdateFeatureArgs` is not
195
- * supported on Mobile.
237
+ * Begin an interactive feature editing session with an existing feature.
238
+ * `DisplayUpdateFeatureArgs` is not supported on Mobile.
196
239
  */
197
240
  get displayUpdateFeature(): Command<Feature | DisplayUpdateFeatureArgs>;
198
241
  /**
199
- * Updates a feature. `Feature[]` and `EditCommandArgs` are not
200
- * supported on Mobile.
242
+ * Updates a layer feature or features. Edits to the geometry and attributes
243
+ * of the supplied features will be committed to their respective feature sources.
244
+ * `Features` and `EditCommandArgs` are not supported on Mobile.
201
245
  */
202
- get updateFeature(): Command<Feature | Feature[] | EditCommandArgs>;
246
+ get updateFeature(): Command<Feature | Features | EditCommandArgs>;
247
+ /**
248
+ * Updates an in-progress interactive feature editing session with new
249
+ * attributes, attachments, or geometry. These will be immediately applied
250
+ * to the current session, if one is active.
251
+ *
252
+ * @webOnly
253
+ */
254
+ get updateSession(): Command<UpdateSessionArgs>;
203
255
  }
204
256
  export declare class EditOperations extends OperationRegistry {
205
257
  /**
206
- * Creates a new `Feature` for the supplied layer from the supplied data.
258
+ * Creates a new feature for the supplied feature source from the supplied
259
+ * configuration. This operation does not add the feature to the source, but
260
+ * returns the feature for further processing.
207
261
  *
208
262
  * @webOnly
209
263
  */
@@ -229,15 +283,25 @@ export declare class EditEvents extends EventRegistry {
229
283
  */
230
284
  get attachmentDeleted(): Event<AttachmentEventArgs>;
231
285
  /**
232
- * Raised when a feature is added.
286
+ * Raised when a new feature is added to a feature source.
233
287
  */
234
288
  get featureAdded(): Event<Feature>;
235
289
  /**
236
- * Raised when a feature is deleted.
290
+ * Raised when a feature is deleted from a feature source.
237
291
  */
238
292
  get featureDeleted(): Event<Feature>;
239
293
  /**
240
- * Raised when a feature is updated.
294
+ * Raised when the attributes or geometry of a feature from a feature source
295
+ * are updated.
241
296
  */
242
297
  get featureUpdated(): Event<Feature>;
298
+ /**
299
+ * Raised when an interactive feature editing session is updated with new
300
+ * attributes, attachments, or feature geometry. The payload of this event
301
+ * represents the current state of that session and has not yet been applied
302
+ * to the feature.
303
+ *
304
+ * @webOnly
305
+ */
306
+ get sessionUpdated(): Event<UpdateSessionArgs>;
243
307
  }
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class EditCommands extends CommandRegistry{get addAttachment(){return this._messages.command("edit.add-attachment")}get deleteAttachment(){return this._messages.command("edit.delete-attachment")}get addFeature(){return this._messages.command("edit.add-feature")}get deleteFeatures(){return this._messages.command("edit.delete-features")}get displayAddFeature(){return this._messages.command("edit.display-add-feature")}get displayUpdateFeature(){return this._messages.command("edit.display-update-feature")}get updateFeature(){return this._messages.command("edit.update-feature")}}export class EditOperations extends OperationRegistry{get createFeature(){return this._messages.operation("edit.create-feature")}}export class EditEvents extends EventRegistry{get attachmentAdded(){return this._messages.event("edit.attachment-added")}get attachmentUpdated(){return this._messages.event("edit.attachment-updated")}get attachmentDeleted(){return this._messages.event("edit.attachment-deleted")}get featureAdded(){return this._messages.event("edit.feature-added")}get featureDeleted(){return this._messages.event("edit.feature-deleted")}get featureUpdated(){return this._messages.event("edit.feature-updated")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export class EditCommands extends CommandRegistry{get addAttachment(){return this._messages.command("edit.add-attachment")}get deleteAttachment(){return this._messages.command("edit.delete-attachment")}get addFeature(){return this._messages.command("edit.add-feature")}get cancel(){return this._messages.command("edit.cancel")}get complete(){return this._messages.command("edit.complete")}get deleteFeatures(){return this._messages.command("edit.delete-features")}get displayAddFeature(){return this._messages.command("edit.display-add-feature")}get displayUpdateFeature(){return this._messages.command("edit.display-update-feature")}get updateFeature(){return this._messages.command("edit.update-feature")}get updateSession(){return this._messages.command("edit.update-session")}}export class EditOperations extends OperationRegistry{get createFeature(){return this._messages.operation("edit.create-feature")}}export class EditEvents extends EventRegistry{get attachmentAdded(){return this._messages.event("edit.attachment-added")}get attachmentUpdated(){return this._messages.event("edit.attachment-updated")}get attachmentDeleted(){return this._messages.event("edit.attachment-deleted")}get featureAdded(){return this._messages.event("edit.feature-added")}get featureDeleted(){return this._messages.event("edit.feature-deleted")}get featureUpdated(){return this._messages.event("edit.feature-updated")}get sessionUpdated(){return this._messages.event("edit.session-updated")}}
@@ -282,8 +282,6 @@ export declare class UICommands extends CommandRegistry {
282
282
  get hideBusyState(): Command;
283
283
  /**
284
284
  * Hides a notification previously shown to the user.
285
- *
286
- * @mobileOnly
287
285
  */
288
286
  get hideNotification(): Command;
289
287
  /**
@@ -798,13 +798,6 @@
798
798
  "additionalProperties": false,
799
799
  "description": "Arguments for the \"edit.display-add-features\" command. Web only.",
800
800
  "properties": {
801
- "attributes": {
802
- "description": "Optional layout XML attributes to be used for the transient UI container."
803
- },
804
- "editAttachments": {
805
- "description": "Whether to allow editing of feature attachments.",
806
- "type": "boolean"
807
- },
808
801
  "editAttributes": {
809
802
  "description": "Whether to allow editing of feature attributes.",
810
803
  "type": "boolean"
@@ -820,14 +813,14 @@
820
813
  "featureAttributes": {
821
814
  "description": "A collection of attributes to apply to the new feature."
822
815
  },
816
+ "formUITarget": {
817
+ "$ref": "#/definitions/HasUITarget",
818
+ "description": "Arguments for the display of the attribute editing form."
819
+ },
823
820
  "geometry": {
824
821
  "$ref": "#/definitions/GeometryLike",
825
822
  "description": "The geometry to use for the command/operation."
826
823
  },
827
- "icon": {
828
- "description": "Optional icon that may be used by the transient UI container.",
829
- "type": "string"
830
- },
831
824
  "layers": {
832
825
  "$ref": "#/definitions/LayersLike",
833
826
  "description": "Layer(s) to use for the command/operation."
@@ -844,10 +837,6 @@
844
837
  ],
845
838
  "type": "string"
846
839
  },
847
- "parent": {
848
- "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.",
849
- "type": "string"
850
- },
851
840
  "showNotifications": {
852
841
  "description": "Whether to show UI notifications.",
853
842
  "type": "boolean"
@@ -859,6 +848,14 @@
859
848
  "templateName": {
860
849
  "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.",
861
850
  "type": "string"
851
+ },
852
+ "templateUITarget": {
853
+ "$ref": "#/definitions/HasUITarget",
854
+ "description": "Arguments for the display of the template picker."
855
+ },
856
+ "typeId": {
857
+ "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.",
858
+ "type": "string"
862
859
  }
863
860
  },
864
861
  "type": "object"
@@ -905,8 +902,11 @@
905
902
  "additionalProperties": false,
906
903
  "description": "Arguments for the \"edit.display-update-features\" operation. Web only.",
907
904
  "properties": {
905
+ "attributes": {
906
+ "description": "Optional layout XML attributes to be used for the transient UI container."
907
+ },
908
908
  "editAttachments": {
909
- "description": "Whether to allow editing of feature attachments.",
909
+ "description": "Whether to allow editing of feature attachments. Web only.",
910
910
  "type": "boolean"
911
911
  },
912
912
  "editAttributes": {
@@ -932,10 +932,18 @@
932
932
  "$ref": "#/definitions/GeometryLike",
933
933
  "description": "The geometry to use for the command/operation."
934
934
  },
935
+ "icon": {
936
+ "description": "Optional icon that may be used by the transient UI container.",
937
+ "type": "string"
938
+ },
935
939
  "maps": {
936
940
  "$ref": "MapsLike",
937
941
  "description": "Map(s) to use for the command/operation."
938
942
  },
943
+ "parent": {
944
+ "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.",
945
+ "type": "string"
946
+ },
939
947
  "showNotifications": {
940
948
  "description": "Whether to show UI notifications.",
941
949
  "type": "boolean"
@@ -1421,6 +1429,24 @@
1421
1429
  },
1422
1430
  "type": "object"
1423
1431
  },
1432
+ "HasUITarget": {
1433
+ "additionalProperties": false,
1434
+ "description": "An object with arguments for a command or operation that can display temporary UI.",
1435
+ "properties": {
1436
+ "attributes": {
1437
+ "description": "Optional layout XML attributes to be used for the transient UI container."
1438
+ },
1439
+ "icon": {
1440
+ "description": "Optional icon that may be used by the transient UI container.",
1441
+ "type": "string"
1442
+ },
1443
+ "parent": {
1444
+ "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.",
1445
+ "type": "string"
1446
+ }
1447
+ },
1448
+ "type": "object"
1449
+ },
1424
1450
  "IdentifyArgs": {
1425
1451
  "additionalProperties": false,
1426
1452
  "description": "Arguments for the tasks.identify operation.",
@@ -2425,24 +2451,43 @@
2425
2451
  ]
2426
2452
  },
2427
2453
  "edit.add-feature": {
2428
- "description": "Adds a feature to a particular layer. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
2454
+ "description": "Adds a feature to a particular layer. `Features` and `EditCommandArgs` are not supported on Mobile.",
2429
2455
  "enum": [
2430
2456
  "edit.add-feature"
2431
2457
  ]
2432
2458
  },
2433
2459
  "edit.add-feature:input": {
2434
2460
  "anyOf": [
2461
+ {
2462
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
2463
+ },
2435
2464
  {
2436
2465
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2437
2466
  },
2438
2467
  {
2439
- "$ref": "#/definitions/EditCommandArgs"
2468
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
2469
+ },
2470
+ {
2471
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
2440
2472
  },
2441
2473
  {
2442
2474
  "items": {
2443
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2475
+ "anyOf": [
2476
+ {
2477
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2478
+ },
2479
+ {
2480
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
2481
+ }
2482
+ ]
2444
2483
  },
2445
2484
  "type": "array"
2485
+ },
2486
+ {
2487
+ "$ref": "#/definitions/Results"
2488
+ },
2489
+ {
2490
+ "$ref": "#/definitions/EditCommandArgs"
2446
2491
  }
2447
2492
  ]
2448
2493
  },
@@ -2463,22 +2508,41 @@
2463
2508
  },
2464
2509
  "edit.delete-features:input": {
2465
2510
  "anyOf": [
2511
+ {
2512
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
2513
+ },
2466
2514
  {
2467
2515
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2468
2516
  },
2469
2517
  {
2470
- "$ref": "#/definitions/EditCommandArgs"
2518
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
2519
+ },
2520
+ {
2521
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
2471
2522
  },
2472
2523
  {
2473
2524
  "items": {
2474
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2525
+ "anyOf": [
2526
+ {
2527
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2528
+ },
2529
+ {
2530
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
2531
+ }
2532
+ ]
2475
2533
  },
2476
2534
  "type": "array"
2535
+ },
2536
+ {
2537
+ "$ref": "#/definitions/Results"
2538
+ },
2539
+ {
2540
+ "$ref": "#/definitions/EditCommandArgs"
2477
2541
  }
2478
2542
  ]
2479
2543
  },
2480
2544
  "edit.display-add-feature": {
2481
- "description": "Display a form for adding a feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
2545
+ "description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
2482
2546
  "enum": [
2483
2547
  "edit.display-add-feature"
2484
2548
  ]
@@ -2494,7 +2558,7 @@
2494
2558
  ]
2495
2559
  },
2496
2560
  "edit.display-update-feature": {
2497
- "description": "Display a form for updating a feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
2561
+ "description": "Begin an interactive feature editing session with an existing feature. `DisplayUpdateFeatureArgs` is not supported on Mobile.",
2498
2562
  "enum": [
2499
2563
  "edit.display-update-feature"
2500
2564
  ]
@@ -2510,24 +2574,43 @@
2510
2574
  ]
2511
2575
  },
2512
2576
  "edit.update-feature": {
2513
- "description": "Updates a feature. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
2577
+ "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.",
2514
2578
  "enum": [
2515
2579
  "edit.update-feature"
2516
2580
  ]
2517
2581
  },
2518
2582
  "edit.update-feature:input": {
2519
2583
  "anyOf": [
2584
+ {
2585
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
2586
+ },
2520
2587
  {
2521
2588
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2522
2589
  },
2523
2590
  {
2524
- "$ref": "#/definitions/EditCommandArgs"
2591
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
2592
+ },
2593
+ {
2594
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
2525
2595
  },
2526
2596
  {
2527
2597
  "items": {
2528
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2598
+ "anyOf": [
2599
+ {
2600
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2601
+ },
2602
+ {
2603
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
2604
+ }
2605
+ ]
2529
2606
  },
2530
2607
  "type": "array"
2608
+ },
2609
+ {
2610
+ "$ref": "#/definitions/Results"
2611
+ },
2612
+ {
2613
+ "$ref": "#/definitions/EditCommandArgs"
2531
2614
  }
2532
2615
  ]
2533
2616
  },
@@ -11485,6 +11568,12 @@
11485
11568
  "ui.display-notification:input": {
11486
11569
  "$ref": "#/definitions/DisplayNotificationArgs"
11487
11570
  },
11571
+ "ui.hide-notification": {
11572
+ "description": "Hides a notification previously shown to the user.",
11573
+ "enum": [
11574
+ "ui.hide-notification"
11575
+ ]
11576
+ },
11488
11577
  "ui.set-theme": {
11489
11578
  "description": "Sets the color theme of the viewer. The required argument is the new theme's ID.",
11490
11579
  "enum": [
@@ -12491,6 +12580,9 @@
12491
12580
  {
12492
12581
  "$ref": "#/definitions/ui.display-notification"
12493
12582
  },
12583
+ {
12584
+ "$ref": "#/definitions/ui.hide-notification"
12585
+ },
12494
12586
  {
12495
12587
  "$ref": "#/definitions/ui.set-theme"
12496
12588
  },
@@ -365,7 +365,7 @@
365
365
  "type": "string"
366
366
  },
367
367
  "edit.feature-added": {
368
- "description": "Raised when a feature is added.",
368
+ "description": "Raised when a new feature is added to a feature source.",
369
369
  "enum": [
370
370
  "edit.feature-added"
371
371
  ]
@@ -374,7 +374,7 @@
374
374
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
375
375
  },
376
376
  "edit.feature-deleted": {
377
- "description": "Raised when a feature is deleted.",
377
+ "description": "Raised when a feature is deleted from a feature source.",
378
378
  "enum": [
379
379
  "edit.feature-deleted"
380
380
  ]
@@ -383,7 +383,7 @@
383
383
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
384
384
  },
385
385
  "edit.feature-updated": {
386
- "description": "Raised when a feature is updated.",
386
+ "description": "Raised when the attributes or geometry of a feature from a feature source are updated.",
387
387
  "enum": [
388
388
  "edit.feature-updated"
389
389
  ]