How do I transform a Union?

I have a Union

union TaskScope {
    Area,
    ContractConfig
}

I would like to remove Area from it. How do I do this, I see no examples in the documentation of how to do this and transformUnion does not exist?

Also how do I get rid of a Union altogether?