@daemux/store-automator 0.10.48 → 0.10.50

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.
@@ -5,20 +5,15 @@
5
5
  },
6
6
  "metadata": {
7
7
  "description": "App Store & Google Play automation for Flutter apps",
8
- "version": "0.10.48"
8
+ "version": "0.10.37"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "store-automator",
13
13
  "source": "./plugins/store-automator",
14
14
  "description": "3 agents for app store publishing: reviewer, meta-creator, media-designer",
15
- "version": "0.10.48",
16
- "keywords": [
17
- "flutter",
18
- "app-store",
19
- "google-play",
20
- "fastlane"
21
- ]
15
+ "version": "0.10.37",
16
+ "keywords": ["flutter", "app-store", "google-play", "fastlane"]
22
17
  }
23
18
  ]
24
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daemux/store-automator",
3
- "version": "0.10.48",
3
+ "version": "0.10.50",
4
4
  "description": "Full App Store & Google Play automation for Flutter apps with Claude Code agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,16 +1,9 @@
1
1
  {
2
2
  "name": "store-automator",
3
- "version": "0.10.48",
3
+ "version": "0.10.50",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
7
7
  },
8
- "keywords": [
9
- "flutter",
10
- "app-store",
11
- "google-play",
12
- "fastlane",
13
- "screenshots",
14
- "metadata"
15
- ]
8
+ "keywords": ["flutter", "app-store", "google-play", "fastlane", "screenshots", "metadata"]
16
9
  }
@@ -118,6 +118,8 @@ platform :ios do
118
118
  end
119
119
 
120
120
  lane :upload_privacy_ios do
121
+ # Note: upload_app_privacy_details_to_app_store requires Apple ID authentication
122
+ # (username + team_name), not API key. Use APPLE_ID and APPLE_TEAM_NAME env vars.
121
123
  upload_app_privacy_details_to_app_store(
122
124
  username: ENV.fetch("APPLE_ID", ""),
123
125
  team_name: ENV.fetch("APPLE_TEAM_NAME", ""),
@@ -18,6 +18,12 @@ fi
18
18
 
19
19
  echo " Found: $PRIVACY_JSON"
20
20
 
21
+ # --- Validate JSON format ---
22
+ if ! python3 -m json.tool "$PRIVACY_JSON" > /dev/null 2>&1; then
23
+ echo "ERROR: Invalid JSON format in $PRIVACY_JSON"
24
+ exit 1
25
+ fi
26
+
21
27
  # --- Privacy upload requires Apple ID auth (not API key) ---
22
28
  if [ -z "${APPLE_ID:-}" ]; then
23
29
  echo "Skipping privacy upload: APPLE_ID not set (requires Apple ID auth, not API key)"