opencode-copilot-account-switcher 0.14.28 → 0.14.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -287,6 +287,12 @@ export function createCodexMenuAdapter(inputDeps) {
287
287
  }
288
288
  if (typeof pending.callback !== "function")
289
289
  return undefined;
290
+ if (pending.url) {
291
+ console.log(`Go to: ${pending.url}`);
292
+ }
293
+ if (pending.instructions) {
294
+ console.log(pending.instructions);
295
+ }
290
296
  const result = await pending.callback();
291
297
  if (result.type !== "success" || (!result.refresh && !result.access))
292
298
  return undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-copilot-account-switcher",
3
- "version": "0.14.28",
3
+ "version": "0.14.29",
4
4
  "description": "GitHub Copilot account switcher plugin for OpenCode",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",