v6.10.0
Published to npm as oc-codex-multi-auth@6.10.0.
npm install -g oc-codex-multi-auth@6.10.0
Added
Opt out of the account-selection toast (#203)
When the plugin selects or rotates to an account it shows a floating Using <account> (N/N) toast. OpenCode draws that toast over the output rather than reserving layout space, so during a large diff it could cover several lines until it faded — and there was no supported way to turn it off. CODEX_AUTH_TOAST_DURATION_MS has a 1000 ms floor, the debounce only suppresses repeats, and the toast comes from the main auth plugin (not the optional TUI quota plugin), so removing that plugin didn't help either.
A new accountToasts setting (default true) gates only that informational toast:
accountToasts: false # config (openai-codex-auth-config.json)
CODEX_AUTH_ACCOUNT_TOASTS=0 # env override
Everything else is untouched: warning and error toasts — rate-limit switches, expired-auth recovery, unsupported-model and retry notices — stay visible. Resolution follows the standard env-over-config precedence ("1" enables, "0" disables), and because the setting lives in openai-codex-auth-config.json — which the installer never rewrites — the opt-out persists across upgrades.
Reported by @aic0d3r.