Types
import type { DifferencesType, FeaturesType } from "@arcgis/core/rest/versionManagement/gdbVersion/support/DifferencesResult.js";

Type definitions

DifferencesType

Type definition

Represents the object IDs that were inserted, updated, or deleted to/from a layer.

layerId

Property
Type
number

The ID of the layer with differences.

inserts

Property
Type
number[]

The IDs of objects inserted into this layer.

updates

Property
Type
number[]

The IDs of objects updated in this layer.

deletes

Property
Type
number[]

The IDs of objects deleted from this layer.

FeaturesType

Type definition

Represents the Graphic objects (features) that were inserted, updated, or deleted to/from a layer.

layerId

Property
Type
number

The ID of the layer with differences.

inserts

Property
Type
Graphic[]

The Graphic objects (features) inserted into this layer.

updates

Property
Type
Graphic[]

The Graphic objects (features) updated in this layer.

deletes

Property
Type
Graphic[]

The Graphic objects (features) deleted from this layer.