How can I see what fields are in the users collection that are available for me to publish from the server and subscribe to from the client? I'm using Meteor.JS's Google Auth functions, but I'm using them to authorize YouTube so the fields aren't standard or documented.
Login code:
Meteor.loginWithGoogle({
requestPermissions: ['profile', 'email', 'https://www.googleapis.com/auth/yt-analytics.readonly', 'https://www.googleapis.com/auth/youtube']
});