wolfpack-mcp 1.0.41 → 1.0.42
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/client.js +2 -2
- package/package.json +1 -1
package/dist/client.js
CHANGED
|
@@ -402,7 +402,7 @@ export class WolfpackClient {
|
|
|
402
402
|
return this.api.post('/wiki-pages', { ...rest, teamSlug });
|
|
403
403
|
}
|
|
404
404
|
async updateWikiPage(pageId, data, teamSlug) {
|
|
405
|
-
return this.api.patch(this.withTeamSlug(`/wiki-pages/${pageId}`, teamSlug), data);
|
|
405
|
+
return this.api.patch(this.withTeamSlug(`/wiki-pages/${encodeURIComponent(pageId)}`, teamSlug), data);
|
|
406
406
|
}
|
|
407
407
|
// Journal Entry methods
|
|
408
408
|
async listJournalEntries(options) {
|
|
@@ -451,7 +451,7 @@ export class WolfpackClient {
|
|
|
451
451
|
return this.api.post('/journal-entries', { ...rest, teamSlug });
|
|
452
452
|
}
|
|
453
453
|
async updateJournalEntry(entryId, data, teamSlug) {
|
|
454
|
-
return this.api.patch(this.withTeamSlug(`/journal-entries/${entryId}`, teamSlug), data);
|
|
454
|
+
return this.api.patch(this.withTeamSlug(`/journal-entries/${encodeURIComponent(entryId)}`, teamSlug), data);
|
|
455
455
|
}
|
|
456
456
|
// Comment methods
|
|
457
457
|
async listWorkItemComments(workItemId, teamSlug) {
|