pabal-web-mcp 0.1.4 → 0.1.6
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/bin/mcp-server.js +15 -17
- package/dist/chunk-YPDLNPLX.js +1058 -0
- package/dist/chunk-ZDL4PKBE.js +1058 -0
- package/dist/index.d.ts +3 -5
- 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
|
|
@@ -595,11 +593,11 @@ declare function saveAsoToAsoDir(slug: string, asoData: AsoData, options?: {
|
|
|
595
593
|
*/
|
|
596
594
|
declare function getAsoDataDir(): string;
|
|
597
595
|
/**
|
|
598
|
-
* Get the pullData directory path
|
|
596
|
+
* Get the pullData directory path (dataDir/.aso/pullData)
|
|
599
597
|
*/
|
|
600
598
|
declare function getPullDataDir(): string;
|
|
601
599
|
/**
|
|
602
|
-
* Get the pushData directory path
|
|
600
|
+
* Get the pushData directory path (dataDir/.aso/pushData)
|
|
603
601
|
*/
|
|
604
602
|
declare function getPushDataDir(): string;
|
|
605
603
|
/**
|
package/dist/index.js
CHANGED