@matelink/cli 2026.4.8 → 2026.4.10
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/bin/matecli.mjs +2 -2
- package/package.json +1 -1
package/bin/matecli.mjs
CHANGED
|
@@ -673,7 +673,7 @@ function buildGatewayWsUrl(base) {
|
|
|
673
673
|
} else {
|
|
674
674
|
parsed.protocol = "ws:";
|
|
675
675
|
}
|
|
676
|
-
parsed.pathname = "/";
|
|
676
|
+
parsed.pathname = "/v1/ws";
|
|
677
677
|
parsed.search = "";
|
|
678
678
|
parsed.hash = "";
|
|
679
679
|
return parsed.toString();
|
|
@@ -2109,7 +2109,7 @@ async function callGatewayRpcLocal({
|
|
|
2109
2109
|
if (method === "__gateway.features") {
|
|
2110
2110
|
return {
|
|
2111
2111
|
ok: true,
|
|
2112
|
-
methods: ["sessions.list", "sessions.abort", "sessions.usage", "sessions.patch",
|
|
2112
|
+
methods: ["sessions.list", "sessions.abort", "sessions.delete", "sessions.usage", "sessions.patch",
|
|
2113
2113
|
"usage.cost", "agents.files.list", "agents.files.get", "agents.files.set",
|
|
2114
2114
|
"skills.status", "models.list", "chat.history", "chat.abort",
|
|
2115
2115
|
"config.get", "config.patch"],
|