onSuccess hook in server/routes/auth/keycloak.get.ts using setUserSession. I can access these data on client side with the composable useUserSession(), but when I try to access the user session on server/api/auth/refresh.ts via getUserSession(event) I get an empty session only containing a different id, no tokens, firstName, lastName or other parts of the session. How can I access the session I set in server/routes/auth/keycloak.get.ts at my endpoint server/api/auth/refresh ? @Atinux how can I do that ? I need the refresh_token to update the session regarding keycloak tokens and I don't want to do that on client side for security reasons. I couldn't find a working solution to get my refresh_token on my refresh api endpoint.