session-collab-mcp 0.5.3 → 0.5.4
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/cli.js +3 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -4167,10 +4167,12 @@ function createToolResult(text, isError = false) {
|
|
|
4167
4167
|
};
|
|
4168
4168
|
}
|
|
4169
4169
|
|
|
4170
|
-
// src/
|
|
4170
|
+
// src/utils/crypto.ts
|
|
4171
4171
|
function generateId() {
|
|
4172
4172
|
return crypto.randomUUID();
|
|
4173
4173
|
}
|
|
4174
|
+
|
|
4175
|
+
// src/db/queries.ts
|
|
4174
4176
|
async function createSession(db, params) {
|
|
4175
4177
|
const id = generateId();
|
|
4176
4178
|
const now = (/* @__PURE__ */ new Date()).toISOString();
|