@arcgis/core-adapter 4.32.0-next.23 → 4.32.0-next.25

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.
@@ -1693,10 +1693,88 @@ declare namespace __esri {
1693
1693
  */
1694
1694
  interface generalSharedKgUtils {
1695
1695
  extentToInBoundsRings(extent: Extent): number[][][];
1696
+
1697
+ newLinkChartLayerWithOptimizedGeometry(properties?: LinkChartLayerConstructProperties): LinkChartLayer;
1696
1698
  }
1697
1699
 
1698
1700
  export const generalSharedKgUtils: generalSharedKgUtils;
1699
1701
 
1702
+ /**
1703
+ * Note: reserved for internal use only, this is not part of the stable public API.
1704
+ *
1705
+ * Defines the sublayer structure and the named types that will be in the KnowledgeGraphLayer
1706
+ */
1707
+ export interface InclusionModeDefinitionOptimizedGeometry {
1708
+ /**
1709
+ * 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`.
1710
+ *
1711
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-KnowledgeStudio-generalSharedKgUtils.html#InclusionModeDefinitionOptimizedGeometry)
1712
+ */
1713
+ generateAllSublayers: boolean;
1714
+ /**
1715
+ * A map of named types and the specific instances of those types to include in the layer.
1716
+ *
1717
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-KnowledgeStudio-generalSharedKgUtils.html#InclusionModeDefinitionOptimizedGeometry)
1718
+ */
1719
+ namedTypeDefinitions: globalThis.Map<string, generalSharedKgUtilsLayerInclusionDefinition>;
1720
+ }
1721
+
1722
+ export interface generalSharedKgUtilsLayerInclusionDefinition {
1723
+ /**
1724
+ * If `true` all of the instances of the named type will be included regardless of if there is a defined list of members.
1725
+ *
1726
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-KnowledgeStudio-generalSharedKgUtils.html#LayerInclusionDefinition)
1727
+ */
1728
+ useAllData: boolean;
1729
+ /**
1730
+ * A map of the specific members of the named type to be included.
1731
+ *
1732
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-KnowledgeStudio-generalSharedKgUtils.html#LayerInclusionDefinition)
1733
+ */
1734
+ members?: globalThis.Map<string, generalSharedKgUtilsLayerInclusionMemberDefinition>;
1735
+ }
1736
+
1737
+ /**
1738
+ * Note: reserved for internal use only, this is not part of the stable public API.
1739
+ *
1740
+ * Defines the list of `members` for a named type in the [`inclusionModeDefinition`](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-KnowledgeStudio-generalSharedKgUtils.html#inclusionModeDefinition).
1741
+ */
1742
+ export interface generalSharedKgUtilsLayerInclusionMemberDefinition {
1743
+ /**
1744
+ * The global ID of the specific instance of the named type to be included in the layer.
1745
+ *
1746
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-KnowledgeStudio-generalSharedKgUtils.html#LayerInclusionMemberDefinition)
1747
+ */
1748
+ id: string;
1749
+ /**
1750
+ * The exact point location of the entity on the LinkChart.
1751
+ *
1752
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-KnowledgeStudio-generalSharedKgUtils.html#LayerInclusionMemberDefinition)
1753
+ */
1754
+ linkChartLocation?: Point | OptimizedGeometry;
1755
+ }
1756
+
1757
+ export interface LinkChartLayerConstructProperties {
1758
+ url: string;
1759
+
1760
+ title?: string;
1761
+
1762
+ inclusionModeDefinition?: InclusionModeDefinitionOptimizedGeometry;
1763
+
1764
+ defaultLinkChartConfig?: DefaultLinkChartConfig;
1765
+ }
1766
+
1767
+ /**
1768
+ * Note: reserved for internal use only, this is not part of the stable public API.
1769
+ *
1770
+ * An alternative geometry format for serialized geometries
1771
+ */
1772
+ export interface OptimizedGeometry {
1773
+ lengths: number[];
1774
+
1775
+ coords: number[];
1776
+ }
1777
+
1700
1778
  /**
1701
1779
  * Note: reserved for internal use only, this is not part of the stable public API.
1702
1780
  *
@@ -1714,20 +1792,20 @@ declare namespace __esri {
1714
1792
  fetchAndConvertSerializedKnowledgeIdMap(
1715
1793
  idCollectionsUrl: string,
1716
1794
  generateAllSublayers?: boolean
1717
- ): Promise<InclusionModeDefinition>;
1795
+ ): Promise<InclusionModeDefinitionOptimizedGeometry>;
1718
1796
 
1719
1797
  fetchAndConvertSerializedLinkChart(
1720
1798
  serializedResourceURLs: SerializedResourceURLs
1721
- ): Promise<InclusionModeDefinition>;
1799
+ ): Promise<InclusionModeDefinitionOptimizedGeometry>;
1722
1800
 
1723
1801
  serializeInclusionDefinitionToAllPbf(
1724
- inclusionDefinition: InclusionModeDefinition,
1802
+ inclusionDefinition: InclusionModeDefinitionOptimizedGeometry,
1725
1803
  kg: KnowledgeGraph,
1726
1804
  endpointMap: globalThis.Map<string, string[]>
1727
1805
  ): Promise<SerializedFeatureCollections>;
1728
1806
 
1729
1807
  serializeInclusionDefinitionToIdCollectionsMapPbf(
1730
- inclusionDefinition: InclusionModeDefinition
1808
+ inclusionDefinition: InclusionModeDefinitionOptimizedGeometry
1731
1809
  ): Promise<ArrayBuffer>;
1732
1810
  }
1733
1811
 
@@ -7140,12 +7218,16 @@ declare namespace __esri {
7140
7218
  /**
7141
7219
  * A client-side geometry engine for testing, measuring, and analyzing the spatial relationship between two or more 2D geometries.
7142
7220
  *
7221
+ * @deprecated since version 4.32. Use [goemetry operators](../spatial-analysis/intro-geometry-operators/) instead.
7222
+ *
7143
7223
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html)
7144
7224
  */
7145
7225
  interface geometryEngine {
7146
7226
  /**
7147
7227
  * Creates planar (or Euclidean) buffer polygons at a specified distance around the input geometries.
7148
7228
  *
7229
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/bufferOperator bufferOperator} instead.
7230
+ *
7149
7231
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#buffer)
7150
7232
  */
7151
7233
  buffer(
@@ -7157,84 +7239,112 @@ declare namespace __esri {
7157
7239
  /**
7158
7240
  * Calculates the clipped geometry from a target geometry by an envelope.
7159
7241
  *
7242
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/clipOperator clipOperator} instead.
7243
+ *
7160
7244
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#clip)
7161
7245
  */
7162
7246
  clip(geometry: Geometry, envelope: Extent): Geometry;
7163
7247
  /**
7164
7248
  * Indicates if one geometry contains another geometry.
7165
7249
  *
7250
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/containsOperator containsOperator} instead.
7251
+ *
7166
7252
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#contains)
7167
7253
  */
7168
7254
  contains(containerGeometry: Geometry, insideGeometry: Geometry): boolean;
7169
7255
  /**
7170
7256
  * Calculates the convex hull of one or more geometries.
7171
7257
  *
7258
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/convexHullOperator convexHullOperator} instead.
7259
+ *
7172
7260
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#convexHull)
7173
7261
  */
7174
7262
  convexHull(geometry: Geometry | Geometry[], merge?: boolean): Geometry | Geometry[];
7175
7263
  /**
7176
7264
  * Indicates if one geometry crosses another geometry.
7177
7265
  *
7266
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/crossesOperator crossesOperator} instead.
7267
+ *
7178
7268
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#crosses)
7179
7269
  */
7180
7270
  crosses(geometry1: Geometry, geometry2: Geometry): boolean;
7181
7271
  /**
7182
7272
  * Splits the input Polyline or Polygon where it crosses a cutting Polyline.
7183
7273
  *
7274
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/cutOperator cutOperator} instead.
7275
+ *
7184
7276
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#cut)
7185
7277
  */
7186
7278
  cut(geometry: Geometry, cutter: Polyline): Geometry[];
7187
7279
  /**
7188
7280
  * Densify geometries by plotting points between existing vertices.
7189
7281
  *
7282
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/densifyOperator densifyOperator} instead.
7283
+ *
7190
7284
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#densify)
7191
7285
  */
7192
7286
  densify(geometry: Geometry, maxSegmentLength: number, maxSegmentLengthUnit?: LinearUnits): Geometry;
7193
7287
  /**
7194
7288
  * Creates the difference of two geometries.
7195
7289
  *
7290
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/differenceOperator differenceOperator} instead.
7291
+ *
7196
7292
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#difference)
7197
7293
  */
7198
7294
  difference(inputGeometry: Geometry | Geometry[], subtractor: Geometry): Geometry | Geometry[];
7199
7295
  /**
7200
7296
  * Indicates if one geometry is disjoint (doesn't intersect in any way) with another geometry.
7201
7297
  *
7298
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/disjointOperator disjointOperator} instead.
7299
+ *
7202
7300
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#disjoint)
7203
7301
  */
7204
7302
  disjoint(geometry1: Geometry, geometry2: Geometry): boolean;
7205
7303
  /**
7206
7304
  * Calculates the shortest planar distance between two geometries.
7207
7305
  *
7306
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/distanceOperator distanceOperator} instead.
7307
+ *
7208
7308
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#distance)
7209
7309
  */
7210
7310
  distance(geometry1: Geometry, geometry2: Geometry, distanceUnit?: LinearUnits): number;
7211
7311
  /**
7212
7312
  * Indicates if two geometries are equal.
7213
7313
  *
7314
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/equalsOperator equalsOperator} instead.
7315
+ *
7214
7316
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#equals)
7215
7317
  */
7216
7318
  equals(geometry1: Geometry, geometry2: Geometry): boolean;
7217
7319
  /**
7218
7320
  * Returns an object containing additional information about the input spatial reference.
7219
7321
  *
7322
+ * @deprecated since version 4.32.
7323
+ *
7220
7324
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#extendedSpatialReferenceInfo)
7221
7325
  */
7222
7326
  extendedSpatialReferenceInfo(spatialReference: SpatialReference): SpatialReferenceInfo;
7223
7327
  /**
7224
7328
  * Flips a geometry on the horizontal axis.
7225
7329
  *
7330
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/support/Transformation#flipY Transformation's flipY()} method and the {@link module:esri/geometry/operators/affineTransformationOperator affineTransformationOperator} instead.
7331
+ *
7226
7332
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#flipHorizontal)
7227
7333
  */
7228
7334
  flipHorizontal(geometry: Geometry, flipOrigin?: Point): Geometry;
7229
7335
  /**
7230
7336
  * Flips a geometry on the vertical axis.
7231
7337
  *
7338
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/support/Transformation#flipX Transformation's flipX()} method and the {@link module:esri/geometry/operators/affineTransformationOperator affineTransformationOperator} instead.
7339
+ *
7232
7340
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#flipVertical)
7233
7341
  */
7234
7342
  flipVertical(geometry: Geometry, flipOrigin?: Point): Geometry;
7235
7343
  /**
7236
7344
  * Performs the generalize operation on the geometries in the cursor.
7237
7345
  *
7346
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/generalizeOperator generalizeOperator} instead.
7347
+ *
7238
7348
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#generalize)
7239
7349
  */
7240
7350
  generalize(
@@ -7246,12 +7356,16 @@ declare namespace __esri {
7246
7356
  /**
7247
7357
  * Calculates the area of the input geometry.
7248
7358
  *
7359
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticAreaOperator geodeticAreaOperator} instead.
7360
+ *
7249
7361
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicArea)
7250
7362
  */
7251
7363
  geodesicArea(geometry: Polygon, unit?: AreaUnits): number;
7252
7364
  /**
7253
7365
  * Creates geodesic buffer polygons at a specified distance around the input geometries.
7254
7366
  *
7367
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodesicBufferOperator geodesicBufferOperator} instead.
7368
+ *
7255
7369
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicBuffer)
7256
7370
  */
7257
7371
  geodesicBuffer(
@@ -7263,6 +7377,8 @@ declare namespace __esri {
7263
7377
  /**
7264
7378
  * Returns a geodetically densified version of the input geometry.
7265
7379
  *
7380
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticDensifyOperator geodeticDensifyOperator} instead.
7381
+ *
7266
7382
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicDensify)
7267
7383
  */
7268
7384
  geodesicDensify(
@@ -7273,48 +7389,64 @@ declare namespace __esri {
7273
7389
  /**
7274
7390
  * Calculates the length of the input geometry.
7275
7391
  *
7392
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticLengthOperator geodeticLengthOperator} instead.
7393
+ *
7276
7394
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicLength)
7277
7395
  */
7278
7396
  geodesicLength(geometry: Geometry, unit?: LinearUnits): number;
7279
7397
  /**
7280
7398
  * Creates new geometries from the intersections between two geometries.
7281
7399
  *
7400
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/intersectionOperator intersectionOperator} instead.
7401
+ *
7282
7402
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#intersect)
7283
7403
  */
7284
7404
  intersect(geometry1: Geometry | Geometry[], geometry2: Geometry): Geometry | Geometry[];
7285
7405
  /**
7286
7406
  * Returns an array of points at the intersecting locations of two input polylines.
7287
7407
  *
7408
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/intersectionOperator#executeMany intersectionOperator's executeMany()} method instead.
7409
+ *
7288
7410
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#intersectLinesToPoints)
7289
7411
  */
7290
7412
  intersectLinesToPoints(line1: Polyline, line2: Polyline): Point[];
7291
7413
  /**
7292
7414
  * Indicates if one geometry intersects another geometry.
7293
7415
  *
7416
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/intersectsOperator intersectsOperator} instead.
7417
+ *
7294
7418
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#intersects)
7295
7419
  */
7296
7420
  intersects(geometry1: Geometry, geometry2: Geometry): boolean;
7297
7421
  /**
7298
7422
  * Indicates if the given geometry is topologically simple.
7299
7423
  *
7424
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/simplifyOperator#isSimple simplifyOperator's isSimple()} method instead.
7425
+ *
7300
7426
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#isSimple)
7301
7427
  */
7302
7428
  isSimple(geometry: Geometry): boolean;
7303
7429
  /**
7304
7430
  * Finds the coordinate of the geometry that is closest to the specified point.
7305
7431
  *
7432
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/proximityOperator#getNearestCoordinate proximityOperator's getNearestCoordinate()} method instead.
7433
+ *
7306
7434
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestCoordinate)
7307
7435
  */
7308
7436
  nearestCoordinate(geometry: Geometry, inputPoint: Point): NearestPointResult;
7309
7437
  /**
7310
7438
  * Finds the vertex on the geometry nearest to the specified point.
7311
7439
  *
7440
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/proximityOperator#getNearestVertex proximityOperator's getNearestVertex()} method instead.
7441
+ *
7312
7442
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertex)
7313
7443
  */
7314
7444
  nearestVertex(geometry: Geometry, inputPoint: Point): NearestPointResult;
7315
7445
  /**
7316
7446
  * Finds all vertices in the given distance from the specified point, sorted from the closest to the furthest and returns them as an array of Objects.
7317
7447
  *
7448
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/proximityOperator#getNearestVertices proximityOperator's getNearestVertices()} method instead.
7449
+ *
7318
7450
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertices)
7319
7451
  */
7320
7452
  nearestVertices(
@@ -7326,6 +7458,8 @@ declare namespace __esri {
7326
7458
  /**
7327
7459
  * The offset operation creates a geometry that is a constant planar distance from an input polyline or polygon.
7328
7460
  *
7461
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/offsetOperator offsetOperator} instead.
7462
+ *
7329
7463
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#offset)
7330
7464
  */
7331
7465
  offset(
@@ -7339,60 +7473,80 @@ declare namespace __esri {
7339
7473
  /**
7340
7474
  * Indicates if one geometry overlaps another geometry.
7341
7475
  *
7476
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/overlapsOperator overlapsOperator} instead.
7477
+ *
7342
7478
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#overlaps)
7343
7479
  */
7344
7480
  overlaps(geometry1: Geometry, geometry2: Geometry): boolean;
7345
7481
  /**
7346
7482
  * Calculates the area of the input geometry.
7347
7483
  *
7484
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/areaOperator areaOperator} instead.
7485
+ *
7348
7486
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#planarArea)
7349
7487
  */
7350
7488
  planarArea(geometry: Polygon, unit?: AreaUnits): number;
7351
7489
  /**
7352
7490
  * Calculates the length of the input geometry.
7353
7491
  *
7492
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/lengthOperator lengthOperator} instead.
7493
+ *
7354
7494
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#planarLength)
7355
7495
  */
7356
7496
  planarLength(geometry: Geometry, unit?: LinearUnits): number;
7357
7497
  /**
7358
7498
  * Indicates if the given DE-9IM relation is true for the two geometries.
7359
7499
  *
7500
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/relateOperator relateOperator} instead.
7501
+ *
7360
7502
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#relate)
7361
7503
  */
7362
7504
  relate(geometry1: Geometry, geometry2: Geometry, relation: string): boolean;
7363
7505
  /**
7364
7506
  * Rotates a geometry counterclockwise by the specified number of degrees.
7365
7507
  *
7508
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/support/Transformation#rotate Transformation's rotate()} method and the {@link module:esri/geometry/operators/affineTransformationOperator affineTransformationOperator} instead.
7509
+ *
7366
7510
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#rotate)
7367
7511
  */
7368
7512
  rotate(geometry: Geometry, angle: number, rotationOrigin?: Point): Geometry;
7369
7513
  /**
7370
7514
  * Performs the simplify operation on the geometry, which alters the given geometries to make their definitions topologically legal with respect to their geometry type.
7371
7515
  *
7516
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/simplifyOperator simplifyOperator} instead.
7517
+ *
7372
7518
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#simplify)
7373
7519
  */
7374
7520
  simplify(geometry: Geometry): Geometry;
7375
7521
  /**
7376
7522
  * Creates the symmetric difference of two geometries.
7377
7523
  *
7524
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/symmetricDifferenceOperator symmetricDifferenceOperator} instead.
7525
+ *
7378
7526
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#symmetricDifference)
7379
7527
  */
7380
7528
  symmetricDifference(leftGeometry: Geometry | Geometry[], rightGeometry: Geometry): Geometry | Geometry[];
7381
7529
  /**
7382
7530
  * Indicates if one geometry touches another geometry.
7383
7531
  *
7532
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/touchesOperator touchesOperator} instead.
7533
+ *
7384
7534
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#touches)
7385
7535
  */
7386
7536
  touches(geometry1: Geometry, geometry2: Geometry): boolean;
7387
7537
  /**
7388
7538
  * All inputs must be of the same type of geometries and share one spatial reference.
7389
7539
  *
7540
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/unionOperator unionOperator} instead.
7541
+ *
7390
7542
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#union)
7391
7543
  */
7392
7544
  union(geometries: Geometry[]): Geometry;
7393
7545
  /**
7394
7546
  * Indicates if one geometry is within another geometry.
7395
7547
  *
7548
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/withinOperator withinOperator} instead.
7549
+ *
7396
7550
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#within)
7397
7551
  */
7398
7552
  within(innerGeometry: Geometry, outerGeometry: Geometry): boolean;
@@ -7403,6 +7557,8 @@ declare namespace __esri {
7403
7557
  /**
7404
7558
  * Units for area measurements.
7405
7559
  *
7560
+ * @deprecated since version 4.32. Use {@link module:esri/core/units~AreaUnit AreaUnit} instead.
7561
+ *
7406
7562
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#AreaUnits)
7407
7563
  */
7408
7564
  export type AreaUnits =
@@ -7419,6 +7575,8 @@ declare namespace __esri {
7419
7575
  /**
7420
7576
  * Units for linear measurements.
7421
7577
  *
7578
+ * @deprecated since version 4.32. Use {@link module:esri/core/units~LengthUnit LengthUnit} instead.
7579
+ *
7422
7580
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#LinearUnits)
7423
7581
  */
7424
7582
  export type LinearUnits = "meters" | "feet" | "kilometers" | "miles" | "nautical-miles" | "yards" | number;
@@ -7426,6 +7584,8 @@ declare namespace __esri {
7426
7584
  /**
7427
7585
  * Object returned from the [nearestCoordinate()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestCoordinate), [nearestVertex()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertex), and [nearestVertices()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertices) methods.
7428
7586
  *
7587
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/proximityOperator~ProximityResult proximityOperator's ProximityResult} instead.
7588
+ *
7429
7589
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#NearestPointResult)
7430
7590
  */
7431
7591
  export interface NearestPointResult {
@@ -7458,6 +7618,8 @@ declare namespace __esri {
7458
7618
  /**
7459
7619
  * The return object of the [extendedSpatialReferenceInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#extendedSpatialReferenceInfo) method.
7460
7620
  *
7621
+ * @deprecated since version 4.32.
7622
+ *
7461
7623
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#SpatialReferenceInfo)
7462
7624
  */
7463
7625
  export interface SpatialReferenceInfo {
@@ -7496,12 +7658,16 @@ declare namespace __esri {
7496
7658
  /**
7497
7659
  * An asynchronous client-side geometry engine for testing, measuring, and analyzing the spatial relationship between two or more 2D geometries.
7498
7660
  *
7661
+ * @deprecated since version 4.32. Use [geometry operators](../spatial-analysis/intro-geometry-operators/) instead. You can use the web workers to perform geometry operations in a separate thread, which can improve the performance. Options include using the SDK's {@link module:esri/core/workers worker} utility, creating a [custom worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers), or using a helper library such as [Comlink](https://github.com/GoogleChromeLabs/comlink?tab=readme-ov-file#comlink).
7662
+ *
7499
7663
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html)
7500
7664
  */
7501
7665
  interface geometryEngineAsync {
7502
7666
  /**
7503
7667
  * Creates planar (or Euclidean) buffer polygons at a specified distance around the input geometries.
7504
7668
  *
7669
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/bufferOperator bufferOperator} instead.
7670
+ *
7505
7671
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#buffer)
7506
7672
  */
7507
7673
  buffer(
@@ -7513,84 +7679,112 @@ declare namespace __esri {
7513
7679
  /**
7514
7680
  * Calculates the clipped geometry from a target geometry by an envelope.
7515
7681
  *
7682
+ * @deprecated since version 4.32. {@link module:esri/geometry/operators/clipOperator clipOperator} instead.
7683
+ *
7516
7684
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#clip)
7517
7685
  */
7518
7686
  clip(geometry: Geometry, envelope: Extent): Promise<Geometry>;
7519
7687
  /**
7520
7688
  * Indicates if one geometry contains another geometry.
7521
7689
  *
7690
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/containsOperator containsOperator} instead.
7691
+ *
7522
7692
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#contains)
7523
7693
  */
7524
7694
  contains(containerGeometry: Geometry, insideGeometry: Geometry): Promise<boolean>;
7525
7695
  /**
7526
7696
  * Calculates the convex hull of one or more geometries.
7527
7697
  *
7698
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/convexHullOperator convexHullOperator} instead.
7699
+ *
7528
7700
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#convexHull)
7529
7701
  */
7530
7702
  convexHull(geometry: Geometry | Geometry[], merge?: boolean): Promise<Geometry | Geometry[]>;
7531
7703
  /**
7532
7704
  * Indicates if one geometry crosses another geometry.
7533
7705
  *
7706
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/crossesOperator crossesOperator} instead.
7707
+ *
7534
7708
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#crosses)
7535
7709
  */
7536
7710
  crosses(geometry1: Geometry, geometry2: Geometry): Promise<boolean>;
7537
7711
  /**
7538
7712
  * Split the input Polyline or Polygon where it crosses a cutting Polyline.
7539
7713
  *
7714
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/cutOperator cutOperator} instead.
7715
+ *
7540
7716
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#cut)
7541
7717
  */
7542
7718
  cut(geometry: Geometry, cutter: Polyline): Promise<Geometry[]>;
7543
7719
  /**
7544
7720
  * Densify geometries by plotting points between existing vertices.
7545
7721
  *
7722
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/densifyOperator densifyOperator} instead.
7723
+ *
7546
7724
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#densify)
7547
7725
  */
7548
7726
  densify(geometry: Geometry, maxSegmentLength: number, maxSegmentLengthUnit?: LinearUnits): Promise<Geometry>;
7549
7727
  /**
7550
7728
  * Creates the difference of two geometries.
7551
7729
  *
7730
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/differenceOperator differenceOperator} instead.
7731
+ *
7552
7732
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#difference)
7553
7733
  */
7554
7734
  difference(inputGeometry: Geometry | Geometry[], subtractor: Geometry): Promise<Geometry>;
7555
7735
  /**
7556
7736
  * Indicates if one geometry is disjoint (doesn't intersect in any way) with another geometry.
7557
7737
  *
7738
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/disjointOperator disjointOperator} instead.
7739
+ *
7558
7740
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#disjoint)
7559
7741
  */
7560
7742
  disjoint(geometry1: Geometry, geometry2: Geometry): Promise<boolean>;
7561
7743
  /**
7562
7744
  * Calculates the shortest planar distance between two geometries.
7563
7745
  *
7746
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/distanceOperator distanceOperator} instead.
7747
+ *
7564
7748
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#distance)
7565
7749
  */
7566
7750
  distance(geometry1: Geometry, geometry2: Geometry, distanceUnit?: LinearUnits): Promise<number>;
7567
7751
  /**
7568
7752
  * Indicates if two geometries are equal.
7569
7753
  *
7754
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/equalsOperator equalsOperator} instead.
7755
+ *
7570
7756
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#equals)
7571
7757
  */
7572
7758
  equals(geometry1: Geometry, geometry2: Geometry): Promise<boolean>;
7573
7759
  /**
7574
7760
  * Returns an object containing additional information about the input spatial reference.
7575
7761
  *
7762
+ * @deprecated since version 4.32.
7763
+ *
7576
7764
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#extendedSpatialReferenceInfo)
7577
7765
  */
7578
7766
  extendedSpatialReferenceInfo(spatialReference: SpatialReference): Promise<geometryEngineAsyncSpatialReferenceInfo>;
7579
7767
  /**
7580
7768
  * Flips a geometry on the horizontal axis.
7581
7769
  *
7770
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/support/Transformation#flipY Transformation's flipY()} method and the {@link module:esri/geometry/operators/affineTransformationOperator affineTransformationOperator} instead.
7771
+ *
7582
7772
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#flipHorizontal)
7583
7773
  */
7584
7774
  flipHorizontal(geometry: Geometry, flipOrigin?: Point): Promise<Geometry>;
7585
7775
  /**
7586
7776
  * Flips a geometry on the vertical axis.
7587
7777
  *
7778
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/support/Transformation#flipX Transformation's flipX()} method and the {@link module:esri/geometry/operators/affineTransformationOperator affineTransformationOperator} instead.
7779
+ *
7588
7780
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#flipVertical)
7589
7781
  */
7590
7782
  flipVertical(geometry: Geometry, flipOrigin?: Point): Promise<Geometry>;
7591
7783
  /**
7592
7784
  * Performs the generalize operation on the geometries in the cursor.
7593
7785
  *
7786
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/generalizeOperator generalizeOperator} instead.
7787
+ *
7594
7788
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#generalize)
7595
7789
  */
7596
7790
  generalize(
@@ -7602,12 +7796,16 @@ declare namespace __esri {
7602
7796
  /**
7603
7797
  * Calculates the area of the input geometry.
7604
7798
  *
7799
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticAreaOperator geodeticAreaOperator} instead.
7800
+ *
7605
7801
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicArea)
7606
7802
  */
7607
7803
  geodesicArea(geometry: Polygon, unit?: AreaUnits): Promise<number>;
7608
7804
  /**
7609
7805
  * Creates geodesic buffer polygons at a specified distance around the input geometries.
7610
7806
  *
7807
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodesicBufferOperator geodesicBufferOperator} instead.
7808
+ *
7611
7809
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicBuffer)
7612
7810
  */
7613
7811
  geodesicBuffer(
@@ -7619,6 +7817,8 @@ declare namespace __esri {
7619
7817
  /**
7620
7818
  * Returns a geodetically densified version of the input geometry.
7621
7819
  *
7820
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticDensifyOperator geodeticDensifyOperator} instead.
7821
+ *
7622
7822
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicDensify)
7623
7823
  */
7624
7824
  geodesicDensify(
@@ -7629,48 +7829,64 @@ declare namespace __esri {
7629
7829
  /**
7630
7830
  * Calculates the length of the input geometry.
7631
7831
  *
7832
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticLengthOperator geodeticLengthOperator} instead.
7833
+ *
7632
7834
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicLength)
7633
7835
  */
7634
7836
  geodesicLength(geometry: Geometry, unit?: LinearUnits): Promise<number>;
7635
7837
  /**
7636
7838
  * Creates new geometries from the intersections between two geometries.
7637
7839
  *
7840
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/intersectionOperator intersectionOperator} instead.
7841
+ *
7638
7842
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#intersect)
7639
7843
  */
7640
7844
  intersect(geometry1: Geometry | Geometry[], geometry2: Geometry): Promise<Geometry>;
7641
7845
  /**
7642
7846
  * Resolves to an array of points at the intersecting locations of two input polylines.
7643
7847
  *
7848
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/intersectionOperator#executeMany intersectionOperator's executeMany()} method instead.
7849
+ *
7644
7850
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#intersectLinesToPoints)
7645
7851
  */
7646
7852
  intersectLinesToPoints(line1: Polyline, line2: Polyline): Promise<Point[]>;
7647
7853
  /**
7648
7854
  * Indicates if one geometry intersects another geometry.
7649
7855
  *
7856
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/intersectsOperator intersectsOperator} instead.
7857
+ *
7650
7858
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#intersects)
7651
7859
  */
7652
7860
  intersects(geometry1: Geometry, geometry2: Geometry): Promise<boolean>;
7653
7861
  /**
7654
7862
  * Indicates if the given geometry is topologically simple.
7655
7863
  *
7864
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/simplifyOperator#isSimple simplifyOperator's isSimple()} method instead.
7865
+ *
7656
7866
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#isSimple)
7657
7867
  */
7658
7868
  isSimple(geometry: Geometry): Promise<boolean>;
7659
7869
  /**
7660
7870
  * Finds the coordinate of the geometry that is closest to the specified point.
7661
7871
  *
7872
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/proximityOperator#getNearestCoordinate proximityOperator's getNearestCoordinate()} method instead.
7873
+ *
7662
7874
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#nearestCoordinate)
7663
7875
  */
7664
7876
  nearestCoordinate(geometry: Geometry, inputPoint: Point): Promise<NearestPointResult>;
7665
7877
  /**
7666
7878
  * Finds vertex on the geometry nearest to the specified point.
7667
7879
  *
7880
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/proximityOperator#getNearestVertex proximityOperator's getNearestVertex()} method instead.
7881
+ *
7668
7882
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#nearestVertex)
7669
7883
  */
7670
7884
  nearestVertex(geometry: Geometry, inputPoint: Point): Promise<NearestPointResult>;
7671
7885
  /**
7672
7886
  * Finds all vertices in the given distance from the specified point, sorted from the closest to the furthest and returns them as an array of Objects.
7673
7887
  *
7888
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/proximityOperator#getNearestVertices proximityOperator's getNearestVertices()} method instead.
7889
+ *
7674
7890
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#nearestVertices)
7675
7891
  */
7676
7892
  nearestVertices(
@@ -7682,6 +7898,8 @@ declare namespace __esri {
7682
7898
  /**
7683
7899
  * The offset operation creates a geometry that is a constant planar distance from an input polyline or polygon.
7684
7900
  *
7901
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/offsetOperator offsetOperator} instead.
7902
+ *
7685
7903
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#offset)
7686
7904
  */
7687
7905
  offset(
@@ -7695,60 +7913,80 @@ declare namespace __esri {
7695
7913
  /**
7696
7914
  * Indicates if one geometry overlaps another geometry.
7697
7915
  *
7916
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/overlapsOperator overlapsOperator} instead.
7917
+ *
7698
7918
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#overlaps)
7699
7919
  */
7700
7920
  overlaps(geometry1: Geometry, geometry2: Geometry): Promise<boolean>;
7701
7921
  /**
7702
7922
  * Calculates the area of the input geometry.
7703
7923
  *
7924
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/areaOperator areaOperator} instead.
7925
+ *
7704
7926
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#planarArea)
7705
7927
  */
7706
7928
  planarArea(geometry: Polygon, unit?: AreaUnits): Promise<number>;
7707
7929
  /**
7708
7930
  * Calculates the length of the input geometry.
7709
7931
  *
7932
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/lengthOperator lengthOperator} instead.
7933
+ *
7710
7934
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#planarLength)
7711
7935
  */
7712
7936
  planarLength(geometry: Geometry, unit?: LinearUnits): Promise<number>;
7713
7937
  /**
7714
7938
  * Indicates if the given DE-9IM relation holds for the two geometries.
7715
7939
  *
7940
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/relateOperator relateOperator} instead.
7941
+ *
7716
7942
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#relate)
7717
7943
  */
7718
7944
  relate(geometry1: Geometry, geometry2: Geometry, relation: string): Promise<boolean>;
7719
7945
  /**
7720
7946
  * Rotates a geometry counterclockwise by the specified number of degrees.
7721
7947
  *
7948
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/support/Transformation#rotate Transformation's rotate()} method and the {@link module:esri/geometry/operators/affineTransformationOperator affineTransformationOperator} instead.
7949
+ *
7722
7950
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#rotate)
7723
7951
  */
7724
7952
  rotate(geometry: Geometry, angle: number, rotationOrigin?: Point): Promise<Geometry>;
7725
7953
  /**
7726
7954
  * Performs the simplify operation on the geometry, which alters the given geometries to make their definitions topologically legal with respect to their geometry type.
7727
7955
  *
7956
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/simplifyOperator simplifyOperator} instead.
7957
+ *
7728
7958
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#simplify)
7729
7959
  */
7730
7960
  simplify(geometry: Geometry): Promise<Geometry>;
7731
7961
  /**
7732
7962
  * Creates the symmetric difference of two geometries.
7733
7963
  *
7964
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/symmetricDifferenceOperator symmetricDifferenceOperator} instead.
7965
+ *
7734
7966
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#symmetricDifference)
7735
7967
  */
7736
7968
  symmetricDifference(leftGeometry: Geometry | Geometry[], rightGeometry: Geometry): Promise<Geometry | Geometry[]>;
7737
7969
  /**
7738
7970
  * Indicates if one geometry touches another geometry.
7739
7971
  *
7972
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/touchesOperator touchesOperator} instead.
7973
+ *
7740
7974
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#touches)
7741
7975
  */
7742
7976
  touches(geometry1: Geometry, geometry2: Geometry): Promise<boolean>;
7743
7977
  /**
7744
7978
  * All inputs must be of the same type of geometries and share one spatial reference.
7745
7979
  *
7980
+ * @deprecated since 4.32. Use {@link module:esri/geometry/operators/unionOperator unionOperator} instead.
7981
+ *
7746
7982
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#union)
7747
7983
  */
7748
7984
  union(geometries: Geometry[]): Promise<Geometry>;
7749
7985
  /**
7750
7986
  * Indicates if one geometry is within another geometry.
7751
7987
  *
7988
+ * @deprecated since version 4.32. Use {@link module:esri/geometry/operators/withinOperator withinOperator} instead.
7989
+ *
7752
7990
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#within)
7753
7991
  */
7754
7992
  within(innerGeometry: Geometry, outerGeometry: Geometry): Promise<boolean>;
@@ -7759,6 +7997,8 @@ declare namespace __esri {
7759
7997
  /**
7760
7998
  * The return object of the [extendedSpatialReferenceInfo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#extendedSpatialReferenceInfo) method.
7761
7999
  *
8000
+ * @deprecated since version 4.32.
8001
+ *
7762
8002
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#SpatialReferenceInfo)
7763
8003
  */
7764
8004
  export interface geometryEngineAsyncSpatialReferenceInfo {
@@ -10645,6 +10885,14 @@ declare namespace __esri {
10645
10885
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Polygon.html#centroid)
10646
10886
  */
10647
10887
  centroid: Point;
10888
+ /**
10889
+ * A two dimensional array of points and curves that define the polygon geometry.
10890
+ *
10891
+ * @default undefined
10892
+ *
10893
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Polygon.html#curveRings)
10894
+ */
10895
+ curveRings: any[][];
10648
10896
  /**
10649
10897
  * Checks to see if polygon rings cross each other and indicates if the polygon is self-intersecting, which means the ring of the polygon crosses itself.
10650
10898
  *
@@ -10735,6 +10983,14 @@ declare namespace __esri {
10735
10983
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Polygon.html#centroid)
10736
10984
  */
10737
10985
  centroid?: PointProperties;
10986
+ /**
10987
+ * A two dimensional array of points and curves that define the polygon geometry.
10988
+ *
10989
+ * @default undefined
10990
+ *
10991
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Polygon.html#curveRings)
10992
+ */
10993
+ curveRings?: any[][];
10738
10994
  /**
10739
10995
  * Checks to see if polygon rings cross each other and indicates if the polygon is self-intersecting, which means the ring of the polygon crosses itself.
10740
10996
  *
@@ -10758,6 +11014,14 @@ declare namespace __esri {
10758
11014
 
10759
11015
  constructor(properties?: PolylineProperties);
10760
11016
 
11017
+ /**
11018
+ * A two dimensional array of points and curves that define the polyline geometry.
11019
+ *
11020
+ * @default undefined
11021
+ *
11022
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Polyline.html#curvePaths)
11023
+ */
11024
+ curvePaths: any[][];
10761
11025
  /**
10762
11026
  * An array of paths, or line segments, that make up the polyline.
10763
11027
  *
@@ -10814,6 +11078,14 @@ declare namespace __esri {
10814
11078
  }
10815
11079
 
10816
11080
  interface PolylineProperties extends GeometryProperties {
11081
+ /**
11082
+ * A two dimensional array of points and curves that define the polyline geometry.
11083
+ *
11084
+ * @default undefined
11085
+ *
11086
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Polyline.html#curvePaths)
11087
+ */
11088
+ curvePaths?: any[][];
10817
11089
  /**
10818
11090
  * An array of paths, or line segments, that make up the polyline.
10819
11091
  *
@@ -16073,6 +16345,12 @@ declare namespace __esri {
16073
16345
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#capabilities)
16074
16346
  */
16075
16347
  supportsHistoricMoment: boolean;
16348
+ /**
16349
+ * Indicates if the layer supports requesting curves with [returnTrueCurves](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves).
16350
+ *
16351
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#capabilities)
16352
+ */
16353
+ supportsTrueCurve: boolean;
16076
16354
  }
16077
16355
 
16078
16356
  export interface CSVLayerCapabilitiesQueryRelated {
@@ -17581,6 +17859,12 @@ declare namespace __esri {
17581
17859
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#Capabilities)
17582
17860
  */
17583
17861
  supportsSpatialAggregationStatistics: boolean;
17862
+ /**
17863
+ * Indicates if the layer supports requesting curves with [returnTrueCurves](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves).
17864
+ *
17865
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#Capabilities)
17866
+ */
17867
+ supportsTrueCurve: boolean;
17584
17868
  /**
17585
17869
  * List of supported aggregated geometries returned for each distinct group when [groupByFieldsForStatistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#groupByFieldsForStatistics) is used.
17586
17870
  *
@@ -18532,6 +18816,12 @@ declare namespace __esri {
18532
18816
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#capabilities)
18533
18817
  */
18534
18818
  supportsHistoricMoment: boolean;
18819
+ /**
18820
+ * Indicates if the layer supports requesting curves with [returnTrueCurves](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves).
18821
+ *
18822
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#capabilities)
18823
+ */
18824
+ supportsTrueCurve: boolean;
18535
18825
  }
18536
18826
 
18537
18827
  export interface GeoJSONLayerCapabilitiesQueryRelated {
@@ -20942,6 +21232,12 @@ declare namespace __esri {
20942
21232
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#Capabilities)
20943
21233
  */
20944
21234
  supportsSpatialAggregationStatistics: boolean;
21235
+ /**
21236
+ * Indicates if the layer supports requesting curves with [returnTrueCurves](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves).
21237
+ *
21238
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html#Capabilities)
21239
+ */
21240
+ supportsTrueCurve: boolean;
20945
21241
  /**
20946
21242
  * List of supported aggregated geometries returned for each distinct group when [groupByFieldsForStatistics](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#groupByFieldsForStatistics) is used.
20947
21243
  *
@@ -21204,20 +21500,7 @@ declare namespace __esri {
21204
21500
  *
21205
21501
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#LayerInclusionMemberDefinition)
21206
21502
  */
21207
- linkChartLocation?: Point | OptimizedGeometry;
21208
- }
21209
-
21210
- /**
21211
- * An alternative geometry format for serialized geometries
21212
- *
21213
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-KnowledgeGraphLayer.html#OptimizedGeometry)
21214
- */
21215
- export interface OptimizedGeometry {
21216
- lengths: number[];
21217
-
21218
- coords: number[];
21219
-
21220
- hasIndeterminateRingOrder?: boolean;
21503
+ linkChartLocation?: Point;
21221
21504
  }
21222
21505
 
21223
21506
  export interface Layer extends Accessor, Loadable, Evented, Identifiable {}
@@ -21604,7 +21887,7 @@ declare namespace __esri {
21604
21887
  *
21605
21888
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
21606
21889
  */
21607
- defaultLinkChartConfig: LinkChartLayerDefaultLinkChartConfig;
21890
+ defaultLinkChartConfig: DefaultLinkChartConfig;
21608
21891
  /**
21609
21892
  * 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.
21610
21893
  *
@@ -21637,7 +21920,7 @@ declare namespace __esri {
21637
21920
  *
21638
21921
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
21639
21922
  */
21640
- defaultLinkChartConfig?: LinkChartLayerDefaultLinkChartConfig;
21923
+ defaultLinkChartConfig?: DefaultLinkChartConfig;
21641
21924
  /**
21642
21925
  * 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.
21643
21926
  *
@@ -21712,42 +21995,22 @@ declare namespace __esri {
21712
21995
  separatedLineShapeRatio?: number;
21713
21996
  }
21714
21997
 
21715
- /**
21716
- * Defines additional settings for layout calculations.
21717
- *
21718
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
21719
- */
21720
- export interface LayoutModeSettings {
21721
- /**
21722
- * -
21723
- *
21724
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
21725
- */
21726
- organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
21727
- /**
21728
- * -
21729
- *
21730
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
21731
- */
21732
- chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
21733
- }
21734
-
21735
- export interface LinkChartLayerDefaultLinkChartConfig {
21998
+ export interface DefaultLinkChartConfig {
21736
21999
  /**
21737
22000
  * The layout mode to be applied by default.
21738
22001
  *
21739
22002
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#defaultLinkChartConfig)
21740
22003
  */
21741
22004
  layoutMode?:
21742
- | "RADIAL_TREE"
21743
- | "GEOGRAPHIC"
21744
- | "FORCE_DIRECTED"
21745
- | "COMMUNITY"
21746
- | "SIMPLE"
21747
- | "HIERARCHICAL"
21748
- | "SMART_TREE"
21749
- | "CHRONOLOGICAL_SINGLE"
21750
- | "CHRONOLOGICAL_MULTIPLE";
22005
+ | "radial-root-centric"
22006
+ | "geographic-organic-standard"
22007
+ | "organic-standard"
22008
+ | "organic-community"
22009
+ | "basic-grid"
22010
+ | "hierarchical-bottom-to-top"
22011
+ | "tree-left-to-right"
22012
+ | "chronological-mono-timeline"
22013
+ | "chronological-multi-timeline";
21751
22014
  /**
21752
22015
  * By default, the layout algorithm is always run on link charts when they are first created.
21753
22016
  *
@@ -21762,6 +22025,26 @@ declare namespace __esri {
21762
22025
  layoutOptions?: LayoutModeSettings;
21763
22026
  }
21764
22027
 
22028
+ /**
22029
+ * Defines additional settings for layout calculations.
22030
+ *
22031
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
22032
+ */
22033
+ export interface LayoutModeSettings {
22034
+ /**
22035
+ * -
22036
+ *
22037
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
22038
+ */
22039
+ organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
22040
+ /**
22041
+ * -
22042
+ *
22043
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#LayoutModeSettings)
22044
+ */
22045
+ chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
22046
+ }
22047
+
21765
22048
  export interface LinkChartLayerOrganicLayoutSettings {
21766
22049
  /**
21767
22050
  * The maximum amount of time in milliseconds to spend on the layout calculation.
@@ -21786,7 +22069,7 @@ declare namespace __esri {
21786
22069
  *
21787
22070
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-LinkChartLayer.html#OrganicLayoutSettings)
21788
22071
  */
21789
- idealEdgeLengthType?: "multiplier" | "absoluteValue";
22072
+ idealEdgeLengthType?: "multiplier" | "absolute-value";
21790
22073
  }
21791
22074
 
21792
22075
  export interface MapImageLayer
@@ -23219,6 +23502,12 @@ declare namespace __esri {
23219
23502
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-ArcGISImageService.html#capabilities)
23220
23503
  */
23221
23504
  supportsStandardizedQueriesOnly: boolean;
23505
+ /**
23506
+ * Indicates if the layer supports requesting curves with [returnTrueCurves](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves).
23507
+ *
23508
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-ArcGISImageService.html#capabilities)
23509
+ */
23510
+ supportsTrueCurve: boolean;
23222
23511
  /**
23223
23512
  * The maximum number of records that will be returned for a given query.
23224
23513
  *
@@ -28330,6 +28619,12 @@ declare namespace __esri {
28330
28619
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#Capabilities)
28331
28620
  */
28332
28621
  supportsHistoricMoment: boolean;
28622
+ /**
28623
+ * Indicates if the layer supports requesting curves with [returnTrueCurves](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves).
28624
+ *
28625
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#Capabilities)
28626
+ */
28627
+ supportsTrueCurve: boolean;
28333
28628
  }
28334
28629
 
28335
28630
  export interface SceneLayerCapabilitiesQueryRelated {
@@ -45486,6 +45781,12 @@ declare namespace __esri {
45486
45781
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#capabilities)
45487
45782
  */
45488
45783
  supportsHistoricMoment: boolean;
45784
+ /**
45785
+ * Indicates if the layer supports requesting curves with [returnTrueCurves](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves).
45786
+ *
45787
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#capabilities)
45788
+ */
45789
+ supportsTrueCurve: boolean;
45489
45790
  }
45490
45791
 
45491
45792
  export interface WFSLayerCapabilitiesQueryRelated {
@@ -47872,7 +48173,7 @@ declare namespace __esri {
47872
48173
  *
47873
48174
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-networks-UtilityNetwork.html#isUtilityLayer)
47874
48175
  */
47875
- isUtilityLayer(layer: any | any): boolean;
48176
+ isUtilityLayer(layer: Layer | SubtypeSublayer): boolean;
47876
48177
  /**
47877
48178
  * Returns all associations filtered by the [QueryAssociationsParameters](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-networks-support-QueryAssociationsParameters.html) in a utility network.
47878
48179
  *
@@ -71185,6 +71486,12 @@ declare namespace __esri {
71185
71486
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnQueryGeometry)
71186
71487
  */
71187
71488
  returnQueryGeometry: boolean;
71489
+ /**
71490
+ * When `true` output geometry will include curves.
71491
+ *
71492
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves)
71493
+ */
71494
+ returnTrueCurves: boolean;
71188
71495
  /**
71189
71496
  * If `true`, and [returnGeometry](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnGeometry) is `true`, then z-values are included in the geometry.
71190
71497
  *
@@ -71401,6 +71708,12 @@ declare namespace __esri {
71401
71708
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnQueryGeometry)
71402
71709
  */
71403
71710
  returnQueryGeometry?: boolean;
71711
+ /**
71712
+ * When `true` output geometry will include curves.
71713
+ *
71714
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnTrueCurves)
71715
+ */
71716
+ returnTrueCurves?: boolean;
71404
71717
  /**
71405
71718
  * If `true`, and [returnGeometry](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#returnGeometry) is `true`, then z-values are included in the geometry.
71406
71719
  *
@@ -95117,6 +95430,51 @@ declare namespace __esri {
95117
95430
  bounds: number[];
95118
95431
  }
95119
95432
 
95433
+ export class HighlightGroup extends Accessor {
95434
+ /**
95435
+ * HighlightGroup class allows you to visually emphasize specific features on the map.
95436
+ *
95437
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html)
95438
+ */
95439
+
95440
+ constructor(properties?: HighlightGroupProperties);
95441
+
95442
+ /**
95443
+ * The name of the highlight group.
95444
+ *
95445
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html#name)
95446
+ */
95447
+ name: string;
95448
+ /**
95449
+ * The highlight options are used to highlight features on the map.
95450
+ *
95451
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html#options)
95452
+ */
95453
+ options: HighlightOptions;
95454
+
95455
+ /**
95456
+ * Creates a deep clone of the HighlightGroup object.
95457
+ *
95458
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html#clone)
95459
+ */
95460
+ clone(): HighlightGroup;
95461
+ }
95462
+
95463
+ interface HighlightGroupProperties {
95464
+ /**
95465
+ * The name of the highlight group.
95466
+ *
95467
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html#name)
95468
+ */
95469
+ name?: string;
95470
+ /**
95471
+ * The highlight options are used to highlight features on the map.
95472
+ *
95473
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html#options)
95474
+ */
95475
+ options?: HighlightOptions;
95476
+ }
95477
+
95120
95478
  export interface ViewState extends Accessor, JSONSupport {}
95121
95479
 
95122
95480
  export class ViewState {
@@ -98650,11 +99008,11 @@ declare namespace __esri {
98650
99008
  highlightOptions: HighlightOptions;
98651
99009
 
98652
99010
  /**
98653
- * Highlights the given feature(s) in a layer view.
99011
+ * Highlights the given feature(s) in a layer view using [options](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html#options) from a specific [HighlightGroup](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html) if the [name](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html#name) of the HighlightGroup is provided.
98654
99012
  *
98655
99013
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-HighlightLayerViewMixin.html#highlight)
98656
99014
  */
98657
- highlight(target?: Graphic | Graphic[] | number | number[] | string | string[]): Handle;
99015
+ highlight(target?: Graphic | Graphic[] | number | number[] | string | string[], group?: string): Handle;
98658
99016
  }
98659
99017
 
98660
99018
  interface HighlightLayerViewMixinProperties {
@@ -101569,6 +101927,12 @@ declare namespace __esri {
101569
101927
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#graphics)
101570
101928
  */
101571
101929
  graphics: Collection<Graphic>;
101930
+ /**
101931
+ * The highlights property is a collection of [HighlightGroup](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html) objects that allow you to visually emphasize specific features on the map.
101932
+ *
101933
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#highlights)
101934
+ */
101935
+ highlights: Collection;
101572
101936
  /**
101573
101937
  * Options to configure input handling of the View.
101574
101938
  *
@@ -101908,6 +102272,12 @@ declare namespace __esri {
101908
102272
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#graphics)
101909
102273
  */
101910
102274
  graphics?: CollectionProperties<GraphicProperties>;
102275
+ /**
102276
+ * The highlights property is a collection of [HighlightGroup](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-2d-support-HighlightGroup.html) objects that allow you to visually emphasize specific features on the map.
102277
+ *
102278
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#highlights)
102279
+ */
102280
+ highlights?: CollectionProperties;
101911
102281
  /**
101912
102282
  * A collection containing a hierarchical list of all the created [LayerViews](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html) of the [operational layers](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#layers) in the map.
101913
102283
  *
@@ -102403,6 +102773,8 @@ declare namespace __esri {
102403
102773
  /**
102404
102774
  * Options for configuring the highlight.
102405
102775
  *
102776
+ * @deprecated since version 4.32. Use the [highlights](#highlights) property instead.
102777
+ *
102406
102778
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#highlightOptions)
102407
102779
  */
102408
102780
  highlightOptions: HighlightOptions;
@@ -102542,6 +102914,8 @@ declare namespace __esri {
102542
102914
  /**
102543
102915
  * Options for configuring the highlight.
102544
102916
  *
102917
+ * @deprecated since version 4.32. Use the [highlights](#highlights) property instead.
102918
+ *
102545
102919
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#highlightOptions)
102546
102920
  */
102547
102921
  highlightOptions?: HighlightOptions;
@@ -104098,15 +104472,15 @@ declare namespace __esri {
104098
104472
 
104099
104473
  applyLayout(
104100
104474
  layoutMode:
104101
- | "RADIAL_TREE"
104102
- | "GEOGRAPHIC"
104103
- | "FORCE_DIRECTED"
104104
- | "COMMUNITY"
104105
- | "SIMPLE"
104106
- | "HIERARCHICAL"
104107
- | "SMART_TREE"
104108
- | "CHRONOLOGICAL_SINGLE"
104109
- | "CHRONOLOGICAL_MULTIPLE",
104475
+ | "radial-root-centric"
104476
+ | "geographic-organic-standard"
104477
+ | "organic-standard"
104478
+ | "organic-community"
104479
+ | "basic-grid"
104480
+ | "hierarchical-bottom-to-top"
104481
+ | "tree-left-to-right"
104482
+ | "chronological-mono-timeline"
104483
+ | "chronological-multi-timeline",
104110
104484
  options?: ApplyNewLayoutOptions
104111
104485
  ): Promise<void>;
104112
104486
 
@@ -114585,6 +114959,123 @@ declare namespace __esri {
114585
114959
  visibleElements?: FeatureVisibleElements;
114586
114960
  }
114587
114961
 
114962
+ /**
114963
+ * Provides the logic for the [Feature](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature.html) widget.
114964
+ *
114965
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html)
114966
+ */
114967
+ interface FeatureUtilityNetworkAssociationsViewModel {
114968
+ /**
114969
+ * Contains the associationLayer, the layer in which associations are stored.
114970
+ *
114971
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#associationsLayer)
114972
+ */
114973
+ readonly associationsLayer: FeatureLayer;
114974
+ /**
114975
+ * The query will search for the selected association type, which can be `connectivity`, `attachment`, or `containment`.
114976
+ *
114977
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#associationsType)
114978
+ */
114979
+ associationsType: string;
114980
+ /**
114981
+ * The description for the popup.
114982
+ *
114983
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#description)
114984
+ */
114985
+ description: string;
114986
+ /**
114987
+ * A numeric value indicating the maximum number of features to display in the list of associated features per layer.
114988
+ *
114989
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#displayCount)
114990
+ */
114991
+ displayCount: number;
114992
+ /**
114993
+ * The number of selected features available.
114994
+ *
114995
+ * @default 0
114996
+ *
114997
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#featureCount)
114998
+ */
114999
+ featureCount: number;
115000
+ /**
115001
+ * The global identifier for the feature.
115002
+ *
115003
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#globalId)
115004
+ */
115005
+ readonly globalId: string;
115006
+ /**
115007
+ * Specifies the field designated as the global ID for the feature.
115008
+ *
115009
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#globalIdField)
115010
+ */
115011
+ readonly globalIdField: string;
115012
+ /**
115013
+ * The graphic for the feature.
115014
+ *
115015
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#graphic)
115016
+ */
115017
+ graphic: Graphic;
115018
+ /**
115019
+ * The layer that contains `featureUtilityNetworkAssociationsViewModel.graphic`.
115020
+ *
115021
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#layer)
115022
+ */
115023
+ layer: FeatureLayer;
115024
+ /**
115025
+ * The map which contains the layer that contains `featureUtilityNetworkAssociationsViewModel.graphic`
115026
+ *
115027
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#map)
115028
+ */
115029
+ map: Map;
115030
+ /**
115031
+ * ObjectId of this feature that should be considered as primary key field of this feature class.
115032
+ *
115033
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#objectId)
115034
+ */
115035
+ readonly objectId: number;
115036
+ /**
115037
+ * The name of an `oid` containing a unique value or identifier for each feature in the layer.
115038
+ *
115039
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#objectIdField)
115040
+ */
115041
+ readonly objectIdField: string;
115042
+ /**
115043
+ * When true `showAllEnabled` removes the limit on queries.
115044
+ *
115045
+ * @default false
115046
+ *
115047
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#showAllEnabled)
115048
+ */
115049
+ showAllEnabled: boolean;
115050
+ /**
115051
+ * The state of the viewModel.
115052
+ *
115053
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#state)
115054
+ */
115055
+ state: any;
115056
+ /**
115057
+ * The title of the popup.
115058
+ *
115059
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#title)
115060
+ */
115061
+ title: string;
115062
+ /**
115063
+ * Determines the utility network to use.
115064
+ *
115065
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#utilityNetwork)
115066
+ */
115067
+ readonly utilityNetwork: UtilityNetwork;
115068
+
115069
+ /**
115070
+ * Refreshes the viewModel.
115071
+ *
115072
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html#refresh)
115073
+ */
115074
+ refresh(): void;
115075
+ }
115076
+
115077
+ export const FeatureUtilityNetworkAssociationsViewModel: FeatureUtilityNetworkAssociationsViewModel;
115078
+
114588
115079
  export class FeatureViewModel extends Accessor {
114589
115080
  /**
114590
115081
  * Provides the logic for the [Feature](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature.html) widget.
@@ -115080,6 +115571,12 @@ declare namespace __esri {
115080
115571
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#feature)
115081
115572
  */
115082
115573
  feature: Graphic;
115574
+ /**
115575
+ * The [FeatureUtilityNetworkAssociationsViewModel](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html) for supporting the editor widget.
115576
+ *
115577
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#FeatureUtilityNetworkAssociationsViewModel)
115578
+ */
115579
+ FeatureUtilityNetworkAssociationsViewModel: FeatureUtilityNetworkAssociationsViewModel;
115083
115580
  /**
115084
115581
  * The associated [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html) used for the form.
115085
115582
  *
@@ -115183,6 +115680,12 @@ declare namespace __esri {
115183
115680
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#feature)
115184
115681
  */
115185
115682
  feature?: GraphicProperties;
115683
+ /**
115684
+ * The [FeatureUtilityNetworkAssociationsViewModel](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Feature-FeatureUtilityNetworkAssociations-FeatureUtilityNetworkAssociationsViewModel.html) for supporting the editor widget.
115685
+ *
115686
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-FeatureFormViewModel.html#FeatureUtilityNetworkAssociationsViewModel)
115687
+ */
115688
+ FeatureUtilityNetworkAssociationsViewModel?: FeatureUtilityNetworkAssociationsViewModel;
115186
115689
  /**
115187
115690
  * The associated [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html) used for the form.
115188
115691
  *
@@ -145494,6 +145997,11 @@ declare module "esri/views/2d/ViewState" {
145494
145997
  export = ViewState;
145495
145998
  }
145496
145999
 
146000
+ declare module "esri/views/2d/support/HighlightGroup" {
146001
+ import HighlightGroup = __esri.HighlightGroup;
146002
+ export = HighlightGroup;
146003
+ }
146004
+
145497
146005
  declare module "esri/views/3d/analysis/AreaMeasurementAnalysisView3D" {
145498
146006
  import AreaMeasurementAnalysisView3D = __esri.AreaMeasurementAnalysisView3D;
145499
146007
  export = AreaMeasurementAnalysisView3D;
@@ -148154,6 +148662,11 @@ declare module "esri/widgets/BatchAttributeForm/BatchAttributeFormViewModel" {
148154
148662
  export = BatchAttributeFormViewModel;
148155
148663
  }
148156
148664
 
148665
+ declare module "esri/widgets/Feature/FeatureUtilityNetworkAssociations/FeatureUtilityNetworkAssociationsViewModel" {
148666
+ import FeatureUtilityNetworkAssociationsViewModel = __esri.FeatureUtilityNetworkAssociationsViewModel;
148667
+ export = FeatureUtilityNetworkAssociationsViewModel;
148668
+ }
148669
+
148157
148670
  declare module "esri/widgets/smartMapping/support/utils" {
148158
148671
  import smartMappingSupportUtils = __esri.smartMappingSupportUtils;
148159
148672
  export = smartMappingSupportUtils;