@vertigis/viewer-spec 56.26.0 → 56.26.1

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,125 +1,1471 @@
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 {@link Hyperlink.iconUrl}.",
19
+ "type": "string"
20
+ },
21
+ "target": {
22
+ "description": "See {@link Hyperlink.target}.",
23
+ "type": "string"
24
+ },
25
+ "text": {
26
+ "description": "See {@link Hyperlink.text}.",
27
+ "type": "string"
28
+ },
29
+ "tooltip": {
30
+ "description": "See {@link Hyperlink.tooltip}.",
31
+ "type": "string"
32
+ },
33
+ "url": {
34
+ "description": "See {@link Hyperlink.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 {@link data /Feature!Feature}.",
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 {@link support /InitializableBase!InitializableBase.failureMode}."
60
+ },
61
+ "geometry": {
62
+ "anyOf": [
63
+ {
64
+ "$ref": "#/definitions/esri.Geometry"
65
+ },
66
+ {
67
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
68
+ },
69
+ {
70
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
71
+ },
72
+ {
73
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
74
+ },
75
+ {
76
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
77
+ },
78
+ {
79
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
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 {@link data /FeatureSettings!FeatureSettings}.",
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 {@link data /FeatureSettings!FeatureSettings.maxAllowableOffset}.",
127
+ "type": "number"
128
+ },
129
+ "outFields": {
130
+ "description": "See {@link data /FeatureSettings!FeatureSettings.outFields}.",
131
+ "items": {
132
+ "type": "string"
133
+ },
134
+ "type": "array"
135
+ },
136
+ "outSpatialReference": {
137
+ "$ref": "#/definitions/esri.SpatialReference",
138
+ "description": "See {@link data /FeatureSettings!FeatureSettings.outSpatialReference}."
139
+ },
140
+ "popupContentExtensions": {
141
+ "description": "See {@link data /FeatureSettings!FeatureSettings.popupContentExtensions}.",
142
+ "items": {
143
+ "anyOf": [
144
+ {
145
+ "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtensionProperties"
146
+ },
147
+ {
148
+ "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtension"
149
+ }
150
+ ]
151
+ },
152
+ "type": "array"
153
+ },
154
+ "popupTemplate": {
155
+ "anyOf": [
156
+ {
157
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
158
+ },
159
+ {
160
+ "$ref": "#/definitions/esri.PopupTemplate"
161
+ }
162
+ ],
163
+ "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."
164
+ },
165
+ "returnGeometry": {
166
+ "description": "See {@link data /FeatureSettings!FeatureSettings.returnGeometry}.",
167
+ "type": "boolean"
168
+ },
169
+ "showRelatedRecordsWhenUnconfigured": {
170
+ "description": "See {@link data /FeatureSettings!FeatureSettings.showRelatedRecordsWhenUnconfigured}.",
171
+ "type": "boolean"
172
+ },
173
+ "zoomFactor": {
174
+ "description": "See {@link data /FeatureSettings!FeatureSettings.zoomFactor}.",
175
+ "type": "number"
176
+ },
177
+ "zoomScale": {
178
+ "description": "See {@link data /FeatureSettings!FeatureSettings.zoomScale}.",
179
+ "type": "number"
180
+ }
181
+ },
182
+ "type": "object"
183
+ },
184
+ "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties": {
185
+ "additionalProperties": false,
186
+ "description": "Properties that can be passed into the constructor for {@link data /FieldExtension!FieldExtension}.",
187
+ "properties": {
188
+ "failureMode": {
189
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.FailureMode.FailureMode",
190
+ "description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
191
+ },
192
+ "field": {
193
+ "anyOf": [
194
+ {
195
+ "$ref": "#/definitions/esri.Field"
196
+ },
197
+ {
198
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldProperties"
199
+ },
200
+ {
201
+ "type": "string"
202
+ }
203
+ ],
204
+ "description": "The Esri Field object being extended."
205
+ },
206
+ "format": {
207
+ "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.",
208
+ "type": "string"
209
+ },
210
+ "formatSettings": {
211
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties",
212
+ "description": "Settings that affect how values are formatted. Depending on the type of field, some or all of these settings may not be applicable."
213
+ },
214
+ "id": {
215
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
216
+ "type": "string"
217
+ },
218
+ "searchable": {
219
+ "description": "Whether the field is searchable or not.",
220
+ "type": "boolean"
221
+ }
222
+ },
223
+ "type": "object"
224
+ },
225
+ "@vertigis.arcgis-extensions.data.FieldExtension.FieldProperties": {
226
+ "additionalProperties": false,
227
+ "description": "Properties that extend the ArcGis portal representation of a Field.",
228
+ "properties": {
229
+ "$ref": {
230
+ "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.",
231
+ "type": "string"
232
+ },
233
+ "alias": {
234
+ "description": "The field alias (human-readable name).",
235
+ "type": "string"
236
+ },
237
+ "domain": {
238
+ "$ref": "#/definitions/esri.rest-api.DomainJson.DomainJson",
239
+ "description": "A domain object that provides the attribute domain information for the field, if a domain exists."
240
+ },
241
+ "editable": {
242
+ "description": "Whether this field is editable.",
243
+ "type": "boolean"
244
+ },
245
+ "exactMatch": {
246
+ "description": "A Boolean defining whether or not the field is an exact match.",
247
+ "type": "boolean"
248
+ },
249
+ "length": {
250
+ "description": "A number defining how many characters are allowed in a string field.",
251
+ "type": "number"
252
+ },
253
+ "name": {
254
+ "description": "A string defining the field name.",
255
+ "type": "string"
256
+ },
257
+ "nullable": {
258
+ "description": "Whether this field can have a null value.",
259
+ "type": "boolean"
260
+ },
261
+ "type": {
262
+ "$ref": "#/definitions/esri.rest-api.FieldJson.FieldJsonType",
263
+ "description": "Type of the Field. See {@link FieldJsonType}."
264
+ }
265
+ },
266
+ "type": "object"
267
+ },
268
+ "@vertigis.arcgis-extensions.data.PopupContentExtension.ContentProperties": {
269
+ "additionalProperties": false,
270
+ "description": "Properties that extend the ArcGis portal representation of a PopupContent.",
271
+ "properties": {
272
+ "$ref": {
273
+ "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.ContentRef",
274
+ "description": "A popupContent name referring to an existing popupContent in a featureSettings. The popupContent extension will attempt to find an existing popupContent in its parent featureSettings."
275
+ },
276
+ "attributes": {
277
+ "description": "A dictionary of key value pairs representing attributes to be used instead of fields and their values. This property is only used when the element is of type expression and should be returned as part of the arcade expression itself. This property allows passing arcade derived attribute values into fields or media elements."
278
+ },
279
+ "description": {
280
+ "description": "An optional string value describing the element in detail. This property does not apply when the type is text or expression.",
281
+ "type": "string"
282
+ },
283
+ "displayCount": {
284
+ "description": "This property applies to elements of type relationship. An integer that indicates the maximum number of records to display.",
285
+ "type": "number"
286
+ },
287
+ "displayType": {
288
+ "description": "This property applies to elements of type attachments and relationship. A string value indicating how to display the attachment. Possible values are, 'preview', and 'list' for attachments types, and 'list' for relationship types. If list is specified, attachments show as links.",
289
+ "type": "string"
290
+ },
291
+ "expressionInfo": {
292
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupExpressionInfoJson",
293
+ "description": "This property applies to elements of type expression. An Arcade expression that defines the pop-up element content."
294
+ },
295
+ "fieldInfos": {
296
+ "description": "This property applies to elements of type fields. It is an array of popupInfo.fieldInfo objects representing a field/value pair displayed as a table within the popupElement. If the fieldInfos property is not provided, the popupElement will display whatever is specified directly in the popupInfo.fieldInfos property.",
297
+ "items": {
298
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.FieldInfoJson"
299
+ },
300
+ "type": "array"
301
+ },
302
+ "mediaInfos": {
303
+ "description": "This property applies to elements of type media. An array of popupInfo.mediaInfo objects representing an image or chart for display. If no mediaInfos property is provided, the popupElement will display whatever is specified in the popupInfo.mediaInfo property.",
304
+ "items": {
305
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.MediaInfoJson"
306
+ },
307
+ "type": "array"
308
+ },
309
+ "orderByFields": {
310
+ "description": "This property applies to elements of type relationship. Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
311
+ "items": {
312
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.OrderByFieldsJson"
313
+ },
314
+ "type": "array"
315
+ },
316
+ "relationshipId": {
317
+ "description": "This property applies to elements of type relationship. The id of the relationship as defined in the feature layer definition.",
318
+ "type": "number"
319
+ },
320
+ "text": {
321
+ "description": "This property applies to elements of type text. This is string value indicating the text to be displayed within the popupElement. If no text property is provided, the popupElement will display whatever is specified in the popupInfo.description property.",
322
+ "type": "string"
323
+ },
324
+ "title": {
325
+ "description": "An optional string value indicating what the element represents. This property does not apply when the type is text or expression.",
326
+ "type": "string"
327
+ },
328
+ "type": {
329
+ "description": "String value indicating which element to use.",
330
+ "enum": [
331
+ "attachments",
332
+ "expression",
333
+ "fields",
334
+ "media",
335
+ "relationship",
336
+ "text"
337
+ ],
338
+ "type": "string"
339
+ }
340
+ },
341
+ "type": "object"
342
+ },
343
+ "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtensionProperties": {
344
+ "additionalProperties": false,
345
+ "description": "Properties that can be passed into the constructor for {@link PopupContentExtension}.",
346
+ "properties": {
347
+ "content": {
348
+ "anyOf": [
349
+ {
350
+ "$ref": "#/definitions/esri.Content"
351
+ },
352
+ {
353
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.PopupContentExtension.ContentProperties"
354
+ }
355
+ ],
356
+ "description": "The ESRI Content instance to be extended."
357
+ },
358
+ "failureMode": {
359
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.FailureMode.FailureMode",
360
+ "description": "See {@link support /InitializableBase!InitializableBase.failureMode}."
361
+ },
362
+ "id": {
363
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
364
+ "type": "string"
365
+ },
366
+ "summaryHiddenFields": {
367
+ "description": "Names of fields that will be hidden when displayed in the a summary view. This property is only applied to \"fields\" Content types.",
368
+ "items": {
369
+ "type": "string"
370
+ },
371
+ "type": "array"
372
+ },
373
+ "visibleInSummary": {
374
+ "description": "Whether the Content is visible when being displayed in a summary view.",
375
+ "type": "boolean"
376
+ }
377
+ },
378
+ "type": "object"
379
+ },
380
+ "@vertigis.arcgis-extensions.data.Schema.SchemaProperties": {
381
+ "additionalProperties": false,
382
+ "description": "Properties that can be passed into the constructor for {@link data /Schema!Schema}.",
383
+ "properties": {
384
+ "displayField": {
385
+ "description": "See {@link data /Schema!Schema.displayField}.",
386
+ "type": "string"
387
+ },
388
+ "fieldExtensions": {
389
+ "description": "See {@link data /Schema!Schema.fieldExtensions}.",
390
+ "items": {
391
+ "anyOf": [
392
+ {
393
+ "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties"
394
+ },
395
+ {
396
+ "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtension"
397
+ }
398
+ ]
399
+ },
400
+ "type": "array"
401
+ },
402
+ "fields": {
403
+ "description": "See {@link data /Schema!Schema.fields}.",
404
+ "items": {
405
+ "anyOf": [
406
+ {
407
+ "$ref": "#/definitions/esri.Field"
408
+ },
409
+ {
410
+ "$ref": "#/definitions/esri.rest-api.FieldJson.FieldJson"
411
+ }
412
+ ]
413
+ },
414
+ "type": "array"
415
+ },
416
+ "geometryType": {
417
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.GeometryJsonType",
418
+ "description": "See {@link data /Schema!Schema.geometryType}."
419
+ },
420
+ "primaryKeyField": {
421
+ "description": "See {@link data /Schema!Schema.primaryKeyField}.",
422
+ "type": "string"
423
+ },
424
+ "spatialReference": {
425
+ "$ref": "#/definitions/esri.SpatialReference",
426
+ "description": "See {@link data /Schema!Schema.spatialReference}."
427
+ },
428
+ "timeZone": {
429
+ "description": "See {@link data /Schema!Schema.timeZone}.",
430
+ "type": "string"
431
+ },
432
+ "typeIdField": {
433
+ "description": "See {@link data /Schema!Schema.typeIdField}.",
434
+ "type": "string"
435
+ },
436
+ "types": {
437
+ "description": "See {@link data /Schema!Schema.types}.",
438
+ "items": {
439
+ "anyOf": [
440
+ {
441
+ "$ref": "#/definitions/esri.FeatureType"
442
+ },
443
+ {
444
+ "$ref": "#/definitions/esri.rest-api.TypeJson.TypeJson"
445
+ }
446
+ ]
447
+ },
448
+ "type": "array"
449
+ }
450
+ },
451
+ "type": "object"
452
+ },
453
+ "@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode": {
454
+ "description": "Viewing mode for a map (2D map or 3D scene).",
455
+ "enum": [
456
+ "map",
457
+ "scene"
458
+ ],
459
+ "type": "string"
460
+ },
461
+ "@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties": {
462
+ "additionalProperties": false,
463
+ "description": "Properties that can be passed into the constructor for {@link FormatSettings}.",
464
+ "properties": {
465
+ "currency": {
466
+ "description": "The 3-letter ISO 4217 currency code (e.g \"USD\", \"CAD\"). Required when formatting a number using NumberFormat.CURRENCY or NumberFormat.ACCOUNTING.",
467
+ "type": "string"
468
+ },
469
+ "dateFormat": {
470
+ "description": "The default format for date values. Either a {@link utilities /date!DateFormat} constant, or a custom date format string.",
471
+ "type": "string"
472
+ },
473
+ "fractionalDigits": {
474
+ "description": "The number of digits to show after the decimal point. If unspecified, an appropriate value is determined based on the locale and currency.",
475
+ "type": "number"
476
+ },
477
+ "locale": {
478
+ "description": "The locale to use when formatting values.",
479
+ "type": "string"
480
+ },
481
+ "numberFormat": {
482
+ "description": "The default format for number values. Either a {@link utilities /number!NumberFormat} constant, or a custom number format string.",
483
+ "type": "string"
484
+ },
485
+ "timeZone": {
486
+ "description": "The time zone to display date/time data in. The default will be the user's local time zone.",
487
+ "type": "string"
488
+ },
489
+ "useFieldInfo": {
490
+ "description": "Whether to use formatting from the field info if it is specified.",
491
+ "type": "boolean"
492
+ }
493
+ },
494
+ "type": "object"
495
+ },
496
+ "ArcGISPortalIdentity": {
497
+ "additionalProperties": false,
498
+ "type": "object"
499
+ },
500
+ "AuthenticationType": {
501
+ "description": "A type of authentication.",
502
+ "enum": [
503
+ "Network",
504
+ "OAuth2",
505
+ "Token",
506
+ "Unknown"
507
+ ],
508
+ "type": "string"
509
+ },
510
+ "ComponentId": {
511
+ "description": "A component's ID in the layout.",
512
+ "type": "string"
513
+ },
514
+ "CreateGraphicsResult": {
515
+ "additionalProperties": false,
516
+ "description": "Result of the \"drawing.create-graphics\" and \"measurement.create-graphics\" operations.",
517
+ "properties": {
518
+ "graphics": {
519
+ "description": "The resulting graphics.",
520
+ "items": {
521
+ "$ref": "#/definitions/esri.Graphic"
522
+ },
523
+ "type": "array"
524
+ },
525
+ "maps": {
526
+ "$ref": "MapsLike",
527
+ "description": "The map that the graphics were created on. Only available in Web."
528
+ }
529
+ },
530
+ "required": [
531
+ "graphics",
532
+ "maps"
533
+ ],
534
+ "type": "object"
535
+ },
4
536
  "EffectFunctionJson": {
5
537
  "anyOf": [
6
538
  {
7
- "$ref": "#/definitions/esri.rest-api.LayerJson.HueRotateEffectFunctionJson"
539
+ "$ref": "#/definitions/esri.rest-api.LayerJson.HueRotateEffectFunctionJson"
540
+ },
541
+ {
542
+ "$ref": "#/definitions/esri.rest-api.LayerJson.BlurEffectFunctionJson"
543
+ },
544
+ {
545
+ "$ref": "#/definitions/esri.rest-api.LayerJson.DropShadowEffectFunctionJson"
546
+ },
547
+ {
548
+ "$ref": "#/definitions/esri.rest-api.LayerJson.BloomEffectFunctionJson"
549
+ },
550
+ {
551
+ "$ref": "#/definitions/esri.rest-api.LayerJson.BrightnessEffectFunctionJson"
552
+ },
553
+ {
554
+ "$ref": "#/definitions/esri.rest-api.LayerJson.ContrastEffectFunctionJson"
555
+ },
556
+ {
557
+ "$ref": "#/definitions/esri.rest-api.LayerJson.GrayscaleEffectFunctionJson"
558
+ },
559
+ {
560
+ "$ref": "#/definitions/esri.rest-api.LayerJson.InvertEffectFunctionJson"
561
+ },
562
+ {
563
+ "$ref": "#/definitions/esri.rest-api.LayerJson.OpacityEffectFunctionJson"
564
+ },
565
+ {
566
+ "$ref": "#/definitions/esri.rest-api.LayerJson.SaturateEffectFunctionJson"
567
+ },
568
+ {
569
+ "$ref": "#/definitions/esri.rest-api.LayerJson.SepiaEffectFunctionJson"
570
+ }
571
+ ],
572
+ "description": "Effect functions that can be combined to build a layer effect."
573
+ },
574
+ "Error": {
575
+ "additionalProperties": false,
576
+ "properties": {
577
+ "cause": {},
578
+ "message": {
579
+ "type": "string"
580
+ },
581
+ "name": {
582
+ "type": "string"
583
+ },
584
+ "stack": {
585
+ "type": "string"
586
+ }
587
+ },
588
+ "required": [
589
+ "message",
590
+ "name"
591
+ ],
592
+ "type": "object"
593
+ },
594
+ "GeolocateAccuracyChangedEventArgs": {
595
+ "additionalProperties": false,
596
+ "description": "Arguments for the \"geolocation.accuracy-changed\" event.",
597
+ "properties": {
598
+ "accuracy": {
599
+ "description": "The current geolocation accuracy, in meters.",
600
+ "type": "number"
601
+ }
602
+ },
603
+ "required": [
604
+ "accuracy"
605
+ ],
606
+ "type": "object"
607
+ },
608
+ "GeolocationEvent": {
609
+ "additionalProperties": false,
610
+ "description": "Arguments for geolocation events such as \"geolocation.position-acquired\" and \"geolocation.position-lost\".",
611
+ "properties": {
612
+ "gnssDeviceConnectionInfo": {
613
+ "$ref": "#/definitions/GnssDeviceConnectionInfo",
614
+ "description": "The GNSS source associated with the raised geolocation event. Mobile only."
615
+ }
616
+ },
617
+ "type": "object"
618
+ },
619
+ "GeolocationStatusChangedEventArgs": {
620
+ "additionalProperties": false,
621
+ "description": "Arguments for the \"geolocation.status-changed\" event.",
622
+ "properties": {
623
+ "isEnabled": {
624
+ "description": "Indicates whether the geolocation is now enabled.",
625
+ "type": "boolean"
626
+ }
627
+ },
628
+ "required": [
629
+ "isEnabled"
630
+ ],
631
+ "type": "object"
632
+ },
633
+ "GeometryLike": {
634
+ "anyOf": [
635
+ {
636
+ "$ref": "#/definitions/CreateGraphicsResult"
637
+ },
638
+ {
639
+ "$ref": "#/definitions/esri.Graphic"
640
+ },
641
+ {
642
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
643
+ },
644
+ {
645
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
646
+ },
647
+ {
648
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
649
+ },
650
+ {
651
+ "$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
652
+ },
653
+ {
654
+ "items": {
655
+ "anyOf": [
656
+ {
657
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
658
+ },
659
+ {
660
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
661
+ }
662
+ ]
663
+ },
664
+ "type": "array"
665
+ },
666
+ {
667
+ "$ref": "#/definitions/esri.Geometry"
668
+ },
669
+ {
670
+ "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
671
+ },
672
+ {
673
+ "$ref": "#/definitions/esri.FeatureSet"
674
+ },
675
+ {
676
+ "items": {
677
+ "anyOf": [
678
+ {
679
+ "$ref": "#/definitions/esri.Graphic"
680
+ },
681
+ {
682
+ "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
683
+ }
684
+ ]
685
+ },
686
+ "type": "array"
687
+ },
688
+ {
689
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
690
+ },
691
+ {
692
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
693
+ },
694
+ {
695
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
696
+ },
697
+ {
698
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
699
+ },
700
+ {
701
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
702
+ },
703
+ {
704
+ "items": {
705
+ "anyOf": [
706
+ {
707
+ "$ref": "#/definitions/esri.Geometry"
708
+ },
709
+ {
710
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
711
+ },
712
+ {
713
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
714
+ },
715
+ {
716
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
717
+ },
718
+ {
719
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
720
+ },
721
+ {
722
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
723
+ }
724
+ ]
725
+ },
726
+ "type": "array"
727
+ }
728
+ ],
729
+ "description": "An object that is convertible to one or more geometries."
730
+ },
731
+ "GnssDeviceConnectionInfo": {
732
+ "additionalProperties": false,
733
+ "description": "A geolocation source.",
734
+ "properties": {
735
+ "deviceFullName": {
736
+ "description": "Full name of the GNSS device.",
737
+ "type": "string"
738
+ },
739
+ "deviceName": {
740
+ "description": "Name of the GNSS device.",
741
+ "type": "string"
742
+ },
743
+ "deviceType": {
744
+ "$ref": "#/definitions/GnssDeviceType",
745
+ "description": "The type of the device. Options are Integrated, Bluetooth, USB, and Emulator."
746
+ },
747
+ "settings": {
748
+ "$ref": "GnssDeviceSettings",
749
+ "description": "The device settings, including the correction service's spatial reference, the desired datum transformation, and the device's antenna height."
750
+ }
751
+ },
752
+ "required": [
753
+ "deviceFullName",
754
+ "deviceName",
755
+ "deviceType",
756
+ "settings"
757
+ ],
758
+ "type": "object"
759
+ },
760
+ "GnssDeviceType": {
761
+ "enum": [
762
+ "bluetooth",
763
+ "emulator",
764
+ "integrated",
765
+ "usb"
766
+ ],
767
+ "type": "string"
768
+ },
769
+ "HasMaps": {
770
+ "additionalProperties": false,
771
+ "description": "Defines an object that has a `maps` property.",
772
+ "properties": {
773
+ "maps": {
774
+ "$ref": "MapsLike",
775
+ "description": "Map(s) to use for the command/operation."
776
+ }
777
+ },
778
+ "type": "object"
779
+ },
780
+ "LocationMarkerEvent": {
781
+ "additionalProperties": false,
782
+ "description": "Arguments for the various location marker events.",
783
+ "properties": {
784
+ "color": {
785
+ "anyOf": [
786
+ {
787
+ "$ref": "#/definitions/esri.Color"
788
+ },
789
+ {
790
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
791
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}."
792
+ }
793
+ ],
794
+ "description": "Indicates the color for the Marker. This property is only used if the symbol is a well-known ID."
795
+ },
796
+ "fov": {
797
+ "description": "Indicates the horizontal field of view in degrees for the marker. Ranges from 0 to 360. This property is currently only supported by the \"dot\" symbol.",
798
+ "type": "number"
799
+ },
800
+ "geometry": {
801
+ "$ref": "#/definitions/esri.Geometry",
802
+ "description": "The location of the Marker."
803
+ },
804
+ "heading": {
805
+ "description": "The clockwise rotation of the symbol in the horizontal plane in degrees.",
806
+ "type": "number"
807
+ },
808
+ "id": {
809
+ "description": "The ID of the Marker.",
810
+ "type": "string"
811
+ },
812
+ "maps": {
813
+ "$ref": "MapsLike",
814
+ "description": "The map for the Marker."
815
+ },
816
+ "scale": {
817
+ "description": "The scale of the Marker, defaults to 1.",
818
+ "type": "number"
819
+ },
820
+ "symbol": {
821
+ "anyOf": [
822
+ {
823
+ "items": {
824
+ "$ref": "#/definitions/MarkerSymbolConfig"
825
+ },
826
+ "type": "array"
827
+ },
828
+ {
829
+ "type": "string"
830
+ }
831
+ ],
832
+ "description": "The symbol used to display the marker. The symbol can be an array of Symbols or one of the following well-known IDs: \"dot\", \"callout\", or \"exclamation\". Defaults to \"dot\"."
833
+ },
834
+ "tilt": {
835
+ "description": "In 3D, the tilt angle of the location marker symbol. Ranges from 0 (straight down) to 180 (straight up) degrees. Defaults to 90 (straight ahead).",
836
+ "type": "number"
837
+ },
838
+ "userDraggable": {
839
+ "description": "Sets whether the Marker should be user draggable.",
840
+ "type": "boolean"
841
+ }
842
+ },
843
+ "required": [
844
+ "color",
845
+ "fov",
846
+ "geometry",
847
+ "heading",
848
+ "id",
849
+ "maps",
850
+ "scale",
851
+ "symbol",
852
+ "userDraggable"
853
+ ],
854
+ "type": "object"
855
+ },
856
+ "MapEvent": {
857
+ "additionalProperties": false,
858
+ "description": "Arguments for the various map events.",
859
+ "properties": {
860
+ "mapExtension": {
861
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
862
+ "description": "The map extension for which the event was generated. This property is required in VertiGIS Studio Mobile. Mobile only."
863
+ },
864
+ "maps": {
865
+ "$ref": "MapsLike",
866
+ "description": "The map from which the event was generated. Web only."
867
+ }
868
+ },
869
+ "type": "object"
870
+ },
871
+ "MapInitializedEvent": {
872
+ "additionalProperties": false,
873
+ "description": "Event args for the map.initialized event.",
874
+ "properties": {
875
+ "loadTime": {
876
+ "$ref": "#/definitions/TimeSpan",
877
+ "description": "The amount of time that the map took to load. Mobile only."
878
+ },
879
+ "mapExtension": {
880
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
881
+ "description": "The map extension for which the event was generated. This property is required in VertiGIS Studio Mobile. Mobile only."
882
+ },
883
+ "maps": {
884
+ "$ref": "MapsLike",
885
+ "description": "The map from which the event was generated. Web only."
886
+ }
887
+ },
888
+ "required": [
889
+ "loadTime"
890
+ ],
891
+ "type": "object"
892
+ },
893
+ "MapsLike": {
894
+ "anyOf": [
895
+ {
896
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
8
897
  },
9
898
  {
10
- "$ref": "#/definitions/esri.rest-api.LayerJson.BlurEffectFunctionJson"
899
+ "items": {
900
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension"
901
+ },
902
+ "type": "array"
903
+ }
904
+ ],
905
+ "description": "One or map extensions."
906
+ },
907
+ "MarkerSymbolConfig": {
908
+ "anyOf": [
909
+ {
910
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
11
911
  },
12
912
  {
13
- "$ref": "#/definitions/esri.rest-api.LayerJson.DropShadowEffectFunctionJson"
913
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
14
914
  },
15
915
  {
16
- "$ref": "#/definitions/esri.rest-api.LayerJson.BloomEffectFunctionJson"
916
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
17
917
  },
18
918
  {
19
- "$ref": "#/definitions/esri.rest-api.LayerJson.BrightnessEffectFunctionJson"
919
+ "$ref": "#/definitions/esri.SimpleMarkerSymbol"
20
920
  },
21
921
  {
22
- "$ref": "#/definitions/esri.rest-api.LayerJson.ContrastEffectFunctionJson"
922
+ "$ref": "#/definitions/esri.PictureMarkerSymbol"
23
923
  },
24
924
  {
25
- "$ref": "#/definitions/esri.rest-api.LayerJson.GrayscaleEffectFunctionJson"
925
+ "$ref": "#/definitions/esri.TextSymbol"
926
+ }
927
+ ],
928
+ "description": "Symbols that can be used for location markers."
929
+ },
930
+ "MeasurementSystem": {
931
+ "description": "A system used to determine what units should be used for measurement values.",
932
+ "enum": [
933
+ "imperial",
934
+ "metric"
935
+ ],
936
+ "type": "string"
937
+ },
938
+ "OperationalLayerJson": {
939
+ "anyOf": [
940
+ {
941
+ "$ref": "#/definitions/esri.rest-api.AnnotationLayerJson.AnnotationLayerJson"
26
942
  },
27
943
  {
28
- "$ref": "#/definitions/esri.rest-api.LayerJson.InvertEffectFunctionJson"
944
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.BuildingSceneLayerJson"
29
945
  },
30
946
  {
31
- "$ref": "#/definitions/esri.rest-api.LayerJson.OpacityEffectFunctionJson"
947
+ "$ref": "#/definitions/esri.rest-api.CSVLayerJson.CSVLayerJson"
32
948
  },
33
949
  {
34
- "$ref": "#/definitions/esri.rest-api.LayerJson.SaturateEffectFunctionJson"
950
+ "$ref": "#/definitions/esri.rest-api.FeatureLayerJson.FeatureLayerJson"
951
+ },
952
+ {
953
+ "$ref": "#/definitions/esri.rest-api.GeoJSONLayerJson.GeoJSONLayerJson"
954
+ },
955
+ {
956
+ "$ref": "#/definitions/esri.rest-api.GeoRSSLayerJson.GeoRSSLayerJson"
957
+ },
958
+ {
959
+ "$ref": "#/definitions/esri.rest-api.GroupLayerJson.GroupLayerJson"
960
+ },
961
+ {
962
+ "$ref": "#/definitions/esri.rest-api.ImageServiceLayerJson.ImageServiceLayerJson"
963
+ },
964
+ {
965
+ "$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayerJson.ImageServiceVectorLayerJson"
966
+ },
967
+ {
968
+ "$ref": "#/definitions/esri.rest-api.IntegratedMeshLayerJson.IntegratedMeshLayerJson"
969
+ },
970
+ {
971
+ "$ref": "#/definitions/esri.rest-api.KMLLayerJson.KMLLayerJson"
972
+ },
973
+ {
974
+ "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
975
+ },
976
+ {
977
+ "$ref": "#/definitions/esri.rest-api.PointCloudLayerJson.PointCloudLayerJson"
978
+ },
979
+ {
980
+ "$ref": "#/definitions/esri.rest-api.SceneLayerJson.SceneLayerJson"
981
+ },
982
+ {
983
+ "$ref": "#/definitions/esri.rest-api.StreamLayerJson.StreamLayerJson"
984
+ },
985
+ {
986
+ "$ref": "#/definitions/esri.rest-api.SubtypeGroupLayerJson.SubtypeGroupLayerJson"
987
+ },
988
+ {
989
+ "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
990
+ },
991
+ {
992
+ "$ref": "#/definitions/esri.rest-api.TiledMapServiceLayerJson.TiledMapServiceLayerJson"
993
+ },
994
+ {
995
+ "$ref": "#/definitions/esri.rest-api.VectorTileLayerJson.VectorTileLayerJson"
996
+ },
997
+ {
998
+ "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
999
+ },
1000
+ {
1001
+ "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
1002
+ }
1003
+ ],
1004
+ "description": "An operational layer in a web map/scene."
1005
+ },
1006
+ "PointCloudFilterJson": {
1007
+ "anyOf": [
1008
+ {
1009
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.PointCloudBitfieldFilterJson"
1010
+ },
1011
+ {
1012
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.PointCloudReturnFilterJson"
1013
+ },
1014
+ {
1015
+ "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.PointCloudValueFilterJson"
1016
+ }
1017
+ ],
1018
+ "description": "Filters applied to the pointCloud which will hide a point. See {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
1019
+ },
1020
+ "PortalType": {
1021
+ "description": "The type of Portal.",
1022
+ "enum": [
1023
+ "AGOL",
1024
+ "ArcGISEnterprise"
1025
+ ],
1026
+ "type": "string"
1027
+ },
1028
+ "PortalUsername": {
1029
+ "description": "A username for a particular ArcGIS Portal User.",
1030
+ "type": "string"
1031
+ },
1032
+ "PrintErrorEventArgs": {
1033
+ "additionalProperties": false,
1034
+ "description": "Arguments for the printing.print-error event.",
1035
+ "properties": {
1036
+ "errorCode": {
1037
+ "description": "The HTTP status code associated with the error, if it's a HTTP error.",
1038
+ "type": "number"
1039
+ },
1040
+ "instanceId": {
1041
+ "description": "A unique ID to track the running of this print.",
1042
+ "type": "string"
1043
+ },
1044
+ "message": {
1045
+ "description": "The error message.",
1046
+ "type": "string"
1047
+ },
1048
+ "printTemplateId": {
1049
+ "description": "The ID of the print template being used.",
1050
+ "type": "string"
1051
+ }
1052
+ },
1053
+ "required": [
1054
+ "instanceId",
1055
+ "message",
1056
+ "printTemplateId"
1057
+ ],
1058
+ "type": "object"
1059
+ },
1060
+ "PrintFinishedEventArgs": {
1061
+ "additionalProperties": false,
1062
+ "description": "Arguments for the printing.print-finished event.",
1063
+ "properties": {
1064
+ "downloadUrl": {
1065
+ "description": "The URL from which to download the print.",
1066
+ "type": "string"
1067
+ },
1068
+ "instanceId": {
1069
+ "description": "A unique ID to track the running of this print.",
1070
+ "type": "string"
1071
+ },
1072
+ "printTemplateId": {
1073
+ "description": "The ID of the print template being used.",
1074
+ "type": "string"
1075
+ }
1076
+ },
1077
+ "required": [
1078
+ "downloadUrl",
1079
+ "instanceId",
1080
+ "printTemplateId"
1081
+ ],
1082
+ "type": "object"
1083
+ },
1084
+ "PrintProgressEventArgs": {
1085
+ "additionalProperties": false,
1086
+ "description": "Arguments for the printing.print-progress event.",
1087
+ "properties": {
1088
+ "instanceId": {
1089
+ "description": "A unique ID to track the running of this print.",
1090
+ "type": "string"
1091
+ },
1092
+ "printTemplateId": {
1093
+ "description": "The ID of the print template being used.",
1094
+ "type": "string"
1095
+ }
1096
+ },
1097
+ "required": [
1098
+ "instanceId",
1099
+ "printTemplateId"
1100
+ ],
1101
+ "type": "object"
1102
+ },
1103
+ "PrintStartedEventArgs": {
1104
+ "additionalProperties": false,
1105
+ "description": "Arguments for the printing.print-started event.",
1106
+ "properties": {
1107
+ "instanceId": {
1108
+ "description": "A unique ID to track the running of this print.",
1109
+ "type": "string"
1110
+ },
1111
+ "printTemplateId": {
1112
+ "description": "The ID of the print template being used.",
1113
+ "type": "string"
1114
+ }
1115
+ },
1116
+ "required": [
1117
+ "instanceId",
1118
+ "printTemplateId"
1119
+ ],
1120
+ "type": "object"
1121
+ },
1122
+ "ReportErrorEventArgs": {
1123
+ "additionalProperties": false,
1124
+ "description": "Arguments for the reports.report-error event.",
1125
+ "properties": {
1126
+ "errorCode": {
1127
+ "description": "The HTTP status code associated with the error, if it's a HTTP error.",
1128
+ "type": "number"
1129
+ },
1130
+ "instanceId": {
1131
+ "description": "A unique ID to track the running of this report.",
1132
+ "type": "string"
1133
+ },
1134
+ "message": {
1135
+ "description": "The error message.",
1136
+ "type": "string"
1137
+ },
1138
+ "reportId": {
1139
+ "description": "The ID of the report being run.",
1140
+ "type": "string"
1141
+ }
1142
+ },
1143
+ "required": [
1144
+ "instanceId",
1145
+ "message",
1146
+ "reportId"
1147
+ ],
1148
+ "type": "object"
1149
+ },
1150
+ "ReportFinishedEventArgs": {
1151
+ "additionalProperties": false,
1152
+ "description": "Arguments for the reports.report-finished event.",
1153
+ "properties": {
1154
+ "downloadUrl": {
1155
+ "description": "The URL to download the report at.",
1156
+ "type": "string"
1157
+ },
1158
+ "instanceId": {
1159
+ "description": "A unique ID to track the running of this report.",
1160
+ "type": "string"
1161
+ },
1162
+ "reportId": {
1163
+ "description": "The ID of the report being run.",
1164
+ "type": "string"
1165
+ }
1166
+ },
1167
+ "required": [
1168
+ "downloadUrl",
1169
+ "instanceId",
1170
+ "reportId"
1171
+ ],
1172
+ "type": "object"
1173
+ },
1174
+ "ReportProgressEventArgs": {
1175
+ "additionalProperties": false,
1176
+ "description": "Arguments for the reports.report-progress event.",
1177
+ "properties": {
1178
+ "instanceId": {
1179
+ "description": "A unique ID to track the running of this report.",
1180
+ "type": "string"
1181
+ },
1182
+ "reportId": {
1183
+ "description": "The ID of the report being run.",
1184
+ "type": "string"
1185
+ }
1186
+ },
1187
+ "required": [
1188
+ "instanceId",
1189
+ "reportId"
1190
+ ],
1191
+ "type": "object"
1192
+ },
1193
+ "ReportStartedEventArgs": {
1194
+ "additionalProperties": false,
1195
+ "description": "Arguments for the reports.report-started event.",
1196
+ "properties": {
1197
+ "instanceId": {
1198
+ "description": "A unique ID to track the running of this report.",
1199
+ "type": "string"
35
1200
  },
36
- {
37
- "$ref": "#/definitions/esri.rest-api.LayerJson.SepiaEffectFunctionJson"
1201
+ "reportId": {
1202
+ "description": "The ID of the report being run.",
1203
+ "type": "string"
38
1204
  }
1205
+ },
1206
+ "required": [
1207
+ "instanceId",
1208
+ "reportId"
39
1209
  ],
40
- "description": "Effect functions that can be combined to build a layer effect."
1210
+ "type": "object"
41
1211
  },
42
- "OperationalLayerJson": {
43
- "anyOf": [
44
- {
45
- "$ref": "#/definitions/esri.rest-api.AnnotationLayerJson.AnnotationLayerJson"
1212
+ "SharedProject": {
1213
+ "additionalProperties": false,
1214
+ "description": "Configuration for a shared project.",
1215
+ "properties": {
1216
+ "created": {
1217
+ "$ref": "Date",
1218
+ "description": "The created Date."
46
1219
  },
47
- {
48
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.BuildingSceneLayerJson"
1220
+ "description": {
1221
+ "description": "A description for the shared project.",
1222
+ "type": "string"
49
1223
  },
50
- {
51
- "$ref": "#/definitions/esri.rest-api.CSVLayerJson.CSVLayerJson"
1224
+ "hiddenFrom": {
1225
+ "$ref": "Iterable",
1226
+ "description": "Filters that determine whether the UI element is hidden from a given end-user. If both visibleTo and hiddenFrom are undefined/empty, the component will be visible to all users."
52
1227
  },
53
- {
54
- "$ref": "#/definitions/esri.rest-api.FeatureLayerJson.FeatureLayerJson"
1228
+ "id": {
1229
+ "description": "The unique ID for this entity.",
1230
+ "type": "string"
55
1231
  },
56
- {
57
- "$ref": "#/definitions/esri.rest-api.GeoJSONLayerJson.GeoJSONLayerJson"
1232
+ "modified": {
1233
+ "$ref": "Date",
1234
+ "description": "The modified Date."
58
1235
  },
59
- {
60
- "$ref": "#/definitions/esri.rest-api.GeoRSSLayerJson.GeoRSSLayerJson"
1236
+ "modifiedBy": {
1237
+ "$ref": "#/definitions/PortalUsername",
1238
+ "description": "The username of the last modifier."
61
1239
  },
62
- {
63
- "$ref": "#/definitions/esri.rest-api.GroupLayerJson.GroupLayerJson"
1240
+ "owner": {
1241
+ "$ref": "#/definitions/PortalUsername",
1242
+ "description": "The username of the owner."
64
1243
  },
65
- {
66
- "$ref": "#/definitions/esri.rest-api.ImageServiceLayerJson.ImageServiceLayerJson"
1244
+ "readOnly": {
1245
+ "description": "Indicates if the shared project is shared as 'read only'.",
1246
+ "type": "boolean"
67
1247
  },
68
- {
69
- "$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayerJson.ImageServiceVectorLayerJson"
1248
+ "title": {
1249
+ "description": "A human-readable title for the shared project.",
1250
+ "type": "string"
70
1251
  },
71
- {
72
- "$ref": "#/definitions/esri.rest-api.IntegratedMeshLayerJson.IntegratedMeshLayerJson"
1252
+ "visibleTo": {
1253
+ "$ref": "Iterable",
1254
+ "description": "Filters that determine whether the UI element is visible to a given end-user. If both visibleTo and hiddenFrom are undefined/empty, the component will be visible to all users."
1255
+ }
1256
+ },
1257
+ "required": [
1258
+ "created",
1259
+ "description",
1260
+ "id",
1261
+ "title"
1262
+ ],
1263
+ "type": "object"
1264
+ },
1265
+ "SignInCompletedEventArgs": {
1266
+ "additionalProperties": false,
1267
+ "description": "Arguments for the auth.sign-in-completed and auth.portal-sign-in-completed events. Only available in VertiGIS Studio Mobile.",
1268
+ "properties": {
1269
+ "identity": {
1270
+ "$ref": "#/definitions/ArcGISPortalIdentity",
1271
+ "description": "The identity that was obtained from the sign in."
1272
+ }
1273
+ },
1274
+ "required": [
1275
+ "identity"
1276
+ ],
1277
+ "type": "object"
1278
+ },
1279
+ "SignInEventArgs": {
1280
+ "additionalProperties": false,
1281
+ "description": "Arguments for the auth.sign-in events. Only available in VertiGIS Studio Mobile.",
1282
+ "properties": {
1283
+ "authenticationType": {
1284
+ "$ref": "#/definitions/AuthenticationType",
1285
+ "description": "The authentication method used for the sign in process. Not available in VertiGIS Studio Web."
73
1286
  },
74
- {
75
- "$ref": "#/definitions/esri.rest-api.KMLLayerJson.KMLLayerJson"
1287
+ "portalType": {
1288
+ "$ref": "#/definitions/PortalType",
1289
+ "description": "The type of Portal: AGOL or Enterprise."
76
1290
  },
77
- {
78
- "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
1291
+ "requestInfo": {
1292
+ "description": "Information about the resource that is required to sign in. Not available in VertiGIS Studio Web. Will be an instance of esri.security.CredentialRequestInfo for VertiGIS Studio Mobile."
1293
+ }
1294
+ },
1295
+ "required": [
1296
+ "authenticationType",
1297
+ "portalType",
1298
+ "requestInfo"
1299
+ ],
1300
+ "type": "object"
1301
+ },
1302
+ "SignInFailedEventArgs": {
1303
+ "additionalProperties": false,
1304
+ "description": "Arguments for the auth.sign-in-failed event. Only available in the VertiGIS Studio Mobile Viewer.",
1305
+ "properties": {
1306
+ "authenticationType": {
1307
+ "$ref": "#/definitions/AuthenticationType",
1308
+ "description": "The authentication method used for the sign in process. Not available in VertiGIS Studio Web."
79
1309
  },
80
- {
81
- "$ref": "#/definitions/esri.rest-api.PointCloudLayerJson.PointCloudLayerJson"
1310
+ "exception": {
1311
+ "description": "The exception that occurred during the sign in. Not available in VertiGIS Studio Web."
82
1312
  },
83
- {
84
- "$ref": "#/definitions/esri.rest-api.SceneLayerJson.SceneLayerJson"
1313
+ "portalType": {
1314
+ "$ref": "#/definitions/PortalType",
1315
+ "description": "The type of Portal: AGOL or Enterprise."
85
1316
  },
86
- {
87
- "$ref": "#/definitions/esri.rest-api.StreamLayerJson.StreamLayerJson"
1317
+ "requestInfo": {
1318
+ "description": "Information about the resource that is required to sign in. Not available in VertiGIS Studio Web. Will be an instance of esri.security.CredentialRequestInfo for VertiGIS Studio Mobile."
1319
+ }
1320
+ },
1321
+ "required": [
1322
+ "authenticationType",
1323
+ "exception",
1324
+ "portalType",
1325
+ "requestInfo"
1326
+ ],
1327
+ "type": "object"
1328
+ },
1329
+ "TargetsResultsSetArgs": {
1330
+ "additionalProperties": false,
1331
+ "description": "Arguments for various commands that target a result set of features.",
1332
+ "properties": {
1333
+ "resultsSetId": {
1334
+ "description": "If specified the results will be updated in the named results set only. Results sets with the prefix 'vgs' are reserved for system use and should not be used unless you are intentionally targeting a well known results set such as the 'vgs-starred' results. Web only.",
1335
+ "type": "string"
1336
+ }
1337
+ },
1338
+ "type": "object"
1339
+ },
1340
+ "TimeSpan": {
1341
+ "additionalProperties": false,
1342
+ "type": "object"
1343
+ },
1344
+ "UIDensity": {
1345
+ "description": "Specifies the visual density of components in the application.",
1346
+ "enum": [
1347
+ "compact",
1348
+ "standard"
1349
+ ],
1350
+ "type": "string"
1351
+ },
1352
+ "UpdateSessionArgs": {
1353
+ "additionalProperties": false,
1354
+ "description": "Used to update an in-progress interactive feature editing session with new attributes, attachments or geometry. Web only.",
1355
+ "properties": {
1356
+ "attachments": {
1357
+ "description": "A collection of attachments that apply or are to be applied to the currently edited feature.",
1358
+ "items": {
1359
+ "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
1360
+ },
1361
+ "type": "array"
88
1362
  },
89
- {
90
- "$ref": "#/definitions/esri.rest-api.SubtypeGroupLayerJson.SubtypeGroupLayerJson"
1363
+ "attributes": {
1364
+ "description": "A collection of attributes that apply or are to be applied to the currently edited feature."
91
1365
  },
92
- {
93
- "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
1366
+ "geometry": {
1367
+ "$ref": "#/definitions/GeometryLike",
1368
+ "description": "The geometry to use for the command/operation."
1369
+ }
1370
+ },
1371
+ "type": "object"
1372
+ },
1373
+ "ViewModeChangedEvent": {
1374
+ "additionalProperties": false,
1375
+ "description": "Arguments for the ViewModeChanged event.",
1376
+ "properties": {
1377
+ "mapExtension": {
1378
+ "$ref": "@vertigis.arcgis-extensions.mapping.MapExtension.MapExtension",
1379
+ "description": "The map extension for which the event was generated. This property is required in VertiGIS Studio Mobile. Mobile only."
94
1380
  },
95
- {
96
- "$ref": "#/definitions/esri.rest-api.TiledMapServiceLayerJson.TiledMapServiceLayerJson"
1381
+ "maps": {
1382
+ "$ref": "MapsLike",
1383
+ "description": "The map from which the event was generated. Web only."
97
1384
  },
98
- {
99
- "$ref": "#/definitions/esri.rest-api.VectorTileLayerJson.VectorTileLayerJson"
1385
+ "viewMode": {
1386
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode",
1387
+ "description": "The new ViewMode."
1388
+ }
1389
+ },
1390
+ "type": "object"
1391
+ },
1392
+ "VisualState": {
1393
+ "description": "A component's visual state. The values will vary based on the component type.",
1394
+ "type": "string"
1395
+ },
1396
+ "VisualStateChangeEvent": {
1397
+ "additionalProperties": false,
1398
+ "description": "Payload for a VisualStateChangeEvent.",
1399
+ "properties": {
1400
+ "component": {
1401
+ "$ref": "#/definitions/ComponentId",
1402
+ "description": "The ID of the component whose visual state has changed."
100
1403
  },
101
- {
102
- "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
1404
+ "current": {
1405
+ "$ref": "#/definitions/VisualState",
1406
+ "description": "The new visual state of the component."
103
1407
  },
104
- {
105
- "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
1408
+ "previous": {
1409
+ "$ref": "#/definitions/VisualState",
1410
+ "description": "The visual state of the component before the change."
106
1411
  }
1412
+ },
1413
+ "required": [
1414
+ "component",
1415
+ "current",
1416
+ "previous"
107
1417
  ],
108
- "description": "An operational layer in a web map/scene."
1418
+ "type": "object"
109
1419
  },
110
- "PointCloudFilterJson": {
111
- "anyOf": [
112
- {
113
- "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.PointCloudBitfieldFilterJson"
1420
+ "WorkflowErrorEventArgs": {
1421
+ "additionalProperties": false,
1422
+ "description": "Arguments for the \"workflow.workflow-error\" event.",
1423
+ "properties": {
1424
+ "errorMessage": {
1425
+ "description": "The human readable error message.",
1426
+ "type": "string"
114
1427
  },
115
- {
116
- "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.PointCloudReturnFilterJson"
1428
+ "exception": {
1429
+ "$ref": "#/definitions/Error",
1430
+ "description": "The Error object containing detailed information about the error."
117
1431
  },
118
- {
119
- "$ref": "#/definitions/esri.rest-api.DrawingInfoJson.PointCloudValueFilterJson"
1432
+ "workflow": {
1433
+ "$ref": "WorkflowModel",
1434
+ "description": "The workflow pertaining to the event."
120
1435
  }
1436
+ },
1437
+ "required": [
1438
+ "workflow"
121
1439
  ],
122
- "description": "Filters applied to the pointCloud which will hide a point. See {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
1440
+ "type": "object"
1441
+ },
1442
+ "WorkflowFinishedEventArgs": {
1443
+ "additionalProperties": false,
1444
+ "description": "Arguments for the \"workflow.workflow-finished\" event.",
1445
+ "properties": {
1446
+ "workflow": {
1447
+ "$ref": "WorkflowModel",
1448
+ "description": "The workflow pertaining to the event."
1449
+ }
1450
+ },
1451
+ "required": [
1452
+ "workflow"
1453
+ ],
1454
+ "type": "object"
1455
+ },
1456
+ "WorkflowStartedEventArgs": {
1457
+ "additionalProperties": false,
1458
+ "description": "Arguments for the \"workflow.workflow-started\" event.",
1459
+ "properties": {
1460
+ "workflow": {
1461
+ "$ref": "WorkflowModel",
1462
+ "description": "The workflow pertaining to the event."
1463
+ }
1464
+ },
1465
+ "required": [
1466
+ "workflow"
1467
+ ],
1468
+ "type": "object"
123
1469
  },
124
1470
  "auth.sign-in-completed": {
125
1471
  "description": "Raised when successfully signed in. Principal event type used in Web, SignInCompletedEventArgs used in Mobile.",
@@ -127,18 +1473,48 @@
127
1473
  "auth.sign-in-completed"
128
1474
  ]
129
1475
  },
1476
+ "auth.sign-in-completed:input": {
1477
+ "anyOf": [
1478
+ {
1479
+ "$ref": "Principal"
1480
+ },
1481
+ {
1482
+ "$ref": "#/definitions/SignInCompletedEventArgs"
1483
+ }
1484
+ ]
1485
+ },
130
1486
  "auth.sign-in-failed": {
131
1487
  "description": "Raised when a sign-in attempt fails.",
132
1488
  "enum": [
133
1489
  "auth.sign-in-failed"
134
1490
  ]
135
1491
  },
1492
+ "auth.sign-in-failed:input": {
1493
+ "anyOf": [
1494
+ {
1495
+ "$ref": "#/definitions/SignInFailedEventArgs"
1496
+ },
1497
+ {
1498
+ "type": "null"
1499
+ }
1500
+ ]
1501
+ },
136
1502
  "auth.sign-in-requested": {
137
1503
  "description": "Raised when the user requests a sign-in.",
138
1504
  "enum": [
139
1505
  "auth.sign-in-requested"
140
1506
  ]
141
1507
  },
1508
+ "auth.sign-in-requested:input": {
1509
+ "anyOf": [
1510
+ {
1511
+ "$ref": "#/definitions/SignInEventArgs"
1512
+ },
1513
+ {
1514
+ "type": "null"
1515
+ }
1516
+ ]
1517
+ },
142
1518
  "auth.sign-out-completed": {
143
1519
  "description": "Raised when the user is signed out.",
144
1520
  "enum": [
@@ -166,24 +1542,75 @@
166
1542
  "edit.feature-added"
167
1543
  ]
168
1544
  },
1545
+ "edit.feature-added:input": {
1546
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1547
+ },
169
1548
  "edit.feature-deleted": {
170
1549
  "description": "Raised when a feature is deleted from a feature source.",
171
1550
  "enum": [
172
1551
  "edit.feature-deleted"
173
1552
  ]
174
1553
  },
1554
+ "edit.feature-deleted:input": {
1555
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1556
+ },
175
1557
  "edit.feature-updated": {
176
1558
  "description": "Raised when the attributes or geometry of a feature from a feature source are updated.",
177
1559
  "enum": [
178
1560
  "edit.feature-updated"
179
1561
  ]
180
1562
  },
1563
+ "edit.feature-updated:input": {
1564
+ "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1565
+ },
181
1566
  "edit.session-updated": {
182
1567
  "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. Web only.",
183
1568
  "enum": [
184
1569
  "edit.session-updated"
185
1570
  ]
186
1571
  },
1572
+ "edit.session-updated:input": {
1573
+ "$ref": "#/definitions/UpdateSessionArgs"
1574
+ },
1575
+ "esri.Color": {
1576
+ "$ref": "esri/Color"
1577
+ },
1578
+ "esri.Content": {
1579
+ "$ref": "esri/popup/content/AttachmentsContent"
1580
+ },
1581
+ "esri.FeatureSet": {
1582
+ "$ref": "esri/rest/support/FeatureSet"
1583
+ },
1584
+ "esri.FeatureType": {
1585
+ "$ref": "esri/layers/support/FeatureType"
1586
+ },
1587
+ "esri.Field": {
1588
+ "$ref": "esri/layers/support/Field"
1589
+ },
1590
+ "esri.Geometry": {
1591
+ "$ref": "esri/geometry/Geometry"
1592
+ },
1593
+ "esri.Graphic": {
1594
+ "$ref": "esri/Graphic"
1595
+ },
1596
+ "esri.PictureMarkerSymbol": {
1597
+ "$ref": "esri/symbols/PictureMarkerSymbol"
1598
+ },
1599
+ "esri.Point": {
1600
+ "$ref": "esri/geometry/Point"
1601
+ },
1602
+ "esri.PopupTemplate": {
1603
+ "$ref": "esri/PopupTemplate"
1604
+ },
1605
+ "esri.SimpleMarkerSymbol": {
1606
+ "$ref": "esri/symbols/SimpleMarkerSymbol"
1607
+ },
1608
+ "esri.SpatialReference": {
1609
+ "$ref": "esri/geometry/SpatialReference"
1610
+ },
1611
+ "esri.TextSymbol": {
1612
+ "$ref": "esri/symbols/TextSymbol"
1613
+ },
187
1614
  "esri.rest-api.AnnotationLayerJson.AnnotationLayerJson": {
188
1615
  "additionalProperties": false,
189
1616
  "description": "Annotation layers can be created by referencing a layer from a feature service. Annotation layers honor any feature templates configured in the source document.",
@@ -9076,18 +10503,41 @@
9076
10503
  "geolocation.accuracy-changed"
9077
10504
  ]
9078
10505
  },
10506
+ "geolocation.accuracy-changed:input": {
10507
+ "$ref": "#/definitions/GeolocateAccuracyChangedEventArgs"
10508
+ },
9079
10509
  "geolocation.auto-recenter-started": {
9080
10510
  "description": "Raised when geolocation enters auto recenter mode. For VertiGIS Studio Web Viewer, the event will have no parameter (all maps are always affected).",
9081
10511
  "enum": [
9082
10512
  "geolocation.auto-recenter-started"
9083
10513
  ]
9084
10514
  },
10515
+ "geolocation.auto-recenter-started:input": {
10516
+ "anyOf": [
10517
+ {
10518
+ "$ref": "#/definitions/HasMaps"
10519
+ },
10520
+ {
10521
+ "type": "null"
10522
+ }
10523
+ ]
10524
+ },
9085
10525
  "geolocation.auto-recenter-stopped": {
9086
10526
  "description": "Raised when geolocation leaves auto recenter mode. For VertiGIS Studio Web Viewer, the event will have no parameter (all maps are always affected).",
9087
10527
  "enum": [
9088
10528
  "geolocation.auto-recenter-stopped"
9089
10529
  ]
9090
10530
  },
10531
+ "geolocation.auto-recenter-stopped:input": {
10532
+ "anyOf": [
10533
+ {
10534
+ "$ref": "#/definitions/HasMaps"
10535
+ },
10536
+ {
10537
+ "type": "null"
10538
+ }
10539
+ ]
10540
+ },
9091
10541
  "geolocation.display-location-started": {
9092
10542
  "description": "Raised when geolocation enters displaying location mode. Web only.",
9093
10543
  "enum": [
@@ -9115,138 +10565,214 @@
9115
10565
  "geolocation.position-acquired"
9116
10566
  ]
9117
10567
  },
10568
+ "geolocation.position-acquired:input": {
10569
+ "$ref": "#/definitions/GeolocationEvent"
10570
+ },
9118
10571
  "geolocation.position-changed": {
9119
10572
  "description": "Raised when geolocation is activated and the user's position changes.",
9120
10573
  "enum": [
9121
10574
  "geolocation.position-changed"
9122
10575
  ]
9123
10576
  },
10577
+ "geolocation.position-changed:input": {
10578
+ "$ref": "#/definitions/esri.Point"
10579
+ },
9124
10580
  "geolocation.position-lost": {
9125
10581
  "description": "Raised when geolocation is disabled, either through signal loss or being turned off, and a user position is not available.",
9126
10582
  "enum": [
9127
10583
  "geolocation.position-lost"
9128
10584
  ]
9129
10585
  },
10586
+ "geolocation.position-lost:input": {
10587
+ "$ref": "#/definitions/GeolocationEvent"
10588
+ },
9130
10589
  "geolocation.status-changed": {
9131
10590
  "description": "Raised when geolocation status (enabled or disabled via app permissions) changes.",
9132
10591
  "enum": [
9133
10592
  "geolocation.status-changed"
9134
10593
  ]
9135
10594
  },
10595
+ "geolocation.status-changed:input": {
10596
+ "$ref": "#/definitions/GeolocationStatusChangedEventArgs"
10597
+ },
9136
10598
  "location-marker.created": {
9137
10599
  "description": "Raised when a Marker is created. Web only.",
9138
10600
  "enum": [
9139
10601
  "location-marker.created"
9140
10602
  ]
9141
10603
  },
10604
+ "location-marker.created:input": {
10605
+ "$ref": "#/definitions/LocationMarkerEvent"
10606
+ },
9142
10607
  "location-marker.removed": {
9143
10608
  "description": "Raised when a Marker is removed. Web only.",
9144
10609
  "enum": [
9145
10610
  "location-marker.removed"
9146
10611
  ]
9147
10612
  },
10613
+ "location-marker.removed:input": {
10614
+ "$ref": "#/definitions/LocationMarkerEvent"
10615
+ },
9148
10616
  "location-marker.updated": {
9149
10617
  "description": "Raised when a Marker is updated. Web only.",
9150
10618
  "enum": [
9151
10619
  "location-marker.updated"
9152
10620
  ]
9153
10621
  },
10622
+ "location-marker.updated:input": {
10623
+ "$ref": "#/definitions/LocationMarkerEvent"
10624
+ },
9154
10625
  "map.initialized": {
9155
10626
  "description": "Raised when a map has completed initialization. MapEvent used in Web, MapInitializedEvent used in Mobile.",
9156
10627
  "enum": [
9157
10628
  "map.initialized"
9158
10629
  ]
9159
10630
  },
10631
+ "map.initialized:input": {
10632
+ "anyOf": [
10633
+ {
10634
+ "$ref": "MapEvent"
10635
+ },
10636
+ {
10637
+ "$ref": "MapInitializedEvent"
10638
+ }
10639
+ ]
10640
+ },
9160
10641
  "map.view-mode-changed": {
9161
10642
  "description": "Raised when a map's {@link ViewMode} is changed. This happens when the map view is changed between a WebMap and a WebScene. Web only.",
9162
10643
  "enum": [
9163
10644
  "map.view-mode-changed"
9164
10645
  ]
9165
10646
  },
10647
+ "map.view-mode-changed:input": {
10648
+ "$ref": "#/definitions/ViewModeChangedEvent"
10649
+ },
9166
10650
  "map.viewpoint-changed": {
9167
10651
  "description": "Raised when the a map extent is changed. This event is raised in extremely high frequency - for example, every few pixels the map is repositioned during a pan.",
9168
10652
  "enum": [
9169
10653
  "map.viewpoint-changed"
9170
10654
  ]
9171
10655
  },
10656
+ "map.viewpoint-changed:input": {
10657
+ "$ref": "MapEvent"
10658
+ },
9172
10659
  "printing.print-error": {
9173
10660
  "description": "Raised when an error occurs with running a print.",
9174
10661
  "enum": [
9175
10662
  "printing.print-error"
9176
10663
  ]
9177
10664
  },
10665
+ "printing.print-error:input": {
10666
+ "$ref": "#/definitions/PrintErrorEventArgs"
10667
+ },
9178
10668
  "printing.print-finished": {
9179
10669
  "description": "Raised when a print has finished running. Event arguments include the print download URL.",
9180
10670
  "enum": [
9181
10671
  "printing.print-finished"
9182
10672
  ]
9183
10673
  },
10674
+ "printing.print-finished:input": {
10675
+ "$ref": "#/definitions/PrintFinishedEventArgs"
10676
+ },
9184
10677
  "printing.print-progress": {
9185
10678
  "description": "Raised while a print is running to provide updates on its status.",
9186
10679
  "enum": [
9187
10680
  "printing.print-progress"
9188
10681
  ]
9189
10682
  },
10683
+ "printing.print-progress:input": {
10684
+ "$ref": "#/definitions/PrintProgressEventArgs"
10685
+ },
9190
10686
  "printing.print-started": {
9191
10687
  "description": "Raised when a print has started running.",
9192
10688
  "enum": [
9193
10689
  "printing.print-started"
9194
10690
  ]
9195
10691
  },
10692
+ "printing.print-started:input": {
10693
+ "$ref": "#/definitions/PrintStartedEventArgs"
10694
+ },
9196
10695
  "project.loaded": {
9197
10696
  "description": "Raised when a project is loaded. Web only.",
9198
10697
  "enum": [
9199
10698
  "project.loaded"
9200
10699
  ]
9201
10700
  },
10701
+ "project.loaded:input": {
10702
+ "$ref": "#/definitions/SharedProject"
10703
+ },
9202
10704
  "project.share-added": {
9203
10705
  "description": "Raised when a shared project is added. Web only.",
9204
10706
  "enum": [
9205
10707
  "project.share-added"
9206
10708
  ]
9207
10709
  },
10710
+ "project.share-added:input": {
10711
+ "$ref": "#/definitions/SharedProject"
10712
+ },
9208
10713
  "project.share-removed": {
9209
10714
  "description": "Raised when a shared project is removed. Web only.",
9210
10715
  "enum": [
9211
10716
  "project.share-removed"
9212
10717
  ]
9213
10718
  },
10719
+ "project.share-removed:input": {
10720
+ "$ref": "#/definitions/SharedProject"
10721
+ },
9214
10722
  "region.measurement-system-changed": {
9215
10723
  "description": "Raised when the current measurement system is changed. Web only.",
9216
10724
  "enum": [
9217
10725
  "region.measurement-system-changed"
9218
10726
  ]
9219
10727
  },
10728
+ "region.measurement-system-changed:input": {
10729
+ "$ref": "#/definitions/MeasurementSystem"
10730
+ },
9220
10731
  "reports.report-error": {
9221
10732
  "description": "Raised when an error occurs with running a report. Web only.",
9222
10733
  "enum": [
9223
10734
  "reports.report-error"
9224
10735
  ]
9225
10736
  },
10737
+ "reports.report-error:input": {
10738
+ "$ref": "#/definitions/ReportErrorEventArgs"
10739
+ },
9226
10740
  "reports.report-finished": {
9227
10741
  "description": "Raised when a report has finished running. Event arguments include the report download URL. Web only.",
9228
10742
  "enum": [
9229
10743
  "reports.report-finished"
9230
10744
  ]
9231
10745
  },
10746
+ "reports.report-finished:input": {
10747
+ "$ref": "#/definitions/ReportFinishedEventArgs"
10748
+ },
9232
10749
  "reports.report-progress": {
9233
10750
  "description": "Raised while a report is running to provide updates on its status. Web only.",
9234
10751
  "enum": [
9235
10752
  "reports.report-progress"
9236
10753
  ]
9237
10754
  },
10755
+ "reports.report-progress:input": {
10756
+ "$ref": "#/definitions/ReportProgressEventArgs"
10757
+ },
9238
10758
  "reports.report-started": {
9239
10759
  "description": "Raised when a report has started running. Web only.",
9240
10760
  "enum": [
9241
10761
  "reports.report-started"
9242
10762
  ]
9243
10763
  },
10764
+ "reports.report-started:input": {
10765
+ "$ref": "#/definitions/ReportStartedEventArgs"
10766
+ },
9244
10767
  "results.changed": {
9245
10768
  "description": "Raised when results are added or removed to a named results set. Web only.",
9246
10769
  "enum": [
9247
10770
  "results.changed"
9248
10771
  ]
9249
10772
  },
10773
+ "results.changed:input": {
10774
+ "$ref": "#/definitions/TargetsResultsSetArgs"
10775
+ },
9250
10776
  "ui.activated": {
9251
10777
  "description": "Raised when a component is activated. The argument is the component ID.",
9252
10778
  "enum": [
@@ -9298,6 +10824,9 @@
9298
10824
  "ui.density-changed"
9299
10825
  ]
9300
10826
  },
10827
+ "ui.density-changed:input": {
10828
+ "$ref": "#/definitions/UIDensity"
10829
+ },
9301
10830
  "ui.initialized": {
9302
10831
  "description": "Raised when a component and its descendants have been initially activated. The argument is the component ID. Web only.",
9303
10832
  "enum": [
@@ -9358,6 +10887,9 @@
9358
10887
  "ui.visual-state-changed"
9359
10888
  ]
9360
10889
  },
10890
+ "ui.visual-state-changed:input": {
10891
+ "$ref": "#/definitions/VisualStateChangeEvent"
10892
+ },
9361
10893
  "viewer-spec.Event": {
9362
10894
  "anyOf": [
9363
10895
  {
@@ -9542,17 +11074,26 @@
9542
11074
  "workflow.workflow-error"
9543
11075
  ]
9544
11076
  },
11077
+ "workflow.workflow-error:input": {
11078
+ "$ref": "#/definitions/WorkflowErrorEventArgs"
11079
+ },
9545
11080
  "workflow.workflow-finished": {
9546
11081
  "description": "Raised when a workflow finishes running.",
9547
11082
  "enum": [
9548
11083
  "workflow.workflow-finished"
9549
11084
  ]
9550
11085
  },
11086
+ "workflow.workflow-finished:input": {
11087
+ "$ref": "#/definitions/WorkflowFinishedEventArgs"
11088
+ },
9551
11089
  "workflow.workflow-started": {
9552
11090
  "description": "Raised when a workflow has started running. Web only.",
9553
11091
  "enum": [
9554
11092
  "workflow.workflow-started"
9555
11093
  ]
11094
+ },
11095
+ "workflow.workflow-started:input": {
11096
+ "$ref": "#/definitions/WorkflowStartedEventArgs"
9556
11097
  }
9557
11098
  }
9558
11099
  }