@daemux/store-automator 0.10.35 → 0.10.36

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.35"
8
+ "version": "0.10.36"
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.35",
15
+ "version": "0.10.36",
16
16
  "keywords": [
17
17
  "flutter",
18
18
  "app-store",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daemux/store-automator",
3
- "version": "0.10.35",
3
+ "version": "0.10.36",
4
4
  "description": "Full App Store & Google Play automation for Flutter apps with Claude Code agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "store-automator",
3
- "version": "0.10.35",
3
+ "version": "0.10.36",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -21,11 +21,14 @@ if [ ! -f "$IAP_CONFIG" ]; then
21
21
  ci_skip "No Android IAP config file found"
22
22
  fi
23
23
 
24
- # --- Hash-based change detection ---
24
+ # --- Hash-based change detection (config + Python scripts) ---
25
25
  STATE_DIR="$PROJECT_ROOT/.ci-state"
26
26
  mkdir -p "$STATE_DIR"
27
27
 
28
- HASH=$(shasum -a 256 "$IAP_CONFIG" | cut -d' ' -f1)
28
+ HASH=$(cat "$IAP_CONFIG" \
29
+ "$PROJECT_ROOT/scripts/sync_iap_android.py" \
30
+ "$PROJECT_ROOT/scripts/gplay_iap_api.py" \
31
+ | shasum -a 256 | cut -d' ' -f1)
29
32
  STATE_FILE="$STATE_DIR/android-iap-hash"
30
33
 
31
34
  if [ -f "$STATE_FILE" ]; then
@@ -16,8 +16,12 @@ if [ ! -f "$IAP_CONFIG" ]; then
16
16
  ci_skip "No iOS IAP config file found"
17
17
  fi
18
18
 
19
- # --- Hash-based change detection ---
20
- CURRENT_HASH=$(shasum -a 256 "$IAP_CONFIG" | cut -d' ' -f1)
19
+ # --- Hash-based change detection (config + Python scripts) ---
20
+ CURRENT_HASH=$(cat "$IAP_CONFIG" \
21
+ "$PROJECT_ROOT/scripts/sync_iap_ios.py" \
22
+ "$PROJECT_ROOT/scripts/asc_subscription_setup.py" \
23
+ "$PROJECT_ROOT/scripts/asc_iap_api.py" \
24
+ | shasum -a 256 | cut -d' ' -f1)
21
25
 
22
26
  STATE_DIR="$PROJECT_ROOT/.ci-state"
23
27
  mkdir -p "$STATE_DIR"