pabal-web-mcp 0.1.5 → 1.0.0
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 +21 -13
- package/dist/bin/mcp-server.js +8 -10
- package/dist/chunk-OCOFNMN2.js +1058 -0
- package/dist/chunk-YPDLNPLX.js +1058 -0
- package/dist/index.d.ts +1 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -585,9 +585,7 @@ declare function saveAsoToConfig(slug: string, config: ProductConfig): void;
|
|
|
585
585
|
/**
|
|
586
586
|
* ASO 데이터를 지정한 ASO 디렉토리에 저장합니다
|
|
587
587
|
*/
|
|
588
|
-
declare function saveAsoToAsoDir(slug: string, asoData: AsoData
|
|
589
|
-
rootDir?: string;
|
|
590
|
-
}): void;
|
|
588
|
+
declare function saveAsoToAsoDir(slug: string, asoData: AsoData): void;
|
|
591
589
|
|
|
592
590
|
/**
|
|
593
591
|
* Get the data directory from ~/.config/pabal-mcp/config.json
|
package/dist/index.js
CHANGED