#!/bin/bash
set -e

SHEET_ID="1uVd-xZFF4TEQGqtvw9z6W8fffeaifPCoLsek83GmEoQ"
ACCOUNT="jonny@jonnyshannon.com"

echo "📤 Appending 1,429 cold storage facilities to USA sheet..."

# Use the JSON file we created
gog sheets append "$SHEET_ID" "USA!A:O" \
  --account "$ACCOUNT" \
  --values-json "$(cat /Users/max/.openclaw/workspace/postharvest/1429-to-add.json)" \
  --input RAW

echo "✅ Done! All 1,429 facilities added to master list"
echo ""
echo "📊 Master list now has ~3,200 USA facilities total"
