pabal-resource-mcp 1.10.4 → 1.10.5

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.
@@ -597,6 +597,8 @@ function prepareAsoDataForPush(configData) {
597
597
  const locales = isAppStoreMultilingual(appStoreData) ? appStoreData.locales : { [appStoreData.locale || DEFAULT_LOCALE]: appStoreData };
598
598
  const appLevelSupportUrl = isAppStoreMultilingual(appStoreData) ? appStoreData.supportUrl : void 0;
599
599
  const appLevelMarketingUrl = isAppStoreMultilingual(appStoreData) ? appStoreData.marketingUrl : void 0;
600
+ const appLevelPrivacyPolicyUrl = isAppStoreMultilingual(appStoreData) ? appStoreData.privacyPolicyUrl : void 0;
601
+ const appLevelTermsUrl = isAppStoreMultilingual(appStoreData) ? appStoreData.termsUrl : void 0;
600
602
  const convertedLocales = {};
601
603
  for (const [unifiedLocale, localeData] of Object.entries(locales)) {
602
604
  const appStoreLocale = unifiedToAppStore(unifiedLocale);
@@ -605,7 +607,9 @@ function prepareAsoDataForPush(configData) {
605
607
  ...localeData,
606
608
  locale: appStoreLocale,
607
609
  supportUrl: localeData.supportUrl || appLevelSupportUrl,
608
- marketingUrl: localeData.marketingUrl || appLevelMarketingUrl
610
+ marketingUrl: localeData.marketingUrl || appLevelMarketingUrl,
611
+ privacyPolicyUrl: localeData.privacyPolicyUrl || appLevelPrivacyPolicyUrl,
612
+ termsUrl: localeData.termsUrl || appLevelTermsUrl
609
613
  };
610
614
  }
611
615
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pabal-resource-mcp",
3
- "version": "1.10.4",
3
+ "version": "1.10.5",
4
4
  "type": "module",
5
5
  "description": "MCP server for ASO data management with shared types and utilities",
6
6
  "author": "skyu",
@@ -57,6 +57,7 @@
57
57
  "scripts": {
58
58
  "build": "tsup src/index.ts src/browser.ts src/bin/mcp-server.ts --format esm --dts --external node:fs --external node:path --external node:os",
59
59
  "dev": "tsx src/bin/mcp-server.ts",
60
+ "test": "tsx --test \"tests/**/*.test.ts\"",
60
61
  "typecheck": "tsc --noEmit",
61
62
  "prepublishOnly": "npm run build"
62
63
  },