is there a way to accomplish something like this ? ```ts socialProviders: { github: { clientId: envVariables.GITHUB_CLIENT_ID, clientSecret: envVariables.GITHUB_CLIENT_SECRET, mapProfileToUser(profile) { return { // githubAccessToken: profile., lastName: profile.name.split(" ")[1], }; }, }, }, ```