@arcgis/core-adapter 4.32.0-next.37 → 4.32.0-next.38
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.
- package/.turbo/turbo-build.log +4 -4
- package/package.json +1 -1
- package/support/arcgis.d.ts +11 -11
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,11 +6,11 @@ CLI Target: es2020
|
|
|
6
6
|
CLI Cleaning output folder
|
|
7
7
|
ESM Build start
|
|
8
8
|
CJS Build start
|
|
9
|
-
CJS dist/index.cjs 621.02 KB
|
|
10
|
-
CJS ⚡️ Build success in 1590ms
|
|
11
9
|
ESM dist/index.js 480.54 KB
|
|
12
|
-
ESM ⚡️ Build success in
|
|
10
|
+
ESM ⚡️ Build success in 1132ms
|
|
11
|
+
CJS dist/index.cjs 621.02 KB
|
|
12
|
+
CJS ⚡️ Build success in 1155ms
|
|
13
13
|
DTS Build start
|
|
14
|
-
DTS ⚡️ Build success in
|
|
14
|
+
DTS ⚡️ Build success in 12243ms
|
|
15
15
|
DTS dist/index.d.ts 251.88 KB
|
|
16
16
|
DTS dist/index.d.cts 251.88 KB
|
package/package.json
CHANGED
package/support/arcgis.d.ts
CHANGED
|
@@ -16190,7 +16190,7 @@ declare namespace __esri {
|
|
|
16190
16190
|
* @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
16191
|
* @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
16192
|
* @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 map
|
|
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 map's version.
|
|
16194
16194
|
* @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
16195
|
* @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
16196
|
* @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 +18243,7 @@ declare namespace __esri {
|
|
|
18243
18243
|
* @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
18244
|
* @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
18245
|
* @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 map
|
|
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 map's version.
|
|
18247
18247
|
* @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
18248
|
* @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
18249
|
* @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 +25822,7 @@ declare namespace __esri {
|
|
|
25822
25822
|
* @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
25823
|
* @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
25824
|
* @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 map
|
|
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 map's version.
|
|
25826
25826
|
* @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
25827
|
* @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
25828
|
* @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 +30646,7 @@ declare namespace __esri {
|
|
|
30646
30646
|
* @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
30647
|
* @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
30648
|
* @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 map
|
|
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 map's version.
|
|
30650
30650
|
* @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
30651
|
* @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
30652
|
* @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 +39769,7 @@ declare namespace __esri {
|
|
|
39769
39769
|
* @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
39770
|
* @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
39771
|
* @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 map
|
|
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 map's version.
|
|
39773
39773
|
* @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
39774
|
* @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
39775
|
* @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 +120365,7 @@ declare namespace __esri {
|
|
|
120365
120365
|
countryCode: string;
|
|
120366
120366
|
/**
|
|
120367
120367
|
* 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 doesn
|
|
120368
|
+
* for the resulting search result, if the locator service doesn't return an extent with a scale.
|
|
120369
120369
|
*
|
|
120370
120370
|
* @default null
|
|
120371
120371
|
*
|
|
@@ -120462,7 +120462,7 @@ declare namespace __esri {
|
|
|
120462
120462
|
countryCode?: string;
|
|
120463
120463
|
/**
|
|
120464
120464
|
* 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 doesn
|
|
120465
|
+
* for the resulting search result, if the locator service doesn't return an extent with a scale.
|
|
120466
120466
|
*
|
|
120467
120467
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Search-LocatorSearchSource.html#defaultZoomScale Read more...}
|
|
120468
120468
|
*/
|
|
@@ -128498,10 +128498,10 @@ declare namespace __esri {
|
|
|
128498
128498
|
*/
|
|
128499
128499
|
addResultAreaToMap(trace: TraceResultExtend): void;
|
|
128500
128500
|
/**
|
|
128501
|
-
* Create a graphic on the view
|
|
128501
|
+
* 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
128502
|
*
|
|
128503
128503
|
* @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 view
|
|
128504
|
+
* @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
128505
|
*
|
|
128506
128506
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#addResultGraphicToView Read more...}
|
|
128507
128507
|
*/
|
|
@@ -128524,7 +128524,7 @@ declare namespace __esri {
|
|
|
128524
128524
|
/**
|
|
128525
128525
|
* Change the graphic color for the aggregated results of a trace.
|
|
128526
128526
|
*
|
|
128527
|
-
* @param color The color for the graphic of the trace results in the view
|
|
128527
|
+
* @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
128528
|
* @param trace The aggregate of the trace configuration settings and the results for that trace.
|
|
128529
128529
|
*
|
|
128530
128530
|
* {@link https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-UtilityNetworkTrace-UtilityNetworkTraceViewModel.html#changeResultGraphicColor Read more...}
|
|
@@ -128638,7 +128638,7 @@ declare namespace __esri {
|
|
|
128638
128638
|
*/
|
|
128639
128639
|
removeResultAreaFromMap(trace: TraceResultExtend): void;
|
|
128640
128640
|
/**
|
|
128641
|
-
* Removes a specific trace result graphic from the view
|
|
128641
|
+
* 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
128642
|
*
|
|
128643
128643
|
* @param trace The trace for which the graphic will be removed.
|
|
128644
128644
|
*
|