In our app we are constantly using callable functions and sometimes the cold start can be a headache, given the fact that we are still developing it and there are no users using them other than us.
What we thought to speed up this process is to call every function (they're not much, around 20 at the moment, our bill won't go to the moon) when we open the app, before logging in, and just returning a null value without executing any other code inside it. This will hot-load them to be used in the next few minutes, avoiding cold starts and allowing us to test our front+back-end code quick and easily.
However, we have some trigger functions like adding user details after creation, that do have cold starts, but can't be called, so we can't "hot load them".
Is there any way to actually trigger these functions AND send them data through a parameter? Or this there any other approach to this situation?