wolfpack-mcp 1.0.99 → 1.0.100

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 CHANGED
@@ -435,8 +435,10 @@ export class WolfpackClient {
435
435
  const { teamSlug, ...rest } = data;
436
436
  return this.api.post('/wiki-pages', { ...rest, teamSlug });
437
437
  }
438
- async updateWikiPage(pageId, data, teamSlug) {
439
- return this.api.patch(this.withTeamSlug(`/wiki-pages/${encodeURIComponent(pageId)}`, teamSlug), data);
438
+ // No teamSlug: the route takes none, and a wiki slug already carries its
439
+ // project prefix, so the page resolves without one.
440
+ async updateWikiPage(pageId, data) {
441
+ return this.api.patch(`/wiki-pages/${encodeURIComponent(pageId)}`, data);
440
442
  }
441
443
  // Journal Entry methods
442
444
  async listJournalEntries(options) {