@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.
@@ -1,6 +1,325 @@
1
1
  {
2
2
  "$ref": "#/definitions/viewer-spec.Event",
3
3
  "definitions": {
4
+ "@vertigis.arcgis-extensions.FailureMode.FailureMode": {
5
+ "description": "Possible modes of failure when there is an error resolving or initializing an item.",
6
+ "enum": [
7
+ "error",
8
+ "ignore",
9
+ "warn"
10
+ ],
11
+ "type": "string"
12
+ },
13
+ "@vertigis.arcgis-extensions.Hyperlink.HyperlinkProperties": {
14
+ "additionalProperties": false,
15
+ "description": "A hyperlink associated with a feature or layer.",
16
+ "properties": {
17
+ "iconUrl": {
18
+ "description": "See{@linkHyperlink.iconUrl}.",
19
+ "type": "string"
20
+ },
21
+ "target": {
22
+ "description": "See{@linkHyperlink.target}.",
23
+ "type": "string"
24
+ },
25
+ "text": {
26
+ "description": "See{@linkHyperlink.text}.",
27
+ "type": "string"
28
+ },
29
+ "tooltip": {
30
+ "description": "See{@linkHyperlink.tooltip}.",
31
+ "type": "string"
32
+ },
33
+ "url": {
34
+ "description": "See{@linkHyperlink.url}.",
35
+ "type": "string"
36
+ }
37
+ },
38
+ "required": [
39
+ "text",
40
+ "url"
41
+ ],
42
+ "type": "object"
43
+ },
44
+ "@vertigis.arcgis-extensions.data.Feature.FeatureProperties": {
45
+ "additionalProperties": false,
46
+ "description": "Properties that can be passed into the constructor for{@linkFeature}.",
47
+ "properties": {
48
+ "attributes": {
49
+ "anyOf": [
50
+ {},
51
+ {
52
+ "$ref": "Map"
53
+ }
54
+ ],
55
+ "description": "The feature's attributes, keyed by field name."
56
+ },
57
+ "failureMode": {
58
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.FailureMode.FailureMode",
59
+ "description": "See{@linkInitializableBase.failureMode}."
60
+ },
61
+ "geometry": {
62
+ "anyOf": [
63
+ {
64
+ "$ref": "#/definitions/esri.Geometry"
65
+ },
66
+ {
67
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
68
+ },
69
+ {
70
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
71
+ },
72
+ {
73
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
74
+ },
75
+ {
76
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
77
+ },
78
+ {
79
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
80
+ }
81
+ ],
82
+ "description": "The feature's geometry."
83
+ },
84
+ "id": {
85
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
86
+ "type": "string"
87
+ },
88
+ "schema": {
89
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.Schema.SchemaProperties",
90
+ "description": "Metadata about the feature, such as fields, domains, geometry type, etc."
91
+ },
92
+ "settings": {
93
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.FeatureSettings.FeatureSettingsProperties",
94
+ "description": "Settings for this feature."
95
+ },
96
+ "source": {
97
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSource.FeatureSource",
98
+ "description": "The source of the feature."
99
+ }
100
+ },
101
+ "type": "object"
102
+ },
103
+ "@vertigis.arcgis-extensions.data.FeatureSettings.FeatureSettingsProperties": {
104
+ "additionalProperties": false,
105
+ "description": "Properties that can be passed into the constructor for{@linkFeatureSettings}.",
106
+ "properties": {
107
+ "formatSettings": {
108
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties",
109
+ "description": "Settings affecting how feature attributes are formatted."
110
+ },
111
+ "hyperlinkTemplates": {
112
+ "description": "Templates that define hyperlinks associated with the feature. Each template's properties can contain field tokens enclosed in \"{}\", which will be replaced by actual field values. If not explicitly set, these will be inherited from the associated layer extension if there is one.",
113
+ "items": {
114
+ "anyOf": [
115
+ {
116
+ "$ref": "@vertigis.arcgis-extensions.Hyperlink.HyperlinkProperties"
117
+ },
118
+ {
119
+ "$ref": "@vertigis.arcgis-extensions.Hyperlink.Hyperlink"
120
+ }
121
+ ]
122
+ },
123
+ "type": "array"
124
+ },
125
+ "maxAllowableOffset": {
126
+ "description": "See{@linkFeatureSettings.maxAllowableOffset}.",
127
+ "type": "number"
128
+ },
129
+ "outFields": {
130
+ "description": "See{@linkFeatureSettings.outFields}.",
131
+ "items": {
132
+ "type": "string"
133
+ },
134
+ "type": "array"
135
+ },
136
+ "outSpatialReference": {
137
+ "$ref": "#/definitions/esri.SpatialReference",
138
+ "description": "See{@linkFeatureSettings.outSpatialReference}."
139
+ },
140
+ "popupTemplate": {
141
+ "anyOf": [
142
+ {
143
+ "$ref": "#/definitions/esri.PopupTemplate"
144
+ },
145
+ {
146
+ "$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo"
147
+ }
148
+ ],
149
+ "description": "The template for displaying content in a pop-up when the feature is selected. If not explicitly set, it will be inherited from the associated layer extension if there is one."
150
+ },
151
+ "returnGeometry": {
152
+ "description": "See{@linkFeatureSettings.returnGeometry}.",
153
+ "type": "boolean"
154
+ },
155
+ "zoomFactor": {
156
+ "description": "See{@linkFeatureSettings.zoomFactor}.",
157
+ "type": "number"
158
+ },
159
+ "zoomScale": {
160
+ "description": "See{@linkFeatureSettings.zoomScale}.",
161
+ "type": "number"
162
+ }
163
+ },
164
+ "type": "object"
165
+ },
166
+ "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties": {
167
+ "additionalProperties": false,
168
+ "description": "Properties that can be passed into the constructor for{@linkFieldExtension}.",
169
+ "properties": {
170
+ "failureMode": {
171
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.FailureMode.FailureMode",
172
+ "description": "See{@linkInitializableBase.failureMode}."
173
+ },
174
+ "field": {
175
+ "anyOf": [
176
+ {
177
+ "$ref": "#/definitions/esri.Field"
178
+ },
179
+ {
180
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldProperties"
181
+ },
182
+ {
183
+ "type": "string"
184
+ }
185
+ ],
186
+ "description": "The Esri Field object being extended."
187
+ },
188
+ "format": {
189
+ "description": "The field format specifier. This is a standard .NET-style format string containing a `{0}` placeholder that will be replaced by the actual field value.",
190
+ "type": "string"
191
+ },
192
+ "formatSettings": {
193
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties",
194
+ "description": "Settings that affect how values are formatted. Depending on the type of field, some or all of these settings may not be applicable."
195
+ },
196
+ "id": {
197
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
198
+ "type": "string"
199
+ },
200
+ "searchable": {
201
+ "description": "Whether the field is searchable or not.",
202
+ "type": "boolean"
203
+ }
204
+ },
205
+ "type": "object"
206
+ },
207
+ "@vertigis.arcgis-extensions.data.FieldExtension.FieldProperties": {
208
+ "additionalProperties": false,
209
+ "description": "Properties that extend the ArcGis portal representation of a Field.",
210
+ "properties": {
211
+ "$ref": {
212
+ "description": "A field name referring to an existing field in a schema. The field extension will attempt to find an existing field in its parent schema.",
213
+ "type": "string"
214
+ },
215
+ "alias": {
216
+ "description": "The field alias (human-readable name).",
217
+ "type": "string"
218
+ },
219
+ "domain": {
220
+ "$ref": "#/definitions/esri.rest-api.Domain.Domain",
221
+ "description": "A domain object that provides the attribute domain information for the field, if a domain exists."
222
+ },
223
+ "editable": {
224
+ "description": "Whether this field is editable.",
225
+ "type": "boolean"
226
+ },
227
+ "exactMatch": {
228
+ "description": "A Boolean defining whether or not the field is an exact match.",
229
+ "type": "boolean"
230
+ },
231
+ "length": {
232
+ "description": "A number defining how many characters are allowed in a string field.",
233
+ "type": "number"
234
+ },
235
+ "name": {
236
+ "description": "A string defining the field name.",
237
+ "type": "string"
238
+ },
239
+ "nullable": {
240
+ "description": "Whether this field can have a null value.",
241
+ "type": "boolean"
242
+ },
243
+ "type": {
244
+ "$ref": "#/definitions/esri.rest-api.Field.FieldType",
245
+ "description": "Type of the Field. See{@linkFieldType}."
246
+ }
247
+ },
248
+ "type": "object"
249
+ },
250
+ "@vertigis.arcgis-extensions.data.Schema.SchemaProperties": {
251
+ "additionalProperties": false,
252
+ "description": "Properties that can be passed into the constructor for{@linkSchema}.",
253
+ "properties": {
254
+ "displayField": {
255
+ "description": "See{@linkSchema.displayField}.",
256
+ "type": "string"
257
+ },
258
+ "fieldExtensions": {
259
+ "description": "See{@linkSchema.fieldExtensions}.",
260
+ "items": {
261
+ "anyOf": [
262
+ {
263
+ "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties"
264
+ },
265
+ {
266
+ "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtension"
267
+ }
268
+ ]
269
+ },
270
+ "type": "array"
271
+ },
272
+ "fields": {
273
+ "description": "See{@linkSchema.fields}.",
274
+ "items": {
275
+ "anyOf": [
276
+ {
277
+ "$ref": "#/definitions/esri.Field"
278
+ },
279
+ {
280
+ "$ref": "#/definitions/esri.rest-api.Field.Field"
281
+ }
282
+ ]
283
+ },
284
+ "type": "array"
285
+ },
286
+ "geometryType": {
287
+ "description": "See{@linkSchema.geometryType}.",
288
+ "type": "string"
289
+ },
290
+ "primaryKeyField": {
291
+ "description": "See{@linkSchema.primaryKeyField}.",
292
+ "type": "string"
293
+ },
294
+ "spatialReference": {
295
+ "$ref": "#/definitions/esri.SpatialReference",
296
+ "description": "See{@linkSchema.spatialReference}."
297
+ },
298
+ "timeZone": {
299
+ "description": "See{@linkSchema.timeZone}.",
300
+ "type": "string"
301
+ },
302
+ "typeIdField": {
303
+ "description": "See{@linkSchema.typeIdField}.",
304
+ "type": "string"
305
+ },
306
+ "types": {
307
+ "description": "See{@linkSchema.types}.",
308
+ "items": {
309
+ "anyOf": [
310
+ {
311
+ "$ref": "#/definitions/esri.FeatureType"
312
+ },
313
+ {
314
+ "$ref": "#/definitions/esri.rest-api.Type.Type"
315
+ }
316
+ ]
317
+ },
318
+ "type": "array"
319
+ }
320
+ },
321
+ "type": "object"
322
+ },
4
323
  "@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode": {
5
324
  "description": "Viewing mode for a map (2D map or 3D scene).",
6
325
  "enum": [
@@ -9,6 +328,41 @@
9
328
  ],
10
329
  "type": "string"
11
330
  },
331
+ "@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties": {
332
+ "additionalProperties": false,
333
+ "description": "Properties that can be passed into the constructor for{@linkFormatSettings}.",
334
+ "properties": {
335
+ "currency": {
336
+ "description": "The 3-letter ISO 4217 currency code (e.g \"USD\", \"CAD\"). Required when formatting a number using NumberFormat.CURRENCY or NumberFormat.ACCOUNTING.",
337
+ "type": "string"
338
+ },
339
+ "dateFormat": {
340
+ "description": "The default format for date values. Either a{@linkDateFormat}constant, or a custom date format string.",
341
+ "type": "string"
342
+ },
343
+ "fractionalDigits": {
344
+ "description": "The number of digits to show after the decimal point. If unspecified, an appropriate value is determined based on the locale and currency.",
345
+ "type": "number"
346
+ },
347
+ "locale": {
348
+ "description": "The locale to use when formatting values.",
349
+ "type": "string"
350
+ },
351
+ "numberFormat": {
352
+ "description": "The default format for number values. Either a{@linkNumberFormat}constant, or a custom number format string.",
353
+ "type": "string"
354
+ },
355
+ "timeZone": {
356
+ "description": "The time zone to display date/time data in. The default will be the user's local time zone.",
357
+ "type": "string"
358
+ },
359
+ "useFieldInfo": {
360
+ "description": "Whether to use formatting from the field info if it is specified.",
361
+ "type": "boolean"
362
+ }
363
+ },
364
+ "type": "object"
365
+ },
12
366
  "AuthenticationType": {
13
367
  "description": "A type of authentication.",
14
368
  "enum": [
@@ -19,6 +373,28 @@
19
373
  ],
20
374
  "type": "string"
21
375
  },
376
+ "CreateGraphicsResult": {
377
+ "additionalProperties": false,
378
+ "description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
379
+ "properties": {
380
+ "graphics": {
381
+ "description": "The resulting graphics.",
382
+ "items": {
383
+ "$ref": "#/definitions/esri.Graphic"
384
+ },
385
+ "type": "array"
386
+ },
387
+ "maps": {
388
+ "$ref": "MapsLike",
389
+ "description": "The map that the graphics were created on."
390
+ }
391
+ },
392
+ "required": [
393
+ "graphics",
394
+ "maps"
395
+ ],
396
+ "type": "object"
397
+ },
22
398
  "Error": {
23
399
  "additionalProperties": false,
24
400
  "properties": {
@@ -68,6 +444,104 @@
68
444
  "description": "Arguments for the \"geolocation.status-changed\" event.",
69
445
  "type": "object"
70
446
  },
447
+ "GeometryLike": {
448
+ "anyOf": [
449
+ {
450
+ "$ref": "#/definitions/esri.Geometry"
451
+ },
452
+ {
453
+ "$ref": "#/definitions/esri.Graphic"
454
+ },
455
+ {
456
+ "$ref": "#/definitions/esri.FeatureSet"
457
+ },
458
+ {
459
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
460
+ },
461
+ {
462
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
463
+ },
464
+ {
465
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
466
+ },
467
+ {
468
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
469
+ },
470
+ {
471
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
472
+ },
473
+ {
474
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
475
+ },
476
+ {
477
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
478
+ },
479
+ {
480
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
481
+ },
482
+ {
483
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
484
+ },
485
+ {
486
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
487
+ },
488
+ {
489
+ "$ref": "#/definitions/CreateGraphicsResult"
490
+ },
491
+ {
492
+ "items": {
493
+ "anyOf": [
494
+ {
495
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
496
+ },
497
+ {
498
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
499
+ }
500
+ ]
501
+ },
502
+ "type": "array"
503
+ },
504
+ {
505
+ "items": {
506
+ "anyOf": [
507
+ {
508
+ "$ref": "#/definitions/esri.Graphic"
509
+ },
510
+ {
511
+ "$ref": "#/definitions/esri.rest-api.Feature.Feature"
512
+ }
513
+ ]
514
+ },
515
+ "type": "array"
516
+ },
517
+ {
518
+ "items": {
519
+ "anyOf": [
520
+ {
521
+ "$ref": "#/definitions/esri.Geometry"
522
+ },
523
+ {
524
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
525
+ },
526
+ {
527
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
528
+ },
529
+ {
530
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
531
+ },
532
+ {
533
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
534
+ },
535
+ {
536
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
537
+ }
538
+ ]
539
+ },
540
+ "type": "array"
541
+ }
542
+ ],
543
+ "description": "An object that is convertible to one or more geometries."
544
+ },
71
545
  "GnssDeviceConnectionInfo": {
72
546
  "additionalProperties": false,
73
547
  "description": "A geolocation source.",
@@ -106,7 +580,7 @@
106
580
  "description": "Defines an object that has a `maps` property.",
107
581
  "properties": {
108
582
  "maps": {
109
- "$ref": "#/definitions/MapsLike",
583
+ "$ref": "MapsLike",
110
584
  "description": "Map(s) to use for the command/operation."
111
585
  }
112
586
  },
@@ -145,7 +619,7 @@
145
619
  "type": "string"
146
620
  },
147
621
  "maps": {
148
- "$ref": "#/definitions/MapsLike",
622
+ "$ref": "MapsLike",
149
623
  "description": "The map for the Marker."
150
624
  },
151
625
  "scale": {
@@ -213,7 +687,7 @@
213
687
  "description": "Arguments for the various map events.",
214
688
  "properties": {
215
689
  "maps": {
216
- "$ref": "#/definitions/MapsLike",
690
+ "$ref": "MapsLike",
217
691
  "description": "The map from which the event was generated."
218
692
  }
219
693
  },
@@ -515,12 +989,33 @@
515
989
  ],
516
990
  "type": "object"
517
991
  },
992
+ "UpdateSessionArgs": {
993
+ "additionalProperties": false,
994
+ "description": "Used to update an in-progress interactive feature editing session with new attributes, attachments or geometry. Web only.",
995
+ "properties": {
996
+ "attachments": {
997
+ "description": "A collection of attachments that apply or are to be applied to the currently edited feature.",
998
+ "items": {
999
+ "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
1000
+ },
1001
+ "type": "array"
1002
+ },
1003
+ "attributes": {
1004
+ "description": "A collection of attributes that apply or are to be applied to the currently edited feature."
1005
+ },
1006
+ "geometry": {
1007
+ "$ref": "#/definitions/GeometryLike",
1008
+ "description": "The geometry to use for the command/operation."
1009
+ }
1010
+ },
1011
+ "type": "object"
1012
+ },
518
1013
  "ViewModeChangedEvent": {
519
1014
  "additionalProperties": false,
520
1015
  "description": "Arguments for the ViewModeChanged event.",
521
1016
  "properties": {
522
1017
  "maps": {
523
- "$ref": "#/definitions/MapsLike",
1018
+ "$ref": "MapsLike",
524
1019
  "description": "The map from which the event was generated."
525
1020
  },
526
1021
  "viewMode": {
@@ -643,7 +1138,7 @@
643
1138
  "type": "string"
644
1139
  },
645
1140
  "edit.feature-added": {
646
- "description": "Raised when a feature is added.",
1141
+ "description": "Raised when a new feature is added to a feature source.",
647
1142
  "enum": [
648
1143
  "edit.feature-added"
649
1144
  ]
@@ -652,7 +1147,7 @@
652
1147
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
653
1148
  },
654
1149
  "edit.feature-deleted": {
655
- "description": "Raised when a feature is deleted.",
1150
+ "description": "Raised when a feature is deleted from a feature source.",
656
1151
  "enum": [
657
1152
  "edit.feature-deleted"
658
1153
  ]
@@ -661,7 +1156,7 @@
661
1156
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
662
1157
  },
663
1158
  "edit.feature-updated": {
664
- "description": "Raised when a feature is updated.",
1159
+ "description": "Raised when the attributes or geometry of a feature from a feature source are updated.",
665
1160
  "enum": [
666
1161
  "edit.feature-updated"
667
1162
  ]
@@ -669,21 +1164,48 @@
669
1164
  "edit.feature-updated:input": {
670
1165
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
671
1166
  },
1167
+ "edit.session-updated": {
1168
+ "description": "Raised when an interactive feature editing session is updated with new attributes, attachments, or feature geometry. The payload of this event represents the current state of that session and has not yet been applied to the feature.",
1169
+ "enum": [
1170
+ "edit.session-updated"
1171
+ ]
1172
+ },
1173
+ "edit.session-updated:input": {
1174
+ "$ref": "#/definitions/UpdateSessionArgs"
1175
+ },
672
1176
  "esri.Color": {
673
1177
  "$ref": "esri/Color"
674
1178
  },
1179
+ "esri.FeatureSet": {
1180
+ "$ref": "esri/tasks/support/FeatureSet"
1181
+ },
1182
+ "esri.FeatureType": {
1183
+ "$ref": "esri/layers/support/FeatureType"
1184
+ },
1185
+ "esri.Field": {
1186
+ "$ref": "esri/layers/support/Field"
1187
+ },
675
1188
  "esri.Geometry": {
676
1189
  "$ref": "esri/geometry/Geometry"
677
1190
  },
1191
+ "esri.Graphic": {
1192
+ "$ref": "esri/Graphic"
1193
+ },
678
1194
  "esri.PictureMarkerSymbol": {
679
1195
  "$ref": "esri/symbols/PictureMarkerSymbol"
680
1196
  },
681
1197
  "esri.Point": {
682
1198
  "$ref": "esri/geometry/Point"
683
1199
  },
1200
+ "esri.PopupTemplate": {
1201
+ "$ref": "esri/PopupTemplate"
1202
+ },
684
1203
  "esri.SimpleMarkerSymbol": {
685
1204
  "$ref": "esri/symbols/SimpleMarkerSymbol"
686
1205
  },
1206
+ "esri.SpatialReference": {
1207
+ "$ref": "esri/geometry/SpatialReference"
1208
+ },
687
1209
  "esri.TextSymbol": {
688
1210
  "$ref": "esri/symbols/TextSymbol"
689
1211
  },
@@ -5425,8 +5947,23 @@
5425
5947
  "description": "Callout configuration for a symbol."
5426
5948
  },
5427
5949
  "styleOrigin": {
5428
- "$ref": "__type",
5429
- "description": "The origin of the style from which the symbol was originally referenced. A reference to the style origin can be either by styleName or by styleUrl (but not both). It may be used to understand where a symbol was originally sourced from, but does not affect actual appearance or rendering of the symbol.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/styleOrigin/}."
5950
+ "additionalProperties": false,
5951
+ "description": "The origin of the style from which the symbol was originally referenced. A reference to the style origin can be either by styleName or by styleUrl (but not both). It may be used to understand where a symbol was originally sourced from, but does not affect actual appearance or rendering of the symbol.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/styleOrigin/}.",
5952
+ "properties": {
5953
+ "name": {
5954
+ "description": "Name of the symbol in the style referenced by styleName or styleUrl.",
5955
+ "type": "string"
5956
+ },
5957
+ "styleName": {
5958
+ "description": "A well-known esri-provided style, such as EsriThematicShapesStyle.",
5959
+ "type": "string"
5960
+ },
5961
+ "styleUrl": {
5962
+ "description": "URL to a style definition Must be one of the following values: String An absolute URL String A relative path starting with \"./\".",
5963
+ "type": "string"
5964
+ }
5965
+ },
5966
+ "type": "object"
5430
5967
  },
5431
5968
  "symbolLayers": {
5432
5969
  "description": "A Collection of Symbol3DLayer objects used to visualize the graphic or feature.",
@@ -8689,7 +9226,7 @@
8689
9226
  ]
8690
9227
  },
8691
9228
  "map.initialized:input": {
8692
- "$ref": "#/definitions/MapEvent"
9229
+ "$ref": "MapEvent"
8693
9230
  },
8694
9231
  "map.view-mode-changed": {
8695
9232
  "description": "Raised when a map's {@link ViewMode} is changed. This happens when the map view is changed between a WebMap and a WebScene.",
@@ -8707,7 +9244,7 @@
8707
9244
  ]
8708
9245
  },
8709
9246
  "map.viewpoint-changed:input": {
8710
- "$ref": "#/definitions/MapEvent"
9247
+ "$ref": "MapEvent"
8711
9248
  },
8712
9249
  "printing.print-error": {
8713
9250
  "description": "Raised when an error occurs with running a print.",
@@ -8928,6 +9465,9 @@
8928
9465
  {
8929
9466
  "$ref": "#/definitions/edit.feature-updated"
8930
9467
  },
9468
+ {
9469
+ "$ref": "#/definitions/edit.session-updated"
9470
+ },
8931
9471
  {
8932
9472
  "$ref": "#/definitions/geolocation.accuracy-changed"
8933
9473
  },