import { allEvents } from '../src/events/index.js';

console.log('Checking lostFirstTooth in allEvents:');
console.log('  in allEvents:', 'lostFirstTooth' in allEvents);
console.log('  typeof:', typeof (allEvents as Record<string, unknown>).lostFirstTooth);

// List all milestone-related events
console.log('\nMilestone events in allEvents:');
const milestones = ['learnedWalk', 'lostFirstTooth', 'lostLastTooth', 'learningColors', 'learningToDrive'];
for (const name of milestones) {
  console.log(`  ${name}: ${name in allEvents ? 'YES' : 'NO'}`);
}
