import type { Flight } from '../../src/types' // Five flights spanning the four seed users; flight-1 has the live-GPS // simulator wire-up so the SSE handler in /api/flights/:id/live-gps drives // AC-08 timing assertions. export const seedFlights: Flight[] = [ { id: 'flight-1', name: 'Recon Alpha', createdDate: '2026-05-01T10:00:00Z', aircraftId: 'aircraft-1' }, { id: 'flight-2', name: 'Recon Bravo', createdDate: '2026-05-02T11:30:00Z', aircraftId: 'aircraft-1' }, { id: 'flight-3', name: 'Survey Charlie', createdDate: '2026-05-03T14:15:00Z', aircraftId: 'aircraft-2' }, { id: 'flight-4', name: 'Patrol Delta', createdDate: '2026-05-04T09:45:00Z', aircraftId: 'aircraft-3' }, { id: 'flight-5', name: 'Strike Echo', createdDate: '2026-05-05T16:00:00Z', aircraftId: 'aircraft-1' }, ] export const liveGpsFlightId = 'flight-1'