@arcgis/core-adapter 4.32.0-next.11 → 4.32.0-next.13

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.
@@ -295,6 +295,8 @@ declare namespace __esri {
295
295
 
296
296
  export type FeatureTableCellClickEventHandler = (event: FeatureTableCellClickEvent) => void;
297
297
 
298
+ export type FeatureTableCellDblclickEventHandler = (event: FeatureTableCellDblclickEvent) => void;
299
+
298
300
  export type FeatureTableCellKeydownEventHandler = (event: FeatureTableCellKeydownEvent) => void;
299
301
 
300
302
  export type FeatureTableCellPointeroutEventHandler = (event: FeatureTableCellPointeroutEvent) => void;
@@ -317,6 +319,8 @@ declare namespace __esri {
317
319
  event: FeatureTableViewModelCellPointeroverEvent
318
320
  ) => void;
319
321
 
322
+ export type FeatureTableViewModelColumnReorderEventHandler = (event: FeatureTableViewModelColumnReorderEvent) => void;
323
+
320
324
  export type FeatureTemplatesSelectEventHandler = (event: FeatureTemplatesSelectEvent) => void;
321
325
 
322
326
  export type FeatureTemplatesViewModelSelectEventHandler = (event: FeatureTemplatesViewModelSelectEvent) => void;
@@ -829,7 +833,7 @@ declare namespace __esri {
829
833
  */
830
834
  elevationInfo: LineOfSightAnalysisObserverElevationInfo;
831
835
  /**
832
- * Specifies a feature which shall be excluded from intersection testing.
836
+ * References a feature which is excluded from the intersection testing.
833
837
  *
834
838
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisObserver.html#feature)
835
839
  */
@@ -850,7 +854,7 @@ declare namespace __esri {
850
854
  */
851
855
  elevationInfo?: LineOfSightAnalysisObserverElevationInfo;
852
856
  /**
853
- * Specifies a feature which shall be excluded from intersection testing.
857
+ * References a feature which is excluded from the intersection testing.
854
858
  *
855
859
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisObserver.html#feature)
856
860
  */
@@ -896,7 +900,7 @@ declare namespace __esri {
896
900
  */
897
901
  elevationInfo: LineOfSightAnalysisTargetElevationInfo;
898
902
  /**
899
- * Specifies a feature which shall be excluded from intersection testing.
903
+ * References a feature which is excluded from the intersection testing.
900
904
  *
901
905
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisTarget.html#feature)
902
906
  */
@@ -917,7 +921,7 @@ declare namespace __esri {
917
921
  */
918
922
  elevationInfo?: LineOfSightAnalysisTargetElevationInfo;
919
923
  /**
920
- * Specifies a feature which shall be excluded from intersection testing.
924
+ * References a feature which is excluded from the intersection testing.
921
925
  *
922
926
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-LineOfSightAnalysisTarget.html#feature)
923
927
  */
@@ -1109,7 +1113,7 @@ declare namespace __esri {
1109
1113
  */
1110
1114
  farDistance: number;
1111
1115
  /**
1112
- * Specifies a feature to which the observer is internally offset, if close enough.
1116
+ * References a feature from which the observer is internally offset, provided that its geometry faces are close enough to the observer.
1113
1117
  *
1114
1118
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-Viewshed.html#feature)
1115
1119
  */
@@ -1123,7 +1127,7 @@ declare namespace __esri {
1123
1127
  */
1124
1128
  heading: number;
1125
1129
  /**
1126
- * The horizontal field of view (FOV) angle defines how wide scope is analysed (in degrees).
1130
+ * The horizontal field of view (FOV) angle defines the width of the scope being analyzed (in degrees).
1127
1131
  *
1128
1132
  * @default 45
1129
1133
  *
@@ -1145,7 +1149,7 @@ declare namespace __esri {
1145
1149
  */
1146
1150
  tilt: number;
1147
1151
  /**
1148
- * The vertical field of view (FOV) angle defines how tall scope is analysed (in degrees).
1152
+ * The vertical field of view (FOV) angle defines the height of the scope being analyzed (in degrees).
1149
1153
  *
1150
1154
  * @default 45
1151
1155
  *
@@ -1162,7 +1166,7 @@ declare namespace __esri {
1162
1166
  */
1163
1167
  farDistance?: number;
1164
1168
  /**
1165
- * Specifies a feature to which the observer is internally offset, if close enough.
1169
+ * References a feature from which the observer is internally offset, provided that its geometry faces are close enough to the observer.
1166
1170
  *
1167
1171
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-Viewshed.html#feature)
1168
1172
  */
@@ -1176,7 +1180,7 @@ declare namespace __esri {
1176
1180
  */
1177
1181
  heading?: number;
1178
1182
  /**
1179
- * The horizontal field of view (FOV) angle defines how wide scope is analysed (in degrees).
1183
+ * The horizontal field of view (FOV) angle defines the width of the scope being analyzed (in degrees).
1180
1184
  *
1181
1185
  * @default 45
1182
1186
  *
@@ -1198,7 +1202,7 @@ declare namespace __esri {
1198
1202
  */
1199
1203
  tilt?: number;
1200
1204
  /**
1201
- * The vertical field of view (FOV) angle defines how tall scope is analysed (in degrees).
1205
+ * The vertical field of view (FOV) angle defines the height of the scope being analyzed (in degrees).
1202
1206
  *
1203
1207
  * @default 45
1204
1208
  *
@@ -1282,6 +1286,17 @@ declare namespace __esri {
1282
1286
 
1283
1287
  export const basemapUtils: basemapUtils;
1284
1288
 
1289
+ /**
1290
+ * Note: reserved for internal use only, this is not part of the stable public API.
1291
+ *
1292
+ * CollectionFlattener utils for Components.
1293
+ */
1294
+ interface CollectionFlattener {}
1295
+
1296
+ export const CollectionFlattener: CollectionFlattener;
1297
+
1298
+ export interface coreCollectionFlattener {}
1299
+
1285
1300
  /**
1286
1301
  * Note: reserved for internal use only, this is not part of the stable public API.
1287
1302
  *
@@ -1293,11 +1308,27 @@ declare namespace __esri {
1293
1308
  *
1294
1309
  * performs translation of given geometry dx, dy: how much to translate the geometry in x and y direction.
1295
1310
  */
1296
- move(geometry: any): any;
1311
+ move(geometry: any, dx: number, dy: number, dz?: number): any;
1297
1312
  }
1298
1313
 
1299
1314
  export const drawUtils: drawUtils;
1300
1315
 
1316
+ /**
1317
+ * Note: reserved for internal use only, this is not part of the stable public API.
1318
+ *
1319
+ * Font utils for Components.
1320
+ */
1321
+ interface fontUtils {
1322
+ /**
1323
+ * Note: reserved for internal use only, this is not part of the stable public API.
1324
+ *
1325
+ * loads the FontFace associated with a specific font family, style, and weight.
1326
+ */
1327
+ loadFont(font: any): Promise<any>;
1328
+ }
1329
+
1330
+ export const fontUtils: fontUtils;
1331
+
1301
1332
  /**
1302
1333
  * Note: reserved for internal use only, this is not part of the stable public API.
1303
1334
  *
@@ -1391,6 +1422,28 @@ declare namespace __esri {
1391
1422
 
1392
1423
  export const previewSymbol2D: previewSymbol2D;
1393
1424
 
1425
+ /**
1426
+ * Note: reserved for internal use only, this is not part of the stable public API.
1427
+ *
1428
+ * SelectionOperation util for Components.
1429
+ */
1430
+ interface SelectionOperation {}
1431
+
1432
+ export const SelectionOperation: SelectionOperation;
1433
+
1434
+ export interface Selector2DSelectionOperation {}
1435
+
1436
+ /**
1437
+ * Note: reserved for internal use only, this is not part of the stable public API.
1438
+ *
1439
+ * SketchTooltipControls util for Components.
1440
+ */
1441
+ interface SketchTooltipControls {}
1442
+
1443
+ export const SketchTooltipControls: SketchTooltipControls;
1444
+
1445
+ export interface supportSketchTooltipControls {}
1446
+
1394
1447
  /**
1395
1448
  * Note: reserved for internal use only, this is not part of the stable public API.
1396
1449
  *
@@ -1658,6 +1711,137 @@ declare namespace __esri {
1658
1711
 
1659
1712
  export const mediaUtils: mediaUtils;
1660
1713
 
1714
+ /**
1715
+ * Note: reserved for internal use only, this is not part of the stable public API.
1716
+ *
1717
+ * Table template utilities for the map viewer application.
1718
+ */
1719
+ interface templateUtils {
1720
+ /**
1721
+ * Note: reserved for internal use only, this is not part of the stable public API.
1722
+ *
1723
+ * Generates an AttributeTableTemplate based on the default layer fields.
1724
+ */
1725
+ createDefaultAttributeTableTemplateFromLayer(
1726
+ options: templateUtilsCreateDefaultAttributeTableTemplateFromLayerOptions
1727
+ ): Promise<AttributeTableTemplate>;
1728
+ /**
1729
+ * Note: reserved for internal use only, this is not part of the stable public API.
1730
+ *
1731
+ * Generates a TableTemplate based on the default layer fields.
1732
+ */
1733
+ createDefaultTableTemplateFromLayer(
1734
+ options: templateUtilsCreateDefaultTableTemplateFromLayerOptions
1735
+ ): Promise<TableTemplate>;
1736
+ /**
1737
+ * Note: reserved for internal use only, this is not part of the stable public API.
1738
+ *
1739
+ * Generates a TableTemplate based on a pre-existing AttributeTableTemplate.
1740
+ */
1741
+ createTableTemplateFromAttributeTableTemplate(
1742
+ options: templateUtilsCreateTableTemplateFromAttributeTableTemplateOptions
1743
+ ): Promise<TableTemplate>;
1744
+ /**
1745
+ * Note: reserved for internal use only, this is not part of the stable public API.
1746
+ *
1747
+ * Syncs a provided AttributeTableTemplate with the current state of a provided FeatureTable, using the 'columns' Collection on FeatureTable specifically.
1748
+ */
1749
+ syncAttributeTableTemplate(
1750
+ table: FeatureTable,
1751
+ template: AttributeTableTemplate,
1752
+ includeHiddenColumns?: AttributeTableTemplate
1753
+ ): AttributeTableTemplate;
1754
+ }
1755
+
1756
+ export const templateUtils: templateUtils;
1757
+
1758
+ export interface templateUtilsCreateDefaultAttributeTableTemplateFromLayerOptions {
1759
+ /**
1760
+ * Layer from which to generate a default template.
1761
+ *
1762
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultAttributeTableTemplateFromLayer)
1763
+ */
1764
+ layer:
1765
+ | CatalogFootprintLayer
1766
+ | CSVLayer
1767
+ | FeatureLayer
1768
+ | GeoJSONLayer
1769
+ | ImageryLayer
1770
+ | KnowledgeGraphSublayer
1771
+ | SceneLayer
1772
+ | WFSLayer;
1773
+ /**
1774
+ * Indicates 'attachment' columns should be excluded.
1775
+ *
1776
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultAttributeTableTemplateFromLayer)
1777
+ */
1778
+ excludeAttachments?: boolean;
1779
+ /**
1780
+ * Indicates 'relationship' columns should be excluded.
1781
+ *
1782
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultAttributeTableTemplateFromLayer)
1783
+ */
1784
+ excludeRelationships?: boolean;
1785
+ }
1786
+
1787
+ export interface templateUtilsCreateDefaultTableTemplateFromLayerOptions {
1788
+ /**
1789
+ * Layer from which to generate a default template.
1790
+ *
1791
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultTableTemplateFromLayer)
1792
+ */
1793
+ layer:
1794
+ | CatalogFootprintLayer
1795
+ | CSVLayer
1796
+ | FeatureLayer
1797
+ | GeoJSONLayer
1798
+ | ImageryLayer
1799
+ | KnowledgeGraphSublayer
1800
+ | SceneLayer
1801
+ | WFSLayer;
1802
+ /**
1803
+ * Indicates 'attachment' columns should be excluded.
1804
+ *
1805
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultTableTemplateFromLayer)
1806
+ */
1807
+ excludeAttachments?: boolean;
1808
+ /**
1809
+ * Indicates 'relationship' columns should be excluded.
1810
+ *
1811
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createDefaultTableTemplateFromLayer)
1812
+ */
1813
+ excludeRelationships?: boolean;
1814
+ }
1815
+
1816
+ export interface templateUtilsCreateTableTemplateFromAttributeTableTemplateOptions {
1817
+ /**
1818
+ * Layer from which to generate a default template.
1819
+ *
1820
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createTableTemplateFromAttributeTableTemplate)
1821
+ */
1822
+ layer:
1823
+ | CatalogFootprintLayer
1824
+ | CSVLayer
1825
+ | FeatureLayer
1826
+ | GeoJSONLayer
1827
+ | ImageryLayer
1828
+ | KnowledgeGraphSublayer
1829
+ | SceneLayer
1830
+ | WFSLayer;
1831
+ /**
1832
+ * Instance of an AttributeTableTemplate used to configure a new TableTemplate.
1833
+ *
1834
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createTableTemplateFromAttributeTableTemplate)
1835
+ */
1836
+ template: AttributeTableTemplate;
1837
+ /**
1838
+ * Indicates columns should be generated for fields without associated elements.
1839
+ *
1840
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-MapViewer-templateUtils.html#createTableTemplateFromAttributeTableTemplate)
1841
+ */
1842
+ includeHiddenFields?: boolean;
1843
+ }
1844
+
1661
1845
  /**
1662
1846
  * Note: reserved for internal use only, this is not part of the stable public API.
1663
1847
  *
@@ -2893,7 +3077,7 @@ declare namespace __esri {
2893
3077
  /**
2894
3078
  * Number of milliseconds [request](https://developers.arcgis.com/javascript/latest/api-reference/esri-request.html) will wait for response from a server.
2895
3079
  *
2896
- * @default 60000
3080
+ * @default 62000
2897
3081
  *
2898
3082
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-config.html#request)
2899
3083
  */
@@ -3101,13 +3285,13 @@ declare namespace __esri {
3101
3285
  */
3102
3286
  dependsOn?: string[];
3103
3287
  /**
3104
- * The constructor used to [autocast](../programming-patterns/#autocasting) the property.
3288
+ * The constructor used to [autocast](../autocasting/) the property.
3105
3289
  *
3106
3290
  * [Read more...](global.html#type)
3107
3291
  */
3108
3292
  type?: Function;
3109
3293
  /**
3110
- * The function to use to [autocast](https://developers.arcgis.com/javascript/latest/programming-patterns/#autocasting) the property.
3294
+ * The function to use to [autocast](https://developers.arcgis.com/javascript/latest/autocasting/) the property.
3111
3295
  *
3112
3296
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-core-accessorSupport-decorators.html#property)
3113
3297
  */
@@ -4788,7 +4972,7 @@ declare namespace __esri {
4788
4972
  *
4789
4973
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-Element.html#type)
4790
4974
  */
4791
- readonly type: "attachment" | "field" | "group" | "relationship" | "text";
4975
+ readonly type: "attachment" | "field" | "group" | "relationship" | "text" | "utilityNetworkAssociationElement";
4792
4976
  /**
4793
4977
  * A reference to the [name](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-ExpressionInfo.html#name) of an [Arcade](https://developers.arcgis.com/javascript/latest/arcade/) expression defined in the [expressionInfos](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html#expressionInfos) of the [FormTemplate](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html).
4794
4978
  *
@@ -8352,6 +8536,57 @@ declare namespace __esri {
8352
8536
 
8353
8537
  export const affineTransformOperator: affineTransformOperator;
8354
8538
 
8539
+ /**
8540
+ * Calculates the alpha shape of 2D points (concave hull).
8541
+ *
8542
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html)
8543
+ */
8544
+ interface alphaShapeOperator {
8545
+ /**
8546
+ * Calculates the alpha shape on the input geometry.
8547
+ *
8548
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#execute)
8549
+ */
8550
+ execute(geometry: Geometry, alpha: number): ExecuteResult;
8551
+ /**
8552
+ * Calculates the alpha shape on a set of geometries with the option to aggregate the result.
8553
+ *
8554
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany)
8555
+ */
8556
+ executeMany(geometries: Geometry[], alpha: number, options?: alphaShapeOperatorExecuteManyOptions): Polygon[];
8557
+ }
8558
+
8559
+ export const alphaShapeOperator: alphaShapeOperator;
8560
+
8561
+ export interface alphaShapeOperatorExecuteManyOptions {
8562
+ /**
8563
+ * Indicates if the alpha shape polygons should be merged.
8564
+ *
8565
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany)
8566
+ */
8567
+ merge?: boolean;
8568
+ }
8569
+
8570
+ /**
8571
+ * Object returned by the [executeMany()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany) method.
8572
+ *
8573
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#ExecuteResult)
8574
+ */
8575
+ export interface ExecuteResult {
8576
+ /**
8577
+ * The alpha shape polygon.
8578
+ *
8579
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#ExecuteResult)
8580
+ */
8581
+ alphaShape: Polygon;
8582
+ /**
8583
+ * The calculated alpha value used to generate the alpha shape.
8584
+ *
8585
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#ExecuteResult)
8586
+ */
8587
+ calculatedAlpha: number;
8588
+ }
8589
+
8355
8590
  /**
8356
8591
  * Returns the planar area of a 2D geometry in its spatial reference units.
8357
8592
  *
@@ -8370,13 +8605,51 @@ declare namespace __esri {
8370
8605
 
8371
8606
  export interface areaOperatorExecuteOptions {
8372
8607
  /**
8373
- * todoc
8608
+ * The area unit of the return value.
8374
8609
  *
8375
8610
  * [Read more...](global.html#unit)
8376
8611
  */
8377
8612
  unit?: AreaUnit;
8378
8613
  }
8379
8614
 
8615
+ /**
8616
+ * Fills the closed gaps between 2D polygons using polygon boundaries and polylines as the boundary for creating new polygons.
8617
+ *
8618
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-autoCompleteOperator.html)
8619
+ */
8620
+ interface autoCompleteOperator {
8621
+ /**
8622
+ * Fills the gaps between polygons using the polylines as additional boundaries.
8623
+ *
8624
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-autoCompleteOperator.html#execute)
8625
+ */
8626
+ execute(polygons: Polygon[], polylines: Polyline[]): Polygon[];
8627
+ }
8628
+
8629
+ export const autoCompleteOperator: autoCompleteOperator;
8630
+
8631
+ /**
8632
+ * Calculates the topological boundary of a 2D geometry.
8633
+ *
8634
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html)
8635
+ */
8636
+ interface boundaryOperator {
8637
+ /**
8638
+ * Calculates the boundary on the input geometry.
8639
+ *
8640
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#execute)
8641
+ */
8642
+ execute(geometry: Geometry): Geometry;
8643
+ /**
8644
+ * Calculates the boundaries on a set of geometries.
8645
+ *
8646
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#executeMany)
8647
+ */
8648
+ executeMany(geometries: Geometry[]): Geometry[];
8649
+ }
8650
+
8651
+ export const boundaryOperator: boundaryOperator;
8652
+
8380
8653
  /**
8381
8654
  * Creates planar buffers around 2D geometries.
8382
8655
  *
@@ -8481,6 +8754,12 @@ declare namespace __esri {
8481
8754
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html)
8482
8755
  */
8483
8756
  interface containsOperator {
8757
+ /**
8758
+ * Accelerate a geometry.
8759
+ *
8760
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html#accelerateGeometry)
8761
+ */
8762
+ accelerateGeometry(geometry: Geometry): boolean;
8484
8763
  /**
8485
8764
  * Perform the contains operation on two geometries.
8486
8765
  *
@@ -8534,6 +8813,12 @@ declare namespace __esri {
8534
8813
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html)
8535
8814
  */
8536
8815
  interface crossesOperator {
8816
+ /**
8817
+ * Accelerate a geometry.
8818
+ *
8819
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html#accelerateGeometry)
8820
+ */
8821
+ accelerateGeometry(geometry: Geometry): boolean;
8537
8822
  /**
8538
8823
  * Perform the crosses operation on two geometries.
8539
8824
  *
@@ -8656,6 +8941,12 @@ declare namespace __esri {
8656
8941
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html)
8657
8942
  */
8658
8943
  interface disjointOperator {
8944
+ /**
8945
+ * Accelerate a geometry.
8946
+ *
8947
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html#accelerateGeometry)
8948
+ */
8949
+ accelerateGeometry(geometry: Geometry): boolean;
8659
8950
  /**
8660
8951
  * Perform a disjoint operation on two geometries.
8661
8952
  *
@@ -8697,6 +8988,12 @@ declare namespace __esri {
8697
8988
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html)
8698
8989
  */
8699
8990
  interface equalsOperator {
8991
+ /**
8992
+ * Accelerate a geometry.
8993
+ *
8994
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html#accelerateGeometry)
8995
+ */
8996
+ accelerateGeometry(geometry: Geometry): boolean;
8700
8997
  /**
8701
8998
  * Perform the equals operation on two geometries.
8702
8999
  *
@@ -8902,6 +9199,145 @@ declare namespace __esri {
8902
9199
  unit?: LengthUnit;
8903
9200
  }
8904
9201
 
9202
+ /**
9203
+ * Finds closest vertices of a 2D geometry using geodesic distance.
9204
+ *
9205
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html)
9206
+ */
9207
+ interface geodesicProximityOperator {
9208
+ /**
9209
+ * Returns the nearest coordinate on the geometry to the given input point.
9210
+ *
9211
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
9212
+ */
9213
+ getNearestCoordinate(
9214
+ geometry: Geometry,
9215
+ point: Point,
9216
+ options?: geodesicProximityOperatorGetNearestCoordinateOptions
9217
+ ): ProximityResult;
9218
+ /**
9219
+ * Returns the nearest vertex on the geometry.
9220
+ *
9221
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertex)
9222
+ */
9223
+ getNearestVertex(
9224
+ geometry: Geometry,
9225
+ point: Point,
9226
+ options?: geodesicProximityOperatorGetNearestVertexOptions
9227
+ ): ProximityResult;
9228
+ /**
9229
+ * Returns vertices of the geometry that are closer to the given point than the given radius.
9230
+ *
9231
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertices)
9232
+ */
9233
+ getNearestVertices(
9234
+ geometry: Geometry,
9235
+ point: Point,
9236
+ searchRadius: number,
9237
+ maxVertexCountToReturn: number,
9238
+ options?: geodesicProximityOperatorGetNearestVerticesOptions
9239
+ ): ProximityResult[];
9240
+ /**
9241
+ * Indicates if all dependencies of this module have been loaded.
9242
+ *
9243
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#isLoaded)
9244
+ */
9245
+ isLoaded(): boolean;
9246
+ /**
9247
+ * Loads this module's dependencies.
9248
+ *
9249
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#load)
9250
+ */
9251
+ load(): Promise<any>;
9252
+ }
9253
+
9254
+ export const geodesicProximityOperator: geodesicProximityOperator;
9255
+
9256
+ export interface geodesicProximityOperatorGetNearestCoordinateOptions {
9257
+ /**
9258
+ * When the parameter is set to true, this function will calculate the left/right side of a polyline or polygon.
9259
+ *
9260
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
9261
+ */
9262
+ calculateLeftRightSide?: boolean;
9263
+ /**
9264
+ * The value controls the error of calculation.
9265
+ *
9266
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
9267
+ */
9268
+ maxDeviation?: number;
9269
+ /**
9270
+ * When `geometry` is a polygon, the function will test if `point` is inside of the polygon.
9271
+ *
9272
+ * @default true
9273
+ *
9274
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate)
9275
+ */
9276
+ testPolygonInterior?: boolean;
9277
+ /**
9278
+ * The length unit of the max deviation and result distance.
9279
+ *
9280
+ * [Read more...](global.html#unit)
9281
+ */
9282
+ unit?: LengthUnit;
9283
+ }
9284
+
9285
+ export interface geodesicProximityOperatorGetNearestVertexOptions {
9286
+ /**
9287
+ * The length unit of the result distance.
9288
+ *
9289
+ * [Read more...](global.html#unit)
9290
+ */
9291
+ unit?: LengthUnit;
9292
+ }
9293
+
9294
+ export interface geodesicProximityOperatorGetNearestVerticesOptions {
9295
+ /**
9296
+ * The length unit of the search radius and result distances.
9297
+ *
9298
+ * [Read more...](global.html#unit)
9299
+ */
9300
+ unit?: LengthUnit;
9301
+ }
9302
+
9303
+ /**
9304
+ * Object returned from the [getNearestCoordinate()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate), [getNearestVertex()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#nearestVegetNearestVertex), and [getNearestVertices()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertices) methods.
9305
+ *
9306
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
9307
+ */
9308
+ export interface ProximityResult {
9309
+ /**
9310
+ * The nearest coordinate on the geometry to the given input point.
9311
+ *
9312
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
9313
+ */
9314
+ coordinate: Point;
9315
+ /**
9316
+ * The distance to the input geometry.
9317
+ *
9318
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
9319
+ */
9320
+ distance: number;
9321
+ /**
9322
+ * Indicates if the result is empty.
9323
+ *
9324
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
9325
+ */
9326
+ isEmpty: boolean;
9327
+ /**
9328
+ * Indicates if the nearest coordinate is on the right side or left side of the input point.
9329
+ *
9330
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
9331
+ */
9332
+ isRightSide?: boolean;
9333
+ /**
9334
+ * The index of the vertex on the geometry that is closest to the input point.
9335
+ *
9336
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#ProximityResult)
9337
+ */
9338
+ vertexIndex: number;
9339
+ }
9340
+
8905
9341
  /**
8906
9342
  * Returns the geodetic area of a 2D geometry.
8907
9343
  *
@@ -9168,12 +9604,34 @@ declare namespace __esri {
9168
9604
  unit?: LengthUnit;
9169
9605
  }
9170
9606
 
9607
+ /**
9608
+ * Performs an Integration operation on a set of 2D geometries.
9609
+ *
9610
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-integrateOperator.html)
9611
+ */
9612
+ interface integrateOperator {
9613
+ /**
9614
+ * Performs the topological integration of the geometry set in the XY plane.
9615
+ *
9616
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-integrateOperator.html#executeMany)
9617
+ */
9618
+ executeMany(geometries: Geometry[]): Geometry[];
9619
+ }
9620
+
9621
+ export const integrateOperator: integrateOperator;
9622
+
9171
9623
  /**
9172
9624
  * Create new geometries using the topological intersection of 2D geometries.
9173
9625
  *
9174
9626
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html)
9175
9627
  */
9176
9628
  interface intersectionOperator {
9629
+ /**
9630
+ * Accelerate a geometry.
9631
+ *
9632
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#accelerateGeometry)
9633
+ */
9634
+ accelerateGeometry(geometry: Geometry): boolean;
9177
9635
  /**
9178
9636
  * Performs the topological intersection operation on two geometries.
9179
9637
  *
@@ -9196,6 +9654,12 @@ declare namespace __esri {
9196
9654
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html)
9197
9655
  */
9198
9656
  interface intersectsOperator {
9657
+ /**
9658
+ * Accelerate a geometry.
9659
+ *
9660
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html#accelerateGeometry)
9661
+ */
9662
+ accelerateGeometry(geometry: Geometry): boolean;
9199
9663
  /**
9200
9664
  * Perform a intersects operation on two geometries.
9201
9665
  *
@@ -9206,6 +9670,58 @@ declare namespace __esri {
9206
9670
 
9207
9671
  export const intersectsOperator: intersectsOperator;
9208
9672
 
9673
+ /**
9674
+ * Performs a 2D relational operation that checks if two geometries are near each other.
9675
+ *
9676
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-isNearOperator.html)
9677
+ */
9678
+ interface isNearOperator {
9679
+ /**
9680
+ * Returns true if the geometries are not further than the given 2D distance from each other.
9681
+ *
9682
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-isNearOperator.html#execute)
9683
+ */
9684
+ execute(
9685
+ geometry1: Geometry,
9686
+ geometry2: Geometry,
9687
+ distance: Geometry,
9688
+ options?: isNearOperatorExecuteOptions
9689
+ ): boolean;
9690
+ }
9691
+
9692
+ export const isNearOperator: isNearOperator;
9693
+
9694
+ export interface isNearOperatorExecuteOptions {
9695
+ /**
9696
+ * The length unit of the distance.
9697
+ *
9698
+ * [Read more...](global.html#unit)
9699
+ */
9700
+ unit?: LengthUnit;
9701
+ }
9702
+
9703
+ /**
9704
+ * Calculates a label point for the given 2D geometries.
9705
+ *
9706
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html)
9707
+ */
9708
+ interface labelPointOperator {
9709
+ /**
9710
+ * Performs the label point operation on the geometry.
9711
+ *
9712
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#execute)
9713
+ */
9714
+ execute(geometry: Geometry): Point;
9715
+ /**
9716
+ * Performs the label point operation on the geometry set.
9717
+ *
9718
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#executeMany)
9719
+ */
9720
+ executeMany(geometries: Geometry[]): Point[];
9721
+ }
9722
+
9723
+ export const labelPointOperator: labelPointOperator;
9724
+
9209
9725
  /**
9210
9726
  * Returns the planar length of a 2D geometry.
9211
9727
  *
@@ -9231,6 +9747,96 @@ declare namespace __esri {
9231
9747
  unit?: LengthUnit;
9232
9748
  }
9233
9749
 
9750
+ /**
9751
+ * Performs the topological operation of breaking the input set of 2D polygons and polylines into segments and rebuilding a new set of polygons from the non-intersecting areas.
9752
+ *
9753
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-linesToPolygonsOperator.html)
9754
+ */
9755
+ interface linesToPolygonsOperator {
9756
+ /**
9757
+ * Performs the topological lines to polygons operation.
9758
+ *
9759
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-linesToPolygonsOperator.html#executeMany)
9760
+ */
9761
+ executeMany(geometries: Geometry[]): Polygon[];
9762
+ }
9763
+
9764
+ export const linesToPolygonsOperator: linesToPolygonsOperator;
9765
+
9766
+ /**
9767
+ * Performs an OGC locate between operation on M values for the given 2D geometries.
9768
+ *
9769
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-locateBetweenOperator.html)
9770
+ */
9771
+ interface locateBetweenOperator {
9772
+ /**
9773
+ * Performs the locate between or locate along operation on the geometry.
9774
+ *
9775
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-locateBetweenOperator.html#executeMany)
9776
+ */
9777
+ executeMany(geometries: Geometry[], startM: number, endM: number): Geometry[];
9778
+ }
9779
+
9780
+ export const locateBetweenOperator: locateBetweenOperator;
9781
+
9782
+ /**
9783
+ * Create a minimum bounding circle for the input geometry.
9784
+ *
9785
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html)
9786
+ */
9787
+ interface minimumBoundingCircleOperator {
9788
+ /**
9789
+ * Performs the minimum bounding circle operation on the geometry.
9790
+ *
9791
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#execute)
9792
+ */
9793
+ execute(geometry: Geometry): Polygon;
9794
+ /**
9795
+ * Performs the minimum bounding circle operation on the geometry set.
9796
+ *
9797
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#executeMany)
9798
+ */
9799
+ executeMany(geometries: Geometry[], options?: minimumBoundingCircleOperatorExecuteManyOptions): Polygon[];
9800
+ }
9801
+
9802
+ export const minimumBoundingCircleOperator: minimumBoundingCircleOperator;
9803
+
9804
+ export interface minimumBoundingCircleOperatorExecuteManyOptions {
9805
+ /**
9806
+ * Indicates if the minimum bounding circle geometries should be merged.
9807
+ *
9808
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#executeMany)
9809
+ */
9810
+ merge?: boolean;
9811
+ }
9812
+
9813
+ /**
9814
+ * Convert multipart 2D geometries to single part geometries.
9815
+ *
9816
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html)
9817
+ */
9818
+ interface multiPartToSinglePartOperator {
9819
+ /**
9820
+ * Performs the multipart to single part operation on the input geometries.
9821
+ *
9822
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html#executeMany)
9823
+ */
9824
+ executeMany(geometries: Geometry[], options?: multiPartToSinglePartOperatorExecuteManyOptions): Geometry[];
9825
+ }
9826
+
9827
+ export const multiPartToSinglePartOperator: multiPartToSinglePartOperator;
9828
+
9829
+ export interface multiPartToSinglePartOperatorExecuteManyOptions {
9830
+ /**
9831
+ * When this parameter is set to false, the input polygons will not be simplified before converting them to single part geometries.
9832
+ *
9833
+ * @default true
9834
+ *
9835
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html#executeMany)
9836
+ */
9837
+ simplifyPolygons?: boolean;
9838
+ }
9839
+
9234
9840
  /**
9235
9841
  * Offset 2D geometries.
9236
9842
  *
@@ -9321,6 +9927,12 @@ declare namespace __esri {
9321
9927
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html)
9322
9928
  */
9323
9929
  interface overlapsOperator {
9930
+ /**
9931
+ * Accelerate a geometry.
9932
+ *
9933
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html#accelerateGeometry)
9934
+ */
9935
+ accelerateGeometry(geometry: Geometry): boolean;
9324
9936
  /**
9325
9937
  * Perform the overlaps operation on two geometries.
9326
9938
  *
@@ -9331,6 +9943,129 @@ declare namespace __esri {
9331
9943
 
9332
9944
  export const overlapsOperator: overlapsOperator;
9333
9945
 
9946
+ /**
9947
+ * Performs an overlay operation on a set of 2D polygons in the XY plane.
9948
+ *
9949
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html)
9950
+ */
9951
+ interface polygonOverlayOperator {
9952
+ /**
9953
+ * Performs the topological overlay of the geometry set in the XY plane.
9954
+ *
9955
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
9956
+ */
9957
+ executeMany(geometries: Geometry[], options?: polygonOverlayOperatorExecuteManyOptions): Geometry[];
9958
+ }
9959
+
9960
+ export const polygonOverlayOperator: polygonOverlayOperator;
9961
+
9962
+ export interface polygonOverlayOperatorExecuteManyOptions {
9963
+ /**
9964
+ * Create polygons to fill gaps.
9965
+ *
9966
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
9967
+ */
9968
+ gaps?: boolean;
9969
+ /**
9970
+ * Create polygons to fill holes.
9971
+ *
9972
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
9973
+ */
9974
+ holes?: boolean;
9975
+ /**
9976
+ * Output non-overlapping areas of polygons.
9977
+ *
9978
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
9979
+ */
9980
+ noOverlaps?: boolean;
9981
+ /**
9982
+ * Output overlapping areas of polygons.
9983
+ *
9984
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
9985
+ */
9986
+ overlaps?: boolean;
9987
+ /**
9988
+ * Output multipart polygons.
9989
+ *
9990
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany)
9991
+ */
9992
+ multiPart?: boolean;
9993
+ }
9994
+
9995
+ /**
9996
+ * Performs a topological operation for slicing a 2D polygon into smaller polygons.
9997
+ *
9998
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html)
9999
+ */
10000
+ interface polygonSlicerOperator {
10001
+ /**
10002
+ * Finds positions of the sliced strips for a given polygon given the number of equal area parts to slice the polygon into.
10003
+ *
10004
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#findSlicesByArea)
10005
+ */
10006
+ findSlicesByArea(
10007
+ polygon: Polygon,
10008
+ partCount: number,
10009
+ remainingArea: number,
10010
+ options?: polygonSlicerOperatorFindSlicesByAreaOptions
10011
+ ): number[];
10012
+ /**
10013
+ * Slices the given polygon into equal area parts, not necessarily strips.
10014
+ *
10015
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#recursiveSliceEqualArea)
10016
+ */
10017
+ recursiveSliceEqualArea(
10018
+ polygon: Polygon,
10019
+ partCount: number,
10020
+ options?: polygonSlicerOperatorRecursiveSliceEqualAreaOptions
10021
+ ): Polygon[];
10022
+ /**
10023
+ * Slices the given polygon into strips.
10024
+ *
10025
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#sliceIntoStrips)
10026
+ */
10027
+ sliceIntoStrips(
10028
+ polygon: Polygon,
10029
+ ySlices: number[],
10030
+ options?: polygonSlicerOperatorSliceIntoStripsOptions
10031
+ ): Polygon[];
10032
+ }
10033
+
10034
+ export const polygonSlicerOperator: polygonSlicerOperator;
10035
+
10036
+ export interface polygonSlicerOperatorFindSlicesByAreaOptions {
10037
+ /**
10038
+ * The affine transformation to apply to the polygon before slicing.
10039
+ *
10040
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#findSlicesByArea)
10041
+ */
10042
+ transform?: Transformation;
10043
+ /**
10044
+ * The area unit of the remaining area.
10045
+ *
10046
+ * [Read more...](global.html#unit)
10047
+ */
10048
+ unit?: AreaUnit;
10049
+ }
10050
+
10051
+ export interface polygonSlicerOperatorRecursiveSliceEqualAreaOptions {
10052
+ /**
10053
+ * The affine transformation to apply to the polygon before slicing.
10054
+ *
10055
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#recursiveSliceEqualArea)
10056
+ */
10057
+ transform?: Transformation;
10058
+ }
10059
+
10060
+ export interface polygonSlicerOperatorSliceIntoStripsOptions {
10061
+ /**
10062
+ * The affine transformation to apply to the polygon before slicing.
10063
+ *
10064
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonSlicerOperator.html#sliceIntoStrips)
10065
+ */
10066
+ transform?: Transformation;
10067
+ }
10068
+
9334
10069
  /**
9335
10070
  * Find the closest vertices of the 2D geometry.
9336
10071
  *
@@ -9346,13 +10081,17 @@ declare namespace __esri {
9346
10081
  geometry: Geometry,
9347
10082
  point: Point,
9348
10083
  options?: proximityOperatorGetNearestCoordinateOptions
9349
- ): ProximityResult;
10084
+ ): proximityOperatorProximityResult;
9350
10085
  /**
9351
10086
  * Returns the nearest vertex on the geometry.
9352
10087
  *
9353
10088
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertex)
9354
10089
  */
9355
- getNearestVertex(geometry: Geometry, point: Point): ProximityResult;
10090
+ getNearestVertex(
10091
+ geometry: Geometry,
10092
+ point: Point,
10093
+ options?: proximityOperatorGetNearestVertexOptions
10094
+ ): proximityOperatorProximityResult;
9356
10095
  /**
9357
10096
  * Returns vertices of the geometry that are closer to the given point than the given radius.
9358
10097
  *
@@ -9362,8 +10101,9 @@ declare namespace __esri {
9362
10101
  geometry: Geometry,
9363
10102
  point: Point,
9364
10103
  searchRadius: number,
9365
- maxVertexCountToReturn: number
9366
- ): ProximityResult[];
10104
+ maxVertexCountToReturn: number,
10105
+ options?: proximityOperatorGetNearestVerticesOptions
10106
+ ): proximityOperatorProximityResult[];
9367
10107
  }
9368
10108
 
9369
10109
  export const proximityOperator: proximityOperator;
@@ -9383,6 +10123,30 @@ declare namespace __esri {
9383
10123
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate)
9384
10124
  */
9385
10125
  testPolygonInterior?: boolean;
10126
+ /**
10127
+ * The length unit of the result distance.
10128
+ *
10129
+ * [Read more...](global.html#unit)
10130
+ */
10131
+ unit?: LengthUnit;
10132
+ }
10133
+
10134
+ export interface proximityOperatorGetNearestVertexOptions {
10135
+ /**
10136
+ * The length unit of the result distance.
10137
+ *
10138
+ * [Read more...](global.html#unit)
10139
+ */
10140
+ unit?: LengthUnit;
10141
+ }
10142
+
10143
+ export interface proximityOperatorGetNearestVerticesOptions {
10144
+ /**
10145
+ * The length unit of the search radius and result distances.
10146
+ *
10147
+ * [Read more...](global.html#unit)
10148
+ */
10149
+ unit?: LengthUnit;
9386
10150
  }
9387
10151
 
9388
10152
  /**
@@ -9390,7 +10154,7 @@ declare namespace __esri {
9390
10154
  *
9391
10155
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#ProximityResult)
9392
10156
  */
9393
- export interface ProximityResult {
10157
+ export interface proximityOperatorProximityResult {
9394
10158
  /**
9395
10159
  * The nearest coordinate on the geometry to the given input point.
9396
10160
  *
@@ -9414,13 +10178,13 @@ declare namespace __esri {
9414
10178
  *
9415
10179
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#ProximityResult)
9416
10180
  */
9417
- rightSide?: boolean;
10181
+ isRightSide?: boolean;
9418
10182
  /**
9419
10183
  * The index of the vertex on the geometry that is closest to the input point.
9420
10184
  *
9421
10185
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#ProximityResult)
9422
10186
  */
9423
- vertexIndex?: number;
10187
+ vertexIndex: number;
9424
10188
  }
9425
10189
 
9426
10190
  /**
@@ -9429,6 +10193,13 @@ declare namespace __esri {
9429
10193
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-relateOperator.html)
9430
10194
  */
9431
10195
  interface relateOperator {
10196
+ /**
10197
+ * Accelerate a geometry.
10198
+ *
10199
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-relateOperator.html#accelerateGeometry)
10200
+ */
10201
+ accelerateGeometry(geometry: Geometry): boolean;
10202
+
9432
10203
  execute(geometry1: Geometry, geometry2: Geometry, relation: string): boolean;
9433
10204
 
9434
10205
  isValidDE9IM(relation: void): void;
@@ -9436,6 +10207,22 @@ declare namespace __esri {
9436
10207
 
9437
10208
  export const relateOperator: relateOperator;
9438
10209
 
10210
+ /**
10211
+ * Reshape 2D polygons or polylines with a single path polyline.
10212
+ *
10213
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-reshapeOperator.html)
10214
+ */
10215
+ interface reshapeOperator {
10216
+ /**
10217
+ * Performs the reshape operation on a polygon or polyline using a single path polyline as the reshaper.
10218
+ *
10219
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-reshapeOperator.html#execute)
10220
+ */
10221
+ execute(geometry: Polygon | Polyline, reshaper: Polyline): Polygon | Polyline;
10222
+ }
10223
+
10224
+ export const reshapeOperator: reshapeOperator;
10225
+
9439
10226
  /**
9440
10227
  * Simplifies 2D geometries by removing unnecessary vertices while preserving the geometry shape.
9441
10228
  *
@@ -9513,6 +10300,12 @@ declare namespace __esri {
9513
10300
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#setIdentity)
9514
10301
  */
9515
10302
  setIdentity(): void;
10303
+ /**
10304
+ * Use this method to swap the x and y coordinate values in the transformation.
10305
+ *
10306
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#setSwapCoordinates)
10307
+ */
10308
+ setSwapCoordinates(): void;
9516
10309
  /**
9517
10310
  * Shifts a geometry's points by the specified proportion in parallel to the x and y directions, except those points that are along the shear axis, which is a line defined by the x and y coordinates.
9518
10311
  *
@@ -9577,6 +10370,12 @@ declare namespace __esri {
9577
10370
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html)
9578
10371
  */
9579
10372
  interface touchesOperator {
10373
+ /**
10374
+ * Accelerate a geometry.
10375
+ *
10376
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html#accelerateGeometry)
10377
+ */
10378
+ accelerateGeometry(geometry: Geometry): boolean;
9580
10379
  /**
9581
10380
  * Perform a touches operation on two geometries.
9582
10381
  *
@@ -9615,6 +10414,12 @@ declare namespace __esri {
9615
10414
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html)
9616
10415
  */
9617
10416
  interface withinOperator {
10417
+ /**
10418
+ * Accelerate a geometry.
10419
+ *
10420
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html#accelerateGeometry)
10421
+ */
10422
+ accelerateGeometry(geometry: Geometry): boolean;
9618
10423
  /**
9619
10424
  * Perform a within operation on two geometries.
9620
10425
  *
@@ -14526,6 +15331,12 @@ declare namespace __esri {
14526
15331
 
14527
15332
  constructor(properties?: CSVLayerProperties);
14528
15333
 
15334
+ /**
15335
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
15336
+ *
15337
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#attributeTableTemplate)
15338
+ */
15339
+ attributeTableTemplate: AttributeTableTemplate;
14529
15340
  /**
14530
15341
  * Describes the layer's supported capabilities.
14531
15342
  *
@@ -14774,6 +15585,12 @@ declare namespace __esri {
14774
15585
  FeatureEffectLayerProperties,
14775
15586
  FeatureReductionLayerProperties,
14776
15587
  PortalLayerProperties {
15588
+ /**
15589
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
15590
+ *
15591
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#attributeTableTemplate)
15592
+ */
15593
+ attributeTableTemplate?: AttributeTableTemplateProperties;
14777
15594
  /**
14778
15595
  * Copyright information for the layer.
14779
15596
  *
@@ -15347,7 +16164,7 @@ declare namespace __esri {
15347
16164
  */
15348
16165
  readonly fullExtent: Extent;
15349
16166
  /**
15350
- * The analysis object that stores the dimension shapes.
16167
+ * The [DimensionAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-DimensionAnalysis.html) associated with the layer that stores the dimension shapes.
15351
16168
  *
15352
16169
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-DimensionLayer.html#source)
15353
16170
  */
@@ -15372,7 +16189,7 @@ declare namespace __esri {
15372
16189
 
15373
16190
  interface DimensionLayerProperties extends LayerProperties, OperationalLayerProperties {
15374
16191
  /**
15375
- * The analysis object that stores the dimension shapes.
16192
+ * The [DimensionAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-DimensionAnalysis.html) associated with the layer that stores the dimension shapes.
15376
16193
  *
15377
16194
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-DimensionLayer.html#source)
15378
16195
  */
@@ -15597,7 +16414,7 @@ declare namespace __esri {
15597
16414
  constructor(properties?: FeatureLayerProperties);
15598
16415
 
15599
16416
  /**
15600
- * The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
16417
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
15601
16418
  *
15602
16419
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#attributeTableTemplate)
15603
16420
  */
@@ -15817,12 +16634,6 @@ declare namespace __esri {
15817
16634
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#refresh)
15818
16635
  */
15819
16636
  refresh(): void;
15820
- /**
15821
- * Compatibility warning for old webscene configurations which do not renderer or highlight fully transparent graphics anymore
15822
- *
15823
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#warnInvisibleDrapedSymbols)
15824
- */
15825
- warnInvisibleDrapedSymbols(): void;
15826
16637
 
15827
16638
  on(name: "refresh", eventHandler: FeatureLayerRefreshEventHandler): IHandle;
15828
16639
 
@@ -15852,7 +16663,7 @@ declare namespace __esri {
15852
16663
  OperationalLayerProperties,
15853
16664
  FeatureLayerBaseProperties {
15854
16665
  /**
15855
- * The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
16666
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
15856
16667
  *
15857
16668
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#attributeTableTemplate)
15858
16669
  */
@@ -16852,7 +17663,7 @@ declare namespace __esri {
16852
17663
  constructor(properties?: GeoJSONLayerProperties);
16853
17664
 
16854
17665
  /**
16855
- * The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
17666
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
16856
17667
  *
16857
17668
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#attributeTableTemplate)
16858
17669
  */
@@ -17163,7 +17974,7 @@ declare namespace __esri {
17163
17974
  FeatureReductionLayerProperties,
17164
17975
  OperationalLayerProperties {
17165
17976
  /**
17166
- * The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
17977
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
17167
17978
  *
17168
17979
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#attributeTableTemplate)
17169
17980
  */
@@ -19200,7 +20011,7 @@ declare namespace __esri {
19200
20011
 
19201
20012
  export class KnowledgeGraphSublayer {
19202
20013
  /**
19203
- * A KnowledgeGraphSublayer is a sublayer of a [KnowledgeGraphLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#layers) that contains all instances of a named type.
20014
+ * A KnowledgeGraphSublayer is a sublayer of a [KnowledgeGraphLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html) or [LinkChartLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html) that contains all instances of a named type.
19204
20015
  *
19205
20016
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html)
19206
20017
  */
@@ -19243,6 +20054,12 @@ declare namespace __esri {
19243
20054
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#fields)
19244
20055
  */
19245
20056
  fields: Field[];
20057
+ /**
20058
+ * A convenient property that can be used to make case-insensitive lookups for a field by name.
20059
+ *
20060
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#fieldsIndex)
20061
+ */
20062
+ readonly fieldsIndex: FieldsIndex;
19246
20063
  /**
19247
20064
  * The name of the geometry field for the sublayer.
19248
20065
  *
@@ -20651,6 +21468,116 @@ declare namespace __esri {
20651
21468
  targets?: CollectionProperties<LineOfSightAnalysisTargetProperties>;
20652
21469
  }
20653
21470
 
21471
+ export class LinkChartLayer extends Layer {
21472
+ /**
21473
+ * A LinkChartLayer is a composite layer that can be created from a [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
21474
+ *
21475
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html)
21476
+ */
21477
+
21478
+ constructor(properties?: LinkChartLayerProperties);
21479
+
21480
+ /**
21481
+ * Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
21482
+ *
21483
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition)
21484
+ */
21485
+ inclusionModeDefinition: InclusionModeDefinition;
21486
+ /**
21487
+ * A collection of operational [sublayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html).
21488
+ *
21489
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#layers)
21490
+ */
21491
+ readonly layers: Collection<KnowledgeGraphSublayer>;
21492
+ /**
21493
+ * All non-spatial [entity type](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-EntityType.html) and [relationship type](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-RelationshipType.html) [sublayers](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html).
21494
+ *
21495
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#tables)
21496
+ */
21497
+ readonly tables: Collection<KnowledgeGraphSublayer>;
21498
+ /**
21499
+ * The url of the [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
21500
+ *
21501
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#url)
21502
+ */
21503
+ url: string;
21504
+ }
21505
+
21506
+ interface LinkChartLayerProperties extends LayerProperties {
21507
+ /**
21508
+ * Defines a set of [named types](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) and/or [entities](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Entity.html) and [relationships](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-Relationship.html) to be included in the layer.
21509
+ *
21510
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition)
21511
+ */
21512
+ inclusionModeDefinition?: InclusionModeDefinition;
21513
+ /**
21514
+ * The url of the [knowledge graph service](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraphService.html).
21515
+ *
21516
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#url)
21517
+ */
21518
+ url?: string;
21519
+ }
21520
+
21521
+ /**
21522
+ * Defines the sublayer structure and the named types that will be in the LinkChartLayer.
21523
+ *
21524
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#InclusionModeDefinition)
21525
+ */
21526
+ export interface LinkChartLayerInclusionModeDefinition {
21527
+ /**
21528
+ * Specifies whether to create sublayers for each [named type](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-knowledgeGraph-GraphNamedObject.html) regardless of whether or not they are included in the `namedTypeDefinition`.
21529
+ *
21530
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#InclusionModeDefinition)
21531
+ */
21532
+ generateAllSublayers: boolean;
21533
+ /**
21534
+ * A map of named types and the specific instances of those types to include in the layer.
21535
+ *
21536
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#InclusionModeDefinition)
21537
+ */
21538
+ namedTypeDefinitions: globalThis.Map<string, LinkChartLayerLayerInclusionDefinition>;
21539
+ }
21540
+
21541
+ /**
21542
+ * Defines the contents of each specified named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition) and whether all instance of the named type will be used for a specified subset.
21543
+ *
21544
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
21545
+ */
21546
+ export interface LinkChartLayerLayerInclusionDefinition {
21547
+ /**
21548
+ * If `true`, all of the instances of the named type will be included regardless of if there is a defined list of members.
21549
+ *
21550
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
21551
+ */
21552
+ useAllData: boolean;
21553
+ /**
21554
+ * A map of the specific members of the named type to be included.
21555
+ *
21556
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionDefinition)
21557
+ */
21558
+ members?: globalThis.Map<string, LinkChartLayerLayerInclusionMemberDefinition>;
21559
+ }
21560
+
21561
+ /**
21562
+ * Defines the list of `members` for a named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#inclusionModeDefinition).
21563
+ *
21564
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
21565
+ */
21566
+ export interface LinkChartLayerLayerInclusionMemberDefinition {
21567
+ /**
21568
+ * The unique identifier of the specific instance of the named type to be included in the layer.
21569
+ *
21570
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
21571
+ */
21572
+ id: string;
21573
+ /**
21574
+ * The exact point location of the entity on the LinkChart.
21575
+ *
21576
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayerInclusionMemberDefinition)
21577
+ */
21578
+ linkChartLocation?: Geometry;
21579
+ }
21580
+
20654
21581
  export interface MapImageLayer
20655
21582
  extends Layer,
20656
21583
  SublayersOwner,
@@ -20712,7 +21639,7 @@ declare namespace __esri {
20712
21639
  *
20713
21640
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html#imageFormat)
20714
21641
  */
20715
- imageFormat: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "svg" | "pngjpg";
21642
+ imageFormat: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "pngjpg";
20716
21643
  /**
20717
21644
  * Indicates the maximum height of the image exported by the service.
20718
21645
  *
@@ -20843,7 +21770,7 @@ declare namespace __esri {
20843
21770
  *
20844
21771
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-MapImageLayer.html#imageFormat)
20845
21772
  */
20846
- imageFormat?: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "svg" | "pngjpg";
21773
+ imageFormat?: "png" | "png8" | "png24" | "png32" | "jpg" | "pdf" | "bmp" | "gif" | "pngjpg";
20847
21774
  /**
20848
21775
  * Indicates the maximum height of the image exported by the service.
20849
21776
  *
@@ -24632,6 +25559,277 @@ declare namespace __esri {
24632
25559
  dataChanged: boolean;
24633
25560
  }
24634
25561
 
25562
+ /**
25563
+ * Provides the utility function to convert image coordinates to geographic coordinates.
25564
+ *
25565
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html)
25566
+ */
25567
+ interface imageToWorld {
25568
+ /**
25569
+ * Transforms image coordinates in pixels to a point or an array of points specifying the corresponding geographic world coordinates.
25570
+ *
25571
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#imageToWorld)
25572
+ */
25573
+ imageToWorld(
25574
+ pixelOrPixels: imageToWorldPixelLocation | imageToWorldPixelLocation[],
25575
+ properties: ImageToWorldProperties,
25576
+ updateElevationProps: UpdateElevationProps
25577
+ ): Promise<Point | Point[]>;
25578
+ }
25579
+
25580
+ export const imageToWorld: imageToWorld;
25581
+
25582
+ /**
25583
+ * Represents the properties required for transforming image coordinates to world coordinates.
25584
+ *
25585
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25586
+ */
25587
+ export interface ImageToWorldProperties {
25588
+ /**
25589
+ * The height of the ground at the camera’s location (specified by cameraLocation), determined by subtracting the camera’s height from the absolute z-coordinate of the location.
25590
+ *
25591
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25592
+ */
25593
+ averageElevation: number;
25594
+ /**
25595
+ * The camera orientation of the second rotation around the x-axis of the camera.
25596
+ *
25597
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25598
+ */
25599
+ cameraPitch: number;
25600
+ /**
25601
+ * The camera orientation of the final rotation around the z-axis of the camera in the positive clockwise direction.
25602
+ *
25603
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25604
+ */
25605
+ cameraRoll: number;
25606
+ /**
25607
+ * The farthest usable distance of the imagery from the camera position.
25608
+ *
25609
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25610
+ */
25611
+ farDistance: number;
25612
+ /**
25613
+ * A fixed length array of 6 numbers corresponding to the camera affine values A0, A1, A2, B0, B1, B2.
25614
+ *
25615
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25616
+ */
25617
+ affineTransformations: number[];
25618
+ /**
25619
+ * A Point representing the camera location in world coordinates where the image was captured.
25620
+ *
25621
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25622
+ */
25623
+ cameraLocation: any;
25624
+ /**
25625
+ * The focal length of the camera lens.
25626
+ *
25627
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25628
+ */
25629
+ focalLength: number;
25630
+ /**
25631
+ * A fixed length array of 2 numbers specifying the x-coordinate and y-coordinate of the principal point of the autocollimation.
25632
+ *
25633
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25634
+ */
25635
+ principalOffsetPoint?: number[];
25636
+ /**
25637
+ * The radial distortion is specified as an array of three numbers, indicating [K1,K2,K3] coefficient values.
25638
+ *
25639
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25640
+ */
25641
+ radialDistortionCoefficients?: number[];
25642
+ /**
25643
+ * The row-wise sorted rotation matrix that defines the transformation from image space to map space, specified as an array of nine floating-point values.
25644
+ *
25645
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25646
+ */
25647
+ rotationMatrix: number[];
25648
+ /**
25649
+ * The tangential distortion is specified as an array of three numbers, indicating [P1,P2] coefficient values.
25650
+ *
25651
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25652
+ */
25653
+ tangentialDistortionCoefficients?: number[];
25654
+ /**
25655
+ * The camera’s field-of-view in a horizontal direction.
25656
+ *
25657
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25658
+ */
25659
+ horizontalFieldOfView: number;
25660
+ /**
25661
+ * The camera’s field-of-view in the vertical direction.
25662
+ *
25663
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25664
+ */
25665
+ verticalFieldOfView: number;
25666
+ /**
25667
+ * Height of the image used for world to image transformation, in pixels.
25668
+ *
25669
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25670
+ */
25671
+ imageHeight: number;
25672
+ /**
25673
+ * image used for world to image transformation, in pixels.
25674
+ *
25675
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#ImageToWorldProperties)
25676
+ */
25677
+ imageWidth: number;
25678
+ }
25679
+
25680
+ /**
25681
+ * Represents the pixel location in image space, where (0, 0) corresponds to the center of the upper left pixel.
25682
+ *
25683
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#PixelLocation)
25684
+ */
25685
+ export interface imageToWorldPixelLocation {
25686
+ /**
25687
+ * The row the pixel location.
25688
+ *
25689
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#PixelLocation)
25690
+ */
25691
+ x: number;
25692
+ /**
25693
+ * The column the pixel location.
25694
+ *
25695
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#PixelLocation)
25696
+ */
25697
+ y: number;
25698
+ }
25699
+
25700
+ /**
25701
+ * Represents the properties required for updating the elevation of the output point.
25702
+ *
25703
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#UpdateElevationProps)
25704
+ */
25705
+ export interface UpdateElevationProps {
25706
+ /**
25707
+ * A cache of elevation values created from an elevation service used for synchronously querying elevation information for geometries.
25708
+ *
25709
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#UpdateElevationProps)
25710
+ */
25711
+ elevationSampler: any;
25712
+ /**
25713
+ * The constant ground elevation value.
25714
+ *
25715
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-imageToWorld.html#UpdateElevationProps)
25716
+ */
25717
+ constantElevation: number;
25718
+ }
25719
+
25720
+ /**
25721
+ * Provides the utility function to convert geographic coordinates to image coordinates.
25722
+ *
25723
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html)
25724
+ */
25725
+ interface worldToImage {
25726
+ /**
25727
+ * Transforms a point or an array of points from geographic world coordinates to image space coordinates.
25728
+ *
25729
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#worldToImage)
25730
+ */
25731
+ worldToImage(
25732
+ pointOrPoints: Point | Point[] | Collection<Point>,
25733
+ properties: WorldToImageProperties
25734
+ ): PixelLocation | PixelLocation[];
25735
+ }
25736
+
25737
+ export const worldToImage: worldToImage;
25738
+
25739
+ /**
25740
+ * Represents the pixel location in image space, where (0, 0) corresponds to the center of the upper left pixel.
25741
+ *
25742
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#PixelLocation)
25743
+ */
25744
+ export interface PixelLocation {
25745
+ /**
25746
+ * The row the pixel location.
25747
+ *
25748
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#PixelLocation)
25749
+ */
25750
+ x: number;
25751
+ /**
25752
+ * The column the pixel location.
25753
+ *
25754
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#PixelLocation)
25755
+ */
25756
+ y: number;
25757
+ }
25758
+
25759
+ /**
25760
+ * Represents the properties required for transforming world coordinates to image coordinates.
25761
+ *
25762
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25763
+ */
25764
+ export interface WorldToImageProperties {
25765
+ /**
25766
+ * A fixed length array of 6 numbers corresponding to the camera affine values A0, A1, A2, B0, B1, B2.
25767
+ *
25768
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25769
+ */
25770
+ affineTransformations: number[];
25771
+ /**
25772
+ * A Point representing the camera location in world coordinates where the image was captured.
25773
+ *
25774
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25775
+ */
25776
+ cameraLocation: any;
25777
+ /**
25778
+ * The focal length of the camera lens.
25779
+ *
25780
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25781
+ */
25782
+ focalLength: number;
25783
+ /**
25784
+ * A fixed length array of 2 numbers specifying the x-coordinate and y-coordinate of the principal point of the autocollimation.
25785
+ *
25786
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25787
+ */
25788
+ principalOffsetPoint?: number[];
25789
+ /**
25790
+ * The radial distortion is specified as an array of three numbers, indicating [K1,K2,K3] coefficient values.
25791
+ *
25792
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25793
+ */
25794
+ radialDistortionCoefficients?: number[];
25795
+ /**
25796
+ * The row-wise sorted rotation matrix that defines the transformation from image space to map space, specified as an array of nine floating-point values.
25797
+ *
25798
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25799
+ */
25800
+ rotationMatrix: number[];
25801
+ /**
25802
+ * The tangential distortion is specified as an array of three numbers, indicating [P1,P2] coefficient values.
25803
+ *
25804
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25805
+ */
25806
+ tangentialDistortionCoefficients?: number[];
25807
+ /**
25808
+ * The camera’s field-of-view in a horizontal direction.
25809
+ *
25810
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25811
+ */
25812
+ horizontalFieldOfView: number;
25813
+ /**
25814
+ * The camera’s field-of-view in the vertical direction.
25815
+ *
25816
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25817
+ */
25818
+ verticalFieldOfView: number;
25819
+ /**
25820
+ * Height of the image used for world to image transformation, in pixels.
25821
+ *
25822
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25823
+ */
25824
+ imageHeight: number;
25825
+ /**
25826
+ * image used for world to image transformation, in pixels.
25827
+ *
25828
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-orientedImagery-transformations-worldToImage.html#WorldToImageProperties)
25829
+ */
25830
+ imageWidth: number;
25831
+ }
25832
+
24635
25833
  export interface OrientedImageryLayer
24636
25834
  extends Layer,
24637
25835
  BlendLayer,
@@ -24957,6 +26155,21 @@ declare namespace __esri {
24957
26155
  query?: Query | QueryProperties,
24958
26156
  options?: OrientedImageryLayerQueryObjectIdsOptions
24959
26157
  ): Promise<number[]>;
26158
+ /**
26159
+ * Saves the layer to its existing portal item in the [Portal](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html) authenticated within the user's current session.
26160
+ *
26161
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#save)
26162
+ */
26163
+ save(options?: OrientedImageryLayerSaveOptions): Promise<PortalItem>;
26164
+ /**
26165
+ * Saves the layer to a new portal item in the [Portal](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html) authenticated within the user's current session.
26166
+ *
26167
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
26168
+ */
26169
+ saveAs(
26170
+ portalItem: PortalItem | PortalItemProperties,
26171
+ options?: OrientedImageryLayerSaveAsOptions
26172
+ ): Promise<PortalItem>;
24960
26173
 
24961
26174
  static fromJSON(json: any): OrientedImageryLayer;
24962
26175
  }
@@ -25340,6 +26553,48 @@ declare namespace __esri {
25340
26553
  signal?: AbortSignal;
25341
26554
  }
25342
26555
 
26556
+ export interface OrientedImageryLayerSaveAsOptions {
26557
+ /**
26558
+ * The portal folder where the layer's portal item will be saved.
26559
+ *
26560
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
26561
+ */
26562
+ folder?: PortalFolder;
26563
+ /**
26564
+ * Options for validating the save operation.
26565
+ *
26566
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
26567
+ */
26568
+ validationOptions?: OrientedImageryLayerSaveAsOptionsValidationOptions;
26569
+ }
26570
+
26571
+ export interface OrientedImageryLayerSaveAsOptionsValidationOptions {
26572
+ /**
26573
+ * Indicates whether to ignore saving unsupported layers or layers with unsupported content, such as unsupported symbology.
26574
+ *
26575
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#saveAs)
26576
+ */
26577
+ ignoreUnsupported?: boolean;
26578
+ }
26579
+
26580
+ export interface OrientedImageryLayerSaveOptions {
26581
+ /**
26582
+ * Options for validating the save operation.
26583
+ *
26584
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#save)
26585
+ */
26586
+ validationOptions?: OrientedImageryLayerSaveOptionsValidationOptions;
26587
+ }
26588
+
26589
+ export interface OrientedImageryLayerSaveOptionsValidationOptions {
26590
+ /**
26591
+ * Indicates whether to ignore saving unsupported layers or layers with unsupported content, such as unsupported symbology.
26592
+ *
26593
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-OrientedImageryLayer.html#save)
26594
+ */
26595
+ ignoreUnsupported?: boolean;
26596
+ }
26597
+
25343
26598
  export class PointCloudBitfieldFilter extends PointCloudFilter {
25344
26599
  /**
25345
26600
  * Points can be classified using flags that indicate special characteristics associated with the point like the direction of the flight or the method used to create the point.
@@ -30235,7 +31490,7 @@ declare namespace __esri {
30235
31490
  | "center-end"
30236
31491
  | "always-horizontal";
30237
31492
  /**
30238
- * Specifies the orientation of the label position of a polyline label.
31493
+ * Specifies the orientation of the label position of a single line polyline label.
30239
31494
  *
30240
31495
  * @default "curved"
30241
31496
  *
@@ -30372,7 +31627,7 @@ declare namespace __esri {
30372
31627
  | "center-end"
30373
31628
  | "always-horizontal";
30374
31629
  /**
30375
- * Specifies the orientation of the label position of a polyline label.
31630
+ * Specifies the orientation of the label position of a single line polyline label.
30376
31631
  *
30377
31632
  * @default "curved"
30378
31633
  *
@@ -36299,12 +37554,24 @@ declare namespace __esri {
36299
37554
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
36300
37555
  */
36301
37556
  values?: number[] | number[][];
37557
+ /**
37558
+ * Indicates if each dimension value is represented using a range.
37559
+ *
37560
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
37561
+ */
37562
+ hasRanges?: boolean;
36302
37563
  /**
36303
37564
  * Indicates if the dimension is recorded at regular intervals.
36304
37565
  *
36305
37566
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
36306
37567
  */
36307
37568
  hasRegularIntervals?: boolean;
37569
+ /**
37570
+ * Indicates if the dimension is recurring, e.g.
37571
+ *
37572
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-RasterInfo.html#RasterMultidimensionalInfo)
37573
+ */
37574
+ recurring?: boolean;
36308
37575
  /**
36309
37576
  * Dimension interval.
36310
37577
  *
@@ -37945,7 +39212,7 @@ declare namespace __esri {
37945
39212
  constructor(properties?: SubtypeSublayerProperties);
37946
39213
 
37947
39214
  /**
37948
- * The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
39215
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
37949
39216
  *
37950
39217
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#attributeTableTemplate)
37951
39218
  */
@@ -38243,7 +39510,7 @@ declare namespace __esri {
38243
39510
 
38244
39511
  interface SubtypeSublayerProperties extends LoadableProperties {
38245
39512
  /**
38246
- * The [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html) used to configure an associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
39513
+ * This property is used to configure the associated layer's [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
38247
39514
  *
38248
39515
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#attributeTableTemplate)
38249
39516
  */
@@ -40825,7 +42092,7 @@ declare namespace __esri {
40825
42092
  *
40826
42093
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#videoLayersInfo)
40827
42094
  */
40828
- readonly videoLayersInfo: any[];
42095
+ readonly videoLayersInfo: VideoServiceLayerInfo[];
40829
42096
  /**
40830
42097
  * The time extent of the video.
40831
42098
  *
@@ -41050,6 +42317,44 @@ declare namespace __esri {
41050
42317
  y: number;
41051
42318
  }
41052
42319
 
42320
+ /**
42321
+ * The **VideoServiceLayerInfo** defines layer information for video layers published within the same video service.
42322
+ *
42323
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
42324
+ */
42325
+ export interface VideoServiceLayerInfo {
42326
+ /**
42327
+ * The layer id of the video layer.
42328
+ *
42329
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
42330
+ */
42331
+ layerId: number;
42332
+ /**
42333
+ * The URL to the poster image for the video layer.
42334
+ *
42335
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
42336
+ */
42337
+ posterUrl: string;
42338
+ /**
42339
+ * The source type of the video layer.
42340
+ *
42341
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
42342
+ */
42343
+ sourceType: "ondemand" | "livestream";
42344
+ /**
42345
+ * The title of the video layer.
42346
+ *
42347
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#VideoServiceLayerInfo)
42348
+ */
42349
+ title: string;
42350
+ /**
42351
+ * The layer type.
42352
+ *
42353
+ * [Read more...](global.html#type)
42354
+ */
42355
+ type: "Video Layer";
42356
+ }
42357
+
41053
42358
  export interface ViewshedLayer extends Layer, OperationalLayer {}
41054
42359
 
41055
42360
  export class ViewshedLayer {
@@ -41068,7 +42373,7 @@ declare namespace __esri {
41068
42373
  */
41069
42374
  readonly fullExtent: Extent;
41070
42375
  /**
41071
- * The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer.
42376
+ * The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer that stores the viewsheds.
41072
42377
  *
41073
42378
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ViewshedLayer.html#source)
41074
42379
  */
@@ -41087,7 +42392,7 @@ declare namespace __esri {
41087
42392
 
41088
42393
  interface ViewshedLayerProperties extends LayerProperties, OperationalLayerProperties {
41089
42394
  /**
41090
- * The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer.
42395
+ * The [ViewshedAnalysis](https://developers.arcgis.com/javascript/latest/api-reference/esri-analysis-ViewshedAnalysis.html) associated with the layer that stores the viewsheds.
41091
42396
  *
41092
42397
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ViewshedLayer.html#source)
41093
42398
  */
@@ -41731,7 +43036,7 @@ declare namespace __esri {
41731
43036
 
41732
43037
  export class VoxelLayer {
41733
43038
  /**
41734
- * A voxel layerrepresents multidimensional volumetric data.
43039
+ * A voxel layer represents multidimensional volumetric data.
41735
43040
  *
41736
43041
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VoxelLayer.html)
41737
43042
  */
@@ -48149,7 +49454,7 @@ declare namespace __esri {
48149
49454
  */
48150
49455
  hasClassificationSchema: boolean;
48151
49456
  /**
48152
- * Helper services provided by the portal.
49457
+ * This class contains properties to obtain information for various web services available on the portal.
48153
49458
  *
48154
49459
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#helperServices)
48155
49460
  */
@@ -48344,6 +49649,12 @@ declare namespace __esri {
48344
49649
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#use3dBasemaps)
48345
49650
  */
48346
49651
  use3dBasemaps: boolean;
49652
+ /**
49653
+ * When `false`, The default 3d basemap is not used in the SceneViewer.
49654
+ *
49655
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#useDefault3dBasemap)
49656
+ */
49657
+ useDefault3dBasemap: boolean;
48347
49658
  /**
48348
49659
  * Information representing a registered user of the portal.
48349
49660
  *
@@ -48673,7 +49984,7 @@ declare namespace __esri {
48673
49984
  */
48674
49985
  hasClassificationSchema?: boolean;
48675
49986
  /**
48676
- * Helper services provided by the portal.
49987
+ * This class contains properties to obtain information for various web services available on the portal.
48677
49988
  *
48678
49989
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#helperServices)
48679
49990
  */
@@ -48842,6 +50153,12 @@ declare namespace __esri {
48842
50153
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#use3dBasemaps)
48843
50154
  */
48844
50155
  use3dBasemaps?: boolean;
50156
+ /**
50157
+ * When `false`, The default 3d basemap is not used in the SceneViewer.
50158
+ *
50159
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#useDefault3dBasemap)
50160
+ */
50161
+ useDefault3dBasemap?: boolean;
48845
50162
  /**
48846
50163
  * Information representing a registered user of the portal.
48847
50164
  *
@@ -77569,6 +78886,55 @@ declare namespace __esri {
77569
78886
  isGrid?: boolean;
77570
78887
  }
77571
78888
 
78889
+ /**
78890
+ * This module provides a function for regenerating renderers based on the current state of the layer and view.
78891
+ *
78892
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html)
78893
+ */
78894
+ interface rendererUtils {
78895
+ /**
78896
+ * Regenerates the renderer for a layer based on the current state of the layer and view.
78897
+ *
78898
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
78899
+ */
78900
+ regenerateRenderer(params: rendererUtilsRegenerateRendererParams): Promise<Renderer>;
78901
+ }
78902
+
78903
+ export const rendererUtils: rendererUtils;
78904
+
78905
+ export interface rendererUtilsRegenerateRendererParams {
78906
+ /**
78907
+ * The layer for which to regenerate the renderer.
78908
+ *
78909
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
78910
+ */
78911
+ layer: FeatureLayer;
78912
+ /**
78913
+ * The view in which the layer is rendered.
78914
+ *
78915
+ * [Read more...](global.html)
78916
+ */
78917
+ view: MapView;
78918
+ /**
78919
+ * The renderer to update.
78920
+ *
78921
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
78922
+ */
78923
+ renderer?: Renderer;
78924
+ /**
78925
+ * Indicates whether to regenerate the binning renderer or the renderer set on the layer.
78926
+ *
78927
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
78928
+ */
78929
+ forBinning?: boolean;
78930
+ /**
78931
+ * When defined, only features included in the filter are considered in the attribute and spatial statistics calculations when determining the final renderer.
78932
+ *
78933
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-smartMapping-renderers-support-rendererUtils.html#regenerateRenderer)
78934
+ */
78935
+ filter?: FeatureFilter;
78936
+ }
78937
+
77572
78938
  /**
77573
78939
  * This object contains helper methods for generating data-driven visualizations with unique types (or categories) based on a field value from features in a [Layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-Layer.html).
77574
78940
  *
@@ -90406,6 +91772,12 @@ declare namespace __esri {
90406
91772
  export interface AttributeTableTemplate extends Accessor, JSONSupport {}
90407
91773
 
90408
91774
  export class AttributeTableTemplate {
91775
+ /**
91776
+ * An `AttributeTableTemplate` manages the configuration of how the [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html) widget displays its columns.
91777
+ *
91778
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html)
91779
+ */
91780
+
90409
91781
  constructor(properties?: AttributeTableTemplateProperties);
90410
91782
 
90411
91783
  /**
@@ -90478,7 +91850,7 @@ declare namespace __esri {
90478
91850
 
90479
91851
  export class AttributeTableAttachmentElement extends AttributeTableElement {
90480
91852
  /**
90481
- * An `AttributeTableAttachmentElement` defines how attachments display within an attribute table.
91853
+ * An `AttributeTableAttachmentElement` defines how attachments display within a [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
90482
91854
  *
90483
91855
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableAttachmentElement.html)
90484
91856
  */
@@ -90571,7 +91943,7 @@ declare namespace __esri {
90571
91943
 
90572
91944
  export class AttributeTableFieldElement extends AttributeTableElement {
90573
91945
  /**
90574
- * An `AttributeTableFieldElement` table element defines how a layer's [field](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Field.html) participates in the [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
91946
+ * An `AttributeTableFieldElement` table element defines how a layer's [field](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Field.html) displays in the [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
90575
91947
  *
90576
91948
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableFieldElement.html)
90577
91949
  */
@@ -90612,7 +91984,7 @@ declare namespace __esri {
90612
91984
 
90613
91985
  export class AttributeTableGroupElement extends AttributeTableElement {
90614
91986
  /**
90615
- * An `AttributeTableGroupElement` table element defines a container that holds a set of [table elements](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html#elements) that can displayed together.
91987
+ * An `AttributeTableGroupElement` table element defines a container that holds a set of [table elements](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html#elements).
90616
91988
  *
90617
91989
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableGroupElement.html)
90618
91990
  */
@@ -90656,6 +92028,12 @@ declare namespace __esri {
90656
92028
  }
90657
92029
 
90658
92030
  export class AttributeTableRelationshipElement extends AttributeTableElement {
92031
+ /**
92032
+ * An `AttributeTableRelationshipElement` element defines how a relationship between [layers](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#layers) and [tables](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables) participates and displays within a [FeatureTable](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html).
92033
+ *
92034
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableRelationshipElement.html)
92035
+ */
92036
+
90659
92037
  constructor(properties?: AttributeTableRelationshipElementProperties);
90660
92038
 
90661
92039
  /**
@@ -91044,7 +92422,7 @@ declare namespace __esri {
91044
92422
  *
91045
92423
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#currentVersion)
91046
92424
  */
91047
- currentVersion: VersionManagementServiceVersionIdentifier | Date;
92425
+ currentVersion: versionManagementVersionManagementServiceVersionIdentifier | Date;
91048
92426
  /**
91049
92427
  * Contains information on the current version.
91050
92428
  *
@@ -91056,7 +92434,7 @@ declare namespace __esri {
91056
92434
  *
91057
92435
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#defaultVersionIdentifier)
91058
92436
  */
91059
- readonly defaultVersionIdentifier: VersionManagementServiceVersionIdentifier;
92437
+ readonly defaultVersionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
91060
92438
  /**
91061
92439
  * The absolute URL of the REST endpoint for the feature service housing the version management service.
91062
92440
  *
@@ -91136,7 +92514,7 @@ declare namespace __esri {
91136
92514
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#alterVersion)
91137
92515
  */
91138
92516
  alterVersion(
91139
- versionIdentifier: VersionManagementServiceVersionIdentifier,
92517
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
91140
92518
  props: VersioningStateAlterVersionProps
91141
92519
  ): Promise<boolean>;
91142
92520
  /**
@@ -91145,14 +92523,14 @@ declare namespace __esri {
91145
92523
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#changeVersion)
91146
92524
  */
91147
92525
  changeVersion(
91148
- toVersion: Date | VersionManagementServiceVersionIdentifier
92526
+ toVersion: Date | versionManagementVersionManagementServiceVersionIdentifier
91149
92527
  ): Promise<globalThis.Map<VersionAdapter, ServiceResult>>;
91150
92528
  /**
91151
92529
  * Deletes a version given the following parameters.
91152
92530
  *
91153
92531
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersioningState.html#deleteVersion)
91154
92532
  */
91155
- deleteVersion(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<boolean>;
92533
+ deleteVersion(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
91156
92534
  /**
91157
92535
  * Method used to get extended information about a version.
91158
92536
  *
@@ -91446,7 +92824,7 @@ declare namespace __esri {
91446
92824
  *
91447
92825
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#defaultVersionIdentifier)
91448
92826
  */
91449
- defaultVersionIdentifier: VersionManagementServiceVersionIdentifier;
92827
+ defaultVersionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
91450
92828
  /**
91451
92829
  * Indicates whether the instance has loaded.
91452
92830
  *
@@ -91490,7 +92868,7 @@ declare namespace __esri {
91490
92868
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#alterVersion)
91491
92869
  */
91492
92870
  alterVersion(
91493
- versionIdentifier: VersionManagementServiceVersionIdentifier,
92871
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
91494
92872
  props: VersionManagementServiceAlterVersionProps
91495
92873
  ): Promise<boolean>;
91496
92874
  /**
@@ -91498,13 +92876,13 @@ declare namespace __esri {
91498
92876
  *
91499
92877
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#canRedo)
91500
92878
  */
91501
- canRedo(versionIdentifier: VersionManagementServiceVersionIdentifier): boolean;
92879
+ canRedo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): boolean;
91502
92880
  /**
91503
92881
  * `canUndo` may be used to verify that an [undo](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#undo) operation is possible.
91504
92882
  *
91505
92883
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#canUndo)
91506
92884
  */
91507
- canUndo(versionIdentifier: VersionManagementServiceVersionIdentifier): boolean;
92885
+ canUndo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): boolean;
91508
92886
  /**
91509
92887
  * Method used to change a layer's version/moment or network's version/moment.
91510
92888
  *
@@ -91512,8 +92890,8 @@ declare namespace __esri {
91512
92890
  */
91513
92891
  changeVersion(
91514
92892
  input: WebMap | Collection<FeatureLayer> | FeatureLayer[] | Network,
91515
- fromVersion: Date | VersionManagementServiceVersionIdentifier,
91516
- toVersion: Date | VersionManagementServiceVersionIdentifier
92893
+ fromVersion: Date | versionManagementVersionManagementServiceVersionIdentifier,
92894
+ toVersion: Date | versionManagementVersionManagementServiceVersionIdentifier
91517
92895
  ): Promise<boolean>;
91518
92896
  /**
91519
92897
  * Method used to change a layer's version/moment or network's version/moment.
@@ -91522,8 +92900,8 @@ declare namespace __esri {
91522
92900
  */
91523
92901
  changeVersionWithResult(
91524
92902
  input: WebMap | Collection<VersionAdapter> | VersionManagementService[],
91525
- fromVersion: Date | VersionManagementServiceVersionIdentifier,
91526
- toVersion: Date | VersionManagementServiceVersionIdentifier
92903
+ fromVersion: Date | versionManagementVersionManagementServiceVersionIdentifier,
92904
+ toVersion: Date | versionManagementVersionManagementServiceVersionIdentifier
91527
92905
  ): Promise<globalThis.Map<VersionAdapter, ServiceResult>>;
91528
92906
  /**
91529
92907
  * Creates a new version given the following parameters.
@@ -91538,32 +92916,32 @@ declare namespace __esri {
91538
92916
  *
91539
92917
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#deleteVersion)
91540
92918
  */
91541
- deleteVersion(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<boolean>;
92919
+ deleteVersion(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
91542
92920
  /**
91543
92921
  * Returns the current client lock type on a given version.
91544
92922
  *
91545
92923
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getLockType)
91546
92924
  */
91547
- getLockType(versionIdentifier: VersionManagementServiceVersionIdentifier): string;
92925
+ getLockType(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): string;
91548
92926
  /**
91549
92927
  * This method will return the [versionIdentifier](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#versionIdentifier) given the guid of the version.
91550
92928
  *
91551
92929
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getVersionIdentifierFromGuid)
91552
92930
  */
91553
- getVersionIdentifierFromGuid(guid: string): VersionManagementServiceVersionIdentifier;
92931
+ getVersionIdentifierFromGuid(guid: string): versionManagementVersionManagementServiceVersionIdentifier;
91554
92932
  /**
91555
92933
  * This method will return the [versionIdentifier](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#versionIdentifier) given the name of the version.
91556
92934
  *
91557
92935
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getVersionIdentifierFromName)
91558
92936
  */
91559
- getVersionIdentifierFromName(name: string): VersionManagementServiceVersionIdentifier;
92937
+ getVersionIdentifierFromName(name: string): versionManagementVersionManagementServiceVersionIdentifier;
91560
92938
  /**
91561
92939
  * Method used to get extended information about a version.
91562
92940
  *
91563
92941
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#getVersionInfoExtended)
91564
92942
  */
91565
92943
  getVersionInfoExtended(
91566
- versionIdentifier: VersionManagementServiceVersionIdentifier
92944
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
91567
92945
  ): Promise<VersionManagementServiceVersionInfoExtendedJSON>;
91568
92946
  /**
91569
92947
  * Returns information about a version or versions.
@@ -91582,14 +92960,14 @@ declare namespace __esri {
91582
92960
  *
91583
92961
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#post)
91584
92962
  */
91585
- post(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<PostResult>;
92963
+ post(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<PostResult>;
91586
92964
  /**
91587
92965
  * Use the reconcile operation to reconcile a branch version with the default version.
91588
92966
  *
91589
92967
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#reconcile)
91590
92968
  */
91591
92969
  reconcile(
91592
- versionIdentifier: VersionManagementServiceVersionIdentifier,
92970
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
91593
92971
  props: VersionManagementServiceReconcileProps
91594
92972
  ): Promise<ReconcileResult>;
91595
92973
  /**
@@ -91597,44 +92975,51 @@ declare namespace __esri {
91597
92975
  *
91598
92976
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#redo)
91599
92977
  */
91600
- redo(versionIdentifier: VersionManagementServiceVersionIdentifier): void;
92978
+ redo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): void;
91601
92979
  /**
91602
92980
  * Using the specified session ID an exclusive lock is obtained for the session on the version.
91603
92981
  *
91604
92982
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startEditing)
91605
92983
  */
91606
- startEditing(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<boolean>;
92984
+ startEditing(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
91607
92985
  /**
91608
92986
  * Using the specified session ID an exclusive lock is obtained for the session on the version.
91609
92987
  *
91610
92988
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startEditingWithResult)
91611
92989
  */
91612
- startEditingWithResult(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<ServiceResult>;
92990
+ startEditingWithResult(
92991
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
92992
+ ): Promise<ServiceResult>;
91613
92993
  /**
91614
92994
  * Using the specified client generated session ID, a shared lock is obtained for the session if the version is not already being edited by another user/session.
91615
92995
  *
91616
92996
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startReading)
91617
92997
  */
91618
- startReading(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<boolean>;
92998
+ startReading(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
91619
92999
  /**
91620
93000
  * Using the specified client generated session ID, a shared lock is obtained for the session if the version is not already being edited by another user/session.
91621
93001
  *
91622
93002
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#startReadingWithResult)
91623
93003
  */
91624
- startReadingWithResult(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<ServiceResult>;
93004
+ startReadingWithResult(
93005
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
93006
+ ): Promise<ServiceResult>;
91625
93007
  /**
91626
93008
  * Using the specified session id, the exclusive lock for the version is downgraded to a shared lock.
91627
93009
  *
91628
93010
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopEditing)
91629
93011
  */
91630
- stopEditing(versionIdentifier: VersionManagementServiceVersionIdentifier, saveEdits: boolean): Promise<boolean>;
93012
+ stopEditing(
93013
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
93014
+ saveEdits: boolean
93015
+ ): Promise<boolean>;
91631
93016
  /**
91632
93017
  * Using the specified session id, the exclusive lock for the version is downgraded to a shared lock.
91633
93018
  *
91634
93019
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopEditingWithResult)
91635
93020
  */
91636
93021
  stopEditingWithResult(
91637
- versionIdentifier: VersionManagementServiceVersionIdentifier,
93022
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier,
91638
93023
  saveEdits: boolean
91639
93024
  ): Promise<ServiceResult>;
91640
93025
  /**
@@ -91642,19 +93027,21 @@ declare namespace __esri {
91642
93027
  *
91643
93028
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopReading)
91644
93029
  */
91645
- stopReading(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<boolean>;
93030
+ stopReading(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): Promise<boolean>;
91646
93031
  /**
91647
93032
  * The shared lock is released on the version.
91648
93033
  *
91649
93034
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#stopReadingWithResult)
91650
93035
  */
91651
- stopReadingWithResult(versionIdentifier: VersionManagementServiceVersionIdentifier): Promise<ServiceResult>;
93036
+ stopReadingWithResult(
93037
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier
93038
+ ): Promise<ServiceResult>;
91652
93039
  /**
91653
93040
  * This method undos the last edit made while in an edit session.
91654
93041
  *
91655
93042
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#undo)
91656
93043
  */
91657
- undo(versionIdentifier: VersionManagementServiceVersionIdentifier): void;
93044
+ undo(versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier): void;
91658
93045
 
91659
93046
  constructor(properties?: any);
91660
93047
  }
@@ -91809,6 +93196,26 @@ declare namespace __esri {
91809
93196
  guid: string;
91810
93197
  }
91811
93198
 
93199
+ /**
93200
+ * Holds the name and guid of a version.
93201
+ *
93202
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#VersionIdentifier)
93203
+ */
93204
+ export interface versionManagementVersionManagementServiceVersionIdentifier {
93205
+ /**
93206
+ * The version name.
93207
+ *
93208
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#VersionIdentifier)
93209
+ */
93210
+ name: string;
93211
+ /**
93212
+ * The version GUID.
93213
+ *
93214
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-versionManagement-VersionManagementService.html#VersionIdentifier)
93215
+ */
93216
+ guid: string;
93217
+ }
93218
+
91812
93219
  /**
91813
93220
  * This contains extended information about a given version.
91814
93221
  *
@@ -92955,12 +94362,6 @@ declare namespace __esri {
92955
94362
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-analysis-DirectLineMeasurementAnalysisView3D.html#DirectLineMeasurementAnalysisResult)
92956
94363
  */
92957
94364
  mode: "euclidean" | "geodesic";
92958
- /**
92959
- * DEPRECATED since 4.29: Use `directDistance` and `horizontalDistance` - Measured distance between the start and end points.
92960
- *
92961
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-analysis-DirectLineMeasurementAnalysisView3D.html#DirectLineMeasurementAnalysisResult)
92962
- */
92963
- distance: Length;
92964
94365
  /**
92965
94366
  * The 3D distance between the two points that is computed in a Euclidean manner.
92966
94367
  *
@@ -95277,7 +96678,7 @@ declare namespace __esri {
95277
96678
  */
95278
96679
  helpMessageIcon: string;
95279
96680
  /**
95280
- * Whether users can focus the tooltip and input editing constraint values.
96681
+ * Whether users can focus the tooltip and input constraint values.
95281
96682
  *
95282
96683
  * @default true
95283
96684
  *
@@ -95318,7 +96719,7 @@ declare namespace __esri {
95318
96719
  */
95319
96720
  helpMessageIcon?: string;
95320
96721
  /**
95321
- * Whether users can focus the tooltip and input editing constraint values.
96722
+ * Whether users can focus the tooltip and input constraint values.
95322
96723
  *
95323
96724
  * @default true
95324
96725
  *
@@ -95606,6 +97007,14 @@ declare namespace __esri {
95606
97007
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#featureSources)
95607
97008
  */
95608
97009
  featureSources: Collection<FeatureSnappingLayerSource>;
97010
+ /**
97011
+ * Turns the grid on or off.
97012
+ *
97013
+ * @default false
97014
+ *
97015
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#gridEnabled)
97016
+ */
97017
+ gridEnabled: boolean;
95609
97018
  /**
95610
97019
  * Global configuration option to turn self snapping (within one feature while either drawing or reshaping) on or off.
95611
97020
  *
@@ -95655,6 +97064,14 @@ declare namespace __esri {
95655
97064
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#featureSources)
95656
97065
  */
95657
97066
  featureSources?: CollectionProperties<FeatureSnappingLayerSourceProperties>;
97067
+ /**
97068
+ * Turns the grid on or off.
97069
+ *
97070
+ * @default false
97071
+ *
97072
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-interactive-snapping-SnappingOptions.html#gridEnabled)
97073
+ */
97074
+ gridEnabled?: boolean;
95658
97075
  /**
95659
97076
  * Global configuration option to turn self snapping (within one feature while either drawing or reshaping) on or off.
95660
97077
  *
@@ -96037,7 +97454,7 @@ declare namespace __esri {
96037
97454
  */
96038
97455
  readonly availableFields: string[];
96039
97456
  /**
96040
- * Indicates if the layer view is updating its data and new features are being fetched.
97457
+ * Indicates whether the layer view is currently fetching new features.
96041
97458
  *
96042
97459
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerViewMixin.html#dataUpdating)
96043
97460
  */
@@ -96061,7 +97478,7 @@ declare namespace __esri {
96061
97478
  */
96062
97479
  readonly hasAllFeatures: boolean;
96063
97480
  /**
96064
- * Indicates whether the layer view has all the features available in the current view.
97481
+ * Indicates whether the layer view has successfully queried all of its features for the current view.
96065
97482
  *
96066
97483
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerViewMixin.html#hasAllFeaturesInView)
96067
97484
  */
@@ -97053,6 +98470,32 @@ declare namespace __esri {
97053
98470
  FeatureLayerViewMixinProperties,
97054
98471
  HighlightLayerViewMixinProperties {}
97055
98472
 
98473
+ export class LinkChartView extends View2D {
98474
+ /**
98475
+ * LinkChartView is a [2D view](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html) that displays a [WebLinkChart](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html).
98476
+ *
98477
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html)
98478
+ */
98479
+
98480
+ constructor(properties?: LinkChartViewProperties);
98481
+
98482
+ /**
98483
+ * The [WebLinkChart](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html) displayed in the view.
98484
+ *
98485
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
98486
+ */
98487
+ map: WebLinkChart;
98488
+ }
98489
+
98490
+ interface LinkChartViewProperties extends View2DProperties {
98491
+ /**
98492
+ * The [WebLinkChart](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html) displayed in the view.
98493
+ *
98494
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-LinkChartView.html#map)
98495
+ */
98496
+ map?: WebLinkChartProperties;
98497
+ }
98498
+
97056
98499
  export class Magnifier extends Accessor {
97057
98500
  /**
97058
98501
  * The Magnifier allows end users to show a portion of the view as a magnified image.
@@ -97228,6 +98671,12 @@ declare namespace __esri {
97228
98671
  }
97229
98672
 
97230
98673
  export class MapView extends View2D {
98674
+ /**
98675
+ * A MapView displays a 2D view of a [Map](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html) instance.
98676
+ *
98677
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html)
98678
+ */
98679
+
97231
98680
  constructor(properties?: MapViewProperties);
97232
98681
 
97233
98682
  /**
@@ -99975,7 +101424,7 @@ declare namespace __esri {
99975
101424
 
99976
101425
  export class View2D {
99977
101426
  /**
99978
- * A MapView displays a 2D view of a [Map](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html) instance.
101427
+ * View2D is the base class for all 2D views.
99979
101428
  *
99980
101429
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html)
99981
101430
  */
@@ -101456,6 +102905,12 @@ declare namespace __esri {
101456
102905
  export interface WebDocument2D extends Map, corePromise {}
101457
102906
 
101458
102907
  export class WebDocument2D {
102908
+ /**
102909
+ * WebDocument2D is the base class for all 2D web documents.
102910
+ *
102911
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html)
102912
+ */
102913
+
101459
102914
  constructor(properties?: WebDocument2DProperties);
101460
102915
 
101461
102916
  /**
@@ -101549,6 +103004,12 @@ declare namespace __esri {
101549
103004
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#loadAll)
101550
103005
  */
101551
103006
  loadAll(): Promise<WebMap>;
103007
+ /**
103008
+ * Update properties of the WebMap related to the view.
103009
+ *
103010
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103011
+ */
103012
+ updateFrom(view: MapView, options?: WebDocument2DUpdateFromOptions): Promise<any>;
101552
103013
  }
101553
103014
 
101554
103015
  interface WebDocument2DProperties extends MapProperties {
@@ -101608,7 +103069,79 @@ declare namespace __esri {
101608
103069
  widgets?: Widgets;
101609
103070
  }
101610
103071
 
103072
+ export interface WebDocument2DUpdateFromOptions {
103073
+ /**
103074
+ * When `true`, the view's background will not be updated for the webmap.
103075
+ *
103076
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103077
+ */
103078
+ backgroundExcluded?: boolean;
103079
+ /**
103080
+ * When `true`, the initial [viewpoint](https://developers.arcgis.com/javascript/latest/api-reference/esri-webmap-InitialViewProperties.html#viewpoint) of the view will not be updated for the webmap.
103081
+ *
103082
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103083
+ */
103084
+ viewpointExcluded?: boolean;
103085
+ /**
103086
+ * When `true`, the view's scale will be updated for the webmap.
103087
+ *
103088
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103089
+ */
103090
+ scalePreserved?: boolean;
103091
+ /**
103092
+ * When `true`, the thumbnail will not be updated for the webmap.
103093
+ *
103094
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103095
+ */
103096
+ thumbnailExcluded?: boolean;
103097
+ /**
103098
+ * The size of the thumbnail.
103099
+ *
103100
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103101
+ */
103102
+ thumbnailSize?: WebDocument2DUpdateFromOptionsThumbnailSize;
103103
+ /**
103104
+ * When `true`, the webmap's [widgets](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#widgets) property will not be updated.
103105
+ *
103106
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103107
+ */
103108
+ widgetsExcluded?: boolean;
103109
+ }
103110
+
103111
+ export interface WebDocument2DUpdateFromOptionsThumbnailSize {
103112
+ /**
103113
+ * The width of the thumbnail.
103114
+ *
103115
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103116
+ */
103117
+ width: number;
103118
+ /**
103119
+ * The height of the thumbnail.
103120
+ *
103121
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebDocument2D.html#updateFrom)
103122
+ */
103123
+ height: number;
103124
+ }
103125
+
103126
+ export class WebLinkChart extends WebDocument2D {
103127
+ /**
103128
+ * The WebLinkChart class contains properties and methods for storing, managing, and overlaying layers in a link chart.
103129
+ *
103130
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html)
103131
+ */
103132
+
103133
+ constructor(properties?: WebLinkChartProperties);
103134
+ }
103135
+
103136
+ interface WebLinkChartProperties extends WebDocument2DProperties {}
103137
+
101611
103138
  export class WebMap extends WebDocument2D {
103139
+ /**
103140
+ * Loads a [WebMap](https://doc.arcgis.com/en/arcgis-online/create-maps/make-your-first-map.htm) from [ArcGIS Online](https://www.arcgis.com/home/) or [ArcGIS Enterprise portal](https://enterprise.arcgis.com/en/portal/latest/administer/windows/what-is-portal-for-arcgis-.htm) into a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html).
103141
+ *
103142
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html)
103143
+ */
103144
+
101612
103145
  constructor(properties?: WebMapProperties);
101613
103146
 
101614
103147
  /**
@@ -101654,12 +103187,6 @@ declare namespace __esri {
101654
103187
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#saveAs)
101655
103188
  */
101656
103189
  saveAs(portalItem: PortalItem | PortalItemProperties, options?: WebMapSaveAsOptions): Promise<PortalItem>;
101657
- /**
101658
- * Update properties of the WebMap related to the view.
101659
- *
101660
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
101661
- */
101662
- updateFrom(view: MapView, options?: WebMapUpdateFromOptions): Promise<any>;
101663
103190
 
101664
103191
  /**
101665
103192
  * Creates a new instance of this class and initializes it with values from a JSON object generated from an ArcGIS product.
@@ -102007,60 +103534,6 @@ declare namespace __esri {
102007
103534
  minor: number;
102008
103535
  }
102009
103536
 
102010
- export interface WebMapUpdateFromOptions {
102011
- /**
102012
- * When `true`, the view's background will not be updated for the webmap.
102013
- *
102014
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102015
- */
102016
- backgroundExcluded?: boolean;
102017
- /**
102018
- * When `true`, the initial [viewpoint](https://developers.arcgis.com/javascript/latest/api-reference/esri-webmap-InitialViewProperties.html#viewpoint) of the view will not be updated for the webmap.
102019
- *
102020
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102021
- */
102022
- viewpointExcluded?: boolean;
102023
- /**
102024
- * When `true`, the view's scale will be updated for the webmap.
102025
- *
102026
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102027
- */
102028
- scalePreserved?: boolean;
102029
- /**
102030
- * When `true`, the thumbnail will not be updated for the webmap.
102031
- *
102032
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102033
- */
102034
- thumbnailExcluded?: boolean;
102035
- /**
102036
- * The size of the thumbnail.
102037
- *
102038
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102039
- */
102040
- thumbnailSize?: WebMapUpdateFromOptionsThumbnailSize;
102041
- /**
102042
- * When `true`, the webmap's [widgets](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#widgets) property will not be updated.
102043
- *
102044
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102045
- */
102046
- widgetsExcluded?: boolean;
102047
- }
102048
-
102049
- export interface WebMapUpdateFromOptionsThumbnailSize {
102050
- /**
102051
- * The width of the thumbnail.
102052
- *
102053
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102054
- */
102055
- width: number;
102056
- /**
102057
- * The height of the thumbnail.
102058
- *
102059
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-WebMap.html#updateFrom)
102060
- */
102061
- height: number;
102062
- }
102063
-
102064
103537
  /**
102065
103538
  * The widgets object contains widgets that are exposed to the user.
102066
103539
  *
@@ -110670,19 +112143,23 @@ declare namespace __esri {
110670
112143
  */
110671
112144
  layerListToggleLayersButton?: boolean;
110672
112145
  /**
110673
- * Indicates whether to display the grid snapping toggle.
112146
+ * _Since 4.30_.
110674
112147
  *
110675
112148
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#VisibleElements)
110676
112149
  */
110677
- gridSnappingToggle?: boolean;
112150
+ gridEnabledToggle?: boolean;
110678
112151
  /**
110679
- * Indicates whether to display the grid controls widget embedded in snapping controls.
112152
+ * _Since 4.30_.
110680
112153
  *
110681
112154
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#VisibleElements)
110682
112155
  */
110683
112156
  gridControls?: boolean;
110684
-
110685
- gridControlsElements: VisibleElementsSnappingControlsElementsGridControlsElements;
112157
+ /**
112158
+ * _Since 4.30_.
112159
+ *
112160
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Editor.html#VisibleElements)
112161
+ */
112162
+ gridControlsElements?: VisibleElementsSnappingControlsElementsGridControlsElements;
110686
112163
  }
110687
112164
 
110688
112165
  export interface VisibleElementsSnappingControlsElementsGridControlsElements {
@@ -113398,6 +114875,12 @@ declare namespace __esri {
113398
114875
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureCount)
113399
114876
  */
113400
114877
  readonly featureCount: number;
114878
+ /**
114879
+ * The title to display on the widget while viewing the feature menu.
114880
+ *
114881
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
114882
+ */
114883
+ featureMenuTitle: string;
113401
114884
  /**
113402
114885
  * An array of features.
113403
114886
  *
@@ -113627,6 +115110,12 @@ declare namespace __esri {
113627
115110
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#defaultPopupTemplateEnabled)
113628
115111
  */
113629
115112
  defaultPopupTemplateEnabled?: boolean;
115113
+ /**
115114
+ * The title to display on the widget while viewing the feature menu.
115115
+ *
115116
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features-FeaturesViewModel.html#featureMenuTitle)
115117
+ */
115118
+ featureMenuTitle?: string;
113630
115119
  /**
113631
115120
  * An array of features.
113632
115121
  *
@@ -113835,6 +115324,12 @@ declare namespace __esri {
113835
115324
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#open)
113836
115325
  */
113837
115326
  featureMenuOpen?: boolean;
115327
+ /**
115328
+ * Sets the title to display on the widget while viewing the feature menu.
115329
+ *
115330
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Features.html#open)
115331
+ */
115332
+ featureMenuTitle?: string;
113838
115333
  /**
113839
115334
  * When `true`, indicates the widget should fetch the content of this feature and display it.
113840
115335
  *
@@ -113977,7 +115472,7 @@ declare namespace __esri {
113977
115472
  */
113978
115473
  readonly activeSortOrders: ColumnSortOrder[];
113979
115474
  /**
113980
- * Indicates the table is displaying all related tables in "show all" mode.
115475
+ * Indicates the table is displaying all related tables in `show all` mode.
113981
115476
  *
113982
115477
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#allRelatedTablesVisible)
113983
115478
  */
@@ -113990,6 +115485,12 @@ declare namespace __esri {
113990
115485
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attachmentsEnabled)
113991
115486
  */
113992
115487
  attachmentsEnabled: boolean;
115488
+ /**
115489
+ * Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
115490
+ *
115491
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attributeTableTemplate)
115492
+ */
115493
+ attributeTableTemplate: AttributeTableTemplate;
113993
115494
  /**
113994
115495
  * Indicates whether the table should automatically refresh when the underlying data changes.
113995
115496
  *
@@ -114081,19 +115582,19 @@ declare namespace __esri {
114081
115582
  */
114082
115583
  highlightIds: Collection<number | string>;
114083
115584
  /**
114084
- * User provided value for the total number of features available from the data source.
115585
+ * The user-provided number of total features accessed from the data source.
114085
115586
  *
114086
115587
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#initialSize)
114087
115588
  */
114088
115589
  initialSize: number;
114089
115590
  /**
114090
- * Indicates if the table is querying or syncing data and is useful for determining when the table is busy.
115591
+ * Indicates if the table is querying or syncing data.
114091
115592
  *
114092
115593
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#isQueryingOrSyncing)
114093
115594
  */
114094
115595
  readonly isQueryingOrSyncing: boolean;
114095
115596
  /**
114096
- * A read-only property which indicates if the table is syncing attachment edits.
115597
+ * Indicates if the table is syncing attachment edits.
114097
115598
  *
114098
115599
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#isSyncingAttachments)
114099
115600
  */
@@ -114113,7 +115614,7 @@ declare namespace __esri {
114113
115614
  | SceneLayer
114114
115615
  | WFSLayer;
114115
115616
  /**
114116
- * Group of layers displayed in the [dropdown component](https://developers.arcgis.com/calcite-design-system/components/dropdown/) in the table's header, which allows changing what layer is currently displayed in the table.
115617
+ * An array of layers listed within the [dropdown component](https://developers.arcgis.com/calcite-design-system/components/dropdown/) of the table's header.
114117
115618
  *
114118
115619
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#layers)
114119
115620
  */
@@ -114134,7 +115635,7 @@ declare namespace __esri {
114134
115635
  */
114135
115636
  readonly layerView: LayerView;
114136
115637
  /**
114137
- * This property is useful when working with layers that contain a large number of features as it provides the ability to limit the displayed total feature count.
115638
+ * This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
114138
115639
  *
114139
115640
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#maxSize)
114140
115641
  */
@@ -114174,13 +115675,13 @@ declare namespace __esri {
114174
115675
  */
114175
115676
  outFields: string[];
114176
115677
  /**
114177
- * Number of pages of features to be displayed in the table, based on the total number of features and configured page size.
115678
+ * Number of pages of features to be displayed in the table, based on the total [number of features](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#size) and configured [pageSize](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageSize).
114178
115679
  *
114179
115680
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageCount)
114180
115681
  */
114181
115682
  readonly pageCount: number;
114182
115683
  /**
114183
- * Represents the index of the page of feature currently being displayed.
115684
+ * Represents the index of the page of the feature currently being displayed.
114184
115685
  *
114185
115686
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageIndex)
114186
115687
  */
@@ -114210,13 +115711,13 @@ declare namespace __esri {
114210
115711
  */
114211
115712
  relatedRecordsEnabled: boolean;
114212
115713
  /**
114213
- * Reference to a nested table widget instance representing a relationship with another table.
115714
+ * A nested table instance which represents a relationship to another table.
114214
115715
  *
114215
115716
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTable)
114216
115717
  */
114217
115718
  relatedTable: FeatureTable;
114218
115719
  /**
114219
- * Reference to a Collection of nested table widget instances, typically used to represent relationships between each other.
115720
+ * A collection of nested table instances.
114220
115721
  *
114221
115722
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTables)
114222
115723
  */
@@ -114238,7 +115739,7 @@ declare namespace __esri {
114238
115739
  */
114239
115740
  returnMEnabled: boolean;
114240
115741
  /**
114241
- * Indicates whether geometries fetched for the corresponding features contain Z values, if supported.
115742
+ * Indicates whether the fetched features' geometries contain Z values.
114242
115743
  *
114243
115744
  * @default false
114244
115745
  *
@@ -114246,7 +115747,7 @@ declare namespace __esri {
114246
115747
  */
114247
115748
  returnZEnabled: boolean;
114248
115749
  /**
114249
- * This property accepts and returns a collection of feature object IDs and is used to access and control which rows display a darker, ie.
115750
+ * This property accepts and returns a collection of feature object IDs.
114250
115751
  *
114251
115752
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#rowHighlightIds)
114252
115753
  */
@@ -114268,13 +115769,13 @@ declare namespace __esri {
114268
115769
  */
114269
115770
  readonly state: "disabled" | "loading" | "loaded" | "ready" | "error";
114270
115771
  /**
114271
- * Reference to top-level controller table, if this table is a related table, nested within and controlled by another table widget.
115772
+ * A reference to top-level controller table.
114272
115773
  *
114273
115774
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableController)
114274
115775
  */
114275
115776
  tableController: FeatureTable;
114276
115777
  /**
114277
- * Reference to a table widget instance that this table is directly related to.
115778
+ * A reference to the instance of a table widget that is directly associated with this table.
114278
115779
  *
114279
115780
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableParent)
114280
115781
  */
@@ -114343,7 +115844,7 @@ declare namespace __esri {
114343
115844
  */
114344
115845
  exportSelectionToCSV(includeGeometry?: boolean): Promise<void>;
114345
115846
  /**
114346
- * Filters the table by the current selection.
115847
+ * Filters the table using the current row selection and displays only the selected table rows.
114347
115848
  *
114348
115849
  * @deprecated since version 4.30. Use [`filterBySelectionEnabled`](#filterBySelectionEnabled) or [`objectIds`](#objectIds) instead.
114349
115850
  *
@@ -114387,7 +115888,7 @@ declare namespace __esri {
114387
115888
  */
114388
115889
  refresh(): Promise<void>;
114389
115890
  /**
114390
- * Instructs the table to re-render cell content.
115891
+ * Re-renders the cell's content.
114391
115892
  *
114392
115893
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#refreshCellContent)
114393
115894
  */
@@ -114411,7 +115912,7 @@ declare namespace __esri {
114411
115912
  */
114412
115913
  scrollToIndex(index: number): void;
114413
115914
  /**
114414
- * Scrolls the table to a row based on a specified object id.
115915
+ * Scrolls the table to a row based on a specified object ID.
114415
115916
  *
114416
115917
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#scrollToRow)
114417
115918
  */
@@ -114455,6 +115956,8 @@ declare namespace __esri {
114455
115956
 
114456
115957
  on(name: "cell-click", eventHandler: FeatureTableCellClickEventHandler): IHandle;
114457
115958
 
115959
+ on(name: "cell-dblclick", eventHandler: FeatureTableCellDblclickEventHandler): IHandle;
115960
+
114458
115961
  on(name: "cell-pointerout", eventHandler: FeatureTableCellPointeroutEventHandler): IHandle;
114459
115962
 
114460
115963
  on(name: "cell-pointerover", eventHandler: FeatureTableCellPointeroverEventHandler): IHandle;
@@ -114479,6 +115982,12 @@ declare namespace __esri {
114479
115982
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attachmentsEnabled)
114480
115983
  */
114481
115984
  attachmentsEnabled?: boolean;
115985
+ /**
115986
+ * Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
115987
+ *
115988
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#attributeTableTemplate)
115989
+ */
115990
+ attributeTableTemplate?: AttributeTableTemplateProperties;
114482
115991
  /**
114483
115992
  * Indicates whether the table should automatically refresh when the underlying data changes.
114484
115993
  *
@@ -114556,7 +116065,7 @@ declare namespace __esri {
114556
116065
  */
114557
116066
  highlightIds?: CollectionProperties<number | string>;
114558
116067
  /**
114559
- * User provided value for the total number of features available from the data source.
116068
+ * The user-provided number of total features accessed from the data source.
114560
116069
  *
114561
116070
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#initialSize)
114562
116071
  */
@@ -114576,7 +116085,7 @@ declare namespace __esri {
114576
116085
  | (SceneLayerProperties & { type: "scene" })
114577
116086
  | (WFSLayerProperties & { type: "wfs" });
114578
116087
  /**
114579
- * This property is useful when working with layers that contain a large number of features as it provides the ability to limit the displayed total feature count.
116088
+ * This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
114580
116089
  *
114581
116090
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#maxSize)
114582
116091
  */
@@ -114616,7 +116125,7 @@ declare namespace __esri {
114616
116125
  */
114617
116126
  outFields?: string[];
114618
116127
  /**
114619
- * Represents the index of the page of feature currently being displayed.
116128
+ * Represents the index of the page of the feature currently being displayed.
114620
116129
  *
114621
116130
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageIndex)
114622
116131
  */
@@ -114646,13 +116155,13 @@ declare namespace __esri {
114646
116155
  */
114647
116156
  relatedRecordsEnabled?: boolean;
114648
116157
  /**
114649
- * Reference to a nested table widget instance representing a relationship with another table.
116158
+ * A nested table instance which represents a relationship to another table.
114650
116159
  *
114651
116160
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTable)
114652
116161
  */
114653
116162
  relatedTable?: FeatureTableProperties;
114654
116163
  /**
114655
- * Reference to a Collection of nested table widget instances, typically used to represent relationships between each other.
116164
+ * A collection of nested table instances.
114656
116165
  *
114657
116166
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#relatedTables)
114658
116167
  */
@@ -114674,7 +116183,7 @@ declare namespace __esri {
114674
116183
  */
114675
116184
  returnMEnabled?: boolean;
114676
116185
  /**
114677
- * Indicates whether geometries fetched for the corresponding features contain Z values, if supported.
116186
+ * Indicates whether the fetched features' geometries contain Z values.
114678
116187
  *
114679
116188
  * @default false
114680
116189
  *
@@ -114682,19 +116191,19 @@ declare namespace __esri {
114682
116191
  */
114683
116192
  returnZEnabled?: boolean;
114684
116193
  /**
114685
- * This property accepts and returns a collection of feature object IDs and is used to access and control which rows display a darker, ie.
116194
+ * This property accepts and returns a collection of feature object IDs.
114686
116195
  *
114687
116196
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#rowHighlightIds)
114688
116197
  */
114689
116198
  rowHighlightIds?: CollectionProperties<number | string>;
114690
116199
  /**
114691
- * Reference to top-level controller table, if this table is a related table, nested within and controlled by another table widget.
116200
+ * A reference to top-level controller table.
114692
116201
  *
114693
116202
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableController)
114694
116203
  */
114695
116204
  tableController?: FeatureTableProperties;
114696
116205
  /**
114697
- * Reference to a table widget instance that this table is directly related to.
116206
+ * A reference to the instance of a table widget that is directly associated with this table.
114698
116207
  *
114699
116208
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#tableParent)
114700
116209
  */
@@ -114975,7 +116484,7 @@ declare namespace __esri {
114975
116484
  */
114976
116485
  readonly activeSortOrders: ColumnSortOrder[];
114977
116486
  /**
114978
- * Indicates the table is displaying all related tables in "show all" mode.
116487
+ * Indicates the table is displaying all related tables in `show all` mode.
114979
116488
  *
114980
116489
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#allRelatedTablesVisible)
114981
116490
  */
@@ -114988,6 +116497,12 @@ declare namespace __esri {
114988
116497
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attachmentsEnabled)
114989
116498
  */
114990
116499
  attachmentsEnabled: boolean;
116500
+ /**
116501
+ * Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
116502
+ *
116503
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attributeTableTemplate)
116504
+ */
116505
+ attributeTableTemplate: AttributeTableTemplate;
114991
116506
  /**
114992
116507
  * Indicates whether the table should automatically refresh when the underlying data changes.
114993
116508
  *
@@ -115057,19 +116572,19 @@ declare namespace __esri {
115057
116572
  */
115058
116573
  highlightIds: Collection<number | string>;
115059
116574
  /**
115060
- * User provided value for the total number of features available from the data source.
116575
+ * The user-provided number of total features accessed from the data source.
115061
116576
  *
115062
116577
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#initialSize)
115063
116578
  */
115064
116579
  initialSize: number;
115065
116580
  /**
115066
- * Indicates if the table is querying or syncing data and is useful for determining when the table is busy.
116581
+ * Indicates if the table is querying or syncing data.
115067
116582
  *
115068
116583
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#isQueryingOrSyncing)
115069
116584
  */
115070
116585
  readonly isQueryingOrSyncing: boolean;
115071
116586
  /**
115072
- * A read-only property which indicates if the table is syncing attachment edits.
116587
+ * Indicates if the table is syncing attachment edits.
115073
116588
  *
115074
116589
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#isSyncingAttachments)
115075
116590
  */
@@ -115095,7 +116610,7 @@ declare namespace __esri {
115095
116610
  */
115096
116611
  readonly layerView: LayerView;
115097
116612
  /**
115098
- * This property is useful when working with layers that contain a large number of features as it provides the ability to limit the displayed total feature count.
116613
+ * This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
115099
116614
  *
115100
116615
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#maxSize)
115101
116616
  */
@@ -115123,19 +116638,19 @@ declare namespace __esri {
115123
116638
  */
115124
116639
  objectIds: Collection<number | string>;
115125
116640
  /**
115126
- * Controls what field attribute data is requested by the table's store.
116641
+ * An array of field names from the table's data source to include when the table requests data.
115127
116642
  *
115128
116643
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#outFields)
115129
116644
  */
115130
116645
  outFields: string[];
115131
116646
  /**
115132
- * Number of pages of features to be displayed in the table, based on the total number of features and configured page size.
116647
+ * Number of pages of features to be displayed in the table, based on the total [number of features](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#size) and configured [pageSize](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageSize).
115133
116648
  *
115134
116649
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageCount)
115135
116650
  */
115136
116651
  readonly pageCount: number;
115137
116652
  /**
115138
- * Represents the index of the page of feature currently being displayed.
116653
+ * Represents the index of the page of the feature currently being displayed.
115139
116654
  *
115140
116655
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageIndex)
115141
116656
  */
@@ -115157,7 +116672,7 @@ declare namespace __esri {
115157
116672
  */
115158
116673
  paginationEnabled: boolean;
115159
116674
  /**
115160
- * Indicates whether to display any related records associated with features within the table.
116675
+ * Indicates whether to display any related records associated with rows within the table.
115161
116676
  *
115162
116677
  * @default false
115163
116678
  *
@@ -115165,19 +116680,19 @@ declare namespace __esri {
115165
116680
  */
115166
116681
  relatedRecordsEnabled: boolean;
115167
116682
  /**
115168
- * Reference to a nested table widget instance representing a relationship with another table.
116683
+ * A nested table instance which represents a relationship to another table.
115169
116684
  *
115170
116685
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTable)
115171
116686
  */
115172
116687
  relatedTable: FeatureTable;
115173
116688
  /**
115174
- * Reference to a Collection of nested table widget instances, typically used to represent relationships between each other.
116689
+ * A collection of nested table instances.
115175
116690
  *
115176
116691
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTables)
115177
116692
  */
115178
116693
  relatedTables: Collection<FeatureTable>;
115179
116694
  /**
115180
- * Reference to relationships that exist on 'layer', if relationships are supported.
116695
+ * An array of relationships that exist on the [layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#layer).
115181
116696
  *
115182
116697
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relationships)
115183
116698
  */
@@ -115199,7 +116714,7 @@ declare namespace __esri {
115199
116714
  */
115200
116715
  returnMEnabled: boolean;
115201
116716
  /**
115202
- * Indicates whether geometries fetched for the corresponding features contain Z values, if supported.
116717
+ * Indicates whether the fetched features' geometries contain Z values.
115203
116718
  *
115204
116719
  * @default false
115205
116720
  *
@@ -115207,7 +116722,7 @@ declare namespace __esri {
115207
116722
  */
115208
116723
  returnZEnabled: boolean;
115209
116724
  /**
115210
- * A collection of feature object IDs.
116725
+ * This property accepts and returns a collection of feature object IDs.
115211
116726
  *
115212
116727
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#rowHighlightIds)
115213
116728
  */
@@ -115390,7 +116905,7 @@ declare namespace __esri {
115390
116905
  */
115391
116906
  scrollToIndex(index: number): void;
115392
116907
  /**
115393
- * Scrolls the table to a row based on a specified object id.
116908
+ * Scrolls the table to a row based on a specified object ID.
115394
116909
  *
115395
116910
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#scrollToRow)
115396
116911
  */
@@ -115414,15 +116929,17 @@ declare namespace __esri {
115414
116929
  */
115415
116930
  zoomToSelection(): void;
115416
116931
 
115417
- on(name: "cell-dblclick", eventHandler: FeatureTableViewModelCellDblclickEventHandler): IHandle;
115418
-
115419
116932
  on(name: "cell-click", eventHandler: FeatureTableViewModelCellClickEventHandler): IHandle;
115420
116933
 
116934
+ on(name: "cell-dblclick", eventHandler: FeatureTableViewModelCellDblclickEventHandler): IHandle;
116935
+
115421
116936
  on(name: "cell-pointerout", eventHandler: FeatureTableViewModelCellPointeroutEventHandler): IHandle;
115422
116937
 
115423
116938
  on(name: "cell-pointerover", eventHandler: FeatureTableViewModelCellPointeroverEventHandler): IHandle;
115424
116939
 
115425
116940
  on(name: "cell-keydown", eventHandler: FeatureTableViewModelCellKeydownEventHandler): IHandle;
116941
+
116942
+ on(name: "column-reorder", eventHandler: FeatureTableViewModelColumnReorderEventHandler): IHandle;
115426
116943
  }
115427
116944
 
115428
116945
  interface FeatureTableViewModelProperties {
@@ -115440,6 +116957,12 @@ declare namespace __esri {
115440
116957
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attachmentsEnabled)
115441
116958
  */
115442
116959
  attachmentsEnabled?: boolean;
116960
+ /**
116961
+ * Use this property to configure how columns display within the table in regard to visibility, column order, and sorting.
116962
+ *
116963
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#attributeTableTemplate)
116964
+ */
116965
+ attributeTableTemplate?: AttributeTableTemplateProperties;
115443
116966
  /**
115444
116967
  * Indicates whether the table should automatically refresh when the underlying data changes.
115445
116968
  *
@@ -115495,7 +117018,7 @@ declare namespace __esri {
115495
117018
  */
115496
117019
  highlightIds?: CollectionProperties<number | string>;
115497
117020
  /**
115498
- * User provided value for the total number of features available from the data source.
117021
+ * The user-provided number of total features accessed from the data source.
115499
117022
  *
115500
117023
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#initialSize)
115501
117024
  */
@@ -115515,7 +117038,7 @@ declare namespace __esri {
115515
117038
  | (SceneLayerProperties & { type: "scene" })
115516
117039
  | (WFSLayerProperties & { type: "wfs" });
115517
117040
  /**
115518
- * This property is useful when working with layers that contain a large number of features as it provides the ability to limit the displayed total feature count.
117041
+ * This property is applicable when working with layers that contain a large number of features, as it provides the ability to limit the displayed total feature count.
115519
117042
  *
115520
117043
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#maxSize)
115521
117044
  */
@@ -115543,13 +117066,13 @@ declare namespace __esri {
115543
117066
  */
115544
117067
  objectIds?: CollectionProperties<number | string>;
115545
117068
  /**
115546
- * Controls what field attribute data is requested by the table's store.
117069
+ * An array of field names from the table's data source to include when the table requests data.
115547
117070
  *
115548
117071
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#outFields)
115549
117072
  */
115550
117073
  outFields?: string[];
115551
117074
  /**
115552
- * Represents the index of the page of feature currently being displayed.
117075
+ * Represents the index of the page of the feature currently being displayed.
115553
117076
  *
115554
117077
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#pageIndex)
115555
117078
  */
@@ -115571,7 +117094,7 @@ declare namespace __esri {
115571
117094
  */
115572
117095
  paginationEnabled?: boolean;
115573
117096
  /**
115574
- * Indicates whether to display any related records associated with features within the table.
117097
+ * Indicates whether to display any related records associated with rows within the table.
115575
117098
  *
115576
117099
  * @default false
115577
117100
  *
@@ -115579,19 +117102,19 @@ declare namespace __esri {
115579
117102
  */
115580
117103
  relatedRecordsEnabled?: boolean;
115581
117104
  /**
115582
- * Reference to a nested table widget instance representing a relationship with another table.
117105
+ * A nested table instance which represents a relationship to another table.
115583
117106
  *
115584
117107
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTable)
115585
117108
  */
115586
117109
  relatedTable?: FeatureTableProperties;
115587
117110
  /**
115588
- * Reference to a Collection of nested table widget instances, typically used to represent relationships between each other.
117111
+ * A collection of nested table instances.
115589
117112
  *
115590
117113
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTables)
115591
117114
  */
115592
117115
  relatedTables?: CollectionProperties<FeatureTableProperties>;
115593
117116
  /**
115594
- * Reference to relationships that exist on 'layer', if relationships are supported.
117117
+ * An array of relationships that exist on the [layer](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#layer).
115595
117118
  *
115596
117119
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relationships)
115597
117120
  */
@@ -115613,7 +117136,7 @@ declare namespace __esri {
115613
117136
  */
115614
117137
  returnMEnabled?: boolean;
115615
117138
  /**
115616
- * Indicates whether geometries fetched for the corresponding features contain Z values, if supported.
117139
+ * Indicates whether the fetched features' geometries contain Z values.
115617
117140
  *
115618
117141
  * @default false
115619
117142
  *
@@ -115621,7 +117144,7 @@ declare namespace __esri {
115621
117144
  */
115622
117145
  returnZEnabled?: boolean;
115623
117146
  /**
115624
- * A collection of feature object IDs.
117147
+ * This property accepts and returns a collection of feature object IDs.
115625
117148
  *
115626
117149
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#rowHighlightIds)
115627
117150
  */
@@ -115697,7 +117220,7 @@ declare namespace __esri {
115697
117220
 
115698
117221
  index: number;
115699
117222
 
115700
- native: MouseEvent;
117223
+ native: MouseEvent | any | any;
115701
117224
 
115702
117225
  objectId: number | string;
115703
117226
 
@@ -115711,7 +117234,7 @@ declare namespace __esri {
115711
117234
 
115712
117235
  index: number;
115713
117236
 
115714
- native: MouseEvent;
117237
+ native: MouseEvent | any | any;
115715
117238
 
115716
117239
  objectId: number | string;
115717
117240
 
@@ -115725,7 +117248,7 @@ declare namespace __esri {
115725
117248
 
115726
117249
  index: number;
115727
117250
 
115728
- native: any;
117251
+ native: MouseEvent | any | any;
115729
117252
 
115730
117253
  objectId: number | string;
115731
117254
 
@@ -115739,7 +117262,7 @@ declare namespace __esri {
115739
117262
 
115740
117263
  index: number;
115741
117264
 
115742
- native: any;
117265
+ native: MouseEvent | any | any;
115743
117266
 
115744
117267
  objectId: number | string;
115745
117268
 
@@ -115753,13 +117276,17 @@ declare namespace __esri {
115753
117276
 
115754
117277
  index: number;
115755
117278
 
115756
- native: any;
117279
+ native: MouseEvent | any | any;
115757
117280
 
115758
117281
  objectId: number | string;
115759
117282
 
115760
117283
  type: "cell-pointerover";
115761
117284
  }
115762
117285
 
117286
+ export interface FeatureTableViewModelColumnReorderEvent {
117287
+ type: "column-reorder";
117288
+ }
117289
+
115763
117290
  /**
115764
117291
  * An array of objects containing a column's name and sort direction.
115765
117292
  *
@@ -116008,7 +117535,7 @@ declare namespace __esri {
116008
117535
  */
116009
117536
  direction: "asc" | "desc";
116010
117537
  /**
116011
- * The sanitized 'description' string, describing the purpose of each column.
117538
+ * The sanitized [description](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#description) string, describing the purpose of each column.
116012
117539
  *
116013
117540
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#effectiveDescription)
116014
117541
  */
@@ -116094,7 +117621,7 @@ declare namespace __esri {
116094
117621
  */
116095
117622
  readonly menuConfig: ColumnTableMenuConfig;
116096
117623
  /**
116097
- * Indicates whether the Column's menu is currently open.
117624
+ * Indicates whether the column's menu is currently open.
116098
117625
  *
116099
117626
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#menuIsOpen)
116100
117627
  */
@@ -116122,7 +117649,7 @@ declare namespace __esri {
116122
117649
  */
116123
117650
  sortable: boolean;
116124
117651
  /**
116125
- * TimeZone of the parent table widget.
117652
+ * The [timeZone](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#timeZone) of the parent table widget.
116126
117653
  *
116127
117654
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#tableTimeZone)
116128
117655
  */
@@ -116206,7 +117733,7 @@ declare namespace __esri {
116206
117733
  */
116207
117734
  direction?: "asc" | "desc";
116208
117735
  /**
116209
- * The sanitized 'description' string, describing the purpose of each column.
117736
+ * The sanitized [description](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#description) string, describing the purpose of each column.
116210
117737
  *
116211
117738
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#effectiveDescription)
116212
117739
  */
@@ -116282,7 +117809,7 @@ declare namespace __esri {
116282
117809
  */
116283
117810
  sortable?: boolean;
116284
117811
  /**
116285
- * TimeZone of the parent table widget.
117812
+ * The [timeZone](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#timeZone) of the parent table widget.
116286
117813
  *
116287
117814
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#tableTimeZone)
116288
117815
  */
@@ -116360,6 +117887,26 @@ declare namespace __esri {
116360
117887
 
116361
117888
  export type FormatFunction = (params: any) => string | number | HTMLElement;
116362
117889
 
117890
+ /**
117891
+ * The related records for the associated feature used in the [Columns's](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#formatFunction) and [FieldColumn's](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FieldColumn.html#FieldValueFormatFunction) `formatFunction`.
117892
+ *
117893
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#RelatedRecordInfo)
117894
+ */
117895
+ export interface RelatedRecordInfo {
117896
+ /**
117897
+ * The ID of the relationship defined in the data source.
117898
+ *
117899
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#RelatedRecordInfo)
117900
+ */
117901
+ relationshipId?: string;
117902
+ /**
117903
+ * The number of related records associated with the feature.
117904
+ *
117905
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-Grid-Column.html#RelatedRecordInfo)
117906
+ */
117907
+ count?: number;
117908
+ }
117909
+
116363
117910
  export interface GroupColumn extends Accessor, Column {}
116364
117911
 
116365
117912
  export class GroupColumn {
@@ -116743,7 +118290,7 @@ declare namespace __esri {
116743
118290
  */
116744
118291
  required: boolean;
116745
118292
  /**
116746
- * The 'type' of column that the template represents.
118293
+ * The type of column that the template represents.
116747
118294
  *
116748
118295
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplate.html#type)
116749
118296
  */
@@ -116903,13 +118450,13 @@ declare namespace __esri {
116903
118450
  */
116904
118451
  textWrap: boolean;
116905
118452
  /**
116906
- * TimeZone of the specific column.
118453
+ * The time zone of the specific column.
116907
118454
  *
116908
118455
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#timeZone)
116909
118456
  */
116910
118457
  timeZone: string;
116911
118458
  /**
116912
- * The 'type' of column that the template represents.
118459
+ * The type of column that the template represents.
116913
118460
  *
116914
118461
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#type)
116915
118462
  */
@@ -117058,7 +118605,7 @@ declare namespace __esri {
117058
118605
  */
117059
118606
  textWrap?: boolean;
117060
118607
  /**
117061
- * TimeZone of the specific column.
118608
+ * The time zone of the specific column.
117062
118609
  *
117063
118610
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#timeZone)
117064
118611
  */
@@ -117117,7 +118664,7 @@ declare namespace __esri {
117117
118664
  */
117118
118665
  required: boolean;
117119
118666
  /**
117120
- * The 'type' of column that the template represents.
118667
+ * The type of column that the template represents.
117121
118668
  *
117122
118669
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-FieldColumnTemplate.html#type)
117123
118670
  */
@@ -117173,7 +118720,7 @@ declare namespace __esri {
117173
118720
  */
117174
118721
  columnTemplates: (FieldColumnTemplate | GroupColumnTemplate)[];
117175
118722
  /**
117176
- * The 'type' of column that the template represents.
118723
+ * The type of column that the template represents.
117177
118724
  *
117178
118725
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-GroupColumnTemplate.html#type)
117179
118726
  */
@@ -117242,13 +118789,27 @@ declare namespace __esri {
117242
118789
 
117243
118790
  index: number;
117244
118791
 
117245
- native: MouseEvent;
118792
+ native: MouseEvent | any | any;
117246
118793
 
117247
118794
  objectId: number | string;
117248
118795
 
117249
118796
  type: "cell-click";
117250
118797
  }
117251
118798
 
118799
+ export interface FeatureTableCellDblclickEvent {
118800
+ feature: Graphic;
118801
+
118802
+ fieldName: string;
118803
+
118804
+ index: number;
118805
+
118806
+ native: MouseEvent | any | any;
118807
+
118808
+ objectId: number | string;
118809
+
118810
+ type: "cell-dblclick";
118811
+ }
118812
+
117252
118813
  export interface FeatureTableCellKeydownEvent {
117253
118814
  feature: Graphic;
117254
118815
 
@@ -117256,7 +118817,7 @@ declare namespace __esri {
117256
118817
 
117257
118818
  index: number;
117258
118819
 
117259
- native: any;
118820
+ native: MouseEvent | any | any;
117260
118821
 
117261
118822
  objectId: number | string;
117262
118823
 
@@ -117270,7 +118831,7 @@ declare namespace __esri {
117270
118831
 
117271
118832
  index: number;
117272
118833
 
117273
- native: any;
118834
+ native: MouseEvent | any | any;
117274
118835
 
117275
118836
  objectId: number | string;
117276
118837
 
@@ -117284,7 +118845,7 @@ declare namespace __esri {
117284
118845
 
117285
118846
  index: number;
117286
118847
 
117287
- native: any;
118848
+ native: MouseEvent | any | any;
117288
118849
 
117289
118850
  objectId: number | string;
117290
118851
 
@@ -117403,7 +118964,7 @@ declare namespace __esri {
117403
118964
  */
117404
118965
  header?: boolean;
117405
118966
  /**
117406
- * Indicates whether to display the feature table's layer switch drop down menu.
118967
+ * _(Since 4.30)_ Indicates whether to display the feature table's layer switch drop down menu.
117407
118968
  *
117408
118969
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#VisibleElements)
117409
118970
  */
@@ -122422,15 +123983,6 @@ declare namespace __esri {
122422
123983
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapsed)
122423
123984
  */
122424
123985
  readonly collapsed: boolean;
122425
- /**
122426
- * Indicates whether to enable collapse functionality for the popup.
122427
- *
122428
- * @default true
122429
- * @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
122430
- *
122431
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapseEnabled)
122432
- */
122433
- collapseEnabled: boolean;
122434
123986
  /**
122435
123987
  * The content of the popup.
122436
123988
  *
@@ -122532,14 +124084,6 @@ declare namespace __esri {
122532
124084
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#selectedFeatureWidget)
122533
124085
  */
122534
124086
  readonly selectedFeatureWidget: Feature;
122535
- /**
122536
- * Indicates whether to display a spinner at the popup location prior to its display when it has pending promises.
122537
- *
122538
- * @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
122539
- *
122540
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#spinnerEnabled)
122541
- */
122542
- spinnerEnabled: boolean;
122543
124087
  /**
122544
124088
  * The title of the popup.
122545
124089
  *
@@ -122657,15 +124201,6 @@ declare namespace __esri {
122657
124201
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#autoCloseEnabled)
122658
124202
  */
122659
124203
  autoCloseEnabled?: boolean;
122660
- /**
122661
- * Indicates whether to enable collapse functionality for the popup.
122662
- *
122663
- * @default true
122664
- * @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.collapseButton} instead.
122665
- *
122666
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#collapseEnabled)
122667
- */
122668
- collapseEnabled?: boolean;
122669
124204
  /**
122670
124205
  * The content of the popup.
122671
124206
  *
@@ -122734,14 +124269,6 @@ declare namespace __esri {
122734
124269
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#selectedFeatureIndex)
122735
124270
  */
122736
124271
  selectedFeatureIndex?: number;
122737
- /**
122738
- * Indicates whether to display a spinner at the popup location prior to its display when it has pending promises.
122739
- *
122740
- * @deprecated since version 4.29. Use {@link module:esri/widgets/Popup~VisibleElements PopupVisibleElements.spinner} instead.
122741
- *
122742
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Popup.html#spinnerEnabled)
122743
- */
122744
- spinnerEnabled?: boolean;
122745
124272
  /**
122746
124273
  * The title of the popup.
122747
124274
  *
@@ -123384,6 +124911,12 @@ declare namespace __esri {
123384
124911
  */
123385
124912
  view: MapView;
123386
124913
 
124914
+ /**
124915
+ * Returns a CustomTemplate with the specified `id`.
124916
+ *
124917
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Print-PrintViewModel.html#getLayoutTemplateById)
124918
+ */
124919
+ getLayoutTemplateById(id: string): CustomTemplate;
123387
124920
  /**
123388
124921
  * This method should be called to load the view model's printing resources.
123389
124922
  *
@@ -128357,19 +129890,23 @@ declare namespace __esri {
128357
129890
  */
128358
129891
  layerListToggleLayersButton?: boolean;
128359
129892
  /**
128360
- * Indicates whether to display the grid snapping toggle.
129893
+ * _Since 4.30_.
128361
129894
  *
128362
129895
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html#VisibleElements)
128363
129896
  */
128364
- gridSnappingToggle?: boolean;
129897
+ gridEnabledToggle?: boolean;
128365
129898
  /**
128366
- * Indicates whether to display the grid controls widget embedded in snapping controls.
129899
+ * _Since 4.30_.
128367
129900
  *
128368
129901
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html#VisibleElements)
128369
129902
  */
128370
129903
  gridControls?: boolean;
128371
-
128372
- gridControlsElements: SketchVisibleElementsSnappingControlsElementsGridControlsElements;
129904
+ /**
129905
+ * _Since 4.30_.
129906
+ *
129907
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html#VisibleElements)
129908
+ */
129909
+ gridControlsElements?: SketchVisibleElementsSnappingControlsElementsGridControlsElements;
128373
129910
  }
128374
129911
 
128375
129912
  export interface SketchVisibleElementsSnappingControlsElementsGridControlsElements {
@@ -131190,7 +132727,7 @@ declare namespace __esri {
131190
132727
 
131191
132728
  export class GridControls extends Widget {
131192
132729
  /**
131193
- * GridControls provides a UI for configuring a 2D grid.
132730
+ * The `GridControls` can be configured using the [visibleElements](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#visibleElements) below.
131194
132731
  *
131195
132732
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html)
131196
132733
  */
@@ -131280,7 +132817,7 @@ declare namespace __esri {
131280
132817
 
131281
132818
  export class GridControlsViewModel extends Accessor {
131282
132819
  /**
131283
- * Provides the logic for the [GridControls](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html) widget and map component.
132820
+ * Provides the logic for the [GridControls](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html).
131284
132821
  *
131285
132822
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html)
131286
132823
  */
@@ -131292,13 +132829,19 @@ declare namespace __esri {
131292
132829
  *
131293
132830
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#displayEnabled)
131294
132831
  */
131295
- displayEnabled: boolean;
132832
+ readonly displayEnabled: boolean;
131296
132833
  /**
131297
132834
  * Returns `true` if the grid is set to scale dynamically.
131298
132835
  *
131299
132836
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#dynamicScaling)
131300
132837
  */
131301
132838
  dynamicScaling: boolean;
132839
+ /**
132840
+ * Returns the effective spacing of grid lines after applying the [dynamicScaling](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#dynamicScaling) setting at the current view scale.
132841
+ *
132842
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#effectiveSpacingAfterDynamicScaling)
132843
+ */
132844
+ readonly effectiveSpacingAfterDynamicScaling: number;
131302
132845
  /**
131303
132846
  * Sets the color used for grid display.
131304
132847
  *
@@ -131310,7 +132853,13 @@ declare namespace __esri {
131310
132853
  *
131311
132854
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridControlsEnabled)
131312
132855
  */
131313
- gridControlsEnabled: boolean;
132856
+ readonly gridControlsEnabled: boolean;
132857
+ /**
132858
+ * True if the grid is currently not displayed (and therefore also not a valid snap target), because [dynamicScaling](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#dynamicScaling) is off and the grid cells are too small to render at the current scale.
132859
+ *
132860
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridOutOfScale)
132861
+ */
132862
+ readonly gridOutOfScale: boolean;
131314
132863
  /**
131315
132864
  * Sets the interactive placement state, either starting or ending a draw operation that implicitly adjusts the grid.
131316
132865
  *
@@ -131325,6 +132874,12 @@ declare namespace __esri {
131325
132874
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#majorLineInterval)
131326
132875
  */
131327
132876
  majorLineInterval: number;
132877
+ /**
132878
+ * True if the spacing input should be shown for the current view.
132879
+ *
132880
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#numericSpacingInputShouldBeVisible)
132881
+ */
132882
+ readonly numericSpacingInputShouldBeVisible: boolean;
131328
132883
  /**
131329
132884
  * Determines the behavior of the grid when the map's viewpoint is rotated.
131330
132885
  *
@@ -131383,12 +132938,6 @@ declare namespace __esri {
131383
132938
  }
131384
132939
 
131385
132940
  interface GridControlsViewModelProperties {
131386
- /**
131387
- * Returns `true` if the grid is enabled for display.
131388
- *
131389
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#displayEnabled)
131390
- */
131391
- displayEnabled?: boolean;
131392
132941
  /**
131393
132942
  * Returns `true` if the grid is set to scale dynamically.
131394
132943
  *
@@ -131401,12 +132950,6 @@ declare namespace __esri {
131401
132950
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridColor)
131402
132951
  */
131403
132952
  gridColor?: Color;
131404
- /**
131405
- * Returns `true` if the grid is in a valid state for manually setting grid properties or starting an interactive placement.
131406
- *
131407
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls-GridControlsViewModel.html#gridControlsEnabled)
131408
- */
131409
- gridControlsEnabled?: boolean;
131410
132953
  /**
131411
132954
  * Sets the interactive placement state, either starting or ending a draw operation that implicitly adjusts the grid.
131412
132955
  *
@@ -131489,7 +133032,7 @@ declare namespace __esri {
131489
133032
  */
131490
133033
  export interface GridControlsVisibleElements {
131491
133034
  /**
131492
- * Description.
133035
+ * Indicates whether to display the buttons to change the color of the grid.
131493
133036
  *
131494
133037
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
131495
133038
  */
@@ -131507,25 +133050,25 @@ declare namespace __esri {
131507
133050
  */
131508
133051
  gridEnabledToggle?: boolean;
131509
133052
  /**
131510
- * Indicates whether to display the `gridNumericInputs`.
133053
+ * Indicates whether to display the `numericInputs`.
131511
133054
  *
131512
133055
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
131513
133056
  */
131514
- gridNumericInputs?: boolean;
133057
+ numericInputs?: boolean;
131515
133058
  /**
131516
- * Indicates whether to display the `lineIntervalInput`.
133059
+ * Indicates whether to display the `gridSnapEnabledToggle`.
131517
133060
  *
131518
133061
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
131519
133062
  */
131520
133063
  gridSnapEnabledToggle?: boolean;
131521
133064
  /**
131522
- * Indicates whether to display the `gridNumericInputs`.
133065
+ * Indicates whether to display the `lineIntervalInput`.
131523
133066
  *
131524
133067
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
131525
133068
  */
131526
133069
  lineIntervalInput?: boolean;
131527
133070
  /**
131528
- * * Indicates whether to display a notice when the grid is not visible because it is out of scale and dynamic scaling is turned off.
133071
+ * Indicates whether to display a notice when the grid is not visible because it is out of scale and dynamic scaling is turned off.
131529
133072
  *
131530
133073
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html#VisibleElements)
131531
133074
  */
@@ -131670,6 +133213,24 @@ declare namespace __esri {
131670
133213
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
131671
133214
  */
131672
133215
  featureEnabledToggle?: boolean;
133216
+ /**
133217
+ * _Since 4.30_.
133218
+ *
133219
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
133220
+ */
133221
+ gridControls?: boolean;
133222
+ /**
133223
+ * _Since 4.30_.
133224
+ *
133225
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
133226
+ */
133227
+ gridControlsElements?: GridControlsVisibleElements;
133228
+ /**
133229
+ * _Since 4.30_.
133230
+ *
133231
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-SnappingControls.html#VisibleElements)
133232
+ */
133233
+ gridEnabledToggle?: boolean;
131673
133234
  /**
131674
133235
  * Indicates whether to display the header.
131675
133236
  *
@@ -135097,6 +136658,74 @@ declare namespace __esri {
135097
136658
  graphic: Graphic;
135098
136659
  }
135099
136660
 
136661
+ export class UtilityNetworkTraceAnalysisViewModel {
136662
+ /**
136663
+ * Displays execution errors.
136664
+ *
136665
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#executionError)
136666
+ */
136667
+ readonly executionError: "trace-error";
136668
+ /**
136669
+ * Displays an error if loading fails.
136670
+ *
136671
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#loadError)
136672
+ */
136673
+ readonly loadError: "no-utility-network" | "no-view" | "sceneView-not-supported";
136674
+ /**
136675
+ * The viewModel's state.
136676
+ *
136677
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#state)
136678
+ */
136679
+ readonly state: "disabled" | "executing" | "failed" | "loading" | "ready";
136680
+ /**
136681
+ * Determines the utility network to use.
136682
+ *
136683
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#utilityNetwork)
136684
+ */
136685
+ utilityNetwork: UtilityNetwork;
136686
+ /**
136687
+ * The view from which the widget will operate.
136688
+ *
136689
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#view)
136690
+ */
136691
+ view: MapView;
136692
+
136693
+ /**
136694
+ * Method used to execute a trace using a named trace configuration.
136695
+ *
136696
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#executeNamedTraceConfiguration)
136697
+ */
136698
+ executeNamedTraceConfiguration(parameters: NamedTraceConfigurationParameters): Promise<TraceResult>;
136699
+
136700
+ constructor(properties?: any);
136701
+ }
136702
+
136703
+ /**
136704
+ * Object used to execute a trace using a named trace configuration.
136705
+ *
136706
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
136707
+ */
136708
+ export interface NamedTraceConfigurationParameters {
136709
+ /**
136710
+ * The globalId of the named trace configuration.
136711
+ *
136712
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
136713
+ */
136714
+ namedTraceConfigurationGlobalId: string;
136715
+ /**
136716
+ * The desired out [SpatialReference](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-SpatialReference.html) of the trace.
136717
+ *
136718
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
136719
+ */
136720
+ outSpatialReference?: SpatialReference;
136721
+ /**
136722
+ * To perform the trace analytic, users can optionally supply a list of locations in forms of globalIds (UUID) and terminals.
136723
+ *
136724
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTraceAnalysis-UtilityNetworkTraceAnalysisViewModel.html#NamedTraceConfigurationParameters)
136725
+ */
136726
+ traceLocations?: TraceLocation[];
136727
+ }
136728
+
135100
136729
  export class UtilityNetworkValidateTopology extends Widget {
135101
136730
  /**
135102
136731
  * The UtilityNetworkValidateTopology widget class, functioning as a part of the ArcGIS Maps SDK for JavaScript, simplifies the process of validating a DirtyArea within a utility network.
@@ -135724,7 +137353,7 @@ declare namespace __esri {
135724
137353
  *
135725
137354
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versionIdentifierLookup)
135726
137355
  */
135727
- versionIdentifierLookup: globalThis.Map<string, VersionManagementServiceVersionIdentifier>;
137356
+ versionIdentifierLookup: globalThis.Map<string, versionManagementVersionManagementServiceVersionIdentifier>;
135728
137357
  /**
135729
137358
  * Contains information about versions contained in version management service such as name, guid, etc.
135730
137359
  *
@@ -135836,7 +137465,7 @@ declare namespace __esri {
135836
137465
  *
135837
137466
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versionIdentifierLookup)
135838
137467
  */
135839
- versionIdentifierLookup?: globalThis.Map<string, VersionManagementServiceVersionIdentifier>;
137468
+ versionIdentifierLookup?: globalThis.Map<string, versionManagementVersionManagementServiceVersionIdentifier>;
135840
137469
  /**
135841
137470
  * Contains information about versions contained in version management service such as name, guid, etc.
135842
137471
  *
@@ -135886,7 +137515,7 @@ declare namespace __esri {
135886
137515
  *
135887
137516
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#AlterVersionParameters)
135888
137517
  */
135889
- versionIdentifier: VersionManagementServiceVersionIdentifier;
137518
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
135890
137519
  /**
135891
137520
  * The new owner name of the version.
135892
137521
  *
@@ -135982,7 +137611,7 @@ declare namespace __esri {
135982
137611
  *
135983
137612
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#VersionInfo)
135984
137613
  */
135985
- versionIdentifier: VersionManagementServiceVersionIdentifier;
137614
+ versionIdentifier: versionManagementVersionManagementServiceVersionIdentifier;
135986
137615
  /**
135987
137616
  * Description of the version.
135988
137617
  *
@@ -136630,13 +138259,6 @@ declare namespace __esri {
136630
138259
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Widget.html#when)
136631
138260
  */
136632
138261
  when(callback?: Function, errback?: Function): Promise<any>;
136633
-
136634
- /**
136635
- * By default, widgets are rendered into a `div` element and, because of that, the root node returned by the `render` method needs to be a `div`.
136636
- *
136637
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Widget.html#vnodeSelector)
136638
- */
136639
- static vnodeSelector: void;
136640
138262
  }
136641
138263
 
136642
138264
  interface WidgetProperties {
@@ -140808,6 +142430,11 @@ declare module "esri/layers/LineOfSightLayer" {
140808
142430
  export = LineOfSightLayer;
140809
142431
  }
140810
142432
 
142433
+ declare module "esri/layers/LinkChartLayer" {
142434
+ import LinkChartLayer = __esri.LinkChartLayer;
142435
+ export = LinkChartLayer;
142436
+ }
142437
+
140811
142438
  declare module "esri/layers/MapImageLayer" {
140812
142439
  import MapImageLayer = __esri.MapImageLayer;
140813
142440
  export = MapImageLayer;
@@ -141058,11 +142685,6 @@ declare module "esri/layers/support/PublishingInfo" {
141058
142685
  export = PublishingInfo;
141059
142686
  }
141060
142687
 
141061
- declare module "esri/layers/support/SceneFilter" {
141062
- import SceneFilter = __esri.SceneFilter;
141063
- export = SceneFilter;
141064
- }
141065
-
141066
142688
  declare module "esri/layers/support/RangeDomain" {
141067
142689
  import RangeDomain = __esri.RangeDomain;
141068
142690
  export = RangeDomain;
@@ -141103,6 +142725,11 @@ declare module "esri/layers/support/RouteSymbols" {
141103
142725
  export = RouteSymbols;
141104
142726
  }
141105
142727
 
142728
+ declare module "esri/layers/support/SceneFilter" {
142729
+ import SceneFilter = __esri.SceneFilter;
142730
+ export = SceneFilter;
142731
+ }
142732
+
141106
142733
  declare module "esri/layers/support/SceneModification" {
141107
142734
  import SceneModification = __esri.SceneModification;
141108
142735
  export = SceneModification;
@@ -141228,16 +142855,16 @@ declare module "esri/layers/UnsupportedLayer" {
141228
142855
  export = UnsupportedLayer;
141229
142856
  }
141230
142857
 
141231
- declare module "esri/layers/VideoLayer" {
141232
- import VideoLayer = __esri.VideoLayer;
141233
- export = VideoLayer;
141234
- }
141235
-
141236
142858
  declare module "esri/layers/VectorTileLayer" {
141237
142859
  import VectorTileLayer = __esri.VectorTileLayer;
141238
142860
  export = VectorTileLayer;
141239
142861
  }
141240
142862
 
142863
+ declare module "esri/layers/VideoLayer" {
142864
+ import VideoLayer = __esri.VideoLayer;
142865
+ export = VideoLayer;
142866
+ }
142867
+
141241
142868
  declare module "esri/layers/VoxelLayer" {
141242
142869
  import VoxelLayer = __esri.VoxelLayer;
141243
142870
  export = VoxelLayer;
@@ -142048,26 +143675,6 @@ declare module "esri/rest/support/ImageBoundaryResult" {
142048
143675
  export = ImageBoundaryResult;
142049
143676
  }
142050
143677
 
142051
- declare module "esri/rest/support/ImageHistogramParameters" {
142052
- import ImageHistogramParameters = __esri.ImageHistogramParameters;
142053
- export = ImageHistogramParameters;
142054
- }
142055
-
142056
- declare module "esri/rest/support/ImageIdentifyParameters" {
142057
- import ImageIdentifyParameters = __esri.ImageIdentifyParameters;
142058
- export = ImageIdentifyParameters;
142059
- }
142060
-
142061
- declare module "esri/rest/support/ImageIdentifyResult" {
142062
- import ImageIdentifyResult = __esri.ImageIdentifyResult;
142063
- export = ImageIdentifyResult;
142064
- }
142065
-
142066
- declare module "esri/rest/support/ImageInspectionInfo" {
142067
- import ImageInspectionInfo = __esri.ImageInspectionInfo;
142068
- export = ImageInspectionInfo;
142069
- }
142070
-
142071
143678
  declare module "esri/rest/support/ImageDistanceParameters" {
142072
143679
  import ImageDistanceParameters = __esri.ImageDistanceParameters;
142073
143680
  export = ImageDistanceParameters;
@@ -142103,6 +143710,26 @@ declare module "esri/rest/support/ImageHeightResult" {
142103
143710
  export = ImageHeightResult;
142104
143711
  }
142105
143712
 
143713
+ declare module "esri/rest/support/ImageHistogramParameters" {
143714
+ import ImageHistogramParameters = __esri.ImageHistogramParameters;
143715
+ export = ImageHistogramParameters;
143716
+ }
143717
+
143718
+ declare module "esri/rest/support/ImageIdentifyParameters" {
143719
+ import ImageIdentifyParameters = __esri.ImageIdentifyParameters;
143720
+ export = ImageIdentifyParameters;
143721
+ }
143722
+
143723
+ declare module "esri/rest/support/ImageIdentifyResult" {
143724
+ import ImageIdentifyResult = __esri.ImageIdentifyResult;
143725
+ export = ImageIdentifyResult;
143726
+ }
143727
+
143728
+ declare module "esri/rest/support/ImageInspectionInfo" {
143729
+ import ImageInspectionInfo = __esri.ImageInspectionInfo;
143730
+ export = ImageInspectionInfo;
143731
+ }
143732
+
142106
143733
  declare module "esri/rest/support/ImageParameters" {
142107
143734
  import ImageParameters = __esri.ImageParameters;
142108
143735
  export = ImageParameters;
@@ -142143,16 +143770,16 @@ declare module "esri/rest/support/ImageSampleResult" {
142143
143770
  export = ImageSampleResult;
142144
143771
  }
142145
143772
 
142146
- declare module "esri/rest/support/ImageToMapParameters" {
142147
- import ImageToMapParameters = __esri.ImageToMapParameters;
142148
- export = ImageToMapParameters;
142149
- }
142150
-
142151
143773
  declare module "esri/rest/support/ImageToMapMultirayParameters" {
142152
143774
  import ImageToMapMultirayParameters = __esri.ImageToMapMultirayParameters;
142153
143775
  export = ImageToMapMultirayParameters;
142154
143776
  }
142155
143777
 
143778
+ declare module "esri/rest/support/ImageToMapParameters" {
143779
+ import ImageToMapParameters = __esri.ImageToMapParameters;
143780
+ export = ImageToMapParameters;
143781
+ }
143782
+
142156
143783
  declare module "esri/rest/support/ImageUrlParameters" {
142157
143784
  import ImageUrlParameters = __esri.ImageUrlParameters;
142158
143785
  export = ImageUrlParameters;
@@ -142193,16 +143820,16 @@ declare module "esri/rest/support/MeasureAreaFromImageResult" {
142193
143820
  export = MeasureAreaFromImageResult;
142194
143821
  }
142195
143822
 
142196
- declare module "esri/rest/support/MeasureLengthFromImageResult" {
142197
- import MeasureLengthFromImageResult = __esri.MeasureLengthFromImageResult;
142198
- export = MeasureLengthFromImageResult;
142199
- }
142200
-
142201
143823
  declare module "esri/rest/support/MeasureFromImageParameters" {
142202
143824
  import MeasureFromImageParameters = __esri.MeasureFromImageParameters;
142203
143825
  export = MeasureFromImageParameters;
142204
143826
  }
142205
143827
 
143828
+ declare module "esri/rest/support/MeasureLengthFromImageResult" {
143829
+ import MeasureLengthFromImageResult = __esri.MeasureLengthFromImageResult;
143830
+ export = MeasureLengthFromImageResult;
143831
+ }
143832
+
142206
143833
  declare module "esri/rest/support/MultipartColorRamp" {
142207
143834
  import MultipartColorRamp = __esri.MultipartColorRamp;
142208
143835
  export = MultipartColorRamp;
@@ -142943,6 +144570,11 @@ declare module "esri/views/layers/WFSLayerView" {
142943
144570
  export = WFSLayerView;
142944
144571
  }
142945
144572
 
144573
+ declare module "esri/views/LinkChartView" {
144574
+ import LinkChartView = __esri.LinkChartView;
144575
+ export = LinkChartView;
144576
+ }
144577
+
142946
144578
  declare module "esri/views/Magnifier" {
142947
144579
  import Magnifier = __esri.Magnifier;
142948
144580
  export = Magnifier;
@@ -143093,6 +144725,11 @@ declare module "esri/WebDocument2D" {
143093
144725
  export = WebDocument2D;
143094
144726
  }
143095
144727
 
144728
+ declare module "esri/WebLinkChart" {
144729
+ import WebLinkChart = __esri.WebLinkChart;
144730
+ export = WebLinkChart;
144731
+ }
144732
+
143096
144733
  declare module "esri/WebMap" {
143097
144734
  import WebMap = __esri.WebMap;
143098
144735
  export = WebMap;
@@ -144063,6 +145700,11 @@ declare module "esri/widgets/UtilityNetworkTrace" {
144063
145700
  export = UtilityNetworkTrace;
144064
145701
  }
144065
145702
 
145703
+ declare module "esri/widgets/UtilityNetworkTraceAnalysis/UtilityNetworkTraceAnalysisViewModel" {
145704
+ import UtilityNetworkTraceAnalysisViewModel = __esri.UtilityNetworkTraceAnalysisViewModel;
145705
+ export = UtilityNetworkTraceAnalysisViewModel;
145706
+ }
145707
+
144066
145708
  declare module "esri/widgets/UtilityNetworkTrace/UtilityNetworkTraceViewModel" {
144067
145709
  import UtilityNetworkTraceViewModel = __esri.UtilityNetworkTraceViewModel;
144068
145710
  export = UtilityNetworkTraceViewModel;
@@ -144208,16 +145850,16 @@ declare module "esri/layers/mixins/CustomParametersMixin" {
144208
145850
  export = CustomParametersMixin;
144209
145851
  }
144210
145852
 
144211
- declare module "esri/layers/mixins/FeatureLayerBase" {
144212
- import FeatureLayerBase = __esri.FeatureLayerBase;
144213
- export = FeatureLayerBase;
144214
- }
144215
-
144216
145853
  declare module "esri/layers/mixins/FeatureEffectLayer" {
144217
145854
  import FeatureEffectLayer = __esri.FeatureEffectLayer;
144218
145855
  export = FeatureEffectLayer;
144219
145856
  }
144220
145857
 
145858
+ declare module "esri/layers/mixins/FeatureLayerBase" {
145859
+ import FeatureLayerBase = __esri.FeatureLayerBase;
145860
+ export = FeatureLayerBase;
145861
+ }
145862
+
144221
145863
  declare module "esri/layers/mixins/FeatureReductionLayer" {
144222
145864
  import FeatureReductionLayer = __esri.FeatureReductionLayer;
144223
145865
  export = FeatureReductionLayer;
@@ -144303,16 +145945,16 @@ declare module "esri/renderers/mixins/VisualVariablesMixin" {
144303
145945
  export = VisualVariablesMixin;
144304
145946
  }
144305
145947
 
144306
- declare module "esri/rest/support/BaseImageMeasureResult" {
144307
- import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
144308
- export = BaseImageMeasureResult;
144309
- }
144310
-
144311
145948
  declare module "esri/rest/support/BaseImageMeasureParameters" {
144312
145949
  import BaseImageMeasureParameters = __esri.BaseImageMeasureParameters;
144313
145950
  export = BaseImageMeasureParameters;
144314
145951
  }
144315
145952
 
145953
+ declare module "esri/rest/support/BaseImageMeasureResult" {
145954
+ import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
145955
+ export = BaseImageMeasureResult;
145956
+ }
145957
+
144316
145958
  declare module "esri/rest/support/QueryMixin" {
144317
145959
  type QueryMixin = __esri.QueryMixin;
144318
145960
  export = QueryMixin;
@@ -144343,16 +145985,16 @@ declare module "esri/views/PopupView" {
144343
145985
  export = PopupView;
144344
145986
  }
144345
145987
 
144346
- declare module "esri/views/layers/HighlightLayerViewMixin" {
144347
- type HighlightLayerViewMixin = __esri.HighlightLayerViewMixin;
144348
- export = HighlightLayerViewMixin;
144349
- }
144350
-
144351
145988
  declare module "esri/views/layers/FeatureLayerViewMixin" {
144352
145989
  type FeatureLayerViewMixin = __esri.FeatureLayerViewMixin;
144353
145990
  export = FeatureLayerViewMixin;
144354
145991
  }
144355
145992
 
145993
+ declare module "esri/views/layers/HighlightLayerViewMixin" {
145994
+ type HighlightLayerViewMixin = __esri.HighlightLayerViewMixin;
145995
+ export = HighlightLayerViewMixin;
145996
+ }
145997
+
144356
145998
  declare module "esri/widgets/FeatureForm/EditableInput" {
144357
145999
  import EditableInput = __esri.EditableInput;
144358
146000
  export = EditableInput;
@@ -144483,11 +146125,26 @@ declare module "esri/geometry/operators/affineTransformOperator" {
144483
146125
  export = affineTransformOperator;
144484
146126
  }
144485
146127
 
146128
+ declare module "esri/geometry/operators/alphaShapeOperator" {
146129
+ import alphaShapeOperator = __esri.alphaShapeOperator;
146130
+ export = alphaShapeOperator;
146131
+ }
146132
+
144486
146133
  declare module "esri/geometry/operators/areaOperator" {
144487
146134
  import areaOperator = __esri.areaOperator;
144488
146135
  export = areaOperator;
144489
146136
  }
144490
146137
 
146138
+ declare module "esri/geometry/operators/autoCompleteOperator" {
146139
+ import autoCompleteOperator = __esri.autoCompleteOperator;
146140
+ export = autoCompleteOperator;
146141
+ }
146142
+
146143
+ declare module "esri/geometry/operators/boundaryOperator" {
146144
+ import boundaryOperator = __esri.boundaryOperator;
146145
+ export = boundaryOperator;
146146
+ }
146147
+
144491
146148
  declare module "esri/geometry/operators/bufferOperator" {
144492
146149
  import bufferOperator = __esri.bufferOperator;
144493
146150
  export = bufferOperator;
@@ -144533,16 +146190,16 @@ declare module "esri/geometry/operators/differenceOperator" {
144533
146190
  export = differenceOperator;
144534
146191
  }
144535
146192
 
144536
- declare module "esri/geometry/operators/distanceOperator" {
144537
- import distanceOperator = __esri.distanceOperator;
144538
- export = distanceOperator;
144539
- }
144540
-
144541
146193
  declare module "esri/geometry/operators/disjointOperator" {
144542
146194
  import disjointOperator = __esri.disjointOperator;
144543
146195
  export = disjointOperator;
144544
146196
  }
144545
146197
 
146198
+ declare module "esri/geometry/operators/distanceOperator" {
146199
+ import distanceOperator = __esri.distanceOperator;
146200
+ export = distanceOperator;
146201
+ }
146202
+
144546
146203
  declare module "esri/geometry/operators/equalsOperator" {
144547
146204
  import equalsOperator = __esri.equalsOperator;
144548
146205
  export = equalsOperator;
@@ -144553,11 +146210,21 @@ declare module "esri/geometry/operators/extendOperator" {
144553
146210
  export = extendOperator;
144554
146211
  }
144555
146212
 
146213
+ declare module "esri/geometry/operators/generalizeOperator" {
146214
+ import generalizeOperator = __esri.generalizeOperator;
146215
+ export = generalizeOperator;
146216
+ }
146217
+
144556
146218
  declare module "esri/geometry/operators/geodesicBufferOperator" {
144557
146219
  import geodesicBufferOperator = __esri.geodesicBufferOperator;
144558
146220
  export = geodesicBufferOperator;
144559
146221
  }
144560
146222
 
146223
+ declare module "esri/geometry/operators/geodesicProximityOperator" {
146224
+ import geodesicProximityOperator = __esri.geodesicProximityOperator;
146225
+ export = geodesicProximityOperator;
146226
+ }
146227
+
144561
146228
  declare module "esri/geometry/operators/geodeticAreaOperator" {
144562
146229
  import geodeticAreaOperator = __esri.geodeticAreaOperator;
144563
146230
  export = geodeticAreaOperator;
@@ -144578,16 +146245,16 @@ declare module "esri/geometry/operators/geodeticLengthOperator" {
144578
146245
  export = geodeticLengthOperator;
144579
146246
  }
144580
146247
 
144581
- declare module "esri/geometry/operators/generalizeOperator" {
144582
- import generalizeOperator = __esri.generalizeOperator;
144583
- export = generalizeOperator;
144584
- }
144585
-
144586
146248
  declare module "esri/geometry/operators/graphicBufferOperator" {
144587
146249
  import graphicBufferOperator = __esri.graphicBufferOperator;
144588
146250
  export = graphicBufferOperator;
144589
146251
  }
144590
146252
 
146253
+ declare module "esri/geometry/operators/integrateOperator" {
146254
+ import integrateOperator = __esri.integrateOperator;
146255
+ export = integrateOperator;
146256
+ }
146257
+
144591
146258
  declare module "esri/geometry/operators/intersectionOperator" {
144592
146259
  import intersectionOperator = __esri.intersectionOperator;
144593
146260
  export = intersectionOperator;
@@ -144598,11 +146265,41 @@ declare module "esri/geometry/operators/intersectsOperator" {
144598
146265
  export = intersectsOperator;
144599
146266
  }
144600
146267
 
146268
+ declare module "esri/geometry/operators/isNearOperator" {
146269
+ import isNearOperator = __esri.isNearOperator;
146270
+ export = isNearOperator;
146271
+ }
146272
+
146273
+ declare module "esri/geometry/operators/labelPointOperator" {
146274
+ import labelPointOperator = __esri.labelPointOperator;
146275
+ export = labelPointOperator;
146276
+ }
146277
+
144601
146278
  declare module "esri/geometry/operators/lengthOperator" {
144602
146279
  import lengthOperator = __esri.lengthOperator;
144603
146280
  export = lengthOperator;
144604
146281
  }
144605
146282
 
146283
+ declare module "esri/geometry/operators/linesToPolygonsOperator" {
146284
+ import linesToPolygonsOperator = __esri.linesToPolygonsOperator;
146285
+ export = linesToPolygonsOperator;
146286
+ }
146287
+
146288
+ declare module "esri/geometry/operators/locateBetweenOperator" {
146289
+ import locateBetweenOperator = __esri.locateBetweenOperator;
146290
+ export = locateBetweenOperator;
146291
+ }
146292
+
146293
+ declare module "esri/geometry/operators/minimumBoundingCircleOperator" {
146294
+ import minimumBoundingCircleOperator = __esri.minimumBoundingCircleOperator;
146295
+ export = minimumBoundingCircleOperator;
146296
+ }
146297
+
146298
+ declare module "esri/geometry/operators/multiPartToSinglePartOperator" {
146299
+ import multiPartToSinglePartOperator = __esri.multiPartToSinglePartOperator;
146300
+ export = multiPartToSinglePartOperator;
146301
+ }
146302
+
144606
146303
  declare module "esri/geometry/operators/offsetOperator" {
144607
146304
  import offsetOperator = __esri.offsetOperator;
144608
146305
  export = offsetOperator;
@@ -144613,6 +146310,16 @@ declare module "esri/geometry/operators/overlapsOperator" {
144613
146310
  export = overlapsOperator;
144614
146311
  }
144615
146312
 
146313
+ declare module "esri/geometry/operators/polygonOverlayOperator" {
146314
+ import polygonOverlayOperator = __esri.polygonOverlayOperator;
146315
+ export = polygonOverlayOperator;
146316
+ }
146317
+
146318
+ declare module "esri/geometry/operators/polygonSlicerOperator" {
146319
+ import polygonSlicerOperator = __esri.polygonSlicerOperator;
146320
+ export = polygonSlicerOperator;
146321
+ }
146322
+
144616
146323
  declare module "esri/geometry/operators/proximityOperator" {
144617
146324
  import proximityOperator = __esri.proximityOperator;
144618
146325
  export = proximityOperator;
@@ -144623,6 +146330,11 @@ declare module "esri/geometry/operators/relateOperator" {
144623
146330
  export = relateOperator;
144624
146331
  }
144625
146332
 
146333
+ declare module "esri/geometry/operators/reshapeOperator" {
146334
+ import reshapeOperator = __esri.reshapeOperator;
146335
+ export = reshapeOperator;
146336
+ }
146337
+
144626
146338
  declare module "esri/geometry/operators/simplifyOperator" {
144627
146339
  import simplifyOperator = __esri.simplifyOperator;
144628
146340
  export = simplifyOperator;
@@ -144698,6 +146410,16 @@ declare module "esri/layers/ogc/wcsUtils" {
144698
146410
  export = wcsUtils;
144699
146411
  }
144700
146412
 
146413
+ declare module "esri/layers/orientedImagery/transformations/worldToImage" {
146414
+ import worldToImage = __esri.worldToImage;
146415
+ export = worldToImage;
146416
+ }
146417
+
146418
+ declare module "esri/layers/orientedImagery/transformations/imageToWorld" {
146419
+ import imageToWorld = __esri.imageToWorld;
146420
+ export = imageToWorld;
146421
+ }
146422
+
144701
146423
  declare module "esri/layers/support/arcadeUtils" {
144702
146424
  import arcadeUtils = __esri.arcadeUtils;
144703
146425
  export = arcadeUtils;
@@ -145018,6 +146740,11 @@ declare module "esri/smartMapping/renderers/univariateColorSize" {
145018
146740
  export = univariateColorSize;
145019
146741
  }
145020
146742
 
146743
+ declare module "esri/smartMapping/renderers/support/rendererUtils" {
146744
+ import rendererUtils = __esri.rendererUtils;
146745
+ export = rendererUtils;
146746
+ }
146747
+
145021
146748
  declare module "esri/smartMapping/statistics/classBreaks" {
145022
146749
  import statisticsClassBreaks = __esri.statisticsClassBreaks;
145023
146750
  export = statisticsClassBreaks;
@@ -145228,11 +146955,21 @@ declare module "esri/applications/Components/basemapUtils" {
145228
146955
  export = basemapUtils;
145229
146956
  }
145230
146957
 
146958
+ declare module "esri/applications/Components/CollectionFlattener" {
146959
+ import CollectionFlattener = __esri.CollectionFlattener;
146960
+ export = CollectionFlattener;
146961
+ }
146962
+
145231
146963
  declare module "esri/applications/Components/drawUtils" {
145232
146964
  import drawUtils = __esri.drawUtils;
145233
146965
  export = drawUtils;
145234
146966
  }
145235
146967
 
146968
+ declare module "esri/applications/Components/fontUtils" {
146969
+ import fontUtils = __esri.fontUtils;
146970
+ export = fontUtils;
146971
+ }
146972
+
145236
146973
  declare module "esri/applications/Components/getDefaultUnits" {
145237
146974
  import getDefaultUnits = __esri.getDefaultUnits;
145238
146975
  export = getDefaultUnits;
@@ -145258,6 +146995,16 @@ declare module "esri/applications/Components/previewSymbol2D" {
145258
146995
  export = previewSymbol2D;
145259
146996
  }
145260
146997
 
146998
+ declare module "esri/applications/Components/SelectionOperation" {
146999
+ import SelectionOperation = __esri.SelectionOperation;
147000
+ export = SelectionOperation;
147001
+ }
147002
+
147003
+ declare module "esri/applications/Components/SketchTooltipControls" {
147004
+ import SketchTooltipControls = __esri.SketchTooltipControls;
147005
+ export = SketchTooltipControls;
147006
+ }
147007
+
145261
147008
  declare module "esri/applications/Components/styleUtils" {
145262
147009
  import styleUtils = __esri.styleUtils;
145263
147010
  export = styleUtils;
@@ -145288,6 +147035,11 @@ declare module "esri/applications/MapViewer/mediaUtils" {
145288
147035
  export = mediaUtils;
145289
147036
  }
145290
147037
 
147038
+ declare module "esri/applications/MapViewer/templateUtils" {
147039
+ import templateUtils = __esri.templateUtils;
147040
+ export = templateUtils;
147041
+ }
147042
+
145291
147043
  declare module "esri/applications/SceneViewer/colorUtils" {
145292
147044
  import SceneViewerColorUtils = __esri.SceneViewerColorUtils;
145293
147045
  export = SceneViewerColorUtils;