pabal-web-mcp 0.1.1 → 0.1.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/README.md +0 -6
- package/dist/bin/mcp-server.js +93 -17
- package/dist/chunk-AM6RGDD4.js +1001 -0
- package/dist/chunk-WNIH5KWA.js +1028 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -603,11 +603,11 @@ declare function getPullDataDir(): string;
|
|
|
603
603
|
*/
|
|
604
604
|
declare function getPushDataDir(): string;
|
|
605
605
|
/**
|
|
606
|
-
* Get the public directory path (
|
|
606
|
+
* Get the public directory path (dataDir/public)
|
|
607
607
|
*/
|
|
608
608
|
declare function getPublicDir(): string;
|
|
609
609
|
/**
|
|
610
|
-
* Get the products directory path (public/products)
|
|
610
|
+
* Get the products directory path (dataDir/public/products)
|
|
611
611
|
*/
|
|
612
612
|
declare function getProductsDir(): string;
|
|
613
613
|
|
package/dist/index.js
CHANGED