pabal-web-mcp 0.1.0 → 0.1.2
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 +169 -43
- package/dist/bin/mcp-server.js +129 -48
- package/dist/chunk-AM6RGDD4.js +1001 -0
- package/dist/chunk-MWXNTV3M.js +1001 -0
- package/dist/index.d.ts +24 -2
- package/dist/index.js +11 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -583,10 +583,32 @@ declare function loadAsoFromConfig(slug: string): AsoData;
|
|
|
583
583
|
*/
|
|
584
584
|
declare function saveAsoToConfig(slug: string, config: ProductConfig): void;
|
|
585
585
|
/**
|
|
586
|
-
* ASO 데이터를 지정한 ASO 디렉토리에 저장합니다
|
|
586
|
+
* ASO 데이터를 지정한 ASO 디렉토리에 저장합니다
|
|
587
587
|
*/
|
|
588
588
|
declare function saveAsoToAsoDir(slug: string, asoData: AsoData, options?: {
|
|
589
589
|
rootDir?: string;
|
|
590
590
|
}): void;
|
|
591
591
|
|
|
592
|
-
|
|
592
|
+
/**
|
|
593
|
+
* Get the data directory from ~/.config/pabal-mcp/config.json
|
|
594
|
+
* Throws an error if config file doesn't exist or dataDir is not set
|
|
595
|
+
*/
|
|
596
|
+
declare function getAsoDataDir(): string;
|
|
597
|
+
/**
|
|
598
|
+
* Get the pullData directory path
|
|
599
|
+
*/
|
|
600
|
+
declare function getPullDataDir(): string;
|
|
601
|
+
/**
|
|
602
|
+
* Get the pushData directory path
|
|
603
|
+
*/
|
|
604
|
+
declare function getPushDataDir(): string;
|
|
605
|
+
/**
|
|
606
|
+
* Get the public directory path (dataDir/public)
|
|
607
|
+
*/
|
|
608
|
+
declare function getPublicDir(): string;
|
|
609
|
+
/**
|
|
610
|
+
* Get the products directory path (dataDir/public/products)
|
|
611
|
+
*/
|
|
612
|
+
declare function getProductsDir(): string;
|
|
613
|
+
|
|
614
|
+
export { APP_STORE_TO_UNIFIED, type AppMetaLinks, type AppPageData, type AppStoreAsoData, type AppStoreLocale, type AppStoreMultilingualAsoData, type AppStoreReleaseNote, type AsoData, type AsoLocaleContent, type AsoTemplate, DEFAULT_LOCALE, type DeepPartial, type FeatureItem, GOOGLE_PLAY_TO_UNIFIED, type GooglePlayAsoData, type GooglePlayLocale, type GooglePlayMultilingualAsoData, type GooglePlayReleaseNote, type ImageAsset, type LandingCta, type LandingFeatures, type LandingHero, type LandingPage, type LandingPageLocale, type LandingReviews, type LandingScreenshots, type LayoutColors, type ProductConfig, type ProductContent, type ProductLocale, type ProductMetadata, type ProductScreenshots, type SupportedLocale, type Testimonial, UNIFIED_LOCALES, UNIFIED_TO_APP_STORE, UNIFIED_TO_GOOGLE_PLAY, type UnifiedLocale, appStoreToGooglePlay, appStoreToUnified, appStoreToUnifiedBatch, convertObjectFromAppStore, convertObjectFromGooglePlay, convertObjectToAppStore, convertObjectToGooglePlay, getAsoDataDir, getProductsDir, getPublicDir, getPullDataDir, getPushDataDir, googlePlayToAppStore, googlePlayToUnified, googlePlayToUnifiedBatch, isAppStoreLocale, isAppStoreMultilingual, isGooglePlayLocale, isGooglePlayMultilingual, isSupportedLocale, loadAsoFromConfig, saveAsoToAsoDir, saveAsoToConfig, unifiedToAppStore, unifiedToAppStoreBatch, unifiedToBothPlatforms, unifiedToGooglePlay, unifiedToGooglePlayBatch };
|
package/dist/index.js
CHANGED
|
@@ -12,6 +12,11 @@ import {
|
|
|
12
12
|
convertObjectFromGooglePlay,
|
|
13
13
|
convertObjectToAppStore,
|
|
14
14
|
convertObjectToGooglePlay,
|
|
15
|
+
getAsoDataDir,
|
|
16
|
+
getProductsDir,
|
|
17
|
+
getPublicDir,
|
|
18
|
+
getPullDataDir,
|
|
19
|
+
getPushDataDir,
|
|
15
20
|
googlePlayToAppStore,
|
|
16
21
|
googlePlayToUnified2 as googlePlayToUnified,
|
|
17
22
|
googlePlayToUnifiedBatch,
|
|
@@ -28,7 +33,7 @@ import {
|
|
|
28
33
|
unifiedToBothPlatforms,
|
|
29
34
|
unifiedToGooglePlay,
|
|
30
35
|
unifiedToGooglePlayBatch
|
|
31
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-AM6RGDD4.js";
|
|
32
37
|
export {
|
|
33
38
|
APP_STORE_TO_UNIFIED,
|
|
34
39
|
DEFAULT_LOCALE,
|
|
@@ -43,6 +48,11 @@ export {
|
|
|
43
48
|
convertObjectFromGooglePlay,
|
|
44
49
|
convertObjectToAppStore,
|
|
45
50
|
convertObjectToGooglePlay,
|
|
51
|
+
getAsoDataDir,
|
|
52
|
+
getProductsDir,
|
|
53
|
+
getPublicDir,
|
|
54
|
+
getPullDataDir,
|
|
55
|
+
getPushDataDir,
|
|
46
56
|
googlePlayToAppStore,
|
|
47
57
|
googlePlayToUnified,
|
|
48
58
|
googlePlayToUnifiedBatch,
|