@arcgis/core-adapter 4.32.0-next.37 → 4.32.0-next.39

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.
@@ -7,10 +7,10 @@ CLI Cleaning output folder
7
7
  ESM Build start
8
8
  CJS Build start
9
9
  CJS dist/index.cjs 621.02 KB
10
- CJS ⚡️ Build success in 1590ms
10
+ CJS ⚡️ Build success in 553ms
11
11
  ESM dist/index.js 480.54 KB
12
- ESM ⚡️ Build success in 1592ms
12
+ ESM ⚡️ Build success in 640ms
13
13
  DTS Build start
14
- DTS ⚡️ Build success in 15744ms
14
+ DTS ⚡️ Build success in 13063ms
15
15
  DTS dist/index.d.ts 251.88 KB
16
16
  DTS dist/index.d.cts 251.88 KB
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcgis/core-adapter",
3
- "version": "4.32.0-next.37",
3
+ "version": "4.32.0-next.39",
4
4
  "description": "ArcGIS Core Adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -4237,6 +4237,22 @@ declare namespace __esri {
4237
4237
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-urlUtils.html#getProxyRule Read more...}
4238
4238
  */
4239
4239
  getProxyRule(url: string): any;
4240
+ /**
4241
+ * Tests whether a url uses the data protocol.
4242
+ *
4243
+ * @param url The url to test.
4244
+ *
4245
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-urlUtils.html#isDataProtocol Read more...}
4246
+ */
4247
+ isDataProtocol(url: string): boolean;
4248
+ /**
4249
+ * Tests whether a url uses the https protocol.
4250
+ *
4251
+ * @param url The url to test.
4252
+ *
4253
+ * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-core-urlUtils.html#isHTTPSProtocol Read more...}
4254
+ */
4255
+ isHTTPSProtocol(url: string): boolean;
4240
4256
  /**
4241
4257
  * Converts the URL arguments to an object representation.
4242
4258
  *
@@ -13214,7 +13230,7 @@ declare namespace __esri {
13214
13230
  */
13215
13231
  popupWindowFeatures: string;
13216
13232
  /**
13217
- * The ArcGIS Enterprise portal URL.
13233
+ * The URL to either an ArcGIS Online or an ArcGIS Enterprise portal.
13218
13234
  *
13219
13235
  * @default "https://www.arcgis.com"
13220
13236
  *
@@ -13325,7 +13341,7 @@ declare namespace __esri {
13325
13341
  */
13326
13342
  popupWindowFeatures?: string;
13327
13343
  /**
13328
- * The ArcGIS Enterprise portal URL.
13344
+ * The URL to either an ArcGIS Online or an ArcGIS Enterprise portal.
13329
13345
  *
13330
13346
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-identity-OAuthInfo.html#portalUrl Read more...}
13331
13347
  */
@@ -16190,7 +16206,7 @@ declare namespace __esri {
16190
16206
  * @param edits.updateAttachments An array of attachments to be updated. Applies only when the `options.globalIdUsed` parameter is set to `true`. User must provide {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#AttachmentEdit globalId}s for all attachments to be updated.
16191
16207
  * @param edits.deleteAttachments An array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#AttachmentEdit globalId}s for attachments to be deleted. Applies only when the `options.globalIdUsed` parameter is set to `true`.
16192
16208
  * @param options Additional edit options to specify when editing features or attachments.
16193
- * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published maps version.
16209
+ * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published map's version.
16194
16210
  * @param options.returnEditMoment Indicates whether the edit results should return the time edits were applied. If `true`, the feature service will return the time edits were applied in the edit result's `editMoment` property. Only applicable with ArcGIS Server services only. This option was added at the version 4.20.
16195
16211
  * @param options.returnServiceEditsOption If set to `original-and-current-features`, the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#EditedFeatureResult EditedFeatureResult} parameter will be included in the `applyEdits` response. It contains all edited features participating in composite relationships in a database as result of editing a feature. Note that even for deletions, the geometry and attributes of the deleted feature are returned. The `original-and-current-features` option is only valid when `rollbackOnFailureEnabled` is `true`. The default value is `none`, which will not include the `EditedFeatureResult` parameter in the response. This is only applicable with ArcGIS Server services only. This option was added at the version 4.20.
16196
16212
  * @param options.rollbackOnFailureEnabled Indicates whether the edits should be applied only if all submitted edits succeed. If `false`, the server will apply the edits that succeed even if some of the submitted edits fail. If `true`, the server will apply the edits only if all edits succeed. The layer's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-CatalogLayer.html#capabilities capabilities.editing.supportsRollbackOnFailure} property must be `true` if using this parameter. If `supportsRollbackOnFailure` is `false` for a layer, then `rollbackOnFailureEnabled` will always be true, regardless of how the parameter is set.
@@ -18243,7 +18259,7 @@ declare namespace __esri {
18243
18259
  * @param edits.updateAttachments An array of attachments to be updated. Applies only when the `options.globalIdUsed` parameter is set to `true`. User must provide {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#AttachmentEdit globalId}s for all attachments to be updated.
18244
18260
  * @param edits.deleteAttachments An array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#AttachmentEdit globalId}s for attachments to be deleted. Applies only when the `options.globalIdUsed` parameter is set to `true`.
18245
18261
  * @param options Additional edit options to specify when editing features or attachments.
18246
- * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published maps version.
18262
+ * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published map's version.
18247
18263
  * @param options.returnEditMoment Indicates whether the edit results should return the time edits were applied. If `true`, the feature service will return the time edits were applied in the edit result's `editMoment` property. Only applicable with ArcGIS Server services only. This option was added at the version 4.20.
18248
18264
  * @param options.returnServiceEditsOption If set to `original-and-current-features`, the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#EditedFeatureResult EditedFeatureResult} parameter will be included in the `applyEdits` response. It contains all edited features participating in composite relationships in a database as result of editing a feature. Note that even for deletions, the geometry and attributes of the deleted feature are returned. The `original-and-current-features` option is only valid when `rollbackOnFailureEnabled` is `true`. The default value is `none`, which will not include the `EditedFeatureResult` parameter in the response. This is only applicable with ArcGIS Server services only. This option was added at the version 4.20.
18249
18265
  * @param options.rollbackOnFailureEnabled Indicates whether the edits should be applied only if all submitted edits succeed. If `false`, the server will apply the edits that succeed even if some of the submitted edits fail. If `true`, the server will apply the edits only if all edits succeed. The layer's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#capabilities capabilities.editing.supportsRollbackOnFailure} property must be `true` if using this parameter. If `supportsRollbackOnFailure` is `false` for a layer, then `rollbackOnFailureEnabled` will always be true, regardless of how the parameter is set.
@@ -25822,7 +25838,7 @@ declare namespace __esri {
25822
25838
  * @param edits.updateAttachments An array of attachments to be updated. Applies only when the `options.globalIdUsed` parameter is set to `true`. User must provide {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-FeatureLayerBase.html#AttachmentEdit globalId}s for all attachments to be updated.
25823
25839
  * @param edits.deleteAttachments An array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-FeatureLayerBase.html#AttachmentEdit globalId}s for attachments to be deleted. Applies only when the `options.globalIdUsed` parameter is set to `true`.
25824
25840
  * @param options Additional edit options to specify when editing features or attachments.
25825
- * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-FeatureLayerBase.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published maps version.
25841
+ * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-FeatureLayerBase.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published map's version.
25826
25842
  * @param options.returnEditMoment Indicates whether the edit results should return the time edits were applied. If `true`, the feature service will return the time edits were applied in the edit result's `editMoment` property. Only applicable with ArcGIS Server services only. This option was added at the version 4.20.
25827
25843
  * @param options.returnServiceEditsOption If set to `original-and-current-features`, the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#EditedFeatureResult EditedFeatureResult} parameter will be included in the `applyEdits` response. It contains all edited features participating in composite relationships in a database as result of editing a feature. Note that even for deletions, the geometry and attributes of the deleted feature are returned. The `original-and-current-features` option is only valid when `rollbackOnFailureEnabled` is `true`. The default value is `none`, which will not include the `EditedFeatureResult` parameter in the response. This is only applicable with ArcGIS Server services only. This option was added at the version 4.20.
25828
25844
  * @param options.rollbackOnFailureEnabled Indicates whether the edits should be applied only if all submitted edits succeed. If `false`, the server will apply the edits that succeed even if some of the submitted edits fail. If `true`, the server will apply the edits only if all edits succeed. The layer's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-FeatureLayerBase.html#capabilities capabilities.editing.supportsRollbackOnFailure} property must be `true` if using this parameter. If `supportsRollbackOnFailure` is `false` for a layer, then `rollbackOnFailureEnabled` will always be true, regardless of how the parameter is set.
@@ -30646,7 +30662,7 @@ declare namespace __esri {
30646
30662
  * @param edits.updateAttachments An array of attachments to be updated. Applies only when the `options.globalIdUsed` parameter is set to `true`. User must provide {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#AttachmentEdit globalId}s for all attachments to be updated.
30647
30663
  * @param edits.deleteAttachments An array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#AttachmentEdit globalId}s for attachments to be deleted. Applies only when the `options.globalIdUsed` parameter is set to `true`.
30648
30664
  * @param options Additional edit options to specify when editing features or attachments.
30649
- * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published maps version.
30665
+ * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published map's version.
30650
30666
  * @param options.returnEditMoment Indicates whether the edit results should return the time edits were applied. If `true`, the feature service will return the time edits were applied in the edit result's `editMoment` property. Only applicable with ArcGIS Server services only. This option was added at the version 4.20.
30651
30667
  * @param options.returnServiceEditsOption If set to `original-and-current-features`, the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#EditedFeatureResult EditedFeatureResult} parameter will be included in the `applyEdits` response. It contains all edited features participating in composite relationships in a database as result of editing a feature. Note that even for deletions, the geometry and attributes of the deleted feature are returned. The `original-and-current-features` option is only valid when `rollbackOnFailureEnabled` is `true`. The default value is `none`, which will not include the `EditedFeatureResult` parameter in the response. This is only applicable with ArcGIS Server services only. This option was added at the version 4.20.
30652
30668
  * @param options.rollbackOnFailureEnabled Indicates whether the edits should be applied only if all submitted edits succeed. If `false`, the server will apply the edits that succeed even if some of the submitted edits fail. If `true`, the server will apply the edits only if all edits succeed. The layer's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-SubtypeGroupLayer.html#capabilities capabilities.editing.supportsRollbackOnFailure} property must be `true` if using this parameter. If `supportsRollbackOnFailure` is `false` for a layer, then `rollbackOnFailureEnabled` will always be true, regardless of how the parameter is set.
@@ -39769,7 +39785,7 @@ declare namespace __esri {
39769
39785
  * @param edits.updateAttachments An array of attachments to be updated. Applies only when the `options.globalIdUsed` parameter is set to `true`. User must provide {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#AttachmentEdit globalId}s for all attachments to be updated.
39770
39786
  * @param edits.deleteAttachments An array of {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#AttachmentEdit globalId}s for attachments to be deleted. Applies only when the `options.globalIdUsed` parameter is set to `true`.
39771
39787
  * @param options Additional edit options to specify when editing features or attachments.
39772
- * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published maps version.
39788
+ * @param options.gdbVersion The geodatabase version to apply the edits. This parameter applies only if the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#capabilities capabilities.data.isVersioned} property of the layer is `true`. If the gdbVersion parameter is not specified, edits are made to the published map's version.
39773
39789
  * @param options.returnEditMoment Indicates whether the edit results should return the time edits were applied. If `true`, the feature service will return the time edits were applied in the edit result's `editMoment` property. Only applicable with ArcGIS Server services only. This option was added at the version 4.20.
39774
39790
  * @param options.returnServiceEditsOption If set to `original-and-current-features`, the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#EditedFeatureResult EditedFeatureResult} parameter will be included in the `applyEdits` response. It contains all edited features participating in composite relationships in a database as result of editing a feature. Note that even for deletions, the geometry and attributes of the deleted feature are returned. The `original-and-current-features` option is only valid when `rollbackOnFailureEnabled` is `true`. The default value is `none`, which will not include the `EditedFeatureResult` parameter in the response. This is only applicable with ArcGIS Server services only. This option was added at the version 4.20.
39775
39791
  * @param options.rollbackOnFailureEnabled Indicates whether the edits should be applied only if all submitted edits succeed. If `false`, the server will apply the edits that succeed even if some of the submitted edits fail. If `true`, the server will apply the edits only if all edits succeed. The layer's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-SubtypeSublayer.html#capabilities capabilities.editing.supportsRollbackOnFailure} property must be `true` if using this parameter. If `supportsRollbackOnFailure` is `false` for a layer, then `rollbackOnFailureEnabled` will always be true, regardless of how the parameter is set.
@@ -120365,7 +120381,7 @@ declare namespace __esri {
120365
120381
  countryCode: string;
120366
120382
  /**
120367
120383
  * Sets the scale of the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#scale MapView} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#scale SceneView}
120368
- * for the resulting search result, if the locator service doesnt return an extent with a scale.
120384
+ * for the resulting search result, if the locator service doesn't return an extent with a scale.
120369
120385
  *
120370
120386
  * @default null
120371
120387
  *
@@ -120462,7 +120478,7 @@ declare namespace __esri {
120462
120478
  countryCode?: string;
120463
120479
  /**
120464
120480
  * Sets the scale of the {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#scale MapView} or {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html#scale SceneView}
120465
- * for the resulting search result, if the locator service doesnt return an extent with a scale.
120481
+ * for the resulting search result, if the locator service doesn't return an extent with a scale.
120466
120482
  *
120467
120483
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-LocatorSearchSource.html#defaultZoomScale Read more...}
120468
120484
  */
@@ -128498,10 +128514,10 @@ declare namespace __esri {
128498
128514
  */
128499
128515
  addResultAreaToMap(trace: TraceResultExtend): void;
128500
128516
  /**
128501
- * Create a graphic on the views {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics} for the aggregated results of all the features returned by the trace.
128517
+ * Create a graphic on the view's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics} for the aggregated results of all the features returned by the trace.
128502
128518
  *
128503
128519
  * @param trace The aggregate of the trace configuration settings and the results for that trace.
128504
- * @param color The color for the graphic of the trace results in the views {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics}.
128520
+ * @param color The color for the graphic of the trace results in the view's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics}.
128505
128521
  *
128506
128522
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#addResultGraphicToView Read more...}
128507
128523
  */
@@ -128524,7 +128540,7 @@ declare namespace __esri {
128524
128540
  /**
128525
128541
  * Change the graphic color for the aggregated results of a trace.
128526
128542
  *
128527
- * @param color The color for the graphic of the trace results in the views {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics}.
128543
+ * @param color The color for the graphic of the trace results in the view's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics}.
128528
128544
  * @param trace The aggregate of the trace configuration settings and the results for that trace.
128529
128545
  *
128530
128546
  * {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#changeResultGraphicColor Read more...}
@@ -128638,7 +128654,7 @@ declare namespace __esri {
128638
128654
  */
128639
128655
  removeResultAreaFromMap(trace: TraceResultExtend): void;
128640
128656
  /**
128641
- * Removes a specific trace result graphic from the views {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics}.
128657
+ * Removes a specific trace result graphic from the view's {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#graphics graphics}.
128642
128658
  *
128643
128659
  * @param trace The trace for which the graphic will be removed.
128644
128660
  *