Use this method to register specific user information for later analysis.
client.setUserInfo(data: Object);
data
data
is the data object you want to relate to the session user.
You can also store information about the user inside the current session token:
client.setUserInfo({
name: 'Jane Doe'
});