wolfpack-mcp 1.0.98 → 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 +4 -2
- package/dist/index.js +10 -1731
- package/dist/procedureTools.js +4 -268
- package/dist/toolCatalogue.js +2156 -0
- package/dist/toolCatalogue.test.js +96 -0
- package/package.json +1 -1
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
|
-
|
|
439
|
-
|
|
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) {
|