v2.0.0
2.0.0 (2026-04-08)
- feat(token)!: return full OAuth2 token response instead of user params (8c5b86a)
BREAKING CHANGES
Kinde.token/4now returns{:ok, token_response, extra_params}
instead of{:ok, user_params, extra_params}. Thetoken_responsemap contains
the complete OAuth2 response including raw JWTs, decoded claims for both access
and id tokens, refresh token, expiry, scope, and token type.
Callers must update their pattern match and access user data via
token_response.id_token_claims instead of the previous user_params map.