When trying to use the NetCoreForce.ModelGenerator, the authentication will now always fail, as the code is using
await auth.UsernamePasswordAsync(config.AuthInfo.ClientId, config.AuthInfo.ClientSecret, config.AuthInfo.Username, config.AuthInfo.Password, config.AuthInfo.TokenRequestEndpoint);
It would be great if it used
await auth.TokenRefreshAsync(config.AuthInfo..RefreshToken, config.AuthInfo..ClientId, config.AuthInfo..Secret, config.AuthInfo..TokenRequestEndpoint);