I just finished setting up revenuecat with firebase as per documentation. I got a firebase function that is supposed to check if a user is premium via claims. I also setup the emulators accordingly, i think. I imported the extension as well and if needed i can give the firebase.json.
No trace of claims show up in either of these results called in the function after the user successfully subscribed:
```ts
const tokenResult = await admin.auth().verifyIdToken(idToken);
if (idToken) {
functions.logger.info("tokenResult: ", tokenResult);
admin.auth().getUser(tokenResult.uid).then((user) => {
functions.logger.info("user: ", user);
});
```
All i get is the usual firebase auth data. It’s also not writing anything to the firestore emulator. Can anybody help me figure out what am i doing wrong?