@daemux/store-automator 0.10.48 → 0.10.49
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,14 +5,14 @@
|
|
|
5
5
|
},
|
|
6
6
|
"metadata": {
|
|
7
7
|
"description": "App Store & Google Play automation for Flutter apps",
|
|
8
|
-
"version": "0.10.
|
|
8
|
+
"version": "0.10.49"
|
|
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.
|
|
15
|
+
"version": "0.10.49",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"flutter",
|
|
18
18
|
"app-store",
|
package/package.json
CHANGED
|
@@ -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)"
|