pabal-web-mcp 1.2.2 → 1.2.4
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 +10 -8
- package/dist/browser.d.ts +15 -0
- package/dist/browser.js +60 -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/index.d.ts +5 -797
- package/dist/index.js +11 -9
- package/dist/locale-converter-B_NCFuS8.d.ts +798 -0
- package/package.json +25 -3
package/dist/bin/mcp-server.js
CHANGED
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
DEFAULT_APP_SLUG
|
|
4
|
+
} from "../chunk-DLCIXAUB.js";
|
|
5
|
+
import {
|
|
5
6
|
getProductsDir,
|
|
6
7
|
getPublicDir,
|
|
7
8
|
getPullDataDir,
|
|
8
9
|
getPushDataDir,
|
|
10
|
+
loadAsoFromConfig,
|
|
11
|
+
saveAsoToAsoDir
|
|
12
|
+
} from "../chunk-FXCHLO7O.js";
|
|
13
|
+
import {
|
|
14
|
+
DEFAULT_LOCALE,
|
|
15
|
+
appStoreToUnified,
|
|
9
16
|
googlePlayToUnified,
|
|
10
17
|
isAppStoreLocale,
|
|
11
18
|
isAppStoreMultilingual,
|
|
12
19
|
isGooglePlayLocale,
|
|
13
20
|
isGooglePlayMultilingual,
|
|
14
|
-
loadAsoFromConfig,
|
|
15
|
-
saveAsoToAsoDir,
|
|
16
21
|
unifiedToAppStore,
|
|
17
22
|
unifiedToGooglePlay
|
|
18
|
-
} from "../chunk-
|
|
23
|
+
} from "../chunk-BOWRBVVV.js";
|
|
19
24
|
|
|
20
25
|
// src/bin/mcp-server.ts
|
|
21
26
|
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
@@ -2052,9 +2057,6 @@ function findExistingBlogPosts({
|
|
|
2052
2057
|
}));
|
|
2053
2058
|
}
|
|
2054
2059
|
|
|
2055
|
-
// src/constants/blog.constants.ts
|
|
2056
|
-
var DEFAULT_APP_SLUG = "developer";
|
|
2057
|
-
|
|
2058
2060
|
// src/tools/create-blog-html.ts
|
|
2059
2061
|
var toJsonSchema4 = zodToJsonSchema5;
|
|
2060
2062
|
var DATE_REGEX2 = /^\d{4}-\d{2}-\d{2}$/;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
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, w as AsoData, $ 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, Z as ProductConfig, 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';
|
|
2
|
+
import '@googleapis/androidpublisher';
|
|
3
|
+
import 'appstore-connect-sdk/openapi';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Blog constants
|
|
7
|
+
* Used for blog-related default values and configurations
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* Default app slug for developer-related blog posts
|
|
11
|
+
* Used when creating blog posts about the developer themselves
|
|
12
|
+
*/
|
|
13
|
+
declare const DEFAULT_APP_SLUG = "developer";
|
|
14
|
+
|
|
15
|
+
export { DEFAULT_APP_SLUG };
|
package/dist/browser.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_APP_SLUG
|
|
3
|
+
} from "./chunk-DLCIXAUB.js";
|
|
4
|
+
import {
|
|
5
|
+
APP_STORE_TO_UNIFIED,
|
|
6
|
+
DEFAULT_LOCALE,
|
|
7
|
+
GOOGLE_PLAY_TO_UNIFIED,
|
|
8
|
+
UNIFIED_LOCALES,
|
|
9
|
+
UNIFIED_TO_APP_STORE,
|
|
10
|
+
UNIFIED_TO_GOOGLE_PLAY,
|
|
11
|
+
appStoreToGooglePlay,
|
|
12
|
+
appStoreToUnified2 as appStoreToUnified,
|
|
13
|
+
appStoreToUnifiedBatch,
|
|
14
|
+
convertObjectFromAppStore,
|
|
15
|
+
convertObjectFromGooglePlay,
|
|
16
|
+
convertObjectToAppStore,
|
|
17
|
+
convertObjectToGooglePlay,
|
|
18
|
+
googlePlayToAppStore,
|
|
19
|
+
googlePlayToUnified2 as googlePlayToUnified,
|
|
20
|
+
googlePlayToUnifiedBatch,
|
|
21
|
+
isAppStoreLocale,
|
|
22
|
+
isAppStoreMultilingual,
|
|
23
|
+
isGooglePlayLocale,
|
|
24
|
+
isGooglePlayMultilingual,
|
|
25
|
+
isSupportedLocale,
|
|
26
|
+
unifiedToAppStore,
|
|
27
|
+
unifiedToAppStoreBatch,
|
|
28
|
+
unifiedToBothPlatforms,
|
|
29
|
+
unifiedToGooglePlay,
|
|
30
|
+
unifiedToGooglePlayBatch
|
|
31
|
+
} from "./chunk-BOWRBVVV.js";
|
|
32
|
+
export {
|
|
33
|
+
APP_STORE_TO_UNIFIED,
|
|
34
|
+
DEFAULT_APP_SLUG,
|
|
35
|
+
DEFAULT_LOCALE,
|
|
36
|
+
GOOGLE_PLAY_TO_UNIFIED,
|
|
37
|
+
UNIFIED_LOCALES,
|
|
38
|
+
UNIFIED_TO_APP_STORE,
|
|
39
|
+
UNIFIED_TO_GOOGLE_PLAY,
|
|
40
|
+
appStoreToGooglePlay,
|
|
41
|
+
appStoreToUnified,
|
|
42
|
+
appStoreToUnifiedBatch,
|
|
43
|
+
convertObjectFromAppStore,
|
|
44
|
+
convertObjectFromGooglePlay,
|
|
45
|
+
convertObjectToAppStore,
|
|
46
|
+
convertObjectToGooglePlay,
|
|
47
|
+
googlePlayToAppStore,
|
|
48
|
+
googlePlayToUnified,
|
|
49
|
+
googlePlayToUnifiedBatch,
|
|
50
|
+
isAppStoreLocale,
|
|
51
|
+
isAppStoreMultilingual,
|
|
52
|
+
isGooglePlayLocale,
|
|
53
|
+
isGooglePlayMultilingual,
|
|
54
|
+
isSupportedLocale,
|
|
55
|
+
unifiedToAppStore,
|
|
56
|
+
unifiedToAppStoreBatch,
|
|
57
|
+
unifiedToBothPlatforms,
|
|
58
|
+
unifiedToGooglePlay,
|
|
59
|
+
unifiedToGooglePlayBatch
|
|
60
|
+
};
|