I need to automatically trigger a script that makes use of `Field.updateOptionsAsync`to add options to my single-select field. I first wrote this as an automation script so I could easily set up a trigger, but saw this API is only allowed in scripting extensions. So then, I wrote it as a script extension and couldn't figure out how to automatically trigger it to run. So then I found out about block-cli and released the extension to my base because I misunderstood that `block run --remote` does not run the extension remotely, leaving me with 2 extensions that do the exact same thing. So:
- Is it possible to run extensions remotely / trigger them to run automatically? How so if it is?
- Can we get the ability to use `updateOptionsAsync` in an automation script?
- Is there yet another way to achieve what I am trying to do?