Reason for changing Apple Login user token value

hello. I am using "@invertase/react-native-apple-authentication" library in react native, but the identityToken value is different. Could you provide some data to compare against previous values?

We recently replaced the Provisioning Profile certificate, but the Team ID remains the same

I am attaching example code.


import {appleAuth} from '@invertase/react-native-apple-authentication'



...



const appleAuthRequestResponse = await appleAuth.performRequest({

          requestedOperation: appleAuth.Operation.LOGIN,

          requestedScopes: [appleAuth.Scope.EMAIL, appleAuth.Scope.FULL_NAME],

        })

        await appleAuth.getCredentialStateForUser(appleAuthRequestResponse.user)

        const {identityToken} = appleAuthRequestResponse as any