Auth0.js Web sdk V7 returning response_type parameter is mandatory for .validateUser

@tyler1 Thanks for the response, good to know we are not alone. Since we are using the js sdk rather than making API calls directly we dont have any control over what ultimately gets posted. It appears that the SDK is not sending response_type:code with the request, even though the documentation (GitHub - auth0/auth0.js at v7) says it should be:

    var auth0 = new Auth0({
      domain:       'mine.auth0.com',
      clientID:     'dsa7d77dsa7d7',
      callbackURL:  'http://my-app.com/callback',
      responseType: 'code' // also 'id_token' and 'code' (default)
    });