I’m guessing the answer is no, but is it possible to add a new option to a Single-Select or Multi-Select field programmatically from a script?
At first I tried to just brute force it - I tried to enter a string value for the Single-Select field via table.updateRecordAsync(). This is a way we can add new options via the main UI, although the UI presents a context menu for doing so.
Next, I tried to see if I could push() a new value into
table.getField("Single-Select Field").options.choices
but the API returns the options as immutable, since it’s a get[***]() function:

Any way to do this, or any plans to support it in the future?
