@tryarcanist/cli 0.1.129 → 0.1.130
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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3693,7 +3693,7 @@ async function getSessionCommand(sessionId, options, command) {
|
|
|
3693
3693
|
}
|
|
3694
3694
|
const session = payload.session && typeof payload.session === "object" ? payload.session : payload;
|
|
3695
3695
|
console.log(`Session: ${String(session.sessionId ?? session.id ?? sessionId)}`);
|
|
3696
|
-
console.log(`Status: ${String(session.status ?? "unknown")}`);
|
|
3696
|
+
console.log(`Status: ${String(session.phase ?? session.status ?? "unknown")}`);
|
|
3697
3697
|
if (session.repoUrl) console.log(`Repo: ${String(session.repoUrl)}`);
|
|
3698
3698
|
if (session.title) console.log(`Title: ${String(session.title)}`);
|
|
3699
3699
|
}
|