pabal-resource-mcp 1.4.8
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 +74 -0
- package/dist/bin/mcp-server.d.ts +1 -0
- package/dist/bin/mcp-server.js +3994 -0
- package/dist/browser.d.ts +15 -0
- package/dist/browser.js +60 -0
- package/dist/chunk-4G7O7LKL.js +1045 -0
- package/dist/chunk-A7KGUQPB.js +1058 -0
- package/dist/chunk-AM6RGDD4.js +1001 -0
- package/dist/chunk-BOWRBVVV.js +716 -0
- package/dist/chunk-DLCIXAUB.js +6 -0
- package/dist/chunk-FDI7WF45.js +1058 -0
- package/dist/chunk-FXCHLO7O.js +351 -0
- package/dist/chunk-MWXNTV3M.js +1001 -0
- package/dist/chunk-OCOFNMN2.js +1058 -0
- package/dist/chunk-W62HB2ZL.js +355 -0
- package/dist/chunk-WNIH5KWA.js +1028 -0
- package/dist/chunk-YJWGBO7W.js +952 -0
- package/dist/chunk-YPDLNPLX.js +1058 -0
- package/dist/chunk-ZDL4PKBE.js +1058 -0
- package/dist/index.d.ts +52 -0
- package/dist/index.js +76 -0
- package/dist/locale-converter-B_NCFuS8.d.ts +798 -0
- package/package.json +76 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { w as AsoData, Z as ProductConfig } from './locale-converter-B_NCFuS8.js';
|
|
2
|
+
export { A as APP_STORE_TO_UNIFIED, F as AppMetaLinks, H as AppPageData, t as AppStoreAsoData, p as AppStoreInfoLocalization, d as AppStoreLocale, v as AppStoreMultilingualAsoData, o as AppStoreReleaseNote, r as AppStoreScreenshotDisplayType, s as AppStoreScreenshots, q as AppStoreVersionLocalization, $ as AsoLocaleContent, _ as AsoTemplate, C as BlogArticle, z as BlogMeta, B as BlogMetaBlock, a4 as BlogMetaOutput, E as BlogSummary, a5 as CreateBlogHtmlInput, a7 as CreateBlogHtmlResult, D as DEFAULT_LOCALE, R as DeepPartial, M as FeatureItem, G as GOOGLE_PLAY_TO_UNIFIED, a6 as GeneratedBlogFile, m as GooglePlayAsoData, j as GooglePlayImageType, h as GooglePlayListing, e as GooglePlayLocale, u as GooglePlayMultilingualAsoData, n as GooglePlayReleaseNote, k as GooglePlayScreenshotType, l as GooglePlayScreenshots, I as ImageAsset, P as LandingCta, N as LandingFeatures, J as LandingHero, Q as LandingPage, V as LandingPageLocale, O as LandingReviews, K as LandingScreenshots, L as LayoutColors, a2 as LocaleDisplayInfo, Y as ProductContent, a0 as ProductLocale, X as ProductMetadata, W as ProductScreenshots, a1 as SiteConfig, a3 as SiteData, S as SupportedLocale, T as Testimonial, U as UNIFIED_LOCALES, a as UNIFIED_TO_APP_STORE, b as UNIFIED_TO_GOOGLE_PLAY, c as UnifiedLocale, ah as appStoreToGooglePlay, ab as appStoreToUnified, af as appStoreToUnifiedBatch, al as convertObjectFromAppStore, am as convertObjectFromGooglePlay, aj as convertObjectToAppStore, ak as convertObjectToGooglePlay, ai as googlePlayToAppStore, ac as googlePlayToUnified, ag as googlePlayToUnifiedBatch, f as isAppStoreLocale, y as isAppStoreMultilingual, g as isGooglePlayLocale, x as isGooglePlayMultilingual, i as isSupportedLocale, a8 as unifiedToAppStore, ad as unifiedToAppStoreBatch, aa as unifiedToBothPlatforms, a9 as unifiedToGooglePlay, ae as unifiedToGooglePlayBatch } from './locale-converter-B_NCFuS8.js';
|
|
3
|
+
import '@googleapis/androidpublisher';
|
|
4
|
+
import 'appstore-connect-sdk/openapi';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* ASO Data Converter
|
|
8
|
+
*
|
|
9
|
+
* config.json (source of truth) ↔ aso-data.json (build artifact) 변환 유틸리티
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* config.json에서 ASO 데이터를 읽어옵니다
|
|
14
|
+
* 새 구조: config.json (메타데이터) + locales/{locale}.json (콘텐츠)
|
|
15
|
+
*/
|
|
16
|
+
declare function loadAsoFromConfig(slug: string): AsoData;
|
|
17
|
+
/**
|
|
18
|
+
* config.json에 ASO 데이터를 저장합니다
|
|
19
|
+
*/
|
|
20
|
+
declare function saveAsoToConfig(slug: string, config: ProductConfig): void;
|
|
21
|
+
/**
|
|
22
|
+
* ASO 데이터를 지정한 ASO 디렉토리에 저장합니다
|
|
23
|
+
*/
|
|
24
|
+
declare function saveAsoToAsoDir(slug: string, asoData: AsoData): void;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Get the data directory from ~/.config/pabal-mcp/config.json
|
|
28
|
+
* Throws an error if config file doesn't exist or dataDir is not set
|
|
29
|
+
*/
|
|
30
|
+
declare function getAsoDataDir(): string;
|
|
31
|
+
/**
|
|
32
|
+
* Get the pullData directory path (dataDir/.aso/pullData)
|
|
33
|
+
*/
|
|
34
|
+
declare function getPullDataDir(): string;
|
|
35
|
+
/**
|
|
36
|
+
* Get the pushData directory path (dataDir/.aso/pushData)
|
|
37
|
+
*/
|
|
38
|
+
declare function getPushDataDir(): string;
|
|
39
|
+
/**
|
|
40
|
+
* Get the public directory path (dataDir/public)
|
|
41
|
+
*/
|
|
42
|
+
declare function getPublicDir(): string;
|
|
43
|
+
/**
|
|
44
|
+
* Get the keywordResearch directory path (dataDir/.aso/keywordResearch)
|
|
45
|
+
*/
|
|
46
|
+
declare function getKeywordResearchDir(): string;
|
|
47
|
+
/**
|
|
48
|
+
* Get the products directory path (dataDir/public/products)
|
|
49
|
+
*/
|
|
50
|
+
declare function getProductsDir(): string;
|
|
51
|
+
|
|
52
|
+
export { AsoData, ProductConfig, getAsoDataDir, getKeywordResearchDir, getProductsDir, getPublicDir, getPullDataDir, getPushDataDir, loadAsoFromConfig, saveAsoToAsoDir, saveAsoToConfig };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import {
|
|
2
|
+
getAsoDataDir,
|
|
3
|
+
getKeywordResearchDir,
|
|
4
|
+
getProductsDir,
|
|
5
|
+
getPublicDir,
|
|
6
|
+
getPullDataDir,
|
|
7
|
+
getPushDataDir,
|
|
8
|
+
loadAsoFromConfig,
|
|
9
|
+
saveAsoToAsoDir,
|
|
10
|
+
saveAsoToConfig
|
|
11
|
+
} from "./chunk-W62HB2ZL.js";
|
|
12
|
+
import {
|
|
13
|
+
APP_STORE_TO_UNIFIED,
|
|
14
|
+
DEFAULT_LOCALE,
|
|
15
|
+
GOOGLE_PLAY_TO_UNIFIED,
|
|
16
|
+
UNIFIED_LOCALES,
|
|
17
|
+
UNIFIED_TO_APP_STORE,
|
|
18
|
+
UNIFIED_TO_GOOGLE_PLAY,
|
|
19
|
+
appStoreToGooglePlay,
|
|
20
|
+
appStoreToUnified2 as appStoreToUnified,
|
|
21
|
+
appStoreToUnifiedBatch,
|
|
22
|
+
convertObjectFromAppStore,
|
|
23
|
+
convertObjectFromGooglePlay,
|
|
24
|
+
convertObjectToAppStore,
|
|
25
|
+
convertObjectToGooglePlay,
|
|
26
|
+
googlePlayToAppStore,
|
|
27
|
+
googlePlayToUnified2 as googlePlayToUnified,
|
|
28
|
+
googlePlayToUnifiedBatch,
|
|
29
|
+
isAppStoreLocale,
|
|
30
|
+
isAppStoreMultilingual,
|
|
31
|
+
isGooglePlayLocale,
|
|
32
|
+
isGooglePlayMultilingual,
|
|
33
|
+
isSupportedLocale,
|
|
34
|
+
unifiedToAppStore,
|
|
35
|
+
unifiedToAppStoreBatch,
|
|
36
|
+
unifiedToBothPlatforms,
|
|
37
|
+
unifiedToGooglePlay,
|
|
38
|
+
unifiedToGooglePlayBatch
|
|
39
|
+
} from "./chunk-BOWRBVVV.js";
|
|
40
|
+
export {
|
|
41
|
+
APP_STORE_TO_UNIFIED,
|
|
42
|
+
DEFAULT_LOCALE,
|
|
43
|
+
GOOGLE_PLAY_TO_UNIFIED,
|
|
44
|
+
UNIFIED_LOCALES,
|
|
45
|
+
UNIFIED_TO_APP_STORE,
|
|
46
|
+
UNIFIED_TO_GOOGLE_PLAY,
|
|
47
|
+
appStoreToGooglePlay,
|
|
48
|
+
appStoreToUnified,
|
|
49
|
+
appStoreToUnifiedBatch,
|
|
50
|
+
convertObjectFromAppStore,
|
|
51
|
+
convertObjectFromGooglePlay,
|
|
52
|
+
convertObjectToAppStore,
|
|
53
|
+
convertObjectToGooglePlay,
|
|
54
|
+
getAsoDataDir,
|
|
55
|
+
getKeywordResearchDir,
|
|
56
|
+
getProductsDir,
|
|
57
|
+
getPublicDir,
|
|
58
|
+
getPullDataDir,
|
|
59
|
+
getPushDataDir,
|
|
60
|
+
googlePlayToAppStore,
|
|
61
|
+
googlePlayToUnified,
|
|
62
|
+
googlePlayToUnifiedBatch,
|
|
63
|
+
isAppStoreLocale,
|
|
64
|
+
isAppStoreMultilingual,
|
|
65
|
+
isGooglePlayLocale,
|
|
66
|
+
isGooglePlayMultilingual,
|
|
67
|
+
isSupportedLocale,
|
|
68
|
+
loadAsoFromConfig,
|
|
69
|
+
saveAsoToAsoDir,
|
|
70
|
+
saveAsoToConfig,
|
|
71
|
+
unifiedToAppStore,
|
|
72
|
+
unifiedToAppStoreBatch,
|
|
73
|
+
unifiedToBothPlatforms,
|
|
74
|
+
unifiedToGooglePlay,
|
|
75
|
+
unifiedToGooglePlayBatch
|
|
76
|
+
};
|