239 lines
9.0 KiB
Bash
239 lines
9.0 KiB
Bash
#!/bin/bash
|
|
|
|
# Script to populate Events and Meetings for VIPs in VIP Coordinator
|
|
|
|
API_BASE="http://localhost:3000/api"
|
|
|
|
echo "🚀 Adding Events and Meetings..."
|
|
echo ""
|
|
|
|
# VIP 1 - Sarah Johnson (ID: 1748780965379)
|
|
curl -X POST $API_BASE/vips/1748780965379/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Arrival at DEN",
|
|
"location": "Denver International Airport",
|
|
"startTime": "2025-06-26T09:00:00",
|
|
"endTime": "2025-06-26T10:00:00",
|
|
"type": "transport",
|
|
"assignedDriverId": "1748780965562"
|
|
}' && echo " ✅ Added arrival event for Sarah Johnson"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965379/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Meeting with CEO",
|
|
"location": "Hyatt Regency Denver",
|
|
"startTime": "2025-06-26T11:00:00",
|
|
"endTime": "2025-06-26T12:30:00",
|
|
"type": "meeting",
|
|
"assignedDriverId": "1748780965562"
|
|
}' && echo " ✅ Added meeting event for Sarah Johnson"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965379/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Lunch with Board Members",
|
|
"location": "Elway'\''s Downtown",
|
|
"startTime": "2025-06-26T13:00:00",
|
|
"endTime": "2025-06-26T14:30:00",
|
|
"type": "meal",
|
|
"assignedDriverId": "1748780965562"
|
|
}' && echo " ✅ Added lunch event for Sarah Johnson"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965379/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Afternoon Presentation",
|
|
"location": "Denver Convention Center",
|
|
"startTime": "2025-06-26T15:00:00",
|
|
"endTime": "2025-06-26T16:30:00",
|
|
"type": "event",
|
|
"assignedDriverId": "1748780965562"
|
|
}' && echo " ✅ Added afternoon event for Sarah Johnson"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965379/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Dinner with Investors",
|
|
"location": "The Capital Grille",
|
|
"startTime": "2025-06-26T18:00:00",
|
|
"endTime": "2025-06-26T20:00:00",
|
|
"type": "meal",
|
|
"assignedDriverId": "1748780965562"
|
|
}' && echo " ✅ Added dinner event for Sarah Johnson"
|
|
|
|
# VIP 2 - Michael Chen (ID: 1748780965388)
|
|
curl -X POST $API_BASE/vips/1748780965388/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Arrival at DEN",
|
|
"location": "Denver International Airport",
|
|
"startTime": "2025-06-26T10:00:00",
|
|
"endTime": "2025-06-26T11:00:00",
|
|
"type": "transport",
|
|
"assignedDriverId": "1748780965570"
|
|
}' && echo " ✅ Added arrival event for Michael Chen"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965388/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Meeting with Investors",
|
|
"location": "Denver Marriott City Center",
|
|
"startTime": "2025-06-26T11:30:00",
|
|
"endTime": "2025-06-26T13:00:00",
|
|
"type": "meeting",
|
|
"assignedDriverId": "1748780965570"
|
|
}' && echo " ✅ Added meeting event for Michael Chen"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965388/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Lunch with Colleagues",
|
|
"location": "Linger",
|
|
"startTime": "2025-06-26T13:30:00",
|
|
"endTime": "2025-06-26T15:00:00",
|
|
"type": "meal",
|
|
"assignedDriverId": "1748780965570"
|
|
}' && echo " ✅ Added lunch event for Michael Chen"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965388/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Financial Review Session",
|
|
"location": "Wells Fargo Center",
|
|
"startTime": "2025-06-26T15:30:00",
|
|
"endTime": "2025-06-26T17:00:00",
|
|
"type": "meeting",
|
|
"assignedDriverId": "1748780965570"
|
|
}' && echo " ✅ Added afternoon meeting for Michael Chen"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965388/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Networking Dinner",
|
|
"location": "Guard and Grace",
|
|
"startTime": "2025-06-26T19:00:00",
|
|
"endTime": "2025-06-26T21:00:00",
|
|
"type": "meal",
|
|
"assignedDriverId": "1748780965570"
|
|
}' && echo " ✅ Added dinner event for Michael Chen"
|
|
|
|
# VIP 3 - Emily Rodriguez (ID: 1748780965395)
|
|
curl -X POST $API_BASE/vips/1748780965395/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Arrival at DEN",
|
|
"location": "Denver International Airport",
|
|
"startTime": "2025-06-27T09:00:00",
|
|
"endTime": "2025-06-27T10:00:00",
|
|
"type": "transport",
|
|
"assignedDriverId": "1748780965577"
|
|
}' && echo " ✅ Added arrival event for Emily Rodriguez"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965395/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Meeting with Healthcare Partners",
|
|
"location": "Denver Convention Center",
|
|
"startTime": "2025-06-27T10:30:00",
|
|
"endTime": "2025-06-27T12:00:00",
|
|
"type": "meeting",
|
|
"assignedDriverId": "1748780965577"
|
|
}' && echo " ✅ Added meeting event for Emily Rodriguez"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965395/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Lunch with Healthcare Executives",
|
|
"location": "Linger",
|
|
"startTime": "2025-06-27T12:30:00",
|
|
"endTime": "2025-06-27T14:00:00",
|
|
"type": "meal",
|
|
"assignedDriverId": "1748780965577"
|
|
}' && echo " ✅ Added lunch event for Emily Rodriguez"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965395/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Healthcare Innovation Panel",
|
|
"location": "National Ballpark Museum",
|
|
"startTime": "2025-06-27T14:30:00",
|
|
"endTime": "2025-06-27T16:00:00",
|
|
"type": "event",
|
|
"assignedDriverId": "1748780965577"
|
|
}' && echo " ✅ Added panel event for Emily Rodriguez"
|
|
|
|
# VIP 5 - Lisa Wang (ID: 1748780965413)
|
|
curl -X POST $API_BASE/vips/1748780965413/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Arrival at DEN",
|
|
"location": "Denver International Airport",
|
|
"startTime": "2025-06-26T08:00:00",
|
|
"endTime": "2025-06-26T09:00:00",
|
|
"type": "transport",
|
|
"assignedDriverId": "1748780965584"
|
|
}' && echo " ✅ Added arrival event for Lisa Wang"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965413/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Keynote Presentation",
|
|
"location": "Denver Convention Center",
|
|
"startTime": "2025-06-26T10:00:00",
|
|
"endTime": "2025-06-26T11:30:00",
|
|
"type": "event",
|
|
"assignedDriverId": "1748780965584"
|
|
}' && echo " ✅ Added keynote event for Lisa Wang"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965413/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Lunch with Conference Organizers",
|
|
"location": "Elway'\''s Downtown",
|
|
"startTime": "2025-06-26T12:00:00",
|
|
"endTime": "2025-06-26T13:30:00",
|
|
"type": "meal",
|
|
"assignedDriverId": "1748780965584"
|
|
}' && echo " ✅ Added lunch event for Lisa Wang"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965413/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "AI Workshop Session",
|
|
"location": "Denver Tech Center",
|
|
"startTime": "2025-06-26T14:00:00",
|
|
"endTime": "2025-06-26T16:00:00",
|
|
"type": "event",
|
|
"assignedDriverId": "1748780965584"
|
|
}' && echo " ✅ Added workshop event for Lisa Wang"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965413/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "VIP Reception",
|
|
"location": "Four Seasons Hotel Denver",
|
|
"startTime": "2025-06-26T17:30:00",
|
|
"endTime": "2025-06-26T19:30:00",
|
|
"type": "event",
|
|
"assignedDriverId": "1748780965584"
|
|
}' && echo " ✅ Added reception event for Lisa Wang"
|
|
|
|
# VIP 7 - Jennifer Adams (ID: 1748780965432)
|
|
curl -X POST $API_BASE/vips/1748780965432/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Arrival at DEN",
|
|
"location": "Denver International Airport",
|
|
"startTime": "2025-06-26T09:30:00",
|
|
"endTime": "2025-06-26T10:30:00",
|
|
"type": "transport",
|
|
"assignedDriverId": "1748780965590"
|
|
}' && echo " ✅ Added arrival event for Jennifer Adams"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965432/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Media Network Meeting",
|
|
"location": "Denver Convention Center",
|
|
"startTime": "2025-06-26T11:00:00",
|
|
"endTime": "2025-06-26T12:30:00",
|
|
"type": "meeting",
|
|
"assignedDriverId": "1748780965590"
|
|
}' && echo " ✅ Added meeting event for Jennifer Adams"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965432/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Lunch with Media Executives",
|
|
"location": "Linger",
|
|
"startTime": "2025-06-26T13:00:00",
|
|
"endTime": "2025-06-26T14:30:00",
|
|
"type": "meal",
|
|
"assignedDriverId": "1748780965590"
|
|
}' && echo " ✅ Added lunch event for Jennifer Adams"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965432/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Press Conference",
|
|
"location": "Denver Press Club",
|
|
"startTime": "2025-06-26T15:00:00",
|
|
"endTime": "2025-06-26T16:00:00",
|
|
"type": "event",
|
|
"assignedDriverId": "1748780965590"
|
|
}' && echo " ✅ Added press conference for Jennifer Adams"
|
|
|
|
curl -X POST $API_BASE/vips/1748780965432/schedule -H "Content-Type: application/json" -d '{
|
|
"title": "Media Awards Dinner",
|
|
"location": "Denver Art Museum",
|
|
"startTime": "2025-06-26T18:30:00",
|
|
"endTime": "2025-06-26T21:00:00",
|
|
"type": "event",
|
|
"assignedDriverId": "1748780965590"
|
|
}' && echo " ✅ Added awards dinner for Jennifer Adams"
|
|
|
|
echo ""
|
|
echo "✅ Events and Meetings population complete!"
|
|
echo ""
|
|
echo "You can now:"
|
|
echo "1. View all VIPs at http://localhost:5173/vips"
|
|
echo "2. Manage drivers at http://localhost:5173/drivers"
|
|
echo "3. Create schedules for the VIPs"
|
|
echo "4. Test flight tracking and validation"
|