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;
|