pabal-resource-mcp 1.6.2 → 1.6.3
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 +7 -1
- package/package.json +1 -1
package/dist/bin/mcp-server.js
CHANGED
|
@@ -594,8 +594,9 @@ function prepareAsoDataForPush(slug, configData) {
|
|
|
594
594
|
defaultLocale: convertedDefaultLocale,
|
|
595
595
|
// App-level contact information (from multilingual data)
|
|
596
596
|
contactEmail: isGooglePlayMultilingual(googlePlayData) ? googlePlayData.contactEmail : void 0,
|
|
597
|
-
contactWebsite: detailPageUrl
|
|
597
|
+
contactWebsite: detailPageUrl,
|
|
598
598
|
// Set to detail page URL
|
|
599
|
+
youtubeUrl: isGooglePlayMultilingual(googlePlayData) ? googlePlayData.youtubeUrl : googlePlayData.video || void 0
|
|
599
600
|
};
|
|
600
601
|
}
|
|
601
602
|
if (configData.appStore) {
|
|
@@ -1033,6 +1034,11 @@ ${validationMessage}`
|
|
|
1033
1034
|
if (localeCounts.googlePlay) {
|
|
1034
1035
|
responseText += `Google Play: ${localeCounts.googlePlay} locale(s)
|
|
1035
1036
|
`;
|
|
1037
|
+
const gpData = storeData.googlePlay;
|
|
1038
|
+
if (gpData && isGooglePlayMultilingual(gpData) && gpData.youtubeUrl) {
|
|
1039
|
+
responseText += `Google Play YouTube URL: ${gpData.youtubeUrl}
|
|
1040
|
+
`;
|
|
1041
|
+
}
|
|
1036
1042
|
}
|
|
1037
1043
|
if (localeCounts.appStore) {
|
|
1038
1044
|
responseText += `App Store: ${localeCounts.appStore} locale(s)
|