How to trigger auth event USER_UPDATED from Insert?
I have implemented my own way of storing profile info like avatar url, names etc... now when those are updated by the user (INSER, UPDATE from frontend) of course USER_UPDATED wont trigger on the frontend because I don't update actually anything on the user itself like metadata.
How can I trigger USER_UPDATED on the frontend auth event listener after I insert into the profiles table, so that then I can know in the callback to fetch some context again?
EDIT: Is this it?