mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-14 02:42:24 +03:00
* fix(oauth): keep Claude personal and Team organizations apart One Anthropic identity reaches its personal workspace and every Team organization it belongs to with the same email AND the same accountUUID, each with its own tokens, plan and rate limits. The OAuth dedup matched on email alone for every provider except Codex, so authenticating the second organization overwrote the first connection instead of adding one: only the most recent organization stayed usable. organizationUUID is the field that separates them (cliUserID cannot be used, it changes on every login). Disambiguate on organizationUUID, mirroring how Codex uses workspaceId/chatgptUserId (#7737): - findExistingOAuthConnectionMatch routes claude through a new isSameClaudeAccount helper, so a login only merges into an existing row when the organization agrees; - isMatchingOauthIdentity gains organizationUUID as a third optional disambiguator, compared strictly two-sided; - createProviderConnection passes the incoming organizationUUID, closing the same hole on the create path. Rows stored before Claude returned organizationUUID keep the bare-email match, so re-authenticating an existing connection still updates it in place instead of forking a duplicate. No behaviour change for other providers. * docs(oauth): changelog fragment for #12222