Hi, I am running a supertokens implementation with social login and react native clientside and nest.js in the backend connected to the local supertokens instance via the SDK. We've got a user-profiles table to compliment the supertokens login for our app (mainly for their profile information) and atm i automatically create one when a user logs in by overriding the ThirdParty.init signInUp function, so i just grab the user_id and email and create a userprofile with that data as well, which works fine, but it hit me that a social login to apple or google (the two we currently support) should be able to supply a lot more info then just an email, for example a profile pic, a name, maybe a phone number as well. I took a look at the return type of the signInUp method and it seems it doesn't really return anything relevant for me except the email. Is there anyway to override this and get more data out of the social login for me to create a more complete userprofile with?
Thanks in advance for the help! 🙂