#!/bin/bash
set -e

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

echo "📤 Appending 505 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/505-to-add.json)" \
  --input RAW

echo "✅ Done! All 505 facilities added to master list"
