Optional
appState stored when the redirect request was made
The type of response, for connect account it will be connect_code
const result = await auth0.connectAccountWithRedirect(options);
console.log(result.appState); // Access persisted app state
console.log(result.connection); // The connection of the account you connected to.
console.log(result.response_type === 'connect_code'); // The response type will be 'connect_code'
The result returned after a successful account connection redirect.
Combines the redirect login result (including any persisted app state) with the complete response from the My Account API.