mnemosyne-core 2.1.9 → 2.1.10
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/index.js +8 -8
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +8 -8
- package/dist/cli/index.mjs.map +1 -1
- package/dist/dashboard/index.html +1 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/index.mjs +1 -1
- package/dist/mcp/index.mjs.map +1 -1
- package/dist/server/api.js +3 -3
- package/dist/server/api.js.map +1 -1
- package/dist/server/api.mjs +3 -3
- package/dist/server/api.mjs.map +1 -1
- package/dist/server/index.js +4 -4
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +4 -4
- package/dist/server/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -3635,7 +3635,7 @@ function getVersion() {
|
|
|
3635
3635
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
3636
3636
|
return pkg.version;
|
|
3637
3637
|
} catch {
|
|
3638
|
-
return "2.1.
|
|
3638
|
+
return "2.1.10";
|
|
3639
3639
|
}
|
|
3640
3640
|
}
|
|
3641
3641
|
}
|
|
@@ -7599,7 +7599,7 @@ var require_package = __commonJS({
|
|
|
7599
7599
|
"package.json"(exports2, module2) {
|
|
7600
7600
|
module2.exports = {
|
|
7601
7601
|
name: "mnemosyne-core",
|
|
7602
|
-
version: "2.1.
|
|
7602
|
+
version: "2.1.10",
|
|
7603
7603
|
description: "Unified memory engine for AI agents \u2014 graph atoms, semantic search, and collaborative memory",
|
|
7604
7604
|
logo: "logo.png",
|
|
7605
7605
|
author: "Arman Aslanyan <aslanyanarman88@gmail.com> (https://www.linkedin.com/in/arman-aslanyan/)",
|
|
@@ -8937,7 +8937,7 @@ function getVersion2() {
|
|
|
8937
8937
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
8938
8938
|
return pkg.version;
|
|
8939
8939
|
} catch {
|
|
8940
|
-
return "2.1.
|
|
8940
|
+
return "2.1.10";
|
|
8941
8941
|
}
|
|
8942
8942
|
}
|
|
8943
8943
|
}
|
|
@@ -9539,7 +9539,7 @@ function getVersion3() {
|
|
|
9539
9539
|
const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
|
|
9540
9540
|
return pkg.version;
|
|
9541
9541
|
} catch {
|
|
9542
|
-
return "2.1.
|
|
9542
|
+
return "2.1.10";
|
|
9543
9543
|
}
|
|
9544
9544
|
}
|
|
9545
9545
|
}
|
|
@@ -10674,7 +10674,7 @@ var PKG_VERSION = (() => {
|
|
|
10674
10674
|
const pkg = JSON.parse(require("fs").readFileSync(require("path").resolve(__dirname, "../../package.json"), "utf-8"));
|
|
10675
10675
|
return pkg.version;
|
|
10676
10676
|
} catch {
|
|
10677
|
-
return "2.1.
|
|
10677
|
+
return "2.1.10";
|
|
10678
10678
|
}
|
|
10679
10679
|
})();
|
|
10680
10680
|
function handleHealth(store, pathname, method, res) {
|
|
@@ -11002,7 +11002,7 @@ var MnemosyneServer = class {
|
|
|
11002
11002
|
const wss = new import_websocket_server.default({ server: this.httpServer });
|
|
11003
11003
|
this.wsHandler = new WebSocketHandler(wss, this.store);
|
|
11004
11004
|
}
|
|
11005
|
-
const version = cfg?.server?.version || "2.1.
|
|
11005
|
+
const version = cfg?.server?.version || "2.1.10";
|
|
11006
11006
|
this.httpServer.listen(port, () => {
|
|
11007
11007
|
console.log(`Mnemosyne v${version} \u2014 port ${port}`);
|
|
11008
11008
|
console.log(`Dashboard: http://${host}:${port}/dashboard`);
|
|
@@ -11060,7 +11060,7 @@ function getVersion4() {
|
|
|
11060
11060
|
const { resolve: resolve14 } = require("path");
|
|
11061
11061
|
return JSON.parse(readFileSync8(resolve14(__dirname, "../../package.json"), "utf-8")).version;
|
|
11062
11062
|
} catch {
|
|
11063
|
-
return "2.1.
|
|
11063
|
+
return "2.1.10";
|
|
11064
11064
|
}
|
|
11065
11065
|
}
|
|
11066
11066
|
async function startCommand(options) {
|
|
@@ -11352,7 +11352,7 @@ program2.name("mnemosyne").description("Mnemosyne \u2014 Your exocortex").versio
|
|
|
11352
11352
|
try {
|
|
11353
11353
|
return require_package().version;
|
|
11354
11354
|
} catch {
|
|
11355
|
-
return "2.1.
|
|
11355
|
+
return "2.1.10";
|
|
11356
11356
|
}
|
|
11357
11357
|
})());
|
|
11358
11358
|
program2.command("init").description("Initialize a new Mnemosyne workspace").option("-d, --data-dir <path>", "Data directory", "./data").option("-c, --config <path>", "Config file path").action(initCommand);
|