edsger 0.35.0 → 0.35.1

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.
@@ -19,6 +19,7 @@ export interface AppStoreConfig {
19
19
  export interface AppStoreListing {
20
20
  app_name: string;
21
21
  subtitle?: string;
22
+ promotional_text?: string;
22
23
  short_description?: string;
23
24
  description: string;
24
25
  keywords?: string;
@@ -42,6 +42,7 @@ ${hasCodebase ? '5' : '4'}. **Write Store Listings**: Generate optimized app nam
42
42
  **Store Listing Standards**:
43
43
  - App name: max 30 characters, compelling and searchable
44
44
  - Subtitle: max 30 characters (Apple), punchy value proposition
45
+ - Promotional text: max 170 characters (Apple), highlights current promotions or features — can be updated without a new app version
45
46
  - Short description: max 80 characters (Google Play)
46
47
  - Description: max 4000 characters, benefit-focused with feature bullets
47
48
  - Keywords: max 100 characters (Apple), comma-separated, no spaces after commas
@@ -59,6 +60,7 @@ Return ONLY a JSON object. No text before or after.
59
60
  "en-US": {
60
61
  "app_name": "Product Name",
61
62
  "subtitle": "Short value proposition",
63
+ "promotional_text": "Highlight a current promotion, new feature, or seasonal message (170 chars max)",
62
64
  "short_description": "One-liner for Google Play (80 chars max)",
63
65
  "description": "Full store description with features and benefits",
64
66
  "keywords": "keyword1,keyword2,keyword3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edsger",
3
- "version": "0.35.0",
3
+ "version": "0.35.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "edsger": "dist/index.js"