interface GeospatialUpdateFeatureType {
    externalId: string;
    update: {
        properties: {
            add: Properties;
        } | {
            remove: string[];
        };
    } | {
        searchSpec: {
            add: {
                [indexName: string]: {
                    properties: string[];
                };
            };
        } | {
            remove: string[];
        };
    };
}

Hierarchy (view full)

Properties

Properties

externalId: string
update: {
    properties: {
        add: Properties;
    } | {
        remove: string[];
    };
} | {
    searchSpec: {
        add: {
            [indexName: string]: {
                properties: string[];
            };
        };
    } | {
        remove: string[];
    };
}