Type Alias ExplorationIntent

ExplorationIntent:
    | SetFilterIntent
    | ClearFilterIntent
    | SetSpatialFilterIntent
    | SetExtentIntent
    | SelectIntent
    | DeselectIntent
    | SetSortIntent
    | SetPageIntent
    | SetVisibleFieldsIntent
    | SetGroupingIntent
    | SetAggregationIntent
    | ApplyPresetIntent
    | SnapshotRestoreIntent

Tagged union of all dispatchable intents. Reducers exhaustively match intent.kind; downstream tickets that need a new intent must extend this union rather than introducing parallel dispatch surfaces.

viewId is optional and identifies the originating view so the linked-view policy can decide whether to propagate to peers.