@arcgis/core-adapter 4.32.0-next.43 → 4.32.0-next.46

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.
@@ -1257,6 +1257,25 @@ declare namespace __esri {
1257
1257
  objectIdField?: string;
1258
1258
  }
1259
1259
 
1260
+ /**
1261
+ * Note: reserved for internal use only, this is not part of the stable public API.
1262
+ *
1263
+ * Arcade utils for Components.
1264
+ */
1265
+ interface ComponentsArcadeUtils {
1266
+ /**
1267
+ * Note: reserved for internal use only, this is not part of the stable public API.
1268
+ *
1269
+ * Returns a list of field names used in the provided script or syntax tree.
1270
+ *
1271
+ * @param syntaxTreeOrScript
1272
+ * @param fields
1273
+ */
1274
+ extractFieldNames(syntaxTreeOrScript: any | string, fields?: string[]): string[];
1275
+ }
1276
+
1277
+ export const ComponentsArcadeUtils: ComponentsArcadeUtils;
1278
+
1260
1279
  /**
1261
1280
  * Note: reserved for internal use only, this is not part of the stable public API.
1262
1281
  *
@@ -1280,9 +1299,9 @@ declare namespace __esri {
1280
1299
  *
1281
1300
  * CollectionFlattener utils for Components.
1282
1301
  */
1283
- interface CollectionFlattener {}
1284
-
1285
- export const CollectionFlattener: CollectionFlattener;
1302
+ namespace CollectionFlattener {
1303
+ export interface coreCollectionFlattener {}
1304
+ }
1286
1305
 
1287
1306
  export interface coreCollectionFlattener {}
1288
1307
 
@@ -1440,32 +1459,14 @@ declare namespace __esri {
1440
1459
 
1441
1460
  export const previewSymbol2D: previewSymbol2D;
1442
1461
 
1443
- /**
1444
- * Note: reserved for internal use only, this is not part of the stable public API.
1445
- *
1446
- * Various utilities for the Scene Viewer application.
1447
- */
1448
- interface sceneViewUtils {
1449
- /**
1450
- * Note: reserved for internal use only, this is not part of the stable public API.
1451
- *
1452
- * Gets whether the weather is visible in the scene view.
1453
- *
1454
- * @param view The scene view.
1455
- */
1456
- isWeatherVisible(view: SceneView): boolean;
1457
- }
1458
-
1459
- export const sceneViewUtils: sceneViewUtils;
1460
-
1461
1462
  /**
1462
1463
  * Note: reserved for internal use only, this is not part of the stable public API.
1463
1464
  *
1464
1465
  * SelectionOperation util for Components.
1465
1466
  */
1466
- interface SelectionOperation {}
1467
-
1468
- export const SelectionOperation: SelectionOperation;
1467
+ namespace SelectionOperation {
1468
+ export interface Selector2DSelectionOperation {}
1469
+ }
1469
1470
 
1470
1471
  export interface Selector2DSelectionOperation {}
1471
1472
 
@@ -1474,9 +1475,9 @@ declare namespace __esri {
1474
1475
  *
1475
1476
  * SketchTooltipControls util for Components.
1476
1477
  */
1477
- interface SketchTooltipControls {}
1478
-
1479
- export const SketchTooltipControls: SketchTooltipControls;
1478
+ namespace SketchTooltipControls {
1479
+ export interface supportSketchTooltipControls {}
1480
+ }
1480
1481
 
1481
1482
  export interface supportSketchTooltipControls {}
1482
1483
 
@@ -3048,7 +3049,7 @@ declare namespace __esri {
3048
3049
 
3049
3050
  export interface configLog {
3050
3051
  interceptors: LogInterceptor[];
3051
- level: "none" | "error" | "warn" | "info";
3052
+ level: "none" | "error" | "info" | "warn";
3052
3053
  }
3053
3054
 
3054
3055
  export interface configRequest {
@@ -3057,15 +3058,15 @@ declare namespace __esri {
3057
3058
  maxUrlLength?: number;
3058
3059
  priority?: "auto" | "high" | "low";
3059
3060
  proxyRules?: configRequestProxyRules[];
3060
- proxyUrl?: string;
3061
- timeout?: number;
3062
- trustedServers?: string[];
3063
- useIdentity?: boolean;
3061
+ proxyUrl: string;
3062
+ timeout: number;
3063
+ trustedServers: string[];
3064
+ useIdentity: boolean;
3064
3065
  }
3065
3066
 
3066
3067
  export interface configRequestProxyRules {
3067
- proxyUrl?: string;
3068
- urlPrefix?: string;
3068
+ proxyUrl: string;
3069
+ urlPrefix: string;
3069
3070
  }
3070
3071
 
3071
3072
  export interface configWorkers {
@@ -3084,7 +3085,7 @@ declare namespace __esri {
3084
3085
 
3085
3086
  export type ErrorCallback = (error: Error) => void;
3086
3087
 
3087
- export type LogInterceptor = (level: "error" | "warn" | "info", module: string, ...args: any[]) => boolean;
3088
+ export type LogInterceptor = (level: "none" | "error" | "info" | "warn", module: string, ...args: any[]) => boolean;
3088
3089
 
3089
3090
  /**
3090
3091
  * Specifies the object used for intercepting and modifying requests made via {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-request.html esriRequest}.
@@ -3152,18 +3153,18 @@ declare namespace __esri {
3152
3153
  /**
3153
3154
  * This convenience decorator is used to define an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Accessor.html Accessor} property.
3154
3155
  *
3155
- * @param propertyMetadata An object describing the property.
3156
- * @param propertyMetadata.dependsOn Property names of dependencies.
3157
- * @param propertyMetadata.type The constructor used to {@link https://developers.arcgis.com/javascript/latest/autocasting/ autocast} the property.
3158
- * @param propertyMetadata.cast The function to use to {@link https://developers.arcgis.com/javascript/latest/autocasting/ autocast} the property. Alternative to define the `type`. The function is called with the value set by the user and should return the cast value.
3159
- * @param propertyMetadata.readOnly Indicates whether the property is read-only.
3160
- * @param propertyMetadata.constructOnly Indicates whether the property can be set during construction but is otherwise read-only.
3161
- * @param propertyMetadata.aliasOf The property decorator that creates a two-way binding between the property it decorates and an inner property of one of its members.
3162
- * @param propertyMetadata.value The default value for the property.
3156
+ * @param metadata An object describing the property.
3157
+ * @param metadata.dependsOn Property names of dependencies.
3158
+ * @param metadata.type The constructor used to {@link https://developers.arcgis.com/javascript/latest/autocasting/ autocast} the property.
3159
+ * @param metadata.cast The function to use to {@link https://developers.arcgis.com/javascript/latest/autocasting/ autocast} the property. Alternative to define the `type`. The function is called with the value set by the user and should return the cast value.
3160
+ * @param metadata.readOnly Indicates whether the property is read-only.
3161
+ * @param metadata.constructOnly Indicates whether the property can be set during construction but is otherwise read-only.
3162
+ * @param metadata.aliasOf The property decorator that creates a two-way binding between the property it decorates and an inner property of one of its members.
3163
+ * @param metadata.value The default value for the property.
3163
3164
  *
3164
3165
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-accessorSupport-decorators.html#property Read more...}
3165
3166
  */
3166
- property(propertyMetadata?: decoratorsPropertyPropertyMetadata): Function;
3167
+ property(metadata?: decoratorsPropertyMetadata): Function;
3167
3168
  /**
3168
3169
  * This decorator is used to define an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Accessor.html Accessor} subclass.
3169
3170
  *
@@ -3176,10 +3177,12 @@ declare namespace __esri {
3176
3177
 
3177
3178
  export const decorators: decorators;
3178
3179
 
3179
- export interface decoratorsPropertyPropertyMetadata {
3180
+ export type Caster = (value: any) => any;
3181
+
3182
+ export interface decoratorsPropertyMetadata {
3180
3183
  dependsOn?: string[];
3181
- type?: Function;
3182
- cast?: Function;
3184
+ type?: any;
3185
+ cast?: Caster;
3183
3186
  readOnly?: boolean;
3184
3187
  constructOnly?: boolean;
3185
3188
  aliasOf?: string;
@@ -3536,9 +3539,25 @@ declare namespace __esri {
3536
3539
  *
3537
3540
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-quantity.html Read more...}
3538
3541
  */
3539
- interface quantity {}
3542
+ namespace quantity {
3543
+ export interface Length {
3544
+ value: number;
3545
+ unit: LengthUnit;
3546
+ type: "length";
3547
+ }
3540
3548
 
3541
- export const quantity: quantity;
3549
+ export interface Area {
3550
+ value: number;
3551
+ unit: AreaUnit;
3552
+ type: "area";
3553
+ }
3554
+
3555
+ export interface Angle {
3556
+ value: number;
3557
+ unit: AngleUnit;
3558
+ type: "angle";
3559
+ }
3560
+ }
3542
3561
 
3543
3562
  export interface Angle {
3544
3563
  value: number;
@@ -4351,6 +4370,67 @@ declare namespace __esri {
4351
4370
  signal?: AbortSignal;
4352
4371
  }
4353
4372
 
4373
+ /**
4374
+ * A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-Element.html Element} classes
4375
+ * when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
4376
+ *
4377
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html Read more...}
4378
+ */
4379
+ namespace elements {
4380
+ /**
4381
+ * Form element types.
4382
+ *
4383
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#Element Read more...}
4384
+ */
4385
+ export type Element =
4386
+ | __esri.FieldElement
4387
+ | __esri.GroupElement
4388
+ | __esri.RelationshipElement
4389
+ | __esri.TextElement
4390
+ | __esri.AttachmentElement;
4391
+
4392
+ /**
4393
+ * `FieldElement` defines how a feature layer's field participates in the form.
4394
+ *
4395
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#FieldElement Read more...}
4396
+ */
4397
+ export type FieldElement = __esri.FieldElement;
4398
+ export const FieldElement: typeof __esri.FieldElement;
4399
+
4400
+ /**
4401
+ * `GroupElement` defines a container that holds a set of form elements
4402
+ * that can be expanded, collapsed, or displayed together.
4403
+ *
4404
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#GroupElement Read more...}
4405
+ */
4406
+ export type GroupElement = __esri.GroupElement;
4407
+ export const GroupElement: typeof __esri.GroupElement;
4408
+
4409
+ /**
4410
+ * `RelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm}.
4411
+ *
4412
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#RelationshipElement Read more...}
4413
+ */
4414
+ export type RelationshipElement = __esri.RelationshipElement;
4415
+ export const RelationshipElement: typeof __esri.RelationshipElement;
4416
+
4417
+ /**
4418
+ * `TextElement` form element is used to define descriptive text as an element within a layer or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm} {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html FormTemplate} and can be used to aid those entering or updating information.
4419
+ *
4420
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#TextElement Read more...}
4421
+ */
4422
+ export type TextElement = __esri.TextElement;
4423
+ export const TextElement: typeof __esri.TextElement;
4424
+
4425
+ /**
4426
+ * `AttachmentElement` defines how one or more attachments can participate in the form.
4427
+ *
4428
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#AttachmentElement Read more...}
4429
+ */
4430
+ export type AttachmentElement = __esri.AttachmentElement;
4431
+ export const AttachmentElement: typeof __esri.AttachmentElement;
4432
+ }
4433
+
4354
4434
  export class AttachmentElement extends Element {
4355
4435
  /**
4356
4436
  * An `AttachmentElement` defines how one or more attachments can participate in the form.
@@ -4801,6 +4881,111 @@ declare namespace __esri {
4801
4881
  initialState?: "collapsed" | "expanded";
4802
4882
  }
4803
4883
 
4884
+ /**
4885
+ * A convenience module for importing module:esri/form/elements/inputs/Input classes
4886
+ * when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
4887
+ *
4888
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html Read more...}
4889
+ */
4890
+ namespace inputs {
4891
+ /**
4892
+ * Form element input types.
4893
+ *
4894
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#Input Read more...}
4895
+ */
4896
+ export type Input =
4897
+ | __esri.BarcodeScannerInput
4898
+ | __esri.ComboBoxInput
4899
+ | __esri.DatePickerInput
4900
+ | __esri.DateTimeOffsetPickerInput
4901
+ | __esri.DateTimePickerInput
4902
+ | __esri.RadioButtonsInput
4903
+ | __esri.SwitchInput
4904
+ | __esri.TextAreaInput
4905
+ | __esri.TextBoxInput
4906
+ | __esri.TimePickerInput;
4907
+
4908
+ /**
4909
+ * The `BarcodeScannerInput` class defines the desired user interface is a barcode or QR code scanner.
4910
+ *
4911
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#BarcodeScannerInput Read more...}
4912
+ */
4913
+ export type BarcodeScannerInput = __esri.BarcodeScannerInput;
4914
+ export const BarcodeScannerInput: typeof __esri.BarcodeScannerInput;
4915
+
4916
+ /**
4917
+ * The `ComboBoxInput` class defines the desired user interface for a combo box group.
4918
+ *
4919
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#ComboBoxInput Read more...}
4920
+ */
4921
+ export type ComboBoxInput = __esri.ComboBoxInput;
4922
+ export const ComboBoxInput: typeof __esri.ComboBoxInput;
4923
+
4924
+ /**
4925
+ * The `DatePickerInput` class defines the desired user interface for working with date-only types.
4926
+ *
4927
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#DatePickerInput Read more...}
4928
+ */
4929
+ export type DatePickerInput = __esri.DatePickerInput;
4930
+ export const DatePickerInput: typeof __esri.DatePickerInput;
4931
+
4932
+ /**
4933
+ * The `DateTimeOffsetPickerInput` class defines the desired user interface for editing date and time fields in a form that also requires the option to include an offset from Coordinated Universal Time (UTC).
4934
+ *
4935
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#DateTimeOffsetPickerInput Read more...}
4936
+ */
4937
+ export type DateTimeOffsetPickerInput = __esri.DateTimeOffsetPickerInput;
4938
+ export const DateTimeOffsetPickerInput: typeof __esri.DateTimeOffsetPickerInput;
4939
+
4940
+ /**
4941
+ * The `DateTimePickerInput` class defines the desired user interface for editing date (including time) fields in a form.
4942
+ *
4943
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#DateTimePickerInput Read more...}
4944
+ */
4945
+ export type DateTimePickerInput = __esri.DateTimePickerInput;
4946
+ export const DateTimePickerInput: typeof __esri.DateTimePickerInput;
4947
+
4948
+ /**
4949
+ * The `RadioButtonsInput` class defines the desired user interface for a radio button group.
4950
+ *
4951
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#RadioButtonsInput Read more...}
4952
+ */
4953
+ export type RadioButtonsInput = __esri.RadioButtonsInput;
4954
+ export const RadioButtonsInput: typeof __esri.RadioButtonsInput;
4955
+
4956
+ /**
4957
+ * The `SwitchInput` class defines the desired user interface for a binary switch or toggle.
4958
+ *
4959
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#SwitchInput Read more...}
4960
+ */
4961
+ export type SwitchInput = __esri.SwitchInput;
4962
+ export const SwitchInput: typeof __esri.SwitchInput;
4963
+
4964
+ /**
4965
+ * `TextAreaInput` defines the desired user interface is a multi-line text area.
4966
+ *
4967
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#TextAreaInput Read more...}
4968
+ */
4969
+ export type TextAreaInput = __esri.TextAreaInput;
4970
+ export const TextAreaInput: typeof __esri.TextAreaInput;
4971
+
4972
+ /**
4973
+ * `TextBoxInput` defines the desired user interface is a single-line text box.
4974
+ *
4975
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#TextBoxInput Read more...}
4976
+ */
4977
+ export type TextBoxInput = __esri.TextBoxInput;
4978
+ export const TextBoxInput: typeof __esri.TextBoxInput;
4979
+
4980
+ /**
4981
+ * The `TimePickerInput` class defines the desired user interface for working with time-only types.
4982
+ *
4983
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-inputs.html#TimePickerInput Read more...}
4984
+ */
4985
+ export type TimePickerInput = __esri.TimePickerInput;
4986
+ export const TimePickerInput: typeof __esri.TimePickerInput;
4987
+ }
4988
+
4804
4989
  export interface AttachmentInput extends Accessor, JSONSupport, Clonable {}
4805
4990
 
4806
4991
  export class AttachmentInput {
@@ -5149,10 +5334,6 @@ declare namespace __esri {
5149
5334
  inputMethod?: "any" | "capture" | "upload";
5150
5335
  }
5151
5336
 
5152
- interface inputs {}
5153
-
5154
- export const inputs: inputs;
5155
-
5156
5337
  export interface VideoInput extends Accessor, JSONSupport, Clonable {}
5157
5338
 
5158
5339
  export class VideoInput {
@@ -6167,16 +6348,6 @@ declare namespace __esri {
6167
6348
  relationshipId?: number;
6168
6349
  }
6169
6350
 
6170
- /**
6171
- * A convenience module for importing module:esri/form/elements/inputs/Input classes
6172
- * when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
6173
- *
6174
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-support-inputs.html Read more...}
6175
- */
6176
- interface supportInputs {}
6177
-
6178
- export const supportInputs: supportInputs;
6179
-
6180
6351
  export class TextElement extends Element {
6181
6352
  /**
6182
6353
  * A `TextElement` form element is used to define descriptive text as an element within a layer or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm} {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html FormTemplate} and can be used to aid those entering or updating information.
@@ -6232,6 +6403,49 @@ declare namespace __esri {
6232
6403
  textFormat?: "plain-text" | "markdown";
6233
6404
  }
6234
6405
 
6406
+ /**
6407
+ * `AttachmentElement` defines how one or more attachments can participate in the form.
6408
+ *
6409
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#AttachmentElement Read more...}
6410
+ */
6411
+ export type elementsAttachmentElement = AttachmentElement;
6412
+
6413
+ /**
6414
+ * Form element types.
6415
+ *
6416
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#Element Read more...}
6417
+ */
6418
+ export type elementsElement = FieldElement | GroupElement | RelationshipElement | TextElement | AttachmentElement;
6419
+
6420
+ /**
6421
+ * `FieldElement` defines how a feature layer's field participates in the form.
6422
+ *
6423
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#FieldElement Read more...}
6424
+ */
6425
+ export type elementsFieldElement = FieldElement;
6426
+
6427
+ /**
6428
+ * `GroupElement` defines a container that holds a set of form elements
6429
+ * that can be expanded, collapsed, or displayed together.
6430
+ *
6431
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#GroupElement Read more...}
6432
+ */
6433
+ export type elementsGroupElement = GroupElement;
6434
+
6435
+ /**
6436
+ * `RelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm}.
6437
+ *
6438
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#RelationshipElement Read more...}
6439
+ */
6440
+ export type elementsRelationshipElement = RelationshipElement;
6441
+
6442
+ /**
6443
+ * `TextElement` form element is used to define descriptive text as an element within a layer or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureForm.html FeatureForm} {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-FormTemplate.html FormTemplate} and can be used to aid those entering or updating information.
6444
+ *
6445
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements.html#TextElement Read more...}
6446
+ */
6447
+ export type elementsTextElement = TextElement;
6448
+
6235
6449
  export interface ExpressionInfo extends Accessor, JSONSupport {}
6236
6450
 
6237
6451
  export class ExpressionInfo {
@@ -6439,16 +6653,6 @@ declare namespace __esri {
6439
6653
  title?: string;
6440
6654
  }
6441
6655
 
6442
- /**
6443
- * A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-elements-Element.html Element} classes
6444
- * when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
6445
- *
6446
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-form-support-elements.html Read more...}
6447
- */
6448
- interface elements {}
6449
-
6450
- export const elements: elements;
6451
-
6452
6656
  /**
6453
6657
  * A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Geometry.html Geometry} classes when developing with
6454
6658
  * {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
@@ -6469,13 +6673,7 @@ declare namespace __esri {
6469
6673
  *
6470
6674
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Geometry Read more...}
6471
6675
  */
6472
- export type Geometry =
6473
- | __esri.Extent
6474
- | __esri.Multipoint
6475
- | __esri.Point
6476
- | __esri.Polygon
6477
- | __esri.Polyline
6478
- | __esri.Mesh;
6676
+ export type Geometry = __esri.Extent | __esri.Multipoint | __esri.Point | __esri.Polygon | __esri.Polyline;
6479
6677
 
6480
6678
  /**
6481
6679
  * Extent.
@@ -6516,14 +6714,6 @@ declare namespace __esri {
6516
6714
  */
6517
6715
  export type Polyline = __esri.Polyline;
6518
6716
  export const Polyline: typeof __esri.Polyline;
6519
-
6520
- /**
6521
- * Mesh.
6522
- *
6523
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Mesh Read more...}
6524
- */
6525
- export type Mesh = __esri.Mesh;
6526
- export const Mesh: typeof __esri.Mesh;
6527
6717
  }
6528
6718
 
6529
6719
  export class Circle extends Polygon {
@@ -7106,7 +7296,7 @@ declare namespace __esri {
7106
7296
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#buffer Read more...}
7107
7297
  */
7108
7298
  buffer(
7109
- geometry: Geometry | Geometry[],
7299
+ geometry: geometryGeometry | geometryGeometry[],
7110
7300
  distance: number | number[],
7111
7301
  unit?: LinearUnits,
7112
7302
  unionResults?: boolean,
@@ -7121,7 +7311,7 @@ declare namespace __esri {
7121
7311
  *
7122
7312
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#clip Read more...}
7123
7313
  */
7124
- clip(geometry: Geometry, envelope: Extent): Geometry;
7314
+ clip(geometry: geometryGeometry, envelope: Extent): geometryGeometry;
7125
7315
  /**
7126
7316
  * Indicates if one geometry contains another geometry.
7127
7317
  *
@@ -7132,7 +7322,7 @@ declare namespace __esri {
7132
7322
  *
7133
7323
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#contains Read more...}
7134
7324
  */
7135
- contains(containerGeometry: Geometry, insideGeometry: Geometry): boolean;
7325
+ contains(containerGeometry: geometryGeometry, insideGeometry: geometryGeometry): boolean;
7136
7326
  /**
7137
7327
  * Calculates the convex hull of one or more geometries.
7138
7328
  *
@@ -7143,7 +7333,7 @@ declare namespace __esri {
7143
7333
  *
7144
7334
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#convexHull Read more...}
7145
7335
  */
7146
- convexHull(geometry: Geometry | Geometry[], merge?: boolean): Geometry | Geometry[];
7336
+ convexHull(geometry: geometryGeometry | geometryGeometry[], merge?: boolean): geometryGeometry | geometryGeometry[];
7147
7337
  /**
7148
7338
  * Indicates if one geometry crosses another geometry.
7149
7339
  *
@@ -7154,7 +7344,7 @@ declare namespace __esri {
7154
7344
  *
7155
7345
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#crosses Read more...}
7156
7346
  */
7157
- crosses(geometry1: Geometry, geometry2: Geometry): boolean;
7347
+ crosses(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
7158
7348
  /**
7159
7349
  * Splits the input Polyline or Polygon where it crosses a cutting Polyline.
7160
7350
  *
@@ -7165,7 +7355,7 @@ declare namespace __esri {
7165
7355
  *
7166
7356
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#cut Read more...}
7167
7357
  */
7168
- cut(geometry: Geometry, cutter: Polyline): Geometry[];
7358
+ cut(geometry: geometryGeometry, cutter: Polyline): geometryGeometry[];
7169
7359
  /**
7170
7360
  * Densify geometries by plotting points between existing vertices.
7171
7361
  *
@@ -7177,7 +7367,11 @@ declare namespace __esri {
7177
7367
  *
7178
7368
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#densify Read more...}
7179
7369
  */
7180
- densify(geometry: Geometry, maxSegmentLength: number, maxSegmentLengthUnit?: LinearUnits): Geometry;
7370
+ densify(
7371
+ geometry: geometryGeometry,
7372
+ maxSegmentLength: number,
7373
+ maxSegmentLengthUnit?: LinearUnits | number,
7374
+ ): geometryGeometry;
7181
7375
  /**
7182
7376
  * Creates the difference of two geometries.
7183
7377
  *
@@ -7188,7 +7382,10 @@ declare namespace __esri {
7188
7382
  *
7189
7383
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#difference Read more...}
7190
7384
  */
7191
- difference(inputGeometry: Geometry | Geometry[], subtractor: Geometry): Geometry | Geometry[];
7385
+ difference(
7386
+ inputGeometry: geometryGeometry | geometryGeometry[],
7387
+ subtractor: geometryGeometry,
7388
+ ): geometryGeometry | geometryGeometry[];
7192
7389
  /**
7193
7390
  * Indicates if one geometry is disjoint (doesn't intersect in any way) with another geometry.
7194
7391
  *
@@ -7199,7 +7396,7 @@ declare namespace __esri {
7199
7396
  *
7200
7397
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#disjoint Read more...}
7201
7398
  */
7202
- disjoint(geometry1: Geometry, geometry2: Geometry): boolean;
7399
+ disjoint(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
7203
7400
  /**
7204
7401
  * Calculates the shortest planar distance between two geometries.
7205
7402
  *
@@ -7211,7 +7408,7 @@ declare namespace __esri {
7211
7408
  *
7212
7409
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#distance Read more...}
7213
7410
  */
7214
- distance(geometry1: Geometry, geometry2: Geometry, distanceUnit?: LinearUnits): number;
7411
+ distance(geometry1: geometryGeometry, geometry2: geometryGeometry, distanceUnit?: LinearUnits): number;
7215
7412
  /**
7216
7413
  * Indicates if two geometries are equal.
7217
7414
  *
@@ -7222,7 +7419,7 @@ declare namespace __esri {
7222
7419
  *
7223
7420
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#equals Read more...}
7224
7421
  */
7225
- equals(geometry1: Geometry, geometry2: Geometry): boolean;
7422
+ equals(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
7226
7423
  /**
7227
7424
  * Returns an object containing additional information about the input spatial reference.
7228
7425
  *
@@ -7243,7 +7440,7 @@ declare namespace __esri {
7243
7440
  *
7244
7441
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#flipHorizontal Read more...}
7245
7442
  */
7246
- flipHorizontal(geometry: Geometry, flipOrigin?: Point): Geometry;
7443
+ flipHorizontal(geometry: geometryGeometry, flipOrigin?: Point): geometryGeometry;
7247
7444
  /**
7248
7445
  * Flips a geometry on the vertical axis.
7249
7446
  *
@@ -7254,7 +7451,7 @@ declare namespace __esri {
7254
7451
  *
7255
7452
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#flipVertical Read more...}
7256
7453
  */
7257
- flipVertical(geometry: Geometry, flipOrigin?: Point): Geometry;
7454
+ flipVertical(geometry: geometryGeometry, flipOrigin?: Point): geometryGeometry;
7258
7455
  /**
7259
7456
  * Performs the generalize operation on the geometries in the cursor.
7260
7457
  *
@@ -7268,11 +7465,11 @@ declare namespace __esri {
7268
7465
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#generalize Read more...}
7269
7466
  */
7270
7467
  generalize(
7271
- geometry: Geometry,
7468
+ geometry: geometryGeometry,
7272
7469
  maxDeviation: number,
7273
7470
  removeDegenerateParts?: boolean,
7274
- maxDeviationUnit?: LinearUnits,
7275
- ): Geometry;
7471
+ maxDeviationUnit?: LinearUnits | number,
7472
+ ): geometryGeometry;
7276
7473
  /**
7277
7474
  * Calculates the area of the input geometry.
7278
7475
  *
@@ -7283,7 +7480,7 @@ declare namespace __esri {
7283
7480
  *
7284
7481
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicArea Read more...}
7285
7482
  */
7286
- geodesicArea(geometry: Polygon, unit?: AreaUnits): number;
7483
+ geodesicArea(geometry: Polygon, unit?: AreaUnits | number): number;
7287
7484
  /**
7288
7485
  * Creates geodesic buffer polygons at a specified distance around the input geometries.
7289
7486
  *
@@ -7297,9 +7494,9 @@ declare namespace __esri {
7297
7494
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicBuffer Read more...}
7298
7495
  */
7299
7496
  geodesicBuffer(
7300
- geometry: Geometry | Geometry[],
7497
+ geometry: geometryGeometry | geometryGeometry[],
7301
7498
  distance: number | number[],
7302
- unit?: LinearUnits,
7499
+ unit?: LinearUnits | number,
7303
7500
  unionResults?: boolean,
7304
7501
  ): Polygon | Polygon[];
7305
7502
  /**
@@ -7328,7 +7525,7 @@ declare namespace __esri {
7328
7525
  *
7329
7526
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#geodesicLength Read more...}
7330
7527
  */
7331
- geodesicLength(geometry: Geometry, unit?: LinearUnits): number;
7528
+ geodesicLength(geometry: geometryGeometry, unit?: LinearUnits | number): number;
7332
7529
  /**
7333
7530
  * Creates new geometries from the intersections between two geometries.
7334
7531
  *
@@ -7339,7 +7536,10 @@ declare namespace __esri {
7339
7536
  *
7340
7537
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#intersect Read more...}
7341
7538
  */
7342
- intersect(geometry1: Geometry | Geometry[], geometry2: Geometry): Geometry | Geometry[];
7539
+ intersect(
7540
+ geometry1: geometryGeometry | geometryGeometry[],
7541
+ geometry2: geometryGeometry,
7542
+ ): geometryGeometry | geometryGeometry[];
7343
7543
  /**
7344
7544
  * Returns an array of points at the intersecting locations of two input polylines.
7345
7545
  *
@@ -7361,7 +7561,7 @@ declare namespace __esri {
7361
7561
  *
7362
7562
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#intersects Read more...}
7363
7563
  */
7364
- intersects(geometry1: Geometry, geometry2: Geometry): boolean;
7564
+ intersects(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
7365
7565
  /**
7366
7566
  * Indicates if the given geometry is topologically simple.
7367
7567
  *
@@ -7371,7 +7571,7 @@ declare namespace __esri {
7371
7571
  *
7372
7572
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#isSimple Read more...}
7373
7573
  */
7374
- isSimple(geometry: Geometry): boolean;
7574
+ isSimple(geometry: geometryGeometry): boolean;
7375
7575
  /**
7376
7576
  * Finds the coordinate of the geometry that is closest to the specified point.
7377
7577
  *
@@ -7382,7 +7582,7 @@ declare namespace __esri {
7382
7582
  *
7383
7583
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestCoordinate Read more...}
7384
7584
  */
7385
- nearestCoordinate(geometry: Geometry, inputPoint: Point): NearestPointResult;
7585
+ nearestCoordinate(geometry: geometryGeometry, inputPoint: Point): NearestPointResult;
7386
7586
  /**
7387
7587
  * Finds the vertex on the geometry nearest to the specified point.
7388
7588
  *
@@ -7393,7 +7593,7 @@ declare namespace __esri {
7393
7593
  *
7394
7594
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertex Read more...}
7395
7595
  */
7396
- nearestVertex(geometry: Geometry, inputPoint: Point): NearestPointResult;
7596
+ nearestVertex(geometry: geometryGeometry, inputPoint: Point): NearestPointResult;
7397
7597
  /**
7398
7598
  * Finds all vertices in the given distance from the specified point, sorted from the closest to the furthest and
7399
7599
  * returns them as an array of Objects.
@@ -7408,7 +7608,7 @@ declare namespace __esri {
7408
7608
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#nearestVertices Read more...}
7409
7609
  */
7410
7610
  nearestVertices(
7411
- geometry: Geometry,
7611
+ geometry: geometryGeometry,
7412
7612
  inputPoint: Point,
7413
7613
  searchRadius: number,
7414
7614
  maxVertexCountToReturn: number,
@@ -7429,13 +7629,13 @@ declare namespace __esri {
7429
7629
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#offset Read more...}
7430
7630
  */
7431
7631
  offset(
7432
- geometry: Geometry | Geometry[],
7632
+ geometry: geometryGeometry | geometryGeometry[],
7433
7633
  offsetDistance: number,
7434
7634
  offsetUnit?: LinearUnits,
7435
7635
  joinType?: "round" | "bevel" | "miter" | "square",
7436
7636
  bevelRatio?: number,
7437
7637
  flattenError?: number,
7438
- ): Geometry | Geometry[];
7638
+ ): geometryGeometry | geometryGeometry[];
7439
7639
  /**
7440
7640
  * Indicates if one geometry overlaps another geometry.
7441
7641
  *
@@ -7446,7 +7646,7 @@ declare namespace __esri {
7446
7646
  *
7447
7647
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#overlaps Read more...}
7448
7648
  */
7449
- overlaps(geometry1: Geometry, geometry2: Geometry): boolean;
7649
+ overlaps(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
7450
7650
  /**
7451
7651
  * Calculates the area of the input geometry.
7452
7652
  *
@@ -7468,7 +7668,7 @@ declare namespace __esri {
7468
7668
  *
7469
7669
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#planarLength Read more...}
7470
7670
  */
7471
- planarLength(geometry: Geometry, unit?: LinearUnits): number;
7671
+ planarLength(geometry: geometryGeometry, unit?: LinearUnits | number): number;
7472
7672
  /**
7473
7673
  * Indicates if the given DE-9IM relation is true for the two geometries.
7474
7674
  *
@@ -7480,7 +7680,7 @@ declare namespace __esri {
7480
7680
  *
7481
7681
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#relate Read more...}
7482
7682
  */
7483
- relate(geometry1: Geometry, geometry2: Geometry, relation: string): boolean;
7683
+ relate(geometry1: geometryGeometry, geometry2: geometryGeometry, relation: string): boolean;
7484
7684
  /**
7485
7685
  * Rotates a geometry counterclockwise by the specified number of degrees.
7486
7686
  *
@@ -7492,7 +7692,7 @@ declare namespace __esri {
7492
7692
  *
7493
7693
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#rotate Read more...}
7494
7694
  */
7495
- rotate(geometry: Geometry, angle: number, rotationOrigin?: Point): Geometry;
7695
+ rotate(geometry: geometryGeometry, angle: number, rotationOrigin?: Point): geometryGeometry;
7496
7696
  /**
7497
7697
  * Performs the simplify operation on the geometry, which alters the given geometries to make their definitions
7498
7698
  * topologically legal with respect to their geometry type.
@@ -7503,7 +7703,7 @@ declare namespace __esri {
7503
7703
  *
7504
7704
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#simplify Read more...}
7505
7705
  */
7506
- simplify(geometry: Geometry): Geometry;
7706
+ simplify(geometry: geometryGeometry): geometryGeometry;
7507
7707
  /**
7508
7708
  * Creates the symmetric difference of two geometries.
7509
7709
  *
@@ -7514,7 +7714,10 @@ declare namespace __esri {
7514
7714
  *
7515
7715
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#symmetricDifference Read more...}
7516
7716
  */
7517
- symmetricDifference(leftGeometry: Geometry | Geometry[], rightGeometry: Geometry): Geometry | Geometry[];
7717
+ symmetricDifference(
7718
+ leftGeometry: geometryGeometry | geometryGeometry[],
7719
+ rightGeometry: geometryGeometry,
7720
+ ): geometryGeometry | geometryGeometry[];
7518
7721
  /**
7519
7722
  * Indicates if one geometry touches another geometry.
7520
7723
  *
@@ -7525,7 +7728,7 @@ declare namespace __esri {
7525
7728
  *
7526
7729
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#touches Read more...}
7527
7730
  */
7528
- touches(geometry1: Geometry, geometry2: Geometry): boolean;
7731
+ touches(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
7529
7732
  /**
7530
7733
  * All inputs must be of the same type of geometries and share one spatial reference.
7531
7734
  *
@@ -7535,7 +7738,7 @@ declare namespace __esri {
7535
7738
  *
7536
7739
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#union Read more...}
7537
7740
  */
7538
- union(geometries: Geometry[]): Geometry;
7741
+ union(geometries: geometryGeometry[]): geometryGeometry;
7539
7742
  /**
7540
7743
  * Indicates if one geometry is within another geometry.
7541
7744
  *
@@ -7546,7 +7749,7 @@ declare namespace __esri {
7546
7749
  *
7547
7750
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngine.html#within Read more...}
7548
7751
  */
7549
- within(innerGeometry: Geometry, outerGeometry: Geometry): boolean;
7752
+ within(innerGeometry: geometryGeometry, outerGeometry: geometryGeometry): boolean;
7550
7753
  }
7551
7754
 
7552
7755
  export const geometryEngine: geometryEngine;
@@ -7801,14 +8004,14 @@ declare namespace __esri {
7801
8004
  /**
7802
8005
  * Calculates the area of the input geometry.
7803
8006
  *
7804
- * @param geometry The input polygon.
8007
+ * @param geometry The input geometry.
7805
8008
  * @param unit Measurement unit of the return value. Defaults to the units of the input geometries.
7806
8009
  *
7807
8010
  * @deprecated since 4.32. Use {@link module:esri/geometry/operators/geodeticAreaOperator geodeticAreaOperator} instead.
7808
8011
  *
7809
8012
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicArea Read more...}
7810
8013
  */
7811
- geodesicArea(geometry: Polygon, unit?: AreaUnits): Promise<number>;
8014
+ geodesicArea(geometry: Geometry, unit?: AreaUnits | number): Promise<number>;
7812
8015
  /**
7813
8016
  * Creates geodesic buffer polygons at a specified distance around the input geometries.
7814
8017
  *
@@ -7830,7 +8033,7 @@ declare namespace __esri {
7830
8033
  /**
7831
8034
  * Returns a geodetically densified version of the input geometry.
7832
8035
  *
7833
- * @param geometry A polyline or polygon to densify.
8036
+ * @param geometry A geometry to densify.
7834
8037
  * @param maxSegmentLength The maximum segment length allowed (in meters if a `maxSegmentLengthUnit` is not provided). This must be a positive value.
7835
8038
  * @param maxSegmentLengthUnit Measurement unit for `maxSegmentLength`. If not provided, the unit will default to `meters`.
7836
8039
  *
@@ -7839,7 +8042,7 @@ declare namespace __esri {
7839
8042
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#geodesicDensify Read more...}
7840
8043
  */
7841
8044
  geodesicDensify(
7842
- geometry: Polyline | Polygon,
8045
+ geometry: geometryGeometry,
7843
8046
  maxSegmentLength: number,
7844
8047
  maxSegmentLengthUnit?: LinearUnits,
7845
8048
  ): Promise<Geometry>;
@@ -7933,11 +8136,11 @@ declare namespace __esri {
7933
8136
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#nearestVertices Read more...}
7934
8137
  */
7935
8138
  nearestVertices(
7936
- geometry: Geometry,
8139
+ geometry: geometryGeometry,
7937
8140
  inputPoint: Point,
7938
8141
  searchRadius: number,
7939
8142
  maxVertexCountToReturn: number,
7940
- ): Promise<NearestPointResult>;
8143
+ ): Promise<NearestPointResult[]>;
7941
8144
  /**
7942
8145
  * The offset operation creates a geometry that is a constant planar distance from an input
7943
8146
  * polyline or polygon.
@@ -7975,14 +8178,14 @@ declare namespace __esri {
7975
8178
  /**
7976
8179
  * Calculates the area of the input geometry.
7977
8180
  *
7978
- * @param geometry The input polygon.
8181
+ * @param geometry The input geometry.
7979
8182
  * @param unit Measurement unit of the return value. Defaults to the units of the input geometries.
7980
8183
  *
7981
8184
  * @deprecated since 4.32. Use {@link module:esri/geometry/operators/areaOperator areaOperator} instead.
7982
8185
  *
7983
8186
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#planarArea Read more...}
7984
8187
  */
7985
- planarArea(geometry: Polygon, unit?: AreaUnits): Promise<number>;
8188
+ planarArea(geometry: geometryGeometry, unit?: AreaUnits | number): Promise<number>;
7986
8189
  /**
7987
8190
  * Calculates the length of the input geometry.
7988
8191
  *
@@ -8017,7 +8220,7 @@ declare namespace __esri {
8017
8220
  *
8018
8221
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-geometryEngineAsync.html#rotate Read more...}
8019
8222
  */
8020
- rotate(geometry: Geometry, angle: number, rotationOrigin?: Point): Promise<Geometry>;
8223
+ rotate(geometry: geometryGeometry, angle: number, rotationOrigin?: Point): Promise<geometryGeometry>;
8021
8224
  /**
8022
8225
  * Performs the simplify operation on the geometry, which alters the given geometries to make their definitions
8023
8226
  * topologically legal with respect to their geometry type.
@@ -8719,7 +8922,7 @@ declare namespace __esri {
8719
8922
  *
8720
8923
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-affineTransformOperator.html#execute Read more...}
8721
8924
  */
8722
- execute(geometry: Geometry, transformation: Transformation): Geometry;
8925
+ execute(geometry: geometryGeometry, transformation: Transformation): geometryGeometry;
8723
8926
  /**
8724
8927
  * Executes an affine transformation on multiple geometries.
8725
8928
  *
@@ -8728,7 +8931,7 @@ declare namespace __esri {
8728
8931
  *
8729
8932
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-affineTransformOperator.html#executeMany Read more...}
8730
8933
  */
8731
- executeMany(geometries: Geometry[], transformation: Transformation): Geometry[];
8934
+ executeMany(geometries: geometryGeometry[], transformation: Transformation): geometryGeometry[];
8732
8935
  }
8733
8936
 
8734
8937
  export const affineTransformOperator: affineTransformOperator;
@@ -8747,7 +8950,7 @@ declare namespace __esri {
8747
8950
  *
8748
8951
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#execute Read more...}
8749
8952
  */
8750
- execute(geometry: Geometry, alpha: number): ExecuteResult;
8953
+ execute(geometry: geometryGeometry, alpha: number): ExecuteResult;
8751
8954
  /**
8752
8955
  * Calculates the alpha shape on a set of geometries with the option to aggregate the result.
8753
8956
  *
@@ -8758,7 +8961,11 @@ declare namespace __esri {
8758
8961
  *
8759
8962
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-alphaShapeOperator.html#executeMany Read more...}
8760
8963
  */
8761
- executeMany(geometries: Geometry[], alpha: number, options?: alphaShapeOperatorExecuteManyOptions): Polygon[];
8964
+ executeMany(
8965
+ geometries: geometryGeometry[],
8966
+ alpha: number,
8967
+ options?: alphaShapeOperatorExecuteManyOptions,
8968
+ ): Polygon[];
8762
8969
  }
8763
8970
 
8764
8971
  export const alphaShapeOperator: alphaShapeOperator;
@@ -8792,7 +8999,7 @@ declare namespace __esri {
8792
8999
  *
8793
9000
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-areaOperator.html#execute Read more...}
8794
9001
  */
8795
- execute(geometry: Geometry, options?: areaOperatorExecuteOptions): number;
9002
+ execute(geometry: geometryGeometry, options?: areaOperatorExecuteOptions): number;
8796
9003
  }
8797
9004
 
8798
9005
  export const areaOperator: areaOperator;
@@ -8833,7 +9040,7 @@ declare namespace __esri {
8833
9040
  *
8834
9041
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#execute Read more...}
8835
9042
  */
8836
- execute(geometry: Geometry): Geometry;
9043
+ execute(geometry: geometryGeometry): geometryGeometry;
8837
9044
  /**
8838
9045
  * Calculates the boundaries on a set of geometries.
8839
9046
  *
@@ -8841,7 +9048,7 @@ declare namespace __esri {
8841
9048
  *
8842
9049
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-boundaryOperator.html#executeMany Read more...}
8843
9050
  */
8844
- executeMany(geometries: Geometry[]): Geometry[];
9051
+ executeMany(geometries: geometryGeometry[]): Geometry[];
8845
9052
  }
8846
9053
 
8847
9054
  export const boundaryOperator: boundaryOperator;
@@ -8862,7 +9069,7 @@ declare namespace __esri {
8862
9069
  *
8863
9070
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#execute Read more...}
8864
9071
  */
8865
- execute(geometry: Geometry, distance: number, options?: bufferOperatorExecuteOptions): Geometry;
9072
+ execute(geometry: geometryGeometry, distance: number, options?: bufferOperatorExecuteOptions): geometryGeometry;
8866
9073
  /**
8867
9074
  * Creates a buffer around the input geometries.
8868
9075
  *
@@ -8876,7 +9083,11 @@ declare namespace __esri {
8876
9083
  *
8877
9084
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-bufferOperator.html#executeMany Read more...}
8878
9085
  */
8879
- executeMany(geometries: Geometry[], distances: number[], options?: bufferOperatorExecuteManyOptions): Geometry[];
9086
+ executeMany(
9087
+ geometries: geometryGeometry[],
9088
+ distances: number[],
9089
+ options?: bufferOperatorExecuteManyOptions,
9090
+ ): geometryGeometry[];
8880
9091
  }
8881
9092
 
8882
9093
  export const bufferOperator: bufferOperator;
@@ -8905,7 +9116,7 @@ declare namespace __esri {
8905
9116
  *
8906
9117
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-centroidOperator.html#execute Read more...}
8907
9118
  */
8908
- execute(geometry: Geometry): Point;
9119
+ execute(geometry: geometryGeometry): Point;
8909
9120
  }
8910
9121
 
8911
9122
  export const centroidOperator: centroidOperator;
@@ -8924,7 +9135,7 @@ declare namespace __esri {
8924
9135
  *
8925
9136
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-clipOperator.html#execute Read more...}
8926
9137
  */
8927
- execute(geometry: Geometry, extent: Extent): Geometry;
9138
+ execute(geometry: geometryGeometry, extent: Extent): geometryGeometry;
8928
9139
  /**
8929
9140
  * Perform the clip operation on the input geometries.
8930
9141
  *
@@ -8933,7 +9144,7 @@ declare namespace __esri {
8933
9144
  *
8934
9145
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-clipOperator.html#executeMany Read more...}
8935
9146
  */
8936
- executeMany(geometries: Geometry[], extent: Extent): Geometry[];
9147
+ executeMany(geometries: geometryGeometry[], extent: Extent): Geometry[];
8937
9148
  }
8938
9149
 
8939
9150
  export const clipOperator: clipOperator;
@@ -8951,7 +9162,7 @@ declare namespace __esri {
8951
9162
  *
8952
9163
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html#accelerateGeometry Read more...}
8953
9164
  */
8954
- accelerateGeometry(geometry: Geometry): boolean;
9165
+ accelerateGeometry(geometry: geometryGeometry): boolean;
8955
9166
  /**
8956
9167
  * Perform the contains operation on two geometries.
8957
9168
  *
@@ -8960,7 +9171,7 @@ declare namespace __esri {
8960
9171
  *
8961
9172
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-containsOperator.html#execute Read more...}
8962
9173
  */
8963
- execute(geometry1: Geometry, geometry2: Geometry): boolean;
9174
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
8964
9175
  }
8965
9176
 
8966
9177
  export const containsOperator: containsOperator;
@@ -8978,7 +9189,7 @@ declare namespace __esri {
8978
9189
  *
8979
9190
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#execute Read more...}
8980
9191
  */
8981
- execute(geometry: Geometry): Geometry;
9192
+ execute(geometry: geometryGeometry): geometryGeometry;
8982
9193
  /**
8983
9194
  * Calculates the convex hull.
8984
9195
  *
@@ -8988,7 +9199,7 @@ declare namespace __esri {
8988
9199
  *
8989
9200
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#executeMany Read more...}
8990
9201
  */
8991
- executeMany(geometries: Geometry[], options?: convexHullOperatorExecuteManyOptions): Geometry[];
9202
+ executeMany(geometries: geometryGeometry[], options?: convexHullOperatorExecuteManyOptions): Geometry[];
8992
9203
  /**
8993
9204
  * Checks if a geometry is convex.
8994
9205
  *
@@ -8996,7 +9207,7 @@ declare namespace __esri {
8996
9207
  *
8997
9208
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-convexHullOperator.html#isConvex Read more...}
8998
9209
  */
8999
- isConvex(geometry: Geometry): boolean;
9210
+ isConvex(geometry: geometryGeometry): boolean;
9000
9211
  }
9001
9212
 
9002
9213
  export const convexHullOperator: convexHullOperator;
@@ -9018,7 +9229,7 @@ declare namespace __esri {
9018
9229
  *
9019
9230
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html#accelerateGeometry Read more...}
9020
9231
  */
9021
- accelerateGeometry(geometry: Geometry): boolean;
9232
+ accelerateGeometry(geometry: geometryGeometry): boolean;
9022
9233
  /**
9023
9234
  * Perform the crosses operation on two geometries.
9024
9235
  *
@@ -9027,7 +9238,7 @@ declare namespace __esri {
9027
9238
  *
9028
9239
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-crossesOperator.html#execute Read more...}
9029
9240
  */
9030
- execute(geometry1: Geometry, geometry2: Geometry): boolean;
9241
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
9031
9242
  }
9032
9243
 
9033
9244
  export const crossesOperator: crossesOperator;
@@ -9046,7 +9257,7 @@ declare namespace __esri {
9046
9257
  *
9047
9258
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-cutOperator.html#execute Read more...}
9048
9259
  */
9049
- execute(geometry: Geometry, polyline: Polyline): Geometry[];
9260
+ execute(geometry: geometryGeometry, polyline: Polyline): Geometry[];
9050
9261
  }
9051
9262
 
9052
9263
  export const cutOperator: cutOperator;
@@ -9069,7 +9280,11 @@ declare namespace __esri {
9069
9280
  *
9070
9281
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#execute Read more...}
9071
9282
  */
9072
- execute(geometry: Geometry, maxSegmentLength: number, options?: densifyOperatorExecuteOptions): Geometry;
9283
+ execute(
9284
+ geometry: geometryGeometry,
9285
+ maxSegmentLength: number,
9286
+ options?: densifyOperatorExecuteOptions,
9287
+ ): geometryGeometry;
9073
9288
  /**
9074
9289
  * Performs the Densify operation on the geometry set.
9075
9290
  *
@@ -9083,10 +9298,10 @@ declare namespace __esri {
9083
9298
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-densifyOperator.html#executeMany Read more...}
9084
9299
  */
9085
9300
  executeMany(
9086
- geometries: Geometry[],
9301
+ geometries: geometryGeometry[],
9087
9302
  maxSegmentLength: number,
9088
9303
  options?: densifyOperatorExecuteManyOptions,
9089
- ): Geometry[];
9304
+ ): geometryGeometry[];
9090
9305
  }
9091
9306
 
9092
9307
  export const densifyOperator: densifyOperator;
@@ -9117,7 +9332,7 @@ declare namespace __esri {
9117
9332
  *
9118
9333
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-differenceOperator.html#execute Read more...}
9119
9334
  */
9120
- execute(geometry: Geometry, subtractor: Geometry): Geometry;
9335
+ execute(geometry: geometryGeometry, subtractor: geometryGeometry): geometryGeometry;
9121
9336
  /**
9122
9337
  * Performs the Topological difference operation on the geometry set.
9123
9338
  *
@@ -9126,7 +9341,7 @@ declare namespace __esri {
9126
9341
  *
9127
9342
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-differenceOperator.html#executeMany Read more...}
9128
9343
  */
9129
- executeMany(geometries: Geometry, subtractor: Geometry): Geometry[];
9344
+ executeMany(geometries: geometryGeometry[], subtractor: geometryGeometry): Geometry[];
9130
9345
  }
9131
9346
 
9132
9347
  export const differenceOperator: differenceOperator;
@@ -9144,7 +9359,7 @@ declare namespace __esri {
9144
9359
  *
9145
9360
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html#accelerateGeometry Read more...}
9146
9361
  */
9147
- accelerateGeometry(geometry: Geometry): boolean;
9362
+ accelerateGeometry(geometry: geometryGeometry): boolean;
9148
9363
  /**
9149
9364
  * Perform a disjoint operation on two geometries.
9150
9365
  *
@@ -9153,7 +9368,7 @@ declare namespace __esri {
9153
9368
  *
9154
9369
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-disjointOperator.html#execute Read more...}
9155
9370
  */
9156
- execute(geometry1: Geometry, geometry2: Geometry): boolean;
9371
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
9157
9372
  }
9158
9373
 
9159
9374
  export const disjointOperator: disjointOperator;
@@ -9174,7 +9389,7 @@ declare namespace __esri {
9174
9389
  *
9175
9390
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-distanceOperator.html#execute Read more...}
9176
9391
  */
9177
- execute(geometry1: Geometry, geometry2: Geometry, options?: distanceOperatorExecuteOptions): number;
9392
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry, options?: distanceOperatorExecuteOptions): number;
9178
9393
  }
9179
9394
 
9180
9395
  export const distanceOperator: distanceOperator;
@@ -9196,7 +9411,7 @@ declare namespace __esri {
9196
9411
  *
9197
9412
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html#accelerateGeometry Read more...}
9198
9413
  */
9199
- accelerateGeometry(geometry: Geometry): boolean;
9414
+ accelerateGeometry(geometry: geometryGeometry): boolean;
9200
9415
  /**
9201
9416
  * Perform the equals operation on two geometries.
9202
9417
  *
@@ -9205,7 +9420,7 @@ declare namespace __esri {
9205
9420
  *
9206
9421
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-equalsOperator.html#execute Read more...}
9207
9422
  */
9208
- execute(geometry1: Geometry, geometry2: Geometry): boolean;
9423
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
9209
9424
  }
9210
9425
 
9211
9426
  export const equalsOperator: equalsOperator;
@@ -9260,7 +9475,11 @@ declare namespace __esri {
9260
9475
  *
9261
9476
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#execute Read more...}
9262
9477
  */
9263
- execute(geometry: Geometry, maxDeviation: number, options?: generalizeOperatorExecuteOptions): Geometry;
9478
+ execute(
9479
+ geometry: geometryGeometry,
9480
+ maxDeviation: number,
9481
+ options?: generalizeOperatorExecuteOptions,
9482
+ ): geometryGeometry;
9264
9483
  /**
9265
9484
  * Performs the generalize operation on the input geometries.
9266
9485
  *
@@ -9273,10 +9492,10 @@ declare namespace __esri {
9273
9492
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-generalizeOperator.html#executeMany Read more...}
9274
9493
  */
9275
9494
  executeMany(
9276
- geometries: Geometry[],
9495
+ geometries: geometryGeometry[],
9277
9496
  maxDeviation: number,
9278
9497
  options?: generalizeOperatorExecuteManyOptions,
9279
- ): Geometry[];
9498
+ ): geometryGeometry[];
9280
9499
  }
9281
9500
 
9282
9501
  export const generalizeOperator: generalizeOperator;
@@ -9309,7 +9528,11 @@ declare namespace __esri {
9309
9528
  *
9310
9529
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#execute Read more...}
9311
9530
  */
9312
- execute(geometry: Geometry, distance: number, options?: geodesicBufferOperatorExecuteOptions): Geometry;
9531
+ execute(
9532
+ geometry: geometryGeometry,
9533
+ distance: number,
9534
+ options?: geodesicBufferOperatorExecuteOptions,
9535
+ ): geometryGeometry;
9313
9536
  /**
9314
9537
  * Creates a geodesic buffer around the input geometries.
9315
9538
  *
@@ -9324,10 +9547,10 @@ declare namespace __esri {
9324
9547
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicBufferOperator.html#executeMany Read more...}
9325
9548
  */
9326
9549
  executeMany(
9327
- geometries: Geometry[],
9550
+ geometries: geometryGeometry[],
9328
9551
  distances: number[],
9329
9552
  options?: geodesicBufferOperatorExecuteManyOptions,
9330
- ): Geometry[];
9553
+ ): geometryGeometry[];
9331
9554
  /**
9332
9555
  * Indicates if all dependencies of this module have been loaded.
9333
9556
  *
@@ -9345,14 +9568,14 @@ declare namespace __esri {
9345
9568
  export const geodesicBufferOperator: geodesicBufferOperator;
9346
9569
 
9347
9570
  export interface geodesicBufferOperatorExecuteManyOptions {
9348
- curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
9571
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
9349
9572
  maxDeviation?: number;
9350
9573
  union?: boolean;
9351
9574
  unit?: LengthUnit;
9352
9575
  }
9353
9576
 
9354
9577
  export interface geodesicBufferOperatorExecuteOptions {
9355
- curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
9578
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
9356
9579
  maxDeviation?: number;
9357
9580
  unit?: LengthUnit;
9358
9581
  }
@@ -9377,7 +9600,7 @@ declare namespace __esri {
9377
9600
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestCoordinate Read more...}
9378
9601
  */
9379
9602
  getNearestCoordinate(
9380
- geometry: Geometry,
9603
+ geometry: geometryGeometry,
9381
9604
  point: Point,
9382
9605
  options?: geodesicProximityOperatorGetNearestCoordinateOptions,
9383
9606
  ): ProximityResult;
@@ -9392,7 +9615,7 @@ declare namespace __esri {
9392
9615
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertex Read more...}
9393
9616
  */
9394
9617
  getNearestVertex(
9395
- geometry: Geometry,
9618
+ geometry: geometryGeometry,
9396
9619
  point: Point,
9397
9620
  options?: geodesicProximityOperatorGetNearestVertexOptions,
9398
9621
  ): ProximityResult;
@@ -9409,7 +9632,7 @@ declare namespace __esri {
9409
9632
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodesicProximityOperator.html#getNearestVertices Read more...}
9410
9633
  */
9411
9634
  getNearestVertices(
9412
- geometry: Geometry,
9635
+ geometry: geometryGeometry,
9413
9636
  point: Point,
9414
9637
  searchRadius: number,
9415
9638
  maxVertexCountToReturn: number,
@@ -9475,7 +9698,7 @@ declare namespace __esri {
9475
9698
  *
9476
9699
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticAreaOperator.html#execute Read more...}
9477
9700
  */
9478
- execute(geometry: Geometry, options?: geodeticAreaOperatorExecuteOptions): number;
9701
+ execute(geometry: geometryGeometry, options?: geodeticAreaOperatorExecuteOptions): number;
9479
9702
  /**
9480
9703
  * Indicates if all dependencies of this module have been loaded.
9481
9704
  *
@@ -9493,7 +9716,7 @@ declare namespace __esri {
9493
9716
  export const geodeticAreaOperator: geodeticAreaOperator;
9494
9717
 
9495
9718
  export interface geodeticAreaOperatorExecuteOptions {
9496
- curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
9719
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
9497
9720
  unit?: AreaUnit;
9498
9721
  }
9499
9722
 
@@ -9514,7 +9737,11 @@ declare namespace __esri {
9514
9737
  *
9515
9738
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#execute Read more...}
9516
9739
  */
9517
- execute(geometry: Geometry, maxSegmentLength: number, options?: geodeticDensifyOperatorExecuteOptions): Geometry;
9740
+ execute(
9741
+ geometry: geometryGeometry,
9742
+ maxSegmentLength: number,
9743
+ options?: geodeticDensifyOperatorExecuteOptions,
9744
+ ): geometryGeometry;
9518
9745
  /**
9519
9746
  * Densifies the input geometries.
9520
9747
  *
@@ -9527,7 +9754,7 @@ declare namespace __esri {
9527
9754
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDensifyOperator.html#executeMany Read more...}
9528
9755
  */
9529
9756
  executeMany(
9530
- geometries: Geometry[],
9757
+ geometries: geometryGeometry[],
9531
9758
  maxSegmentLength: number,
9532
9759
  options?: geodeticDensifyOperatorExecuteManyOptions,
9533
9760
  ): Geometry[];
@@ -9548,12 +9775,12 @@ declare namespace __esri {
9548
9775
  export const geodeticDensifyOperator: geodeticDensifyOperator;
9549
9776
 
9550
9777
  export interface geodeticDensifyOperatorExecuteManyOptions {
9551
- curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
9778
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
9552
9779
  unit?: LengthUnit;
9553
9780
  }
9554
9781
 
9555
9782
  export interface geodeticDensifyOperatorExecuteOptions {
9556
- curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
9783
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
9557
9784
  unit?: LengthUnit;
9558
9785
  }
9559
9786
 
@@ -9574,7 +9801,11 @@ declare namespace __esri {
9574
9801
  *
9575
9802
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticDistanceOperator.html#execute Read more...}
9576
9803
  */
9577
- execute(geometry1: Geometry, geometry2: Geometry, options?: geodeticDistanceOperatorExecuteOptions): number;
9804
+ execute(
9805
+ geometry1: geometryGeometry,
9806
+ geometry2: geometryGeometry,
9807
+ options?: geodeticDistanceOperatorExecuteOptions,
9808
+ ): number;
9578
9809
  /**
9579
9810
  * Indicates if all dependencies of this module have been loaded.
9580
9811
  *
@@ -9592,7 +9823,7 @@ declare namespace __esri {
9592
9823
  export const geodeticDistanceOperator: geodeticDistanceOperator;
9593
9824
 
9594
9825
  export interface geodeticDistanceOperatorExecuteOptions {
9595
- curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection";
9826
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section";
9596
9827
  unit?: LengthUnit;
9597
9828
  }
9598
9829
 
@@ -9612,7 +9843,7 @@ declare namespace __esri {
9612
9843
  *
9613
9844
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-geodeticLengthOperator.html#execute Read more...}
9614
9845
  */
9615
- execute(geometry: Geometry, options?: geodeticLengthOperatorExecuteOptions): number;
9846
+ execute(geometry: geometryGeometry, options?: geodeticLengthOperatorExecuteOptions): number;
9616
9847
  /**
9617
9848
  * Indicates if all dependencies of this module have been loaded.
9618
9849
  *
@@ -9630,7 +9861,7 @@ declare namespace __esri {
9630
9861
  export const geodeticLengthOperator: geodeticLengthOperator;
9631
9862
 
9632
9863
  export interface geodeticLengthOperatorExecuteOptions {
9633
- curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-selection" | "shape-preserving";
9864
+ curveType?: "geodesic" | "loxodrome" | "great-elliptic" | "normal-section" | "shape-preserving";
9634
9865
  unit?: LengthUnit;
9635
9866
  }
9636
9867
 
@@ -9657,12 +9888,12 @@ declare namespace __esri {
9657
9888
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-graphicBufferOperator.html#executeMany Read more...}
9658
9889
  */
9659
9890
  executeMany(
9660
- geometries: Geometry[],
9891
+ geometries: geometryGeometry[],
9661
9892
  distances: number[],
9662
9893
  joins: "round" | "miter" | "bevel",
9663
9894
  caps: "round" | "butt" | "square",
9664
9895
  options?: graphicBufferOperatorExecuteManyOptions,
9665
- ): Geometry[];
9896
+ ): geometryGeometry[];
9666
9897
  }
9667
9898
 
9668
9899
  export const graphicBufferOperator: graphicBufferOperator;
@@ -9688,7 +9919,7 @@ declare namespace __esri {
9688
9919
  *
9689
9920
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-integrateOperator.html#executeMany Read more...}
9690
9921
  */
9691
- executeMany(geometries: Geometry[]): Geometry[];
9922
+ executeMany(geometries: geometryGeometry[]): geometryGeometry[];
9692
9923
  }
9693
9924
 
9694
9925
  export const integrateOperator: integrateOperator;
@@ -9706,7 +9937,7 @@ declare namespace __esri {
9706
9937
  *
9707
9938
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#accelerateGeometry Read more...}
9708
9939
  */
9709
- accelerateGeometry(geometry: Geometry): boolean;
9940
+ accelerateGeometry(geometry: geometryGeometry): boolean;
9710
9941
  /**
9711
9942
  * Performs the topological intersection operation on two geometries.
9712
9943
  *
@@ -9715,7 +9946,7 @@ declare namespace __esri {
9715
9946
  *
9716
9947
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#execute Read more...}
9717
9948
  */
9718
- execute(geometry1: Geometry, geometry2: Geometry): Geometry;
9949
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): geometryGeometry;
9719
9950
  /**
9720
9951
  * Performs the topological intersection operation on the geometry set.
9721
9952
  *
@@ -9724,7 +9955,7 @@ declare namespace __esri {
9724
9955
  *
9725
9956
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectionOperator.html#executeMany Read more...}
9726
9957
  */
9727
- executeMany(geometries: Geometry[], intersector: Geometry): Geometry[];
9958
+ executeMany(geometries: geometryGeometry[], intersector: geometryGeometry): geometryGeometry[];
9728
9959
  }
9729
9960
 
9730
9961
  export const intersectionOperator: intersectionOperator;
@@ -9742,7 +9973,7 @@ declare namespace __esri {
9742
9973
  *
9743
9974
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html#accelerateGeometry Read more...}
9744
9975
  */
9745
- accelerateGeometry(geometry: Geometry): boolean;
9976
+ accelerateGeometry(geometry: geometryGeometry): boolean;
9746
9977
  /**
9747
9978
  * Perform a intersects operation on two geometries.
9748
9979
  *
@@ -9751,7 +9982,7 @@ declare namespace __esri {
9751
9982
  *
9752
9983
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-intersectsOperator.html#execute Read more...}
9753
9984
  */
9754
- execute(geometry1: Geometry, geometry2: Geometry): boolean;
9985
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
9755
9986
  }
9756
9987
 
9757
9988
  export const intersectsOperator: intersectsOperator;
@@ -9774,9 +10005,9 @@ declare namespace __esri {
9774
10005
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-isNearOperator.html#execute Read more...}
9775
10006
  */
9776
10007
  execute(
9777
- geometry1: Geometry,
9778
- geometry2: Geometry,
9779
- distance: Geometry,
10008
+ geometry1: geometryGeometry,
10009
+ geometry2: geometryGeometry,
10010
+ distance: number,
9780
10011
  options?: isNearOperatorExecuteOptions,
9781
10012
  ): boolean;
9782
10013
  }
@@ -9800,7 +10031,7 @@ declare namespace __esri {
9800
10031
  *
9801
10032
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#execute Read more...}
9802
10033
  */
9803
- execute(geometry: Geometry): Point;
10034
+ execute(geometry: geometryGeometry): Point;
9804
10035
  /**
9805
10036
  * Performs the label point operation on the geometry set.
9806
10037
  *
@@ -9808,7 +10039,7 @@ declare namespace __esri {
9808
10039
  *
9809
10040
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-labelPointOperator.html#executeMany Read more...}
9810
10041
  */
9811
- executeMany(geometries: Geometry[]): Point[];
10042
+ executeMany(geometries: geometryGeometry[]): Point[];
9812
10043
  }
9813
10044
 
9814
10045
  export const labelPointOperator: labelPointOperator;
@@ -9828,7 +10059,7 @@ declare namespace __esri {
9828
10059
  *
9829
10060
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-lengthOperator.html#execute Read more...}
9830
10061
  */
9831
- execute(geometry: Geometry, options?: lengthOperatorExecuteOptions): number;
10062
+ execute(geometry: geometryGeometry, options?: lengthOperatorExecuteOptions): number;
9832
10063
  }
9833
10064
 
9834
10065
  export const lengthOperator: lengthOperator;
@@ -9850,7 +10081,7 @@ declare namespace __esri {
9850
10081
  *
9851
10082
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-linesToPolygonsOperator.html#executeMany Read more...}
9852
10083
  */
9853
- executeMany(geometries: Geometry[]): Polygon[];
10084
+ executeMany(geometries: geometryGeometry[]): Polygon[];
9854
10085
  }
9855
10086
 
9856
10087
  export const linesToPolygonsOperator: linesToPolygonsOperator;
@@ -9870,7 +10101,7 @@ declare namespace __esri {
9870
10101
  *
9871
10102
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-locateBetweenOperator.html#executeMany Read more...}
9872
10103
  */
9873
- executeMany(geometries: Geometry[], startM: number, endM: number): Geometry[];
10104
+ executeMany(geometries: geometryGeometry[], startM: number, endM: number): geometryGeometry[];
9874
10105
  }
9875
10106
 
9876
10107
  export const locateBetweenOperator: locateBetweenOperator;
@@ -9888,7 +10119,7 @@ declare namespace __esri {
9888
10119
  *
9889
10120
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#execute Read more...}
9890
10121
  */
9891
- execute(geometry: Geometry): Polygon;
10122
+ execute(geometry: geometryGeometry): Polygon;
9892
10123
  /**
9893
10124
  * Performs the minimum bounding circle operation on the geometry set.
9894
10125
  *
@@ -9898,7 +10129,7 @@ declare namespace __esri {
9898
10129
  *
9899
10130
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-minimumBoundingCircleOperator.html#executeMany Read more...}
9900
10131
  */
9901
- executeMany(geometries: Geometry[], options?: minimumBoundingCircleOperatorExecuteManyOptions): Polygon[];
10132
+ executeMany(geometries: geometryGeometry[], options?: minimumBoundingCircleOperatorExecuteManyOptions): Polygon[];
9902
10133
  }
9903
10134
 
9904
10135
  export const minimumBoundingCircleOperator: minimumBoundingCircleOperator;
@@ -9922,7 +10153,10 @@ declare namespace __esri {
9922
10153
  *
9923
10154
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-multiPartToSinglePartOperator.html#executeMany Read more...}
9924
10155
  */
9925
- executeMany(geometries: Geometry[], options?: multiPartToSinglePartOperatorExecuteManyOptions): Geometry[];
10156
+ executeMany(
10157
+ geometries: geometryGeometry[],
10158
+ options?: multiPartToSinglePartOperatorExecuteManyOptions,
10159
+ ): geometryGeometry[];
9926
10160
  }
9927
10161
 
9928
10162
  export const multiPartToSinglePartOperator: multiPartToSinglePartOperator;
@@ -9950,7 +10184,7 @@ declare namespace __esri {
9950
10184
  *
9951
10185
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#execute Read more...}
9952
10186
  */
9953
- execute(geometry: Geometry, distance: number, options?: offsetOperatorExecuteOptions): Geometry;
10187
+ execute(geometry: geometryGeometry, distance: number, options?: offsetOperatorExecuteOptions): geometryGeometry;
9954
10188
  /**
9955
10189
  * Creates offset versions of the input geometries.
9956
10190
  *
@@ -9964,7 +10198,11 @@ declare namespace __esri {
9964
10198
  *
9965
10199
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-offsetOperator.html#executeMany Read more...}
9966
10200
  */
9967
- executeMany(geometries: Geometry[], distance: number, options?: offsetOperatorExecuteManyOptions): Geometry[];
10201
+ executeMany(
10202
+ geometries: geometryGeometry[],
10203
+ distance: number,
10204
+ options?: offsetOperatorExecuteManyOptions,
10205
+ ): geometryGeometry[];
9968
10206
  }
9969
10207
 
9970
10208
  export const offsetOperator: offsetOperator;
@@ -9996,7 +10234,7 @@ declare namespace __esri {
9996
10234
  *
9997
10235
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html#accelerateGeometry Read more...}
9998
10236
  */
9999
- accelerateGeometry(geometry: Geometry): boolean;
10237
+ accelerateGeometry(geometry: geometryGeometry): boolean;
10000
10238
  /**
10001
10239
  * Perform the overlaps operation on two geometries.
10002
10240
  *
@@ -10005,7 +10243,7 @@ declare namespace __esri {
10005
10243
  *
10006
10244
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-overlapsOperator.html#execute Read more...}
10007
10245
  */
10008
- execute(geometry1: Geometry, geometry2: Geometry): boolean;
10246
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
10009
10247
  }
10010
10248
 
10011
10249
  export const overlapsOperator: overlapsOperator;
@@ -10029,7 +10267,7 @@ declare namespace __esri {
10029
10267
  *
10030
10268
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-polygonOverlayOperator.html#executeMany Read more...}
10031
10269
  */
10032
- executeMany(geometries: Geometry[], options?: polygonOverlayOperatorExecuteManyOptions): Geometry[];
10270
+ executeMany(geometries: geometryGeometry[], options?: polygonOverlayOperatorExecuteManyOptions): geometryGeometry[];
10033
10271
  }
10034
10272
 
10035
10273
  export const polygonOverlayOperator: polygonOverlayOperator;
@@ -10132,7 +10370,7 @@ declare namespace __esri {
10132
10370
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestCoordinate Read more...}
10133
10371
  */
10134
10372
  getNearestCoordinate(
10135
- geometry: Geometry,
10373
+ geometry: geometryGeometry,
10136
10374
  point: Point,
10137
10375
  options?: proximityOperatorGetNearestCoordinateOptions,
10138
10376
  ): proximityOperatorProximityResult;
@@ -10147,7 +10385,7 @@ declare namespace __esri {
10147
10385
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertex Read more...}
10148
10386
  */
10149
10387
  getNearestVertex(
10150
- geometry: Geometry,
10388
+ geometry: geometryGeometry,
10151
10389
  point: Point,
10152
10390
  options?: proximityOperatorGetNearestVertexOptions,
10153
10391
  ): proximityOperatorProximityResult;
@@ -10164,7 +10402,7 @@ declare namespace __esri {
10164
10402
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-proximityOperator.html#getNearestVertices Read more...}
10165
10403
  */
10166
10404
  getNearestVertices(
10167
- geometry: Geometry,
10405
+ geometry: geometryGeometry,
10168
10406
  point: Point,
10169
10407
  searchRadius: number,
10170
10408
  maxVertexCountToReturn: number,
@@ -10214,11 +10452,11 @@ declare namespace __esri {
10214
10452
  *
10215
10453
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-relateOperator.html#accelerateGeometry Read more...}
10216
10454
  */
10217
- accelerateGeometry(geometry: Geometry): boolean;
10455
+ accelerateGeometry(geometry: geometryGeometry): boolean;
10218
10456
 
10219
- execute(geometry1: Geometry, geometry2: Geometry, relation: string): boolean;
10457
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry, relation: string): boolean;
10220
10458
 
10221
- isValidDE9IM(relation: void): void;
10459
+ isValidDE9IM(relation: string): void;
10222
10460
  }
10223
10461
 
10224
10462
  export const relateOperator: relateOperator;
@@ -10255,7 +10493,7 @@ declare namespace __esri {
10255
10493
  *
10256
10494
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#execute Read more...}
10257
10495
  */
10258
- execute(geometry: Geometry): Geometry;
10496
+ execute(geometry: geometryGeometry): geometryGeometry;
10259
10497
  /**
10260
10498
  * Performs the simplify operation on the geometry set.
10261
10499
  *
@@ -10263,7 +10501,7 @@ declare namespace __esri {
10263
10501
  *
10264
10502
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#executeMany Read more...}
10265
10503
  */
10266
- executeMany(geometries: Geometry[]): Geometry[];
10504
+ executeMany(geometries: geometryGeometry[]): Geometry[];
10267
10505
  /**
10268
10506
  * Indicates if the given geometry is topologically simple.
10269
10507
  *
@@ -10271,7 +10509,7 @@ declare namespace __esri {
10271
10509
  *
10272
10510
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-simplifyOperator.html#isSimple Read more...}
10273
10511
  */
10274
- isSimple(geometry: Geometry): boolean;
10512
+ isSimple(geometry: geometryGeometry): boolean;
10275
10513
  }
10276
10514
 
10277
10515
  export const simplifyOperator: simplifyOperator;
@@ -10406,7 +10644,7 @@ declare namespace __esri {
10406
10644
  *
10407
10645
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-symmetricDifferenceOperator.html#execute Read more...}
10408
10646
  */
10409
- execute(leftGeometry: Geometry, rightGeometry: Geometry): Geometry;
10647
+ execute(leftGeometry: geometryGeometry, rightGeometry: geometryGeometry): geometryGeometry;
10410
10648
  /**
10411
10649
  * Performs the symmetric difference (XOR) operation on every geometry in `inputGeometries` with `rightGeometry`.
10412
10650
  *
@@ -10415,7 +10653,7 @@ declare namespace __esri {
10415
10653
  *
10416
10654
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-symmetricDifferenceOperator.html#executeMany Read more...}
10417
10655
  */
10418
- executeMany(inputGeometries: Geometry[], rightGeometry: Geometry): Geometry[];
10656
+ executeMany(inputGeometries: geometryGeometry[], rightGeometry: geometryGeometry): geometryGeometry[];
10419
10657
  }
10420
10658
 
10421
10659
  export const symmetricDifferenceOperator: symmetricDifferenceOperator;
@@ -10433,7 +10671,7 @@ declare namespace __esri {
10433
10671
  *
10434
10672
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html#accelerateGeometry Read more...}
10435
10673
  */
10436
- accelerateGeometry(geometry: Geometry): boolean;
10674
+ accelerateGeometry(geometry: geometryGeometry): boolean;
10437
10675
  /**
10438
10676
  * Perform a touches operation on two geometries.
10439
10677
  *
@@ -10442,7 +10680,7 @@ declare namespace __esri {
10442
10680
  *
10443
10681
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-touchesOperator.html#execute Read more...}
10444
10682
  */
10445
- execute(geometry1: Geometry, geometry2: Geometry): boolean;
10683
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): boolean;
10446
10684
  }
10447
10685
 
10448
10686
  export const touchesOperator: touchesOperator;
@@ -10461,7 +10699,7 @@ declare namespace __esri {
10461
10699
  *
10462
10700
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-unionOperator.html#execute Read more...}
10463
10701
  */
10464
- execute(geometry1: Geometry, geometry2: Geometry): Geometry;
10702
+ execute(geometry1: geometryGeometry, geometry2: geometryGeometry): geometryGeometry;
10465
10703
  /**
10466
10704
  * Perform a topological union operation on a geometry set.
10467
10705
  *
@@ -10469,7 +10707,7 @@ declare namespace __esri {
10469
10707
  *
10470
10708
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-unionOperator.html#executeMany Read more...}
10471
10709
  */
10472
- executeMany(geometries: Geometry[]): Geometry;
10710
+ executeMany(geometries: geometryGeometry[]): geometryGeometry;
10473
10711
  }
10474
10712
 
10475
10713
  export const unionOperator: unionOperator;
@@ -10487,7 +10725,7 @@ declare namespace __esri {
10487
10725
  *
10488
10726
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html#accelerateGeometry Read more...}
10489
10727
  */
10490
- accelerateGeometry(geometry: Geometry): boolean;
10728
+ accelerateGeometry(geometry: geometryGeometry): boolean;
10491
10729
  /**
10492
10730
  * Perform a within operation on two geometries.
10493
10731
  *
@@ -10496,7 +10734,7 @@ declare namespace __esri {
10496
10734
  *
10497
10735
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-operators-withinOperator.html#execute Read more...}
10498
10736
  */
10499
- execute(inner: Geometry, outer: Geometry): boolean;
10737
+ execute(inner: geometryGeometry, outer: geometryGeometry): boolean;
10500
10738
  }
10501
10739
 
10502
10740
  export const withinOperator: withinOperator;
@@ -12258,14 +12496,7 @@ declare namespace __esri {
12258
12496
  *
12259
12497
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Geometry Read more...}
12260
12498
  */
12261
- export type geometryGeometry = Extent | Multipoint | Point | Polygon | Polyline | Mesh;
12262
-
12263
- /**
12264
- * Mesh.
12265
- *
12266
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html#Mesh Read more...}
12267
- */
12268
- export type geometryMesh = Mesh;
12499
+ export type geometryGeometry = Extent | Multipoint | Point | Polygon | Polyline;
12269
12500
 
12270
12501
  /**
12271
12502
  * Multipoint.
@@ -16315,6 +16546,20 @@ declare namespace __esri {
16315
16546
  attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
16316
16547
  options?: FeatureLayerBaseQueryAttachmentsOptions,
16317
16548
  ): Promise<any>;
16549
+ /**
16550
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
16551
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
16552
+ *
16553
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
16554
+ * @param options An object with the following properties.
16555
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
16556
+ *
16557
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#queryAttributeBins Read more...}
16558
+ */
16559
+ queryAttributeBins(
16560
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
16561
+ options?: FeatureLayerBaseQueryAttributeBinsOptions,
16562
+ ): Promise<FeatureSet>;
16318
16563
  /**
16319
16564
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the feature service and returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
16320
16565
  *
@@ -17041,6 +17286,20 @@ declare namespace __esri {
17041
17286
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#getFieldDomain Read more...}
17042
17287
  */
17043
17288
  getFieldDomain(fieldName: string, options?: CSVLayerGetFieldDomainOptions): Domain;
17289
+ /**
17290
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
17291
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
17292
+ *
17293
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
17294
+ * @param options An object with the following properties.
17295
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
17296
+ *
17297
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CSVLayer.html#queryAttributeBins Read more...}
17298
+ */
17299
+ queryAttributeBins(
17300
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
17301
+ options?: CSVLayerQueryAttributeBinsOptions,
17302
+ ): Promise<FeatureSet>;
17044
17303
  /**
17045
17304
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the CSV data and
17046
17305
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -17415,6 +17674,10 @@ declare namespace __esri {
17415
17674
  feature: Graphic;
17416
17675
  }
17417
17676
 
17677
+ export interface CSVLayerQueryAttributeBinsOptions {
17678
+ signal?: AbortSignal;
17679
+ }
17680
+
17418
17681
  export interface CSVLayerQueryExtentOptions {
17419
17682
  signal?: AbortSignal;
17420
17683
  }
@@ -18370,6 +18633,20 @@ declare namespace __esri {
18370
18633
  attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
18371
18634
  options?: FeatureLayerBaseQueryAttachmentsOptions,
18372
18635
  ): Promise<any>;
18636
+ /**
18637
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
18638
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
18639
+ *
18640
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
18641
+ * @param options An object with the following properties.
18642
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
18643
+ *
18644
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#queryAttributeBins Read more...}
18645
+ */
18646
+ queryAttributeBins(
18647
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
18648
+ options?: FeatureLayerBaseQueryAttributeBinsOptions,
18649
+ ): Promise<FeatureSet>;
18373
18650
  /**
18374
18651
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the feature service and
18375
18652
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -19522,6 +19799,20 @@ declare namespace __esri {
19522
19799
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#getFieldDomain Read more...}
19523
19800
  */
19524
19801
  getFieldDomain(fieldName: string, options?: GeoJSONLayerGetFieldDomainOptions): Domain;
19802
+ /**
19803
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
19804
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
19805
+ *
19806
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
19807
+ * @param options An object with the following properties.
19808
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
19809
+ *
19810
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#queryAttributeBins Read more...}
19811
+ */
19812
+ queryAttributeBins(
19813
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
19814
+ options?: GeoJSONLayerQueryAttributeBinsOptions,
19815
+ ): Promise<FeatureSet>;
19525
19816
  /**
19526
19817
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the layer and
19527
19818
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -19907,6 +20198,10 @@ declare namespace __esri {
19907
20198
  feature: Graphic;
19908
20199
  }
19909
20200
 
20201
+ export interface GeoJSONLayerQueryAttributeBinsOptions {
20202
+ signal?: AbortSignal;
20203
+ }
20204
+
19910
20205
  export interface GeoJSONLayerQueryExtentOptions {
19911
20206
  signal?: AbortSignal;
19912
20207
  }
@@ -25919,6 +26214,20 @@ declare namespace __esri {
25919
26214
  attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
25920
26215
  options?: FeatureLayerBaseQueryAttachmentsOptions,
25921
26216
  ): Promise<any>;
26217
+ /**
26218
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
26219
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
26220
+ *
26221
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
26222
+ * @param options An object with the following properties.
26223
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
26224
+ *
26225
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-FeatureLayerBase.html#queryAttributeBins Read more...}
26226
+ */
26227
+ queryAttributeBins(
26228
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
26229
+ options?: FeatureLayerBaseQueryAttributeBinsOptions,
26230
+ ): Promise<FeatureSet>;
25922
26231
  /**
25923
26232
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-RelationshipQuery.html RelationshipQuery} against the feature service and
25924
26233
  * returns {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSets} grouped by source layer or table objectIds.
@@ -26045,6 +26354,10 @@ declare namespace __esri {
26045
26354
  signal?: AbortSignal;
26046
26355
  }
26047
26356
 
26357
+ export interface FeatureLayerBaseQueryAttributeBinsOptions {
26358
+ signal?: AbortSignal;
26359
+ }
26360
+
26048
26361
  export interface FeatureLayerBaseQueryRelatedFeaturesCountOptions {
26049
26362
  signal?: AbortSignal;
26050
26363
  }
@@ -30779,6 +31092,20 @@ declare namespace __esri {
30779
31092
  attachmentQuery: AttachmentQuery | AttachmentQueryProperties,
30780
31093
  options?: FeatureLayerBaseQueryAttachmentsOptions,
30781
31094
  ): Promise<any>;
31095
+ /**
31096
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
31097
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
31098
+ *
31099
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
31100
+ * @param options An object with the following properties.
31101
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
31102
+ *
31103
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#queryAttributeBins Read more...}
31104
+ */
31105
+ queryAttributeBins(
31106
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
31107
+ options?: FeatureLayerBaseQueryAttributeBinsOptions,
31108
+ ): Promise<FeatureSet>;
30782
31109
  /**
30783
31110
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the feature service and
30784
31111
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -45211,6 +45538,20 @@ declare namespace __esri {
45211
45538
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#getFieldDomain Read more...}
45212
45539
  */
45213
45540
  getFieldDomain(fieldName: string, options?: WFSLayerGetFieldDomainOptions): Domain;
45541
+ /**
45542
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
45543
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
45544
+ *
45545
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
45546
+ * @param options An object with the following properties.
45547
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
45548
+ *
45549
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-WFSLayer.html#queryAttributeBins Read more...}
45550
+ */
45551
+ queryAttributeBins(
45552
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
45553
+ options?: WFSLayerQueryAttributeBinsOptions,
45554
+ ): Promise<FeatureSet>;
45214
45555
  /**
45215
45556
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against the layer and
45216
45557
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -45596,6 +45937,10 @@ declare namespace __esri {
45596
45937
  feature: Graphic;
45597
45938
  }
45598
45939
 
45940
+ export interface WFSLayerQueryAttributeBinsOptions {
45941
+ signal?: AbortSignal;
45942
+ }
45943
+
45599
45944
  export interface WFSLayerQueryExtentOptions {
45600
45945
  signal?: AbortSignal;
45601
45946
  }
@@ -58922,7 +59267,7 @@ declare namespace __esri {
58922
59267
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-request.html#RequestResponse Read more...}
58923
59268
  */
58924
59269
  export interface RequestResponse {
58925
- data?: any;
59270
+ data: any;
58926
59271
  getHeader?: GetHeader;
58927
59272
  getAllHeaders?: GetAllHeaders;
58928
59273
  httpStatus?: number;
@@ -64419,23 +64764,442 @@ declare namespace __esri {
64419
64764
  where?: string;
64420
64765
  }
64421
64766
 
64422
- export class BaseImageMeasureParameters {
64423
- mosaicRule: MosaicRule;
64424
- pixelSize: Point;
64767
+ export interface AttributeBinsQuery extends Accessor, JSONSupport, QueryMixin {}
64768
+
64769
+ export class AttributeBinsQuery {
64770
+ /**
64771
+ * This class configures parameters for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#queryAttributeBins queryAttributeBins()} method, which groups features in a layer or layer view into bins
64772
+ * based on numeric or date fields.
64773
+ *
64774
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html Read more...}
64775
+ */
64776
+
64777
+ constructor(properties?: AttributeBinsQueryProperties);
64778
+
64779
+ /**
64780
+ * Bins can be returned in ascending or descending order.
64781
+ *
64782
+ * @default "ascending"
64783
+ *
64784
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binOrder Read more...}
64785
+ */
64786
+ binOrder: "ascending" | "descending";
64787
+ /**
64788
+ * Bin parameters describe the characteristics of the bins, including their size and starting value.
64789
+ *
64790
+ * @default null
64791
+ *
64792
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters Read more...}
64793
+ */
64794
+ binParameters:
64795
+ | AutoIntervalBinParameters
64796
+ | FixedIntervalBinParameters
64797
+ | FixedBoundariesBinParameters
64798
+ | DateBinParameters;
64799
+ /**
64800
+ * Indicates if the service should cache the query results.
64801
+ *
64802
+ * @default undefined
64803
+ *
64804
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#cacheHint Read more...}
64805
+ */
64806
+ declare cacheHint: QueryMixin["cacheHint"];
64807
+ /**
64808
+ * Datum transformation used for projecting geometries in the query results when
64809
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference outSpatialReference} is different than the layer's spatial reference.
64810
+ *
64811
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#datumTransformation Read more...}
64812
+ */
64813
+ datumTransformation: number | QuerySimpleTransformation | QueryCompositeTransformation;
64814
+ /**
64815
+ * Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry} in a spatial query.
64816
+ *
64817
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance Read more...}
64818
+ */
64819
+ declare distance: QueryMixin["distance"];
64820
+ /**
64821
+ * The geometry to apply to the spatial filter.
64822
+ *
64823
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry Read more...}
64824
+ */
64825
+ declare geometry: QueryMixin["geometry"];
64826
+ /**
64827
+ * Sets the name of the lower boundary property in the response.
64828
+ *
64829
+ * @default null
64830
+ *
64831
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#lowerBoundaryAlias Read more...}
64832
+ */
64833
+ lowerBoundaryAlias: string;
64834
+ /**
64835
+ * The spatial reference for the returned geometry.
64836
+ *
64837
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference Read more...}
64838
+ */
64839
+ declare outSpatialReference: QueryMixin["outSpatialReference"];
64840
+ /**
64841
+ * The definitions for one or more field-based statistics to be calculated.
64842
+ *
64843
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outStatistics Read more...}
64844
+ */
64845
+ outStatistics: StatisticDefinition[];
64846
+ /**
64847
+ * Defines the [IANA time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) used for bin calculations when the bin parameter field is a date field.
64848
+ *
64849
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outTimeZone Read more...}
64850
+ */
64851
+ outTimeZone: string;
64852
+ /**
64853
+ * If `true` then the query returns distinct values based on the field(s) specified in {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outFields outFields}.
64854
+ *
64855
+ * @default false
64856
+ *
64857
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#returnDistinctValues Read more...}
64858
+ */
64859
+ returnDistinctValues: boolean;
64860
+ /**
64861
+ * For spatial queries, this parameter defines the spatial relationship to query features in the layer or layer view against the input {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry}.
64862
+ *
64863
+ * @default intersects
64864
+ *
64865
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#spatialRelationship Read more...}
64866
+ */
64867
+ declare spatialRelationship: QueryMixin["spatialRelationship"];
64868
+ /**
64869
+ * The unit for calculating the buffer distance when {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance distance} is specified in spatial queries.
64870
+ *
64871
+ * @default null
64872
+ *
64873
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#units Read more...}
64874
+ */
64875
+ declare units: QueryMixin["units"];
64876
+ /**
64877
+ * Sets the name of the upper boundary property in the response.
64878
+ *
64879
+ * @default null
64880
+ *
64881
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#upperBoundaryAlias Read more...}
64882
+ */
64883
+ upperBoundaryAlias: string;
64884
+ /**
64885
+ * A where clause for the query.
64886
+ *
64887
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#where Read more...}
64888
+ */
64889
+ declare where: QueryMixin["where"];
64890
+
64891
+ /**
64892
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
64893
+ *
64894
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#toJSON Read more...}
64895
+ */
64896
+ toJSON(): any;
64897
+
64898
+ /**
64899
+ * Creates a new instance of this class and initializes it with values from a JSON object
64900
+ * generated from an ArcGIS product.
64901
+ *
64902
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
64903
+ *
64904
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#fromJSON Read more...}
64905
+ */
64906
+ static fromJSON(json: any): any;
64907
+ static fromJSON(json: any): AttributeBinsQuery;
64425
64908
  }
64426
64909
 
64427
- interface BaseImageMeasureParametersProperties {
64428
- mosaicRule?: MosaicRuleProperties;
64429
- pixelSize?: PointProperties;
64910
+ interface AttributeBinsQueryProperties extends QueryMixinProperties {
64911
+ /**
64912
+ * Bins can be returned in ascending or descending order.
64913
+ *
64914
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binOrder Read more...}
64915
+ */
64916
+ binOrder?: "ascending" | "descending";
64917
+ /**
64918
+ * Bin parameters describe the characteristics of the bins, including their size and starting value.
64919
+ *
64920
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters Read more...}
64921
+ */
64922
+ binParameters?:
64923
+ | (AutoIntervalBinParametersProperties & { type: "auto-interval" })
64924
+ | (FixedIntervalBinParametersProperties & { type: "fixed-interval" })
64925
+ | (FixedBoundariesBinParametersProperties & { type: "fixed-boundaries" })
64926
+ | (DateBinParametersProperties & { type: "date" });
64927
+ /**
64928
+ * Indicates if the service should cache the query results.
64929
+ *
64930
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#cacheHint Read more...}
64931
+ */
64932
+ cacheHint?: QueryMixinProperties["cacheHint"];
64933
+ /**
64934
+ * Datum transformation used for projecting geometries in the query results when
64935
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference outSpatialReference} is different than the layer's spatial reference.
64936
+ *
64937
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#datumTransformation Read more...}
64938
+ */
64939
+ datumTransformation?: number | QuerySimpleTransformation | QueryCompositeTransformation;
64940
+ /**
64941
+ * Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry} in a spatial query.
64942
+ *
64943
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance Read more...}
64944
+ */
64945
+ distance?: QueryMixinProperties["distance"];
64946
+ /**
64947
+ * The geometry to apply to the spatial filter.
64948
+ *
64949
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry Read more...}
64950
+ */
64951
+ geometry?: QueryMixinProperties["geometry"];
64952
+ /**
64953
+ * Sets the name of the lower boundary property in the response.
64954
+ *
64955
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#lowerBoundaryAlias Read more...}
64956
+ */
64957
+ lowerBoundaryAlias?: string;
64958
+ /**
64959
+ * The spatial reference for the returned geometry.
64960
+ *
64961
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outSpatialReference Read more...}
64962
+ */
64963
+ outSpatialReference?: QueryMixinProperties["outSpatialReference"];
64964
+ /**
64965
+ * The definitions for one or more field-based statistics to be calculated.
64966
+ *
64967
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outStatistics Read more...}
64968
+ */
64969
+ outStatistics?: StatisticDefinitionProperties[];
64970
+ /**
64971
+ * Defines the [IANA time zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) used for bin calculations when the bin parameter field is a date field.
64972
+ *
64973
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outTimeZone Read more...}
64974
+ */
64975
+ outTimeZone?: string;
64976
+ /**
64977
+ * If `true` then the query returns distinct values based on the field(s) specified in {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#outFields outFields}.
64978
+ *
64979
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#returnDistinctValues Read more...}
64980
+ */
64981
+ returnDistinctValues?: boolean;
64982
+ /**
64983
+ * For spatial queries, this parameter defines the spatial relationship to query features in the layer or layer view against the input {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#geometry geometry}.
64984
+ *
64985
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#spatialRelationship Read more...}
64986
+ */
64987
+ spatialRelationship?: QueryMixinProperties["spatialRelationship"];
64988
+ /**
64989
+ * The unit for calculating the buffer distance when {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#distance distance} is specified in spatial queries.
64990
+ *
64991
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#units Read more...}
64992
+ */
64993
+ units?: QueryMixinProperties["units"];
64994
+ /**
64995
+ * Sets the name of the upper boundary property in the response.
64996
+ *
64997
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#upperBoundaryAlias Read more...}
64998
+ */
64999
+ upperBoundaryAlias?: string;
65000
+ /**
65001
+ * A where clause for the query.
65002
+ *
65003
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#where Read more...}
65004
+ */
65005
+ where?: QueryMixinProperties["where"];
65006
+ }
65007
+
65008
+ export interface AutoIntervalBinParameters extends Accessor, JSONSupport {}
65009
+
65010
+ export class AutoIntervalBinParameters {
65011
+ /**
65012
+ * AutoIntervalBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
65013
+ *
65014
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html Read more...}
65015
+ */
65016
+
65017
+ constructor(properties?: AutoIntervalBinParametersProperties);
65018
+
65019
+ /**
65020
+ * The end value of bins to generate.
65021
+ *
65022
+ * @default null
65023
+ *
65024
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#end Read more...}
65025
+ */
65026
+ end: number | Date;
65027
+ /**
65028
+ * The field name used to generate bins.
65029
+ *
65030
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#field Read more...}
65031
+ */
65032
+ field: string;
65033
+ /**
65034
+ * The number of bins to generate.
65035
+ *
65036
+ * @default null
65037
+ *
65038
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#numBins Read more...}
65039
+ */
65040
+ numBins: number;
65041
+ /**
65042
+ * The start value of bins to generate.
65043
+ *
65044
+ * @default null
65045
+ *
65046
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#start Read more...}
65047
+ */
65048
+ start: number | Date;
65049
+ /**
65050
+ * The type of bin parameters.
65051
+ *
65052
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#type Read more...}
65053
+ */
65054
+ readonly type: "auto-interval";
65055
+
65056
+ /**
65057
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
65058
+ *
65059
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#toJSON Read more...}
65060
+ */
65061
+ toJSON(): any;
65062
+
65063
+ /**
65064
+ * Creates a new instance of this class and initializes it with values from a JSON object
65065
+ * generated from an ArcGIS product.
65066
+ *
65067
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
65068
+ *
65069
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#fromJSON Read more...}
65070
+ */
65071
+ static fromJSON(json: any): any;
65072
+ static fromJSON(json: any): AutoIntervalBinParameters;
64430
65073
  }
64431
65074
 
65075
+ interface AutoIntervalBinParametersProperties {
65076
+ /**
65077
+ * The end value of bins to generate.
65078
+ *
65079
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#end Read more...}
65080
+ */
65081
+ end?: number | DateProperties;
65082
+ /**
65083
+ * The field name used to generate bins.
65084
+ *
65085
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#field Read more...}
65086
+ */
65087
+ field?: string;
65088
+ /**
65089
+ * The number of bins to generate.
65090
+ *
65091
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#numBins Read more...}
65092
+ */
65093
+ numBins?: number;
65094
+ /**
65095
+ * The start value of bins to generate.
65096
+ *
65097
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AutoIntervalBinParameters.html#start Read more...}
65098
+ */
65099
+ start?: number | DateProperties;
65100
+ }
65101
+
65102
+ export interface BaseImageMeasureParameters extends Accessor, JSONSupport {}
65103
+
65104
+ export class BaseImageMeasureParameters {
65105
+ /**
65106
+ * Base class for imagery mensuration operations.
65107
+ *
65108
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html Read more...}
65109
+ */
65110
+
65111
+ constructor(properties?: BaseImageMeasureParametersProperties);
65112
+
65113
+ /**
65114
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
65115
+ *
65116
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#toJSON Read more...}
65117
+ */
65118
+ toJSON(): any;
65119
+
65120
+ /**
65121
+ * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
65122
+ * when the measure is computed.
65123
+ *
65124
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#mosaicRule Read more...}
65125
+ */
65126
+ static mosaicRule: MosaicRule;
65127
+ /**
65128
+ * Specifies the pixel size.
65129
+ *
65130
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#pixelSize Read more...}
65131
+ */
65132
+ static pixelSize: Point;
65133
+
65134
+ /**
65135
+ * Creates a new instance of this class and initializes it with values from a JSON object
65136
+ * generated from an ArcGIS product.
65137
+ *
65138
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
65139
+ *
65140
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureParameters.html#fromJSON Read more...}
65141
+ */
65142
+ static fromJSON(json: any): any;
65143
+ static fromJSON(json: any): BaseImageMeasureParameters;
65144
+ }
65145
+
65146
+ interface BaseImageMeasureParametersProperties {}
65147
+
65148
+ export interface BaseImageMeasureResult extends Accessor, JSONSupport {}
65149
+
64432
65150
  export class BaseImageMeasureResult {
65151
+ /**
65152
+ * Base class for image service measure result.
65153
+ *
65154
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html Read more...}
65155
+ */
65156
+
65157
+ constructor(properties?: BaseImageMeasureResultProperties);
65158
+
65159
+ /**
65160
+ * Name of the raster dataset used in the area and height measurement.
65161
+ *
65162
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#name Read more...}
65163
+ */
64433
65164
  name: string;
65165
+ /**
65166
+ * Sensor name of the raster dataset used in the area and height measurement.
65167
+ *
65168
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#sensorName Read more...}
65169
+ */
64434
65170
  sensorName: string;
65171
+
65172
+ /**
65173
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
65174
+ *
65175
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#toJSON Read more...}
65176
+ */
65177
+ toJSON(): any;
65178
+
65179
+ /**
65180
+ * Creates a new instance of this class and initializes it with values from a JSON object
65181
+ * generated from an ArcGIS product.
65182
+ *
65183
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
65184
+ *
65185
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#fromJSON Read more...}
65186
+ */
65187
+ static fromJSON(json: any): any;
65188
+ static fromJSON(json: any): BaseImageMeasureResult;
64435
65189
  }
64436
65190
 
64437
65191
  interface BaseImageMeasureResultProperties {
65192
+ /**
65193
+ * Name of the raster dataset used in the area and height measurement.
65194
+ *
65195
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#name Read more...}
65196
+ */
64438
65197
  name?: string;
65198
+ /**
65199
+ * Sensor name of the raster dataset used in the area and height measurement.
65200
+ *
65201
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-BaseImageMeasureResult.html#sensorName Read more...}
65202
+ */
64439
65203
  sensorName?: string;
64440
65204
  }
64441
65205
 
@@ -65838,6 +66602,160 @@ declare namespace __esri {
65838
66602
  where?: string;
65839
66603
  }
65840
66604
 
66605
+ export interface DateBinParameters extends Accessor, JSONSupport {}
66606
+
66607
+ export class DateBinParameters {
66608
+ /**
66609
+ * DateBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
66610
+ *
66611
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html Read more...}
66612
+ */
66613
+
66614
+ constructor(properties?: DateBinParametersProperties);
66615
+
66616
+ /**
66617
+ * The end date value for bins to generate.
66618
+ *
66619
+ * @default null
66620
+ *
66621
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#end Read more...}
66622
+ */
66623
+ end: Date | string | number;
66624
+ /**
66625
+ * Defines a length of time in one of the temporal units such as `days`, `weeks`, or `years`.
66626
+ *
66627
+ * @default null
66628
+ *
66629
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#interval Read more...}
66630
+ */
66631
+ interval: DateBinTimeInterval;
66632
+ /**
66633
+ * Defines an offset to the bin's starting position.
66634
+ *
66635
+ * @default null
66636
+ *
66637
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#offset Read more...}
66638
+ */
66639
+ offset: DateBinTimeInterval;
66640
+ /**
66641
+ * The start date value for bins to generate.
66642
+ *
66643
+ * @default null
66644
+ *
66645
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#start Read more...}
66646
+ */
66647
+ start: Date | string | number;
66648
+ /**
66649
+ * The type of bin parameters.
66650
+ *
66651
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#type Read more...}
66652
+ */
66653
+ readonly type: "date";
66654
+
66655
+ /**
66656
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
66657
+ *
66658
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#toJSON Read more...}
66659
+ */
66660
+ toJSON(): any;
66661
+
66662
+ /**
66663
+ * Creates a new instance of this class and initializes it with values from a JSON object
66664
+ * generated from an ArcGIS product.
66665
+ *
66666
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
66667
+ *
66668
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#fromJSON Read more...}
66669
+ */
66670
+ static fromJSON(json: any): any;
66671
+ static fromJSON(json: any): DateBinParameters;
66672
+ }
66673
+
66674
+ interface DateBinParametersProperties {
66675
+ /**
66676
+ * The end date value for bins to generate.
66677
+ *
66678
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#end Read more...}
66679
+ */
66680
+ end?: DateProperties | string | number;
66681
+ /**
66682
+ * Defines a length of time in one of the temporal units such as `days`, `weeks`, or `years`.
66683
+ *
66684
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#interval Read more...}
66685
+ */
66686
+ interval?: DateBinTimeIntervalProperties;
66687
+ /**
66688
+ * Defines an offset to the bin's starting position.
66689
+ *
66690
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#offset Read more...}
66691
+ */
66692
+ offset?: DateBinTimeIntervalProperties;
66693
+ /**
66694
+ * The start date value for bins to generate.
66695
+ *
66696
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinParameters.html#start Read more...}
66697
+ */
66698
+ start?: DateProperties | string | number;
66699
+ }
66700
+
66701
+ export interface DateBinTimeInterval extends Accessor, JSONSupport {}
66702
+
66703
+ export class DateBinTimeInterval {
66704
+ /**
66705
+ * DateBinTimeInterval describes a length of time for a bin query in one of the temporal units such as `days`, `weeks`, or `years`.
66706
+ *
66707
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html Read more...}
66708
+ */
66709
+
66710
+ constructor(properties?: DateBinTimeIntervalProperties);
66711
+
66712
+ /**
66713
+ * Temporal unit used to generate bins or defines and an offset.
66714
+ *
66715
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#unit Read more...}
66716
+ */
66717
+ unit: "years" | "quarters" | "months" | "weeks" | "days" | "hours" | "minutes" | "seconds";
66718
+ /**
66719
+ * The numerical value of the time extent.
66720
+ *
66721
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#value Read more...}
66722
+ */
66723
+ value: number;
66724
+
66725
+ /**
66726
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
66727
+ *
66728
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#toJSON Read more...}
66729
+ */
66730
+ toJSON(): any;
66731
+
66732
+ /**
66733
+ * Creates a new instance of this class and initializes it with values from a JSON object
66734
+ * generated from an ArcGIS product.
66735
+ *
66736
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
66737
+ *
66738
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#fromJSON Read more...}
66739
+ */
66740
+ static fromJSON(json: any): any;
66741
+ static fromJSON(json: any): DateBinTimeInterval;
66742
+ }
66743
+
66744
+ interface DateBinTimeIntervalProperties {
66745
+ /**
66746
+ * Temporal unit used to generate bins or defines and an offset.
66747
+ *
66748
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#unit Read more...}
66749
+ */
66750
+ unit?: "years" | "quarters" | "months" | "weeks" | "days" | "hours" | "minutes" | "seconds";
66751
+ /**
66752
+ * The numerical value of the time extent.
66753
+ *
66754
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-DateBinTimeInterval.html#value Read more...}
66755
+ */
66756
+ value?: number;
66757
+ }
66758
+
65841
66759
  export class DensifyParameters extends Accessor {
65842
66760
  /**
65843
66761
  * Input parameters for the densify() method on
@@ -67153,6 +68071,140 @@ declare namespace __esri {
67153
68071
  value?: string | number;
67154
68072
  }
67155
68073
 
68074
+ export interface FixedBoundariesBinParameters extends Accessor, JSONSupport {}
68075
+
68076
+ export class FixedBoundariesBinParameters {
68077
+ /**
68078
+ * FixedBoundariesBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
68079
+ *
68080
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html Read more...}
68081
+ */
68082
+
68083
+ constructor(properties?: FixedBoundariesBinParametersProperties);
68084
+
68085
+ /**
68086
+ * Array of values representing bin boundaries.
68087
+ *
68088
+ * @default null
68089
+ *
68090
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#boundaries Read more...}
68091
+ */
68092
+ boundaries: number[] | Date[];
68093
+ /**
68094
+ * The type of bin parameters.
68095
+ *
68096
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#type Read more...}
68097
+ */
68098
+ readonly type: "fixed-boundaries";
68099
+
68100
+ /**
68101
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
68102
+ *
68103
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#toJSON Read more...}
68104
+ */
68105
+ toJSON(): any;
68106
+
68107
+ /**
68108
+ * Creates a new instance of this class and initializes it with values from a JSON object
68109
+ * generated from an ArcGIS product.
68110
+ *
68111
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
68112
+ *
68113
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#fromJSON Read more...}
68114
+ */
68115
+ static fromJSON(json: any): any;
68116
+ static fromJSON(json: any): FixedBoundariesBinParameters;
68117
+ }
68118
+
68119
+ interface FixedBoundariesBinParametersProperties {
68120
+ /**
68121
+ * Array of values representing bin boundaries.
68122
+ *
68123
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedBoundariesBinParameters.html#boundaries Read more...}
68124
+ */
68125
+ boundaries?: number[] | DateProperties[];
68126
+ }
68127
+
68128
+ export interface FixedIntervalBinParameters extends Accessor, JSONSupport {}
68129
+
68130
+ export class FixedIntervalBinParameters {
68131
+ /**
68132
+ * FixedIntervalBinParameters specifies {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} on {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} object.
68133
+ *
68134
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html Read more...}
68135
+ */
68136
+
68137
+ constructor(properties?: FixedIntervalBinParametersProperties);
68138
+
68139
+ /**
68140
+ * The end value of bins to generate.
68141
+ *
68142
+ * @default null
68143
+ *
68144
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#end Read more...}
68145
+ */
68146
+ end: number | Date;
68147
+ /**
68148
+ * Represents the interval of values to be included in each bin.
68149
+ *
68150
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#interval Read more...}
68151
+ */
68152
+ interval: number;
68153
+ /**
68154
+ * The start value of bins to generate.
68155
+ *
68156
+ * @default null
68157
+ *
68158
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#start Read more...}
68159
+ */
68160
+ start: number | Date;
68161
+ /**
68162
+ * The type of bin parameters.
68163
+ *
68164
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#type Read more...}
68165
+ */
68166
+ readonly type: "fixed-interval";
68167
+
68168
+ /**
68169
+ * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
68170
+ *
68171
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#toJSON Read more...}
68172
+ */
68173
+ toJSON(): any;
68174
+
68175
+ /**
68176
+ * Creates a new instance of this class and initializes it with values from a JSON object
68177
+ * generated from an ArcGIS product.
68178
+ *
68179
+ * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
68180
+ *
68181
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#fromJSON Read more...}
68182
+ */
68183
+ static fromJSON(json: any): any;
68184
+ static fromJSON(json: any): FixedIntervalBinParameters;
68185
+ }
68186
+
68187
+ interface FixedIntervalBinParametersProperties {
68188
+ /**
68189
+ * The end value of bins to generate.
68190
+ *
68191
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#end Read more...}
68192
+ */
68193
+ end?: number | DateProperties;
68194
+ /**
68195
+ * Represents the interval of values to be included in each bin.
68196
+ *
68197
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#interval Read more...}
68198
+ */
68199
+ interval?: number;
68200
+ /**
68201
+ * The start value of bins to generate.
68202
+ *
68203
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FixedIntervalBinParameters.html#start Read more...}
68204
+ */
68205
+ start?: number | DateProperties;
68206
+ }
68207
+
67156
68208
  export interface GeneralizeParameters extends Accessor, JSONSupport {}
67157
68209
 
67158
68210
  export class GeneralizeParameters {
@@ -67854,9 +68906,7 @@ declare namespace __esri {
67854
68906
  up?: number;
67855
68907
  }
67856
68908
 
67857
- export interface ImageAreaParameters extends Accessor, JSONSupport, BaseImageMeasureParameters {}
67858
-
67859
- export class ImageAreaParameters {
68909
+ export class ImageAreaParameters extends BaseImageMeasureParameters {
67860
68910
  /**
67861
68911
  * Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureAreaAndPerimeter ImageryLayer.measureAreaAndPerimeter()}
67862
68912
  * and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureAreaAndPerimeter imageService.measureAreaAndPerimeter()} methods to perform imagery
@@ -67910,19 +68960,6 @@ declare namespace __esri {
67910
68960
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#linearUnit Read more...}
67911
68961
  */
67912
68962
  linearUnit: LengthUnit | "decimal-degrees" | "points" | "unknown";
67913
- /**
67914
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
67915
- * when the measure is computed.
67916
- *
67917
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#mosaicRule Read more...}
67918
- */
67919
- declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
67920
- /**
67921
- * Specifies the pixel size.
67922
- *
67923
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#pixelSize Read more...}
67924
- */
67925
- declare pixelSize: BaseImageMeasureParameters["pixelSize"];
67926
68963
  /**
67927
68964
  * The string value representing the type of imagery mensuration.
67928
68965
  *
@@ -67930,22 +68967,6 @@ declare namespace __esri {
67930
68967
  */
67931
68968
  readonly type: "area-perimeter";
67932
68969
 
67933
- /**
67934
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
67935
- *
67936
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#toJSON Read more...}
67937
- */
67938
- toJSON(): any;
67939
-
67940
- /**
67941
- * Creates a new instance of this class and initializes it with values from a JSON object
67942
- * generated from an ArcGIS product.
67943
- *
67944
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
67945
- *
67946
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#fromJSON Read more...}
67947
- */
67948
- static fromJSON(json: any): any;
67949
68970
  static fromJSON(json: any): ImageAreaParameters;
67950
68971
  }
67951
68972
 
@@ -67987,24 +69008,9 @@ declare namespace __esri {
67987
69008
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#linearUnit Read more...}
67988
69009
  */
67989
69010
  linearUnit?: LengthUnit | "decimal-degrees" | "points" | "unknown";
67990
- /**
67991
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
67992
- * when the measure is computed.
67993
- *
67994
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#mosaicRule Read more...}
67995
- */
67996
- mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
67997
- /**
67998
- * Specifies the pixel size.
67999
- *
68000
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaParameters.html#pixelSize Read more...}
68001
- */
68002
- pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
68003
69011
  }
68004
69012
 
68005
- export interface ImageAreaResult extends Accessor, JSONSupport, BaseImageMeasureResult {}
68006
-
68007
- export class ImageAreaResult {
69013
+ export class ImageAreaResult extends BaseImageMeasureResult {
68008
69014
  /**
68009
69015
  * Image service area and perimeter measurement result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureAreaAndPerimeter ImageryLayer.measureAreaAndPerimeter()}
68010
69016
  * or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureAreaAndPerimeter imageService.measureAreaAndPerimeter()} methods resolve successfully.
@@ -68020,41 +69026,13 @@ declare namespace __esri {
68020
69026
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#area Read more...}
68021
69027
  */
68022
69028
  area: MeasurementValue;
68023
- /**
68024
- * Name of the raster dataset used in the area and height measurement.
68025
- *
68026
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#name Read more...}
68027
- */
68028
- declare name: BaseImageMeasureResult["name"];
68029
69029
  /**
68030
69030
  * An object containing results of the perimeter measurement.
68031
69031
  *
68032
69032
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#perimeter Read more...}
68033
69033
  */
68034
69034
  perimeter: MeasurementValue;
68035
- /**
68036
- * Sensor name of the raster dataset used in the area and height measurement.
68037
- *
68038
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#sensorName Read more...}
68039
- */
68040
- declare sensorName: BaseImageMeasureResult["sensorName"];
68041
69035
 
68042
- /**
68043
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
68044
- *
68045
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#toJSON Read more...}
68046
- */
68047
- toJSON(): any;
68048
-
68049
- /**
68050
- * Creates a new instance of this class and initializes it with values from a JSON object
68051
- * generated from an ArcGIS product.
68052
- *
68053
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
68054
- *
68055
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#fromJSON Read more...}
68056
- */
68057
- static fromJSON(json: any): any;
68058
69036
  static fromJSON(json: any): ImageAreaResult;
68059
69037
  }
68060
69038
 
@@ -68065,24 +69043,12 @@ declare namespace __esri {
68065
69043
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#area Read more...}
68066
69044
  */
68067
69045
  area?: MeasurementValue;
68068
- /**
68069
- * Name of the raster dataset used in the area and height measurement.
68070
- *
68071
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#name Read more...}
68072
- */
68073
- name?: BaseImageMeasureResultProperties["name"];
68074
69046
  /**
68075
69047
  * An object containing results of the perimeter measurement.
68076
69048
  *
68077
69049
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#perimeter Read more...}
68078
69050
  */
68079
69051
  perimeter?: MeasurementValue;
68080
- /**
68081
- * Sensor name of the raster dataset used in the area and height measurement.
68082
- *
68083
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageAreaResult.html#sensorName Read more...}
68084
- */
68085
- sensorName?: BaseImageMeasureResultProperties["sensorName"];
68086
69052
  }
68087
69053
 
68088
69054
  export interface ImageBoundaryParameters extends Accessor, JSONSupport {}
@@ -68191,9 +69157,7 @@ declare namespace __esri {
68191
69157
  geometry?: (PolygonProperties & { type: "polygon" }) | (ExtentProperties & { type: "extent" });
68192
69158
  }
68193
69159
 
68194
- export interface ImageDistanceParameters extends Accessor, JSONSupport, BaseImageMeasureParameters {}
68195
-
68196
- export class ImageDistanceParameters {
69160
+ export class ImageDistanceParameters extends BaseImageMeasureParameters {
68197
69161
  /**
68198
69162
  * Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureDistanceAndAngle ImageryLayer.measureDistanceAndAngle()}
68199
69163
  * or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureDistanceAndAngle imageService.measureDistanceAndAngle()} methods to perform imagery
@@ -68234,19 +69198,6 @@ declare namespace __esri {
68234
69198
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#linearUnit Read more...}
68235
69199
  */
68236
69200
  linearUnit: LengthUnit;
68237
- /**
68238
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
68239
- * when the measure is computed.
68240
- *
68241
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#mosaicRule Read more...}
68242
- */
68243
- declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
68244
- /**
68245
- * Specifies the pixel size.
68246
- *
68247
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#pixelSize Read more...}
68248
- */
68249
- declare pixelSize: BaseImageMeasureParameters["pixelSize"];
68250
69201
  /**
68251
69202
  * A point that defines the to location of the distance and angle measurement.
68252
69203
  *
@@ -68260,22 +69211,6 @@ declare namespace __esri {
68260
69211
  */
68261
69212
  readonly type: "distance-angle";
68262
69213
 
68263
- /**
68264
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
68265
- *
68266
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#toJSON Read more...}
68267
- */
68268
- toJSON(): any;
68269
-
68270
- /**
68271
- * Creates a new instance of this class and initializes it with values from a JSON object
68272
- * generated from an ArcGIS product.
68273
- *
68274
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
68275
- *
68276
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#fromJSON Read more...}
68277
- */
68278
- static fromJSON(json: any): any;
68279
69214
  static fromJSON(json: any): ImageDistanceParameters;
68280
69215
  }
68281
69216
 
@@ -68304,19 +69239,6 @@ declare namespace __esri {
68304
69239
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#linearUnit Read more...}
68305
69240
  */
68306
69241
  linearUnit?: LengthUnit;
68307
- /**
68308
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
68309
- * when the measure is computed.
68310
- *
68311
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#mosaicRule Read more...}
68312
- */
68313
- mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
68314
- /**
68315
- * Specifies the pixel size.
68316
- *
68317
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceParameters.html#pixelSize Read more...}
68318
- */
68319
- pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
68320
69242
  /**
68321
69243
  * A point that defines the to location of the distance and angle measurement.
68322
69244
  *
@@ -68325,9 +69247,7 @@ declare namespace __esri {
68325
69247
  toGeometry?: PointProperties;
68326
69248
  }
68327
69249
 
68328
- export interface ImageDistanceResult extends Accessor, JSONSupport, BaseImageMeasureResult {}
68329
-
68330
- export class ImageDistanceResult {
69250
+ export class ImageDistanceResult extends BaseImageMeasureResult {
68331
69251
  /**
68332
69252
  * Image service distance and angle measurement result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureDistanceAndAngle ImageryLayer.measureDistanceAndAngle()}
68333
69253
  * or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureDistanceAndAngle imageService.measureDistanceAndAngle()} methods resolve successfully.
@@ -68355,35 +69275,7 @@ declare namespace __esri {
68355
69275
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#elevationAngle Read more...}
68356
69276
  */
68357
69277
  elevationAngle: MeasurementValue;
68358
- /**
68359
- * Name of the raster dataset used in the area and height measurement.
68360
- *
68361
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#name Read more...}
68362
- */
68363
- declare name: BaseImageMeasureResult["name"];
68364
- /**
68365
- * Sensor name of the raster dataset used in the area and height measurement.
68366
- *
68367
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#sensorName Read more...}
68368
- */
68369
- declare sensorName: BaseImageMeasureResult["sensorName"];
68370
69278
 
68371
- /**
68372
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
68373
- *
68374
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#toJSON Read more...}
68375
- */
68376
- toJSON(): any;
68377
-
68378
- /**
68379
- * Creates a new instance of this class and initializes it with values from a JSON object
68380
- * generated from an ArcGIS product.
68381
- *
68382
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
68383
- *
68384
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#fromJSON Read more...}
68385
- */
68386
- static fromJSON(json: any): any;
68387
69279
  static fromJSON(json: any): ImageDistanceResult;
68388
69280
  }
68389
69281
 
@@ -68406,18 +69298,6 @@ declare namespace __esri {
68406
69298
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#elevationAngle Read more...}
68407
69299
  */
68408
69300
  elevationAngle?: MeasurementValue;
68409
- /**
68410
- * Name of the raster dataset used in the area and height measurement.
68411
- *
68412
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#name Read more...}
68413
- */
68414
- name?: BaseImageMeasureResultProperties["name"];
68415
- /**
68416
- * Sensor name of the raster dataset used in the area and height measurement.
68417
- *
68418
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageDistanceResult.html#sensorName Read more...}
68419
- */
68420
- sensorName?: BaseImageMeasureResultProperties["sensorName"];
68421
69301
  }
68422
69302
 
68423
69303
  export class ImageGPSInfo extends JSONSupport {
@@ -68716,9 +69596,7 @@ declare namespace __esri {
68716
69596
  images?: ImageGPSInfoProperties[];
68717
69597
  }
68718
69598
 
68719
- export interface ImageHeightParameters extends Accessor, JSONSupport, BaseImageMeasureParameters {}
68720
-
68721
- export class ImageHeightParameters {
69599
+ export class ImageHeightParameters extends BaseImageMeasureParameters {
68722
69600
  /**
68723
69601
  * Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureHeight ImageryLayer.measureHeight()}
68724
69602
  * or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureHeight imageService.measureHeight()} methods to perform imagery
@@ -68743,13 +69621,6 @@ declare namespace __esri {
68743
69621
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#linearUnit Read more...}
68744
69622
  */
68745
69623
  linearUnit: LengthUnit;
68746
- /**
68747
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
68748
- * when the measure is computed.
68749
- *
68750
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#mosaicRule Read more...}
68751
- */
68752
- declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
68753
69624
  /**
68754
69625
  * Determines how the height will be measured when the sensor info is available.
68755
69626
  *
@@ -68758,12 +69629,6 @@ declare namespace __esri {
68758
69629
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#operationType Read more...}
68759
69630
  */
68760
69631
  operationType: "base-and-top" | "base-and-top-shadow" | "top-and-top-shadow";
68761
- /**
68762
- * Specifies the pixel size.
68763
- *
68764
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#pixelSize Read more...}
68765
- */
68766
- declare pixelSize: BaseImageMeasureParameters["pixelSize"];
68767
69632
  /**
68768
69633
  * A point that defines the to location of the height measurement.
68769
69634
  *
@@ -68777,22 +69642,6 @@ declare namespace __esri {
68777
69642
  */
68778
69643
  readonly type: "height";
68779
69644
 
68780
- /**
68781
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
68782
- *
68783
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#toJSON Read more...}
68784
- */
68785
- toJSON(): any;
68786
-
68787
- /**
68788
- * Creates a new instance of this class and initializes it with values from a JSON object
68789
- * generated from an ArcGIS product.
68790
- *
68791
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
68792
- *
68793
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#fromJSON Read more...}
68794
- */
68795
- static fromJSON(json: any): any;
68796
69645
  static fromJSON(json: any): ImageHeightParameters;
68797
69646
  }
68798
69647
 
@@ -68809,25 +69658,12 @@ declare namespace __esri {
68809
69658
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#linearUnit Read more...}
68810
69659
  */
68811
69660
  linearUnit?: LengthUnit;
68812
- /**
68813
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
68814
- * when the measure is computed.
68815
- *
68816
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#mosaicRule Read more...}
68817
- */
68818
- mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
68819
69661
  /**
68820
69662
  * Determines how the height will be measured when the sensor info is available.
68821
69663
  *
68822
69664
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#operationType Read more...}
68823
69665
  */
68824
69666
  operationType?: "base-and-top" | "base-and-top-shadow" | "top-and-top-shadow";
68825
- /**
68826
- * Specifies the pixel size.
68827
- *
68828
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightParameters.html#pixelSize Read more...}
68829
- */
68830
- pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
68831
69667
  /**
68832
69668
  * A point that defines the to location of the height measurement.
68833
69669
  *
@@ -68836,9 +69672,7 @@ declare namespace __esri {
68836
69672
  toGeometry?: PointProperties;
68837
69673
  }
68838
69674
 
68839
- export interface ImageHeightResult extends Accessor, JSONSupport, BaseImageMeasureResult {}
68840
-
68841
- export class ImageHeightResult {
69675
+ export class ImageHeightResult extends BaseImageMeasureResult {
68842
69676
  /**
68843
69677
  * Image service height mensuration result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measureHeight ImageryLayer.measureHeight()}
68844
69678
  * or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measureHeight imageService.measureHeight()} methods resolve successfully.
@@ -68854,35 +69688,7 @@ declare namespace __esri {
68854
69688
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#height Read more...}
68855
69689
  */
68856
69690
  height: MeasurementValue;
68857
- /**
68858
- * Name of the raster dataset used in the area and height measurement.
68859
- *
68860
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#name Read more...}
68861
- */
68862
- declare name: BaseImageMeasureResult["name"];
68863
- /**
68864
- * Sensor name of the raster dataset used in the area and height measurement.
68865
- *
68866
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#sensorName Read more...}
68867
- */
68868
- declare sensorName: BaseImageMeasureResult["sensorName"];
68869
69691
 
68870
- /**
68871
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
68872
- *
68873
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#toJSON Read more...}
68874
- */
68875
- toJSON(): any;
68876
-
68877
- /**
68878
- * Creates a new instance of this class and initializes it with values from a JSON object
68879
- * generated from an ArcGIS product.
68880
- *
68881
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
68882
- *
68883
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#fromJSON Read more...}
68884
- */
68885
- static fromJSON(json: any): any;
68886
69692
  static fromJSON(json: any): ImageHeightResult;
68887
69693
  }
68888
69694
 
@@ -68893,18 +69699,6 @@ declare namespace __esri {
68893
69699
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#height Read more...}
68894
69700
  */
68895
69701
  height?: MeasurementValue;
68896
- /**
68897
- * Name of the raster dataset used in the area and height measurement.
68898
- *
68899
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#name Read more...}
68900
- */
68901
- name?: BaseImageMeasureResultProperties["name"];
68902
- /**
68903
- * Sensor name of the raster dataset used in the area and height measurement.
68904
- *
68905
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImageHeightResult.html#sensorName Read more...}
68906
- */
68907
- sensorName?: BaseImageMeasureResultProperties["sensorName"];
68908
69702
  }
68909
69703
 
68910
69704
  export interface ImageHistogramParameters extends Accessor, JSONSupport {}
@@ -69764,9 +70558,7 @@ declare namespace __esri {
69764
70558
  geometries?: any[];
69765
70559
  }
69766
70560
 
69767
- export interface ImagePointParameters extends Accessor, JSONSupport, BaseImageMeasureParameters {}
69768
-
69769
- export class ImagePointParameters {
70561
+ export class ImagePointParameters extends BaseImageMeasureParameters {
69770
70562
  /**
69771
70563
  * Input parameters used by the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measurePointOrCentroid ImageryLayer.measurePointOrCentroid()}
69772
70564
  * or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measurePointOrCentroid imageService.measurePointOrCentroid()} methods to perform imagery
@@ -69791,19 +70583,6 @@ declare namespace __esri {
69791
70583
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#is3D Read more...}
69792
70584
  */
69793
70585
  is3D: boolean;
69794
- /**
69795
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
69796
- * when the measure is computed.
69797
- *
69798
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#mosaicRule Read more...}
69799
- */
69800
- declare mosaicRule: BaseImageMeasureParameters["mosaicRule"];
69801
- /**
69802
- * Specifies the pixel size.
69803
- *
69804
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#pixelSize Read more...}
69805
- */
69806
- declare pixelSize: BaseImageMeasureParameters["pixelSize"];
69807
70586
  /**
69808
70587
  * The string value representing the type of imagery mensuration.
69809
70588
  *
@@ -69811,22 +70590,6 @@ declare namespace __esri {
69811
70590
  */
69812
70591
  readonly type: "point";
69813
70592
 
69814
- /**
69815
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
69816
- *
69817
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#toJSON Read more...}
69818
- */
69819
- toJSON(): any;
69820
-
69821
- /**
69822
- * Creates a new instance of this class and initializes it with values from a JSON object
69823
- * generated from an ArcGIS product.
69824
- *
69825
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
69826
- *
69827
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#fromJSON Read more...}
69828
- */
69829
- static fromJSON(json: any): any;
69830
70593
  static fromJSON(json: any): ImagePointParameters;
69831
70594
  }
69832
70595
 
@@ -69846,24 +70609,9 @@ declare namespace __esri {
69846
70609
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#is3D Read more...}
69847
70610
  */
69848
70611
  is3D?: boolean;
69849
- /**
69850
- * Specifies the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-MosaicRule.html mosaic rule} on how individual images should be mosaicked
69851
- * when the measure is computed.
69852
- *
69853
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#mosaicRule Read more...}
69854
- */
69855
- mosaicRule?: BaseImageMeasureParametersProperties["mosaicRule"];
69856
- /**
69857
- * Specifies the pixel size.
69858
- *
69859
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointParameters.html#pixelSize Read more...}
69860
- */
69861
- pixelSize?: BaseImageMeasureParametersProperties["pixelSize"];
69862
70612
  }
69863
70613
 
69864
- export interface ImagePointResult extends Accessor, JSONSupport, BaseImageMeasureResult {}
69865
-
69866
- export class ImagePointResult {
70614
+ export class ImagePointResult extends BaseImageMeasureResult {
69867
70615
  /**
69868
70616
  * Image service point or centroid measurement result returned when the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-ImageryLayer.html#measurePointOrCentroid ImageryLayer.measurePointOrCentroid()}
69869
70617
  * or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-imageService.html#measurePointOrCentroid imageService.measurePointOrCentroid()} methods resolve successfully.
@@ -69873,63 +70621,23 @@ declare namespace __esri {
69873
70621
 
69874
70622
  constructor(properties?: ImagePointResultProperties);
69875
70623
 
69876
- /**
69877
- * Name of the raster dataset used in the area and height measurement.
69878
- *
69879
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#name Read more...}
69880
- */
69881
- declare name: BaseImageMeasureResult["name"];
69882
70624
  /**
69883
70625
  * The measured point on an image service.
69884
70626
  *
69885
70627
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#point Read more...}
69886
70628
  */
69887
70629
  point: Point;
69888
- /**
69889
- * Sensor name of the raster dataset used in the area and height measurement.
69890
- *
69891
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#sensorName Read more...}
69892
- */
69893
- declare sensorName: BaseImageMeasureResult["sensorName"];
69894
70630
 
69895
- /**
69896
- * Converts an instance of this class to its [ArcGIS portal JSON](https://developers.arcgis.com/documentation/common-data-types/geometry-objects.htm) representation.
69897
- *
69898
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#toJSON Read more...}
69899
- */
69900
- toJSON(): any;
69901
-
69902
- /**
69903
- * Creates a new instance of this class and initializes it with values from a JSON object
69904
- * generated from an ArcGIS product.
69905
- *
69906
- * @param json A JSON representation of the instance in the ArcGIS format. See the [ArcGIS REST API documentation](https://developers.arcgis.com/documentation/common-data-types/overview-of-common-data-types.htm) for examples of the structure of various input JSON objects.
69907
- *
69908
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#fromJSON Read more...}
69909
- */
69910
- static fromJSON(json: any): any;
69911
70631
  static fromJSON(json: any): ImagePointResult;
69912
70632
  }
69913
70633
 
69914
70634
  interface ImagePointResultProperties extends BaseImageMeasureResultProperties {
69915
- /**
69916
- * Name of the raster dataset used in the area and height measurement.
69917
- *
69918
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#name Read more...}
69919
- */
69920
- name?: BaseImageMeasureResultProperties["name"];
69921
70635
  /**
69922
70636
  * The measured point on an image service.
69923
70637
  *
69924
70638
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#point Read more...}
69925
70639
  */
69926
70640
  point?: PointProperties;
69927
- /**
69928
- * Sensor name of the raster dataset used in the area and height measurement.
69929
- *
69930
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-ImagePointResult.html#sensorName Read more...}
69931
- */
69932
- sensorName?: BaseImageMeasureResultProperties["sensorName"];
69933
70641
  }
69934
70642
 
69935
70643
  export interface ImageSample extends Accessor, JSONSupport {}
@@ -72798,7 +73506,7 @@ declare namespace __esri {
72798
73506
  *
72799
73507
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#datumTransformation Read more...}
72800
73508
  */
72801
- datumTransformation: number | SimpleTransformation | CompositeTransformation;
73509
+ datumTransformation: number | QuerySimpleTransformation | QueryCompositeTransformation;
72802
73510
  /**
72803
73511
  * Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#geometry geometry} in a spatial query.
72804
73512
  *
@@ -73089,7 +73797,7 @@ declare namespace __esri {
73089
73797
  *
73090
73798
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#datumTransformation Read more...}
73091
73799
  */
73092
- datumTransformation?: number | SimpleTransformation | CompositeTransformation;
73800
+ datumTransformation?: number | QuerySimpleTransformation | QueryCompositeTransformation;
73093
73801
  /**
73094
73802
  * Specifies a search distance from a given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html#geometry geometry} in a spatial query.
73095
73803
  *
@@ -73319,6 +74027,10 @@ declare namespace __esri {
73319
74027
  geoTransforms: CompositeTransformationGeoTransforms[];
73320
74028
  }
73321
74029
 
74030
+ export interface QueryCompositeTransformation {
74031
+ geoTransforms: CompositeTransformationGeoTransforms1[];
74032
+ }
74033
+
73322
74034
  export interface QueryQuantizationParameters {
73323
74035
  extent?: Extent;
73324
74036
  mode?: "view" | "edit";
@@ -73335,11 +74047,20 @@ declare namespace __esri {
73335
74047
  wkid: number;
73336
74048
  }
73337
74049
 
74050
+ export interface QuerySimpleTransformation {
74051
+ wkid: number;
74052
+ }
74053
+
73338
74054
  export interface CompositeTransformationGeoTransforms {
73339
74055
  wkid: number;
73340
74056
  transformForward: boolean;
73341
74057
  }
73342
74058
 
74059
+ export interface CompositeTransformationGeoTransforms1 {
74060
+ wkid: number;
74061
+ transformForward: boolean;
74062
+ }
74063
+
73343
74064
  export class QueryMixin {
73344
74065
  cacheHint: boolean;
73345
74066
  distance: number;
@@ -86909,8 +87630,7 @@ declare namespace __esri {
86909
87630
  */
86910
87631
  styleOrigin: StyleOrigin;
86911
87632
  /**
86912
- * A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects
86913
- * used to visualize the graphic or feature.
87633
+ * A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects used to visualize the graphic or feature.
86914
87634
  *
86915
87635
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3D.html#symbolLayers Read more...}
86916
87636
  */
@@ -86933,8 +87653,7 @@ declare namespace __esri {
86933
87653
  */
86934
87654
  styleOrigin?: StyleOriginProperties;
86935
87655
  /**
86936
- * A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects
86937
- * used to visualize the graphic or feature.
87656
+ * A Collection of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3DLayer.html Symbol3DLayer} objects used to visualize the graphic or feature.
86938
87657
  *
86939
87658
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-Symbol3D.html#symbolLayers Read more...}
86940
87659
  */
@@ -87883,6 +88602,58 @@ declare namespace __esri {
87883
88602
  order?: "asc" | "desc";
87884
88603
  }
87885
88604
 
88605
+ /**
88606
+ * A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableElement.html AttributeTableElement} classes
88607
+ * when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
88608
+ *
88609
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html Read more...}
88610
+ */
88611
+ namespace tablesElements {
88612
+ /**
88613
+ * Attribute table element types.
88614
+ *
88615
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableElement Read more...}
88616
+ */
88617
+ export type AttributeTableElement =
88618
+ | __esri.AttributeTableFieldElement
88619
+ | __esri.AttributeTableGroupElement
88620
+ | __esri.AttributeTableRelationshipElement
88621
+ | __esri.AttributeTableAttachmentElement;
88622
+
88623
+ /**
88624
+ * `AttributeTableFieldElement` defines how a feature layer's field participates in the attribute table.
88625
+ *
88626
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableFieldElement Read more...}
88627
+ */
88628
+ export type AttributeTableFieldElement = __esri.AttributeTableFieldElement;
88629
+ export const AttributeTableFieldElement: typeof __esri.AttributeTableFieldElement;
88630
+
88631
+ /**
88632
+ * `AttributeTableGroupElement` defines a container that holds a set of attribute table elements
88633
+ * that can be displayed together.
88634
+ *
88635
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableGroupElement Read more...}
88636
+ */
88637
+ export type AttributeTableGroupElement = __esri.AttributeTableGroupElement;
88638
+ export const AttributeTableGroupElement: typeof __esri.AttributeTableGroupElement;
88639
+
88640
+ /**
88641
+ * `AttributeTableRelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable}.
88642
+ *
88643
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableRelationshipElement Read more...}
88644
+ */
88645
+ export type AttributeTableRelationshipElement = __esri.AttributeTableRelationshipElement;
88646
+ export const AttributeTableRelationshipElement: typeof __esri.AttributeTableRelationshipElement;
88647
+
88648
+ /**
88649
+ * `AttributeTableAttachmentElement` defines how one or more attachments can participate in the attribute table.
88650
+ *
88651
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableAttachmentElement Read more...}
88652
+ */
88653
+ export type AttributeTableAttachmentElement = __esri.AttributeTableAttachmentElement;
88654
+ export const AttributeTableAttachmentElement: typeof __esri.AttributeTableAttachmentElement;
88655
+ }
88656
+
87886
88657
  export class AttributeTableAttachmentElement extends AttributeTableElement {
87887
88658
  /**
87888
88659
  * An `AttributeTableAttachmentElement` defines how attachments display within a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable}.
@@ -88119,14 +88890,44 @@ declare namespace __esri {
88119
88890
  }
88120
88891
 
88121
88892
  /**
88122
- * A convenience module for importing {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements-AttributeTableElement.html AttributeTableElement} classes
88123
- * when developing with {@link https://developers.arcgis.com/javascript/latest/typescript-setup/ TypeScript}.
88893
+ * `AttributeTableAttachmentElement` defines how one or more attachments can participate in the attribute table.
88124
88894
  *
88125
- * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-support-elements.html Read more...}
88895
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableAttachmentElement Read more...}
88126
88896
  */
88127
- interface supportElements {}
88897
+ export type elementsAttributeTableAttachmentElement = AttributeTableAttachmentElement;
88128
88898
 
88129
- export const supportElements: supportElements;
88899
+ /**
88900
+ * Attribute table element types.
88901
+ *
88902
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableElement Read more...}
88903
+ */
88904
+ export type elementsAttributeTableElement =
88905
+ | AttributeTableFieldElement
88906
+ | AttributeTableGroupElement
88907
+ | AttributeTableRelationshipElement
88908
+ | AttributeTableAttachmentElement;
88909
+
88910
+ /**
88911
+ * `AttributeTableFieldElement` defines how a feature layer's field participates in the attribute table.
88912
+ *
88913
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableFieldElement Read more...}
88914
+ */
88915
+ export type elementsAttributeTableFieldElement = AttributeTableFieldElement;
88916
+
88917
+ /**
88918
+ * `AttributeTableGroupElement` defines a container that holds a set of attribute table elements
88919
+ * that can be displayed together.
88920
+ *
88921
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableGroupElement Read more...}
88922
+ */
88923
+ export type elementsAttributeTableGroupElement = AttributeTableGroupElement;
88924
+
88925
+ /**
88926
+ * `AttributeTableRelationshipElement` defines how a relationship between {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html feature layers} and {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-Map.html#tables tables} participates in the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html FeatureTable}.
88927
+ *
88928
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-tables-elements.html#AttributeTableRelationshipElement Read more...}
88929
+ */
88930
+ export type elementsAttributeTableRelationshipElement = AttributeTableRelationshipElement;
88130
88931
 
88131
88932
  export interface TimeExtent extends Accessor, JSONSupport {}
88132
88933
 
@@ -92454,6 +93255,20 @@ declare namespace __esri {
92454
93255
  query?: Query | QueryProperties,
92455
93256
  options?: FeatureLayerViewMixinQueryAggregatesOptions,
92456
93257
  ): Promise<FeatureSet>;
93258
+ /**
93259
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
93260
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
93261
+ *
93262
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
93263
+ * @param options An object with the following properties.
93264
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
93265
+ *
93266
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-CatalogFootprintLayerView.html#queryAttributeBins Read more...}
93267
+ */
93268
+ queryAttributeBins(
93269
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
93270
+ options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
93271
+ ): Promise<FeatureSet>;
92457
93272
  /**
92458
93273
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
92459
93274
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -92697,6 +93512,20 @@ declare namespace __esri {
92697
93512
  query?: Query | QueryProperties,
92698
93513
  options?: FeatureLayerViewMixinQueryAggregatesOptions,
92699
93514
  ): Promise<FeatureSet>;
93515
+ /**
93516
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
93517
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
93518
+ *
93519
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
93520
+ * @param options An object with the following properties.
93521
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
93522
+ *
93523
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-CSVLayerView.html#queryAttributeBins Read more...}
93524
+ */
93525
+ queryAttributeBins(
93526
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
93527
+ options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
93528
+ ): Promise<FeatureSet>;
92700
93529
  /**
92701
93530
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
92702
93531
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -92981,6 +93810,20 @@ declare namespace __esri {
92981
93810
  query?: Query | QueryProperties,
92982
93811
  options?: FeatureLayerViewMixinQueryAggregatesOptions,
92983
93812
  ): Promise<FeatureSet>;
93813
+ /**
93814
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
93815
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
93816
+ *
93817
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
93818
+ * @param options An object with the following properties.
93819
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
93820
+ *
93821
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html#queryAttributeBins Read more...}
93822
+ */
93823
+ queryAttributeBins(
93824
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
93825
+ options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
93826
+ ): Promise<FeatureSet>;
92984
93827
  /**
92985
93828
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
92986
93829
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -93113,6 +93956,20 @@ declare namespace __esri {
93113
93956
  query?: Query | QueryProperties,
93114
93957
  options?: FeatureLayerViewMixinQueryAggregatesOptions,
93115
93958
  ): Promise<FeatureSet>;
93959
+ /**
93960
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
93961
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
93962
+ *
93963
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
93964
+ * @param options An object with the following properties.
93965
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
93966
+ *
93967
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerViewMixin.html#queryAttributeBins Read more...}
93968
+ */
93969
+ queryAttributeBins(
93970
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
93971
+ options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
93972
+ ): Promise<FeatureSet>;
93116
93973
  /**
93117
93974
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
93118
93975
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -93179,6 +94036,10 @@ declare namespace __esri {
93179
94036
  signal?: AbortSignal;
93180
94037
  }
93181
94038
 
94039
+ export interface FeatureLayerViewMixinQueryAttributeBinsOptions {
94040
+ signal?: AbortSignal;
94041
+ }
94042
+
93182
94043
  export interface FeatureLayerViewMixinQueryExtentOptions {
93183
94044
  signal?: AbortSignal;
93184
94045
  }
@@ -93311,6 +94172,20 @@ declare namespace __esri {
93311
94172
  query?: Query | QueryProperties,
93312
94173
  options?: FeatureLayerViewMixinQueryAggregatesOptions,
93313
94174
  ): Promise<FeatureSet>;
94175
+ /**
94176
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
94177
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
94178
+ *
94179
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
94180
+ * @param options An object with the following properties.
94181
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
94182
+ *
94183
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-GeoJSONLayerView.html#queryAttributeBins Read more...}
94184
+ */
94185
+ queryAttributeBins(
94186
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
94187
+ options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
94188
+ ): Promise<FeatureSet>;
93314
94189
  /**
93315
94190
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
93316
94191
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -93907,6 +94782,20 @@ declare namespace __esri {
93907
94782
  query?: Query | QueryProperties,
93908
94783
  options?: FeatureLayerViewMixinQueryAggregatesOptions,
93909
94784
  ): Promise<FeatureSet>;
94785
+ /**
94786
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
94787
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
94788
+ *
94789
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
94790
+ * @param options An object with the following properties.
94791
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
94792
+ *
94793
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-OGCFeatureLayerView.html#queryAttributeBins Read more...}
94794
+ */
94795
+ queryAttributeBins(
94796
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
94797
+ options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
94798
+ ): Promise<FeatureSet>;
93910
94799
  /**
93911
94800
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
93912
94801
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -94612,6 +95501,20 @@ declare namespace __esri {
94612
95501
  query?: Query | QueryProperties,
94613
95502
  options?: FeatureLayerViewMixinQueryAggregatesOptions,
94614
95503
  ): Promise<FeatureSet>;
95504
+ /**
95505
+ * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html AttributeBinsQuery} against a feature service, which groups features into bins based on ranges in numeric or date fields, and returns a
95506
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-FeatureSet.html FeatureSet} containing the series of bins.
95507
+ *
95508
+ * @param binsQuery Specifies the parameters of the `queryAttributeBins()` operation. The {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-AttributeBinsQuery.html#binParameters binParameters} property must be set.
95509
+ * @param options An object with the following properties.
95510
+ * @param options.signal Signal object that can be used to abort the asynchronous task. The returned promise will be rejected with an {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-Error.html Error} named `AbortError` when an abort is signaled. See also [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) for more information on how to construct a controller that can be used to deliver abort signals.
95511
+ *
95512
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-WFSLayerView.html#queryAttributeBins Read more...}
95513
+ */
95514
+ queryAttributeBins(
95515
+ binsQuery: AttributeBinsQuery | AttributeBinsQueryProperties,
95516
+ options?: FeatureLayerViewMixinQueryAttributeBinsOptions,
95517
+ ): Promise<FeatureSet>;
94615
95518
  /**
94616
95519
  * Executes a {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html Query} against features available for drawing in the layerView and
94617
95520
  * returns the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Extent.html Extent} of features that satisfy the query.
@@ -95965,6 +96868,7 @@ declare namespace __esri {
95965
96868
  | (RainyWeatherProperties & { type: "rainy" })
95966
96869
  | (SnowyWeatherProperties & { type: "snowy" })
95967
96870
  | (FoggyWeatherProperties & { type: "foggy" });
96871
+ weatherAvailable?: boolean;
95968
96872
  starsEnabled?: boolean;
95969
96873
  }
95970
96874
 
@@ -95973,6 +96877,7 @@ declare namespace __esri {
95973
96877
  lighting?: SunLighting | VirtualLighting;
95974
96878
  atmosphereEnabled?: boolean;
95975
96879
  weather?: SunnyWeather | CloudyWeather | RainyWeather | SnowyWeather | FoggyWeather;
96880
+ weatherAvailable?: boolean;
95976
96881
  starsEnabled?: boolean;
95977
96882
  }
95978
96883
 
@@ -96370,7 +97275,7 @@ declare namespace __esri {
96370
97275
  */
96371
97276
  allLayerViews: Collection<LayerView>;
96372
97277
  /**
96373
- * Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#goTo goTo()}.
97278
+ * Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#goTo goTo()}.
96374
97279
  *
96375
97280
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#animation Read more...}
96376
97281
  */
@@ -96817,7 +97722,7 @@ declare namespace __esri {
96817
97722
  */
96818
97723
  allLayerViews?: CollectionProperties<LayerViewProperties>;
96819
97724
  /**
96820
- * Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#goTo goTo()}.
97725
+ * Represents an ongoing view animation initialized by {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View2D.html#goTo goTo()}.
96821
97726
  *
96822
97727
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-View.html#animation Read more...}
96823
97728
  */
@@ -99230,7 +100135,7 @@ declare namespace __esri {
99230
100135
 
99231
100136
  relationshipCount: number;
99232
100137
 
99233
- addRecords(records: IdTypePair[]): Promise<void>;
100138
+ addRecords(records: IdTypePair[], options?: AddRecordsOptions): Promise<void>;
99234
100139
 
99235
100140
  applyLayout(
99236
100141
  layoutMode:
@@ -99248,18 +100153,18 @@ declare namespace __esri {
99248
100153
 
99249
100154
  changeNonspatialDataDisplay(mode: "hidden" | "visible"): void;
99250
100155
 
99251
- connectBetweenEntities(entityIds: string[]): IdTypePair[];
100156
+ connectBetweenEntities(entityIds: string[], options?: GeneralOptions): IdTypePair[];
99252
100157
 
99253
- connectFromEntities(entityIds: string[]): IdTypePair[];
100158
+ connectFromEntities(entityIds: string[], options?: GeneralOptions): IdTypePair[];
99254
100159
  /**
99255
100160
  * todo: more doc description.
99256
100161
  *
99257
100162
  * @param nodeIds Array of entity IDs to expand from
99258
- * @param relationshipTypeNames Array of relationship named types to filter
100163
+ * @param options
99259
100164
  *
99260
100165
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-WebLinkChart.html#expand Read more...}
99261
100166
  */
99262
- expand(nodeIds: string[], relationshipTypeNames?: string[]): IdTypePair[];
100167
+ expand(nodeIds: string[], options?: ExpandOptions): IdTypePair[];
99263
100168
 
99264
100169
  getMemberIdsByType(typeName: string): string[];
99265
100170
 
@@ -99288,12 +100193,26 @@ declare namespace __esri {
99288
100193
  relationshipCount?: number;
99289
100194
  }
99290
100195
 
100196
+ export interface AddRecordsOptions {
100197
+ signal?: AbortSignal;
100198
+ cascadeAddRelationshipEndNodes?: boolean;
100199
+ }
100200
+
99291
100201
  export interface ApplyNewLayoutOptions {
99292
100202
  lockedNodeLocations?: globalThis.Map<string, Point>;
99293
100203
  organicLayoutSettings?: LinkChartLayerOrganicLayoutSettings;
99294
100204
  chronologicalLayoutSettings?: layersLinkChartLayerChronologicalLayoutSettings;
99295
100205
  }
99296
100206
 
100207
+ export interface ExpandOptions {
100208
+ relationshipTypeNames?: string[];
100209
+ signal?: AbortSignal;
100210
+ }
100211
+
100212
+ export interface GeneralOptions {
100213
+ signal?: AbortSignal;
100214
+ }
100215
+
99297
100216
  export class WebMap extends WebDocument2D {
99298
100217
  /**
99299
100218
  * Loads a [WebMap](https://doc.arcgis.com/en/arcgis-online/create-maps/make-your-first-map.htm)
@@ -102051,7 +102970,9 @@ declare namespace __esri {
102051
102970
  visibleElements?: BasemapLayerListVisibleElements;
102052
102971
  }
102053
102972
 
102054
- export class BasemapLayerListViewModel extends Accessor {
102973
+ export interface BasemapLayerListViewModel extends Accessor, Evented {}
102974
+
102975
+ export class BasemapLayerListViewModel {
102055
102976
  /**
102056
102977
  * Provides logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList.html BasemapLayerList} widget.
102057
102978
  *
@@ -102122,6 +103043,33 @@ declare namespace __esri {
102122
103043
  */
102123
103044
  view: MapView | SceneView;
102124
103045
 
103046
+ /**
103047
+ * Emits an event on the instance.
103048
+ *
103049
+ * @param type The name of the event.
103050
+ * @param event The event payload.
103051
+ *
103052
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#emit Read more...}
103053
+ */
103054
+ emit(type: string, event?: any): boolean;
103055
+ /**
103056
+ * Indicates whether there is an event listener on the instance that matches
103057
+ * the provided event name.
103058
+ *
103059
+ * @param type The name of the event.
103060
+ *
103061
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#hasEventListener Read more...}
103062
+ */
103063
+ hasEventListener(type: string): boolean;
103064
+ /**
103065
+ * Registers an event handler on the instance.
103066
+ *
103067
+ * @param type An {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#events-summary event} or an array of events to listen for.
103068
+ * @param listener The function to call when the event fires.
103069
+ *
103070
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#on Read more...}
103071
+ */
103072
+ on(type: string | string[], listener: EventHandler): IHandle;
102125
103073
  /**
102126
103074
  * Triggers the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-BasemapLayerList-BasemapLayerListViewModel.html#event-trigger-action trigger-action} event and executes
102127
103075
  * the given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html action} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html action toggle}.
@@ -102665,7 +103613,7 @@ declare namespace __esri {
102665
103613
  visibleElements?: BookmarksVisibleElements;
102666
103614
  }
102667
103615
 
102668
- export interface BookmarksViewModel extends Accessor, GoTo {}
103616
+ export interface BookmarksViewModel extends Accessor, GoTo, Evented {}
102669
103617
 
102670
103618
  export class BookmarksViewModel {
102671
103619
  /**
@@ -102746,6 +103694,15 @@ declare namespace __esri {
102746
103694
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#editBookmark Read more...}
102747
103695
  */
102748
103696
  editBookmark(bookmark: Bookmark, options?: BookmarkOptions): Promise<Bookmark>;
103697
+ /**
103698
+ * Emits an event on the instance.
103699
+ *
103700
+ * @param type The name of the event.
103701
+ * @param event The event payload.
103702
+ *
103703
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#emit Read more...}
103704
+ */
103705
+ emit(type: string, event?: any): boolean;
102749
103706
  /**
102750
103707
  * Zoom to a specific bookmark.
102751
103708
  *
@@ -102754,6 +103711,24 @@ declare namespace __esri {
102754
103711
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#goTo Read more...}
102755
103712
  */
102756
103713
  goTo(bookmark: Bookmark): Promise<any>;
103714
+ /**
103715
+ * Indicates whether there is an event listener on the instance that matches
103716
+ * the provided event name.
103717
+ *
103718
+ * @param type The name of the event.
103719
+ *
103720
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#hasEventListener Read more...}
103721
+ */
103722
+ hasEventListener(type: string): boolean;
103723
+ /**
103724
+ * Registers an event handler on the instance.
103725
+ *
103726
+ * @param type An {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#events-summary event} or an array of events to listen for.
103727
+ * @param listener The function to call when the event fires.
103728
+ *
103729
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Bookmarks-BookmarksViewModel.html#on Read more...}
103730
+ */
103731
+ on(type: string | string[], listener: EventHandler): IHandle;
102757
103732
  }
102758
103733
 
102759
103734
  interface BookmarksViewModelProperties extends GoToProperties {
@@ -103427,7 +104402,9 @@ declare namespace __esri {
103427
104402
  visibleElements?: CatalogLayerListVisibleElements;
103428
104403
  }
103429
104404
 
103430
- export class CatalogLayerListViewModel extends Accessor {
104405
+ export interface CatalogLayerListViewModel extends Accessor, Evented {}
104406
+
104407
+ export class CatalogLayerListViewModel {
103431
104408
  /**
103432
104409
  * Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList.html CatalogLayerList} widget.
103433
104410
  *
@@ -103493,6 +104470,24 @@ declare namespace __esri {
103493
104470
  */
103494
104471
  view: MapView | SceneView;
103495
104472
 
104473
+ /**
104474
+ * Emits an event on the instance.
104475
+ *
104476
+ * @param type The name of the event.
104477
+ * @param event The event payload.
104478
+ *
104479
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#emit Read more...}
104480
+ */
104481
+ emit(type: string, event?: any): boolean;
104482
+ /**
104483
+ * Indicates whether there is an event listener on the instance that matches
104484
+ * the provided event name.
104485
+ *
104486
+ * @param type The name of the event.
104487
+ *
104488
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#hasEventListener Read more...}
104489
+ */
104490
+ hasEventListener(type: string): boolean;
103496
104491
  /**
103497
104492
  * Triggers the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-CatalogLayerList-CatalogLayerListViewModel.html#event-trigger-action trigger-action} event and executes
103498
104493
  * the given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html action} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html action toggle}.
@@ -115346,7 +116341,9 @@ declare namespace __esri {
115346
116341
  visibleElements?: LayerListVisibleElements;
115347
116342
  }
115348
116343
 
115349
- export class LayerListViewModel extends Accessor {
116344
+ export interface LayerListViewModel extends Accessor, Evented {}
116345
+
116346
+ export class LayerListViewModel {
115350
116347
  /**
115351
116348
  * Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList.html LayerList} widget.
115352
116349
  *
@@ -115403,6 +116400,24 @@ declare namespace __esri {
115403
116400
  */
115404
116401
  view: MapView | SceneView;
115405
116402
 
116403
+ /**
116404
+ * Emits an event on the instance.
116405
+ *
116406
+ * @param type The name of the event.
116407
+ * @param event The event payload.
116408
+ *
116409
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-LayerListViewModel.html#emit Read more...}
116410
+ */
116411
+ emit(type: string, event?: any): boolean;
116412
+ /**
116413
+ * Indicates whether there is an event listener on the instance that matches
116414
+ * the provided event name.
116415
+ *
116416
+ * @param type The name of the event.
116417
+ *
116418
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-LayerList-LayerListViewModel.html#hasEventListener Read more...}
116419
+ */
116420
+ hasEventListener(type: string): boolean;
115406
116421
  /**
115407
116422
  * Moves a list item from one position to another in the LayerList widget.
115408
116423
  *
@@ -126621,7 +127636,9 @@ declare namespace __esri {
126621
127636
  */
126622
127637
  export type TableListItemPanelContent = string | Widget | HTMLElement;
126623
127638
 
126624
- export class TableListViewModel extends Accessor {
127639
+ export interface TableListViewModel extends Accessor, Evented {}
127640
+
127641
+ export class TableListViewModel {
126625
127642
  /**
126626
127643
  * Provides the logic for the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList.html TableList} widget.
126627
127644
  *
@@ -126686,6 +127703,24 @@ declare namespace __esri {
126686
127703
  */
126687
127704
  readonly totalItems: number;
126688
127705
 
127706
+ /**
127707
+ * Emits an event on the instance.
127708
+ *
127709
+ * @param type The name of the event.
127710
+ * @param event The event payload.
127711
+ *
127712
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#emit Read more...}
127713
+ */
127714
+ emit(type: string, event?: any): boolean;
127715
+ /**
127716
+ * Indicates whether there is an event listener on the instance that matches
127717
+ * the provided event name.
127718
+ *
127719
+ * @param type The name of the event.
127720
+ *
127721
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#hasEventListener Read more...}
127722
+ */
127723
+ hasEventListener(type: string): boolean;
126689
127724
  /**
126690
127725
  * Triggers the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-TableList-TableListViewModel.html#event-trigger-action trigger-action} event and executes
126691
127726
  * the given {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionButton.html action} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-support-actions-ActionToggle.html action toggle}.
@@ -135641,6 +136676,36 @@ declare module "esri/rest/support/AddressCandidate" {
135641
136676
  export = AddressCandidate;
135642
136677
  }
135643
136678
 
136679
+ declare module "esri/rest/support/AttributeBinsQuery" {
136680
+ import AttributeBinsQuery = __esri.AttributeBinsQuery;
136681
+ export = AttributeBinsQuery;
136682
+ }
136683
+
136684
+ declare module "esri/rest/support/AutoIntervalBinParameters" {
136685
+ import AutoIntervalBinParameters = __esri.AutoIntervalBinParameters;
136686
+ export = AutoIntervalBinParameters;
136687
+ }
136688
+
136689
+ declare module "esri/rest/support/FixedBoundariesBinParameters" {
136690
+ import FixedBoundariesBinParameters = __esri.FixedBoundariesBinParameters;
136691
+ export = FixedBoundariesBinParameters;
136692
+ }
136693
+
136694
+ declare module "esri/rest/support/FixedIntervalBinParameters" {
136695
+ import FixedIntervalBinParameters = __esri.FixedIntervalBinParameters;
136696
+ export = FixedIntervalBinParameters;
136697
+ }
136698
+
136699
+ declare module "esri/rest/support/DateBinParameters" {
136700
+ import DateBinParameters = __esri.DateBinParameters;
136701
+ export = DateBinParameters;
136702
+ }
136703
+
136704
+ declare module "esri/rest/support/DateBinTimeInterval" {
136705
+ import DateBinTimeInterval = __esri.DateBinTimeInterval;
136706
+ export = DateBinTimeInterval;
136707
+ }
136708
+
135644
136709
  declare module "esri/rest/support/AlgorithmicColorRamp" {
135645
136710
  import AlgorithmicColorRamp = __esri.AlgorithmicColorRamp;
135646
136711
  export = AlgorithmicColorRamp;
@@ -135661,6 +136726,16 @@ declare module "esri/rest/support/AttachmentQuery" {
135661
136726
  export = AttachmentQuery;
135662
136727
  }
135663
136728
 
136729
+ declare module "esri/rest/support/BaseImageMeasureParameters" {
136730
+ import BaseImageMeasureParameters = __esri.BaseImageMeasureParameters;
136731
+ export = BaseImageMeasureParameters;
136732
+ }
136733
+
136734
+ declare module "esri/rest/support/BaseImageMeasureResult" {
136735
+ import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
136736
+ export = BaseImageMeasureResult;
136737
+ }
136738
+
135664
136739
  declare module "esri/rest/support/BufferParameters" {
135665
136740
  import BufferParameters = __esri.BufferParameters;
135666
136741
  export = BufferParameters;
@@ -138106,16 +139181,6 @@ declare module "esri/renderers/mixins/VisualVariablesMixin" {
138106
139181
  export = VisualVariablesMixin;
138107
139182
  }
138108
139183
 
138109
- declare module "esri/rest/support/BaseImageMeasureParameters" {
138110
- import BaseImageMeasureParameters = __esri.BaseImageMeasureParameters;
138111
- export = BaseImageMeasureParameters;
138112
- }
138113
-
138114
- declare module "esri/rest/support/BaseImageMeasureResult" {
138115
- import BaseImageMeasureResult = __esri.BaseImageMeasureResult;
138116
- export = BaseImageMeasureResult;
138117
- }
138118
-
138119
139184
  declare module "esri/rest/support/QueryMixin" {
138120
139185
  type QueryMixin = __esri.QueryMixin;
138121
139186
  export = QueryMixin;
@@ -138202,7 +139267,7 @@ declare module "esri/core/promiseUtils" {
138202
139267
  }
138203
139268
 
138204
139269
  declare module "esri/core/quantity" {
138205
- type quantity = __esri.quantity;
139270
+ import quantity = __esri.quantity;
138206
139271
  export = quantity;
138207
139272
  }
138208
139273
 
@@ -138241,17 +139306,12 @@ declare module "esri/core/workers" {
138241
139306
  export = workers;
138242
139307
  }
138243
139308
 
138244
- declare module "esri/form/elements/inputs/attachments/support/inputs" {
139309
+ declare module "esri/form/elements/inputs" {
138245
139310
  import inputs = __esri.inputs;
138246
139311
  export = inputs;
138247
139312
  }
138248
139313
 
138249
- declare module "esri/form/elements/support/inputs" {
138250
- import supportInputs = __esri.supportInputs;
138251
- export = supportInputs;
138252
- }
138253
-
138254
- declare module "esri/form/support/elements" {
139314
+ declare module "esri/form/elements" {
138255
139315
  import elements = __esri.elements;
138256
139316
  export = elements;
138257
139317
  }
@@ -139051,9 +140111,9 @@ declare module "esri/symbols/support/symbolUtils" {
139051
140111
  export = symbolUtils;
139052
140112
  }
139053
140113
 
139054
- declare module "esri/tables/support/elements" {
139055
- import supportElements = __esri.supportElements;
139056
- export = supportElements;
140114
+ declare module "esri/tables/elements" {
140115
+ import tablesElements = __esri.tablesElements;
140116
+ export = tablesElements;
139057
140117
  }
139058
140118
 
139059
140119
  declare module "esri/versionManagement/utils" {
@@ -139121,6 +140181,11 @@ declare module "esri/widgets/support/widget" {
139121
140181
  export = widget;
139122
140182
  }
139123
140183
 
140184
+ declare module "esri/applications/Components/arcadeUtils" {
140185
+ import ComponentsArcadeUtils = __esri.ComponentsArcadeUtils;
140186
+ export = ComponentsArcadeUtils;
140187
+ }
140188
+
139124
140189
  declare module "esri/applications/Components/basemapUtils" {
139125
140190
  import basemapUtils = __esri.basemapUtils;
139126
140191
  export = basemapUtils;
@@ -139171,11 +140236,6 @@ declare module "esri/applications/Components/reactiveUtils" {
139171
140236
  export = ComponentsReactiveUtils;
139172
140237
  }
139173
140238
 
139174
- declare module "esri/applications/Components/sceneViewUtils" {
139175
- import sceneViewUtils = __esri.sceneViewUtils;
139176
- export = sceneViewUtils;
139177
- }
139178
-
139179
140239
  declare module "esri/applications/Components/SelectionOperation" {
139180
140240
  import SelectionOperation = __esri.SelectionOperation;
139181
140241
  export = SelectionOperation;