harmony-mcp 1.0.2 → 1.0.3
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/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -24936,7 +24936,7 @@ class HarmonyApiClient {
|
|
|
24936
24936
|
this.apiUrl = getApiUrl();
|
|
24937
24937
|
}
|
|
24938
24938
|
async request(method, path, body) {
|
|
24939
|
-
const url = `${this.apiUrl}${path}`;
|
|
24939
|
+
const url = `${this.apiUrl}/v1${path}`;
|
|
24940
24940
|
const response = await fetch(url, {
|
|
24941
24941
|
method,
|
|
24942
24942
|
headers: {
|
package/dist/index.js
CHANGED
|
@@ -23078,7 +23078,7 @@ class HarmonyApiClient {
|
|
|
23078
23078
|
this.apiUrl = getApiUrl();
|
|
23079
23079
|
}
|
|
23080
23080
|
async request(method, path, body) {
|
|
23081
|
-
const url = `${this.apiUrl}${path}`;
|
|
23081
|
+
const url = `${this.apiUrl}/v1${path}`;
|
|
23082
23082
|
const response = await fetch(url, {
|
|
23083
23083
|
method,
|
|
23084
23084
|
headers: {
|