`email_confirmed_at` equivalent when using `getClaims()`

I am switching all our
getUser()
use cases over to the newly released
getClaims()
.

Currently, I am using the email_confirmed_at field from the
getUser()
response to determine whether a user has verified their email or not to allow/block certain functionality in our app.

This value does not exist in the JwtPayload that
getClaims()
returns.

Is there an equivalent value that I can use or a different way to determine verified emails?

This is kinda a blocker for us to switch over to the claims and I would imagine for others too.
Was this page helpful?