@illli-studio/mory 0.1.12 → 0.1.13
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/bundle/web/index.html
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<link rel="icon" type="image/svg+xml" href="/mory-logo-premium.svg" />
|
|
8
8
|
<link rel="apple-touch-icon" href="/mory-logo-premium.svg" />
|
|
9
9
|
<title>Mory</title>
|
|
10
|
-
<script type="module" crossorigin src="/assets/index-
|
|
10
|
+
<script type="module" crossorigin src="/assets/index-B67Zly01.js"></script>
|
|
11
11
|
<link rel="stylesheet" crossorigin href="/assets/index-BAhB-d6Z.css">
|
|
12
12
|
</head>
|
|
13
13
|
<body>
|
package/package.json
CHANGED
package/src/cli.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { fileURLToPath } from "node:url";
|
|
|
8
8
|
import { runMcp } from "./mcp.mjs";
|
|
9
9
|
|
|
10
10
|
const packageRoot = resolve(fileURLToPath(new URL("..", import.meta.url)));
|
|
11
|
-
const runtimeVersion = "0.1.
|
|
11
|
+
const runtimeVersion = "0.1.13";
|
|
12
12
|
const repoRoot = resolve(packageRoot, "../..");
|
|
13
13
|
const dataDir = process.env.MORY_HOME || join(homedir(), ".mory");
|
|
14
14
|
const configPath = join(dataDir, "config.json");
|
package/src/mcp.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const protocolVersion = "2025-06-18";
|
|
2
|
-
const runtimeVersion = "0.1.
|
|
2
|
+
const runtimeVersion = "0.1.13";
|
|
3
3
|
|
|
4
4
|
async function callApi(baseUrl, token, path, method = "POST", body) {
|
|
5
5
|
const response = await fetch(baseUrl.replace(/\/$/, "") + path, { method, headers: { authorization: `Bearer ${token}`, "content-type": "application/json" }, body: body === undefined ? undefined : JSON.stringify(body) });
|