@hasna/connectors 1.1.10 → 1.1.11
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/bin/index.js +1 -0
- package/bin/mcp.js +2 -1
- package/bin/serve.js +1 -0
- package/dist/db/agents.d.ts +1 -0
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -4574,6 +4574,7 @@ function registerAgent(input, db) {
|
|
|
4574
4574
|
existing_name: existing.name,
|
|
4575
4575
|
last_seen_at: existing.last_seen_at,
|
|
4576
4576
|
session_hint: existing.session_id ? existing.session_id.slice(0, 8) : null,
|
|
4577
|
+
working_dir: null,
|
|
4577
4578
|
message: `Agent "${normalizedName}" is already active (last seen ${minutesAgo}m ago). Pass session_id="${existing.session_id}" to reclaim it, or choose a different name.`
|
|
4578
4579
|
};
|
|
4579
4580
|
}
|
package/bin/mcp.js
CHANGED
|
@@ -20330,6 +20330,7 @@ function registerAgent(input, db) {
|
|
|
20330
20330
|
existing_name: existing.name,
|
|
20331
20331
|
last_seen_at: existing.last_seen_at,
|
|
20332
20332
|
session_hint: existing.session_id ? existing.session_id.slice(0, 8) : null,
|
|
20333
|
+
working_dir: null,
|
|
20333
20334
|
message: `Agent "${normalizedName}" is already active (last seen ${minutesAgo}m ago). Pass session_id="${existing.session_id}" to reclaim it, or choose a different name.`
|
|
20334
20335
|
};
|
|
20335
20336
|
}
|
|
@@ -20364,7 +20365,7 @@ function listAgents(db) {
|
|
|
20364
20365
|
// package.json
|
|
20365
20366
|
var package_default = {
|
|
20366
20367
|
name: "@hasna/connectors",
|
|
20367
|
-
version: "1.1.
|
|
20368
|
+
version: "1.1.11",
|
|
20368
20369
|
description: "Open source connector library - Install API connectors with a single command",
|
|
20369
20370
|
type: "module",
|
|
20370
20371
|
bin: {
|
package/bin/serve.js
CHANGED
|
@@ -80,6 +80,7 @@ function registerAgent(input, db) {
|
|
|
80
80
|
existing_name: existing.name,
|
|
81
81
|
last_seen_at: existing.last_seen_at,
|
|
82
82
|
session_hint: existing.session_id ? existing.session_id.slice(0, 8) : null,
|
|
83
|
+
working_dir: null,
|
|
83
84
|
message: `Agent "${normalizedName}" is already active (last seen ${minutesAgo}m ago). Pass session_id="${existing.session_id}" to reclaim it, or choose a different name.`
|
|
84
85
|
};
|
|
85
86
|
}
|
package/dist/db/agents.d.ts
CHANGED