Within a javascript PowerUp is it possible to handle certain card events? Specifically I am thinking about when a card gets added or removed from a list (moved between lists essentially). Ideally there is a "capability" or something similar which would allow for my JS function to be called when that "state change" happens.
It seems like this would be possible through the web hooks API, but I was trying to keep this solution clean and small so only the PowerUp client.js would be needed (vs needing a dynamic server ready to accept web hook POST requests, etc).
Thanks!