Is there anyway (or plans to) create function hooks from the CLI? I am trying to have a development flow that lives entirely in the codebase and doesnt rely on the Supabase gui/studio. I am leaning towards function hooks that fire a supabase function (via http but hopefully soon just by calling the supabase function) so that way I can write plain typescript and import shared packages to write the function logic that will fire from the hook. Right now it doesnt seem possible beyond activating a function hook in prod whose function is basically a no-op and then pulling that DB down locally to develop the function, and then redeploy. If anyone has any tips on a flow like that (or an approach that I didnt consider) id appreciate it!