claudemesh-cli 1.20.1 → 1.21.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/cli.js +53 -131
- package/dist/entrypoints/cli.js.map +12 -14
- package/dist/entrypoints/mcp.js +3 -12
- package/dist/entrypoints/mcp.js.map +3 -3
- package/package.json +1 -1
package/dist/entrypoints/mcp.js
CHANGED
|
@@ -3003,7 +3003,7 @@ __export(exports_urls, {
|
|
|
3003
3003
|
VERSION: () => VERSION,
|
|
3004
3004
|
URLS: () => URLS
|
|
3005
3005
|
});
|
|
3006
|
-
var URLS, VERSION = "1.
|
|
3006
|
+
var URLS, VERSION = "1.21.0", env;
|
|
3007
3007
|
var init_urls = __esm(() => {
|
|
3008
3008
|
URLS = {
|
|
3009
3009
|
BROKER: process.env.CLAUDEMESH_BROKER_URL ?? "wss://ic.claudemesh.com/ws",
|
|
@@ -3141,7 +3141,6 @@ var init_client = __esm(() => {
|
|
|
3141
3141
|
var exports_my = {};
|
|
3142
3142
|
__export(exports_my, {
|
|
3143
3143
|
revokeSession: () => revokeSession,
|
|
3144
|
-
reslugMesh: () => reslugMesh,
|
|
3145
3144
|
renameMesh: () => renameMesh,
|
|
3146
3145
|
getProfile: () => getProfile,
|
|
3147
3146
|
getMeshes: () => getMeshes,
|
|
@@ -3158,15 +3157,7 @@ async function getMeshes(token) {
|
|
|
3158
3157
|
async function createMesh(token, body) {
|
|
3159
3158
|
return post("/api/my/meshes", body, token);
|
|
3160
3159
|
}
|
|
3161
|
-
async function renameMesh(token,
|
|
3162
|
-
return request({
|
|
3163
|
-
path: `/api/cli/meshes/${slug}`,
|
|
3164
|
-
method: "PATCH",
|
|
3165
|
-
body: { name: newName },
|
|
3166
|
-
token
|
|
3167
|
-
});
|
|
3168
|
-
}
|
|
3169
|
-
async function reslugMesh(token, oldSlug, newSlug) {
|
|
3160
|
+
async function renameMesh(token, oldSlug, newSlug) {
|
|
3170
3161
|
return request({
|
|
3171
3162
|
path: `/api/cli/meshes/${oldSlug}`,
|
|
3172
3163
|
method: "PATCH",
|
|
@@ -4567,4 +4558,4 @@ startMcpServer().catch((err) => {
|
|
|
4567
4558
|
process.exit(1);
|
|
4568
4559
|
});
|
|
4569
4560
|
|
|
4570
|
-
//# debugId=
|
|
4561
|
+
//# debugId=D899602ED31EB3E664756E2164756E21
|