Type Alias TokenExchangeResponse

TokenExchangeResponse:
    | { success: true; token: TokenResponse }
    | { success: false; error: string }

Discriminated union for token exchange outcome. Matches the helper return shape in src/api/anilist/auth.ts.