@arcgis/core-adapter 4.32.0-next.4 → 4.32.0-next.7

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.
@@ -1800,6 +1800,35 @@ declare namespace __esri {
1800
1800
 
1801
1801
  export const SceneViewerSymbolUtils: SceneViewerSymbolUtils;
1802
1802
 
1803
+ /**
1804
+ * Note: reserved for internal use only, this is not part of the stable public API.
1805
+ *
1806
+ * Mesh utilities for the Urban application.
1807
+ */
1808
+ interface UrbanMeshUtils {
1809
+ /**
1810
+ * Note: reserved for internal use only, this is not part of the stable public API.
1811
+ *
1812
+ * Converts a mesh to a new vertex space.
1813
+ */
1814
+ convertVertexSpaceEllipsoid(
1815
+ mesh: Mesh,
1816
+ targetVertexSpace: MeshGeoreferencedVertexSpace | MeshLocalVertexSpace,
1817
+ options?: meshUtilsConvertVertexSpaceEllipsoidOptions
1818
+ ): Promise<Mesh>;
1819
+ }
1820
+
1821
+ export const UrbanMeshUtils: UrbanMeshUtils;
1822
+
1823
+ export interface meshUtilsConvertVertexSpaceEllipsoidOptions {
1824
+ /**
1825
+ * An [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) to abort the animation.
1826
+ *
1827
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-applications-Urban-meshUtils.html#convertVertexSpaceEllipsoid)
1828
+ */
1829
+ signal?: AbortSignal;
1830
+ }
1831
+
1803
1832
  /**
1804
1833
  * Note: reserved for internal use only, this is not part of the stable public API.
1805
1834
  *
@@ -4535,7 +4564,7 @@ declare namespace __esri {
4535
4564
  /**
4536
4565
  * Defines the minimum number of attachments required for this element.
4537
4566
  *
4538
- * @default 0
4567
+ * @default null
4539
4568
  *
4540
4569
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-AttachmentElement.html#minAttachmentCount)
4541
4570
  */
@@ -4631,7 +4660,7 @@ declare namespace __esri {
4631
4660
  /**
4632
4661
  * Defines the minimum number of attachments required for this element.
4633
4662
  *
4634
- * @default 0
4663
+ * @default null
4635
4664
  *
4636
4665
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-AttachmentElement.html#minAttachmentCount)
4637
4666
  */
@@ -4911,6 +4940,14 @@ declare namespace __esri {
4911
4940
 
4912
4941
  constructor(properties?: AttachmentInputProperties);
4913
4942
 
4943
+ /**
4944
+ * String value which indicates if existing attachments should be associated with the element and how they should be associated.
4945
+ *
4946
+ * @default "exact"
4947
+ *
4948
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs-attachments-AttachmentInput.html#attachmentAssociationType)
4949
+ */
4950
+ attachmentAssociationType: "any" | "exact" | "exactOrNone";
4914
4951
  /**
4915
4952
  * Available inputs to add an attachment.
4916
4953
  *
@@ -4930,6 +4967,14 @@ declare namespace __esri {
4930
4967
  }
4931
4968
 
4932
4969
  interface AttachmentInputProperties {
4970
+ /**
4971
+ * String value which indicates if existing attachments should be associated with the element and how they should be associated.
4972
+ *
4973
+ * @default "exact"
4974
+ *
4975
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs-attachments-AttachmentInput.html#attachmentAssociationType)
4976
+ */
4977
+ attachmentAssociationType?: "any" | "exact" | "exactOrNone";
4933
4978
  /**
4934
4979
  * Available inputs to add an attachment.
4935
4980
  *
@@ -8200,6 +8245,73 @@ declare namespace __esri {
8200
8245
  points?: number[][];
8201
8246
  }
8202
8247
 
8248
+ /**
8249
+ * Applies an affine transformation to 2D geometries via the [Transformation](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html) class.
8250
+ *
8251
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-affineTransformOperator.html)
8252
+ */
8253
+ interface affineTransformOperator {
8254
+ /**
8255
+ * Executes an affine transformation on the geometry.
8256
+ *
8257
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-affineTransformOperator.html#execute)
8258
+ */
8259
+ execute(geometry: Geometry, transformation: Transformation): Geometry;
8260
+ /**
8261
+ * Executes an affine transformation on multiple geometries.
8262
+ *
8263
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-affineTransformOperator.html#executeMany)
8264
+ */
8265
+ executeMany(geometries: Geometry[], transformation: Transformation): Geometry[];
8266
+ }
8267
+
8268
+ export const affineTransformOperator: affineTransformOperator;
8269
+
8270
+ /**
8271
+ * Returns the planar area of a 2D geometry in its spatial reference units.
8272
+ *
8273
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-areaOperator.html)
8274
+ */
8275
+ interface areaOperator {
8276
+ /**
8277
+ * Calculates the planar area of the input geometry.
8278
+ *
8279
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-areaOperator.html#execute)
8280
+ */
8281
+ execute(geometry: Geometry): number;
8282
+ }
8283
+
8284
+ export const areaOperator: areaOperator;
8285
+
8286
+ /**
8287
+ * Creates planar buffers around 2D geometries.
8288
+ *
8289
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html)
8290
+ */
8291
+ interface bufferOperator {
8292
+ /**
8293
+ * Creates a buffer around the input geometry.
8294
+ *
8295
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#execute)
8296
+ */
8297
+ execute(geometry: Geometry, distance: number, unit?: LengthUnit): Geometry;
8298
+ /**
8299
+ * Creates a buffer around the input geometries.
8300
+ *
8301
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#executeMany)
8302
+ */
8303
+ executeMany(
8304
+ geometries: Geometry[],
8305
+ distances: number[],
8306
+ unit?: LengthUnit,
8307
+ maxDeviation?: number,
8308
+ maxVerticesInFullCircle?: number,
8309
+ union?: boolean
8310
+ ): Geometry[];
8311
+ }
8312
+
8313
+ export const bufferOperator: bufferOperator;
8314
+
8203
8315
  /**
8204
8316
  * Calculates the centroid for a 2D geometry.
8205
8317
  *
@@ -8211,7 +8323,7 @@ declare namespace __esri {
8211
8323
  *
8212
8324
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-centroidOperator.html#execute)
8213
8325
  */
8214
- execute(geom: Geometry): Point;
8326
+ execute(geometry: Geometry): Point;
8215
8327
  }
8216
8328
 
8217
8329
  export const centroidOperator: centroidOperator;
@@ -8227,7 +8339,7 @@ declare namespace __esri {
8227
8339
  *
8228
8340
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-clipOperator.html#execute)
8229
8341
  */
8230
- execute(geom: Geometry, extent: Extent): Geometry;
8342
+ execute(geometry: Geometry, extent: Extent): Geometry;
8231
8343
  /**
8232
8344
  * Perform the clip operation on the input geometries.
8233
8345
  *
@@ -8249,11 +8361,39 @@ declare namespace __esri {
8249
8361
  *
8250
8362
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html#execute)
8251
8363
  */
8252
- execute(geom1: Geometry, geom2: Geometry): boolean;
8364
+ execute(geometry1: Geometry, geometry2: Geometry): boolean;
8253
8365
  }
8254
8366
 
8255
8367
  export const containsOperator: containsOperator;
8256
8368
 
8369
+ /**
8370
+ * Calculates the convex hull of 2D geometries.
8371
+ *
8372
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html)
8373
+ */
8374
+ interface convexHullOperator {
8375
+ /**
8376
+ * Calculates the convex hull geometry.
8377
+ *
8378
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#execute)
8379
+ */
8380
+ execute(geometry: Geometry): Geometry;
8381
+ /**
8382
+ * Calculates the convex hull.
8383
+ *
8384
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#executeMany)
8385
+ */
8386
+ executeMany(geometries: Geometry[], merge?: boolean): Geometry[];
8387
+ /**
8388
+ * Checks if a geometry is convex.
8389
+ *
8390
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#isConvex)
8391
+ */
8392
+ isConvex(geometry: Geometry): boolean;
8393
+ }
8394
+
8395
+ export const convexHullOperator: convexHullOperator;
8396
+
8257
8397
  /**
8258
8398
  * Performs a relational operation to determine if one 2D geometry crosses another 2D geometry.
8259
8399
  *
@@ -8265,7 +8405,7 @@ declare namespace __esri {
8265
8405
  *
8266
8406
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html#execute)
8267
8407
  */
8268
- execute(geom1: Geometry, geom2: Geometry): boolean;
8408
+ execute(geometry1: Geometry, geometry2: Geometry): boolean;
8269
8409
  }
8270
8410
 
8271
8411
  export const crossesOperator: crossesOperator;
@@ -8281,7 +8421,7 @@ declare namespace __esri {
8281
8421
  *
8282
8422
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-cutOperator.html#execute)
8283
8423
  */
8284
- execute(cuttee: Geometry, cutter: Polyline): Geometry[];
8424
+ execute(geometry: Geometry, polyline: Polyline): Geometry[];
8285
8425
  }
8286
8426
 
8287
8427
  export const cutOperator: cutOperator;
@@ -8297,13 +8437,18 @@ declare namespace __esri {
8297
8437
  *
8298
8438
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#execute)
8299
8439
  */
8300
- execute(geom: Geometry, maxSegmentLength: number, maxDeviation?: number, maxAngle?: number): Geometry;
8440
+ execute(geometry: Geometry, maxSegmentLength: number, maxDeviation?: number, maxAngleInDegrees?: number): Geometry;
8301
8441
  /**
8302
8442
  * Performs the Densify operation on the geometry set.
8303
8443
  *
8304
8444
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#executeMany)
8305
8445
  */
8306
- executeMany(geometries: Geometry[], maxSegmentLength: number, maxDeviation?: number, maxAngle?: number): Geometry[];
8446
+ executeMany(
8447
+ geometries: Geometry[],
8448
+ maxSegmentLength: number,
8449
+ maxDeviation?: number,
8450
+ maxAngleInDegrees?: number
8451
+ ): Geometry[];
8307
8452
  }
8308
8453
 
8309
8454
  export const densifyOperator: densifyOperator;
@@ -8341,7 +8486,7 @@ declare namespace __esri {
8341
8486
  *
8342
8487
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html#execute)
8343
8488
  */
8344
- execute(geom1: Geometry, geom2: Geometry): boolean;
8489
+ execute(geometry1: Geometry, geometry2: Geometry): boolean;
8345
8490
  }
8346
8491
 
8347
8492
  export const disjointOperator: disjointOperator;
@@ -8357,7 +8502,7 @@ declare namespace __esri {
8357
8502
  *
8358
8503
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-distanceOperator.html#execute)
8359
8504
  */
8360
- execute(geom1: Geometry, geom2: Geometry): number;
8505
+ execute(geometry1: Geometry, geometry2: Geometry, unit?: LengthUnit): number;
8361
8506
  }
8362
8507
 
8363
8508
  export const distanceOperator: distanceOperator;
@@ -8373,7 +8518,7 @@ declare namespace __esri {
8373
8518
  *
8374
8519
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html#execute)
8375
8520
  */
8376
- execute(geom1: Geometry, geom2: Geometry): boolean;
8521
+ execute(geometry1: Geometry, geometry2: Geometry): boolean;
8377
8522
  }
8378
8523
 
8379
8524
  export const equalsOperator: equalsOperator;
@@ -8389,7 +8534,7 @@ declare namespace __esri {
8389
8534
  *
8390
8535
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#execute)
8391
8536
  */
8392
- execute(geom: Geometry, maxDeviation: number, removeDegenerateParts?: boolean): Geometry;
8537
+ execute(geometry: Geometry, maxDeviation: number, removeDegenerateParts?: boolean): Geometry;
8393
8538
  /**
8394
8539
  * Performs the generalize operation on the input geometries.
8395
8540
  *
@@ -8412,7 +8557,7 @@ declare namespace __esri {
8412
8557
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#execute)
8413
8558
  */
8414
8559
  execute(
8415
- geom: Geometry,
8560
+ geometry: Geometry,
8416
8561
  distanceMeters: number,
8417
8562
  curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving",
8418
8563
  maxDeviationMeters?: number
@@ -8445,6 +8590,37 @@ declare namespace __esri {
8445
8590
 
8446
8591
  export const geodesicBufferOperator: geodesicBufferOperator;
8447
8592
 
8593
+ /**
8594
+ * Returns the geodetic area of a 2D geometry.
8595
+ *
8596
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html)
8597
+ */
8598
+ interface geodeticAreaOperator {
8599
+ /**
8600
+ * Calculates the geodetic area of the input Geometry.
8601
+ *
8602
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html#execute)
8603
+ */
8604
+ execute(
8605
+ geometry: Geometry,
8606
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving"
8607
+ ): number;
8608
+ /**
8609
+ * Indicates if all dependencies of this module have been loaded.
8610
+ *
8611
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html#isLoaded)
8612
+ */
8613
+ isLoaded(): boolean;
8614
+ /**
8615
+ * Loads this module's dependencies.
8616
+ *
8617
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html#load)
8618
+ */
8619
+ load(): Promise<any>;
8620
+ }
8621
+
8622
+ export const geodeticAreaOperator: geodeticAreaOperator;
8623
+
8448
8624
  /**
8449
8625
  * Densifies line segments by length in a 2D plane, making them run along specified geodetic curves.
8450
8626
  *
@@ -8457,7 +8633,7 @@ declare namespace __esri {
8457
8633
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#execute)
8458
8634
  */
8459
8635
  execute(
8460
- geom: Geometry,
8636
+ geometry: Geometry,
8461
8637
  maxSegmentLengthMeters: number,
8462
8638
  curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving"
8463
8639
  ): Geometry;
@@ -8499,8 +8675,8 @@ declare namespace __esri {
8499
8675
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDistanceOperator.html#execute)
8500
8676
  */
8501
8677
  execute(
8502
- geom1: Geometry,
8503
- geom2: Geometry,
8678
+ geometry1: Geometry,
8679
+ geometry2: Geometry,
8504
8680
  curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection"
8505
8681
  ): number;
8506
8682
  /**
@@ -8519,6 +8695,62 @@ declare namespace __esri {
8519
8695
 
8520
8696
  export const geodeticDistanceOperator: geodeticDistanceOperator;
8521
8697
 
8698
+ /**
8699
+ * Returns the geodetic length of a 2D geometry.
8700
+ *
8701
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html)
8702
+ */
8703
+ interface geodeticLengthOperator {
8704
+ /**
8705
+ * Calculates the geodetic length of the input Geometry.
8706
+ *
8707
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html#execute)
8708
+ */
8709
+ execute(
8710
+ geometry: Geometry,
8711
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving"
8712
+ ): number;
8713
+ /**
8714
+ * Indicates if all dependencies of this module have been loaded.
8715
+ *
8716
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html#isLoaded)
8717
+ */
8718
+ isLoaded(): boolean;
8719
+ /**
8720
+ * Loads this module's dependencies.
8721
+ *
8722
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html#load)
8723
+ */
8724
+ load(): Promise<any>;
8725
+ }
8726
+
8727
+ export const geodeticLengthOperator: geodeticLengthOperator;
8728
+
8729
+ /**
8730
+ * Creates planar buffers around 2D geometries using graphical joins and caps.
8731
+ *
8732
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html)
8733
+ */
8734
+ interface graphicBufferOperator {
8735
+ /**
8736
+ * Creates a buffer around the input geometries, using graphical joins and caps.
8737
+ *
8738
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html#executeMany)
8739
+ */
8740
+ executeMany(
8741
+ geometries: Geometry[],
8742
+ distances: number[],
8743
+ joins: "round" | "miter" | "bevel",
8744
+ caps: "round" | "butt" | "square",
8745
+ miterLimit: number,
8746
+ maxDeviation?: number,
8747
+ maxVerticesInFullCircle?: number,
8748
+ union?: boolean
8749
+ ): Geometry[];
8750
+ }
8751
+
8752
+ export const graphicBufferOperator: graphicBufferOperator;
8753
+
8522
8754
  /**
8523
8755
  * Create new geometries using the topological intersection of 2D geometries.
8524
8756
  *
@@ -8530,7 +8762,7 @@ declare namespace __esri {
8530
8762
  *
8531
8763
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#execute)
8532
8764
  */
8533
- execute(geom: Geometry, intersector: Geometry): Geometry;
8765
+ execute(geometry1: Geometry, geometry2: Geometry): Geometry;
8534
8766
  /**
8535
8767
  * Performs the topological intersection operation on the geometry set.
8536
8768
  *
@@ -8552,11 +8784,61 @@ declare namespace __esri {
8552
8784
  *
8553
8785
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html#execute)
8554
8786
  */
8555
- execute(geom1: Geometry, geom2: Geometry): boolean;
8787
+ execute(geometry1: Geometry, geometry2: Geometry): boolean;
8556
8788
  }
8557
8789
 
8558
8790
  export const intersectsOperator: intersectsOperator;
8559
8791
 
8792
+ /**
8793
+ * Returns the planar length of a 2D geometry in its spatial reference units.
8794
+ *
8795
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-lengthOperator.html)
8796
+ */
8797
+ interface lengthOperator {
8798
+ /**
8799
+ * Calculates the planar length of the input geometry.
8800
+ *
8801
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-lengthOperator.html#execute)
8802
+ */
8803
+ execute(geometry: Geometry): number;
8804
+ }
8805
+
8806
+ export const lengthOperator: lengthOperator;
8807
+
8808
+ /**
8809
+ * Offset 2D geometries.
8810
+ *
8811
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html)
8812
+ */
8813
+ interface offsetOperator {
8814
+ /**
8815
+ * Creates an offset version of the input geometry.
8816
+ *
8817
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#execute)
8818
+ */
8819
+ execute(
8820
+ geometry: Geometry,
8821
+ distance: number,
8822
+ joins?: "round" | "miter" | "bevel" | "square",
8823
+ bevelRatio?: number,
8824
+ flattenError?: number
8825
+ ): Geometry;
8826
+ /**
8827
+ * Creates offset versions of the input geometries.
8828
+ *
8829
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#executeMany)
8830
+ */
8831
+ executeMany(
8832
+ geometries: Geometry[],
8833
+ distance: number,
8834
+ joins?: "round" | "miter" | "bevel" | "square",
8835
+ bevelRatio?: number,
8836
+ flattenError?: number
8837
+ ): Geometry[];
8838
+ }
8839
+
8840
+ export const offsetOperator: offsetOperator;
8841
+
8560
8842
  /**
8561
8843
  * Performs a relational operation to determine if two 2D geometries of the same dimension overlap.
8562
8844
  *
@@ -8568,7 +8850,7 @@ declare namespace __esri {
8568
8850
  *
8569
8851
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html#execute)
8570
8852
  */
8571
- execute(geom1: Geometry, geom2: Geometry): boolean;
8853
+ execute(geometry1: Geometry, geometry2: Geometry): boolean;
8572
8854
  }
8573
8855
 
8574
8856
  export const overlapsOperator: overlapsOperator;
@@ -8585,8 +8867,8 @@ declare namespace __esri {
8585
8867
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate)
8586
8868
  */
8587
8869
  getNearestCoordinate(
8588
- geom: Geometry,
8589
- inputPoint: Point,
8870
+ geometry: Geometry,
8871
+ point: Point,
8590
8872
  testPolygonInterior?: boolean,
8591
8873
  calculateLeftRightSide?: boolean
8592
8874
  ): ProximityResult;
@@ -8595,15 +8877,15 @@ declare namespace __esri {
8595
8877
  *
8596
8878
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertex)
8597
8879
  */
8598
- getNearestVertex(geom: Geometry, inputPoint: Point): ProximityResult;
8880
+ getNearestVertex(geometry: Geometry, point: Point): ProximityResult;
8599
8881
  /**
8600
8882
  * Returns vertices of the geometry that are closer to the given point than the given radius.
8601
8883
  *
8602
8884
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertices)
8603
8885
  */
8604
8886
  getNearestVertices(
8605
- geom: Geometry,
8606
- inputPoint: Point,
8887
+ geometry: Geometry,
8888
+ point: Point,
8607
8889
  searchRadius: number,
8608
8890
  maxVertexCountToReturn: number
8609
8891
  ): ProximityResult[];
@@ -8655,7 +8937,7 @@ declare namespace __esri {
8655
8937
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-relateOperator.html)
8656
8938
  */
8657
8939
  interface relateOperator {
8658
- execute(geom1: Geometry, geom2: Geometry, relation: string): boolean;
8940
+ execute(geometry1: Geometry, geometry2: Geometry, relation: string): boolean;
8659
8941
 
8660
8942
  isValidDE9IM(relation: void): void;
8661
8943
  }
@@ -8673,7 +8955,7 @@ declare namespace __esri {
8673
8955
  *
8674
8956
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#execute)
8675
8957
  */
8676
- execute(geom: Geometry): Geometry;
8958
+ execute(geometry: Geometry): Geometry;
8677
8959
  /**
8678
8960
  * Performs the simplify operation on the geometry set.
8679
8961
  *
@@ -8685,11 +8967,118 @@ declare namespace __esri {
8685
8967
  *
8686
8968
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#isSimple)
8687
8969
  */
8688
- isSimple(geom: Geometry): boolean;
8970
+ isSimple(geometry: Geometry): boolean;
8689
8971
  }
8690
8972
 
8691
8973
  export const simplifyOperator: simplifyOperator;
8692
8974
 
8975
+ export class Transformation {
8976
+ /**
8977
+ * Calculates distance errors for a transformation on a given set of the input points to the output points.
8978
+ *
8979
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#calculateErrors)
8980
+ */
8981
+ calculateErrors(input: Point[], output: Point[]): ErrorResult;
8982
+ /**
8983
+ * Flips all the `x` coordinates of geometries on the vertical y-axis (right or left) that is centered between `x0` and `x1`.
8984
+ *
8985
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#flipX)
8986
+ */
8987
+ flipX(x0: number, x1: number): void;
8988
+ /**
8989
+ * Flips all the `y` coordinates of geometries on the horizontal x-axis (up or down) that is centered between `y0` and `y1`.
8990
+ *
8991
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#flipY)
8992
+ */
8993
+ flipY(y0: number, y1: number): void;
8994
+ /**
8995
+ * Initializes a new transformation from the input and output control points.
8996
+ *
8997
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#initializeFromControlPoints)
8998
+ */
8999
+ initializeFromControlPoints(type: "conformal" | "general", input: Point[], output: Point[], inverseOut?: any): void;
9000
+ /**
9001
+ * Determines if the transformation is in its default state, which is an identity matrix.
9002
+ *
9003
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#isIdentity)
9004
+ */
9005
+ isIdentity(): boolean;
9006
+ /**
9007
+ * Rotates the geometries by the specified angle in degrees around the point specified by the x and y coordinates.
9008
+ *
9009
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#rotate)
9010
+ */
9011
+ rotate(angleInDegrees: number, rotationX: number, rotationY: number): void;
9012
+ /**
9013
+ * Resizes the geometries by the specified scale factors defined by the x and y coordinates.
9014
+ *
9015
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#scale)
9016
+ */
9017
+ scale(x: number, y: number): void;
9018
+ /**
9019
+ * Use this method to reset the transformation to its default state, which is an identity matrix.
9020
+ *
9021
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#setIdentity)
9022
+ */
9023
+ setIdentity(): void;
9024
+ /**
9025
+ * 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.
9026
+ *
9027
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#shear)
9028
+ */
9029
+ shear(proportionX: number, proportionY: number): void;
9030
+ /**
9031
+ * Shifts all the coordinates of the geometries by the distance and direction between the specified `x` and `y` coordinates and their current location.
9032
+ *
9033
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#shift)
9034
+ */
9035
+ shift(x: number, y: number): void;
9036
+
9037
+ constructor();
9038
+ }
9039
+
9040
+ /**
9041
+ * Object returned from the [calculateErrors()](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#calculateErrors) method.
9042
+ *
9043
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#ErrorResult)
9044
+ */
9045
+ export interface ErrorResult {
9046
+ /**
9047
+ * The root mean square (`rms`) of the 'average' distance error between the specified `output` points and the transformed `input` points.
9048
+ *
9049
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#ErrorResult)
9050
+ */
9051
+ rms: number;
9052
+ /**
9053
+ * Contains the errors of the individual distance differences between specific pairs of points.
9054
+ *
9055
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-support-Transformation.html#ErrorResult)
9056
+ */
9057
+ errorsOut: number[];
9058
+ }
9059
+
9060
+ /**
9061
+ * Returns the symmetric difference between 2D geometries, also known as exclusive OR, or XOR.
9062
+ *
9063
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-symmetricDifferenceOperator.html)
9064
+ */
9065
+ interface symmetricDifferenceOperator {
9066
+ /**
9067
+ * Performs the symmetric difference (XOR) operation on two geometries.
9068
+ *
9069
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-symmetricDifferenceOperator.html#execute)
9070
+ */
9071
+ execute(leftGeometry: Geometry, rightGeometry: Geometry): Geometry;
9072
+ /**
9073
+ * Performs the symmetric difference (XOR) operation on every geometry in `inputGeometries` with `rightGeometry`.
9074
+ *
9075
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-symmetricDifferenceOperator.html#executeMany)
9076
+ */
9077
+ executeMany(inputGeometries: Geometry[], rightGeometry: Geometry): Geometry[];
9078
+ }
9079
+
9080
+ export const symmetricDifferenceOperator: symmetricDifferenceOperator;
9081
+
8693
9082
  /**
8694
9083
  * Perform a relational operation to determine if one 2D geometry touches another 2D geometry.
8695
9084
  *
@@ -8701,7 +9090,7 @@ declare namespace __esri {
8701
9090
  *
8702
9091
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html#execute)
8703
9092
  */
8704
- execute(geom1: Geometry, geom2: Geometry): boolean;
9093
+ execute(geometry1: Geometry, geometry2: Geometry): boolean;
8705
9094
  }
8706
9095
 
8707
9096
  export const touchesOperator: touchesOperator;
@@ -8717,7 +9106,7 @@ declare namespace __esri {
8717
9106
  *
8718
9107
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-unionOperator.html#execute)
8719
9108
  */
8720
- execute(geom1: Geometry, geom2: Geometry): Geometry;
9109
+ execute(geometry1: Geometry, geometry2: Geometry): Geometry;
8721
9110
  /**
8722
9111
  * Perform a topological union operation on a geometry set.
8723
9112
  *
@@ -8739,7 +9128,7 @@ declare namespace __esri {
8739
9128
  *
8740
9129
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html#execute)
8741
9130
  */
8742
- execute(innerGeometry: Geometry, outerGeometry: Geometry): boolean;
9131
+ execute(inner: Geometry, outer: Geometry): boolean;
8743
9132
  }
8744
9133
 
8745
9134
  export const withinOperator: withinOperator;
@@ -9864,7 +10253,7 @@ declare namespace __esri {
9864
10253
  *
9865
10254
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-MeshTexture.html#data)
9866
10255
  */
9867
- data: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageData;
10256
+ data: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageData | CompressedTextureData;
9868
10257
  /**
9869
10258
  * Indicates whether the image data should be interpreted as being semi-transparent.
9870
10259
  *
@@ -9902,7 +10291,12 @@ declare namespace __esri {
9902
10291
  *
9903
10292
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-MeshTexture.html#data)
9904
10293
  */
9905
- data?: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageData;
10294
+ data?:
10295
+ | HTMLImageElement
10296
+ | HTMLCanvasElement
10297
+ | HTMLVideoElement
10298
+ | ImageData
10299
+ | (CompressedTextureData & { type: "encoded-mesh-texture" });
9906
10300
  /**
9907
10301
  * Indicates whether the image data should be interpreted as being semi-transparent.
9908
10302
  *
@@ -9927,6 +10321,32 @@ declare namespace __esri {
9927
10321
  wrap?: "clamp" | "repeat" | "mirror" | SeparableWrapModes;
9928
10322
  }
9929
10323
 
10324
+ /**
10325
+ * The definition of compressed texture data.
10326
+ *
10327
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-MeshTexture.html#CompressedTextureData)
10328
+ */
10329
+ export interface CompressedTextureData {
10330
+ /**
10331
+ * The type.
10332
+ *
10333
+ * [Read more...](global.html#type)
10334
+ */
10335
+ type: "encoded-mesh-texture";
10336
+ /**
10337
+ * The texture encoding.
10338
+ *
10339
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-MeshTexture.html#CompressedTextureData)
10340
+ */
10341
+ encoding: "image/ktx2";
10342
+ /**
10343
+ * The compressed texture data.
10344
+ *
10345
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-MeshTexture.html#CompressedTextureData)
10346
+ */
10347
+ data: Uint8Array;
10348
+ }
10349
+
9930
10350
  /**
9931
10351
  * A separable wrap configuration for horizontal and vertical wrapping modes.
9932
10352
  *
@@ -12359,6 +12779,18 @@ declare namespace __esri {
12359
12779
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-BuildingSceneLayer.html#loadAll)
12360
12780
  */
12361
12781
  loadAll(): Promise<BuildingSceneLayer>;
12782
+ /**
12783
+ * 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.
12784
+ *
12785
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-BuildingSceneLayer.html#save)
12786
+ */
12787
+ save(): Promise<PortalItem>;
12788
+ /**
12789
+ * 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.
12790
+ *
12791
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-BuildingSceneLayer.html#saveAs)
12792
+ */
12793
+ saveAs(portalItem: PortalItem, options?: BuildingSceneLayerSaveAsOptions): Promise<PortalItem>;
12362
12794
 
12363
12795
  static fromJSON(json: any): BuildingSceneLayer;
12364
12796
  }
@@ -12430,6 +12862,15 @@ declare namespace __esri {
12430
12862
  unit?: ElevationUnit;
12431
12863
  }
12432
12864
 
12865
+ export interface BuildingSceneLayerSaveAsOptions {
12866
+ /**
12867
+ * the folder where to save the item.
12868
+ *
12869
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-BuildingSceneLayer.html#saveAs)
12870
+ */
12871
+ folder?: PortalFolder;
12872
+ }
12873
+
12433
12874
  export interface BuildingComponentSublayer extends BuildingSublayer, Loadable {}
12434
12875
 
12435
12876
  export class BuildingComponentSublayer {
@@ -18100,6 +18541,19 @@ declare namespace __esri {
18100
18541
 
18101
18542
  readonly type: "integrated-mesh";
18102
18543
 
18544
+ /**
18545
+ * 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.
18546
+ *
18547
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-IntegratedMeshLayer.html#save)
18548
+ */
18549
+ save(): Promise<PortalItem>;
18550
+ /**
18551
+ * 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.
18552
+ *
18553
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-IntegratedMeshLayer.html#saveAs)
18554
+ */
18555
+ saveAs(portalItem: PortalItem, options?: IntegratedMeshLayerSaveAsOptions): Promise<PortalItem>;
18556
+
18103
18557
  static fromJSON(json: any): IntegratedMeshLayer;
18104
18558
  }
18105
18559
 
@@ -18146,6 +18600,15 @@ declare namespace __esri {
18146
18600
  unit?: ElevationUnit;
18147
18601
  }
18148
18602
 
18603
+ export interface IntegratedMeshLayerSaveAsOptions {
18604
+ /**
18605
+ * the folder where to save the item.
18606
+ *
18607
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-IntegratedMeshLayer.html#saveAs)
18608
+ */
18609
+ folder?: PortalFolder;
18610
+ }
18611
+
18149
18612
  export interface KMLLayer extends Layer, OperationalLayer, PortalLayer, ScaleRangeLayer, BlendLayer {}
18150
18613
 
18151
18614
  export class KMLLayer {
@@ -22775,6 +23238,151 @@ declare namespace __esri {
22775
23238
  timeOffset?: TimeIntervalProperties;
22776
23239
  }
22777
23240
 
23241
+ /**
23242
+ * Provides utility functions for the [WCSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html).
23243
+ *
23244
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html)
23245
+ */
23246
+ interface wcsUtils {
23247
+ /**
23248
+ * Fetches the capabilities metadata offered by the WCS service, including supported versions and coverages information.
23249
+ *
23250
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#getCapabilities)
23251
+ */
23252
+ getCapabilities(url: string, options?: wcsUtilsGetCapabilitiesOptions): Promise<WCSCapabilities>;
23253
+ }
23254
+
23255
+ export const wcsUtils: wcsUtils;
23256
+
23257
+ /**
23258
+ * Coverage information associated with a WCS service.
23259
+ *
23260
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#CoverageBrief)
23261
+ */
23262
+ export interface CoverageBrief {
23263
+ /**
23264
+ * The id of the coverage.
23265
+ *
23266
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#CoverageBrief)
23267
+ */
23268
+ id?: string;
23269
+ /**
23270
+ * The extent of the coverage.
23271
+ *
23272
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#CoverageBrief)
23273
+ */
23274
+ lonLatEnvelope?: Extent;
23275
+ /**
23276
+ * The subtype of the coverage.
23277
+ *
23278
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#CoverageBrief)
23279
+ */
23280
+ coverageSubType?: string;
23281
+ }
23282
+
23283
+ /**
23284
+ * A list of URLs for the WCS service resources.
23285
+ *
23286
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#OnlineResources)
23287
+ */
23288
+ export interface OnlineResources {
23289
+ /**
23290
+ * The URL to the getCapabilities endpoint.
23291
+ *
23292
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#OnlineResources)
23293
+ */
23294
+ getCapabilities: string;
23295
+ /**
23296
+ * The URL to the describeCoverage endpoint.
23297
+ *
23298
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#OnlineResources)
23299
+ */
23300
+ describeCoverage: string;
23301
+ /**
23302
+ * The URL to the getCoverage endpoint.
23303
+ *
23304
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#OnlineResources)
23305
+ */
23306
+ getCoverage: string;
23307
+ }
23308
+
23309
+ /**
23310
+ * WCS service information about the available coverages, versions, extensions and more.
23311
+ *
23312
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23313
+ */
23314
+ export interface WCSCapabilities {
23315
+ /**
23316
+ * Name of the WCS service.
23317
+ *
23318
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23319
+ */
23320
+ name: string;
23321
+ /**
23322
+ * Online resources for the WCS service.
23323
+ *
23324
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23325
+ */
23326
+ onlineResources: OnlineResources;
23327
+ /**
23328
+ * Information about the available coverages.
23329
+ *
23330
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23331
+ */
23332
+ coverages: CoverageBrief[];
23333
+ /**
23334
+ * Information about the available grid coverages.
23335
+ *
23336
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23337
+ */
23338
+ gridCoverages: CoverageBrief[];
23339
+ /**
23340
+ * The versions supported by the WCS service.
23341
+ *
23342
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23343
+ */
23344
+ supportedVersions: string[];
23345
+ /**
23346
+ * The WCS service version.
23347
+ *
23348
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23349
+ */
23350
+ version: "1.0.0" | "1.1.0" | "1.1.1" | "1.1.2" | "2.0.1";
23351
+ /**
23352
+ * Formats supported by the WCS service.
23353
+ *
23354
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23355
+ */
23356
+ supportedFormats?: string[];
23357
+ /**
23358
+ * Application profiles supported by the WCS service.
23359
+ *
23360
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23361
+ */
23362
+ profiles?: string[];
23363
+ /**
23364
+ * Interpolations supported by the WCS service.
23365
+ *
23366
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#WCSCapabilities)
23367
+ */
23368
+ supportedInterpolations?: string[];
23369
+ }
23370
+
23371
+ export interface wcsUtilsGetCapabilitiesOptions {
23372
+ /**
23373
+ * A list of key-value pairs of parameters to append to the url.
23374
+ *
23375
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#getCapabilities)
23376
+ */
23377
+ customParameters?: any;
23378
+ /**
23379
+ * An [AbortSignal](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) to abort the executions of the remote method.
23380
+ *
23381
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ogc-wcsUtils.html#getCapabilities)
23382
+ */
23383
+ signal?: AbortSignal;
23384
+ }
23385
+
22778
23386
  /**
22779
23387
  * Provides utility functions for the [WFSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html).
22780
23388
  *
@@ -24433,6 +25041,18 @@ declare namespace __esri {
24433
25041
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-PointCloudLayer.html#queryCachedStatistics)
24434
25042
  */
24435
25043
  queryCachedStatistics(fieldName: string, options?: PointCloudLayerQueryCachedStatisticsOptions): any;
25044
+ /**
25045
+ * 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.
25046
+ *
25047
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-PointCloudLayer.html#save)
25048
+ */
25049
+ save(): Promise<PortalItem>;
25050
+ /**
25051
+ * 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.
25052
+ *
25053
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-PointCloudLayer.html#saveAs)
25054
+ */
25055
+ saveAs(portalItem: PortalItem, options?: PointCloudLayerSaveAsOptions): Promise<PortalItem>;
24436
25056
 
24437
25057
  static fromJSON(json: any): PointCloudLayer;
24438
25058
  }
@@ -24535,6 +25155,15 @@ declare namespace __esri {
24535
25155
  signal?: AbortSignal;
24536
25156
  }
24537
25157
 
25158
+ export interface PointCloudLayerSaveAsOptions {
25159
+ /**
25160
+ * the folder where to save the item.
25161
+ *
25162
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-PointCloudLayer.html#saveAs)
25163
+ */
25164
+ folder?: PortalFolder;
25165
+ }
25166
+
24538
25167
  export interface RouteLayer extends Layer, BlendLayer, OperationalLayer, PortalLayer, ScaleRangeLayer {}
24539
25168
 
24540
25169
  export class RouteLayer {
@@ -25056,6 +25685,18 @@ declare namespace __esri {
25056
25685
  relationshipQuery: RelationshipQuery | RelationshipQueryProperties,
25057
25686
  options?: SceneLayerQueryRelatedFeaturesCountOptions
25058
25687
  ): Promise<any>;
25688
+ /**
25689
+ * 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.
25690
+ *
25691
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#save)
25692
+ */
25693
+ save(): Promise<PortalItem>;
25694
+ /**
25695
+ * 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.
25696
+ *
25697
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#saveAs)
25698
+ */
25699
+ saveAs(portalItem: PortalItem, options?: SceneLayerSaveAsOptions): Promise<PortalItem>;
25059
25700
 
25060
25701
  on(name: "edits", eventHandler: SceneLayerEditsEventHandler): IHandle;
25061
25702
 
@@ -25462,6 +26103,15 @@ declare namespace __esri {
25462
26103
  signal?: AbortSignal;
25463
26104
  }
25464
26105
 
26106
+ export interface SceneLayerSaveAsOptions {
26107
+ /**
26108
+ * the folder where to save the item.
26109
+ *
26110
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html#saveAs)
26111
+ */
26112
+ folder?: PortalFolder;
26113
+ }
26114
+
25465
26115
  export interface SceneLayerCapabilitiesData {
25466
26116
  /**
25467
26117
  * Indicates if the features in the layer support z-values.
@@ -36976,6 +37626,14 @@ declare namespace __esri {
36976
37626
 
36977
37627
  constructor(properties?: TelemetryDisplayProperties);
36978
37628
 
37629
+ /**
37630
+ * Determines if the frame image is displayed.
37631
+ *
37632
+ * @default null
37633
+ *
37634
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-TelemetryDisplay.html#frame)
37635
+ */
37636
+ frame: boolean;
36979
37637
  /**
36980
37638
  * Determines if the frame center is displayed.
36981
37639
  *
@@ -37021,6 +37679,14 @@ declare namespace __esri {
37021
37679
  }
37022
37680
 
37023
37681
  interface TelemetryDisplayProperties {
37682
+ /**
37683
+ * Determines if the frame image is displayed.
37684
+ *
37685
+ * @default null
37686
+ *
37687
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-TelemetryDisplay.html#frame)
37688
+ */
37689
+ frame?: boolean;
37024
37690
  /**
37025
37691
  * Determines if the frame center is displayed.
37026
37692
  *
@@ -39086,7 +39752,7 @@ declare namespace __esri {
39086
39752
  *
39087
39753
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#telemetry)
39088
39754
  */
39089
- readonly telemetry: globalThis.Map<number, VideoMetadataEntry>;
39755
+ readonly telemetry: TelemetryData;
39090
39756
  /**
39091
39757
  * The telemetry display for the video layer.
39092
39758
  *
@@ -39266,12 +39932,6 @@ declare namespace __esri {
39266
39932
  }
39267
39933
 
39268
39934
  export interface VideoLayerCapabilities {
39269
- /**
39270
- * The query capabilities of the video layer.
39271
- *
39272
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#capabilities)
39273
- */
39274
- query: VideoLayerCapabilitiesQuery;
39275
39935
  /**
39276
39936
  * The operations capabilities of the video layer.
39277
39937
  *
@@ -39287,6 +39947,12 @@ declare namespace __esri {
39287
39947
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#capabilities)
39288
39948
  */
39289
39949
  supportsAppend: boolean;
39950
+ /**
39951
+ * Indicates if the video layer supports coverage queries.
39952
+ *
39953
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#capabilities)
39954
+ */
39955
+ supportsCoverageQuery: boolean;
39290
39956
  /**
39291
39957
  * Indicates if the video layer supports exporting clips.
39292
39958
  *
@@ -39313,15 +39979,6 @@ declare namespace __esri {
39313
39979
  supportsUpdate: boolean;
39314
39980
  }
39315
39981
 
39316
- export interface VideoLayerCapabilitiesQuery {
39317
- /**
39318
- * Indicates if the video layer supports coverage queries.
39319
- *
39320
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-VideoLayer.html#capabilities)
39321
- */
39322
- supportsCoverageQuery: boolean;
39323
- }
39324
-
39325
39982
  /**
39326
39983
  * The **VideoMetadataEntry** is an object that represents a metadata entry for the video layer.
39327
39984
  *
@@ -40668,7 +41325,7 @@ declare namespace __esri {
40668
41325
  *
40669
41326
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#CoverageInfo)
40670
41327
  */
40671
- lonLatEnvelope: Extent;
41328
+ lonLatEnvelope?: Extent;
40672
41329
  /**
40673
41330
  * Coverage band names.
40674
41331
  *
@@ -40692,7 +41349,7 @@ declare namespace __esri {
40692
41349
  *
40693
41350
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WCSLayer.html#CoverageInfo)
40694
41351
  */
40695
- supportedInterpolations: ("nearest" | "bilinear" | "cubic" | "majority")[];
41352
+ supportedInterpolations?: ("nearest" | "bilinear" | "cubic" | "majority")[];
40696
41353
  /**
40697
41354
  * Coverage description for different versions.
40698
41355
  *
@@ -46354,11 +47011,11 @@ declare namespace __esri {
46354
47011
  */
46355
47012
  customBaseUrl: string;
46356
47013
  /**
46357
- * The default 3d basemap to use for the portal.
47014
+ * The query that defines the default 3d basemap to use in scene views for the portal.
46358
47015
  *
46359
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#default3DBasemap)
47016
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#default3DBasemapQuery)
46360
47017
  */
46361
- default3DBasemap: Basemap;
47018
+ default3DBasemapQuery: string;
46362
47019
  /**
46363
47020
  * The default basemap to use for the portal.
46364
47021
  *
@@ -46676,6 +47333,12 @@ declare namespace __esri {
46676
47333
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#fetchCategorySchema)
46677
47334
  */
46678
47335
  fetchCategorySchema(options?: PortalFetchCategorySchemaOptions): Promise<any[]>;
47336
+ /**
47337
+ * Fetches the default 3d [Basemap](https://developers.arcgis.com/javascript/latest/api-reference/esri-Basemap.html) to use in [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html) for this portal.
47338
+ *
47339
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#fetchDefault3DBasemap)
47340
+ */
47341
+ fetchDefault3DBasemap(options?: PortalFetchDefault3DBasemapOptions): Promise<Basemap>;
46679
47342
  /**
46680
47343
  * Fetches the featured groups in the Portal.
46681
47344
  *
@@ -46872,11 +47535,11 @@ declare namespace __esri {
46872
47535
  */
46873
47536
  customBaseUrl?: string;
46874
47537
  /**
46875
- * The default 3d basemap to use for the portal.
47538
+ * The query that defines the default 3d basemap to use in scene views for the portal.
46876
47539
  *
46877
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#default3DBasemap)
47540
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#default3DBasemapQuery)
46878
47541
  */
46879
- default3DBasemap?: BasemapProperties;
47542
+ default3DBasemapQuery?: string;
46880
47543
  /**
46881
47544
  * The default basemap to use for the portal.
46882
47545
  *
@@ -47190,6 +47853,15 @@ declare namespace __esri {
47190
47853
  signal?: AbortSignal;
47191
47854
  }
47192
47855
 
47856
+ export interface PortalFetchDefault3DBasemapOptions {
47857
+ /**
47858
+ * Signal object that can be used to abort the asynchronous task.
47859
+ *
47860
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-Portal.html#fetchDefault3DBasemap)
47861
+ */
47862
+ signal?: AbortSignal;
47863
+ }
47864
+
47193
47865
  export interface PortalFetchFeaturedGroupsOptions {
47194
47866
  /**
47195
47867
  * Signal object that can be used to abort the asynchronous task.
@@ -48349,6 +49021,12 @@ declare namespace __esri {
48349
49021
  }
48350
49022
 
48351
49023
  export interface PortalItemResourceFetchOptions {
49024
+ /**
49025
+ * If `true`, the browser will send a request to the server instead of using the browser's local cache.
49026
+ *
49027
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-portal-PortalItemResource.html#fetch)
49028
+ */
49029
+ cacheBust?: boolean;
48352
49030
  /**
48353
49031
  * Signal object that can be used to abort the asynchronous task.
48354
49032
  *
@@ -49253,7 +49931,7 @@ declare namespace __esri {
49253
49931
  *
49254
49932
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html#backgroundFillSymbol)
49255
49933
  */
49256
- backgroundFillSymbol: FillSymbol | PolygonSymbol3D;
49934
+ backgroundFillSymbol: FillSymbol | PolygonSymbol3D | CIMSymbol;
49257
49935
  /**
49258
49936
  * Each element in the array is an object that provides information about a class break associated with the renderer.
49259
49937
  *
@@ -49355,7 +50033,10 @@ declare namespace __esri {
49355
50033
  *
49356
50034
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-ClassBreaksRenderer.html#backgroundFillSymbol)
49357
50035
  */
49358
- backgroundFillSymbol?: FillSymbolProperties | (PolygonSymbol3DProperties & { type: "polygon-3d" });
50036
+ backgroundFillSymbol?:
50037
+ | FillSymbolProperties
50038
+ | (PolygonSymbol3DProperties & { type: "polygon-3d" })
50039
+ | (CIMSymbolProperties & { type: "cim" });
49359
50040
  /**
49360
50041
  * Each element in the array is an object that provides information about a class break associated with the renderer.
49361
50042
  *
@@ -50126,7 +50807,7 @@ declare namespace __esri {
50126
50807
  *
50127
50808
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-PieChartRenderer.html#backgroundFillSymbol)
50128
50809
  */
50129
- backgroundFillSymbol: SimpleFillSymbol;
50810
+ backgroundFillSymbol: SimpleFillSymbol | CIMSymbol;
50130
50811
  /**
50131
50812
  * The color used to visualize features whose [attributes](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-PieChartRenderer.html#attributes) all have null or empty values.
50132
50813
  *
@@ -50210,7 +50891,9 @@ declare namespace __esri {
50210
50891
  *
50211
50892
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-PieChartRenderer.html#backgroundFillSymbol)
50212
50893
  */
50213
- backgroundFillSymbol?: SimpleFillSymbolProperties;
50894
+ backgroundFillSymbol?:
50895
+ | (SimpleFillSymbolProperties & { type: "simple-fill" })
50896
+ | (CIMSymbolProperties & { type: "cim" });
50214
50897
  /**
50215
50898
  * The color used to visualize features whose [attributes](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-PieChartRenderer.html#attributes) all have null or empty values.
50216
50899
  *
@@ -51015,6 +51698,12 @@ declare namespace __esri {
51015
51698
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#computeGamma)
51016
51699
  */
51017
51700
  computeGamma: boolean;
51701
+ /**
51702
+ * The input band statistics can be specified through the customStatistics property.
51703
+ *
51704
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#customStatistics)
51705
+ */
51706
+ customStatistics: RasterBandStatistics[];
51018
51707
  /**
51019
51708
  * When Dynamic Range Adjustment is `true`, the statistics based on the current display extent are calculated as you zoom and pan around the image.
51020
51709
  *
@@ -51068,6 +51757,8 @@ declare namespace __esri {
51068
51757
  /**
51069
51758
  * The input statistics can be specified through the statistics property.
51070
51759
  *
51760
+ * @deprecated since 4.31. Use {@link module:esri/renderers/RasterStretchRenderer#customStatistics customStatistics} instead.
51761
+ *
51071
51762
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#statistics)
51072
51763
  */
51073
51764
  statistics: number[][] | RasterBandStatistics[];
@@ -51119,6 +51810,12 @@ declare namespace __esri {
51119
51810
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#computeGamma)
51120
51811
  */
51121
51812
  computeGamma?: boolean;
51813
+ /**
51814
+ * The input band statistics can be specified through the customStatistics property.
51815
+ *
51816
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#customStatistics)
51817
+ */
51818
+ customStatistics?: RasterBandStatistics[];
51122
51819
  /**
51123
51820
  * When Dynamic Range Adjustment is `true`, the statistics based on the current display extent are calculated as you zoom and pan around the image.
51124
51821
  *
@@ -51172,6 +51869,8 @@ declare namespace __esri {
51172
51869
  /**
51173
51870
  * The input statistics can be specified through the statistics property.
51174
51871
  *
51872
+ * @deprecated since 4.31. Use {@link module:esri/renderers/RasterStretchRenderer#customStatistics customStatistics} instead.
51873
+ *
51175
51874
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-RasterStretchRenderer.html#statistics)
51176
51875
  */
51177
51876
  statistics?: number[][] | RasterBandStatistics[];
@@ -52441,7 +53140,7 @@ declare namespace __esri {
52441
53140
  *
52442
53141
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html#backgroundFillSymbol)
52443
53142
  */
52444
- backgroundFillSymbol: FillSymbol | PolygonSymbol3D;
53143
+ backgroundFillSymbol: FillSymbol | PolygonSymbol3D | CIMSymbol;
52445
53144
  /**
52446
53145
  * The label used in the [Legend](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend.html) to describe features assigned the [default symbol](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html#defaultSymbol).
52447
53146
  *
@@ -52557,7 +53256,10 @@ declare namespace __esri {
52557
53256
  *
52558
53257
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html#backgroundFillSymbol)
52559
53258
  */
52560
- backgroundFillSymbol?: FillSymbolProperties | (PolygonSymbol3DProperties & { type: "polygon-3d" });
53259
+ backgroundFillSymbol?:
53260
+ | FillSymbolProperties
53261
+ | (PolygonSymbol3DProperties & { type: "polygon-3d" })
53262
+ | (CIMSymbolProperties & { type: "cim" });
52561
53263
  /**
52562
53264
  * The label used in the [Legend](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Legend.html) to describe features assigned the [default symbol](https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-UniqueValueRenderer.html#defaultSymbol).
52563
53265
  *
@@ -59835,19 +60537,7 @@ declare namespace __esri {
59835
60537
  *
59836
60538
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html#directionsLengthUnits)
59837
60539
  */
59838
- directionsLengthUnits:
59839
- | "centimeters"
59840
- | "decimal-degrees"
59841
- | "decimeters"
59842
- | "feet"
59843
- | "inches"
59844
- | "kilometers"
59845
- | "meters"
59846
- | "miles"
59847
- | "millimeters"
59848
- | "nautical-miles"
59849
- | "points"
59850
- | "yards";
60540
+ directionsLengthUnits: LengthUnit | "decimal-degrees" | "points" | "unknown";
59851
60541
  /**
59852
60542
  * Define the content and verbosity of the driving directions.
59853
60543
  *
@@ -59925,19 +60615,7 @@ declare namespace __esri {
59925
60615
  *
59926
60616
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html#outputGeometryPrecisionUnits)
59927
60617
  */
59928
- outputGeometryPrecisionUnits:
59929
- | "centimeters"
59930
- | "decimal-degrees"
59931
- | "decimeters"
59932
- | "feet"
59933
- | "inches"
59934
- | "kilometers"
59935
- | "meters"
59936
- | "miles"
59937
- | "millimeters"
59938
- | "nautical-miles"
59939
- | "points"
59940
- | "yards";
60618
+ outputGeometryPrecisionUnits: LengthUnit | "decimal-degrees" | "points" | "unknown";
59941
60619
  /**
59942
60620
  * Use this property to specify the type of route features that are output by the operation.
59943
60621
  *
@@ -60125,7 +60803,7 @@ declare namespace __esri {
60125
60803
  *
60126
60804
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html#timeOfDayUsage)
60127
60805
  */
60128
- timeOfDayUsage: "start" | "end";
60806
+ timeOfDayUsage: "start" | "end" | "not-used";
60129
60807
  /**
60130
60808
  * Specifies how the travel direction for the closest facility search will be measured.
60131
60809
  *
@@ -60193,18 +60871,20 @@ declare namespace __esri {
60193
60871
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html#directionsLengthUnits)
60194
60872
  */
60195
60873
  directionsLengthUnits?:
60874
+ | "millimeters"
60196
60875
  | "centimeters"
60197
- | "decimal-degrees"
60198
60876
  | "decimeters"
60199
- | "feet"
60200
- | "inches"
60201
- | "kilometers"
60202
60877
  | "meters"
60878
+ | "kilometers"
60879
+ | "inches"
60880
+ | "feet"
60881
+ | "yards"
60203
60882
  | "miles"
60204
- | "millimeters"
60205
60883
  | "nautical-miles"
60884
+ | "us-feet"
60885
+ | "decimal-degrees"
60206
60886
  | "points"
60207
- | "yards";
60887
+ | "unknown";
60208
60888
  /**
60209
60889
  * Define the content and verbosity of the driving directions.
60210
60890
  *
@@ -60291,18 +60971,20 @@ declare namespace __esri {
60291
60971
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html#outputGeometryPrecisionUnits)
60292
60972
  */
60293
60973
  outputGeometryPrecisionUnits?:
60974
+ | "millimeters"
60294
60975
  | "centimeters"
60295
- | "decimal-degrees"
60296
60976
  | "decimeters"
60297
- | "feet"
60298
- | "inches"
60299
- | "kilometers"
60300
60977
  | "meters"
60978
+ | "kilometers"
60979
+ | "inches"
60980
+ | "feet"
60981
+ | "yards"
60301
60982
  | "miles"
60302
- | "millimeters"
60303
60983
  | "nautical-miles"
60984
+ | "us-feet"
60985
+ | "decimal-degrees"
60304
60986
  | "points"
60305
- | "yards";
60987
+ | "unknown";
60306
60988
  /**
60307
60989
  * Use this property to specify the type of route features that are output by the operation.
60308
60990
  *
@@ -60505,7 +61187,7 @@ declare namespace __esri {
60505
61187
  *
60506
61188
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ClosestFacilityParameters.html#timeOfDayUsage)
60507
61189
  */
60508
- timeOfDayUsage?: "start" | "end";
61190
+ timeOfDayUsage?: "start" | "end" | "not-used";
60509
61191
  /**
60510
61192
  * Specifies how the travel direction for the closest facility search will be measured.
60511
61193
  *
@@ -66550,7 +67232,7 @@ declare namespace __esri {
66550
67232
  *
66551
67233
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PrintTemplate.html#format)
66552
67234
  */
66553
- format: "pdf" | "png32" | "png8" | "jpg" | "gif" | "eps" | "svg" | "svgz";
67235
+ format: "gif" | "jpg" | "png8" | "png32" | "tiff" | "pdf" | "svg" | "svgz" | "aix" | "eps";
66554
67236
  /**
66555
67237
  * When `true`, charts will be included in the printout request.
66556
67238
  *
@@ -66676,7 +67358,7 @@ declare namespace __esri {
66676
67358
  *
66677
67359
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-PrintTemplate.html#format)
66678
67360
  */
66679
- format?: "pdf" | "png32" | "png8" | "jpg" | "gif" | "eps" | "svg" | "svgz";
67361
+ format?: "gif" | "jpg" | "png8" | "png32" | "tiff" | "pdf" | "svg" | "svgz" | "aix" | "eps";
66680
67362
  /**
66681
67363
  * When `true`, charts will be included in the printout request.
66682
67364
  *
@@ -68103,19 +68785,7 @@ declare namespace __esri {
68103
68785
  *
68104
68786
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RouteParameters.html#directionsLengthUnits)
68105
68787
  */
68106
- directionsLengthUnits:
68107
- | "centimeters"
68108
- | "decimal-degrees"
68109
- | "decimeters"
68110
- | "feet"
68111
- | "inches"
68112
- | "kilometers"
68113
- | "meters"
68114
- | "miles"
68115
- | "millimeters"
68116
- | "nautical-miles"
68117
- | "points"
68118
- | "yards";
68788
+ directionsLengthUnits: LengthUnit | "decimal-degrees" | "points" | "unknown";
68119
68789
  /**
68120
68790
  * Define the content and verbosity of the driving directions.
68121
68791
  *
@@ -68455,18 +69125,20 @@ declare namespace __esri {
68455
69125
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RouteParameters.html#directionsLengthUnits)
68456
69126
  */
68457
69127
  directionsLengthUnits?:
69128
+ | "millimeters"
68458
69129
  | "centimeters"
68459
- | "decimal-degrees"
68460
69130
  | "decimeters"
68461
- | "feet"
68462
- | "inches"
68463
- | "kilometers"
68464
69131
  | "meters"
69132
+ | "kilometers"
69133
+ | "inches"
69134
+ | "feet"
69135
+ | "yards"
68465
69136
  | "miles"
68466
- | "millimeters"
68467
69137
  | "nautical-miles"
69138
+ | "us-feet"
69139
+ | "decimal-degrees"
68468
69140
  | "points"
68469
- | "yards";
69141
+ | "unknown";
68470
69142
  /**
68471
69143
  * Define the content and verbosity of the driving directions.
68472
69144
  *
@@ -69142,19 +69814,7 @@ declare namespace __esri {
69142
69814
  *
69143
69815
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ServiceAreaParameters.html#outputGeometryPrecisionUnits)
69144
69816
  */
69145
- outputGeometryPrecisionUnits:
69146
- | "centimeters"
69147
- | "decimal-degrees"
69148
- | "decimeters"
69149
- | "feet"
69150
- | "inches"
69151
- | "kilometers"
69152
- | "meters"
69153
- | "miles"
69154
- | "millimeters"
69155
- | "nautical-miles"
69156
- | "points"
69157
- | "yards";
69817
+ outputGeometryPrecisionUnits: LengthUnit | "decimal-degrees" | "points" | "unknown";
69158
69818
  /**
69159
69819
  * Use this property to specify the type of route features that are output by the operation.
69160
69820
  *
@@ -69358,19 +70018,7 @@ declare namespace __esri {
69358
70018
  *
69359
70019
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ServiceAreaParameters.html#trimPolygonDistanceUnits)
69360
70020
  */
69361
- trimPolygonDistanceUnits:
69362
- | "centimeters"
69363
- | "decimal-degrees"
69364
- | "decimeters"
69365
- | "feet"
69366
- | "inches"
69367
- | "kilometers"
69368
- | "meters"
69369
- | "miles"
69370
- | "millimeters"
69371
- | "nautical-miles"
69372
- | "points"
69373
- | "yards";
70021
+ trimPolygonDistanceUnits: LengthUnit | "decimal-degrees" | "points" | "unknown";
69374
70022
  /**
69375
70023
  * Specify whether hierarchy should be used when finding the shortest paths.
69376
70024
  *
@@ -69481,18 +70129,20 @@ declare namespace __esri {
69481
70129
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ServiceAreaParameters.html#outputGeometryPrecisionUnits)
69482
70130
  */
69483
70131
  outputGeometryPrecisionUnits?:
70132
+ | "millimeters"
69484
70133
  | "centimeters"
69485
- | "decimal-degrees"
69486
70134
  | "decimeters"
69487
- | "feet"
69488
- | "inches"
69489
- | "kilometers"
69490
70135
  | "meters"
70136
+ | "kilometers"
70137
+ | "inches"
70138
+ | "feet"
70139
+ | "yards"
69491
70140
  | "miles"
69492
- | "millimeters"
69493
70141
  | "nautical-miles"
70142
+ | "us-feet"
70143
+ | "decimal-degrees"
69494
70144
  | "points"
69495
- | "yards";
70145
+ | "unknown";
69496
70146
  /**
69497
70147
  * Use this property to specify the type of route features that are output by the operation.
69498
70148
  *
@@ -69712,18 +70362,20 @@ declare namespace __esri {
69712
70362
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ServiceAreaParameters.html#trimPolygonDistanceUnits)
69713
70363
  */
69714
70364
  trimPolygonDistanceUnits?:
70365
+ | "millimeters"
69715
70366
  | "centimeters"
69716
- | "decimal-degrees"
69717
70367
  | "decimeters"
69718
- | "feet"
69719
- | "inches"
69720
- | "kilometers"
69721
70368
  | "meters"
70369
+ | "kilometers"
70370
+ | "inches"
70371
+ | "feet"
70372
+ | "yards"
69722
70373
  | "miles"
69723
- | "millimeters"
69724
70374
  | "nautical-miles"
70375
+ | "us-feet"
70376
+ | "decimal-degrees"
69725
70377
  | "points"
69726
- | "yards";
70378
+ | "unknown";
69727
70379
  /**
69728
70380
  * Specify whether hierarchy should be used when finding the shortest paths.
69729
70381
  *
@@ -88458,13 +89110,13 @@ declare namespace __esri {
88458
89110
  *
88459
89111
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html#FieldOrder)
88460
89112
  */
88461
- field: string;
89113
+ field?: string;
88462
89114
  /**
88463
89115
  * Indicates whether features are sorted in ascending or descending order of the field values.
88464
89116
  *
88465
89117
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-AttributeTableTemplate.html#FieldOrder)
88466
89118
  */
88467
- order: "asc" | "desc";
89119
+ order?: "asc" | "desc";
88468
89120
  }
88469
89121
 
88470
89122
  export class AttributeTableAttachmentElement extends AttributeTableElement {
@@ -89739,7 +90391,7 @@ declare namespace __esri {
89739
90391
  *
89740
90392
  * [Read more...](global.html#type)
89741
90393
  */
89742
- type: "feature" | "subtype-group" | "network";
90394
+ type: "feature-layer" | "subtype-group-layer" | "network";
89743
90395
  /**
89744
90396
  * The current gdbVersion of a versionable item.
89745
90397
  *
@@ -90902,7 +91554,7 @@ declare namespace __esri {
90902
91554
  *
90903
91555
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-analysis-AreaMeasurementAnalysisView3D.html#AreaMeasurementAnalysisResult)
90904
91556
  */
90905
- pathLength: Length;
91557
+ perimeter: Length;
90906
91558
  }
90907
91559
 
90908
91560
  export class DirectLineMeasurementAnalysisView3D {
@@ -91841,13 +92493,13 @@ declare namespace __esri {
91841
92493
  *
91842
92494
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderCamera.html#center)
91843
92495
  */
91844
- readonly center: number[];
92496
+ readonly center: readonly number[];
91845
92497
  /**
91846
92498
  * The position of the camera in the internal Cartesian rendering coordinate system represented by a vector with 3 components.
91847
92499
  *
91848
92500
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderCamera.html#eye)
91849
92501
  */
91850
- readonly eye: number[];
92502
+ readonly eye: readonly number[];
91851
92503
  /**
91852
92504
  * The distance to the far plane.
91853
92505
  *
@@ -91883,31 +92535,31 @@ declare namespace __esri {
91883
92535
  *
91884
92536
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderCamera.html#projectionMatrix)
91885
92537
  */
91886
- readonly projectionMatrix: number[];
92538
+ readonly projectionMatrix: readonly number[];
91887
92539
  /**
91888
92540
  * The camera up vector with 3 components.
91889
92541
  *
91890
92542
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderCamera.html#up)
91891
92543
  */
91892
- readonly up: number[];
92544
+ readonly up: readonly number[];
91893
92545
  /**
91894
92546
  * A 4x4 matrix representing the inverse transpose of `viewMatrix`, used to transform normals
91895
92547
  *
91896
92548
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderCamera.html#viewInverseTransposeMatrix)
91897
92549
  */
91898
- readonly viewInverseTransposeMatrix: number[];
92550
+ readonly viewInverseTransposeMatrix: readonly number[];
91899
92551
  /**
91900
92552
  * A 4x4 matrix that transforms coordinates from world space to camera space.
91901
92553
  *
91902
92554
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderCamera.html#viewMatrix)
91903
92555
  */
91904
- readonly viewMatrix: number[];
92556
+ readonly viewMatrix: readonly number[];
91905
92557
  /**
91906
92558
  * The viewport expressed as vector with 4 components (x, y, width, height).
91907
92559
  *
91908
92560
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderCamera.html#viewport)
91909
92561
  */
91910
- readonly viewport: number[];
92562
+ readonly viewport: readonly number[];
91911
92563
  }
91912
92564
 
91913
92565
  export const RenderCamera: RenderCamera;
@@ -92040,7 +92692,7 @@ declare namespace __esri {
92040
92692
  *
92041
92693
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderNode.html#ColorAndIntensity)
92042
92694
  */
92043
- color: ArrayLike<number>;
92695
+ color: number[];
92044
92696
  /**
92045
92697
  * Scalar intensity value by which the color should be scaled for compositing.
92046
92698
  *
@@ -92060,7 +92712,7 @@ declare namespace __esri {
92060
92712
  *
92061
92713
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-3d-webgl-RenderNode.html#SunLight)
92062
92714
  */
92063
- direction: ArrayLike<number>;
92715
+ direction: number[];
92064
92716
  /**
92065
92717
  * The diffuse light color and intensity.
92066
92718
  *
@@ -92527,7 +93179,7 @@ declare namespace __esri {
92527
93179
  *
92528
93180
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-draw-DrawAction.html#view)
92529
93181
  */
92530
- view: MapView;
93182
+ view: MapView | SceneView;
92531
93183
 
92532
93184
  /**
92533
93185
  * Indicates if the [redo()](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-draw-DrawAction.html#redo) method can be called on the action instance.
@@ -92587,7 +93239,7 @@ declare namespace __esri {
92587
93239
  *
92588
93240
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-draw-DrawAction.html#view)
92589
93241
  */
92590
- view?: MapViewProperties;
93242
+ view?: (MapViewProperties & { type: "2d" }) | (SceneViewProperties & { type: "3d" });
92591
93243
  }
92592
93244
 
92593
93245
  /**
@@ -94254,6 +94906,32 @@ declare namespace __esri {
94254
94906
 
94255
94907
  interface GraphicsLayerViewProperties extends LayerViewProperties, HighlightLayerViewMixinProperties {}
94256
94908
 
94909
+ export class GroupLayerView extends LayerView {
94910
+ /**
94911
+ * Represents the [LayerView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html) of a [GroupLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GroupLayer.html) after it has been added to a [Map](https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html) in either a [MapView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html) or [SceneView](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html).
94912
+ *
94913
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-GroupLayerView.html)
94914
+ */
94915
+
94916
+ constructor(properties?: GroupLayerViewProperties);
94917
+
94918
+ /**
94919
+ * A collection of layer views within the GroupLayerView.
94920
+ *
94921
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-GroupLayerView.html#layerViews)
94922
+ */
94923
+ layerViews: Collection;
94924
+ }
94925
+
94926
+ interface GroupLayerViewProperties extends LayerViewProperties {
94927
+ /**
94928
+ * A collection of layer views within the GroupLayerView.
94929
+ *
94930
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-GroupLayerView.html#layerViews)
94931
+ */
94932
+ layerViews?: CollectionProperties;
94933
+ }
94934
+
94257
94935
  export class HighlightLayerViewMixin {
94258
94936
  /**
94259
94937
  * Options for configuring the highlight.
@@ -97965,17 +98643,9 @@ declare namespace __esri {
97965
98643
  /**
97966
98644
  * Options for configuring the highlight.
97967
98645
  *
97968
- * @deprecated since version 4.31. Use {@link module:esri/views/MapView#highlights MapView.highlights} instead.
97969
- *
97970
98646
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#highlightOptions)
97971
98647
  */
97972
98648
  highlightOptions: HighlightOptions;
97973
- /**
97974
- * Options for configuring the MapView highlights.
97975
- *
97976
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#highlights)
97977
- */
97978
- highlights: Collection;
97979
98649
  /**
97980
98650
  * Defines which anchor stays still while resizing the browser window.
97981
98651
  *
@@ -98112,17 +98782,9 @@ declare namespace __esri {
98112
98782
  /**
98113
98783
  * Options for configuring the highlight.
98114
98784
  *
98115
- * @deprecated since version 4.31. Use {@link module:esri/views/MapView#highlights MapView.highlights} instead.
98116
- *
98117
98785
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#highlightOptions)
98118
98786
  */
98119
98787
  highlightOptions?: HighlightOptions;
98120
- /**
98121
- * Options for configuring the MapView highlights.
98122
- *
98123
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#highlights)
98124
- */
98125
- highlights?: CollectionProperties;
98126
98788
  /**
98127
98789
  * Defines which anchor stays still while resizing the browser window.
98128
98790
  *
@@ -103226,14 +103888,34 @@ declare namespace __esri {
103226
103888
  constructor(properties?: BatchAttributeFormProperties);
103227
103889
 
103228
103890
  /**
103229
- * When `true`, all interactivity is suspended.
103891
+ * When `true`, sets the widget to a disabled state so the user cannot interact with it.
103230
103892
  *
103231
103893
  * @default false
103232
103894
  *
103233
103895
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#disabled)
103234
103896
  */
103235
103897
  disabled: boolean;
103236
-
103898
+ /**
103899
+ * The associated features containing the editable attributes.
103900
+ *
103901
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#features)
103902
+ */
103903
+ features: Collection<Graphic>;
103904
+ /**
103905
+ * Indicates the heading level to use for the [title](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#title) of the form.
103906
+ *
103907
+ * @default 2
103908
+ *
103909
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#headingLevel)
103910
+ */
103911
+ headingLevel: number;
103912
+ /**
103913
+ * When `true`, sets the widget to a readOnly state so the user cannot interact with it.
103914
+ *
103915
+ * @default false
103916
+ *
103917
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#readOnly)
103918
+ */
103237
103919
  readOnly: boolean;
103238
103920
  /**
103239
103921
  * The view model for this widget.
@@ -103245,14 +103927,34 @@ declare namespace __esri {
103245
103927
 
103246
103928
  interface BatchAttributeFormProperties extends WidgetProperties {
103247
103929
  /**
103248
- * When `true`, all interactivity is suspended.
103930
+ * When `true`, sets the widget to a disabled state so the user cannot interact with it.
103249
103931
  *
103250
103932
  * @default false
103251
103933
  *
103252
103934
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#disabled)
103253
103935
  */
103254
103936
  disabled?: boolean;
103255
-
103937
+ /**
103938
+ * The associated features containing the editable attributes.
103939
+ *
103940
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#features)
103941
+ */
103942
+ features?: CollectionProperties<GraphicProperties>;
103943
+ /**
103944
+ * Indicates the heading level to use for the [title](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#title) of the form.
103945
+ *
103946
+ * @default 2
103947
+ *
103948
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#headingLevel)
103949
+ */
103950
+ headingLevel?: number;
103951
+ /**
103952
+ * When `true`, sets the widget to a readOnly state so the user cannot interact with it.
103953
+ *
103954
+ * @default false
103955
+ *
103956
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BatchAttributeForm.html#readOnly)
103957
+ */
103256
103958
  readOnly?: boolean;
103257
103959
  /**
103258
103960
  * The view model for this widget.
@@ -110864,6 +111566,12 @@ declare namespace __esri {
110864
111566
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-GroupInput.html#inputs)
110865
111567
  */
110866
111568
  readonly inputs: FieldInput[] | RelationshipInput[];
111569
+ /**
111570
+ * The group's label.
111571
+ *
111572
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm-GroupInput.html#label)
111573
+ */
111574
+ readonly label: string;
110867
111575
  /**
110868
111576
  * Indicates whether or not the group is open, ie.
110869
111577
  *
@@ -111953,7 +112661,7 @@ declare namespace __esri {
111953
112661
  */
111954
112662
  editingEnabled: boolean;
111955
112663
  /**
111956
- * Total number of records displayed in the table's current view.
112664
+ * The total number of records displayed in the table's current view.
111957
112665
  *
111958
112666
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#effectiveSize)
111959
112667
  */
@@ -111997,11 +112705,17 @@ declare namespace __esri {
111997
112705
  */
111998
112706
  highlightIds: Collection<number | string>;
111999
112707
  /**
112000
- * A read-only property which indicates if the table is querying or syncing data.
112708
+ * Indicates if the table is querying or syncing data and is useful for determining when the table is busy.
112001
112709
  *
112002
112710
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#isQueryingOrSyncing)
112003
112711
  */
112004
112712
  readonly isQueryingOrSyncing: boolean;
112713
+ /**
112714
+ * A read-only property which indicates if the table is syncing attachment edits.
112715
+ *
112716
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#isSyncingAttachments)
112717
+ */
112718
+ readonly isSyncingAttachments: boolean;
112005
112719
  /**
112006
112720
  * The associated [CatalogFootprintLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-catalog-CatalogFootprintLayer.html), [CSVLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html), [FeatureLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html), [GeoJSONLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html), [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html), [KnowledgeGraphSublayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html), [SceneLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html), or [WFSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html) containing the fields and attributes to display within the widget.
112007
112721
  *
@@ -112038,7 +112752,7 @@ declare namespace __esri {
112038
112752
  */
112039
112753
  readonly layerView: LayerView;
112040
112754
  /**
112041
- * Applies a limit to the total number of features displayed in the table.
112755
+ * 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.
112042
112756
  *
112043
112757
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#maxSize)
112044
112758
  */
@@ -112072,7 +112786,7 @@ declare namespace __esri {
112072
112786
  */
112073
112787
  objectIds: Collection<number | string>;
112074
112788
  /**
112075
- * Controls what field attribute data is requested by the table's store.
112789
+ * An array of field names from the table's data source to include when the table requests data.
112076
112790
  *
112077
112791
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#outFields)
112078
112792
  */
@@ -112082,7 +112796,7 @@ declare namespace __esri {
112082
112796
  *
112083
112797
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageCount)
112084
112798
  */
112085
- pageCount: number;
112799
+ readonly pageCount: number;
112086
112800
  /**
112087
112801
  * Represents the index of the page of feature currently being displayed.
112088
112802
  *
@@ -112472,7 +113186,7 @@ declare namespace __esri {
112472
113186
  | (SceneLayerProperties & { type: "scene" })
112473
113187
  | (WFSLayerProperties & { type: "wfs" });
112474
113188
  /**
112475
- * Applies a limit to the total number of features displayed in the table.
113189
+ * 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.
112476
113190
  *
112477
113191
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#maxSize)
112478
113192
  */
@@ -112506,17 +113220,11 @@ declare namespace __esri {
112506
113220
  */
112507
113221
  objectIds?: CollectionProperties<number | string>;
112508
113222
  /**
112509
- * Controls what field attribute data is requested by the table's store.
113223
+ * An array of field names from the table's data source to include when the table requests data.
112510
113224
  *
112511
113225
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#outFields)
112512
113226
  */
112513
113227
  outFields?: string[];
112514
- /**
112515
- * Number of pages of features to be displayed in the table, based on the total number of features and configured page size.
112516
- *
112517
- * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#pageCount)
112518
- */
112519
- pageCount?: number;
112520
113228
  /**
112521
113229
  * Represents the index of the page of feature currently being displayed.
112522
113230
  *
@@ -112876,6 +113584,12 @@ declare namespace __esri {
112876
113584
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#activeSortOrders)
112877
113585
  */
112878
113586
  readonly activeSortOrders: ColumnSortOrder[];
113587
+ /**
113588
+ * Indicates the table is displaying all related tables in "show all" mode.
113589
+ *
113590
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#allRelatedTablesVisible)
113591
+ */
113592
+ readonly allRelatedTablesVisible: boolean;
112879
113593
  /**
112880
113594
  * Indicates whether to display the `Attachments` field in the table.
112881
113595
  *
@@ -112909,7 +113623,7 @@ declare namespace __esri {
112909
113623
  */
112910
113624
  editingEnabled: boolean;
112911
113625
  /**
112912
- * Total number of records displayed in the table's current view.
113626
+ * The total number of records displayed in the table's current view.
112913
113627
  *
112914
113628
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#effectiveSize)
112915
113629
  */
@@ -112953,11 +113667,17 @@ declare namespace __esri {
112953
113667
  */
112954
113668
  highlightIds: Collection<number | string>;
112955
113669
  /**
112956
- * A read-only property which indicates if the table is querying or syncing data.
113670
+ * Indicates if the table is querying or syncing data and is useful for determining when the table is busy.
112957
113671
  *
112958
113672
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#isQueryingOrSyncing)
112959
113673
  */
112960
113674
  readonly isQueryingOrSyncing: boolean;
113675
+ /**
113676
+ * A read-only property which indicates if the table is syncing attachment edits.
113677
+ *
113678
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#isSyncingAttachments)
113679
+ */
113680
+ readonly isSyncingAttachments: boolean;
112961
113681
  /**
112962
113682
  * The associated [CatalogFootprintLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-catalog-CatalogFootprintLayer.html), [CSVLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html), [FeatureLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html), [GeoJSONLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html), [ImageryLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html), [KnowledgeGraphSublayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-knowledgeGraph-KnowledgeGraphSublayer.html), [SceneLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SceneLayer.html), or [WFSLayer](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html) containing the fields and attributes to display within the widget.
112963
113683
  *
@@ -112979,7 +113699,7 @@ declare namespace __esri {
112979
113699
  */
112980
113700
  readonly layerView: LayerView;
112981
113701
  /**
112982
- * Applies a limit to the total number of features displayed in the table.
113702
+ * 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.
112983
113703
  *
112984
113704
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#maxSize)
112985
113705
  */
@@ -113048,6 +113768,18 @@ declare namespace __esri {
113048
113768
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedRecordsEnabled)
113049
113769
  */
113050
113770
  relatedRecordsEnabled: boolean;
113771
+ /**
113772
+ * Reference to a nested table widget instance representing a relationship with another table.
113773
+ *
113774
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTable)
113775
+ */
113776
+ relatedTable: FeatureTable;
113777
+ /**
113778
+ * Reference to a Collection of nested table widget instances, typically used to represent relationships between each other.
113779
+ *
113780
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTables)
113781
+ */
113782
+ relatedTables: Collection<FeatureTable>;
113051
113783
  /**
113052
113784
  * Reference to relationships that exist on 'layer', if relationships are supported.
113053
113785
  *
@@ -113100,6 +113832,36 @@ declare namespace __esri {
113100
113832
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#state)
113101
113833
  */
113102
113834
  readonly state: "disabled" | "loading" | "loaded" | "ready" | "error";
113835
+ /**
113836
+ * Indicates whether the table and associated layer support adding attachments with the current configuration.
113837
+ *
113838
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#supportsAddAttachments)
113839
+ */
113840
+ readonly supportsAddAttachments: boolean;
113841
+ /**
113842
+ * Indicates whether the table supports viewing attachments with the current configuration.
113843
+ *
113844
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#supportsAttachments)
113845
+ */
113846
+ readonly supportsAttachments: boolean;
113847
+ /**
113848
+ * Indicates whether the table and associated layer support deleting attachments with the current configuration.
113849
+ *
113850
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#supportsDeleteAttachments)
113851
+ */
113852
+ readonly supportsDeleteAttachments: boolean;
113853
+ /**
113854
+ * Indicates whether the table and associated layer support resizing attachments with the current configuration.
113855
+ *
113856
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#supportsResizeAttachments)
113857
+ */
113858
+ readonly supportsResizeAttachments: boolean;
113859
+ /**
113860
+ * Indicates whether the table and associated layer support updating attachments with the current configuration.
113861
+ *
113862
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#supportsUpdateAttachments)
113863
+ */
113864
+ readonly supportsUpdateAttachments: boolean;
113103
113865
  /**
113104
113866
  * The associated [template](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-TableTemplate.html) used for the feature table.
113105
113867
  *
@@ -113171,6 +113933,12 @@ declare namespace __esri {
113171
113933
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#goToPage)
113172
113934
  */
113173
113935
  goToPage(): void;
113936
+ /**
113937
+ * Internal method used to hide the attachments view.
113938
+ *
113939
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#hideAttachmentsView)
113940
+ */
113941
+ hideAttachmentsView(): void;
113174
113942
  /**
113175
113943
  * Instructs the table to scroll to or display the next page of data.
113176
113944
  *
@@ -113345,7 +114113,7 @@ declare namespace __esri {
113345
114113
  | (SceneLayerProperties & { type: "scene" })
113346
114114
  | (WFSLayerProperties & { type: "wfs" });
113347
114115
  /**
113348
- * Applies a limit to the total number of features displayed in the table.
114116
+ * 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.
113349
114117
  *
113350
114118
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#maxSize)
113351
114119
  */
@@ -113408,6 +114176,18 @@ declare namespace __esri {
113408
114176
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedRecordsEnabled)
113409
114177
  */
113410
114178
  relatedRecordsEnabled?: boolean;
114179
+ /**
114180
+ * Reference to a nested table widget instance representing a relationship with another table.
114181
+ *
114182
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTable)
114183
+ */
114184
+ relatedTable?: FeatureTableProperties;
114185
+ /**
114186
+ * Reference to a Collection of nested table widget instances, typically used to represent relationships between each other.
114187
+ *
114188
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-FeatureTableViewModel.html#relatedTables)
114189
+ */
114190
+ relatedTables?: CollectionProperties<FeatureTableProperties>;
113411
114191
  /**
113412
114192
  * Reference to relationships that exist on 'layer', if relationships are supported.
113413
114193
  *
@@ -114638,6 +115418,12 @@ declare namespace __esri {
114638
115418
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#autoWidth)
114639
115419
  */
114640
115420
  autoWidth: boolean;
115421
+ /**
115422
+ * A string description of the column to give context to what it represents.
115423
+ *
115424
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#description)
115425
+ */
115426
+ description: string;
114641
115427
  /**
114642
115428
  * Controls the sort order of the column.
114643
115429
  *
@@ -114787,6 +115573,12 @@ declare namespace __esri {
114787
115573
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#autoWidth)
114788
115574
  */
114789
115575
  autoWidth?: boolean;
115576
+ /**
115577
+ * A string description of the column to give context to what it represents.
115578
+ *
115579
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable-support-ColumnTemplateBase.html#description)
115580
+ */
115581
+ description?: string;
114790
115582
  /**
114791
115583
  * Controls the sort order of the column.
114792
115584
  *
@@ -115236,6 +116028,12 @@ declare namespace __esri {
115236
116028
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#VisibleElements)
115237
116029
  */
115238
116030
  header?: boolean;
116031
+ /**
116032
+ * Indicates whether to display the feature table's layer switch drop down menu.
116033
+ *
116034
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#VisibleElements)
116035
+ */
116036
+ layerDropdown?: boolean;
115239
116037
  /**
115240
116038
  * Indicates whether to display the feature table's menu.
115241
116039
  *
@@ -133539,6 +134337,12 @@ declare namespace __esri {
133539
134337
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#userLookup)
133540
134338
  */
133541
134339
  userLookup: globalThis.Map<string, string>;
134340
+ /**
134341
+ * This property determines if a user has version admin privileges.
134342
+ *
134343
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versionAdministratorLookup)
134344
+ */
134345
+ versionAdministratorLookup: globalThis.Map<string, boolean>;
133542
134346
  /**
133543
134347
  * A Map of current version identifiers keyed on the map service url.
133544
134348
  *
@@ -133548,7 +134352,7 @@ declare namespace __esri {
133548
134352
  */
133549
134353
  versionIdentifierLookup: globalThis.Map<string, VersionManagementServiceVersionIdentifier>;
133550
134354
  /**
133551
- * Contains information about the versions in the versionmanagementservice such as name, guid, etc
134355
+ * Contains information about versions contained in version management service such as name, guid, etc.
133552
134356
  *
133553
134357
  * @deprecated since version 4.30. Use {@link module:esri/versionManagement/VersioningState} instead.
133554
134358
  *
@@ -133556,7 +134360,7 @@ declare namespace __esri {
133556
134360
  */
133557
134361
  versionInfoLookup: globalThis.Map<string, VersionManagementViewModelVersionInfo[]>;
133558
134362
  /**
133559
- * This class contains metadata about the versioning state.
134363
+ * This property contains metadata about the versioning state.
133560
134364
  *
133561
134365
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versioningStateLookup)
133562
134366
  */
@@ -133564,7 +134368,7 @@ declare namespace __esri {
133564
134368
 
133565
134369
  versioningStates: Collection<VersioningState>;
133566
134370
  /**
133567
- * This class contains metadata about the version management service.
134371
+ * This property contains metadata about the version management service.
133568
134372
  *
133569
134373
  * @deprecated since version 4.30. Use {@link module:esri/versionManagement/VersioningState} instead.
133570
134374
  *
@@ -133645,6 +134449,12 @@ declare namespace __esri {
133645
134449
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#userLookup)
133646
134450
  */
133647
134451
  userLookup?: globalThis.Map<string, string>;
134452
+ /**
134453
+ * This property determines if a user has version admin privileges.
134454
+ *
134455
+ * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versionAdministratorLookup)
134456
+ */
134457
+ versionAdministratorLookup?: globalThis.Map<string, boolean>;
133648
134458
  /**
133649
134459
  * A Map of current version identifiers keyed on the map service url.
133650
134460
  *
@@ -133654,7 +134464,7 @@ declare namespace __esri {
133654
134464
  */
133655
134465
  versionIdentifierLookup?: globalThis.Map<string, VersionManagementServiceVersionIdentifier>;
133656
134466
  /**
133657
- * Contains information about the versions in the versionmanagementservice such as name, guid, etc
134467
+ * Contains information about versions contained in version management service such as name, guid, etc.
133658
134468
  *
133659
134469
  * @deprecated since version 4.30. Use {@link module:esri/versionManagement/VersioningState} instead.
133660
134470
  *
@@ -133662,7 +134472,7 @@ declare namespace __esri {
133662
134472
  */
133663
134473
  versionInfoLookup?: globalThis.Map<string, VersionManagementViewModelVersionInfo[]>;
133664
134474
  /**
133665
- * This class contains metadata about the versioning state.
134475
+ * This property contains metadata about the versioning state.
133666
134476
  *
133667
134477
  * [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-VersionManagement-VersionManagementViewModel.html#versioningStateLookup)
133668
134478
  */
@@ -133670,7 +134480,7 @@ declare namespace __esri {
133670
134480
 
133671
134481
  versioningStates?: CollectionProperties<VersioningState>;
133672
134482
  /**
133673
- * This class contains metadata about the version management service.
134483
+ * This property contains metadata about the version management service.
133674
134484
  *
133675
134485
  * @deprecated since version 4.30. Use {@link module:esri/versionManagement/VersioningState} instead.
133676
134486
  *
@@ -138391,6 +139201,11 @@ declare module "esri/geometry/SpatialReference" {
138391
139201
  export = SpatialReference;
138392
139202
  }
138393
139203
 
139204
+ declare module "esri/geometry/operators/support/Transformation" {
139205
+ import Transformation = __esri.Transformation;
139206
+ export = Transformation;
139207
+ }
139208
+
138394
139209
  declare module "esri/geometry/support/GeographicTransformation" {
138395
139210
  import GeographicTransformation = __esri.GeographicTransformation;
138396
139211
  export = GeographicTransformation;
@@ -140681,6 +141496,11 @@ declare module "esri/views/layers/GraphicsLayerView" {
140681
141496
  export = GraphicsLayerView;
140682
141497
  }
140683
141498
 
141499
+ declare module "esri/views/layers/GroupLayerView" {
141500
+ import GroupLayerView = __esri.GroupLayerView;
141501
+ export = GroupLayerView;
141502
+ }
141503
+
140684
141504
  declare module "esri/views/layers/ImageryLayerView" {
140685
141505
  import ImageryLayerView = __esri.ImageryLayerView;
140686
141506
  export = ImageryLayerView;
@@ -142261,6 +143081,21 @@ declare module "esri/geometry/projection" {
142261
143081
  export = projection;
142262
143082
  }
142263
143083
 
143084
+ declare module "esri/geometry/operators/affineTransformOperator" {
143085
+ import affineTransformOperator = __esri.affineTransformOperator;
143086
+ export = affineTransformOperator;
143087
+ }
143088
+
143089
+ declare module "esri/geometry/operators/areaOperator" {
143090
+ import areaOperator = __esri.areaOperator;
143091
+ export = areaOperator;
143092
+ }
143093
+
143094
+ declare module "esri/geometry/operators/bufferOperator" {
143095
+ import bufferOperator = __esri.bufferOperator;
143096
+ export = bufferOperator;
143097
+ }
143098
+
142264
143099
  declare module "esri/geometry/operators/centroidOperator" {
142265
143100
  import centroidOperator = __esri.centroidOperator;
142266
143101
  export = centroidOperator;
@@ -142271,21 +143106,26 @@ declare module "esri/geometry/operators/clipOperator" {
142271
143106
  export = clipOperator;
142272
143107
  }
142273
143108
 
142274
- declare module "esri/geometry/operators/cutOperator" {
142275
- import cutOperator = __esri.cutOperator;
142276
- export = cutOperator;
142277
- }
142278
-
142279
143109
  declare module "esri/geometry/operators/containsOperator" {
142280
143110
  import containsOperator = __esri.containsOperator;
142281
143111
  export = containsOperator;
142282
143112
  }
142283
143113
 
143114
+ declare module "esri/geometry/operators/convexHullOperator" {
143115
+ import convexHullOperator = __esri.convexHullOperator;
143116
+ export = convexHullOperator;
143117
+ }
143118
+
142284
143119
  declare module "esri/geometry/operators/crossesOperator" {
142285
143120
  import crossesOperator = __esri.crossesOperator;
142286
143121
  export = crossesOperator;
142287
143122
  }
142288
143123
 
143124
+ declare module "esri/geometry/operators/cutOperator" {
143125
+ import cutOperator = __esri.cutOperator;
143126
+ export = cutOperator;
143127
+ }
143128
+
142289
143129
  declare module "esri/geometry/operators/densifyOperator" {
142290
143130
  import densifyOperator = __esri.densifyOperator;
142291
143131
  export = densifyOperator;
@@ -142316,6 +143156,11 @@ declare module "esri/geometry/operators/geodesicBufferOperator" {
142316
143156
  export = geodesicBufferOperator;
142317
143157
  }
142318
143158
 
143159
+ declare module "esri/geometry/operators/geodeticAreaOperator" {
143160
+ import geodeticAreaOperator = __esri.geodeticAreaOperator;
143161
+ export = geodeticAreaOperator;
143162
+ }
143163
+
142319
143164
  declare module "esri/geometry/operators/geodeticDensifyOperator" {
142320
143165
  import geodeticDensifyOperator = __esri.geodeticDensifyOperator;
142321
143166
  export = geodeticDensifyOperator;
@@ -142326,11 +143171,21 @@ declare module "esri/geometry/operators/geodeticDistanceOperator" {
142326
143171
  export = geodeticDistanceOperator;
142327
143172
  }
142328
143173
 
143174
+ declare module "esri/geometry/operators/geodeticLengthOperator" {
143175
+ import geodeticLengthOperator = __esri.geodeticLengthOperator;
143176
+ export = geodeticLengthOperator;
143177
+ }
143178
+
142329
143179
  declare module "esri/geometry/operators/generalizeOperator" {
142330
143180
  import generalizeOperator = __esri.generalizeOperator;
142331
143181
  export = generalizeOperator;
142332
143182
  }
142333
143183
 
143184
+ declare module "esri/geometry/operators/graphicBufferOperator" {
143185
+ import graphicBufferOperator = __esri.graphicBufferOperator;
143186
+ export = graphicBufferOperator;
143187
+ }
143188
+
142334
143189
  declare module "esri/geometry/operators/intersectionOperator" {
142335
143190
  import intersectionOperator = __esri.intersectionOperator;
142336
143191
  export = intersectionOperator;
@@ -142341,6 +143196,16 @@ declare module "esri/geometry/operators/intersectsOperator" {
142341
143196
  export = intersectsOperator;
142342
143197
  }
142343
143198
 
143199
+ declare module "esri/geometry/operators/lengthOperator" {
143200
+ import lengthOperator = __esri.lengthOperator;
143201
+ export = lengthOperator;
143202
+ }
143203
+
143204
+ declare module "esri/geometry/operators/offsetOperator" {
143205
+ import offsetOperator = __esri.offsetOperator;
143206
+ export = offsetOperator;
143207
+ }
143208
+
142344
143209
  declare module "esri/geometry/operators/overlapsOperator" {
142345
143210
  import overlapsOperator = __esri.overlapsOperator;
142346
143211
  export = overlapsOperator;
@@ -142361,6 +143226,11 @@ declare module "esri/geometry/operators/simplifyOperator" {
142361
143226
  export = simplifyOperator;
142362
143227
  }
142363
143228
 
143229
+ declare module "esri/geometry/operators/symmetricDifferenceOperator" {
143230
+ import symmetricDifferenceOperator = __esri.symmetricDifferenceOperator;
143231
+ export = symmetricDifferenceOperator;
143232
+ }
143233
+
142364
143234
  declare module "esri/geometry/operators/touchesOperator" {
142365
143235
  import touchesOperator = __esri.touchesOperator;
142366
143236
  export = touchesOperator;
@@ -142421,6 +143291,11 @@ declare module "esri/layers/ogc/wfsUtils" {
142421
143291
  export = wfsUtils;
142422
143292
  }
142423
143293
 
143294
+ declare module "esri/layers/ogc/wcsUtils" {
143295
+ import wcsUtils = __esri.wcsUtils;
143296
+ export = wcsUtils;
143297
+ }
143298
+
142424
143299
  declare module "esri/layers/support/arcadeUtils" {
142425
143300
  import arcadeUtils = __esri.arcadeUtils;
142426
143301
  export = arcadeUtils;
@@ -142946,44 +143821,44 @@ declare module "esri/widgets/support/widget" {
142946
143821
  export = widget;
142947
143822
  }
142948
143823
 
142949
- declare module "esri/applications/WebEditor/sketchUtils" {
142950
- import sketchUtils = __esri.sketchUtils;
142951
- export = sketchUtils;
143824
+ declare module "esri/applications/Components/basemapUtils" {
143825
+ import basemapUtils = __esri.basemapUtils;
143826
+ export = basemapUtils;
142952
143827
  }
142953
143828
 
142954
- declare module "esri/applications/SceneViewer/symbolUtils" {
142955
- import SceneViewerSymbolUtils = __esri.SceneViewerSymbolUtils;
142956
- export = SceneViewerSymbolUtils;
143829
+ declare module "esri/applications/Components/drawUtils" {
143830
+ import drawUtils = __esri.drawUtils;
143831
+ export = drawUtils;
142957
143832
  }
142958
143833
 
142959
- declare module "esri/applications/SceneViewer/sceneViewerUtils" {
142960
- import sceneViewerUtils = __esri.sceneViewerUtils;
142961
- export = sceneViewerUtils;
143834
+ declare module "esri/applications/Components/getDefaultUnits" {
143835
+ import getDefaultUnits = __esri.getDefaultUnits;
143836
+ export = getDefaultUnits;
142962
143837
  }
142963
143838
 
142964
- declare module "esri/applications/SceneViewer/layerUtils" {
142965
- import layerUtils = __esri.layerUtils;
142966
- export = layerUtils;
143839
+ declare module "esri/applications/Components/gfxUtils" {
143840
+ import gfxUtils = __esri.gfxUtils;
143841
+ export = gfxUtils;
142967
143842
  }
142968
143843
 
142969
- declare module "esri/applications/SceneViewer/devEnvironmentUtils" {
142970
- import devEnvironmentUtils = __esri.devEnvironmentUtils;
142971
- export = devEnvironmentUtils;
143844
+ declare module "esri/applications/Components/layerOriginUtils" {
143845
+ import layerOriginUtils = __esri.layerOriginUtils;
143846
+ export = layerOriginUtils;
142972
143847
  }
142973
143848
 
142974
- declare module "esri/applications/SceneViewer/colorUtils" {
142975
- import SceneViewerColorUtils = __esri.SceneViewerColorUtils;
142976
- export = SceneViewerColorUtils;
143849
+ declare module "esri/applications/Components/previewSymbol2D" {
143850
+ import previewSymbol2D = __esri.previewSymbol2D;
143851
+ export = previewSymbol2D;
142977
143852
  }
142978
143853
 
142979
- declare module "esri/applications/MapViewer/mediaUtils" {
142980
- import mediaUtils = __esri.mediaUtils;
142981
- export = mediaUtils;
143854
+ declare module "esri/applications/Components/styleUtils" {
143855
+ import styleUtils = __esri.styleUtils;
143856
+ export = styleUtils;
142982
143857
  }
142983
143858
 
142984
- declare module "esri/applications/Excalibur/videoViewUtils" {
142985
- import videoViewUtils = __esri.videoViewUtils;
142986
- export = videoViewUtils;
143859
+ declare module "esri/applications/Components/svgUtils" {
143860
+ import svgUtils = __esri.svgUtils;
143861
+ export = svgUtils;
142987
143862
  }
142988
143863
 
142989
143864
  declare module "esri/applications/Components/webStyleSymbolUtils" {
@@ -142991,42 +143866,47 @@ declare module "esri/applications/Components/webStyleSymbolUtils" {
142991
143866
  export = webStyleSymbolUtils;
142992
143867
  }
142993
143868
 
142994
- declare module "esri/applications/Components/svgUtils" {
142995
- import svgUtils = __esri.svgUtils;
142996
- export = svgUtils;
143869
+ declare module "esri/applications/Excalibur/videoViewUtils" {
143870
+ import videoViewUtils = __esri.videoViewUtils;
143871
+ export = videoViewUtils;
142997
143872
  }
142998
143873
 
142999
- declare module "esri/applications/Components/styleUtils" {
143000
- import styleUtils = __esri.styleUtils;
143001
- export = styleUtils;
143874
+ declare module "esri/applications/MapViewer/mediaUtils" {
143875
+ import mediaUtils = __esri.mediaUtils;
143876
+ export = mediaUtils;
143002
143877
  }
143003
143878
 
143004
- declare module "esri/applications/Components/previewSymbol2D" {
143005
- import previewSymbol2D = __esri.previewSymbol2D;
143006
- export = previewSymbol2D;
143879
+ declare module "esri/applications/SceneViewer/colorUtils" {
143880
+ import SceneViewerColorUtils = __esri.SceneViewerColorUtils;
143881
+ export = SceneViewerColorUtils;
143007
143882
  }
143008
143883
 
143009
- declare module "esri/applications/Components/layerOriginUtils" {
143010
- import layerOriginUtils = __esri.layerOriginUtils;
143011
- export = layerOriginUtils;
143884
+ declare module "esri/applications/SceneViewer/devEnvironmentUtils" {
143885
+ import devEnvironmentUtils = __esri.devEnvironmentUtils;
143886
+ export = devEnvironmentUtils;
143012
143887
  }
143013
143888
 
143014
- declare module "esri/applications/Components/gfxUtils" {
143015
- import gfxUtils = __esri.gfxUtils;
143016
- export = gfxUtils;
143889
+ declare module "esri/applications/SceneViewer/layerUtils" {
143890
+ import layerUtils = __esri.layerUtils;
143891
+ export = layerUtils;
143017
143892
  }
143018
143893
 
143019
- declare module "esri/applications/Components/getDefaultUnits" {
143020
- import getDefaultUnits = __esri.getDefaultUnits;
143021
- export = getDefaultUnits;
143894
+ declare module "esri/applications/SceneViewer/sceneViewerUtils" {
143895
+ import sceneViewerUtils = __esri.sceneViewerUtils;
143896
+ export = sceneViewerUtils;
143022
143897
  }
143023
143898
 
143024
- declare module "esri/applications/Components/drawUtils" {
143025
- import drawUtils = __esri.drawUtils;
143026
- export = drawUtils;
143899
+ declare module "esri/applications/SceneViewer/symbolUtils" {
143900
+ import SceneViewerSymbolUtils = __esri.SceneViewerSymbolUtils;
143901
+ export = SceneViewerSymbolUtils;
143027
143902
  }
143028
143903
 
143029
- declare module "esri/applications/Components/basemapUtils" {
143030
- import basemapUtils = __esri.basemapUtils;
143031
- export = basemapUtils;
143904
+ declare module "esri/applications/Urban/meshUtils" {
143905
+ import UrbanMeshUtils = __esri.UrbanMeshUtils;
143906
+ export = UrbanMeshUtils;
143907
+ }
143908
+
143909
+ declare module "esri/applications/WebEditor/sketchUtils" {
143910
+ import sketchUtils = __esri.sketchUtils;
143911
+ export = sketchUtils;
143032
143912
  }