Hi, we have a use case that need to get the refresh token and emit this refresh token to our mobile application via a mobile web view.
Next time we will this refresh token to exchange for the access token so that users do not have to login again via universal login in the webview.
But it seems await getAccessTokenSilently({detailedResponse: true}) is omitting the refresh_token value by this
export declare type GetTokenSilentlyVerboseResponse = Omit<TokenEndpointResponse, 'refresh_token'>;
What should we do in order to get a refresh token value?