Signs out a specific user by revoking their session(s), using that user's access token (JWT).
supabase.auth.signOut(), this method takes the target user's access token (JWT), not a user ID.signOut() uses the .global scope, which revokes every session for the user. Pass .local to revoke only the session tied to the given JWT, or .others to keep that session and revoke all the rest.try await supabase.auth.admin.signOut(jwt: jwt)
try await supabase.auth.admin.signOut(jwt: jwt, scope: .others)