0.7.2
The release adds a function to get player's personal info. Use it to check the auth mode:
yagames.player_init({scopes = false, signed = true}, function(self, err)
if not err then
local personal_info = yagames.player_get_personal_info()
if personal_info.mode == "lite" then
-- do something!
end
end
end)