strategy: 'jwt' ). better-auth. better-auth.session-data cookie, and validate it against the jwks endpoint provided by the jwt plugin. Unfortuneately, thebetter-auth.session-data is signed differently than the token provided at the /api/auth/token endpoint, even when cookieCache.strategy = 'jwt'. I don't understand the why of that decision (one of the benefits listed of the jwt strategy is "interop"), but I assume there are valid reasons.jwks endpoint? Alternatively, is there a way to just inject an additional custom cookie (i.e. better-auth.jwt-token) that has the contents of /api/auth/token? I assume the latter option would mean a custom plugin that intercepts responses using the onResponse hook, and just adds a Set-Cookie header, but I'm having trouble figuring out to call the jwt plugin getToken endpoint from the onResponse handler. Any help would be appreciated.