@appscreenshotstudio/mcp 0.8.1 → 0.8.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/dist/index.js +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -32,6 +32,10 @@ const API_KEY = process.env.APPSCREENSHOTSTUDIO_API_KEY;
|
|
|
32
32
|
// mcp-server/skills/appscreenshotstudio/SKILL.md (ships in the npm package, so it drifts unseen),
|
|
33
33
|
// public/api-docs.md (served raw at /api-docs.md, linked from nowhere, so it drifts unseen too)
|
|
34
34
|
// Enforced by `npm run test:device-specs`, which reads all six files.
|
|
35
|
+
// Hand-copied from lib/device-specs.ts because this package ships standalone.
|
|
36
|
+
// `required` means required to PUBLISH, and it is emitted to agents as
|
|
37
|
+
// "required for store submission", so a wrong flag here is a wrong instruction
|
|
38
|
+
// rather than a cosmetic slip. Keep it in step with the source file.
|
|
35
39
|
const DEVICES = [
|
|
36
40
|
{ id: 'iphone-6.9', name: 'iPhone 16 Pro Max', width: 1260, height: 2736, category: 'iphone', required: true },
|
|
37
41
|
{ id: 'iphone-6.3', name: 'iPhone 17 Pro', width: 1206, height: 2622, category: 'iphone', required: false },
|
|
@@ -39,7 +43,9 @@ const DEVICES = [
|
|
|
39
43
|
{ id: 'android-phone', name: 'Android Phone', width: 1080, height: 2340, category: 'android-phone', required: true },
|
|
40
44
|
{ id: 'pixel-11-pro', name: 'Google Pixel 11 Pro', width: 1280, height: 2856, category: 'android-phone', required: false },
|
|
41
45
|
{ id: 'galaxy-s26-ultra', name: 'Samsung Galaxy S26 Ultra', width: 1440, height: 3120, category: 'android-phone', required: false },
|
|
42
|
-
|
|
46
|
+
// Play Console requires 2 screenshots to publish; tablets are "can add", not
|
|
47
|
+
// "must provide". Was `true` until 2026-09-07. See lib/device-specs.ts.
|
|
48
|
+
{ id: 'android-tablet-10', name: 'Android Tablet 7"', width: 1200, height: 1920, category: 'android-tablet', required: false },
|
|
43
49
|
{ id: 'android-tablet-large', name: 'Android Tablet 10"', width: 1600, height: 2560, category: 'android-tablet', required: false },
|
|
44
50
|
{ id: 'apple-watch-ultra', name: 'Apple Watch Ultra 2', width: 410, height: 502, category: 'apple-watch', required: true },
|
|
45
51
|
];
|
package/package.json
CHANGED