Retrieve password reset token/link

My users do not necessarily register with an email, they use a normal username whether it’s an email or not.
Let’s say a user forgot his password there’s no way to use parse’s reset password feature.

I have a custom communication channel with my users other than mail, If I can have the link/token parse generates I can send it to the user via this communication channel.

Now is that already possible ?
If not, will it ever be ? (token/link may be only returned if the request was issued by the master key)

I don’t see the point of developing my own implementation of password reset while parse’s is totally fine and works seamlessly with the platform.

The easiest way that come up in my mind is by creating a custom email adapter (https://github.com/parse-community/parse-server#email-verification-and-password-reset) that uses your communication channel instead of actually an email.