#!/usr/bin/env npx ts-node
/**
 * MLB Entity Resolution — Link CanonicalPlayer to PlayerGameModel
 *
 * MLB has 1,054 CanonicalPlayer entries but 0% external ID linkage.
 * This script matches CanonicalPlayer to PGM rows by name and populates sgoId.
 *
 * Phase 1: Name matching (exact + normalized)
 * Phase 2 (future): FanGraphs ID crosswalk via CSV
 *
 * Usage:
 *   npx ts-node src/scripts/link-mlb-players.ts
 *   npx ts-node src/scripts/link-mlb-players.ts --dry-run
 */
export {};
//# sourceMappingURL=link-mlb-players.d.ts.map