claudemesh-cli 1.19.0 → 1.19.1
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
CHANGED
|
@@ -88,7 +88,7 @@ __export(exports_urls, {
|
|
|
88
88
|
VERSION: () => VERSION,
|
|
89
89
|
URLS: () => URLS
|
|
90
90
|
});
|
|
91
|
-
var URLS, VERSION = "1.19.
|
|
91
|
+
var URLS, VERSION = "1.19.1", env;
|
|
92
92
|
var init_urls = __esm(() => {
|
|
93
93
|
URLS = {
|
|
94
94
|
BROKER: process.env.CLAUDEMESH_BROKER_URL ?? "wss://ic.claudemesh.com/ws",
|
|
@@ -416,7 +416,7 @@ async function createMesh(token, body) {
|
|
|
416
416
|
}
|
|
417
417
|
async function renameMesh(token, slug, newName) {
|
|
418
418
|
return request({
|
|
419
|
-
path: `/api/
|
|
419
|
+
path: `/api/cli/meshes/${slug}`,
|
|
420
420
|
method: "PATCH",
|
|
421
421
|
body: { name: newName },
|
|
422
422
|
token
|
|
@@ -16089,4 +16089,4 @@ main().catch((err) => {
|
|
|
16089
16089
|
process.exit(EXIT.INTERNAL_ERROR);
|
|
16090
16090
|
});
|
|
16091
16091
|
|
|
16092
|
-
//# debugId=
|
|
16092
|
+
//# debugId=3A1675403F5C48F564756E2164756E21
|