@vertigis/viewer-spec 50.5.0 → 50.6.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.
Files changed (74) hide show
  1. package/README.md +1 -1
  2. package/analytics/AnalyticsContext.d.ts +2 -1
  3. package/analytics/CommonAction.d.ts +2 -1
  4. package/analytics/MobileAction.d.ts +6 -3
  5. package/app-config/AppConfig.d.ts +11 -8
  6. package/app-config/common/BrandingThemeProperties.d.ts +4 -2
  7. package/app-config/common/HighlightModelProperties.d.ts +4 -2
  8. package/app-config/common/LayerPresetsModelProperties.d.ts +2 -1
  9. package/app-config/common/LicensingModelProperties.d.ts +1 -1
  10. package/app-config/common/ResultsModelProperties.d.ts +2 -1
  11. package/app-config/common/TranslatableText.d.ts +2 -1
  12. package/app-config/common/WorkflowModelProperties.d.ts +4 -2
  13. package/app-config/mobile/FeatureDetailsModelProperties.d.ts +4 -2
  14. package/app-config/mobile/VertigisMobileModelProperties.d.ts +4 -3
  15. package/app-config/schema/common-app-config.schema.json +1 -1
  16. package/app-config/schema/mobile-app-config.schema.json +1 -1
  17. package/app-config/schema/web-app-config.schema.json +1 -1
  18. package/app-config/web/CoordinateModelProperties.d.ts +2 -1
  19. package/app-config/web/DrawModelProperties.d.ts +2 -1
  20. package/app-config/web/HasVisibilityFilters.d.ts +2 -1
  21. package/app-config/web/KpiCardModelProperties.d.ts +2 -1
  22. package/app-config/web/MapCoordinatesModelProperties.d.ts +2 -1
  23. package/app-config/web/MapModelProperties.d.ts +4 -2
  24. package/app-config/web/MeasurementModelProperties.d.ts +2 -1
  25. package/app-config/web/PortalModelProperties.d.ts +2 -1
  26. package/app-config/web/ResultsModelProperties.d.ts +4 -2
  27. package/app-config/web/SearchModelProperties.d.ts +2 -1
  28. package/app-config/web/VertigisWebModelProperties.d.ts +6 -3
  29. package/docs/Geocortex Apps.md +8 -8
  30. package/docs/layout-spec.md +105 -94
  31. package/layout/schema/layout-common.xsd +1 -1
  32. package/layout/schema/layout-web.xsd +1 -1
  33. package/messaging/Command.d.ts +4 -2
  34. package/messaging/Event.d.ts +4 -2
  35. package/messaging/Message.d.ts +2 -1
  36. package/messaging/Operation.d.ts +4 -2
  37. package/messaging/common.d.ts +12 -6
  38. package/messaging/registry/app.d.ts +12 -6
  39. package/messaging/registry/arcade.d.ts +6 -3
  40. package/messaging/registry/auth.d.ts +12 -7
  41. package/messaging/registry/basemap.d.ts +2 -1
  42. package/messaging/registry/drawing.d.ts +8 -4
  43. package/messaging/registry/edit.d.ts +6 -3
  44. package/messaging/registry/file.d.ts +2 -1
  45. package/messaging/registry/geocode.d.ts +8 -5
  46. package/messaging/registry/geolocation.d.ts +26 -11
  47. package/messaging/registry/geolocation.js +1 -1
  48. package/messaging/registry/geometry.d.ts +10 -5
  49. package/messaging/registry/kpi.d.ts +4 -2
  50. package/messaging/registry/layout.d.ts +2 -1
  51. package/messaging/registry/location-marker.d.ts +10 -5
  52. package/messaging/registry/map.d.ts +15 -8
  53. package/messaging/registry/measurement.d.ts +4 -2
  54. package/messaging/registry/messaging.d.ts +1 -1
  55. package/messaging/registry/offline.d.ts +16 -9
  56. package/messaging/registry/panel.d.ts +2 -1
  57. package/messaging/registry/portal.d.ts +8 -4
  58. package/messaging/registry/printing.d.ts +4 -2
  59. package/messaging/registry/results.d.ts +19 -10
  60. package/messaging/registry/settings.d.ts +4 -2
  61. package/messaging/registry/sketching.d.ts +38 -26
  62. package/messaging/registry/tasks.d.ts +7 -4
  63. package/messaging/registry/ui.d.ts +14 -7
  64. package/messaging/registry/viewer.d.ts +2 -1
  65. package/messaging/registry/workflow.d.ts +6 -3
  66. package/messaging/schema/common-action.schema.json +269 -236
  67. package/messaging/schema/common-event.schema.json +118 -122
  68. package/messaging/schema/mobile-action.schema.json +294 -217
  69. package/messaging/schema/mobile-event.schema.json +146 -153
  70. package/messaging/schema/web-action.schema.json +305 -269
  71. package/messaging/schema/web-event.schema.json +144 -151
  72. package/package.json +17 -17
  73. package/version.d.ts +2 -2
  74. package/version.js +2 -2
@@ -14,7 +14,8 @@ declare enum GeometryMode {
14
14
  AREA = "area"
15
15
  }
16
16
  /**
17
- * Arguments for the measurement.get-symbol operation. Only available in Geocortex Web.
17
+ * Arguments for the measurement.get-symbol operation. Only available in
18
+ * VertiGIS Studio Web.
18
19
  */
19
20
  export interface GetDefaultSymbolArgs {
20
21
  /**
@@ -23,7 +24,8 @@ export interface GetDefaultSymbolArgs {
23
24
  geometryType?: GeometryType;
24
25
  }
25
26
  /**
26
- * Arguments for the measurement events. Only available in VertiGIS Studio Mobile.
27
+ * Arguments for the measurement events. Only available in VertiGIS Studio
28
+ * Mobile.
27
29
  */
28
30
  export interface GeometryModeArgs extends HasMaps {
29
31
  /**
@@ -14,7 +14,7 @@ export declare class MessagingOperations extends OperationRegistry {
14
14
  *
15
15
  * Note that argument merging already occurs automatically in command
16
16
  * chains; this explicit operation exists for advanced scenarios like
17
- * Geocortex Workflow or custom code written using the SDK.
17
+ * VertiGIS Studio Workflow or custom code written using the SDK.
18
18
  *
19
19
  * @webOnly
20
20
  */
@@ -185,7 +185,8 @@ export interface OfflineOperationResult {
185
185
  */
186
186
  success: boolean;
187
187
  /**
188
- * The Exception that occurred during the operation, or null if no Exception occurred.
188
+ * The Exception that occurred during the operation, or null if no Exception
189
+ * occurred.
189
190
  */
190
191
  error: Exception;
191
192
  /**
@@ -195,8 +196,8 @@ export interface OfflineOperationResult {
195
196
  errorCode: OfflineErrorCode;
196
197
  /**
197
198
  * Gets a string representation of the ErrorCode enum; or null if
198
- * successful. Useful for consumption in Geocortex Workflow, instead of
199
- * having to deal with an integer value for the ErrorCode.
199
+ * successful. Useful for consumption in VertiGIS Studio Workflow, instead
200
+ * of having to deal with an integer value for the ErrorCode.
200
201
  */
201
202
  errorCodeString: string;
202
203
  /**
@@ -243,7 +244,8 @@ export interface OfflineOperationResult {
243
244
  */
244
245
  export declare enum OfflineErrorCode {
245
246
  /**
246
- * The operation requires network connectivity, but the network is disconnected.
247
+ * The operation requires network connectivity, but the network is
248
+ * disconnected.
247
249
  */
248
250
  NETWORK_CONNECTION_REQUIRED = 100,
249
251
  /**
@@ -263,7 +265,8 @@ export declare enum OfflineErrorCode {
263
265
  */
264
266
  INVALID_MAP_AREA_DATA = 104,
265
267
  /**
266
- * The amount of allowable time spent with the app in the background was exceeded.
268
+ * The amount of allowable time spent with the app in the background was
269
+ * exceeded.
267
270
  */
268
271
  BACKGROUND_TIME_EXPIRED = 105,
269
272
  /**
@@ -296,7 +299,8 @@ export declare class OfflineCommands extends CommandRegistry {
296
299
  */
297
300
  get cancelCreateArea(): Command;
298
301
  /**
299
- * Cancels the download of the specified offline area, if it is currently in progress.
302
+ * Cancels the download of the specified offline area, if it is currently in
303
+ * progress.
300
304
  *
301
305
  * @mobileOnly
302
306
  */
@@ -310,7 +314,8 @@ export declare class OfflineCommands extends CommandRegistry {
310
314
  */
311
315
  get deleteArea(): Command<OfflineCommandArgs>;
312
316
  /**
313
- * Displays a form that allows for the creation of a custom offline map area.
317
+ * Displays a form that allows for the creation of a custom offline map
318
+ * area.
314
319
  *
315
320
  * @mobileOnly
316
321
  */
@@ -461,13 +466,15 @@ export declare class OfflineOperations extends OperationRegistry {
461
466
  */
462
467
  get checkForActiveArea(): Operation<MapExtension, boolean>;
463
468
  /**
464
- * Pushes any edits to the server that have been done in the indicated offline map.
469
+ * Pushes any edits to the server that have been done in the indicated
470
+ * offline map.
465
471
  *
466
472
  * @mobileOnly
467
473
  */
468
474
  get submitEdits(): Operation<OfflineCommandArgs, OfflineOperationResult>;
469
475
  /**
470
- * Pulls down any new map changes from the server to the indicated offline map.
476
+ * Pulls down any new map changes from the server to the indicated offline
477
+ * map.
471
478
  *
472
479
  * @mobileOnly
473
480
  */
@@ -61,7 +61,8 @@ export declare class PanelCommands extends CommandRegistry {
61
61
  /**
62
62
  * Closes the host panel. If a component is specified, the panel is only
63
63
  * closed if the specified component is currently open in the host panel. If
64
- * no component is specified (input null), then the host panel will always be closed.
64
+ * no component is specified (input null), then the host panel will always
65
+ * be closed.
65
66
  *
66
67
  * @mobileOnly
67
68
  */
@@ -15,7 +15,8 @@ export interface ArcGISPortalExtension {
15
15
  */
16
16
  export interface ChooseLayersOptions extends HasMaps, HasUITarget {
17
17
  /**
18
- * Whether the user can choose multiple layers, or just one. Default is `false`.
18
+ * Whether the user can choose multiple layers, or just one. Default is
19
+ * `false`.
19
20
  */
20
21
  allowMultiple?: boolean;
21
22
  }
@@ -50,16 +51,19 @@ export interface PortalItemData {
50
51
  */
51
52
  export interface CreateOrUpdateItemArgs extends PortalItemData {
52
53
  /**
53
- * The title of the resulting portal item. Must be provided if `showUI` is `false`.
54
+ * The title of the resulting portal item. Must be provided if `showUI` is
55
+ * `false`.
54
56
  */
55
57
  title?: string;
56
58
  /**
57
- * Whether to show UI elements associated with this operation. Defaults to `true`.
59
+ * Whether to show UI elements associated with this operation. Defaults to
60
+ * `true`.
58
61
  */
59
62
  showUI?: boolean;
60
63
  /**
61
64
  * Whether to prompt before overwriting an existing item. This must be set
62
- * to `false` to allow overwriting if `showUI` is also `false`. Defaults to `true`.
65
+ * to `false` to allow overwriting if `showUI` is also `false`. Defaults to
66
+ * `true`.
63
67
  */
64
68
  promptForOverwrite?: boolean;
65
69
  }
@@ -45,7 +45,8 @@ export interface RunPrintArgs {
45
45
  */
46
46
  extent?: Extent;
47
47
  /**
48
- * The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint.
48
+ * The initial viewpoint of the 3D map(s). Defaults to the scene's current
49
+ * viewpoint.
49
50
  */
50
51
  viewpoint?: Viewpoint;
51
52
  /**
@@ -57,7 +58,8 @@ export interface RunPrintArgs {
57
58
  */
58
59
  grid?: SpatialReference;
59
60
  /**
60
- * Additional parameters used in the print template, specified as key-value pairs.
61
+ * Additional parameters used in the print template, specified as key-value
62
+ * pairs.
61
63
  */
62
64
  parameters?: JobParameters;
63
65
  /**
@@ -184,7 +184,8 @@ export interface FromGraphicsArgs {
184
184
  */
185
185
  title?: string;
186
186
  /**
187
- * The feature source ID to use if the results are associated with a workflow.
187
+ * The feature source ID to use if the results are associated with a
188
+ * workflow.
188
189
  */
189
190
  workflowItemId?: string;
190
191
  }
@@ -263,7 +264,8 @@ export interface SetListCardSizeArgs {
263
264
  results?: ModelRef;
264
265
  }
265
266
  /**
266
- * Arguments for various commands that manipulate the current set of shown results.
267
+ * Arguments for various commands that manipulate the current set of shown
268
+ * results.
267
269
  */
268
270
  export declare type ShowResultsArgs = Features | (UpdateResultsFeaturesArgs & {
269
271
  /**
@@ -326,7 +328,8 @@ export declare class ResultsCommands extends CommandRegistry {
326
328
  * Presents features to the user within any components that can display
327
329
  * features, such as a feature list, feature table, or feature details
328
330
  * component. The argument is the features to display, or an object
329
- * specifying both features and the target results component to update (Web only).
331
+ * specifying both features and the target results component to update (Web
332
+ * only).
330
333
  */
331
334
  get display(): Command<Features | UpdateResultsFeaturesArgs>;
332
335
  /**
@@ -343,13 +346,15 @@ export declare class ResultsCommands extends CommandRegistry {
343
346
  /**
344
347
  * Presents feature details to the user within the feature-details
345
348
  * component. The argument is the feature(s) to display, or an object
346
- * specifying both features and the target results component to update (Web only).
349
+ * specifying both features and the target results component to update (Web
350
+ * only).
347
351
  */
348
352
  get displayDetails(): Command<Features | UpdateResultsFeaturesArgs>;
349
353
  /**
350
354
  * Presents a feature summary to the user within the feature-summary
351
355
  * component. The argument is the feature(s) to display, or an object
352
- * specifying both features and the target results component to update (Web only).
356
+ * specifying both features and the target results component to update (Web
357
+ * only).
353
358
  *
354
359
  * @webOnly
355
360
  */
@@ -358,7 +363,8 @@ export declare class ResultsCommands extends CommandRegistry {
358
363
  * Presents new feature details to the user within the feature-details
359
364
  * component. If the feature-details component is contained within a panel,
360
365
  * a 'back' button will be provided to navigate to the previous content;
361
- * otherwise, the content of the feature-details component will be replaced.
366
+ * otherwise, the content of the feature-details component will be
367
+ * replaced.
362
368
  */
363
369
  get displayNewDetails(): Command<Features | UpdateResultsFeaturesArgs>;
364
370
  /**
@@ -387,7 +393,8 @@ export declare class ResultsCommands extends CommandRegistry {
387
393
  */
388
394
  get clearDetails(): Command;
389
395
  /**
390
- * Deactivates the feature details component that is displaying the given feature.
396
+ * Deactivates the feature details component that is displaying the given
397
+ * feature.
391
398
  *
392
399
  * @mobileOnly
393
400
  */
@@ -467,7 +474,8 @@ export declare class ResultsOperations extends OperationRegistry {
467
474
  get convertToCsv(): Operation<ToCsvConversionArgs | Features, ConversionResult>;
468
475
  /**
469
476
  * Converts the provided Feature(s) to a XLSX file grouped by feature
470
- * source. If there are multiple sources the XLSX(s) will be bundled in a zip file.
477
+ * source. If there are multiple sources the XLSX(s) will be bundled in a
478
+ * zip file.
471
479
  *
472
480
  * @webOnly
473
481
  */
@@ -505,11 +513,12 @@ export declare class ResultsOperations extends OperationRegistry {
505
513
  */
506
514
  get fromXlsx(): Operation<FromXLSXConversionArgs | Blob | Blob[], Features>;
507
515
  /**
508
- * Converts provided GraphicsLike to Geocortex Features using any available metadata.
516
+ * Converts provided GraphicsLike to VertiGIS Studio Features using any
517
+ * available metadata.
509
518
  */
510
519
  get fromGraphics(): Operation<FromGraphicsArgs, Features>;
511
520
  /**
512
- * Converts Geocortex Features to Esri graphics.
521
+ * Converts VertiGIS Studio Features to Esri graphics.
513
522
  */
514
523
  get toGraphics(): Operation<Features, Graphic[]>;
515
524
  /**
@@ -13,7 +13,8 @@ export declare class SettingsEvents extends EventRegistry {
13
13
  */
14
14
  export interface SettingsInfo {
15
15
  /**
16
- * Indicates if layer visibilities are remembered and restored upon app startup.
16
+ * Indicates if layer visibilities are remembered and restored upon app
17
+ * startup.
17
18
  */
18
19
  rememberLayerVisibilities: boolean;
19
20
  /**
@@ -21,7 +22,8 @@ export interface SettingsInfo {
21
22
  */
22
23
  rememberMapExtent: boolean;
23
24
  /**
24
- * The size that photos will be resized to when adding as a feature attachment.
25
+ * The size that photos will be resized to when adding as a feature
26
+ * attachment.
25
27
  */
26
28
  photoResize: PhotoResizeOption;
27
29
  /**
@@ -160,7 +160,8 @@ export interface MovePointArgs extends HasMaps {
160
160
  units?: LengthUnits;
161
161
  }
162
162
  /**
163
- * Deprecated - use "sketching.set-active-points" with {@link SetActivePointsArgs}.
163
+ * Deprecated - use "sketching.set-active-points" with
164
+ * {@link SetActivePointsArgs}.
164
165
  *
165
166
  * @deprecated
166
167
  */
@@ -208,15 +209,16 @@ export interface CaptureGeometryArgs {
208
209
  maps?: MapsLike;
209
210
  /**
210
211
  * The geometry/shape to use for sketching. * Multiple sketch tools are only
211
- * supported by Geocortex Web. When multiple sketch tools are provided, the
212
- * sketch will begin with the first one in the list. If "point" is the first
213
- * of multiple options in the list, click actions will create points while
214
- * click-and-drag actions will automatically begin the freehand variation of
215
- * the next included geometry type.
212
+ * supported by VertiGIS Studio Web. When multiple sketch tools are
213
+ * provided, the sketch will begin with the first one in the list. If
214
+ * "point" is the first of multiple options in the list, click actions will
215
+ * create points while click-and-drag actions will automatically begin the
216
+ * freehand variation of the next included geometry type.
216
217
  */
217
218
  geometryType: SketchTool | SketchTool[];
218
219
  /**
219
- * An optional symbol to use. SymbolSets are not supported by Geocortex Mobile.
220
+ * An optional symbol to use. SymbolSets are not supported by VertiGIS
221
+ * Studio Mobile.
220
222
  */
221
223
  symbol?: SymbolJson | SymbolSet;
222
224
  /**
@@ -242,8 +244,8 @@ export interface CaptureGeometryResult {
242
244
  */
243
245
  geometry: Geometry;
244
246
  /**
245
- * The map that the user sketched the geometry on. Unavailable in Geocortex
246
- * Mobile Viewer.
247
+ * The map that the user sketched the geometry on. Unavailable in VertiGIS
248
+ * Studio Mobile.
247
249
  */
248
250
  maps: MapsLike;
249
251
  /**
@@ -392,7 +394,8 @@ export interface StopGeometryEditArgs {
392
394
  */
393
395
  maps: MapsLike;
394
396
  /**
395
- * Whether to validate the geometry before returning it. Defaults to true if not set.
397
+ * Whether to validate the geometry before returning it. Defaults to true if
398
+ * not set.
396
399
  */
397
400
  validateGeometry?: boolean;
398
401
  }
@@ -448,20 +451,20 @@ export interface AddNodeToGeometryArgs extends HasMaps {
448
451
  geometry: Geometry;
449
452
  /**
450
453
  * The type of geometry to create if the initial geometry is null. In
451
- * Geocortex Mobile, this value must be 'polygon' or 'polyline'. In
452
- * Geocortex Web, this value may also be null if the point being added is
453
- * intended to be added to the active sketch.
454
+ * VertiGIS Studio Mobile, this value must be 'polygon' or 'polyline'. In
455
+ * VertiGIS Studio Web, this value may also be null if the point being added
456
+ * is intended to be added to the active sketch.
454
457
  */
455
458
  geometryType: string;
456
459
  /**
457
- * A point geometry to add to the initial geometry. In geocortex Web, this
458
- * value may be null if the intention is to add a point at the position of
459
- * the active point of an active sketch.
460
+ * A point geometry to add to the initial geometry. In VertiGIS Studio Web,
461
+ * this value may be null if the intention is to add a point at the position
462
+ * of the active point of an active sketch.
460
463
  */
461
464
  node: Geometry;
462
465
  /**
463
466
  * Indicates whether the new point should be added before or after the
464
- * active point in the sketch. Not supported by Geocortex Mobile.
467
+ * active point in the sketch. Not supported by VertiGIS Studio Mobile.
465
468
  */
466
469
  nodeOrder?: AddNodeOrder;
467
470
  }
@@ -498,7 +501,8 @@ export interface DeleteGeometryArgs extends HasMaps {
498
501
  */
499
502
  export interface SetGeometryModeArgs extends HasMaps {
500
503
  /**
501
- * The geometry mode to switch to. Geocortex Mobile only supports "line" and "area".
504
+ * The geometry mode to switch to. VertiGIS Studio Mobile only supports
505
+ * "line" and "area".
502
506
  */
503
507
  editorGeometryMode: EditorGeometryMode | SketchTool;
504
508
  }
@@ -516,7 +520,8 @@ export interface SetInteractionModeArgs extends HasMaps {
516
520
  */
517
521
  export interface StartStreamingArgs extends HasMaps {
518
522
  /**
519
- * An optional value indicating, in seconds, how often points should be recorded.
523
+ * An optional value indicating, in seconds, how often points should be
524
+ * recorded.
520
525
  */
521
526
  interval?: number;
522
527
  }
@@ -557,7 +562,8 @@ export interface GeometryEditorSettings {
557
562
  */
558
563
  finishOnDoubleClick?: boolean;
559
564
  /**
560
- * Whether the sketch should commit its geometry if another sketch is activated.
565
+ * Whether the sketch should commit its geometry if another sketch is
566
+ * activated.
561
567
  */
562
568
  finishIfInterrupted?: boolean;
563
569
  }
@@ -588,7 +594,8 @@ export declare type PointOffset = "before" | "after";
588
594
  */
589
595
  export interface GetAdjacentPointArgs extends HasMaps {
590
596
  /**
591
- * A point geometry that represents a vertex within an active editing graphic.
597
+ * A point geometry that represents a vertex within an active editing
598
+ * graphic.
592
599
  */
593
600
  referencePoint: Point;
594
601
  /**
@@ -621,7 +628,8 @@ export interface SetConstraintsArgs extends HasMaps {
621
628
  * Indicates whether constraints will be automatically cleared after a
622
629
  * vertex is added or updated. If not set (value is null), then the value
623
630
  * will remain unchanged with this operation. If the value has never been
624
- * set, the default is false. Remains unchanged until set to a different value.
631
+ * set, the default is false. Remains unchanged until set to a different
632
+ * value.
625
633
  */
626
634
  autoClear?: boolean;
627
635
  /**
@@ -662,7 +670,8 @@ export declare class SketchingOperations extends OperationRegistry {
662
670
  */
663
671
  get captureGeometry(): Operation<CaptureGeometryArgs, CaptureGeometryResult>;
664
672
  /**
665
- * Allows the user to edit the symbology used by the graphics actively being edited.
673
+ * Allows the user to edit the symbology used by the graphics actively being
674
+ * edited.
666
675
  *
667
676
  * @webOnly
668
677
  */
@@ -708,7 +717,8 @@ export declare class SketchingOperations extends OperationRegistry {
708
717
  get stop(): Operation<StopGeometryEditArgs | void, CaptureGeometryResult>;
709
718
  /**
710
719
  * Deprecated - Mobile users should rather use "geometry.add-point"; Web
711
- * users should use "sketching.add-point" or "sketching.insert-point" instead.
720
+ * users should use "sketching.add-point" or "sketching.insert-point"
721
+ * instead.
712
722
  *
713
723
  * @deprecated
714
724
  */
@@ -727,7 +737,8 @@ export declare class SketchingOperations extends OperationRegistry {
727
737
  */
728
738
  get getActiveNode(): Operation<Maps, GetActivePointsResult>;
729
739
  /**
730
- * Returns the active point graphics of the active sketch or edit session on a map.
740
+ * Returns the active point graphics of the active sketch or edit session on
741
+ * a map.
731
742
  *
732
743
  * @webOnly
733
744
  */
@@ -792,7 +803,8 @@ export declare class SketchingCommands extends CommandRegistry {
792
803
  * If a point is supplied while a sketching or editing operation is active,
793
804
  * the vertex at that point will be deleted from the current geometry. If no
794
805
  * point is supplied, any active points in the session will be deleted. If
795
- * there are no active points in the session, the entire geometry will be deleted.
806
+ * there are no active points in the session, the entire geometry will be
807
+ * deleted.
796
808
  */
797
809
  get delete(): Command<void | DeleteGeometryArgs>;
798
810
  /**
@@ -46,20 +46,23 @@ export interface SearchArgs {
46
46
  */
47
47
  maxQueryResults?: number;
48
48
  /**
49
- * If specified, results are limited to features that intersect the geometry.
49
+ * If specified, results are limited to features that intersect the
50
+ * geometry.
50
51
  */
51
52
  searchArea?: Geometry;
52
53
  /**
53
54
  * If specified, this will influence the score of spatial features based on
54
55
  * their proximity to this point. Most commonly this would be the user's
55
56
  * current location, but can be any point of interest. This option requires
56
- * searchArea to also be specified. Not supported in VertiGIS Studio Mobile.
57
+ * searchArea to also be specified. Not supported in VertiGIS Studio
58
+ * Mobile.
57
59
  */
58
60
  near?: Point;
59
61
  /**
60
- * The map Viewpoint at the time of the search. Mobile only.
62
+ * The map Viewpoint at the time of the search. Mobile only. This property
63
+ * is required in VertiGIS Studio Mobile.
61
64
  */
62
- mapViewpoint: Viewpoint;
65
+ mapViewpoint?: Viewpoint;
63
66
  /**
64
67
  * The spatial reference for the returned geometry. Not supported in
65
68
  * VertiGIS Studio Mobile.
@@ -96,7 +96,8 @@ export interface DisplayNotificationArgs {
96
96
  */
97
97
  notificationGroup?: string;
98
98
  /**
99
- * The notification title - only shown for system notifications. Mobile only.
99
+ * The notification title - only shown for system notifications. Mobile
100
+ * only.
100
101
  */
101
102
  title?: string;
102
103
  /**
@@ -106,7 +107,8 @@ export interface DisplayNotificationArgs {
106
107
  type?: NotificationType;
107
108
  }
108
109
  /**
109
- * The type of notification - 'app', 'system', or 'auto'. Defaults to 'auto'. Mobile only.
110
+ * The type of notification - 'app', 'system', or 'auto'. Defaults to 'auto'.
111
+ * Mobile only.
110
112
  */
111
113
  export declare enum NotificationType {
112
114
  /**
@@ -261,7 +263,8 @@ export declare class UICommands extends CommandRegistry {
261
263
  */
262
264
  get deactivate(): Command<ComponentId | Model>;
263
265
  /**
264
- * Displays a spinner and custom message to the user to indicate that the UI is busy.
266
+ * Displays a spinner and custom message to the user to indicate that the UI
267
+ * is busy.
265
268
  *
266
269
  * @mobileOnly
267
270
  */
@@ -319,7 +322,8 @@ export declare class UICommands extends CommandRegistry {
319
322
  */
320
323
  get setLocale(): Command<string>;
321
324
  /**
322
- * Sets the color theme of the viewer. The required argument is the new theme's ID.
325
+ * Sets the color theme of the viewer. The required argument is the new
326
+ * theme's ID.
323
327
  */
324
328
  get setTheme(): Command<string>;
325
329
  /**
@@ -395,13 +399,15 @@ export declare class UIEvents extends EventRegistry {
395
399
  */
396
400
  get densityChanged(): Event<UIDensity>;
397
401
  /**
398
- * Raised when the locale is changed by the user. The argument is the locale code.
402
+ * Raised when the locale is changed by the user. The argument is the locale
403
+ * code.
399
404
  *
400
405
  * @webOnly
401
406
  */
402
407
  get localeChanged(): Event<string>;
403
408
  /**
404
- * Raised when a component begins initialization. The argument is the component ID.
409
+ * Raised when a component begins initialization. The argument is the
410
+ * component ID.
405
411
  *
406
412
  * @webOnly
407
413
  */
@@ -420,7 +426,8 @@ export declare class UIEvents extends EventRegistry {
420
426
  */
421
427
  get removed(): Event<ComponentId>;
422
428
  /**
423
- * Raised when a component is reordered in the layout relative to its siblings.
429
+ * Raised when a component is reordered in the layout relative to its
430
+ * siblings.
424
431
  *
425
432
  * @webOnly
426
433
  */
@@ -7,7 +7,8 @@ import { OperationRegistry } from "../OperationRegistry.js";
7
7
  import type { Model } from "../common.js";
8
8
  export declare class ViewerCommands extends CommandRegistry {
9
9
  /**
10
- * Loads a new layout. Can be a layout URL or layout XML, or a Layout object.
10
+ * Loads a new layout. Can be a layout URL or layout XML, or a Layout
11
+ * object.
11
12
  *
12
13
  * @webOnly
13
14
  */
@@ -33,7 +33,8 @@ interface ExecuteWorkflowArgs {
33
33
  */
34
34
  instanceId?: string;
35
35
  /**
36
- * The map to target, if omitted Web will attempt to choose the best map for you.
36
+ * The map to target, if omitted Web will attempt to choose the best map for
37
+ * you.
37
38
  *
38
39
  * @webOnly
39
40
  */
@@ -42,7 +43,8 @@ interface ExecuteWorkflowArgs {
42
43
  * The layout ID of the workflow component to use for any workflow forms, or
43
44
  * the ID of a container component like taskbar, panel, stack, etc. In the
44
45
  * latter case, a new workflow component will be created dynamically as a
45
- * child of the targeted container, and removed when the workflow finishes running.
46
+ * child of the targeted container, and removed when the workflow finishes
47
+ * running.
46
48
  */
47
49
  target?: string;
48
50
  }
@@ -106,7 +108,8 @@ export interface WorkflowFinishedEventArgs extends WorkflowEventBase {
106
108
  export declare class WorkflowCommands extends CommandRegistry {
107
109
  /**
108
110
  * Runs a workflow with the given arguments. See the `workflow.evaluate`
109
- * operation if you want to run a workflow and expect output values to be returned.
111
+ * operation if you want to run a workflow and expect output values to be
112
+ * returned.
110
113
  */
111
114
  get run(): Command<RunWorkflowArgs>;
112
115
  /**