drafted 1.17.1 → 1.17.2
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/mcp/server.mjs +9 -2
- package/package.json +1 -1
package/mcp/server.mjs
CHANGED
|
@@ -1940,12 +1940,19 @@ if (!isRemote) tool('auth', 'Sign in to Drafted. On a local install the DESKTOP
|
|
|
1940
1940
|
// Local install → open the desktop app's sign-in window (no link). Falls through to the
|
|
1941
1941
|
// device-code flow below only when no desktop app is installed on this platform.
|
|
1942
1942
|
{
|
|
1943
|
-
const
|
|
1944
|
-
|
|
1943
|
+
const activeSession = getState().sessionId;
|
|
1944
|
+
const bootstrapSession = getBootstrapSessionId();
|
|
1945
|
+
for (const existing of [...new Set([activeSession, bootstrapSession].filter(Boolean))]) {
|
|
1945
1946
|
try {
|
|
1946
1947
|
const meRes = await serverFetch(`${getServerUrl()}/auth/me`, { headers: { Cookie: `gc_session=${existing}` } });
|
|
1947
1948
|
if (meRes.ok) {
|
|
1948
1949
|
const me = await meRes.json();
|
|
1950
|
+
// A stale cloned agent session must never hide a valid desktop login.
|
|
1951
|
+
if (existing === bootstrapSession && existing !== activeSession) {
|
|
1952
|
+
getState().sessionId = null;
|
|
1953
|
+
await cloneSession();
|
|
1954
|
+
connectAgentWs();
|
|
1955
|
+
}
|
|
1949
1956
|
return ok({ status: 'already_authenticated', userId: me.userId, email: me.userEmail, org: me.currentOrg?.name });
|
|
1950
1957
|
}
|
|
1951
1958
|
} catch { /* stale session — continue to sign-in */ }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drafted",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.2",
|
|
4
4
|
"description": "Drafted — visual thinking surface for humans and AI agents. Renders HTML, markdown, images, and code as frames on a zoomable canvas, with MCP tools for AI agents and real-time sync for humans.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|