claudemesh-cli 1.19.2 → 1.20.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 +143 -39
- package/dist/entrypoints/cli.js.map +10 -8
- package/dist/entrypoints/mcp.js +11 -2
- 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.20.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,6 +3141,7 @@ var init_client = __esm(() => {
|
|
|
3141
3141
|
var exports_my = {};
|
|
3142
3142
|
__export(exports_my, {
|
|
3143
3143
|
revokeSession: () => revokeSession,
|
|
3144
|
+
reslugMesh: () => reslugMesh,
|
|
3144
3145
|
renameMesh: () => renameMesh,
|
|
3145
3146
|
getProfile: () => getProfile,
|
|
3146
3147
|
getMeshes: () => getMeshes,
|
|
@@ -3165,6 +3166,14 @@ async function renameMesh(token, slug, newName) {
|
|
|
3165
3166
|
token
|
|
3166
3167
|
});
|
|
3167
3168
|
}
|
|
3169
|
+
async function reslugMesh(token, oldSlug, newSlug) {
|
|
3170
|
+
return request({
|
|
3171
|
+
path: `/api/cli/meshes/${oldSlug}`,
|
|
3172
|
+
method: "PATCH",
|
|
3173
|
+
body: { slug: newSlug },
|
|
3174
|
+
token
|
|
3175
|
+
});
|
|
3176
|
+
}
|
|
3168
3177
|
async function createInvite(token, meshSlug, body) {
|
|
3169
3178
|
return post(`/api/my/meshes/${meshSlug}/invites`, body, token);
|
|
3170
3179
|
}
|
|
@@ -4558,4 +4567,4 @@ startMcpServer().catch((err) => {
|
|
|
4558
4567
|
process.exit(1);
|
|
4559
4568
|
});
|
|
4560
4569
|
|
|
4561
|
-
//# debugId=
|
|
4570
|
+
//# debugId=82D09CF8FE3CA16964756E2164756E21
|