claudemesh-cli 1.22.0 → 1.23.0
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/entrypoints/mcp.js
CHANGED
|
@@ -195,6 +195,13 @@ var ready = false;
|
|
|
195
195
|
var init_keypair = () => {};
|
|
196
196
|
|
|
197
197
|
// src/services/crypto/file-crypto.ts
|
|
198
|
+
var exports_file_crypto = {};
|
|
199
|
+
__export(exports_file_crypto, {
|
|
200
|
+
sealKeyForPeer: () => sealKeyForPeer,
|
|
201
|
+
openSealedKey: () => openSealedKey,
|
|
202
|
+
encryptFile: () => encryptFile,
|
|
203
|
+
decryptFile: () => decryptFile
|
|
204
|
+
});
|
|
198
205
|
async function encryptFile(plaintext) {
|
|
199
206
|
const s = await ensureSodium();
|
|
200
207
|
const key = s.randombytes_buf(s.crypto_secretbox_KEYBYTES);
|
|
@@ -3003,7 +3010,7 @@ __export(exports_urls, {
|
|
|
3003
3010
|
VERSION: () => VERSION,
|
|
3004
3011
|
URLS: () => URLS
|
|
3005
3012
|
});
|
|
3006
|
-
var URLS, VERSION = "1.
|
|
3013
|
+
var URLS, VERSION = "1.23.0", env;
|
|
3007
3014
|
var init_urls = __esm(() => {
|
|
3008
3015
|
URLS = {
|
|
3009
3016
|
BROKER: process.env.CLAUDEMESH_BROKER_URL ?? "wss://ic.claudemesh.com/ws",
|
|
@@ -4558,4 +4565,4 @@ startMcpServer().catch((err) => {
|
|
|
4558
4565
|
process.exit(1);
|
|
4559
4566
|
});
|
|
4560
4567
|
|
|
4561
|
-
//# debugId=
|
|
4568
|
+
//# debugId=1C8A5B32F35FD27064756E2164756E21
|